mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 08:12:15 +00:00
Language editor refactoring part 4 (backend + frontend)
This commit is contained in:
11
config/custom-language-translations.php
Normal file
11
config/custom-language-translations.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Place here your custom translations for your project.
|
||||
* These translation will be automatically seeded after you
|
||||
* run setup:dev script or installing app via Setup Wizard Tool
|
||||
*/
|
||||
|
||||
return [
|
||||
'custom' => 'translation'
|
||||
];
|
||||
@@ -6,6 +6,7 @@ return [
|
||||
"activation.stripe.description" => "To charge your users, please set up your Stripe account credentials.",
|
||||
"activation.stripe.title" => "Your Stripe account is not set",
|
||||
"admin_menu.invoices" => "Invoices",
|
||||
"admin_menu.plans" => "Plans",
|
||||
"admin_page_dashboard.w_total_premium.link" => "Show All Plans",
|
||||
"admin_page_dashboard.w_total_premium.title" => "Total Premium Users",
|
||||
"admin_page_invoices.empty.description" => "All customers invoices will be showed here.",
|
||||
@@ -72,10 +73,10 @@ return [
|
||||
"admin_settings.payments.allow_payments" => "Allow Subscription Payments",
|
||||
"admin_settings.payments.button_submit" => "Test and Save Stripe",
|
||||
"admin_settings.payments.button_testing" => "Testing Stripe Connection",
|
||||
"admin_settings.payments.credentials_disclaimer" => "Your Stripe credentials is not showed because these values are secret and must not be revealed by stranger. You can change your Stripe credentials in your <b>.env</b> file.",
|
||||
"admin_settings.payments.credentials_disclaimer" => "Your Stripe credentials is not showed because these values are secret and must not be revealed by stranger. You can change your Stripe credentials in your <b class='text-theme'>.env</b> file.",
|
||||
"admin_settings.payments.section_payments" => "Stripe Payments",
|
||||
"admin_settings.payments.stripe_create_acc" => "If you don’t have stripe account, please <a href=\"https://dashboard.stripe.com/register\" target=\"_blank\">register here</a> and get your Publishable Key, Secret Key and create your webhook.",
|
||||
"admin_settings.payments.stripe_create_webhook" => "You have to create webhook endpoint in your Stripe Dashboard. You can find it in <b>Dashboard -> Developers -> Webhooks -> Add Endpoint</b>. In Endpoint URL please copy and paste url bellow. Make sure, this url is your public domain, not localhost. In events section, please click on <b>receive all events</b>. That's all.",
|
||||
"admin_settings.payments.stripe_create_webhook" => "You have to create webhook endpoint in your Stripe Dashboard. You can find it in <b class='text-theme'>Dashboard -> Developers -> Webhooks -> Add Endpoint</b>. In Endpoint URL please copy and paste url bellow. Make sure, this url is your public domain, not localhost. In events section, please click on <b class='text-theme'>receive all events</b>. That's all.",
|
||||
"admin_settings.payments.stripe_currency" => "Stripe Currency",
|
||||
"admin_settings.payments.stripe_currency_plac" => "Select your Stripe currency",
|
||||
"admin_settings.payments.stripe_pub_key" => "Publishable Key",
|
||||
@@ -276,7 +277,7 @@ return [
|
||||
"admin_settings.appearance.title_plac" => "Type your app title",
|
||||
"admin_settings.email.driver" => "Mail Driver",
|
||||
"admin_settings.email.driver_plac" => "Type your mail driver",
|
||||
"admin_settings.email.email_disclaimer" => "This form is not fully pre-filled for security reasons. Your email settings is available in your <b>.env</b> file. For apply new Email settings, please confirm your options by button at the end of formular.",
|
||||
"admin_settings.email.email_disclaimer" => "This form is not fully pre-filled for security reasons. Your email settings is available in your <b class='text-theme'>.env</b> file. For apply new Email settings, please confirm your options by button at the end of formular.",
|
||||
"admin_settings.email.encryption" => "Mail Encryption",
|
||||
"admin_settings.email.encryption_plac" => "Select your mail encryption",
|
||||
"admin_settings.email.host" => "Mail Host",
|
||||
@@ -560,7 +561,7 @@ return [
|
||||
"shared_form.button_generate" => "Generate Link",
|
||||
"shared_form.button_more_options" => "Set Expiration",
|
||||
"shared_form.email_placeholder" => "Type your emails",
|
||||
"shared_form.email_successfully_send_message" => "Your item was <b>successfully sended</b> to recipients emails.",
|
||||
"shared_form.email_successfully_send_message" => "Your item was <b class='text-theme'>successfully sended</b> to recipients emails.",
|
||||
"shared_form.expiration_day" => "{value}d.",
|
||||
"shared_form.expiration_hour" => "{value}h.",
|
||||
"shared_form.label_expiration" => "Link Expiration",
|
||||
@@ -655,5 +656,25 @@ return [
|
||||
'salutation' => 'Regards',
|
||||
'user_sending' => ':name is sending you this file',
|
||||
'protected_file' => 'This link is protected by password',
|
||||
'routes_title.language' => 'Languages',
|
||||
'languages' => 'Languages',
|
||||
'add_language' => 'Add Language',
|
||||
'create_language' => 'Create Language',
|
||||
'edit_translations' => 'Edit Translations',
|
||||
'language_name' => 'Language Name',
|
||||
'set_as_default_language' => 'Set as Default Language',
|
||||
'language_settings' => 'Language Settings',
|
||||
'search_translations' => 'Search Language Translations...',
|
||||
'select_locale' => 'Select Locale',
|
||||
'locale_name' => 'Language Name',
|
||||
'select_language_locale' => 'Select Language Locale',
|
||||
'type_language_name' => 'Type Language Name',
|
||||
'go_to_files' => 'Go to Files',
|
||||
'color_theme' => 'Color Theme',
|
||||
'color_theme_description' => 'Your color change will be visible after app refresh.',
|
||||
'og_image' => 'OG Image',
|
||||
'og_image_description' => 'Image that appear when someone shares the content to Facebook or any other social medium. Preferred size is 1200x627',
|
||||
'app_touch_icon' => 'App Touch Icon',
|
||||
'app_touch_icon_description' => 'If user store bookmark on his phone screen, this icon appear in app thumbnail. Preferred size is 156x156',
|
||||
]
|
||||
];
|
||||
Reference in New Issue
Block a user