344edde0fb
* Alphanumeric Callsign For Flights PR adds ability to define alphanumeric callsigns to flights, display them and use them during SimBrief OFP generation (if pilot ident as callsign option is not enabled) Translations for en/es/it/pt-br added. * Change db table name * Change db column name, fix rules * Change db column name * Another db column name change * Just another one more * Last one from anumeric_callsign to callsign Co-authored-by: Nabeel S <nabeelio@users.noreply.github.com>
42 lines
1.7 KiB
PHP
Executable File
42 lines
1.7 KiB
PHP
Executable File
<?php
|
|
|
|
return [
|
|
'flightnumber' => 'Número do Voo',
|
|
'flighttime' => 'Tempo do Voo',
|
|
'flighttype' => 'Tipo de Voo',
|
|
'flighthours' => 'Horas de Voo',
|
|
'callsign' => 'Indicativo',
|
|
'route' => 'Rota',
|
|
'mybid' => 'Minhas Reservas',
|
|
'search' => 'Procurar',
|
|
'addremovebid' => 'Adicionar/Remover Reserva',
|
|
'bidremoved' => 'Sua reserva foi removida.',
|
|
'bidadded' => 'Sua reserva foi adicionada.',
|
|
'dep' => 'Saída',
|
|
'arr' => 'Chegada',
|
|
'level' => 'Nível',
|
|
'alternateairport' => 'Aeroporto Alternativo',
|
|
'inbound' => 'Voos Chegando',
|
|
'outbound' => 'Voos Saindo',
|
|
'none' => 'Nenhum voo encontrado.',
|
|
'departuretime' => 'Hora de partida',
|
|
'arrivaltime' => 'Hora de chegada',
|
|
'type' => [
|
|
'pass_scheduled' => 'Passageiro - Programado',
|
|
'cargo_scheduled' => 'Carga - Programado',
|
|
'charter_pass_only' => 'Charter - Somente passageiros',
|
|
'addtl_cargo_mail' => 'Carga/Mail Adicional',
|
|
'special_vip' => 'Voo VIP especial (FAA/Governo)',
|
|
'pass_addtl' => 'Passageiro - Adicional',
|
|
'charter_cargo' => 'Charter - Carga/Mail',
|
|
'ambulance' => 'Voo de emergência',
|
|
'training_flight' => 'Voo de treinamento',
|
|
'mail_service' => 'Serviço de correio',
|
|
'charter_special' => 'Charter c/ Handling Especial',
|
|
'positioning' => 'Posicionamento (Ferry/Delivery/Demo)',
|
|
'technical_test' => 'Teste Técnico',
|
|
'military' => 'Militar',
|
|
'technical_stop' => 'Parada Técnica',
|
|
],
|
|
];
|