More organizing for translations
This commit is contained in:
parent
36dcd61feb
commit
0a7f002217
@ -14,7 +14,7 @@ class ActiveState extends Enum
|
||||
public const ACTIVE = 1;
|
||||
|
||||
public static $labels = [
|
||||
ActiveState::ACTIVE => 'system.global.active',
|
||||
ActiveState::INACTIVE => 'system.global.inactive',
|
||||
ActiveState::ACTIVE => 'common.active',
|
||||
ActiveState::INACTIVE => 'common.inactive',
|
||||
];
|
||||
}
|
||||
|
@ -17,10 +17,10 @@ class AircraftStatus extends Enum
|
||||
public const WRITTEN_OFF = 'W';
|
||||
|
||||
public static $labels = [
|
||||
AircraftStatus::ACTIVE => 'system.aircraft.status.active',
|
||||
AircraftStatus::STORED => 'system.aircraft.status.stored',
|
||||
AircraftStatus::RETIRED => 'system.aircraft.status.retired',
|
||||
AircraftStatus::SCRAPPED => 'system.aircraft.status.scrapped',
|
||||
AircraftStatus::WRITTEN_OFF => 'system.aircraft.status.written',
|
||||
AircraftStatus::ACTIVE => 'aircraft.status.active',
|
||||
AircraftStatus::STORED => 'aircraft.status.stored',
|
||||
AircraftStatus::RETIRED => 'aircraft.status.retired',
|
||||
AircraftStatus::SCRAPPED => 'aircraft.status.scrapped',
|
||||
AircraftStatus::WRITTEN_OFF => 'aircraft.status.written',
|
||||
];
|
||||
}
|
||||
|
@ -20,13 +20,13 @@ class Days extends Enum
|
||||
public const SUNDAY = 1 << 6;
|
||||
|
||||
public static $labels = [
|
||||
Days::MONDAY => 'system.days.mon',
|
||||
Days::TUESDAY => 'system.days.tues',
|
||||
Days::WEDNESDAY => 'system.days.wed',
|
||||
Days::THURSDAY => 'system.days.thurs',
|
||||
Days::FRIDAY => 'system.days.fri',
|
||||
Days::SATURDAY => 'system.days.sat',
|
||||
Days::SUNDAY => 'system.days.sun',
|
||||
Days::MONDAY => 'common.days.mon',
|
||||
Days::TUESDAY => 'common.days.tues',
|
||||
Days::WEDNESDAY => 'common.days.wed',
|
||||
Days::THURSDAY => 'common.days.thurs',
|
||||
Days::FRIDAY => 'common.days.fri',
|
||||
Days::SATURDAY => 'common.days.sat',
|
||||
Days::SUNDAY => 'common.days.sun',
|
||||
];
|
||||
|
||||
public static $codes = [
|
||||
|
@ -15,9 +15,9 @@ class ExpenseType extends Enum
|
||||
public const MONTHLY = 'M';
|
||||
|
||||
protected static $labels = [
|
||||
ExpenseType::FLIGHT => 'system.expenses.type.flight',
|
||||
ExpenseType::DAILY => 'system.expenses.type.daily',
|
||||
ExpenseType::MONTHLY => 'system.expenses.type.monthly',
|
||||
ExpenseType::FLIGHT => 'expenses.type.flight',
|
||||
ExpenseType::DAILY => 'expenses.type.daily',
|
||||
ExpenseType::MONTHLY => 'expenses.type.monthly',
|
||||
];
|
||||
|
||||
protected static $codes = [
|
||||
|
@ -27,20 +27,20 @@ class FlightType extends Enum
|
||||
public const TECHNICAL_STOP = 'X';
|
||||
|
||||
protected static $labels = [
|
||||
FlightType::SCHED_PAX => 'system.flights.type.pass_scheduled',
|
||||
FlightType::SCHED_CARGO => 'system.flights.type.cargo_scheduled',
|
||||
FlightType::CHARTER_PAX_ONLY => 'system.flights.type.charter_pass_only',
|
||||
FlightType::ADDITIONAL_CARGO => 'system.flights.type.addtl_cargo_mail',
|
||||
FlightType::VIP => 'system.flights.type.special_vip',
|
||||
FlightType::ADDTL_PAX => 'system.flights.type.pass_addtl',
|
||||
FlightType::CHARTER_CARGO_MAIL => 'system.flights.type.charter_cargo',
|
||||
FlightType::AMBULANCE => 'system.flights.type.ambulance',
|
||||
FlightType::TRAINING => 'system.flights.type.training_flight',
|
||||
FlightType::MAIL_SERVICE => 'system.flights.type.mail_service',
|
||||
FlightType::CHARTER_SPECIAL => 'system.flights.type.charter_special',
|
||||
FlightType::POSITIONING => 'system.flights.type.positioning',
|
||||
FlightType::TECHNICAL_TEST => 'system.flights.type.technical_test',
|
||||
FlightType::MILITARY => 'system.flights.type.military',
|
||||
FlightType::TECHNICAL_STOP => 'system.flights.type.technical_stop',
|
||||
FlightType::SCHED_PAX => 'flights.type.pass_scheduled',
|
||||
FlightType::SCHED_CARGO => 'flights.type.cargo_scheduled',
|
||||
FlightType::CHARTER_PAX_ONLY => 'flights.type.charter_pass_only',
|
||||
FlightType::ADDITIONAL_CARGO => 'flights.type.addtl_cargo_mail',
|
||||
FlightType::VIP => 'flights.type.special_vip',
|
||||
FlightType::ADDTL_PAX => 'flights.type.pass_addtl',
|
||||
FlightType::CHARTER_CARGO_MAIL => 'flights.type.charter_cargo',
|
||||
FlightType::AMBULANCE => 'flights.type.ambulance',
|
||||
FlightType::TRAINING => 'flights.type.training_flight',
|
||||
FlightType::MAIL_SERVICE => 'flights.type.mail_service',
|
||||
FlightType::CHARTER_SPECIAL => 'flights.type.charter_special',
|
||||
FlightType::POSITIONING => 'flights.type.positioning',
|
||||
FlightType::TECHNICAL_TEST => 'flights.type.technical_test',
|
||||
FlightType::MILITARY => 'flights.type.military',
|
||||
FlightType::TECHNICAL_STOP => 'flights.type.technical_stop',
|
||||
];
|
||||
}
|
||||
|
@ -14,7 +14,7 @@ class PirepSource extends Enum
|
||||
public const ACARS = 1;
|
||||
|
||||
protected static $labels = [
|
||||
PirepSource::MANUAL => 'system.pireps.source.manual',
|
||||
PirepSource::ACARS => 'system.pireps.source.acars',
|
||||
PirepSource::MANUAL => 'pireps.source_types.manual',
|
||||
PirepSource::ACARS => 'pireps.source_types.acars',
|
||||
];
|
||||
}
|
||||
|
@ -19,12 +19,12 @@ class PirepState extends Enum
|
||||
public const DRAFT = 5;
|
||||
|
||||
protected static $labels = [
|
||||
PirepState::REJECTED => 'system.pireps.state.rejected',
|
||||
PirepState::IN_PROGRESS => 'system.pireps.state.in_progress',
|
||||
PirepState::PENDING => 'system.pireps.state.pending',
|
||||
PirepState::ACCEPTED => 'system.pireps.state.accepted',
|
||||
PirepState::CANCELLED => 'system.pireps.state.cancelled',
|
||||
PirepState::DELETED => 'system.pireps.state.deleted',
|
||||
PirepState::DRAFT => 'system.pireps.state.draft',
|
||||
PirepState::REJECTED => 'pireps.state.rejected',
|
||||
PirepState::IN_PROGRESS => 'pireps.state.in_progress',
|
||||
PirepState::PENDING => 'pireps.state.pending',
|
||||
PirepState::ACCEPTED => 'pireps.state.accepted',
|
||||
PirepState::CANCELLED => 'pireps.state.cancelled',
|
||||
PirepState::DELETED => 'pireps.state.deleted',
|
||||
PirepState::DRAFT => 'pireps.state.draft',
|
||||
];
|
||||
}
|
||||
|
@ -37,28 +37,28 @@ class PirepStatus extends Enum
|
||||
public const EMERG_DECENT = 'EMG';
|
||||
|
||||
protected static $labels = [
|
||||
PirepStatus::INITIATED => 'system.pireps.status.initialized',
|
||||
PirepStatus::SCHEDULED => 'system.pireps.status.scheduled',
|
||||
PirepStatus::BOARDING => 'system.pireps.status.boarding',
|
||||
PirepStatus::RDY_START => 'system.pireps.status.ready_start',
|
||||
PirepStatus::PUSHBACK_TOW => 'system.pireps.status.push_tow',
|
||||
PirepStatus::DEPARTED => 'system.pireps.status.departed',
|
||||
PirepStatus::RDY_DEICE => 'system.pireps.status.ready_deice',
|
||||
PirepStatus::STRT_DEICE => 'system.pireps.status.deicing',
|
||||
PirepStatus::GRND_RTRN => 'system.pireps.status.ground_ret',
|
||||
PirepStatus::TAXI => 'system.pireps.status.taxi',
|
||||
PirepStatus::TAKEOFF => 'system.pireps.status.takeoff',
|
||||
PirepStatus::INIT_CLIM => 'system.pireps.status.initial_clb',
|
||||
PirepStatus::AIRBORNE => 'system.pireps.status.enroute',
|
||||
PirepStatus::ENROUTE => 'system.pireps.status.enroute',
|
||||
PirepStatus::DIVERTED => 'system.pireps.status.diverted',
|
||||
PirepStatus::APPROACH => 'system.pireps.status.approach',
|
||||
PirepStatus::APPROACH_ICAO => 'system.pireps.status.approach',
|
||||
PirepStatus::ON_FINAL => 'system.pireps.status.final_appr',
|
||||
PirepStatus::LANDING => 'system.pireps.status.landing',
|
||||
PirepStatus::LANDED => 'system.pireps.status.landed',
|
||||
PirepStatus::ARRIVED => 'system.pireps.status.arrived',
|
||||
PirepStatus::CANCELLED => 'system.pireps.status.cancelled',
|
||||
PirepStatus::EMERG_DECENT => 'system.pireps.status.emerg_decent',
|
||||
PirepStatus::INITIATED => 'pireps.status.initialized',
|
||||
PirepStatus::SCHEDULED => 'pireps.status.scheduled',
|
||||
PirepStatus::BOARDING => 'pireps.status.boarding',
|
||||
PirepStatus::RDY_START => 'pireps.status.ready_start',
|
||||
PirepStatus::PUSHBACK_TOW => 'pireps.status.push_tow',
|
||||
PirepStatus::DEPARTED => 'pireps.status.departed',
|
||||
PirepStatus::RDY_DEICE => 'pireps.status.ready_deice',
|
||||
PirepStatus::STRT_DEICE => 'pireps.status.deicing',
|
||||
PirepStatus::GRND_RTRN => 'pireps.status.ground_ret',
|
||||
PirepStatus::TAXI => 'pireps.status.taxi',
|
||||
PirepStatus::TAKEOFF => 'pireps.status.takeoff',
|
||||
PirepStatus::INIT_CLIM => 'pireps.status.initial_clb',
|
||||
PirepStatus::AIRBORNE => 'pireps.status.enroute',
|
||||
PirepStatus::ENROUTE => 'pireps.status.enroute',
|
||||
PirepStatus::DIVERTED => 'pireps.status.diverted',
|
||||
PirepStatus::APPROACH => 'pireps.status.approach',
|
||||
PirepStatus::APPROACH_ICAO => 'pireps.status.approach',
|
||||
PirepStatus::ON_FINAL => 'pireps.status.final_appr',
|
||||
PirepStatus::LANDING => 'pireps.status.landing',
|
||||
PirepStatus::LANDED => 'pireps.status.landed',
|
||||
PirepStatus::ARRIVED => 'pireps.status.arrived',
|
||||
PirepStatus::CANCELLED => 'pireps.status.cancelled',
|
||||
PirepStatus::EMERG_DECENT => 'pireps.status.emerg_decent',
|
||||
];
|
||||
}
|
||||
|
@ -17,10 +17,10 @@ class UserState extends Enum
|
||||
public const SUSPENDED = 4;
|
||||
|
||||
protected static $labels = [
|
||||
UserState::PENDING => 'system.users.state.pending',
|
||||
UserState::ACTIVE => 'system.users.state.active',
|
||||
UserState::REJECTED => 'system.users.state.rejected',
|
||||
UserState::ON_LEAVE => 'system.users.state.on_leave',
|
||||
UserState::SUSPENDED => 'system.users.state.suspended',
|
||||
UserState::PENDING => 'users.state.pending',
|
||||
UserState::ACTIVE => 'users.state.active',
|
||||
UserState::REJECTED => 'users.state.rejected',
|
||||
UserState::ON_LEAVE => 'users.state.on_leave',
|
||||
UserState::SUSPENDED => 'users.state.suspended',
|
||||
];
|
||||
}
|
||||
|
14
resources/lang/en/aircraft.php
Normal file
14
resources/lang/en/aircraft.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
return [
|
||||
'status' => [
|
||||
'active' => 'Active',
|
||||
'stored' => 'Stored',
|
||||
'retired' => 'Retired',
|
||||
'scrapped' => 'Scrapped',
|
||||
'written' => 'Written Off',
|
||||
],
|
||||
];
|
@ -4,8 +4,9 @@
|
||||
*/
|
||||
|
||||
return [
|
||||
'inboundflights' => 'Inbound Flights',
|
||||
'outboundflights' => 'Outbound Flights',
|
||||
'ident' => 'Identification',
|
||||
'noflightfound' => 'No Flight Found.',
|
||||
'ident' => 'Identification',
|
||||
'home' => 'Home Airport',
|
||||
'current' => 'Current Airport',
|
||||
'departure' => 'Departure Airport',
|
||||
'arrival' => 'Arrival Airport',
|
||||
];
|
||||
|
@ -17,7 +17,7 @@ return [
|
||||
'pendingmessage' => 'Your registration is pending approval. Please check your email!',
|
||||
'registrationsubmitted' => 'Registration Submitted',
|
||||
'registrationconfirmation' => 'Registration Confirmation',
|
||||
'confirmationmessage' => 'Your application has been submitted. It requires staff member approval, once a\nstaff member has reviewed your application, you will receive a confirmation email.',
|
||||
'confirmationmessage' => 'Your application has been submitted. It requires staff member approval, once a staff member has reviewed your application, you will receive a confirmation email.',
|
||||
'registrationdenied' => 'Registration Denied',
|
||||
'deniedmessage' => 'Your registration was denied. Please contact an administrator.',
|
||||
'accountsuspended' => 'Account Suspended',
|
||||
|
@ -14,9 +14,6 @@ return [
|
||||
'profile' => 'Profile',
|
||||
'email' => 'Email',
|
||||
'register' => 'Register',
|
||||
'confirmpassword' => 'Confirm Password',
|
||||
'homeairport' => 'Home Airport',
|
||||
'currentairport' => 'Current Airport',
|
||||
'timezone' => 'Timezone',
|
||||
'country' => 'Country',
|
||||
'download' => 'Download|Downloads',
|
||||
@ -32,11 +29,6 @@ return [
|
||||
'hour' => 'Hour|Hours',
|
||||
'minute' => 'Minute|Minutes',
|
||||
'note' => 'Note|Notes',
|
||||
'route' => 'Route',
|
||||
'flightnumber' => 'Flight Number',
|
||||
'flighttime' => 'Flight Time',
|
||||
'departureairport' => 'Departure Airport',
|
||||
'arrivalairport' => 'Arrival Airport',
|
||||
'field' => 'Field|Fields',
|
||||
'name' => 'Name',
|
||||
'value' => 'Value|Values',
|
||||
@ -50,4 +42,15 @@ return [
|
||||
'hello' => 'Hello',
|
||||
'regards' => 'Regards',
|
||||
'rightsreserved' => 'All Rights Reserved',
|
||||
'active' => 'Active',
|
||||
'inactive' => 'Inactive',
|
||||
'days' => [
|
||||
'mon' => 'Monday',
|
||||
'tues' => 'Tuesday',
|
||||
'wed' => 'Wednesday',
|
||||
'thurs' => 'Thursday',
|
||||
'fri' => 'Friday',
|
||||
'sat' => 'Saturday',
|
||||
'sun' => 'Sunday',
|
||||
],
|
||||
];
|
||||
|
12
resources/lang/en/expenses.php
Normal file
12
resources/lang/en/expenses.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
return [
|
||||
'type' => [
|
||||
'flight' => 'Flight',
|
||||
'daily' => 'Daily',
|
||||
'monthly' => 'Monthly',
|
||||
],
|
||||
];
|
@ -4,6 +4,11 @@
|
||||
*/
|
||||
|
||||
return [
|
||||
'flightnumber' => 'Flight Number',
|
||||
'flighttime' => 'Flight Time',
|
||||
'flighttype' => 'Flight Type',
|
||||
'flighthours' => 'Flight Hours',
|
||||
'route' => 'Route',
|
||||
'mybid' => 'My Bid|My Bids',
|
||||
'search' => 'Search',
|
||||
'addremovebid' => 'Add/Remove Bid',
|
||||
@ -13,4 +18,26 @@ return [
|
||||
'arr' => 'Arr',
|
||||
'level' => 'Level',
|
||||
'alternateairport' => 'Alternate Airport',
|
||||
'inbound' => 'Inbound Flights',
|
||||
'outbound' => 'Outbound Flights',
|
||||
'none' => 'No Flight Found.',
|
||||
'departuretime' => 'Departure Time',
|
||||
'arrivaltime' => 'Arrival Time',
|
||||
'type' => [
|
||||
'pass_scheduled' => 'Passenger - Scheduled',
|
||||
'cargo_scheduled' => 'Cargo - Scheduled',
|
||||
'charter_pass_only' => 'Charter - Passenger Only',
|
||||
'addtl_cargo_mail' => 'Additional Cargo/Mail',
|
||||
'special_vip' => 'Special VIP Flight (FAA/Government)',
|
||||
'pass_addtl' => 'Passenger - Additional',
|
||||
'charter_cargo' => 'Charter - Cargo/Mail',
|
||||
'ambulance' => 'Ambulance Flight',
|
||||
'training_flight' => 'Training Flight',
|
||||
'mail_service' => 'Mail Service',
|
||||
'charter_special' => 'Charter w/ Special Handling',
|
||||
'positioning' => 'Positioning (Ferry/Delivery/Demo)',
|
||||
'technical_test' => 'Technical Test',
|
||||
'military' => 'Military',
|
||||
'technical_stop' => 'Technical Stop',
|
||||
],
|
||||
];
|
||||
|
@ -14,9 +14,9 @@ return [
|
||||
*/
|
||||
|
||||
'password' => 'Passwords must be at least six characters and match the confirmation.',
|
||||
'reset' => 'Your password has been reset!',
|
||||
'sent' => 'We have e-mailed your password reset link!',
|
||||
'token' => 'This password reset token is invalid.',
|
||||
'user' => "We can't find a user with that e-mail address.",
|
||||
|
||||
'reset' => 'Your password has been reset!',
|
||||
'sent' => 'We have e-mailed your password reset link!',
|
||||
'token' => 'This password reset token is invalid.',
|
||||
'user' => "We can't find a user with that e-mail address.",
|
||||
'confirm' => 'Confirm Password',
|
||||
];
|
||||
|
@ -4,11 +4,15 @@
|
||||
*/
|
||||
|
||||
return [
|
||||
'newflightreport' => 'New Flight Report',
|
||||
'editflightreport' => 'Edit Flight Report',
|
||||
'savepirep' => 'Save PIREP',
|
||||
'submitpirep' => 'Submit PIREP',
|
||||
'fileflightreport' => 'File New Report',
|
||||
'filenewpirep' => 'File New PIREP',
|
||||
'pilotreport' => 'Pilot Report|Pilot Reports',
|
||||
'arrived' => 'Arrived',
|
||||
'source' => 'Source',
|
||||
'flighttype' => 'Flight Type',
|
||||
'filedroute' => 'Filed Route',
|
||||
'filedon' => 'Filed On',
|
||||
'fare' => 'Fare|Fares',
|
||||
@ -16,20 +20,50 @@ return [
|
||||
'count' => 'Count',
|
||||
'flightlevel' => 'Flight Level',
|
||||
'fieldsreadonly' => 'Once a PIREP has been accepted/rejected, certain fields go into read-only mode.',
|
||||
'flightinformations' => 'Flight Informations',
|
||||
'flightinformations' => 'Flight Information',
|
||||
'flightident' => 'Flight Number/Code/Leg',
|
||||
'codeoptional' => 'Code (optional)',
|
||||
'legoptional' => 'Leg (optional)',
|
||||
'deparrinformations' => 'Departure/Arrival Informations',
|
||||
'aircraftinformations' => 'Aircraft Informations',
|
||||
'deparrinformations' => 'Departure/Arrival Information',
|
||||
'aircraftinformations' => 'Aircraft Information',
|
||||
'dateflown' => 'Date Flown',
|
||||
'departuretime' => 'Departure Time',
|
||||
'arrivaltime' => 'Arrival Time',
|
||||
'deletepirep' => 'Delete PIREP',
|
||||
'savepirep' => 'Save PIREP',
|
||||
'submitpirep' => 'Submit PIREP',
|
||||
'editflightreport' => 'Edit Flight Report',
|
||||
'fileflightreport' => 'File New Report',
|
||||
'newflightreport' => 'New Flight Report',
|
||||
'submitted' => 'Submitted',
|
||||
|
||||
'source_types' => [
|
||||
'manual' => 'Manual',
|
||||
'acars' => 'ACARS',
|
||||
],
|
||||
'state' => [
|
||||
'accepted' => 'Accepted',
|
||||
'pending' => 'Pending Approval',
|
||||
'rejected' => 'Rejected',
|
||||
'in_progress' => 'In Progress',
|
||||
'cancelled' => 'Cancelled',
|
||||
'deleted' => 'Deleted',
|
||||
'draft' => 'Draft',
|
||||
],
|
||||
'status' => [
|
||||
'initialized' => 'Initiated',
|
||||
'scheduled' => 'Scheduled',
|
||||
'boarding' => 'Boarding',
|
||||
'ready_start' => 'Ready for start',
|
||||
'push_tow' => 'Pushback/towing',
|
||||
'departed' => 'Departed',
|
||||
'ready_deice' => 'Ready for de-icing',
|
||||
'deicing' => 'De-icing in progress',
|
||||
'ground_ret' => 'Ground return',
|
||||
'taxi' => 'Taxi',
|
||||
'takeoff' => 'Takeoff',
|
||||
'initial_clb' => 'Initial Climb',
|
||||
'enroute' => 'Enroute',
|
||||
'diverted' => 'Diverted',
|
||||
'approach' => 'Approach',
|
||||
'final_appr' => 'Final approach',
|
||||
'landing' => 'Landing',
|
||||
'landed' => 'Landed',
|
||||
'arrived' => 'Arrived',
|
||||
'cancelled' => 'Cancelled',
|
||||
'emerg_decent' => 'Emergency decent',
|
||||
]
|
||||
];
|
||||
|
@ -5,7 +5,7 @@
|
||||
|
||||
return [
|
||||
'avatarresize' => 'This avatar will be resized to :width x :height pixels',
|
||||
'flighthours' => 'Flight Hours',
|
||||
|
||||
'newapikey' => 'New API Key',
|
||||
'yourprofile' => 'Your Profile',
|
||||
'apikey' => 'API Key',
|
||||
|
@ -1,106 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'global' => [
|
||||
'active' => 'Active',
|
||||
'inactive' => 'Inactive'
|
||||
],
|
||||
|
||||
'aircraft' => [
|
||||
'status' => [
|
||||
'active' => 'Active',
|
||||
'stored' => 'Stored',
|
||||
'retired' => 'Retired',
|
||||
'scrapped' => 'Scrapped',
|
||||
'written' => 'Written Off',
|
||||
],
|
||||
],
|
||||
|
||||
'days' => [
|
||||
'mon' => 'Monday',
|
||||
'tues' => 'Tuesday',
|
||||
'wed' => 'Wednesday',
|
||||
'thurs' => 'Thursday',
|
||||
'fri' => 'Friday',
|
||||
'sat' => 'Saturday',
|
||||
'sun' => 'Sunday',
|
||||
],
|
||||
|
||||
'expenses' => [
|
||||
'type' => [
|
||||
'flight' => 'Flight',
|
||||
'daily' => 'Daily',
|
||||
'monthly' => 'Monthly',
|
||||
],
|
||||
],
|
||||
|
||||
'flights' => [
|
||||
'type' => [
|
||||
'pass_scheduled' => 'Passenger - Scheduled',
|
||||
'cargo_scheduled' => 'Cargo - Scheduled',
|
||||
'charter_pass_only' => 'Charter - Passenger Only',
|
||||
'addtl_cargo_mail' => 'Additional Cargo/Mail',
|
||||
'special_vip' => 'Special VIP Flight (FAA/Government)',
|
||||
'pass_addtl' => 'Passenger - Additional',
|
||||
'charter_cargo' => 'Charter - Cargo/Mail',
|
||||
'ambulance' => 'Ambulance Flight',
|
||||
'training_flight' => 'Training Flight',
|
||||
'mail_service' => 'Mail Service',
|
||||
'charter_special' => 'Charter w/ Special Handling',
|
||||
'positioning' => 'Positioning (Ferry/Delivery/Demo)',
|
||||
'technical_test' => 'Technical Test',
|
||||
'military' => 'Military',
|
||||
'technical_stop' => 'Technical Stop',
|
||||
],
|
||||
],
|
||||
|
||||
'pireps' => [
|
||||
'source' => [
|
||||
'manual' => 'Manual',
|
||||
'acars' => 'ACARS',
|
||||
],
|
||||
'state' => [
|
||||
'accepted' => 'Accepted',
|
||||
'pending' => 'Pending Approval',
|
||||
'rejected' => 'Rejected',
|
||||
'in_progress' => 'In Progress',
|
||||
'cancelled' => 'Cancelled',
|
||||
'deleted' => 'Deleted',
|
||||
'draft' => 'Draft',
|
||||
],
|
||||
'status' => [
|
||||
'initialized' => 'Initiated',
|
||||
'scheduled' => 'Scheduled',
|
||||
'boarding' => 'Boarding',
|
||||
'ready_start' => 'Ready for start',
|
||||
'push_tow' => 'Pushback/towing',
|
||||
'departed' => 'Departed',
|
||||
'ready_deice' => 'Ready for de-icing',
|
||||
'deicing' => 'De-icing in progress',
|
||||
'ground_ret' => 'Ground return',
|
||||
'taxi' => 'Taxi',
|
||||
'takeoff' => 'Takeoff',
|
||||
'initial_clb' => 'Initial Climb',
|
||||
'enroute' => 'Enroute',
|
||||
'diverted' => 'Diverted',
|
||||
'approach' => 'Approach',
|
||||
'final_appr' => 'Final approach',
|
||||
'landing' => 'Landing',
|
||||
'landed' => 'Landed',
|
||||
'arrived' => 'Arrived',
|
||||
'cancelled' => 'Cancelled',
|
||||
'emerg_decent' => 'Emergency decent',
|
||||
]
|
||||
],
|
||||
|
||||
'users' => [
|
||||
'state' => [
|
||||
'pending' => 'Pending',
|
||||
'active' => 'Active',
|
||||
'rejected' => 'Rejected',
|
||||
'on_leave' => 'On Leave',
|
||||
'suspended' => 'Suspended',
|
||||
],
|
||||
],
|
||||
];
|
@ -5,4 +5,11 @@
|
||||
|
||||
return [
|
||||
'location' => 'Location',
|
||||
'state' => [
|
||||
'pending' => 'Pending',
|
||||
'active' => 'Active',
|
||||
'rejected' => 'Rejected',
|
||||
'on_leave' => 'On Leave',
|
||||
'suspended' => 'Suspended',
|
||||
],
|
||||
];
|
||||
|
@ -80,34 +80,34 @@ return [
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'airline_id' => [
|
||||
'airline_id' => [
|
||||
'required' => 'An airline is required',
|
||||
'exists' => 'The airline doesn\'t exist',
|
||||
'exists' => 'The airline doesn\'t exist',
|
||||
],
|
||||
'aircraft_id' => [
|
||||
'aircraft_id' => [
|
||||
'required' => 'An aircraft is required',
|
||||
'exists' => 'The aircraft doesn\'t exist',
|
||||
'exists' => 'The aircraft doesn\'t exist',
|
||||
],
|
||||
'arr_airport_id' => [
|
||||
'arr_airport_id' => [
|
||||
'required' => 'An arrival airport is required',
|
||||
],
|
||||
'dpt_airport_id' => [
|
||||
'dpt_airport_id' => [
|
||||
'required' => 'A departure airport is required',
|
||||
],
|
||||
'flight_time' => [
|
||||
'flight_time' => [
|
||||
'required' => 'Flight time, in minutes, is required',
|
||||
'integer' => 'Flight time, in minutes, is required',
|
||||
'integer' => 'Flight time, in minutes, is required',
|
||||
],
|
||||
'planned_flight_time' => [
|
||||
'planned_flight_time' => [
|
||||
'required' => 'Flight time, in minutes, is required',
|
||||
'integer' => 'Flight time, in minutes, is required',
|
||||
'integer' => 'Flight time, in minutes, is required',
|
||||
],
|
||||
'source_name' => [
|
||||
'source_name' => [
|
||||
'required' => 'PIREP Source is required',
|
||||
],
|
||||
'g-recaptcha-response' => [
|
||||
'required' => 'Please verify that you are not a robot.',
|
||||
'captcha' => 'Captcha error! try again later or contact site admin.',
|
||||
'captcha' => 'Captcha error! try again later or contact site admin.',
|
||||
],
|
||||
],
|
||||
|
||||
|
@ -18,18 +18,18 @@ return [
|
||||
],
|
||||
|
||||
'weather' => [
|
||||
'metarnotretrieved' => 'METAR/TAF data could not be retrieved',
|
||||
'conditions' => 'Conditions',
|
||||
'visibility' => 'visibility',
|
||||
'humidity' => 'humidity',
|
||||
'dewpoint' => 'dew point',
|
||||
'barometer' => 'Barometer',
|
||||
'clouds' => 'Clouds',
|
||||
'wind' => 'Wind',
|
||||
'remarks' => 'Remarks',
|
||||
'guststo' => 'gusts to',
|
||||
'updated' => 'Updated',
|
||||
'hrago' => 'hr ago|hrs ago',
|
||||
'minago' => 'min ago|mins ago',
|
||||
'nometar' => 'METAR/TAF data could not be retrieved',
|
||||
'conditions' => 'Conditions',
|
||||
'visibility' => 'visibility',
|
||||
'humidity' => 'humidity',
|
||||
'dewpoint' => 'dew point',
|
||||
'barometer' => 'Barometer',
|
||||
'clouds' => 'Clouds',
|
||||
'wind' => 'Wind',
|
||||
'remarks' => 'Remarks',
|
||||
'guststo' => 'gusts to',
|
||||
'updated' => 'Updated',
|
||||
'hrago' => 'hr ago|hrs ago',
|
||||
'minago' => 'min ago|mins ago',
|
||||
],
|
||||
];
|
||||
|
14
resources/lang/it/aircraft.php
Normal file
14
resources/lang/it/aircraft.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
return [
|
||||
'status' => [
|
||||
'active' => 'Attivo',
|
||||
'stored' => 'Immagazzinato',
|
||||
'retired' => 'Ritirato',
|
||||
'scrapped' => 'Rottamato',
|
||||
'written' => 'Stornato',
|
||||
],
|
||||
];
|
@ -4,8 +4,9 @@
|
||||
*/
|
||||
|
||||
return [
|
||||
'inboundflights' => 'Voli in Entrata',
|
||||
'outboundflights' => 'Voli in Uscita',
|
||||
'ident' => 'Identificativo',
|
||||
'noflightfound' => 'Nessun Volo Trovato.',
|
||||
'ident' => 'Identificativo',
|
||||
'home' => 'Aeroporto di Casa',
|
||||
'current' => 'Aeroporto Corrente',
|
||||
'departure' => 'Aeroporto di Partenza',
|
||||
'arrival' => 'Aeroporto d\'Arrivo',
|
||||
];
|
||||
|
@ -17,7 +17,7 @@ return [
|
||||
'pendingmessage' => 'La tua registrazione è in attesa di approvazione. Controlla la tua email per favore.',
|
||||
'registrationsubmitted' => 'Registrazione Inviata',
|
||||
'registrationconfirmation' => 'Conferma di Registrazione',
|
||||
'confirmationmessage' => 'La tua richiesta è stata inviata e richiede l\'approvazione di un membro dello staff. Quando\nverrà esaminata, riceverai una email di conferma.',
|
||||
'confirmationmessage' => 'La tua richiesta è stata inviata e richiede l\'approvazione di un membro dello staff. Quando verrà esaminata, riceverai una email di conferma.',
|
||||
'registrationdenied' => 'Registrazione Negata',
|
||||
'deniedmessage' => 'La tua registrazione è stata rifiutata. Contatta un amministratore per favore.',
|
||||
'accountsuspended' => 'Account Sospeso',
|
||||
|
@ -15,9 +15,6 @@ return [
|
||||
'email' => 'Email',
|
||||
'login' => 'Accesso',
|
||||
'register' => 'Registrazione',
|
||||
'confirmpassword' => 'Conferma Password',
|
||||
'homeairport' => 'Aeroporto di Casa',
|
||||
'currentairport' => 'Aeroporto Corrente',
|
||||
'timezone' => 'Fuso Orario',
|
||||
'country' => 'Paese',
|
||||
'download' => 'Download|Downloads',
|
||||
@ -33,11 +30,6 @@ return [
|
||||
'hour' => 'Ora|Ore',
|
||||
'minute' => 'Minuto|Minuti',
|
||||
'note' => 'Nota|Note',
|
||||
'route' => 'Rotta',
|
||||
'flightnumber' => 'Numero di Volo',
|
||||
'flighttime' => 'Tempo di Volo',
|
||||
'departureairport' => 'Aeroporto di Partenza',
|
||||
'arrivalairport' => 'Aeroporto d\'Arrivo',
|
||||
'field' => 'Campo|Campi',
|
||||
'name' => 'Nome',
|
||||
'value' => 'Valore|Valori',
|
||||
@ -51,4 +43,15 @@ return [
|
||||
'hello' => 'Ciao',
|
||||
'regards' => 'Saluti',
|
||||
'rightsreserved' => 'Tutti i Diritti Riservati',
|
||||
'active' => 'Attivo',
|
||||
'inactive' => 'Inattivo',
|
||||
'days' => [
|
||||
'mon' => 'Lunedì',
|
||||
'tues' => 'Martedì',
|
||||
'wed' => 'Mercoledì',
|
||||
'thurs' => 'Giovedì',
|
||||
'fri' => 'Venerdì',
|
||||
'sat' => 'Sabato',
|
||||
'sun' => 'Domenica',
|
||||
],
|
||||
];
|
||||
|
12
resources/lang/it/expenses.php
Normal file
12
resources/lang/it/expenses.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
return [
|
||||
'type' => [
|
||||
'flight' => 'Volo',
|
||||
'daily' => 'Giornaliera',
|
||||
'monthly' => 'Mensile',
|
||||
],
|
||||
];
|
@ -4,6 +4,11 @@
|
||||
*/
|
||||
|
||||
return [
|
||||
'flightnumber' => 'Numero di Volo',
|
||||
'flighttime' => 'Tempo di Volo',
|
||||
'flighttype' => 'Tipo di Volo',
|
||||
'flighthours' => 'Ore di Volo',
|
||||
'route' => 'Rotta',
|
||||
'mybid' => 'Mia prenotazione|Mie Prenotazioni',
|
||||
'addremovebid' => 'Aggiungi/Rimuovi Prenotazione',
|
||||
'bidremoved' => 'La tua prenotazione è stata rimossa.',
|
||||
@ -12,4 +17,26 @@ return [
|
||||
'arr' => 'Arr',
|
||||
'level' => 'Livello',
|
||||
'alternateairport' => 'Aeroporto Alternativo',
|
||||
'inbound' => 'Voli in Entrata',
|
||||
'outbound' => 'Voli in Uscita',
|
||||
'none' => 'Nessun Volo Trovato.',
|
||||
'departuretime' => 'Ora di Partenza',
|
||||
'arrivaltime' => 'Ora di Arrivo',
|
||||
'type' => [
|
||||
'pass_scheduled' => 'Passeggeri - Programmato',
|
||||
'cargo_scheduled' => 'Cargo - Programmato',
|
||||
'charter_pass_only' => 'Charter - Solo Passeggeri',
|
||||
'addtl_cargo_mail' => 'Cargo/Posta Addizionale',
|
||||
'special_vip' => 'Volo VIP Speciale (FAA/Governo)',
|
||||
'pass_addtl' => 'Passeggeri - Addizionale',
|
||||
'charter_cargo' => 'Charter - Cargo/Posta',
|
||||
'ambulance' => 'Volo Ambulanza',
|
||||
'training_flight' => 'Volo di Addestramento',
|
||||
'mail_service' => 'Servizio Postale',
|
||||
'charter_special' => 'Charter con Manutenzione Speciale',
|
||||
'positioning' => 'Posizionamento (Traghetto/Consegna/Dimostrazione)',
|
||||
'technical_test' => 'Prova Tecnica',
|
||||
'military' => 'Militare',
|
||||
'technical_stop' => 'Fermo Tecnico',
|
||||
],
|
||||
];
|
||||
|
@ -14,9 +14,9 @@ return [
|
||||
*/
|
||||
|
||||
'password' => 'Le password devono essere lunghe almeno sei caratteri ed essere identiche al campo di conferma password.',
|
||||
'reset' => 'La tua password è stata resettata!',
|
||||
'sent' => 'Ti abbiamo inviato via email il link per resettare la password!',
|
||||
'token' => 'Questo token per resettare la password non è valido.',
|
||||
'user' => "Non ci è stato possibile trovare un utente con questo indirizzo email.",
|
||||
|
||||
'reset' => 'La tua password è stata resettata!',
|
||||
'sent' => 'Ti abbiamo inviato via email il link per resettare la password!',
|
||||
'token' => 'Questo token per resettare la password non è valido.',
|
||||
'user' => 'Non ci è stato possibile trovare un utente con questo indirizzo email.',
|
||||
'confirm' => 'Conferma Password',
|
||||
];
|
||||
|
@ -8,7 +8,6 @@ return [
|
||||
'pilotreport' => 'Rapporto Pilota|Rapporti Pilota',
|
||||
'arrived' => 'Arrivato',
|
||||
'source' => 'Fonte',
|
||||
'flighttype' => 'Tipo di Volo',
|
||||
'filedroute' => 'Rotta Inserita',
|
||||
'filedon' => 'Inserito il',
|
||||
'fare' => 'Tariffa|Tariffe',
|
||||
@ -23,8 +22,6 @@ return [
|
||||
'deparrinformations' => 'Informazioni di Partenza/Arrivo',
|
||||
'aircraftinformations' => 'Informazioni sull\'Aeromobile',
|
||||
'dateflown' => 'Volato in Data',
|
||||
'departuretime' => 'Ora di Partenza',
|
||||
'arrivaltime' => 'Ora di Arrivo',
|
||||
'deletepirep' => 'Cancella PIREP',
|
||||
'savepirep' => 'Salva PIREP',
|
||||
'submitpirep' => 'Invia PIREP',
|
||||
@ -32,4 +29,41 @@ return [
|
||||
'fileflightreport' => 'Inserisci Rapporto di Volo',
|
||||
'newflightreport' => 'Nuovo Rapporto di Volo',
|
||||
'submitted' => 'Inviato',
|
||||
|
||||
'source_type' => [
|
||||
'manual' => 'Manuale',
|
||||
'acars' => 'ACARS',
|
||||
],
|
||||
'state' => [
|
||||
'accepted' => 'Accettato',
|
||||
'pending' => 'In Attesa di Approvazione',
|
||||
'rejected' => 'Rifiutato',
|
||||
'in_progress' => 'In Lavorazione',
|
||||
'cancelled' => 'Cancellato',
|
||||
'deleted' => 'Eliminato',
|
||||
'draft' => 'Bozza',
|
||||
],
|
||||
'status' => [
|
||||
'initialized' => 'Iniziato',
|
||||
'scheduled' => 'Programmato',
|
||||
'boarding' => 'Imbarco',
|
||||
'ready_start' => 'Pronto alla partenza',
|
||||
'push_tow' => 'Pushback/Rimorchio',
|
||||
'departed' => 'Partito',
|
||||
'ready_deice' => 'Pronto al de-icing',
|
||||
'deicing' => 'De-icing in corso',
|
||||
'ground_ret' => 'Ritorno a Terra',
|
||||
'taxi' => 'Taxi',
|
||||
'takeoff' => 'Decollo',
|
||||
'initial_clb' => 'Salita Iniziale',
|
||||
'enroute' => 'Enroute',
|
||||
'diverted' => 'Diverted',
|
||||
'approach' => 'Approccio',
|
||||
'final_appr' => 'Approccio Finale',
|
||||
'landing' => 'Atterraggio',
|
||||
'landed' => 'Atterrato',
|
||||
'arrived' => 'Arrivato',
|
||||
'cancelled' => 'Cancellato',
|
||||
'emerg_decent' => 'Discesa di Emergenza',
|
||||
]
|
||||
];
|
||||
|
@ -5,7 +5,6 @@
|
||||
|
||||
return [
|
||||
'avatarresize' => 'Questo avatar sarà ridimensionato a :width x :height pixels',
|
||||
'flighthours' => 'Ore di Volo',
|
||||
'newapikey' => 'Nuova Chiave API',
|
||||
'yourprofile' => 'Il Tuo Profilo',
|
||||
'apikey' => 'Chiave API',
|
||||
|
@ -1,106 +0,0 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'global' => [
|
||||
'active' => 'Attivo',
|
||||
'inactive' => 'Inattivo'
|
||||
],
|
||||
|
||||
'aircraft' => [
|
||||
'status' => [
|
||||
'active' => 'Attivo',
|
||||
'stored' => 'Immagazzinato',
|
||||
'retired' => 'Ritirato',
|
||||
'scrapped' => 'Rottamato',
|
||||
'written' => 'Stornato',
|
||||
],
|
||||
],
|
||||
|
||||
'days' => [
|
||||
'mon' => 'Lunedì',
|
||||
'tues' => 'Martedì',
|
||||
'wed' => 'Mercoledì',
|
||||
'thurs' => 'Giovedì',
|
||||
'fri' => 'Venerdì',
|
||||
'sat' => 'Sabato',
|
||||
'sun' => 'Domenica',
|
||||
],
|
||||
|
||||
'expenses' => [
|
||||
'type' => [
|
||||
'flight' => 'Volo',
|
||||
'daily' => 'Giornaliera',
|
||||
'monthly' => 'Mensile',
|
||||
],
|
||||
],
|
||||
|
||||
'flights' => [
|
||||
'type' => [
|
||||
'pass_scheduled' => 'Passeggeri - Programmato',
|
||||
'cargo_scheduled' => 'Cargo - Programmato',
|
||||
'charter_pass_only' => 'Charter - Solo Passeggeri',
|
||||
'addtl_cargo_mail' => 'Cargo/Posta Addizionale',
|
||||
'special_vip' => 'Volo VIP Speciale (FAA/Governo)',
|
||||
'pass_addtl' => 'Passeggeri - Addizionale',
|
||||
'charter_cargo' => 'Charter - Cargo/Posta',
|
||||
'ambulance' => 'Volo Ambulanza',
|
||||
'training_flight' => 'Volo di Addestramento',
|
||||
'mail_service' => 'Servizio Postale',
|
||||
'charter_special' => 'Charter con Manutenzione Speciale',
|
||||
'positioning' => 'Posizionamento (Traghetto/Consegna/Dimostrazione)',
|
||||
'technical_test' => 'Prova Tecnica',
|
||||
'military' => 'Militare',
|
||||
'technical_stop' => 'Fermo Tecnico',
|
||||
],
|
||||
],
|
||||
|
||||
'pireps' => [
|
||||
'source' => [
|
||||
'manual' => 'Manuale',
|
||||
'acars' => 'ACARS',
|
||||
],
|
||||
'state' => [
|
||||
'accepted' => 'Accettato',
|
||||
'pending' => 'In Attesa di Approvazione',
|
||||
'rejected' => 'Rifiutato',
|
||||
'in_progress' => 'In Lavorazione',
|
||||
'cancelled' => 'Cancellato',
|
||||
'deleted' => 'Eliminato',
|
||||
'draft' => 'Bozza',
|
||||
],
|
||||
'status' => [
|
||||
'initialized' => 'Iniziato',
|
||||
'scheduled' => 'Programmato',
|
||||
'boarding' => 'Imbarco',
|
||||
'ready_start' => 'Pronto alla partenza',
|
||||
'push_tow' => 'Pushback/Rimorchio',
|
||||
'departed' => 'Partito',
|
||||
'ready_deice' => 'Pronto al de-icing',
|
||||
'deicing' => 'De-icing in corso',
|
||||
'ground_ret' => 'Ritorno a Terra',
|
||||
'taxi' => 'Taxi',
|
||||
'takeoff' => 'Decollo',
|
||||
'initial_clb' => 'Salita Iniziale',
|
||||
'enroute' => 'Enroute',
|
||||
'diverted' => 'Diverted',
|
||||
'approach' => 'Approccio',
|
||||
'final_appr' => 'Approccio Finale',
|
||||
'landing' => 'Atterraggio',
|
||||
'landed' => 'Atterrato',
|
||||
'arrived' => 'Arrivato',
|
||||
'cancelled' => 'Cancellato',
|
||||
'emerg_decent' => 'Discesa di Emergenza',
|
||||
]
|
||||
],
|
||||
|
||||
'users' => [
|
||||
'state' => [
|
||||
'pending' => 'In Attesa',
|
||||
'active' => 'Attivo',
|
||||
'rejected' => 'Rifiutato',
|
||||
'on_leave' => 'In Ferie',
|
||||
'suspended' => 'Sospeso',
|
||||
],
|
||||
],
|
||||
];
|
@ -5,4 +5,11 @@
|
||||
|
||||
return [
|
||||
'location' => 'Posizione',
|
||||
'state' => [
|
||||
'pending' => 'In Attesa',
|
||||
'active' => 'Attivo',
|
||||
'rejected' => 'Rifiutato',
|
||||
'on_leave' => 'In Ferie',
|
||||
'suspended' => 'Sospeso',
|
||||
],
|
||||
];
|
||||
|
@ -18,18 +18,18 @@ return [
|
||||
],
|
||||
|
||||
'weather' => [
|
||||
'metarnotretrieved' => 'I dati METAR/TAF non possono essere recuperati',
|
||||
'conditions' => 'Condizioni',
|
||||
'visibility' => 'visibilità',
|
||||
'humidity' => 'umidità',
|
||||
'dewpoint' => 'punto di rugiada',
|
||||
'barometer' => 'Barometro',
|
||||
'clouds' => 'Nuvole',
|
||||
'wind' => 'Vento',
|
||||
'guststo' => 'raffiche da',
|
||||
'remarks' => 'Remarks',
|
||||
'updated' => 'Aggiornato',
|
||||
'hrago' => 'ora fa|ore fa',
|
||||
'minago' => 'ninuto fa|minuti fa',
|
||||
'nometar' => 'I dati METAR/TAF non possono essere recuperati',
|
||||
'conditions' => 'Condizioni',
|
||||
'visibility' => 'visibilità',
|
||||
'humidity' => 'umidità',
|
||||
'dewpoint' => 'punto di rugiada',
|
||||
'barometer' => 'Barometro',
|
||||
'clouds' => 'Nuvole',
|
||||
'wind' => 'Vento',
|
||||
'guststo' => 'raffiche da',
|
||||
'remarks' => 'Remarks',
|
||||
'updated' => 'Aggiornato',
|
||||
'hrago' => 'ora fa|ore fa',
|
||||
'minago' => 'ninuto fa|minuti fa',
|
||||
],
|
||||
];
|
||||
|
@ -147,31 +147,31 @@
|
||||
<select id="days_of_week" name="days[]" multiple="multiple" size="7" style="width: 100%;">
|
||||
<option value="{{\App\Models\Enums\Days::MONDAY}}"
|
||||
{{in_mask($days, \App\Models\Enums\Days::MONDAY) ? 'selected':'' }}>
|
||||
@lang('system.days.mon')
|
||||
@lang('common.days.mon')
|
||||
</option>
|
||||
<option value="{{\App\Models\Enums\Days::TUESDAY}}"
|
||||
{{in_mask($days, \App\Models\Enums\Days::TUESDAY) ? 'selected':'' }}>
|
||||
@lang('system.days.tues')
|
||||
@lang('common.days.tues')
|
||||
</option>
|
||||
<option value="{{\App\Models\Enums\Days::WEDNESDAY}}"
|
||||
{{in_mask($days, \App\Models\Enums\Days::WEDNESDAY) ? 'selected':'' }}>
|
||||
@lang('system.days.wed')
|
||||
@lang('common.days.wed')
|
||||
</option>
|
||||
<option value="{{\App\Models\Enums\Days::THURSDAY}}"
|
||||
{{in_mask($days, \App\Models\Enums\Days::THURSDAY) ? 'selected':'' }}>
|
||||
@lang('system.days.thurs')
|
||||
@lang('common.days.thurs')
|
||||
</option>
|
||||
<option value="{{\App\Models\Enums\Days::FRIDAY}}"
|
||||
{{in_mask($days, \App\Models\Enums\Days::FRIDAY) ? 'selected':'' }}>
|
||||
@lang('system.days.fri')
|
||||
@lang('common.days.fri')
|
||||
</option>
|
||||
<option value="{{\App\Models\Enums\Days::SATURDAY}}"
|
||||
{{in_mask($days, \App\Models\Enums\Days::SATURDAY) ? 'selected':'false' }}>
|
||||
@lang('system.days.sat')
|
||||
@lang('common.days.sat')
|
||||
</option>
|
||||
<option value="{{\App\Models\Enums\Days::SUNDAY}}"
|
||||
{{in_mask($days, \App\Models\Enums\Days::SUNDAY) ? 'selected':'false' }}>
|
||||
@lang('system.days.sun')
|
||||
@lang('common.days.sun')
|
||||
</option>
|
||||
</select>
|
||||
</div>
|
||||
|
@ -36,10 +36,10 @@
|
||||
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
<h5>@lang('airports.inboundflights')</h5>
|
||||
<h5>@lang('flights.inbound')</h5>
|
||||
@if(!$inbound_flights)
|
||||
<div class="jumbotron text-center">
|
||||
@lang('airports.noflightfound')
|
||||
@lang('flights.none')
|
||||
</div>
|
||||
@else
|
||||
<table class="table table-striped table-condensed">
|
||||
@ -71,10 +71,10 @@
|
||||
</div>
|
||||
|
||||
<div class="col-6">
|
||||
<h5>@lang('airports.outboundflights')</h5>
|
||||
<h5>@lang('flights.outbound')</h5>
|
||||
@if(!$outbound_flights)
|
||||
<div class="jumbotron text-center">
|
||||
@lang('airports.noflightfound')
|
||||
@lang('flights.none')
|
||||
</div>
|
||||
@else
|
||||
<table class="table table-striped table-condensed">
|
||||
|
@ -35,7 +35,7 @@
|
||||
<p class="text-danger">{{ $errors->first('airline_id') }}</p>
|
||||
@endif
|
||||
|
||||
<label for="home_airport" class="control-label">@lang('common.homeairport')</label>
|
||||
<label for="home_airport" class="control-label">@lang('airports.home')</label>
|
||||
<div class="input-group form-group-no-border {{ $errors->has('home_airport') ? 'has-danger' : '' }}">
|
||||
{{ Form::select('home_airport_id', $airports, null , ['class' => 'form-control select2']) }}
|
||||
</div>
|
||||
@ -67,7 +67,7 @@
|
||||
<p class="text-danger">{{ $errors->first('password') }}</p>
|
||||
@endif
|
||||
|
||||
<label for="password_confirmation" class="control-label">@lang('common.confirmpassword')</label>
|
||||
<label for="password_confirmation" class="control-label">@lang('passwords.confirm')</label>
|
||||
<div class="input-group form-group-no-border {{ $errors->has('password_confirmation') ? 'has-danger' : '' }}">
|
||||
{{ Form::password('password_confirmation', ['class' => 'form-control']) }}
|
||||
</div>
|
||||
|
@ -53,7 +53,7 @@
|
||||
@else
|
||||
<h3 class="header">{{ $user->home_airport_id }}</h3>
|
||||
@endif
|
||||
<h5 class="description">@lang('common.currentairport')</h5>
|
||||
<h5 class="description">@lang('airports.current')</h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -8,17 +8,17 @@
|
||||
'class'=>'form-inline'
|
||||
]) }}
|
||||
<div>
|
||||
<p>@lang('common.flightnumber')</p>
|
||||
<p>@lang('flights.flightnumber')</p>
|
||||
{{ Form::text('flight_number', null, ['class' => 'form-control']) }}
|
||||
</div>
|
||||
|
||||
<div style="margin-top: 10px;">
|
||||
<p>@lang('common.departureairport')</p>
|
||||
<p>@lang('airports.departure')</p>
|
||||
{{ Form::select('dep_icao', $airports, null , ['class' => 'form-control']) }}
|
||||
</div>
|
||||
|
||||
<div style="margin-top: 10px;">
|
||||
<p>@lang('common.arrivalairport')</p>
|
||||
<p>@lang('airports.arrival')</p>
|
||||
{{ Form::select('arr_icao', $airports, null , ['class' => 'form-control']) }}
|
||||
</div>
|
||||
|
||||
|
@ -45,7 +45,7 @@
|
||||
@endif
|
||||
|
||||
<tr>
|
||||
<td>@lang('common.route')</td>
|
||||
<td>@lang('flights.route')</td>
|
||||
<td>{{ $flight->route }}</td>
|
||||
</tr>
|
||||
|
||||
|
@ -61,7 +61,7 @@
|
||||
<div class="col-sm-7">
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<span class="title">{{ strtoupper(__('common.route')) }} </span>
|
||||
<span class="title">{{ strtoupper(__('flights.route')) }} </span>
|
||||
{{ $flight->route }}
|
||||
</div>
|
||||
</div>
|
||||
|
@ -52,7 +52,7 @@ flight reports that have been filed. You've been warned!
|
||||
@else
|
||||
<div class="input-group input-group-sm mb3">
|
||||
{{ Form::text('flight_number', null, [
|
||||
'placeholder' => __('common.flightnumber'),
|
||||
'placeholder' => __('flights.flightnumber'),
|
||||
'class' => 'form-control',
|
||||
'readonly' => (!empty($pirep) && $pirep->read_only),
|
||||
]) }}
|
||||
@ -75,7 +75,7 @@ flight reports that have been filed. You've been warned!
|
||||
@endif
|
||||
</div>
|
||||
<div class="col-lg-4">
|
||||
{{ Form::label('flight_type', __('pireps.flighttype')) }}
|
||||
{{ Form::label('flight_type', __('flights.flighttype')) }}
|
||||
@if(!empty($pirep) && $pirep->read_only)
|
||||
<p>{{ \App\Models\Enums\FlightType::label($pirep->flight_type) }}</p>
|
||||
{{ Form::hidden('flight_type') }}
|
||||
@ -96,7 +96,7 @@ flight reports that have been filed. You've been warned!
|
||||
|
||||
<div class="row">
|
||||
<div class="col-3">
|
||||
{{ Form::label('hours', __('common.flighttime')) }}
|
||||
{{ Form::label('hours', __('flights.flighttime')) }}
|
||||
@if(!empty($pirep) && $pirep->read_only)
|
||||
<p>
|
||||
{{ $pirep->hours.' '.trans_choice('common.hour', $pirep->hours) }}, {{ $pirep->minutes.' '.trans_choice('common.minute', $pirep->minutes) }}
|
||||
@ -135,18 +135,18 @@ flight reports that have been filed. You've been warned!
|
||||
|
||||
|
||||
<div class="col-3">
|
||||
{{--{{ Form::label('departure_time', __('pireps.departuretime')) }}
|
||||
{{--{{ Form::label('departure_time', __('flights.departuretime')) }}
|
||||
{{ Form::text('departure_time', null, [
|
||||
'placeholder' => __('pireps.departuretime'),
|
||||
'placeholder' => __('flights.departuretime'),
|
||||
'class' => 'form-control',
|
||||
'readonly' => $pirep->read_only]) }}--}}
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-3">
|
||||
{{--{{ Form::label('arrival_time', __('pireps.arrivaltime')) }}
|
||||
{{--{{ Form::label('arrival_time', __('flights.arrivaltime')) }}
|
||||
{{ Form::text('arrival_time', null, [
|
||||
'placeholder' => __('pireps.arrivaltime'),
|
||||
'placeholder' => __('flights.arrivaltime'),
|
||||
'class' => 'form-control',
|
||||
'readonly' => $pirep->read_only]) }}--}}
|
||||
</div>
|
||||
@ -163,7 +163,7 @@ flight reports that have been filed. You've been warned!
|
||||
<div class="form-container-body">
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
{{ Form::label('dpt_airport_id', __('common.departureairport')) }}
|
||||
{{ Form::label('dpt_airport_id', __('airports.departure')) }}
|
||||
@if(!empty($pirep) && $pirep->read_only)
|
||||
{{ $pirep->dpt_airport->name }}
|
||||
(<a href="{{route('frontend.airports.show', [
|
||||
@ -183,7 +183,7 @@ flight reports that have been filed. You've been warned!
|
||||
</div>
|
||||
|
||||
<div class="col-6">
|
||||
{{ Form::label('arr_airport_id', __('common.arrivalairport')) }}
|
||||
{{ Form::label('arr_airport_id', __('airports.arrival')) }}
|
||||
@if(!empty($pirep) && $pirep->read_only)
|
||||
{{ $pirep->arr_airport->name }}
|
||||
(<a href="{{route('frontend.airports.show', [
|
||||
@ -234,13 +234,13 @@ flight reports that have been filed. You've been warned!
|
||||
|
||||
<div class="form-container">
|
||||
<h6><i class="far fa-comments"></i>
|
||||
@lang('common.route')
|
||||
@lang('flights.route')
|
||||
</h6>
|
||||
<div class="form-container-body">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="input-group input-group-sm form-group">
|
||||
{{ Form::textarea('route', null, ['class' => 'form-control', 'placeholder' => __('common.route')]) }}
|
||||
{{ Form::textarea('route', null, ['class' => 'form-control', 'placeholder' => __('flights.route')]) }}
|
||||
<p class="text-danger">{{ $errors->first('route') }}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -116,7 +116,7 @@
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>@lang('pireps.flighttype')</td>
|
||||
<td>@lang('flights.flighttype')</td>
|
||||
<td>{{ \App\Models\Enums\FlightType::label($pirep->flight_type) }}</td>
|
||||
</tr>
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
<th>@lang('common.departure')</th>
|
||||
<th>@lang('common.arrival')</th>
|
||||
<th>@lang('common.aircraft')</th>
|
||||
<th class="text-center">@lang('common.flighttime')</th>
|
||||
<th class="text-center">@lang('flights.flighttime')</th>
|
||||
<th class="text-center">@lang('common.status')</th>
|
||||
<th>@lang('pireps.submitted')</th>
|
||||
<th></th>
|
||||
|
@ -38,7 +38,7 @@
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>@lang('common.homeairport')</td>
|
||||
<td>@lang('airports.home')</td>
|
||||
<td>
|
||||
<div class="input-group form-group-no-border{{ $errors->has('home_airport_id') ? ' has-danger' : '' }}">
|
||||
{{ Form::select('home_airport_id', $airports, null , ['class' => 'form-control select2']) }}
|
||||
@ -84,7 +84,7 @@
|
||||
<p class="text-danger">{{ $errors->first('password') }}</p>
|
||||
@endif
|
||||
|
||||
<p>@lang('common.confirmpassword'):</p>
|
||||
<p>@lang('passwords.confirm'):</p>
|
||||
<div class="input-group form-group-no-border{{ $errors->has('password_confirmation') ? ' has-danger' : '' }}">
|
||||
{{ Form::password('password_confirmation', ['class' => 'form-control']) }}
|
||||
</div>
|
||||
|
@ -28,20 +28,20 @@
|
||||
|
||||
<div class="social-description">
|
||||
<h2>{{ \App\Facades\Utils::minutesToTimeString($user->flight_time, false) }}</h2>
|
||||
<p>@lang('profile.flighthours')</p>
|
||||
<p>@lang('flights.flighthours')</p>
|
||||
</div>
|
||||
|
||||
@if($user->home_airport)
|
||||
<div class="social-description">
|
||||
<h2>{{ $user->home_airport->icao }}</h2>
|
||||
<p>@lang('common.homeairport')</p>
|
||||
<p>@lang('airports.home')</p>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@if($user->current_airport)
|
||||
<div class="social-description">
|
||||
<h2>{{ $user->current_airport->icao }}</h2>
|
||||
<p>@lang('common.currentairport')</p>
|
||||
<p>@lang('airports.current')</p>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
|
@ -51,7 +51,7 @@
|
||||
<div style="float: right; margin-left: 30px;">
|
||||
<p id="map_flight_stats_middle">
|
||||
@lang('common.status'): <span style="font-weight: bold">{ pirep.status_text }</span><br />
|
||||
@lang('common.flighttime'): <span style="font-weight: bold">{ pirep.flight_time | time_hm }</span><br />
|
||||
@lang('flights.flighttime'): <span style="font-weight: bold">{ pirep.flight_time | time_hm }</span><br />
|
||||
@lang('common.distance'): <span style="font-weight: bold">{ pirep.position.distance.{{setting('units.distance')}} }</span>
|
||||
/ <span style="font-weight: bold">
|
||||
{ pirep.planned_distance.{{setting('units.distance')}} }</span>
|
||||
|
@ -5,7 +5,7 @@ https://api.checkwx.com/#metar-decoded
|
||||
|
||||
--}}
|
||||
@if(!$metar)
|
||||
<p>@lang('widgets.weather.metarnotretrieved')</p>
|
||||
<p>@lang('widgets.weather.nometar')</p>
|
||||
@else
|
||||
<table class="table table-striped">
|
||||
<tr>
|
||||
|
Loading…
Reference in New Issue
Block a user