Apply fixes from StyleCI
This commit is contained in:
committed by
StyleCI Bot
parent
20f46adbc4
commit
9596d88b48
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'status' => [
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'ident' => 'Identification',
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'dashboard' => 'Dashboard',
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'totalhours' => 'Total Hours',
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'none' => 'There are no downloads!',
|
||||
|
||||
@@ -1,10 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'buttontroubles' =>
|
||||
'If you’re having trouble clicking the ":actiontext" button, ' .
|
||||
'buttontroubles' => 'If you’re having trouble clicking the ":actiontext" button, '.
|
||||
'copy and paste the URL below into your web browser:',
|
||||
];
|
||||
|
||||
@@ -1,19 +1,15 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'401' => [
|
||||
'title' => 'Unauthorized Access',
|
||||
'message' =>
|
||||
'Well, this is embarrassing, you are not authorized to access or perform this function. '.
|
||||
'message' => 'Well, this is embarrassing, you are not authorized to access or perform this function. '.
|
||||
'Click <a href=":link">here</a> to go back to the home page.',
|
||||
],
|
||||
'404' => [
|
||||
'title' => 'Page Not Found',
|
||||
'message' =>
|
||||
'Well, this is embarrassing, the page you requested does not exist.'.
|
||||
'message' => 'Well, this is embarrassing, the page you requested does not exist.'.
|
||||
'Click <a href=":link">here</a> to go back to the home page.',
|
||||
],
|
||||
'503' => [
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'type' => [
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'flightnumber' => 'Flight Number',
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'welcome' => [
|
||||
|
||||
@@ -1,246 +1,245 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/**
|
||||
*
|
||||
* Shared translations.
|
||||
*
|
||||
*/
|
||||
'title' => 'phpVMS Installer',
|
||||
'next' => 'Next Step',
|
||||
'back' => 'Previous',
|
||||
'finish' => 'Install',
|
||||
'forms' => [
|
||||
'errorTitle' => 'The Following errors occurred:',
|
||||
],
|
||||
|
||||
/**
|
||||
*
|
||||
* Home page translations.
|
||||
*
|
||||
*/
|
||||
'welcome' => [
|
||||
'templateTitle' => 'Welcome',
|
||||
'title' => 'phpVMS Installer',
|
||||
'message' => 'Easy Installation and Setup Wizard.',
|
||||
'next' => 'Check Requirements',
|
||||
],
|
||||
|
||||
/**
|
||||
*
|
||||
* Requirements page translations.
|
||||
*
|
||||
*/
|
||||
'requirements' => [
|
||||
'templateTitle' => 'Step 1 | Server Requirements',
|
||||
'title' => 'Server Requirements',
|
||||
'next' => 'Check Permissions',
|
||||
],
|
||||
|
||||
/**
|
||||
*
|
||||
* Permissions page translations.
|
||||
*
|
||||
*/
|
||||
'permissions' => [
|
||||
'templateTitle' => 'Step 2 | Permissions',
|
||||
'title' => 'Permissions',
|
||||
'next' => 'Configure Environment',
|
||||
],
|
||||
|
||||
/**
|
||||
*
|
||||
* Environment page translations.
|
||||
*
|
||||
*/
|
||||
'environment' => [
|
||||
'menu' => [
|
||||
'templateTitle' => 'Step 3 | Environment Settings',
|
||||
'title' => 'Environment Settings',
|
||||
'desc' => 'Please select how you want to configure the apps <code>.env</code> file.',
|
||||
'wizard-button' => 'Form Wizard Setup',
|
||||
'classic-button' => 'Classic Text Editor',
|
||||
],
|
||||
'wizard' => [
|
||||
'templateTitle' => 'Step 3 | Environment Settings | Guided Wizard',
|
||||
'title' => 'Guided <code>.env</code> Wizard',
|
||||
'tabs' => [
|
||||
'environment' => 'Environment',
|
||||
'database' => 'Database',
|
||||
'application' => 'Application'
|
||||
],
|
||||
'form' => [
|
||||
'name_required' => 'An environment name is required.',
|
||||
'app_name_label' => 'App Name',
|
||||
'app_name_placeholder' => 'App Name',
|
||||
'app_environment_label' => 'App Environment',
|
||||
'app_environment_label_local' => 'Local',
|
||||
'app_environment_label_developement' => 'Development',
|
||||
'app_environment_label_qa' => 'Qa',
|
||||
'app_environment_label_production' => 'Production',
|
||||
'app_environment_label_other' => 'Other',
|
||||
'app_environment_placeholder_other' => 'Enter your environment...',
|
||||
'app_debug_label' => 'App Debug',
|
||||
'app_debug_label_true' => 'True',
|
||||
'app_debug_label_false' => 'False',
|
||||
'app_log_level_label' => 'App Log Level',
|
||||
'app_log_level_label_debug' => 'debug',
|
||||
'app_log_level_label_info' => 'info',
|
||||
'app_log_level_label_notice' => 'notice',
|
||||
'app_log_level_label_warning' => 'warning',
|
||||
'app_log_level_label_error' => 'error',
|
||||
'app_log_level_label_critical' => 'critical',
|
||||
'app_log_level_label_alert' => 'alert',
|
||||
'app_log_level_label_emergency' => 'emergency',
|
||||
'app_url_label' => 'App Url',
|
||||
'app_url_placeholder' => 'App Url',
|
||||
'db_connection_label' => 'Database Connection',
|
||||
'db_connection_label_mysql' => 'mysql',
|
||||
'db_connection_label_sqlite' => 'sqlite',
|
||||
'db_connection_label_pgsql' => 'pgsql',
|
||||
'db_connection_label_sqlsrv' => 'sqlsrv',
|
||||
'db_host_label' => 'Database Host',
|
||||
'db_host_placeholder' => 'Database Host',
|
||||
'db_port_label' => 'Database Port',
|
||||
'db_port_placeholder' => 'Database Port',
|
||||
'db_name_label' => 'Database Name',
|
||||
'db_name_placeholder' => 'Database Name',
|
||||
'db_username_label' => 'Database User Name',
|
||||
'db_username_placeholder' => 'Database User Name',
|
||||
'db_password_label' => 'Database Password',
|
||||
'db_password_placeholder' => 'Database Password',
|
||||
|
||||
'app_tabs' => [
|
||||
'more_info' => 'More Info',
|
||||
'broadcasting_title' => 'Broadcasting, Caching, Session, & Queue',
|
||||
'broadcasting_label' => 'Broadcast Driver',
|
||||
'broadcasting_placeholder' => 'Broadcast Driver',
|
||||
'cache_label' => 'Cache Driver',
|
||||
'cache_placeholder' => 'Cache Driver',
|
||||
'session_label' => 'Session Driver',
|
||||
'session_placeholder' => 'Session Driver',
|
||||
'queue_label' => 'Queue Driver',
|
||||
'queue_placeholder' => 'Queue Driver',
|
||||
'redis_label' => 'Redis Driver',
|
||||
'redis_host' => 'Redis Host',
|
||||
'redis_password' => 'Redis Password',
|
||||
'redis_port' => 'Redis Port',
|
||||
|
||||
'mail_label' => 'Mail',
|
||||
'mail_driver_label' => 'Mail Driver',
|
||||
'mail_driver_placeholder' => 'Mail Driver',
|
||||
'mail_host_label' => 'Mail Host',
|
||||
'mail_host_placeholder' => 'Mail Host',
|
||||
'mail_port_label' => 'Mail Port',
|
||||
'mail_port_placeholder' => 'Mail Port',
|
||||
'mail_username_label' => 'Mail Username',
|
||||
'mail_username_placeholder' => 'Mail Username',
|
||||
'mail_password_label' => 'Mail Password',
|
||||
'mail_password_placeholder' => 'Mail Password',
|
||||
'mail_encryption_label' => 'Mail Encryption',
|
||||
'mail_encryption_placeholder' => 'Mail Encryption',
|
||||
|
||||
'pusher_label' => 'Pusher',
|
||||
'pusher_app_id_label' => 'Pusher App Id',
|
||||
'pusher_app_id_palceholder' => 'Pusher App Id',
|
||||
'pusher_app_key_label' => 'Pusher App Key',
|
||||
'pusher_app_key_palceholder' => 'Pusher App Key',
|
||||
'pusher_app_secret_label' => 'Pusher App Secret',
|
||||
'pusher_app_secret_palceholder' => 'Pusher App Secret',
|
||||
],
|
||||
'buttons' => [
|
||||
'setup_database' => 'Setup Database',
|
||||
'setup_application' => 'Setup Application',
|
||||
'install' => 'Install',
|
||||
],
|
||||
],
|
||||
],
|
||||
'classic' => [
|
||||
'templateTitle' => 'Step 3 | Environment Settings | Classic Editor',
|
||||
'title' => 'Classic Environment Editor',
|
||||
'save' => 'Save .env',
|
||||
'back' => 'Use Form Wizard',
|
||||
'install' => 'Save and Install',
|
||||
],
|
||||
'success' => 'Your .env file settings have been saved.',
|
||||
'errors' => 'Unable to save the .env file, Please create it manually.',
|
||||
],
|
||||
|
||||
'install' => 'Install',
|
||||
|
||||
/**
|
||||
*
|
||||
* Installed Log translations.
|
||||
*
|
||||
*/
|
||||
'installed' => [
|
||||
'success_log_message' => 'Laravel Installer successfully INSTALLED on ',
|
||||
],
|
||||
|
||||
/**
|
||||
*
|
||||
* Final page translations.
|
||||
*
|
||||
*/
|
||||
'final' => [
|
||||
'title' => 'Installation Finished',
|
||||
'templateTitle' => 'Installation Finished',
|
||||
'finished' => 'Application has been successfully installed.',
|
||||
'migration' => 'Migration & Seed Console Output:',
|
||||
'console' => 'Application Console Output:',
|
||||
'log' => 'Installation Log Entry:',
|
||||
'env' => 'Final .env File:',
|
||||
'exit' => 'Click here to exit',
|
||||
],
|
||||
|
||||
/**
|
||||
*
|
||||
* Update specific translations
|
||||
*
|
||||
*/
|
||||
'updater' => [
|
||||
/**
|
||||
*
|
||||
* Shared translations.
|
||||
*
|
||||
*/
|
||||
'title' => 'Laravel Updater',
|
||||
|
||||
/**
|
||||
*
|
||||
* Welcome page translations for update feature.
|
||||
*
|
||||
*/
|
||||
'welcome' => [
|
||||
'title' => 'Welcome To The Updater',
|
||||
'message' => 'Welcome to the update wizard.',
|
||||
],
|
||||
|
||||
/**
|
||||
*
|
||||
* Welcome page translations for update feature.
|
||||
*
|
||||
*/
|
||||
'overview' => [
|
||||
'title' => 'Overview',
|
||||
'message' => 'There is 1 update.|There are :number updates.',
|
||||
'install_updates' => "Install Updates"
|
||||
],
|
||||
|
||||
/**
|
||||
*
|
||||
* Final page translations.
|
||||
*
|
||||
*/
|
||||
'final' => [
|
||||
'title' => 'Finished',
|
||||
'finished' => 'Application\'s database has been successfully updated.',
|
||||
'exit' => 'Click here to exit',
|
||||
],
|
||||
|
||||
'log' => [
|
||||
'success_message' => 'Laravel Installer successfully UPDATED on ',
|
||||
],
|
||||
],
|
||||
];
|
||||
<?php
|
||||
|
||||
return [
|
||||
/*
|
||||
*
|
||||
* Shared translations.
|
||||
*
|
||||
*/
|
||||
'title' => 'phpVMS Installer',
|
||||
'next' => 'Next Step',
|
||||
'back' => 'Previous',
|
||||
'finish' => 'Install',
|
||||
'forms' => [
|
||||
'errorTitle' => 'The Following errors occurred:',
|
||||
],
|
||||
|
||||
/*
|
||||
*
|
||||
* Home page translations.
|
||||
*
|
||||
*/
|
||||
'welcome' => [
|
||||
'templateTitle' => 'Welcome',
|
||||
'title' => 'phpVMS Installer',
|
||||
'message' => 'Easy Installation and Setup Wizard.',
|
||||
'next' => 'Check Requirements',
|
||||
],
|
||||
|
||||
/*
|
||||
*
|
||||
* Requirements page translations.
|
||||
*
|
||||
*/
|
||||
'requirements' => [
|
||||
'templateTitle' => 'Step 1 | Server Requirements',
|
||||
'title' => 'Server Requirements',
|
||||
'next' => 'Check Permissions',
|
||||
],
|
||||
|
||||
/*
|
||||
*
|
||||
* Permissions page translations.
|
||||
*
|
||||
*/
|
||||
'permissions' => [
|
||||
'templateTitle' => 'Step 2 | Permissions',
|
||||
'title' => 'Permissions',
|
||||
'next' => 'Configure Environment',
|
||||
],
|
||||
|
||||
/*
|
||||
*
|
||||
* Environment page translations.
|
||||
*
|
||||
*/
|
||||
'environment' => [
|
||||
'menu' => [
|
||||
'templateTitle' => 'Step 3 | Environment Settings',
|
||||
'title' => 'Environment Settings',
|
||||
'desc' => 'Please select how you want to configure the apps <code>.env</code> file.',
|
||||
'wizard-button' => 'Form Wizard Setup',
|
||||
'classic-button' => 'Classic Text Editor',
|
||||
],
|
||||
'wizard' => [
|
||||
'templateTitle' => 'Step 3 | Environment Settings | Guided Wizard',
|
||||
'title' => 'Guided <code>.env</code> Wizard',
|
||||
'tabs' => [
|
||||
'environment' => 'Environment',
|
||||
'database' => 'Database',
|
||||
'application' => 'Application',
|
||||
],
|
||||
'form' => [
|
||||
'name_required' => 'An environment name is required.',
|
||||
'app_name_label' => 'App Name',
|
||||
'app_name_placeholder' => 'App Name',
|
||||
'app_environment_label' => 'App Environment',
|
||||
'app_environment_label_local' => 'Local',
|
||||
'app_environment_label_developement' => 'Development',
|
||||
'app_environment_label_qa' => 'Qa',
|
||||
'app_environment_label_production' => 'Production',
|
||||
'app_environment_label_other' => 'Other',
|
||||
'app_environment_placeholder_other' => 'Enter your environment...',
|
||||
'app_debug_label' => 'App Debug',
|
||||
'app_debug_label_true' => 'True',
|
||||
'app_debug_label_false' => 'False',
|
||||
'app_log_level_label' => 'App Log Level',
|
||||
'app_log_level_label_debug' => 'debug',
|
||||
'app_log_level_label_info' => 'info',
|
||||
'app_log_level_label_notice' => 'notice',
|
||||
'app_log_level_label_warning' => 'warning',
|
||||
'app_log_level_label_error' => 'error',
|
||||
'app_log_level_label_critical' => 'critical',
|
||||
'app_log_level_label_alert' => 'alert',
|
||||
'app_log_level_label_emergency' => 'emergency',
|
||||
'app_url_label' => 'App Url',
|
||||
'app_url_placeholder' => 'App Url',
|
||||
'db_connection_label' => 'Database Connection',
|
||||
'db_connection_label_mysql' => 'mysql',
|
||||
'db_connection_label_sqlite' => 'sqlite',
|
||||
'db_connection_label_pgsql' => 'pgsql',
|
||||
'db_connection_label_sqlsrv' => 'sqlsrv',
|
||||
'db_host_label' => 'Database Host',
|
||||
'db_host_placeholder' => 'Database Host',
|
||||
'db_port_label' => 'Database Port',
|
||||
'db_port_placeholder' => 'Database Port',
|
||||
'db_name_label' => 'Database Name',
|
||||
'db_name_placeholder' => 'Database Name',
|
||||
'db_username_label' => 'Database User Name',
|
||||
'db_username_placeholder' => 'Database User Name',
|
||||
'db_password_label' => 'Database Password',
|
||||
'db_password_placeholder' => 'Database Password',
|
||||
|
||||
'app_tabs' => [
|
||||
'more_info' => 'More Info',
|
||||
'broadcasting_title' => 'Broadcasting, Caching, Session, & Queue',
|
||||
'broadcasting_label' => 'Broadcast Driver',
|
||||
'broadcasting_placeholder' => 'Broadcast Driver',
|
||||
'cache_label' => 'Cache Driver',
|
||||
'cache_placeholder' => 'Cache Driver',
|
||||
'session_label' => 'Session Driver',
|
||||
'session_placeholder' => 'Session Driver',
|
||||
'queue_label' => 'Queue Driver',
|
||||
'queue_placeholder' => 'Queue Driver',
|
||||
'redis_label' => 'Redis Driver',
|
||||
'redis_host' => 'Redis Host',
|
||||
'redis_password' => 'Redis Password',
|
||||
'redis_port' => 'Redis Port',
|
||||
|
||||
'mail_label' => 'Mail',
|
||||
'mail_driver_label' => 'Mail Driver',
|
||||
'mail_driver_placeholder' => 'Mail Driver',
|
||||
'mail_host_label' => 'Mail Host',
|
||||
'mail_host_placeholder' => 'Mail Host',
|
||||
'mail_port_label' => 'Mail Port',
|
||||
'mail_port_placeholder' => 'Mail Port',
|
||||
'mail_username_label' => 'Mail Username',
|
||||
'mail_username_placeholder' => 'Mail Username',
|
||||
'mail_password_label' => 'Mail Password',
|
||||
'mail_password_placeholder' => 'Mail Password',
|
||||
'mail_encryption_label' => 'Mail Encryption',
|
||||
'mail_encryption_placeholder' => 'Mail Encryption',
|
||||
|
||||
'pusher_label' => 'Pusher',
|
||||
'pusher_app_id_label' => 'Pusher App Id',
|
||||
'pusher_app_id_palceholder' => 'Pusher App Id',
|
||||
'pusher_app_key_label' => 'Pusher App Key',
|
||||
'pusher_app_key_palceholder' => 'Pusher App Key',
|
||||
'pusher_app_secret_label' => 'Pusher App Secret',
|
||||
'pusher_app_secret_palceholder' => 'Pusher App Secret',
|
||||
],
|
||||
'buttons' => [
|
||||
'setup_database' => 'Setup Database',
|
||||
'setup_application' => 'Setup Application',
|
||||
'install' => 'Install',
|
||||
],
|
||||
],
|
||||
],
|
||||
'classic' => [
|
||||
'templateTitle' => 'Step 3 | Environment Settings | Classic Editor',
|
||||
'title' => 'Classic Environment Editor',
|
||||
'save' => 'Save .env',
|
||||
'back' => 'Use Form Wizard',
|
||||
'install' => 'Save and Install',
|
||||
],
|
||||
'success' => 'Your .env file settings have been saved.',
|
||||
'errors' => 'Unable to save the .env file, Please create it manually.',
|
||||
],
|
||||
|
||||
'install' => 'Install',
|
||||
|
||||
/*
|
||||
*
|
||||
* Installed Log translations.
|
||||
*
|
||||
*/
|
||||
'installed' => [
|
||||
'success_log_message' => 'Laravel Installer successfully INSTALLED on ',
|
||||
],
|
||||
|
||||
/*
|
||||
*
|
||||
* Final page translations.
|
||||
*
|
||||
*/
|
||||
'final' => [
|
||||
'title' => 'Installation Finished',
|
||||
'templateTitle' => 'Installation Finished',
|
||||
'finished' => 'Application has been successfully installed.',
|
||||
'migration' => 'Migration & Seed Console Output:',
|
||||
'console' => 'Application Console Output:',
|
||||
'log' => 'Installation Log Entry:',
|
||||
'env' => 'Final .env File:',
|
||||
'exit' => 'Click here to exit',
|
||||
],
|
||||
|
||||
/*
|
||||
*
|
||||
* Update specific translations
|
||||
*
|
||||
*/
|
||||
'updater' => [
|
||||
/*
|
||||
*
|
||||
* Shared translations.
|
||||
*
|
||||
*/
|
||||
'title' => 'Laravel Updater',
|
||||
|
||||
/*
|
||||
*
|
||||
* Welcome page translations for update feature.
|
||||
*
|
||||
*/
|
||||
'welcome' => [
|
||||
'title' => 'Welcome To The Updater',
|
||||
'message' => 'Welcome to the update wizard.',
|
||||
],
|
||||
|
||||
/*
|
||||
*
|
||||
* Welcome page translations for update feature.
|
||||
*
|
||||
*/
|
||||
'overview' => [
|
||||
'title' => 'Overview',
|
||||
'message' => 'There is 1 update.|There are :number updates.',
|
||||
'install_updates' => 'Install Updates',
|
||||
],
|
||||
|
||||
/*
|
||||
*
|
||||
* Final page translations.
|
||||
*
|
||||
*/
|
||||
'final' => [
|
||||
'title' => 'Finished',
|
||||
'finished' => 'Application\'s database has been successfully updated.',
|
||||
'exit' => 'Click here to exit',
|
||||
],
|
||||
|
||||
'log' => [
|
||||
'success_message' => 'Laravel Installer successfully UPDATED on ',
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reset Language Lines
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'newflightreport' => 'New Flight Report',
|
||||
@@ -36,7 +34,7 @@ return [
|
||||
'manual' => 'Manual',
|
||||
'acars' => 'ACARS',
|
||||
],
|
||||
'state' => [
|
||||
'state' => [
|
||||
'accepted' => 'Accepted',
|
||||
'pending' => 'Pending Approval',
|
||||
'rejected' => 'Rejected',
|
||||
@@ -67,5 +65,5 @@ return [
|
||||
'arrived' => 'Arrived',
|
||||
'cancelled' => 'Cancelled',
|
||||
'emerg_decent' => 'Emergency decent',
|
||||
]
|
||||
],
|
||||
];
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'avatarresize' => 'This avatar will be resized to :width x :height pixels',
|
||||
'avatarresize' => 'This avatar will be resized to :width x :height pixels',
|
||||
|
||||
'newapikey' => 'New API Key',
|
||||
'yourprofile' => 'Your Profile',
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'title' => 'Terms and Conditions',
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'location' => 'Location',
|
||||
'state' => [
|
||||
'state' => [
|
||||
'pending' => 'Pending',
|
||||
'active' => 'Active',
|
||||
'rejected' => 'Rejected',
|
||||
|
||||
@@ -1,52 +1,51 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/**
|
||||
/*
|
||||
* Validation Language Lines
|
||||
*/
|
||||
|
||||
'accepted' => 'The :attribute must be accepted.',
|
||||
'active_url' => 'The :attribute is not a valid URL.',
|
||||
'after' => 'The :attribute must be a date after :date.',
|
||||
'alpha' => 'The :attribute may only contain letters.',
|
||||
'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.',
|
||||
'alpha_num' => 'The :attribute may only contain letters and numbers.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => 'The :attribute must be a date before :date.',
|
||||
'between' => [
|
||||
'accepted' => 'The :attribute must be accepted.',
|
||||
'active_url' => 'The :attribute is not a valid URL.',
|
||||
'after' => 'The :attribute must be a date after :date.',
|
||||
'alpha' => 'The :attribute may only contain letters.',
|
||||
'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.',
|
||||
'alpha_num' => 'The :attribute may only contain letters and numbers.',
|
||||
'array' => 'The :attribute must be an array.',
|
||||
'before' => 'The :attribute must be a date before :date.',
|
||||
'between' => [
|
||||
'numeric' => 'The :attribute must be between :min and :max.',
|
||||
'file' => 'The :attribute must be between :min and :max kilobytes.',
|
||||
'string' => 'The :attribute must be between :min and :max characters.',
|
||||
'array' => 'The :attribute must have between :min and :max items.',
|
||||
],
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'date' => 'The :attribute is not a valid date.',
|
||||
'date_format' => 'The :attribute does not match the format :format.',
|
||||
'different' => 'The :attribute and :other must be different.',
|
||||
'digits' => 'The :attribute must be :digits digits.',
|
||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The ":attribute" is required.',
|
||||
'image' => 'The :attribute must be an image.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'The :attribute must be an integer.',
|
||||
'ip' => 'The :attribute must be a valid IP address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'max' => [
|
||||
'boolean' => 'The :attribute field must be true or false.',
|
||||
'confirmed' => 'The :attribute confirmation does not match.',
|
||||
'date' => 'The :attribute is not a valid date.',
|
||||
'date_format' => 'The :attribute does not match the format :format.',
|
||||
'different' => 'The :attribute and :other must be different.',
|
||||
'digits' => 'The :attribute must be :digits digits.',
|
||||
'digits_between' => 'The :attribute must be between :min and :max digits.',
|
||||
'dimensions' => 'The :attribute has invalid image dimensions.',
|
||||
'distinct' => 'The :attribute field has a duplicate value.',
|
||||
'email' => 'The :attribute must be a valid email address.',
|
||||
'exists' => 'The selected :attribute is invalid.',
|
||||
'file' => 'The :attribute must be a file.',
|
||||
'filled' => 'The ":attribute" is required.',
|
||||
'image' => 'The :attribute must be an image.',
|
||||
'in' => 'The selected :attribute is invalid.',
|
||||
'in_array' => 'The :attribute field does not exist in :other.',
|
||||
'integer' => 'The :attribute must be an integer.',
|
||||
'ip' => 'The :attribute must be a valid IP address.',
|
||||
'json' => 'The :attribute must be a valid JSON string.',
|
||||
'max' => [
|
||||
'numeric' => 'The :attribute may not be greater than :max.',
|
||||
'file' => 'The :attribute may not be greater than :max kilobytes.',
|
||||
'string' => 'The :attribute may not be greater than :max characters.',
|
||||
'array' => 'The :attribute may not have more than :max items.',
|
||||
],
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'mimes' => 'The :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'The :attribute must be at least :min.',
|
||||
'file' => 'The :attribute must be at least :min kilobytes.',
|
||||
'string' => 'The :attribute must be at least :min characters.',
|
||||
@@ -70,39 +69,39 @@ return [
|
||||
'string' => 'The :attribute must be :size characters.',
|
||||
'array' => 'The :attribute must contain :size items.',
|
||||
],
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'url' => 'The :attribute format is invalid.',
|
||||
'string' => 'The :attribute must be a string.',
|
||||
'timezone' => 'The :attribute must be a valid zone.',
|
||||
'unique' => 'The :attribute has already been taken.',
|
||||
'url' => 'The :attribute format is invalid.',
|
||||
|
||||
/**
|
||||
/*
|
||||
* Custom Validation Language Lines
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'airline_id' => [
|
||||
'airline_id' => [
|
||||
'required' => 'An airline is required',
|
||||
'exists' => 'The airline doesn\'t exist',
|
||||
],
|
||||
'aircraft_id' => [
|
||||
'aircraft_id' => [
|
||||
'required' => 'An aircraft is required',
|
||||
'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',
|
||||
],
|
||||
'planned_flight_time' => [
|
||||
'planned_flight_time' => [
|
||||
'required' => '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' => [
|
||||
@@ -111,7 +110,7 @@ return [
|
||||
],
|
||||
],
|
||||
|
||||
/**
|
||||
/*
|
||||
* Custom Validation Attributes
|
||||
*/
|
||||
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'latestnews' => [
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'status' => [
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'ident' => 'Identificación',
|
||||
|
||||
@@ -1,19 +1,18 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Líneas de autenticación del idioma
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Las siguientes líneas de idioma se utilizan durante la autenticación para varios
|
||||
| mensajes que necesitamos mostrar al usuario. Usted es libre de modificar
|
||||
| estas líneas de idioma de acuerdo a los requisitos de su aplicación.
|
||||
| mensajes que necesitamos mostrar al usuario. Usted es libre de modificar
|
||||
| estas líneas de idioma de acuerdo a los requisitos de su aplicación.
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => 'Estas credenciales no coinciden con nuestros registros.',
|
||||
'failed' => 'Estas credenciales no coinciden con nuestros registros.',
|
||||
'throttle' => 'Demasiados intentos de inicio de sesión. Por favor intente nuevamente en :seconds segundos.',
|
||||
|
||||
];
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'dashboard' => 'Tablero',
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'totalhours' => 'Horas totales',
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'none' => '¡No hay descargas!',
|
||||
|
||||
@@ -1,10 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'buttontroubles' =>
|
||||
'Si estas teniendo problemas haciendo clic en el botón ":actiontext", ' .
|
||||
'buttontroubles' => 'Si estas teniendo problemas haciendo clic en el botón ":actiontext", '.
|
||||
'copia y pega la URL inferior en tu navegador web:',
|
||||
];
|
||||
|
||||
@@ -1,19 +1,15 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'401' => [
|
||||
'title' => 'Acceso no autorizado',
|
||||
'message' =>
|
||||
'Bueno, esto es embarazoso, no estás autorizado a acceder o realizar esta acción. '.
|
||||
'message' => 'Bueno, esto es embarazoso, no estás autorizado a acceder o realizar esta acción. '.
|
||||
'Clic <a href=":link">aquí</a> para retroceder a la página de inicio.',
|
||||
],
|
||||
'404' => [
|
||||
'title' => 'Página no encontrada',
|
||||
'message' =>
|
||||
'Bueno, esto es embarazoso, la página solicitada no existe.'.
|
||||
'message' => 'Bueno, esto es embarazoso, la página solicitada no existe.'.
|
||||
'Clic <a href=":link">aquí</a> para retroceder a la página de inicio.',
|
||||
],
|
||||
'503' => [
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'type' => [
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'flightnumber' => 'Número de vuelo',
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'welcome' => [
|
||||
|
||||
@@ -1,175 +1,174 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Shared translations.
|
||||
*
|
||||
*/
|
||||
'title' => 'Instalador de phpVMS',
|
||||
'next' => 'Siguiente',
|
||||
'back' => 'Anterior',
|
||||
'title' => 'Instalador de phpVMS',
|
||||
'next' => 'Siguiente',
|
||||
'back' => 'Anterior',
|
||||
'finish' => 'Instalar',
|
||||
'forms' => [
|
||||
'forms' => [
|
||||
'errorTitle' => 'Ocurrieron los siguientes errores:',
|
||||
],
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Home page translations.
|
||||
*
|
||||
*/
|
||||
'welcome' => [
|
||||
'templateTitle' => 'Bienvenido',
|
||||
'title' => 'Instalador de phpVMS',
|
||||
'message' => 'Instalación fácil y asistente de configuración.',
|
||||
'next' => 'Comprobar requisitios',
|
||||
'title' => 'Instalador de phpVMS',
|
||||
'message' => 'Instalación fácil y asistente de configuración.',
|
||||
'next' => 'Comprobar requisitios',
|
||||
],
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Requirements page translations.
|
||||
*
|
||||
*/
|
||||
'requirements' => [
|
||||
'templateTitle' => 'Paso 1 | Requisitos del Servidor',
|
||||
'title' => 'Requisitos del servidor',
|
||||
'next' => 'Comprobar permisos',
|
||||
'title' => 'Requisitos del servidor',
|
||||
'next' => 'Comprobar permisos',
|
||||
],
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Permissions page translations.
|
||||
*
|
||||
*/
|
||||
'permissions' => [
|
||||
'templateTitle' => 'Paso 2 | Permisos',
|
||||
'title' => 'Permisos',
|
||||
'next' => 'Configurar entorno',
|
||||
'title' => 'Permisos',
|
||||
'next' => 'Configurar entorno',
|
||||
],
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Environment page translations.
|
||||
*
|
||||
*/
|
||||
'environment' => [
|
||||
'menu' => [
|
||||
'templateTitle' => 'Paso 3 | Configuración de entorno',
|
||||
'title' => 'Configuraciones de entorno',
|
||||
'desc' => 'Seleccione cómo desea configurar las aplicaciones <code>.env</code> archivo.',
|
||||
'wizard-button' => 'Desde el asistente',
|
||||
'templateTitle' => 'Paso 3 | Configuración de entorno',
|
||||
'title' => 'Configuraciones de entorno',
|
||||
'desc' => 'Seleccione cómo desea configurar las aplicaciones <code>.env</code> archivo.',
|
||||
'wizard-button' => 'Desde el asistente',
|
||||
'classic-button' => 'Editor de texto clásico',
|
||||
],
|
||||
'wizard' => [
|
||||
'templateTitle' => 'Paso 3 | Configuraciones de entorno | Asistente guíado',
|
||||
'title' => 'Asistente <code>.env</code> guíado',
|
||||
'tabs' => [
|
||||
'title' => 'Asistente <code>.env</code> guíado',
|
||||
'tabs' => [
|
||||
'environment' => 'Entorno',
|
||||
'database' => 'Base de datos',
|
||||
'application' => 'Aplicación'
|
||||
'database' => 'Base de datos',
|
||||
'application' => 'Aplicación',
|
||||
],
|
||||
'form' => [
|
||||
'name_required' => 'Un nombre de entorno es requerido.',
|
||||
'app_name_label' => 'Nombre de la aplicación',
|
||||
'app_name_placeholder' => 'Nombre de la aplicación',
|
||||
'app_environment_label' => 'Entorno de aplicación',
|
||||
'app_environment_label_local' => 'Local',
|
||||
'name_required' => 'Un nombre de entorno es requerido.',
|
||||
'app_name_label' => 'Nombre de la aplicación',
|
||||
'app_name_placeholder' => 'Nombre de la aplicación',
|
||||
'app_environment_label' => 'Entorno de aplicación',
|
||||
'app_environment_label_local' => 'Local',
|
||||
'app_environment_label_developement' => 'Desarrollo',
|
||||
'app_environment_label_qa' => 'QA',
|
||||
'app_environment_label_production' => 'Producción',
|
||||
'app_environment_label_other' => 'Otra',
|
||||
'app_environment_placeholder_other' => 'Introduce tu entorno...',
|
||||
'app_debug_label' => 'Debug de aplicación',
|
||||
'app_debug_label_true' => 'Verdadero',
|
||||
'app_debug_label_false' => 'Falso',
|
||||
'app_log_level_label' => 'Nivel de LOG de la aplicación',
|
||||
'app_log_level_label_debug' => 'debug',
|
||||
'app_log_level_label_info' => 'info',
|
||||
'app_log_level_label_notice' => 'aviso',
|
||||
'app_log_level_label_warning' => 'advertencia',
|
||||
'app_log_level_label_error' => 'error',
|
||||
'app_log_level_label_critical' => 'critico',
|
||||
'app_log_level_label_alert' => 'alerta',
|
||||
'app_log_level_label_emergency' => 'emergencía',
|
||||
'app_url_label' => 'URL de la App',
|
||||
'app_url_placeholder' => 'URL App ',
|
||||
'db_connection_label' => 'Conexión base de datos',
|
||||
'db_connection_label_mysql' => 'mysql',
|
||||
'db_connection_label_sqlite' => 'sqlite',
|
||||
'db_connection_label_pgsql' => 'pgsql',
|
||||
'db_connection_label_sqlsrv' => 'sqlsrv',
|
||||
'db_host_label' => 'Database: Host',
|
||||
'db_host_placeholder' => 'Database: Host',
|
||||
'db_port_label' => 'Database: Puerto',
|
||||
'db_port_placeholder' => 'Database: Puerto',
|
||||
'db_name_label' => 'Database: Nombre',
|
||||
'db_name_placeholder' => 'Database: Nombre',
|
||||
'db_username_label' => 'Database: Nombre usuario',
|
||||
'db_username_placeholder' => 'Database: Nombre usuario',
|
||||
'db_password_label' => 'Database: Contraseña',
|
||||
'db_password_placeholder' => 'Database: Contraseña',
|
||||
'app_environment_label_qa' => 'QA',
|
||||
'app_environment_label_production' => 'Producción',
|
||||
'app_environment_label_other' => 'Otra',
|
||||
'app_environment_placeholder_other' => 'Introduce tu entorno...',
|
||||
'app_debug_label' => 'Debug de aplicación',
|
||||
'app_debug_label_true' => 'Verdadero',
|
||||
'app_debug_label_false' => 'Falso',
|
||||
'app_log_level_label' => 'Nivel de LOG de la aplicación',
|
||||
'app_log_level_label_debug' => 'debug',
|
||||
'app_log_level_label_info' => 'info',
|
||||
'app_log_level_label_notice' => 'aviso',
|
||||
'app_log_level_label_warning' => 'advertencia',
|
||||
'app_log_level_label_error' => 'error',
|
||||
'app_log_level_label_critical' => 'critico',
|
||||
'app_log_level_label_alert' => 'alerta',
|
||||
'app_log_level_label_emergency' => 'emergencía',
|
||||
'app_url_label' => 'URL de la App',
|
||||
'app_url_placeholder' => 'URL App ',
|
||||
'db_connection_label' => 'Conexión base de datos',
|
||||
'db_connection_label_mysql' => 'mysql',
|
||||
'db_connection_label_sqlite' => 'sqlite',
|
||||
'db_connection_label_pgsql' => 'pgsql',
|
||||
'db_connection_label_sqlsrv' => 'sqlsrv',
|
||||
'db_host_label' => 'Database: Host',
|
||||
'db_host_placeholder' => 'Database: Host',
|
||||
'db_port_label' => 'Database: Puerto',
|
||||
'db_port_placeholder' => 'Database: Puerto',
|
||||
'db_name_label' => 'Database: Nombre',
|
||||
'db_name_placeholder' => 'Database: Nombre',
|
||||
'db_username_label' => 'Database: Nombre usuario',
|
||||
'db_username_placeholder' => 'Database: Nombre usuario',
|
||||
'db_password_label' => 'Database: Contraseña',
|
||||
'db_password_placeholder' => 'Database: Contraseña',
|
||||
|
||||
'app_tabs' => [
|
||||
'more_info' => 'Más info',
|
||||
'broadcasting_title' => 'Broadcasting, Caching, Session, & Queue',
|
||||
'broadcasting_label' => 'Broadcast Driver',
|
||||
'more_info' => 'Más info',
|
||||
'broadcasting_title' => 'Broadcasting, Caching, Session, & Queue',
|
||||
'broadcasting_label' => 'Broadcast Driver',
|
||||
'broadcasting_placeholder' => 'Broadcast Driver',
|
||||
'cache_label' => 'Cache Driver',
|
||||
'cache_placeholder' => 'Cache Driver',
|
||||
'session_label' => 'Session Driver',
|
||||
'session_placeholder' => 'Session Driver',
|
||||
'queue_label' => 'Queue Driver',
|
||||
'queue_placeholder' => 'Queue Driver',
|
||||
'redis_label' => 'Redis Driver',
|
||||
'redis_host' => 'Redis Host',
|
||||
'redis_password' => 'Redis Password',
|
||||
'redis_port' => 'Redis Port',
|
||||
'cache_label' => 'Cache Driver',
|
||||
'cache_placeholder' => 'Cache Driver',
|
||||
'session_label' => 'Session Driver',
|
||||
'session_placeholder' => 'Session Driver',
|
||||
'queue_label' => 'Queue Driver',
|
||||
'queue_placeholder' => 'Queue Driver',
|
||||
'redis_label' => 'Redis Driver',
|
||||
'redis_host' => 'Redis Host',
|
||||
'redis_password' => 'Redis Password',
|
||||
'redis_port' => 'Redis Port',
|
||||
|
||||
'mail_label' => 'Mail',
|
||||
'mail_driver_label' => 'Mail Driver',
|
||||
'mail_driver_placeholder' => 'Mail Driver',
|
||||
'mail_host_label' => 'Mail Host',
|
||||
'mail_host_placeholder' => 'Mail Host',
|
||||
'mail_port_label' => 'Mail Port',
|
||||
'mail_port_placeholder' => 'Mail Port',
|
||||
'mail_username_label' => 'Mail Username',
|
||||
'mail_username_placeholder' => 'Mail Username',
|
||||
'mail_password_label' => 'Mail Password',
|
||||
'mail_password_placeholder' => 'Mail Password',
|
||||
'mail_encryption_label' => 'Mail Encryption',
|
||||
'mail_label' => 'Mail',
|
||||
'mail_driver_label' => 'Mail Driver',
|
||||
'mail_driver_placeholder' => 'Mail Driver',
|
||||
'mail_host_label' => 'Mail Host',
|
||||
'mail_host_placeholder' => 'Mail Host',
|
||||
'mail_port_label' => 'Mail Port',
|
||||
'mail_port_placeholder' => 'Mail Port',
|
||||
'mail_username_label' => 'Mail Username',
|
||||
'mail_username_placeholder' => 'Mail Username',
|
||||
'mail_password_label' => 'Mail Password',
|
||||
'mail_password_placeholder' => 'Mail Password',
|
||||
'mail_encryption_label' => 'Mail Encryption',
|
||||
'mail_encryption_placeholder' => 'Mail Encryption',
|
||||
|
||||
'pusher_label' => 'Pusher',
|
||||
'pusher_app_id_label' => 'Pusher App Id',
|
||||
'pusher_app_id_palceholder' => 'Pusher App Id',
|
||||
'pusher_app_key_label' => 'Pusher App Key',
|
||||
'pusher_app_key_palceholder' => 'Pusher App Key',
|
||||
'pusher_app_secret_label' => 'Pusher App Secret',
|
||||
'pusher_label' => 'Pusher',
|
||||
'pusher_app_id_label' => 'Pusher App Id',
|
||||
'pusher_app_id_palceholder' => 'Pusher App Id',
|
||||
'pusher_app_key_label' => 'Pusher App Key',
|
||||
'pusher_app_key_palceholder' => 'Pusher App Key',
|
||||
'pusher_app_secret_label' => 'Pusher App Secret',
|
||||
'pusher_app_secret_palceholder' => 'Pusher App Secret',
|
||||
],
|
||||
'buttons' => [
|
||||
'setup_database' => 'Configurar base de datos',
|
||||
'setup_database' => 'Configurar base de datos',
|
||||
'setup_application' => 'Configurar aplicación',
|
||||
'install' => 'Instalar',
|
||||
'install' => 'Instalar',
|
||||
],
|
||||
],
|
||||
],
|
||||
'classic' => [
|
||||
'templateTitle' => 'Paso 3 | Configuración de entorno | Editor clásico',
|
||||
'title' => 'Editor de entorno cásico',
|
||||
'save' => 'Guardar .env',
|
||||
'back' => 'Usar el asistente de formulario',
|
||||
'install' => 'Guardar e instalar',
|
||||
'title' => 'Editor de entorno cásico',
|
||||
'save' => 'Guardar .env',
|
||||
'back' => 'Usar el asistente de formulario',
|
||||
'install' => 'Guardar e instalar',
|
||||
],
|
||||
'success' => 'Tu archivo de configuración .env ha sido guardado.',
|
||||
'errors' => 'No se ha guardado el archivo .env , Crealo manualmente.',
|
||||
'errors' => 'No se ha guardado el archivo .env , Crealo manualmente.',
|
||||
],
|
||||
|
||||
'install' => 'Instalar',
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Installed Log translations.
|
||||
*
|
||||
@@ -178,36 +177,36 @@ return [
|
||||
'success_log_message' => 'Inslatador Laravel exitosamente creado en ',
|
||||
],
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Final page translations.
|
||||
*
|
||||
*/
|
||||
'final' => [
|
||||
'title' => 'Instalación finalizada',
|
||||
'title' => 'Instalación finalizada',
|
||||
'templateTitle' => 'Instalación finalizada',
|
||||
'finished' => 'La aplicación ha sido instalada exitosamente.',
|
||||
'migration' => 'Migración & salida de la consola:',
|
||||
'console' => 'Salida de la consola de la aplicación:',
|
||||
'log' => 'Instalación Log de entrada:',
|
||||
'env' => 'Final .env archivo:',
|
||||
'exit' => 'Clic aquí para salir',
|
||||
'finished' => 'La aplicación ha sido instalada exitosamente.',
|
||||
'migration' => 'Migración & salida de la consola:',
|
||||
'console' => 'Salida de la consola de la aplicación:',
|
||||
'log' => 'Instalación Log de entrada:',
|
||||
'env' => 'Final .env archivo:',
|
||||
'exit' => 'Clic aquí para salir',
|
||||
],
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Update specific translations
|
||||
*
|
||||
*/
|
||||
'updater' => [
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Shared translations.
|
||||
*
|
||||
*/
|
||||
'title' => 'Actualizador Laravel',
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Welcome page translations for update feature.
|
||||
*
|
||||
@@ -217,26 +216,26 @@ return [
|
||||
'message' => 'Bienvenido al asistente de actualización.',
|
||||
],
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Welcome page translations for update feature.
|
||||
*
|
||||
*/
|
||||
'overview' => [
|
||||
'title' => 'Resumen',
|
||||
'message' => 'Hay 1 actualización.|Hay :number actualizaciones.',
|
||||
'install_updates' => "Instalar actualizaciones"
|
||||
'title' => 'Resumen',
|
||||
'message' => 'Hay 1 actualización.|Hay :number actualizaciones.',
|
||||
'install_updates' => 'Instalar actualizaciones',
|
||||
],
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Final page translations.
|
||||
*
|
||||
*/
|
||||
'final' => [
|
||||
'title' => 'Finalizado',
|
||||
'title' => 'Finalizado',
|
||||
'finished' => 'Aplicación/es actualizada/s con éxito.',
|
||||
'exit' => 'Clic aquí para salir',
|
||||
'exit' => 'Clic aquí para salir',
|
||||
],
|
||||
|
||||
'log' => [
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Paginación de líneas de lenguaje
|
||||
|
||||
@@ -1,23 +1,22 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Restablecimiento de contraseña Líneas de idioma
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Las siguientes líneas de idioma son las líneas predeterminadas que
|
||||
| coinciden con las razones dadas por el agente de contraseñas para un
|
||||
| intento de actualización de contraseña que ha fallado, como un token
|
||||
| no válido o una nueva contraseña no válida.
|
||||
| Las siguientes líneas de idioma son las líneas predeterminadas que
|
||||
| coinciden con las razones dadas por el agente de contraseñas para un
|
||||
| intento de actualización de contraseña que ha fallado, como un token
|
||||
| no válido o una nueva contraseña no válida.
|
||||
|
|
||||
*/
|
||||
|
||||
'password' => 'Las contraseñas deben tener al menos seis caracteres y coincidir con la confirmación.',
|
||||
'reset' => '¡Tu contraseña ha sido restablecida!',
|
||||
'sent' => '¡Le hemos enviado por correo electrónico el enlace de restablecimiento de contraseña!',
|
||||
'token' => 'Este token de restablecimiento de contraseña no es válido.',
|
||||
'user' => "No podemos encontrar un usuario con esa dirección de correo electrónico.",
|
||||
'reset' => '¡Tu contraseña ha sido restablecida!',
|
||||
'sent' => '¡Le hemos enviado por correo electrónico el enlace de restablecimiento de contraseña!',
|
||||
'token' => 'Este token de restablecimiento de contraseña no es válido.',
|
||||
'user' => 'No podemos encontrar un usuario con esa dirección de correo electrónico.',
|
||||
|
||||
];
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'newflightreport' => 'Nuevo informe de vuelo',
|
||||
@@ -36,7 +34,7 @@ return [
|
||||
'manual' => 'Manual',
|
||||
'acars' => 'ACARS',
|
||||
],
|
||||
'state' => [
|
||||
'state' => [
|
||||
'accepted' => 'Aceptado',
|
||||
'pending' => 'Pendiente de aprobación',
|
||||
'rejected' => 'Rechazado',
|
||||
@@ -67,5 +65,5 @@ return [
|
||||
'arrived' => 'Llegó',
|
||||
'cancelled' => 'Cancelado',
|
||||
'emerg_decent' => 'Descenso de emergencía',
|
||||
]
|
||||
],
|
||||
];
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'avatarresize' => 'Este avatar será redimensionado a :width x :height pixeles',
|
||||
'avatarresize' => 'Este avatar será redimensionado a :width x :height pixeles',
|
||||
|
||||
'newapikey' => 'Nueva clave API',
|
||||
'yourprofile' => 'Tu perfil',
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'title' => 'Términos y condiciones',
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'location' => 'Location',
|
||||
'state' => [
|
||||
'state' => [
|
||||
'pending' => 'Pendiente',
|
||||
'active' => 'Activo',
|
||||
'rejected' => 'Rechazado',
|
||||
|
||||
@@ -1,52 +1,51 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/**
|
||||
/*
|
||||
* Validation Language Lines
|
||||
*/
|
||||
|
||||
'accepted' => 'El :attribute debe ser aceptado.',
|
||||
'active_url' => 'El :attribute No es una URL valida.',
|
||||
'after' => 'El :attribute debe ser una fecha después de :date.',
|
||||
'alpha' => 'El :attribute solo puede contener letras.',
|
||||
'alpha_dash' => 'El :attribute solo puede contener letras, números, y guiones.',
|
||||
'alpha_num' => 'El :attribute solo puede contener letras y números.',
|
||||
'array' => 'El :attribute debe ser un array.',
|
||||
'before' => 'El :attribute debe ser una fecha antes de :date.',
|
||||
'between' => [
|
||||
'accepted' => 'El :attribute debe ser aceptado.',
|
||||
'active_url' => 'El :attribute No es una URL valida.',
|
||||
'after' => 'El :attribute debe ser una fecha después de :date.',
|
||||
'alpha' => 'El :attribute solo puede contener letras.',
|
||||
'alpha_dash' => 'El :attribute solo puede contener letras, números, y guiones.',
|
||||
'alpha_num' => 'El :attribute solo puede contener letras y números.',
|
||||
'array' => 'El :attribute debe ser un array.',
|
||||
'before' => 'El :attribute debe ser una fecha antes de :date.',
|
||||
'between' => [
|
||||
'numeric' => 'El :attribute debe estar entre :min and :max.',
|
||||
'file' => 'El :attribute debe estar entre :min and :max kilobytes.',
|
||||
'string' => 'El :attribute debe estar entre :min and :max caracteres.',
|
||||
'array' => 'El :attribute debe estar entre :min and :max objetos.',
|
||||
],
|
||||
'boolean' => 'El :attribute campo debe ser verdadero o falso.',
|
||||
'confirmed' => 'El :attribute confirmación no coincide.',
|
||||
'date' => 'El :attribute no es una fecha valida.',
|
||||
'date_format' => 'El :attribute no coincide el formato :format.',
|
||||
'different' => 'El :attribute y :other deben ser diferentes.',
|
||||
'digits' => 'El :attribute debe ser :digits digitos.',
|
||||
'digits_between' => 'El :attribute debe estar entre :min and :max digitos.',
|
||||
'dimensions' => 'El :attribute tiene dimensiones de imagen no valida.',
|
||||
'distinct' => 'El :attribute campo tiene un valor duplicado.',
|
||||
'email' => 'El :attribute debe ser un email valido.',
|
||||
'exists' => 'El :attribute seleccionado es invalido.',
|
||||
'file' => 'El :attribute debe ser un archivo.',
|
||||
'filled' => 'El ":attribute" es requerido.',
|
||||
'image' => 'El :attribute debe ser una imagen.',
|
||||
'in' => 'El :attribute seleccionado es invalido.',
|
||||
'in_array' => 'El :attribute campo no existe en :other.',
|
||||
'integer' => 'El :attribute debe ser un integer.',
|
||||
'ip' => 'El :attribute debe ser una dirección IP valida.',
|
||||
'json' => 'El :attribute debe ser un string JSON valido.',
|
||||
'max' => [
|
||||
'boolean' => 'El :attribute campo debe ser verdadero o falso.',
|
||||
'confirmed' => 'El :attribute confirmación no coincide.',
|
||||
'date' => 'El :attribute no es una fecha valida.',
|
||||
'date_format' => 'El :attribute no coincide el formato :format.',
|
||||
'different' => 'El :attribute y :other deben ser diferentes.',
|
||||
'digits' => 'El :attribute debe ser :digits digitos.',
|
||||
'digits_between' => 'El :attribute debe estar entre :min and :max digitos.',
|
||||
'dimensions' => 'El :attribute tiene dimensiones de imagen no valida.',
|
||||
'distinct' => 'El :attribute campo tiene un valor duplicado.',
|
||||
'email' => 'El :attribute debe ser un email valido.',
|
||||
'exists' => 'El :attribute seleccionado es invalido.',
|
||||
'file' => 'El :attribute debe ser un archivo.',
|
||||
'filled' => 'El ":attribute" es requerido.',
|
||||
'image' => 'El :attribute debe ser una imagen.',
|
||||
'in' => 'El :attribute seleccionado es invalido.',
|
||||
'in_array' => 'El :attribute campo no existe en :other.',
|
||||
'integer' => 'El :attribute debe ser un integer.',
|
||||
'ip' => 'El :attribute debe ser una dirección IP valida.',
|
||||
'json' => 'El :attribute debe ser un string JSON valido.',
|
||||
'max' => [
|
||||
'numeric' => 'El :attribute no puede ser mayor que :max.',
|
||||
'file' => 'El :attribute no puede ser mayor que :max kilobytes.',
|
||||
'string' => 'El :attribute no puede ser mayor que :max caracteres.',
|
||||
'array' => 'El :attribute no puede tener más de :max objetos.',
|
||||
],
|
||||
'mimes' => 'El :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'mimes' => 'El :attribute must be a file of type: :values.',
|
||||
'min' => [
|
||||
'numeric' => 'El :attribute debe tener al menos :min.',
|
||||
'file' => 'El :attribute debe tener al menos :min kilobytes.',
|
||||
'string' => 'El :attribute debe tener al menos :min caracteres.',
|
||||
@@ -70,23 +69,23 @@ return [
|
||||
'string' => 'El :attribute debe ser :size caracteres.',
|
||||
'array' => 'El :attribute debe contener :size objetos.',
|
||||
],
|
||||
'string' => 'El :attribute debe ser un string.',
|
||||
'timezone' => 'El :attribute debe ser una zona valida.',
|
||||
'unique' => 'El :attribute ha sido actualmente usado.',
|
||||
'url' => 'El :attribute es un formato invalido.',
|
||||
'string' => 'El :attribute debe ser un string.',
|
||||
'timezone' => 'El :attribute debe ser una zona valida.',
|
||||
'unique' => 'El :attribute ha sido actualmente usado.',
|
||||
'url' => 'El :attribute es un formato invalido.',
|
||||
|
||||
/**
|
||||
/*
|
||||
* Custom Validation Language Lines
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'airline_id' => [
|
||||
'required' => 'Una aerolínea es requerida',
|
||||
'exists' => 'La aerolínea no existe',
|
||||
'exists' => 'La aerolínea no existe',
|
||||
],
|
||||
'aircraft_id' => [
|
||||
'required' => 'Una aeronave es requerido',
|
||||
'exists' => 'La aeronave no existe',
|
||||
'exists' => 'La aeronave no existe',
|
||||
],
|
||||
'arr_airport_id' => [
|
||||
'required' => 'Un aeropuerto de llegada es requerido',
|
||||
@@ -96,22 +95,22 @@ return [
|
||||
],
|
||||
'flight_time' => [
|
||||
'required' => 'Tiempo de vuelo, en minutos, es requerido',
|
||||
'integer' => 'Tiempo de vuelo, en minutos, es requerido',
|
||||
'integer' => 'Tiempo de vuelo, en minutos, es requerido',
|
||||
],
|
||||
'planned_flight_time' => [
|
||||
'required' => 'Tiempo de vuelo, en minutos, es requerido',
|
||||
'integer' => 'Tiempo de vuelo, en minutos, es requerido',
|
||||
'integer' => 'Tiempo de vuelo, en minutos, es requerido',
|
||||
],
|
||||
'source_name' => [
|
||||
'required' => 'Origen del PIREP es requerido',
|
||||
],
|
||||
'g-recaptcha-response' => [
|
||||
'required' => 'Por favor verifica que no eres un robot.',
|
||||
'captcha' => '¡Error de CAPTCHA! intente de nuevo más tarde o póngase en contacto con el administrador del sitio.',
|
||||
'captcha' => '¡Error de CAPTCHA! intente de nuevo más tarde o póngase en contacto con el administrador del sitio.',
|
||||
],
|
||||
],
|
||||
|
||||
/**
|
||||
/*
|
||||
* Custom Validation Attributes
|
||||
*/
|
||||
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'latestnews' => [
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'status' => [
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'ident' => 'Identificativo',
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'dashboard' => 'Dashboard',
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'totalhours' => 'Ore Totali',
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'none' => 'Non ci sono downloads!',
|
||||
|
||||
@@ -1,10 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'buttontroubles' =>
|
||||
'Se hai problemi a cliccare il bottone ":actiontext", ' .
|
||||
'buttontroubles' => 'Se hai problemi a cliccare il bottone ":actiontext", '.
|
||||
'copia e incolla l\'URL qui sotto nel tuo browser:',
|
||||
];
|
||||
|
||||
@@ -1,19 +1,15 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'401' => [
|
||||
'title' => 'Non Autorizzato',
|
||||
'message' =>
|
||||
'Beh, è imbarazzante, non sei autorizzato ad accedere o ad eseguire questa funzionalità. '.
|
||||
'message' => 'Beh, è imbarazzante, non sei autorizzato ad accedere o ad eseguire questa funzionalità. '.
|
||||
'Clicca <a href=":link">qui</a> per tornare alla home page.',
|
||||
],
|
||||
'404' => [
|
||||
'title' => 'Page Not Found',
|
||||
'message' =>
|
||||
'Beh, è imbarazzante, la pagina che hai richiesto non esiste.'.
|
||||
'message' => 'Beh, è imbarazzante, la pagina che hai richiesto non esiste.'.
|
||||
'Clicca <a href=":link">qui</a> per tornare alla home page.',
|
||||
],
|
||||
'503' => [
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'type' => [
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'flightnumber' => 'Numero di Volo',
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'welcome' => [
|
||||
|
||||
@@ -1,175 +1,174 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Shared translations.
|
||||
*
|
||||
*/
|
||||
'title' => 'phpVMS Installer',
|
||||
'next' => 'Next Step',
|
||||
'back' => 'Previous',
|
||||
'title' => 'phpVMS Installer',
|
||||
'next' => 'Next Step',
|
||||
'back' => 'Previous',
|
||||
'finish' => 'Install',
|
||||
'forms' => [
|
||||
'forms' => [
|
||||
'errorTitle' => 'The Following errors occurred:',
|
||||
],
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Home page translations.
|
||||
*
|
||||
*/
|
||||
'welcome' => [
|
||||
'templateTitle' => 'Welcome',
|
||||
'title' => 'phpVMS Installer',
|
||||
'message' => 'Easy Installation and Setup Wizard.',
|
||||
'next' => 'Check Requirements',
|
||||
'title' => 'phpVMS Installer',
|
||||
'message' => 'Easy Installation and Setup Wizard.',
|
||||
'next' => 'Check Requirements',
|
||||
],
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Requirements page translations.
|
||||
*
|
||||
*/
|
||||
'requirements' => [
|
||||
'templateTitle' => 'Step 1 | Server Requirements',
|
||||
'title' => 'Server Requirements',
|
||||
'next' => 'Check Permissions',
|
||||
'title' => 'Server Requirements',
|
||||
'next' => 'Check Permissions',
|
||||
],
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Permissions page translations.
|
||||
*
|
||||
*/
|
||||
'permissions' => [
|
||||
'templateTitle' => 'Step 2 | Permissions',
|
||||
'title' => 'Permissions',
|
||||
'next' => 'Configure Environment',
|
||||
'title' => 'Permissions',
|
||||
'next' => 'Configure Environment',
|
||||
],
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Environment page translations.
|
||||
*
|
||||
*/
|
||||
'environment' => [
|
||||
'menu' => [
|
||||
'templateTitle' => 'Step 3 | Environment Settings',
|
||||
'title' => 'Environment Settings',
|
||||
'desc' => 'Please select how you want to configure the apps <code>.env</code> file.',
|
||||
'wizard-button' => 'Form Wizard Setup',
|
||||
'templateTitle' => 'Step 3 | Environment Settings',
|
||||
'title' => 'Environment Settings',
|
||||
'desc' => 'Please select how you want to configure the apps <code>.env</code> file.',
|
||||
'wizard-button' => 'Form Wizard Setup',
|
||||
'classic-button' => 'Classic Text Editor',
|
||||
],
|
||||
'wizard' => [
|
||||
'templateTitle' => 'Step 3 | Environment Settings | Guided Wizard',
|
||||
'title' => 'Guided <code>.env</code> Wizard',
|
||||
'tabs' => [
|
||||
'title' => 'Guided <code>.env</code> Wizard',
|
||||
'tabs' => [
|
||||
'environment' => 'Environment',
|
||||
'database' => 'Database',
|
||||
'application' => 'Application'
|
||||
'database' => 'Database',
|
||||
'application' => 'Application',
|
||||
],
|
||||
'form' => [
|
||||
'name_required' => 'An environment name is required.',
|
||||
'app_name_label' => 'App Name',
|
||||
'app_name_placeholder' => 'App Name',
|
||||
'app_environment_label' => 'App Environment',
|
||||
'app_environment_label_local' => 'Local',
|
||||
'name_required' => 'An environment name is required.',
|
||||
'app_name_label' => 'App Name',
|
||||
'app_name_placeholder' => 'App Name',
|
||||
'app_environment_label' => 'App Environment',
|
||||
'app_environment_label_local' => 'Local',
|
||||
'app_environment_label_developement' => 'Development',
|
||||
'app_environment_label_qa' => 'Qa',
|
||||
'app_environment_label_production' => 'Production',
|
||||
'app_environment_label_other' => 'Other',
|
||||
'app_environment_placeholder_other' => 'Enter your environment...',
|
||||
'app_debug_label' => 'App Debug',
|
||||
'app_debug_label_true' => 'True',
|
||||
'app_debug_label_false' => 'False',
|
||||
'app_log_level_label' => 'App Log Level',
|
||||
'app_log_level_label_debug' => 'debug',
|
||||
'app_log_level_label_info' => 'info',
|
||||
'app_log_level_label_notice' => 'notice',
|
||||
'app_log_level_label_warning' => 'warning',
|
||||
'app_log_level_label_error' => 'error',
|
||||
'app_log_level_label_critical' => 'critical',
|
||||
'app_log_level_label_alert' => 'alert',
|
||||
'app_log_level_label_emergency' => 'emergency',
|
||||
'app_url_label' => 'App Url',
|
||||
'app_url_placeholder' => 'App Url',
|
||||
'db_connection_label' => 'Database Connection',
|
||||
'db_connection_label_mysql' => 'mysql',
|
||||
'db_connection_label_sqlite' => 'sqlite',
|
||||
'db_connection_label_pgsql' => 'pgsql',
|
||||
'db_connection_label_sqlsrv' => 'sqlsrv',
|
||||
'db_host_label' => 'Database Host',
|
||||
'db_host_placeholder' => 'Database Host',
|
||||
'db_port_label' => 'Database Port',
|
||||
'db_port_placeholder' => 'Database Port',
|
||||
'db_name_label' => 'Database Name',
|
||||
'db_name_placeholder' => 'Database Name',
|
||||
'db_username_label' => 'Database User Name',
|
||||
'db_username_placeholder' => 'Database User Name',
|
||||
'db_password_label' => 'Database Password',
|
||||
'db_password_placeholder' => 'Database Password',
|
||||
'app_environment_label_qa' => 'Qa',
|
||||
'app_environment_label_production' => 'Production',
|
||||
'app_environment_label_other' => 'Other',
|
||||
'app_environment_placeholder_other' => 'Enter your environment...',
|
||||
'app_debug_label' => 'App Debug',
|
||||
'app_debug_label_true' => 'True',
|
||||
'app_debug_label_false' => 'False',
|
||||
'app_log_level_label' => 'App Log Level',
|
||||
'app_log_level_label_debug' => 'debug',
|
||||
'app_log_level_label_info' => 'info',
|
||||
'app_log_level_label_notice' => 'notice',
|
||||
'app_log_level_label_warning' => 'warning',
|
||||
'app_log_level_label_error' => 'error',
|
||||
'app_log_level_label_critical' => 'critical',
|
||||
'app_log_level_label_alert' => 'alert',
|
||||
'app_log_level_label_emergency' => 'emergency',
|
||||
'app_url_label' => 'App Url',
|
||||
'app_url_placeholder' => 'App Url',
|
||||
'db_connection_label' => 'Database Connection',
|
||||
'db_connection_label_mysql' => 'mysql',
|
||||
'db_connection_label_sqlite' => 'sqlite',
|
||||
'db_connection_label_pgsql' => 'pgsql',
|
||||
'db_connection_label_sqlsrv' => 'sqlsrv',
|
||||
'db_host_label' => 'Database Host',
|
||||
'db_host_placeholder' => 'Database Host',
|
||||
'db_port_label' => 'Database Port',
|
||||
'db_port_placeholder' => 'Database Port',
|
||||
'db_name_label' => 'Database Name',
|
||||
'db_name_placeholder' => 'Database Name',
|
||||
'db_username_label' => 'Database User Name',
|
||||
'db_username_placeholder' => 'Database User Name',
|
||||
'db_password_label' => 'Database Password',
|
||||
'db_password_placeholder' => 'Database Password',
|
||||
|
||||
'app_tabs' => [
|
||||
'more_info' => 'More Info',
|
||||
'broadcasting_title' => 'Broadcasting, Caching, Session, & Queue',
|
||||
'broadcasting_label' => 'Broadcast Driver',
|
||||
'more_info' => 'More Info',
|
||||
'broadcasting_title' => 'Broadcasting, Caching, Session, & Queue',
|
||||
'broadcasting_label' => 'Broadcast Driver',
|
||||
'broadcasting_placeholder' => 'Broadcast Driver',
|
||||
'cache_label' => 'Cache Driver',
|
||||
'cache_placeholder' => 'Cache Driver',
|
||||
'session_label' => 'Session Driver',
|
||||
'session_placeholder' => 'Session Driver',
|
||||
'queue_label' => 'Queue Driver',
|
||||
'queue_placeholder' => 'Queue Driver',
|
||||
'redis_label' => 'Redis Driver',
|
||||
'redis_host' => 'Redis Host',
|
||||
'redis_password' => 'Redis Password',
|
||||
'redis_port' => 'Redis Port',
|
||||
'cache_label' => 'Cache Driver',
|
||||
'cache_placeholder' => 'Cache Driver',
|
||||
'session_label' => 'Session Driver',
|
||||
'session_placeholder' => 'Session Driver',
|
||||
'queue_label' => 'Queue Driver',
|
||||
'queue_placeholder' => 'Queue Driver',
|
||||
'redis_label' => 'Redis Driver',
|
||||
'redis_host' => 'Redis Host',
|
||||
'redis_password' => 'Redis Password',
|
||||
'redis_port' => 'Redis Port',
|
||||
|
||||
'mail_label' => 'Mail',
|
||||
'mail_driver_label' => 'Mail Driver',
|
||||
'mail_driver_placeholder' => 'Mail Driver',
|
||||
'mail_host_label' => 'Mail Host',
|
||||
'mail_host_placeholder' => 'Mail Host',
|
||||
'mail_port_label' => 'Mail Port',
|
||||
'mail_port_placeholder' => 'Mail Port',
|
||||
'mail_username_label' => 'Mail Username',
|
||||
'mail_username_placeholder' => 'Mail Username',
|
||||
'mail_password_label' => 'Mail Password',
|
||||
'mail_password_placeholder' => 'Mail Password',
|
||||
'mail_encryption_label' => 'Mail Encryption',
|
||||
'mail_label' => 'Mail',
|
||||
'mail_driver_label' => 'Mail Driver',
|
||||
'mail_driver_placeholder' => 'Mail Driver',
|
||||
'mail_host_label' => 'Mail Host',
|
||||
'mail_host_placeholder' => 'Mail Host',
|
||||
'mail_port_label' => 'Mail Port',
|
||||
'mail_port_placeholder' => 'Mail Port',
|
||||
'mail_username_label' => 'Mail Username',
|
||||
'mail_username_placeholder' => 'Mail Username',
|
||||
'mail_password_label' => 'Mail Password',
|
||||
'mail_password_placeholder' => 'Mail Password',
|
||||
'mail_encryption_label' => 'Mail Encryption',
|
||||
'mail_encryption_placeholder' => 'Mail Encryption',
|
||||
|
||||
'pusher_label' => 'Pusher',
|
||||
'pusher_app_id_label' => 'Pusher App Id',
|
||||
'pusher_app_id_palceholder' => 'Pusher App Id',
|
||||
'pusher_app_key_label' => 'Pusher App Key',
|
||||
'pusher_app_key_palceholder' => 'Pusher App Key',
|
||||
'pusher_app_secret_label' => 'Pusher App Secret',
|
||||
'pusher_label' => 'Pusher',
|
||||
'pusher_app_id_label' => 'Pusher App Id',
|
||||
'pusher_app_id_palceholder' => 'Pusher App Id',
|
||||
'pusher_app_key_label' => 'Pusher App Key',
|
||||
'pusher_app_key_palceholder' => 'Pusher App Key',
|
||||
'pusher_app_secret_label' => 'Pusher App Secret',
|
||||
'pusher_app_secret_palceholder' => 'Pusher App Secret',
|
||||
],
|
||||
'buttons' => [
|
||||
'setup_database' => 'Setup Database',
|
||||
'setup_database' => 'Setup Database',
|
||||
'setup_application' => 'Setup Application',
|
||||
'install' => 'Install',
|
||||
'install' => 'Install',
|
||||
],
|
||||
],
|
||||
],
|
||||
'classic' => [
|
||||
'templateTitle' => 'Step 3 | Environment Settings | Classic Editor',
|
||||
'title' => 'Classic Environment Editor',
|
||||
'save' => 'Save .env',
|
||||
'back' => 'Use Form Wizard',
|
||||
'install' => 'Save and Install',
|
||||
'title' => 'Classic Environment Editor',
|
||||
'save' => 'Save .env',
|
||||
'back' => 'Use Form Wizard',
|
||||
'install' => 'Save and Install',
|
||||
],
|
||||
'success' => 'Your .env file settings have been saved.',
|
||||
'errors' => 'Unable to save the .env file, Please create it manually.',
|
||||
'errors' => 'Unable to save the .env file, Please create it manually.',
|
||||
],
|
||||
|
||||
'install' => 'Install',
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Installed Log translations.
|
||||
*
|
||||
@@ -178,36 +177,36 @@ return [
|
||||
'success_log_message' => 'Laravel Installer successfully INSTALLED on ',
|
||||
],
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Final page translations.
|
||||
*
|
||||
*/
|
||||
'final' => [
|
||||
'title' => 'Installation Finished',
|
||||
'title' => 'Installation Finished',
|
||||
'templateTitle' => 'Installation Finished',
|
||||
'finished' => 'Application has been successfully installed.',
|
||||
'migration' => 'Migration & Seed Console Output:',
|
||||
'console' => 'Application Console Output:',
|
||||
'log' => 'Installation Log Entry:',
|
||||
'env' => 'Final .env File:',
|
||||
'exit' => 'Click here to exit',
|
||||
'finished' => 'Application has been successfully installed.',
|
||||
'migration' => 'Migration & Seed Console Output:',
|
||||
'console' => 'Application Console Output:',
|
||||
'log' => 'Installation Log Entry:',
|
||||
'env' => 'Final .env File:',
|
||||
'exit' => 'Click here to exit',
|
||||
],
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Update specific translations
|
||||
*
|
||||
*/
|
||||
'updater' => [
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Shared translations.
|
||||
*
|
||||
*/
|
||||
'title' => 'Laravel Updater',
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Welcome page translations for update feature.
|
||||
*
|
||||
@@ -217,26 +216,26 @@ return [
|
||||
'message' => 'Welcome to the update wizard.',
|
||||
],
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Welcome page translations for update feature.
|
||||
*
|
||||
*/
|
||||
'overview' => [
|
||||
'title' => 'Overview',
|
||||
'message' => 'There is 1 update.|There are :number updates.',
|
||||
'install_updates' => "Install Updates"
|
||||
'title' => 'Overview',
|
||||
'message' => 'There is 1 update.|There are :number updates.',
|
||||
'install_updates' => 'Install Updates',
|
||||
],
|
||||
|
||||
/**
|
||||
/*
|
||||
*
|
||||
* Final page translations.
|
||||
*
|
||||
*/
|
||||
'final' => [
|
||||
'title' => 'Finished',
|
||||
'title' => 'Finished',
|
||||
'finished' => 'Application\'s database has been successfully updated.',
|
||||
'exit' => 'Click here to exit',
|
||||
'exit' => 'Click here to exit',
|
||||
],
|
||||
|
||||
'log' => [
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pagination Language Lines
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reset Language Lines
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'filenewpirep' => 'Inserici Nuovo PIREP',
|
||||
@@ -36,7 +34,7 @@ return [
|
||||
'manual' => 'Manuale',
|
||||
'acars' => 'ACARS',
|
||||
],
|
||||
'state' => [
|
||||
'state' => [
|
||||
'accepted' => 'Accettato',
|
||||
'pending' => 'In Attesa di Approvazione',
|
||||
'rejected' => 'Rifiutato',
|
||||
@@ -45,7 +43,7 @@ return [
|
||||
'deleted' => 'Eliminato',
|
||||
'draft' => 'Bozza',
|
||||
],
|
||||
'status' => [
|
||||
'status' => [
|
||||
'initialized' => 'Iniziato',
|
||||
'scheduled' => 'Programmato',
|
||||
'boarding' => 'Imbarco',
|
||||
@@ -67,5 +65,5 @@ return [
|
||||
'arrived' => 'Arrivato',
|
||||
'cancelled' => 'Cancellato',
|
||||
'emerg_decent' => 'Discesa di Emergenza',
|
||||
]
|
||||
],
|
||||
];
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'avatarresize' => 'Questo avatar sarà ridimensionato a :width x :height pixels',
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'title' => 'Termini e Condizioni di Utilizzo',
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'location' => 'Posizione',
|
||||
'state' => [
|
||||
'state' => [
|
||||
'pending' => 'In Attesa',
|
||||
'active' => 'Attivo',
|
||||
'rejected' => 'Rifiutato',
|
||||
|
||||
@@ -1,52 +1,51 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/**
|
||||
/*
|
||||
* Validation Language Lines
|
||||
*/
|
||||
|
||||
'accepted' => ':attribute deve essere accettato.',
|
||||
'active_url' => ':attribute non è un URL valido.',
|
||||
'after' => ':attribute deve essere una data successiva al :date.',
|
||||
'alpha' => ':attribute può contenere solo lettere.',
|
||||
'alpha_dash' => ':attribute può contenere solo lettere, numeri e trattini.',
|
||||
'alpha_num' => ':attribute può contenere solo lettere e numeri.',
|
||||
'array' => ':attribute deve essere un array.',
|
||||
'before' => ':attribute deve essere una data precedente al :date.',
|
||||
'between' => [
|
||||
'accepted' => ':attribute deve essere accettato.',
|
||||
'active_url' => ':attribute non è un URL valido.',
|
||||
'after' => ':attribute deve essere una data successiva al :date.',
|
||||
'alpha' => ':attribute può contenere solo lettere.',
|
||||
'alpha_dash' => ':attribute può contenere solo lettere, numeri e trattini.',
|
||||
'alpha_num' => ':attribute può contenere solo lettere e numeri.',
|
||||
'array' => ':attribute deve essere un array.',
|
||||
'before' => ':attribute deve essere una data precedente al :date.',
|
||||
'between' => [
|
||||
'numeric' => ':attribute deve essere compreso tra :min e :max.',
|
||||
'file' => ':attribute deve essere compreso tra :min e :max kilobytes.',
|
||||
'string' => ':attribute deve essere compreso tra :min e :max caratteri.',
|
||||
'array' => ':attribute deve essere compreso tra :min e :max elementi.',
|
||||
],
|
||||
'boolean' => ':attribute deve essere true o false.',
|
||||
'confirmed' => ':attribute la conferma non corrisponde.',
|
||||
'date' => ':attribute non è una data valida.',
|
||||
'date_format' => ':attribute non corrisponde al formato :format.',
|
||||
'different' => ':attribute e :other devono essere differenti.',
|
||||
'digits' => ':attribute deve essere di almeno :digits cifre.',
|
||||
'digits_between' => ':attribute deve essere compreso tra :min e :max cifre.',
|
||||
'dimensions' => ':attribute ha dimensioni di immagine non valide.',
|
||||
'distinct' => ':attribute il campo è duplicato.',
|
||||
'email' => ':attribute deve essere un indirizzo email valido.',
|
||||
'exists' => 'Il/la :attribute selezionato non è valido.',
|
||||
'file' => ':attribute deve essere un file.',
|
||||
'filled' => '":attribute" è obbligatorio.',
|
||||
'image' => ':attribute deve essere un\'immagine.',
|
||||
'in' => 'Il/la :attribute selezionato non è valido.',
|
||||
'in_array' => 'Il campo :attribute non esiste in :other.',
|
||||
'integer' => ':attribute deve essere un intero.',
|
||||
'ip' => ':attribute deve essere un indirizzo IP valido.',
|
||||
'json' => ':attribute deve essere una stringa JSON valida.',
|
||||
'max' => [
|
||||
'boolean' => ':attribute deve essere true o false.',
|
||||
'confirmed' => ':attribute la conferma non corrisponde.',
|
||||
'date' => ':attribute non è una data valida.',
|
||||
'date_format' => ':attribute non corrisponde al formato :format.',
|
||||
'different' => ':attribute e :other devono essere differenti.',
|
||||
'digits' => ':attribute deve essere di almeno :digits cifre.',
|
||||
'digits_between' => ':attribute deve essere compreso tra :min e :max cifre.',
|
||||
'dimensions' => ':attribute ha dimensioni di immagine non valide.',
|
||||
'distinct' => ':attribute il campo è duplicato.',
|
||||
'email' => ':attribute deve essere un indirizzo email valido.',
|
||||
'exists' => 'Il/la :attribute selezionato non è valido.',
|
||||
'file' => ':attribute deve essere un file.',
|
||||
'filled' => '":attribute" è obbligatorio.',
|
||||
'image' => ':attribute deve essere un\'immagine.',
|
||||
'in' => 'Il/la :attribute selezionato non è valido.',
|
||||
'in_array' => 'Il campo :attribute non esiste in :other.',
|
||||
'integer' => ':attribute deve essere un intero.',
|
||||
'ip' => ':attribute deve essere un indirizzo IP valido.',
|
||||
'json' => ':attribute deve essere una stringa JSON valida.',
|
||||
'max' => [
|
||||
'numeric' => ':attribute non può essere maggiore di :max.',
|
||||
'file' => ':attribute non può essere maggiore di :max kilobytes.',
|
||||
'string' => ':attribute non può essere maggiore di :max caratteri.',
|
||||
'array' => ':attribute non può essere maggiore di :max elementi.',
|
||||
],
|
||||
'mimes' => ':attribute deve essere un file di tipo: :values.',
|
||||
'min' => [
|
||||
'mimes' => ':attribute deve essere un file di tipo: :values.',
|
||||
'min' => [
|
||||
'numeric' => ':attribute deve essere di almeno :min.',
|
||||
'file' => ':attribute deve essere di almeno :min kilobytes.',
|
||||
'string' => ':attribute deve essere di almeno :min caratteri.',
|
||||
@@ -70,23 +69,23 @@ return [
|
||||
'string' => ':attribute deve essere di :size caratteri.',
|
||||
'array' => ':attribute deve contenere :size elementi.',
|
||||
],
|
||||
'string' => ':attribute deve essere una stringa.',
|
||||
'timezone' => ':attribute deve essere una zona valida.',
|
||||
'unique' => ':attribute è già stato utilizzato.',
|
||||
'url' => 'Il formato del/della :attribute non è valido.',
|
||||
'string' => ':attribute deve essere una stringa.',
|
||||
'timezone' => ':attribute deve essere una zona valida.',
|
||||
'unique' => ':attribute è già stato utilizzato.',
|
||||
'url' => 'Il formato del/della :attribute non è valido.',
|
||||
|
||||
/**
|
||||
/*
|
||||
* Custom Validation Language Lines
|
||||
*/
|
||||
|
||||
'custom' => [
|
||||
'airline_id' => [
|
||||
'required' => 'Una compagnia aerea è obbligatoria',
|
||||
'exists' => 'La compagnia aerea non esiste',
|
||||
'exists' => 'La compagnia aerea non esiste',
|
||||
],
|
||||
'aircraft_id' => [
|
||||
'required' => 'Un aereo è obbligatorio',
|
||||
'exists' => 'L\'aereo non esiste',
|
||||
'exists' => 'L\'aereo non esiste',
|
||||
],
|
||||
'arr_airport_id' => [
|
||||
'required' => 'Un aeroporto di arrivo è obbligatorio',
|
||||
@@ -96,22 +95,22 @@ return [
|
||||
],
|
||||
'flight_time' => [
|
||||
'required' => 'Il tempo di volo in minuti è obbligatorio',
|
||||
'integer' => 'Il tempo di volo in minuti deve essere un intero',
|
||||
'integer' => 'Il tempo di volo in minuti deve essere un intero',
|
||||
],
|
||||
'planned_flight_time' => [
|
||||
'required' => 'Il tempo di volo in minuti è obbligatorio',
|
||||
'integer' => 'Il tempo di volo in minuti deve essere un intero',
|
||||
'integer' => 'Il tempo di volo in minuti deve essere un intero',
|
||||
],
|
||||
'source_name' => [
|
||||
'required' => 'La fonte del PIREP è obbligatoria',
|
||||
],
|
||||
'g-recaptcha-response' => [
|
||||
'required' => 'Conferma di non essere un robot per favore.',
|
||||
'captcha' => 'Errore captcha! Riprova più tardi o contatta un amministratiore.',
|
||||
'captcha' => 'Errore captcha! Riprova più tardi o contatta un amministratiore.',
|
||||
],
|
||||
],
|
||||
|
||||
/**
|
||||
/*
|
||||
* Custom Validation Attributes
|
||||
*/
|
||||
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
return [
|
||||
'latestnews' => [
|
||||
|
||||
Reference in New Issue
Block a user