Updated translations
This commit is contained in:
parent
e7037d66c4
commit
f0a3af0489
|
|
@ -346,15 +346,18 @@ class NinjaMailerJob implements ShouldQueue
|
||||||
$t = app('translator');
|
$t = app('translator');
|
||||||
$t->replace(Ninja::transformTranslations($this->nmo->settings));
|
$t->replace(Ninja::transformTranslations($this->nmo->settings));
|
||||||
|
|
||||||
/** Force free/trials onto specific mail driver */
|
if(Ninja::isHosted() && $this->nmo?->transport == 'default') {
|
||||||
|
$this->mailer = config('mail.default');
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Force free/trials onto specific mail driver */
|
||||||
if ($this->nmo->settings->email_sending_method == 'default' && $this->company->account->isNewHostedAccount()) {
|
if ($this->nmo->settings->email_sending_method == 'default' && $this->company->account->isNewHostedAccount()) {
|
||||||
$this->mailer = 'mailgun';
|
$this->mailer = 'mailgun';
|
||||||
$this->setHostedMailgunMailer();
|
$this->setHostedMailgunMailer();
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (Ninja::isHosted() && $this->company->account->isPaid() && $this->nmo->settings->email_sending_method == 'default') {
|
if (Ninja::isHosted() && $this->company->account->isPaid() && $this->nmo->settings->email_sending_method == 'default') {
|
||||||
//check if outlook.
|
//check if outlook.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ class NinjaMailerObject
|
||||||
|
|
||||||
public $settings;
|
public $settings;
|
||||||
|
|
||||||
public $transport; //not yet used
|
public $transport; //Used to force the mailer
|
||||||
|
|
||||||
/* Variable for cascading notifications */
|
/* Variable for cascading notifications */
|
||||||
public $entity_string = false;
|
public $entity_string = false;
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,10 @@ class UserService
|
||||||
$nmo->to_user = $this->user;
|
$nmo->to_user = $this->user;
|
||||||
$nmo->settings = $company->settings;
|
$nmo->settings = $company->settings;
|
||||||
|
|
||||||
|
if(\App\Utils\Ninja::isHosted()) {
|
||||||
|
$nmo->transport = 'default';
|
||||||
|
}
|
||||||
|
|
||||||
NinjaMailerJob::dispatch($nmo, true);
|
NinjaMailerJob::dispatch($nmo, true);
|
||||||
|
|
||||||
Ninja::registerNinjaUser($this->user);
|
Ninja::registerNinjaUser($this->user);
|
||||||
|
|
|
||||||
|
|
@ -2361,7 +2361,7 @@ $lang = array(
|
||||||
'contact_custom2' => 'اتصل بـ Second Custom',
|
'contact_custom2' => 'اتصل بـ Second Custom',
|
||||||
'currency' => 'عملة',
|
'currency' => 'عملة',
|
||||||
'ofx_help' => 'لاستكشاف الأخطاء وإصلاحها ، تحقق من التعليقات على :ofxhome_link واختبرها باستخدام :ofxget_link.',
|
'ofx_help' => 'لاستكشاف الأخطاء وإصلاحها ، تحقق من التعليقات على :ofxhome_link واختبرها باستخدام :ofxget_link.',
|
||||||
'comments' => 'Comments',
|
'comments' => 'تعليقات',
|
||||||
|
|
||||||
'item_product' => 'المنتج البند',
|
'item_product' => 'المنتج البند',
|
||||||
'item_notes' => 'ملاحظات البند',
|
'item_notes' => 'ملاحظات البند',
|
||||||
|
|
@ -2868,7 +2868,7 @@ $lang = array(
|
||||||
'reopened' => 'أعيد فتحه',
|
'reopened' => 'أعيد فتحه',
|
||||||
'priority' => 'أولوية',
|
'priority' => 'أولوية',
|
||||||
'last_updated' => 'آخر تحديث',
|
'last_updated' => 'آخر تحديث',
|
||||||
'comment' => 'Comment',
|
'comment' => 'تعليق',
|
||||||
'tags' => 'العلامات',
|
'tags' => 'العلامات',
|
||||||
'linked_objects' => 'كائنات مرتبطة',
|
'linked_objects' => 'كائنات مرتبطة',
|
||||||
'low' => 'قليل',
|
'low' => 'قليل',
|
||||||
|
|
@ -5550,8 +5550,11 @@ $lang = array(
|
||||||
'plan_selected' => 'الخطة المختارة',
|
'plan_selected' => 'الخطة المختارة',
|
||||||
'invalid_date_create_syntax' => 'صيغة التاريخ غير صالحة',
|
'invalid_date_create_syntax' => 'صيغة التاريخ غير صالحة',
|
||||||
'start_and_end_date_required' => 'تاريخ البدء والانتهاء مطلوبين',
|
'start_and_end_date_required' => 'تاريخ البدء والانتهاء مطلوبين',
|
||||||
'project_value' => 'Project Value',
|
'project_value' => 'قيمة المشروع',
|
||||||
'invalid_csv_data' => 'Invalid CSV data, your import was cancelled.',
|
'invalid_csv_data' => 'بيانات CSV غير صالحة، تم إلغاء استيرادك.',
|
||||||
|
'selected_products' => 'منتجات مختارة',
|
||||||
|
'create_company_error_unauthorized' => 'ليس لديك صلاحية إنشاء شركة. مالك حساب فقط هو من يستطيع إنشاء الشركة.',
|
||||||
|
'deleted_location' => 'تم حذف الموقع',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
||||||
|
|
|
||||||
|
|
@ -2381,7 +2381,7 @@ $lang = array(
|
||||||
'contact_custom2' => 'Контакт - Втора колона',
|
'contact_custom2' => 'Контакт - Втора колона',
|
||||||
'currency' => 'Валута',
|
'currency' => 'Валута',
|
||||||
'ofx_help' => 'За проследяване на проблема вижте коментарите на :ofxhome_link и тествайте с :ofxget_link.',
|
'ofx_help' => 'За проследяване на проблема вижте коментарите на :ofxhome_link и тествайте с :ofxget_link.',
|
||||||
'comments' => 'Comments',
|
'comments' => 'Коментари',
|
||||||
|
|
||||||
'item_product' => 'Ред Продукт',
|
'item_product' => 'Ред Продукт',
|
||||||
'item_notes' => 'Ред Забележка',
|
'item_notes' => 'Ред Забележка',
|
||||||
|
|
@ -2888,7 +2888,7 @@ $lang = array(
|
||||||
'reopened' => 'Reopened',
|
'reopened' => 'Reopened',
|
||||||
'priority' => 'Приоритет',
|
'priority' => 'Приоритет',
|
||||||
'last_updated' => 'Последно актуализиран',
|
'last_updated' => 'Последно актуализиран',
|
||||||
'comment' => 'Comment',
|
'comment' => 'Коментар',
|
||||||
'tags' => 'Тагове',
|
'tags' => 'Тагове',
|
||||||
'linked_objects' => 'Свързани обекти',
|
'linked_objects' => 'Свързани обекти',
|
||||||
'low' => 'Нисък',
|
'low' => 'Нисък',
|
||||||
|
|
@ -5502,76 +5502,79 @@ $lang = array(
|
||||||
'yesterday' => 'Вчера',
|
'yesterday' => 'Вчера',
|
||||||
'enable_client_profile_update' => 'Позволете на Клиенти до актуализират своя профил',
|
'enable_client_profile_update' => 'Позволете на Клиенти до актуализират своя профил',
|
||||||
'enable_client_profile_update_help' => 'Позволете на Клиенти до актуализират информацията за своя профил от клиент портал',
|
'enable_client_profile_update_help' => 'Позволете на Клиенти до актуализират информацията за своя профил от клиент портал',
|
||||||
'preference_product_notes_for_html_view' => 'Use Item Notes for HTML View',
|
'preference_product_notes_for_html_view' => 'Use Item Notes for HTML Прегледай',
|
||||||
'preference_product_notes_for_html_view_help' => 'Preference the item Description over the item title if displaying the invoice in HTML.',
|
'preference_product_notes_for_html_view_help' => 'Предпочитайте описанието на артикула пред заглавието му, ако показвате Фактура в HTML.',
|
||||||
'project_report' => 'Project Report',
|
'project_report' => 'Доклад по проекта',
|
||||||
'unlock_invoice_documents_after_payment' => 'Unlock Documents After Payment',
|
'unlock_invoice_documents_after_payment' => 'Отключване на документи след Плащане',
|
||||||
'unlock_invoice_documents_after_payment_help' => 'Allows client access to invoice documents when an invoice has been paid',
|
'unlock_invoice_documents_after_payment_help' => 'Позволява достъп клиент до документите Фактура , когато Фактура е платена',
|
||||||
'quickbooks' => 'Quickbooks',
|
'quickbooks' => 'Бързи книги',
|
||||||
'disable_emails' => 'Disable Emails',
|
'disable_emails' => 'Деактивиране на имейли',
|
||||||
'disable_emails_error' => 'You are not authorized to send emails',
|
'disable_emails_error' => 'Нямате право до изпращате имейли',
|
||||||
'disable_emails_help' => 'Prevents a user from sending emails from the system',
|
'disable_emails_help' => 'Предотвратява изпращането на имейли от системата от Потребител',
|
||||||
'add_location' => 'Add Location',
|
'add_location' => 'Добавете местоположение',
|
||||||
'updated_location' => 'Updated Location',
|
'updated_location' => 'обновена Местоположение',
|
||||||
'created_location' => 'Created Location',
|
'created_location' => 'Създадена местоположение',
|
||||||
'sync_send_time' => 'Sync Send Time',
|
'sync_send_time' => 'Синхронизиране на времето за изпращане',
|
||||||
'sync_send_time_help' => 'Update all reminders / recurring invoices to use this new send time',
|
'sync_send_time_help' => 'Актуализирайте всички напомняния / Периодична Фактури до използвайте този нов час за изпращане',
|
||||||
'edit_location' => 'Edit Location',
|
'edit_location' => 'Редактирай местоположението',
|
||||||
'downgrade' => 'Downgrade',
|
'downgrade' => 'Понижаване на версията',
|
||||||
'downgrade_to_free' => 'Downgrade to Free Plan',
|
'downgrade_to_free' => 'Понижаване до безплатния план',
|
||||||
'downgrade_to_free_description' => 'Downgrade to the free plan, note this will remove all paid features from your account.',
|
'downgrade_to_free_description' => 'Понижаване до безплатния план, Бележка това ще премахне всички платени функции от вашата сметка .',
|
||||||
'delete_location' => 'Delete Location',
|
'delete_location' => 'Изтрий',
|
||||||
'delete_location_confirmation' => 'This will remove the location from the clients record.',
|
'delete_location_confirmation' => 'Това ще премахне местоположението от записа Клиенти .',
|
||||||
'add_card_reminder' => 'You can add a card again at any time.',
|
'add_card_reminder' => 'Можете Добавете карта отново по всяко време.',
|
||||||
'free_trial_then' => 'Free trial, then',
|
'free_trial_then' => 'Безплатен пробен период, след това',
|
||||||
'days_left' => ':days days left',
|
'days_left' => ':day s остават дни',
|
||||||
'days_trial' => ':days day trial',
|
'days_trial' => ':day s дневен пробен период',
|
||||||
'pro_plan_label' => 'Ninja Pro',
|
'pro_plan_label' => 'Нинджа Про',
|
||||||
'enterprise_plan_label' => 'Enterprise',
|
'enterprise_plan_label' => 'Предприятие',
|
||||||
'premium_business_plus_label' => 'Premium Business+',
|
'premium_business_plus_label' => 'Премиум бизнес+',
|
||||||
'pro_plan_feature_1' => 'Unlimited Clients & Invoices',
|
'pro_plan_feature_1' => 'Неограничени Клиенти & Фактури',
|
||||||
'pro_plan_feature_2' => 'Remove "Created by Invoice Ninja"',
|
'pro_plan_feature_2' => 'Премахнете „ Създадена от Фактура Ninja“',
|
||||||
'pro_plan_feature_3' => 'Email Invoices via Gmail & MSN',
|
'pro_plan_feature_3' => 'имейл Фактури чрез Gmail и MSN',
|
||||||
'pro_plan_feature_4' => 'Email Invoices via your custom SMTP',
|
'pro_plan_feature_4' => 'имейл Фактури чрез вашия персонализиран SMTP',
|
||||||
'pro_plan_feature_5' => 'Branded URL: "YourSite".Invoicing.co',
|
'pro_plan_feature_5' => 'Брандиран URL адрес: „Вашият сайт“. фактуриране .co',
|
||||||
'pro_plan_feature_6' => '11 Professional Invoice Templates',
|
'pro_plan_feature_6' => '11 професионални шаблона Фактура',
|
||||||
'pro_plan_feature_7' => 'Customize Invoice Designs',
|
'pro_plan_feature_7' => 'Персонализирайте дизайните Фактура',
|
||||||
'pro_plan_feature_8' => 'API Integration with 3rd Party Apps',
|
'pro_plan_feature_8' => 'API интеграция с приложения на трети страни',
|
||||||
'pro_plan_feature_9' => 'Password Protect Client-Side Portal',
|
'pro_plan_feature_9' => 'Защита с парола Страничен портал Клиент',
|
||||||
'pro_plan_feature_10' => 'Set Up Auto-Reminder Emails',
|
'pro_plan_feature_10' => 'Настройване на имейли за автоматично напомняне',
|
||||||
'pro_plan_feature_11' => 'Auto-Attached Invoice PDF to Emails',
|
'pro_plan_feature_11' => 'Автоматично прикачена Фактура PDF до имейли',
|
||||||
'pro_plan_feature_12' => 'Display Clients E-Signature on Invoices',
|
'pro_plan_feature_12' => 'Показване на Клиенти E-Signature на Фактури',
|
||||||
'pro_plan_feature_13' => "Enable an 'Approve Terms' Checkbox",
|
'pro_plan_feature_13' => "Активирайте квадратчето за отметка „ Условия за одобрение“.",
|
||||||
'pro_plan_feature_14' => 'Reports: Invoices, Expenses, P&L, more',
|
'pro_plan_feature_14' => 'Отчети: Фактури , Разходи, P&L, др',
|
||||||
'pro_plan_feature_15' => 'Bulk Email Invoices, Quotes, Credits',
|
'pro_plan_feature_15' => 'Масов имейл Фактури , цитати , Кредити',
|
||||||
'pro_plan_feature_16' => 'Interlink 10 Companies with 1 Login',
|
'pro_plan_feature_16' => 'Свържете 10 компании с 1 вход',
|
||||||
'pro_plan_feature_17' => 'Create Unique "Client Group" Settings',
|
'pro_plan_feature_17' => 'Създай уникални Настройки на " Клиент група".',
|
||||||
'pro_plan_feature_18' => 'Auto Sales Tax Calculation (US States)',
|
'pro_plan_feature_18' => 'Изчисляване на данък върху продажбите на автомобили (щати на САЩ)',
|
||||||
'enterprise_plan_feature_1' => 'Create Additional Account Users (up to 50!) & Set Permissions per User',
|
'enterprise_plan_feature_1' => 'Създай допълнителни сметка Потребители ( до 50!) & Задайте разрешения на Потребител',
|
||||||
'enterprise_plan_feature_2' => 'Attach Files to Emails & Client-Portal (pdf, jpg, ppt, xls, doc & more)',
|
'enterprise_plan_feature_2' => 'Прикачване на файлове до имейли и Клиент портал ( PDF , jpg, ppt, xls, doc и други)',
|
||||||
'enterprise_plan_feature_3' => 'Fully Branded Client Portal: "Billing.YourCompany.com"',
|
'enterprise_plan_feature_3' => 'Напълно брандиран Клиент портал: "Billing.YourCompany.com"',
|
||||||
'enterprise_plan_feature_4' => 'Integrate Your Financial Accounts and Sync Banking Transactions via Yodlee or Nordigen Banking Platforms',
|
'enterprise_plan_feature_4' => 'Интегрирайте финансовите си сметки и синхронизирайте банковите си транзакции чрез банковите платформи Yodlee или Nordigen',
|
||||||
'premium_business_plus_feature_1' => 'Developer Concierge',
|
'premium_business_plus_feature_1' => 'Консиерж за разработчици',
|
||||||
'premium_business_plus_feature_2' => 'Direct Priority Support',
|
'premium_business_plus_feature_2' => 'Директна приоритетна поддръжка',
|
||||||
'premium_business_plus_feature_3' => 'Invoice Design Service',
|
'premium_business_plus_feature_3' => 'Услуги за дизайн Фактура',
|
||||||
'premium_business_plus_feature_4' => 'Feature Request Priority',
|
'premium_business_plus_feature_4' => 'Приоритет на заявката за функция',
|
||||||
'premium_business_plus_feature_5' => 'Data Migration Assist',
|
'premium_business_plus_feature_5' => 'Съдействие за мигриране на данни',
|
||||||
'premium_business_plus_feature_6' => 'Build Custom Reports',
|
'premium_business_plus_feature_6' => 'Изграждане на персонализиран отчети',
|
||||||
'upgrade_popup_headline' => 'More than invoicing',
|
'upgrade_popup_headline' => 'Повече от фактуриране',
|
||||||
'upgrade_popup_description' => 'Simple Pricing. Advanced Features.',
|
'upgrade_popup_description' => 'Просто ценообразуване. Разширени функции.',
|
||||||
'upgrade_popup_pro_headline' => 'Pay year for 10 months + 2 free!',
|
'upgrade_popup_pro_headline' => 'Плащайте годишно за 10 месеца + 2 безплатни!',
|
||||||
'upgrade_popup_enterprise_headline' => 'Pay year for 10 months + 2 free!',
|
'upgrade_popup_enterprise_headline' => 'Плащайте годишно за 10 месеца + 2 безплатни!',
|
||||||
'upgrade_popup_premium_business_plus_headline' => 'Pro + Enterprise + Premium Business Concierge',
|
'upgrade_popup_premium_business_plus_headline' => 'Професионален + Корпоративен + Премиум бизнес консиерж',
|
||||||
'all_free_features_plus' => 'All free features +',
|
'all_free_features_plus' => 'Всички безплатни функции +',
|
||||||
'all_pro_features_plus' => 'All pro features +',
|
'all_pro_features_plus' => 'Всички професионални функции +',
|
||||||
'all_features_plus' => 'All features +',
|
'all_features_plus' => 'Всички функции +',
|
||||||
'upgrade_plan' => 'Upgrade Plan',
|
'upgrade_plan' => 'План за надграждане',
|
||||||
'upgrade_popup_premium_business_plus_pricing' => 'Pricing? Let\'s talk!',
|
'upgrade_popup_premium_business_plus_pricing' => 'Ценообразуване? Нека поговорим!',
|
||||||
'plan_selected' => 'Plan Selected',
|
'plan_selected' => 'Избран план',
|
||||||
'invalid_date_create_syntax' => 'Invalid date syntax',
|
'invalid_date_create_syntax' => 'Невалиден синтаксис на дата',
|
||||||
'start_and_end_date_required' => 'Start and end date are required',
|
'start_and_end_date_required' => 'начало и крайната дата са задължителни',
|
||||||
'project_value' => 'Project Value',
|
'project_value' => 'Стойност на проекта',
|
||||||
'invalid_csv_data' => 'Invalid CSV data, your import was cancelled.',
|
'invalid_csv_data' => 'Невалидни CSV данни, импортирането ви е анулирано.',
|
||||||
|
'selected_products' => 'Избрани продукти',
|
||||||
|
'create_company_error_unauthorized' => 'Не сте упълномощени до Създай компания. Само собственикът сметка може Създай фирма.',
|
||||||
|
'deleted_location' => 'Местоположение изтрит',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
||||||
|
|
|
||||||
|
|
@ -2380,7 +2380,7 @@ $lang = array(
|
||||||
'contact_custom2' => 'Contact Second Custom',
|
'contact_custom2' => 'Contact Second Custom',
|
||||||
'currency' => 'Moneda',
|
'currency' => 'Moneda',
|
||||||
'ofx_help' => 'To troubleshoot check for comments on :ofxhome_link and test with :ofxget_link.',
|
'ofx_help' => 'To troubleshoot check for comments on :ofxhome_link and test with :ofxget_link.',
|
||||||
'comments' => 'Comments',
|
'comments' => 'Comentaris',
|
||||||
|
|
||||||
'item_product' => 'Item Product',
|
'item_product' => 'Item Product',
|
||||||
'item_notes' => 'Item Notes',
|
'item_notes' => 'Item Notes',
|
||||||
|
|
@ -2887,7 +2887,7 @@ $lang = array(
|
||||||
'reopened' => 'Reobert',
|
'reopened' => 'Reobert',
|
||||||
'priority' => 'Prioritat',
|
'priority' => 'Prioritat',
|
||||||
'last_updated' => 'Last Updated',
|
'last_updated' => 'Last Updated',
|
||||||
'comment' => 'Comment',
|
'comment' => 'Comentari',
|
||||||
'tags' => 'Etiquetes',
|
'tags' => 'Etiquetes',
|
||||||
'linked_objects' => 'Linked Objects',
|
'linked_objects' => 'Linked Objects',
|
||||||
'low' => 'Baix',
|
'low' => 'Baix',
|
||||||
|
|
@ -5501,76 +5501,79 @@ $lang = array(
|
||||||
'yesterday' => 'Ahir',
|
'yesterday' => 'Ahir',
|
||||||
'enable_client_profile_update' => 'Permet als clients actualitzar el seu perfil',
|
'enable_client_profile_update' => 'Permet als clients actualitzar el seu perfil',
|
||||||
'enable_client_profile_update_help' => 'Permet als clients actualitzar la informació del seu perfil des del portal del client',
|
'enable_client_profile_update_help' => 'Permet als clients actualitzar la informació del seu perfil des del portal del client',
|
||||||
'preference_product_notes_for_html_view' => 'Use Item Notes for HTML View',
|
'preference_product_notes_for_html_view' => 'Utilitza les notes de l'element per a la vista HTML',
|
||||||
'preference_product_notes_for_html_view_help' => 'Preference the item Description over the item title if displaying the invoice in HTML.',
|
'preference_product_notes_for_html_view_help' => 'Prefereix la descripció de l'article al títol de l'article si mostres la factura en HTML.',
|
||||||
'project_report' => 'Project Report',
|
'project_report' => 'Informe del projecte',
|
||||||
'unlock_invoice_documents_after_payment' => 'Unlock Documents After Payment',
|
'unlock_invoice_documents_after_payment' => 'Desbloqueja els documents després del pagament',
|
||||||
'unlock_invoice_documents_after_payment_help' => 'Allows client access to invoice documents when an invoice has been paid',
|
'unlock_invoice_documents_after_payment_help' => 'Permet al client accedir als documents de la factura quan s'ha pagat una factura',
|
||||||
'quickbooks' => 'Quickbooks',
|
'quickbooks' => 'Quickbooks',
|
||||||
'disable_emails' => 'Disable Emails',
|
'disable_emails' => 'Desactiva els correus electrònics',
|
||||||
'disable_emails_error' => 'You are not authorized to send emails',
|
'disable_emails_error' => 'No esteu autoritzat a enviar correus electrònics',
|
||||||
'disable_emails_help' => 'Prevents a user from sending emails from the system',
|
'disable_emails_help' => 'Impedeix que un usuari enviï correus electrònics des del sistema',
|
||||||
'add_location' => 'Add Location',
|
'add_location' => 'Afegeix una ubicació',
|
||||||
'updated_location' => 'Updated Location',
|
'updated_location' => 'Ubicació actualitzada',
|
||||||
'created_location' => 'Created Location',
|
'created_location' => 'Ubicació creada',
|
||||||
'sync_send_time' => 'Sync Send Time',
|
'sync_send_time' => 'Sincronitza l'hora d'enviament',
|
||||||
'sync_send_time_help' => 'Update all reminders / recurring invoices to use this new send time',
|
'sync_send_time_help' => 'Actualitza tots els recordatoris/factures recurrents per utilitzar aquesta nova hora d'enviament',
|
||||||
'edit_location' => 'Edit Location',
|
'edit_location' => 'Edita la ubicació',
|
||||||
'downgrade' => 'Downgrade',
|
'downgrade' => 'Baixa de categoria',
|
||||||
'downgrade_to_free' => 'Downgrade to Free Plan',
|
'downgrade_to_free' => 'Baixa al pla gratuït',
|
||||||
'downgrade_to_free_description' => 'Downgrade to the free plan, note this will remove all paid features from your account.',
|
'downgrade_to_free_description' => 'Si canvieu al pla gratuït, tingueu en compte que això eliminarà totes les funcions de pagament del vostre compte.',
|
||||||
'delete_location' => 'Delete Location',
|
'delete_location' => 'Suprimeix la ubicació',
|
||||||
'delete_location_confirmation' => 'This will remove the location from the clients record.',
|
'delete_location_confirmation' => 'Això eliminarà la ubicació del registre del client.',
|
||||||
'add_card_reminder' => 'You can add a card again at any time.',
|
'add_card_reminder' => 'Pots tornar a afegir una targeta en qualsevol moment.',
|
||||||
'free_trial_then' => 'Free trial, then',
|
'free_trial_then' => 'Prova gratuïta, doncs',
|
||||||
'days_left' => ':days days left',
|
'days_left' => ':day s dies restants',
|
||||||
'days_trial' => ':days day trial',
|
'days_trial' => 'prova d'un dia :day',
|
||||||
'pro_plan_label' => 'Ninja Pro',
|
'pro_plan_label' => 'Ninja Pro',
|
||||||
'enterprise_plan_label' => 'Enterprise',
|
'enterprise_plan_label' => 'Empresa',
|
||||||
'premium_business_plus_label' => 'Premium Business+',
|
'premium_business_plus_label' => 'Premium Business+',
|
||||||
'pro_plan_feature_1' => 'Unlimited Clients & Invoices',
|
'pro_plan_feature_1' => 'Clients i factures il·limitats',
|
||||||
'pro_plan_feature_2' => 'Remove "Created by Invoice Ninja"',
|
'pro_plan_feature_2' => 'Elimina "Creat per Invoice Ninja"',
|
||||||
'pro_plan_feature_3' => 'Email Invoices via Gmail & MSN',
|
'pro_plan_feature_3' => 'Factures per correu electrònic a través de Gmail i MSN',
|
||||||
'pro_plan_feature_4' => 'Email Invoices via your custom SMTP',
|
'pro_plan_feature_4' => 'Factures per correu electrònic a través del vostre SMTP personalitzat',
|
||||||
'pro_plan_feature_5' => 'Branded URL: "YourSite".Invoicing.co',
|
'pro_plan_feature_5' => 'URL de marca: "El vostre lloc web".Invoicing.co',
|
||||||
'pro_plan_feature_6' => '11 Professional Invoice Templates',
|
'pro_plan_feature_6' => '11 plantilles de factures professionals',
|
||||||
'pro_plan_feature_7' => 'Customize Invoice Designs',
|
'pro_plan_feature_7' => 'Personalitza els dissenys de les factures',
|
||||||
'pro_plan_feature_8' => 'API Integration with 3rd Party Apps',
|
'pro_plan_feature_8' => 'Integració d'API amb aplicacions de tercers',
|
||||||
'pro_plan_feature_9' => 'Password Protect Client-Side Portal',
|
'pro_plan_feature_9' => 'Portal del costat del client amb protecció de contrasenya',
|
||||||
'pro_plan_feature_10' => 'Set Up Auto-Reminder Emails',
|
'pro_plan_feature_10' => 'Configura correus electrònics de recordatori automàtic',
|
||||||
'pro_plan_feature_11' => 'Auto-Attached Invoice PDF to Emails',
|
'pro_plan_feature_11' => 'PDF de factura adjunt automàticament als correus electrònics',
|
||||||
'pro_plan_feature_12' => 'Display Clients E-Signature on Invoices',
|
'pro_plan_feature_12' => 'Mostrar la signatura electrònica dels clients a les factures',
|
||||||
'pro_plan_feature_13' => "Enable an 'Approve Terms' Checkbox",
|
'pro_plan_feature_13' => "Activeu la casella de selecció "Aprova els termes"",
|
||||||
'pro_plan_feature_14' => 'Reports: Invoices, Expenses, P&L, more',
|
'pro_plan_feature_14' => 'Informes: Factures, Despeses, Comptes de Pèrdues i Més',
|
||||||
'pro_plan_feature_15' => 'Bulk Email Invoices, Quotes, Credits',
|
'pro_plan_feature_15' => 'Factures, pressupostos i crèdits per correu electrònic en massa',
|
||||||
'pro_plan_feature_16' => 'Interlink 10 Companies with 1 Login',
|
'pro_plan_feature_16' => 'Interconnecta 10 empreses amb 1 inici de sessió',
|
||||||
'pro_plan_feature_17' => 'Create Unique "Client Group" Settings',
|
'pro_plan_feature_17' => 'Crear configuracions úniques de "Grup de clients"',
|
||||||
'pro_plan_feature_18' => 'Auto Sales Tax Calculation (US States)',
|
'pro_plan_feature_18' => 'Càlcul de l'impost sobre les vendes d'automòbils (estats dels EUA)',
|
||||||
'enterprise_plan_feature_1' => 'Create Additional Account Users (up to 50!) & Set Permissions per User',
|
'enterprise_plan_feature_1' => 'Crea usuaris de compte addicionals (fins a 50!) i estableix permisos per usuari',
|
||||||
'enterprise_plan_feature_2' => 'Attach Files to Emails & Client-Portal (pdf, jpg, ppt, xls, doc & more)',
|
'enterprise_plan_feature_2' => 'Adjuntar fitxers a correus electrònics i al portal de clients (pdf, jpg, ppt, xls, doc i més)',
|
||||||
'enterprise_plan_feature_3' => 'Fully Branded Client Portal: "Billing.YourCompany.com"',
|
'enterprise_plan_feature_3' => 'Portal de client totalment personalitzat: "Facturació.LaTevaEmpresa.com"',
|
||||||
'enterprise_plan_feature_4' => 'Integrate Your Financial Accounts and Sync Banking Transactions via Yodlee or Nordigen Banking Platforms',
|
'enterprise_plan_feature_4' => 'Integra els teus comptes financers i sincronitza les transaccions bancàries a través de les plataformes bancàries Yodlee o Nordigen',
|
||||||
'premium_business_plus_feature_1' => 'Developer Concierge',
|
'premium_business_plus_feature_1' => 'Conserge de desenvolupadors',
|
||||||
'premium_business_plus_feature_2' => 'Direct Priority Support',
|
'premium_business_plus_feature_2' => 'Suport prioritari directe',
|
||||||
'premium_business_plus_feature_3' => 'Invoice Design Service',
|
'premium_business_plus_feature_3' => 'Servei de disseny de factures',
|
||||||
'premium_business_plus_feature_4' => 'Feature Request Priority',
|
'premium_business_plus_feature_4' => 'Prioritat de sol·licitud de funció',
|
||||||
'premium_business_plus_feature_5' => 'Data Migration Assist',
|
'premium_business_plus_feature_5' => 'Assistència per a la migració de dades',
|
||||||
'premium_business_plus_feature_6' => 'Build Custom Reports',
|
'premium_business_plus_feature_6' => 'Crea informes personalitzats',
|
||||||
'upgrade_popup_headline' => 'More than invoicing',
|
'upgrade_popup_headline' => 'Més que facturació',
|
||||||
'upgrade_popup_description' => 'Simple Pricing. Advanced Features.',
|
'upgrade_popup_description' => 'Preus senzills. Funcions avançades.',
|
||||||
'upgrade_popup_pro_headline' => 'Pay year for 10 months + 2 free!',
|
'upgrade_popup_pro_headline' => 'Paga 10 mesos anuals + 2 de franc!',
|
||||||
'upgrade_popup_enterprise_headline' => 'Pay year for 10 months + 2 free!',
|
'upgrade_popup_enterprise_headline' => 'Paga 10 mesos anuals + 2 de franc!',
|
||||||
'upgrade_popup_premium_business_plus_headline' => 'Pro + Enterprise + Premium Business Concierge',
|
'upgrade_popup_premium_business_plus_headline' => 'Conserge de negocis Pro + Enterprise + Premium',
|
||||||
'all_free_features_plus' => 'All free features +',
|
'all_free_features_plus' => 'Totes les funcions gratuïtes +',
|
||||||
'all_pro_features_plus' => 'All pro features +',
|
'all_pro_features_plus' => 'Totes les funcions professionals +',
|
||||||
'all_features_plus' => 'All features +',
|
'all_features_plus' => 'Totes les funcions +',
|
||||||
'upgrade_plan' => 'Upgrade Plan',
|
'upgrade_plan' => 'Pla d'actualització',
|
||||||
'upgrade_popup_premium_business_plus_pricing' => 'Pricing? Let\'s talk!',
|
'upgrade_popup_premium_business_plus_pricing' => 'Preus? Parlem-ne!',
|
||||||
'plan_selected' => 'Plan Selected',
|
'plan_selected' => 'Pla seleccionat',
|
||||||
'invalid_date_create_syntax' => 'Invalid date syntax',
|
'invalid_date_create_syntax' => 'Sintaxi de data no vàlida',
|
||||||
'start_and_end_date_required' => 'Start and end date are required',
|
'start_and_end_date_required' => 'Cal tenir en compte la data d'inici i de finalització.',
|
||||||
'project_value' => 'Project Value',
|
'project_value' => 'Valor del projecte',
|
||||||
'invalid_csv_data' => 'Invalid CSV data, your import was cancelled.',
|
'invalid_csv_data' => 'Dades CSV no vàlides, la importació s'ha cancel·lat.',
|
||||||
|
'selected_products' => 'Productes seleccionats',
|
||||||
|
'create_company_error_unauthorized' => 'No esteu autoritzat a crear una empresa. Només el titular del compte pot crear una empresa.',
|
||||||
|
'deleted_location' => 'Ubicació suprimida',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
||||||
|
|
|
||||||
|
|
@ -2379,7 +2379,7 @@ $lang = array(
|
||||||
'contact_custom2' => 'Segundo Contacto Personalizado',
|
'contact_custom2' => 'Segundo Contacto Personalizado',
|
||||||
'currency' => 'Moneda',
|
'currency' => 'Moneda',
|
||||||
'ofx_help' => 'Para solucionar problemas busca comentarios en :ofxhome_link y prueba con :ofxget_link.',
|
'ofx_help' => 'Para solucionar problemas busca comentarios en :ofxhome_link y prueba con :ofxget_link.',
|
||||||
'comments' => 'Comments',
|
'comments' => 'Comentarios',
|
||||||
|
|
||||||
'item_product' => 'Producto del Concepto',
|
'item_product' => 'Producto del Concepto',
|
||||||
'item_notes' => 'Notas del concepto',
|
'item_notes' => 'Notas del concepto',
|
||||||
|
|
@ -2886,7 +2886,7 @@ $lang = array(
|
||||||
'reopened' => 'Reabierto',
|
'reopened' => 'Reabierto',
|
||||||
'priority' => 'Prioridad',
|
'priority' => 'Prioridad',
|
||||||
'last_updated' => 'Última actualización',
|
'last_updated' => 'Última actualización',
|
||||||
'comment' => 'Comment',
|
'comment' => 'Comentario',
|
||||||
'tags' => 'Etiquetas',
|
'tags' => 'Etiquetas',
|
||||||
'linked_objects' => 'Objetos vinculados',
|
'linked_objects' => 'Objetos vinculados',
|
||||||
'low' => 'Bajo',
|
'low' => 'Bajo',
|
||||||
|
|
@ -5506,70 +5506,73 @@ $lang = array(
|
||||||
'unlock_invoice_documents_after_payment' => 'Desbloquear documentos después del pago',
|
'unlock_invoice_documents_after_payment' => 'Desbloquear documentos después del pago',
|
||||||
'unlock_invoice_documents_after_payment_help' => 'Permite al cliente acceder a los documentos de factura cuando se ha pagado una factura.',
|
'unlock_invoice_documents_after_payment_help' => 'Permite al cliente acceder a los documentos de factura cuando se ha pagado una factura.',
|
||||||
'quickbooks' => 'Libros rápidos',
|
'quickbooks' => 'Libros rápidos',
|
||||||
'disable_emails' => 'Disable Emails',
|
'disable_emails' => 'Deshabilitar correos electrónicos',
|
||||||
'disable_emails_error' => 'You are not authorized to send emails',
|
'disable_emails_error' => 'No estás autorizado a enviar correos electrónicos.',
|
||||||
'disable_emails_help' => 'Prevents a user from sending emails from the system',
|
'disable_emails_help' => 'Impide que un usuario envíe correos electrónicos desde el sistema',
|
||||||
'add_location' => 'Add Location',
|
'add_location' => 'Agregar ubicación',
|
||||||
'updated_location' => 'Updated Location',
|
'updated_location' => 'Ubicación actualizada',
|
||||||
'created_location' => 'Created Location',
|
'created_location' => 'Ubicación creada',
|
||||||
'sync_send_time' => 'Sync Send Time',
|
'sync_send_time' => 'Sincronizar hora de envío',
|
||||||
'sync_send_time_help' => 'Update all reminders / recurring invoices to use this new send time',
|
'sync_send_time_help' => 'Actualice todos los recordatorios/facturas recurrentes para utilizar este nuevo horario de envío',
|
||||||
'edit_location' => 'Edit Location',
|
'edit_location' => 'Editar ubicación',
|
||||||
'downgrade' => 'Downgrade',
|
'downgrade' => 'Degradar',
|
||||||
'downgrade_to_free' => 'Downgrade to Free Plan',
|
'downgrade_to_free' => 'Cambiar a plan gratuito',
|
||||||
'downgrade_to_free_description' => 'Downgrade to the free plan, note this will remove all paid features from your account.',
|
'downgrade_to_free_description' => 'Cambie al plan gratuito. Tenga en cuenta que esto eliminará todas las funciones pagas de su cuenta.',
|
||||||
'delete_location' => 'Delete Location',
|
'delete_location' => 'Eliminar ubicación',
|
||||||
'delete_location_confirmation' => 'This will remove the location from the clients record.',
|
'delete_location_confirmation' => 'Esto eliminará la ubicación del registro del cliente.',
|
||||||
'add_card_reminder' => 'You can add a card again at any time.',
|
'add_card_reminder' => 'Puedes volver a agregar una tarjeta en cualquier momento.',
|
||||||
'free_trial_then' => 'Free trial, then',
|
'free_trial_then' => 'Prueba gratuita, luego',
|
||||||
'days_left' => ':days days left',
|
'days_left' => ':day s días restantes',
|
||||||
'days_trial' => ':days day trial',
|
'days_trial' => ':day día de prueba',
|
||||||
'pro_plan_label' => 'Ninja Pro',
|
'pro_plan_label' => 'Ninja Pro',
|
||||||
'enterprise_plan_label' => 'Enterprise',
|
'enterprise_plan_label' => 'Empresa',
|
||||||
'premium_business_plus_label' => 'Premium Business+',
|
'premium_business_plus_label' => 'Premium Business+',
|
||||||
'pro_plan_feature_1' => 'Unlimited Clients & Invoices',
|
'pro_plan_feature_1' => 'Clientes y facturas ilimitados',
|
||||||
'pro_plan_feature_2' => 'Remove "Created by Invoice Ninja"',
|
'pro_plan_feature_2' => 'Eliminar "Creado por Invoice Ninja"',
|
||||||
'pro_plan_feature_3' => 'Email Invoices via Gmail & MSN',
|
'pro_plan_feature_3' => 'Facturas por correo electrónico a través de Gmail y MSN',
|
||||||
'pro_plan_feature_4' => 'Email Invoices via your custom SMTP',
|
'pro_plan_feature_4' => 'Facturas por correo electrónico a través de su SMTP personalizado',
|
||||||
'pro_plan_feature_5' => 'Branded URL: "YourSite".Invoicing.co',
|
'pro_plan_feature_5' => 'URL de marca: "YourSite".Invoicing.co',
|
||||||
'pro_plan_feature_6' => '11 Professional Invoice Templates',
|
'pro_plan_feature_6' => '11 plantillas de facturas profesionales',
|
||||||
'pro_plan_feature_7' => 'Customize Invoice Designs',
|
'pro_plan_feature_7' => 'Personalizar diseños de facturas',
|
||||||
'pro_plan_feature_8' => 'API Integration with 3rd Party Apps',
|
'pro_plan_feature_8' => 'Integración de API con aplicaciones de terceros',
|
||||||
'pro_plan_feature_9' => 'Password Protect Client-Side Portal',
|
'pro_plan_feature_9' => 'Portal del lado del cliente protegido con contraseña',
|
||||||
'pro_plan_feature_10' => 'Set Up Auto-Reminder Emails',
|
'pro_plan_feature_10' => 'Configurar correos electrónicos de recordatorio automático',
|
||||||
'pro_plan_feature_11' => 'Auto-Attached Invoice PDF to Emails',
|
'pro_plan_feature_11' => 'Factura PDF adjunta automáticamente a correos electrónicos',
|
||||||
'pro_plan_feature_12' => 'Display Clients E-Signature on Invoices',
|
'pro_plan_feature_12' => 'Mostrar la firma electrónica de los clientes en las facturas',
|
||||||
'pro_plan_feature_13' => "Enable an 'Approve Terms' Checkbox",
|
'pro_plan_feature_13' => "Habilitar la casilla de verificación 'Aprobar términos'",
|
||||||
'pro_plan_feature_14' => 'Reports: Invoices, Expenses, P&L, more',
|
'pro_plan_feature_14' => 'Informes: Facturas, Gastos, P&L, más',
|
||||||
'pro_plan_feature_15' => 'Bulk Email Invoices, Quotes, Credits',
|
'pro_plan_feature_15' => 'Facturas, cotizaciones y créditos por correo electrónico masivo',
|
||||||
'pro_plan_feature_16' => 'Interlink 10 Companies with 1 Login',
|
'pro_plan_feature_16' => 'Interlink 10 Empresas con 1 Login',
|
||||||
'pro_plan_feature_17' => 'Create Unique "Client Group" Settings',
|
'pro_plan_feature_17' => 'Crear configuraciones únicas de "Grupo de clientes"',
|
||||||
'pro_plan_feature_18' => 'Auto Sales Tax Calculation (US States)',
|
'pro_plan_feature_18' => 'Cálculo del impuesto sobre las ventas de automóviles (estados de EE. UU.)',
|
||||||
'enterprise_plan_feature_1' => 'Create Additional Account Users (up to 50!) & Set Permissions per User',
|
'enterprise_plan_feature_1' => 'Cree usuarios de cuenta adicionales (¡hasta 50!) y establezca permisos por usuario',
|
||||||
'enterprise_plan_feature_2' => 'Attach Files to Emails & Client-Portal (pdf, jpg, ppt, xls, doc & more)',
|
'enterprise_plan_feature_2' => 'Adjuntar archivos a correos electrónicos y al portal del cliente (pdf, jpg, ppt, xls, doc y más)',
|
||||||
'enterprise_plan_feature_3' => 'Fully Branded Client Portal: "Billing.YourCompany.com"',
|
'enterprise_plan_feature_3' => 'Portal de clientes con marca propia: "Billing.YourCompany.com"',
|
||||||
'enterprise_plan_feature_4' => 'Integrate Your Financial Accounts and Sync Banking Transactions via Yodlee or Nordigen Banking Platforms',
|
'enterprise_plan_feature_4' => 'Integre sus cuentas financieras y sincronice transacciones bancarias a través de las plataformas bancarias Yodlee o Nordigen',
|
||||||
'premium_business_plus_feature_1' => 'Developer Concierge',
|
'premium_business_plus_feature_1' => 'Conserje para desarrolladores',
|
||||||
'premium_business_plus_feature_2' => 'Direct Priority Support',
|
'premium_business_plus_feature_2' => 'Apoyo prioritario directo',
|
||||||
'premium_business_plus_feature_3' => 'Invoice Design Service',
|
'premium_business_plus_feature_3' => 'Servicio de diseño de facturas',
|
||||||
'premium_business_plus_feature_4' => 'Feature Request Priority',
|
'premium_business_plus_feature_4' => 'Prioridad de solicitud de funciones',
|
||||||
'premium_business_plus_feature_5' => 'Data Migration Assist',
|
'premium_business_plus_feature_5' => 'Asistencia para la migración de datos',
|
||||||
'premium_business_plus_feature_6' => 'Build Custom Reports',
|
'premium_business_plus_feature_6' => 'Crear informes personalizados',
|
||||||
'upgrade_popup_headline' => 'More than invoicing',
|
'upgrade_popup_headline' => 'Más que facturación',
|
||||||
'upgrade_popup_description' => 'Simple Pricing. Advanced Features.',
|
'upgrade_popup_description' => 'Precios sencillos. Funciones avanzadas.',
|
||||||
'upgrade_popup_pro_headline' => 'Pay year for 10 months + 2 free!',
|
'upgrade_popup_pro_headline' => '¡Paga un año por 10 meses + 2 gratis!',
|
||||||
'upgrade_popup_enterprise_headline' => 'Pay year for 10 months + 2 free!',
|
'upgrade_popup_enterprise_headline' => '¡Paga un año por 10 meses + 2 gratis!',
|
||||||
'upgrade_popup_premium_business_plus_headline' => 'Pro + Enterprise + Premium Business Concierge',
|
'upgrade_popup_premium_business_plus_headline' => 'Conserje empresarial Pro + Enterprise + Premium',
|
||||||
'all_free_features_plus' => 'All free features +',
|
'all_free_features_plus' => 'Todas las funciones gratuitas +',
|
||||||
'all_pro_features_plus' => 'All pro features +',
|
'all_pro_features_plus' => 'Todas las funciones profesionales +',
|
||||||
'all_features_plus' => 'All features +',
|
'all_features_plus' => 'Todas las funciones +',
|
||||||
'upgrade_plan' => 'Upgrade Plan',
|
'upgrade_plan' => 'Plan de actualización',
|
||||||
'upgrade_popup_premium_business_plus_pricing' => 'Pricing? Let\'s talk!',
|
'upgrade_popup_premium_business_plus_pricing' => '¿Precios? ¡Hablemos!',
|
||||||
'plan_selected' => 'Plan Selected',
|
'plan_selected' => 'Plan Seleccionado',
|
||||||
'invalid_date_create_syntax' => 'Invalid date syntax',
|
'invalid_date_create_syntax' => 'Sintaxis de fecha no válida',
|
||||||
'start_and_end_date_required' => 'Start and end date are required',
|
'start_and_end_date_required' => 'Se requieren la fecha de inicio y la fecha de finalización.',
|
||||||
'project_value' => 'Project Value',
|
'project_value' => 'Valor del proyecto',
|
||||||
'invalid_csv_data' => 'Invalid CSV data, your import was cancelled.',
|
'invalid_csv_data' => 'Datos CSV no válidos, su importación fue cancelada.',
|
||||||
|
'selected_products' => 'Productos Seleccionados',
|
||||||
|
'create_company_error_unauthorized' => 'No está autorizado a crear una empresa. Solo el titular de la cuenta puede hacerlo.',
|
||||||
|
'deleted_location' => 'Ubicación eliminada',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
||||||
|
|
|
||||||
|
|
@ -2376,7 +2376,7 @@ Una vez que tenga los montos, vuelva a esta página de métodos de pago y haga c
|
||||||
'contact_custom2' => 'Contacto Segundo personalizado',
|
'contact_custom2' => 'Contacto Segundo personalizado',
|
||||||
'currency' => 'Divisa',
|
'currency' => 'Divisa',
|
||||||
'ofx_help' => 'Para resolver problemas consulta los comentarios en :ofxhome_link y para testear en :ofxget_link.',
|
'ofx_help' => 'Para resolver problemas consulta los comentarios en :ofxhome_link y para testear en :ofxget_link.',
|
||||||
'comments' => 'Comments',
|
'comments' => 'Comentarios',
|
||||||
|
|
||||||
'item_product' => 'Producto del artículo',
|
'item_product' => 'Producto del artículo',
|
||||||
'item_notes' => 'Notas del artículo',
|
'item_notes' => 'Notas del artículo',
|
||||||
|
|
@ -2883,7 +2883,7 @@ Una vez que tenga los montos, vuelva a esta página de métodos de pago y haga c
|
||||||
'reopened' => 'Reabierto',
|
'reopened' => 'Reabierto',
|
||||||
'priority' => 'Prioridad',
|
'priority' => 'Prioridad',
|
||||||
'last_updated' => 'Última Actualización',
|
'last_updated' => 'Última Actualización',
|
||||||
'comment' => 'Comment',
|
'comment' => 'Comentario',
|
||||||
'tags' => 'Etiquetas',
|
'tags' => 'Etiquetas',
|
||||||
'linked_objects' => 'Objetos Linkados',
|
'linked_objects' => 'Objetos Linkados',
|
||||||
'low' => 'Baja',
|
'low' => 'Baja',
|
||||||
|
|
@ -5507,67 +5507,70 @@ De lo contrario, este campo deberá dejarse en blanco.',
|
||||||
'disable_emails' => 'Desactivar Correos Electrónicos.',
|
'disable_emails' => 'Desactivar Correos Electrónicos.',
|
||||||
'disable_emails_error' => 'No estás autorizado para enviar correos electrónicos.',
|
'disable_emails_error' => 'No estás autorizado para enviar correos electrónicos.',
|
||||||
'disable_emails_help' => 'Previene que un usuario envíe correos electrónicos desde el sistema.',
|
'disable_emails_help' => 'Previene que un usuario envíe correos electrónicos desde el sistema.',
|
||||||
'add_location' => 'Add Location',
|
'add_location' => 'Agregar ubicación',
|
||||||
'updated_location' => 'Updated Location',
|
'updated_location' => 'Ubicación actualizada',
|
||||||
'created_location' => 'Created Location',
|
'created_location' => 'Ubicación creada',
|
||||||
'sync_send_time' => 'Sync Send Time',
|
'sync_send_time' => 'Sincronizar hora de envío',
|
||||||
'sync_send_time_help' => 'Update all reminders / recurring invoices to use this new send time',
|
'sync_send_time_help' => 'Actualice todos los recordatorios/facturas recurrentes para utilizar este nuevo horario de envío',
|
||||||
'edit_location' => 'Edit Location',
|
'edit_location' => 'Editar ubicación',
|
||||||
'downgrade' => 'Downgrade',
|
'downgrade' => 'Degradar',
|
||||||
'downgrade_to_free' => 'Downgrade to Free Plan',
|
'downgrade_to_free' => 'Cambiar a plan gratuito',
|
||||||
'downgrade_to_free_description' => 'Downgrade to the free plan, note this will remove all paid features from your account.',
|
'downgrade_to_free_description' => 'Cambie al plan gratuito. Tenga en cuenta que esto eliminará todas las funciones pagas de su cuenta.',
|
||||||
'delete_location' => 'Delete Location',
|
'delete_location' => 'Eliminar ubicación',
|
||||||
'delete_location_confirmation' => 'This will remove the location from the clients record.',
|
'delete_location_confirmation' => 'Esto eliminará la ubicación del registro del cliente.',
|
||||||
'add_card_reminder' => 'You can add a card again at any time.',
|
'add_card_reminder' => 'Puedes volver a agregar una tarjeta en cualquier momento.',
|
||||||
'free_trial_then' => 'Free trial, then',
|
'free_trial_then' => 'Prueba gratuita, luego',
|
||||||
'days_left' => ':days days left',
|
'days_left' => ':day s días restantes',
|
||||||
'days_trial' => ':days day trial',
|
'days_trial' => ':day día de prueba',
|
||||||
'pro_plan_label' => 'Ninja Pro',
|
'pro_plan_label' => 'Ninja Pro',
|
||||||
'enterprise_plan_label' => 'Enterprise',
|
'enterprise_plan_label' => 'Empresa',
|
||||||
'premium_business_plus_label' => 'Premium Business+',
|
'premium_business_plus_label' => 'Premium Business+',
|
||||||
'pro_plan_feature_1' => 'Unlimited Clients & Invoices',
|
'pro_plan_feature_1' => 'Clientes y facturas ilimitados',
|
||||||
'pro_plan_feature_2' => 'Remove "Created by Invoice Ninja"',
|
'pro_plan_feature_2' => 'Eliminar "Creado por Invoice Ninja"',
|
||||||
'pro_plan_feature_3' => 'Email Invoices via Gmail & MSN',
|
'pro_plan_feature_3' => 'Facturas por correo electrónico a través de Gmail y MSN',
|
||||||
'pro_plan_feature_4' => 'Email Invoices via your custom SMTP',
|
'pro_plan_feature_4' => 'Facturas por correo electrónico a través de su SMTP personalizado',
|
||||||
'pro_plan_feature_5' => 'Branded URL: "YourSite".Invoicing.co',
|
'pro_plan_feature_5' => 'URL de marca: "YourSite".Invoicing.co',
|
||||||
'pro_plan_feature_6' => '11 Professional Invoice Templates',
|
'pro_plan_feature_6' => '11 plantillas de facturas profesionales',
|
||||||
'pro_plan_feature_7' => 'Customize Invoice Designs',
|
'pro_plan_feature_7' => 'Personalizar diseños de facturas',
|
||||||
'pro_plan_feature_8' => 'API Integration with 3rd Party Apps',
|
'pro_plan_feature_8' => 'Integración de API con aplicaciones de terceros',
|
||||||
'pro_plan_feature_9' => 'Password Protect Client-Side Portal',
|
'pro_plan_feature_9' => 'Portal del lado del cliente protegido con contraseña',
|
||||||
'pro_plan_feature_10' => 'Set Up Auto-Reminder Emails',
|
'pro_plan_feature_10' => 'Configurar correos electrónicos de recordatorio automático',
|
||||||
'pro_plan_feature_11' => 'Auto-Attached Invoice PDF to Emails',
|
'pro_plan_feature_11' => 'Factura PDF adjunta automáticamente a correos electrónicos',
|
||||||
'pro_plan_feature_12' => 'Display Clients E-Signature on Invoices',
|
'pro_plan_feature_12' => 'Mostrar la firma electrónica de los clientes en las facturas',
|
||||||
'pro_plan_feature_13' => "Enable an 'Approve Terms' Checkbox",
|
'pro_plan_feature_13' => "Habilitar la casilla de verificación 'Aprobar términos'",
|
||||||
'pro_plan_feature_14' => 'Reports: Invoices, Expenses, P&L, more',
|
'pro_plan_feature_14' => 'Informes: Facturas, Gastos, P&L, más',
|
||||||
'pro_plan_feature_15' => 'Bulk Email Invoices, Quotes, Credits',
|
'pro_plan_feature_15' => 'Facturas, cotizaciones y créditos por correo electrónico masivo',
|
||||||
'pro_plan_feature_16' => 'Interlink 10 Companies with 1 Login',
|
'pro_plan_feature_16' => 'Interlink 10 Empresas con 1 Login',
|
||||||
'pro_plan_feature_17' => 'Create Unique "Client Group" Settings',
|
'pro_plan_feature_17' => 'Crear configuraciones únicas de "Grupo de clientes"',
|
||||||
'pro_plan_feature_18' => 'Auto Sales Tax Calculation (US States)',
|
'pro_plan_feature_18' => 'Cálculo del impuesto sobre las ventas de automóviles (estados de EE. UU.)',
|
||||||
'enterprise_plan_feature_1' => 'Create Additional Account Users (up to 50!) & Set Permissions per User',
|
'enterprise_plan_feature_1' => 'Cree usuarios de cuenta adicionales (¡hasta 50!) y establezca permisos por usuario',
|
||||||
'enterprise_plan_feature_2' => 'Attach Files to Emails & Client-Portal (pdf, jpg, ppt, xls, doc & more)',
|
'enterprise_plan_feature_2' => 'Adjuntar archivos a correos electrónicos y al portal del cliente (pdf, jpg, ppt, xls, doc y más)',
|
||||||
'enterprise_plan_feature_3' => 'Fully Branded Client Portal: "Billing.YourCompany.com"',
|
'enterprise_plan_feature_3' => 'Portal de clientes con marca propia: "Billing.YourCompany.com"',
|
||||||
'enterprise_plan_feature_4' => 'Integrate Your Financial Accounts and Sync Banking Transactions via Yodlee or Nordigen Banking Platforms',
|
'enterprise_plan_feature_4' => 'Integre sus cuentas financieras y sincronice transacciones bancarias a través de las plataformas bancarias Yodlee o Nordigen',
|
||||||
'premium_business_plus_feature_1' => 'Developer Concierge',
|
'premium_business_plus_feature_1' => 'Conserje para desarrolladores',
|
||||||
'premium_business_plus_feature_2' => 'Direct Priority Support',
|
'premium_business_plus_feature_2' => 'Apoyo prioritario directo',
|
||||||
'premium_business_plus_feature_3' => 'Invoice Design Service',
|
'premium_business_plus_feature_3' => 'Servicio de diseño de facturas',
|
||||||
'premium_business_plus_feature_4' => 'Feature Request Priority',
|
'premium_business_plus_feature_4' => 'Prioridad de solicitud de funciones',
|
||||||
'premium_business_plus_feature_5' => 'Data Migration Assist',
|
'premium_business_plus_feature_5' => 'Asistencia para la migración de datos',
|
||||||
'premium_business_plus_feature_6' => 'Build Custom Reports',
|
'premium_business_plus_feature_6' => 'Crear informes personalizados',
|
||||||
'upgrade_popup_headline' => 'More than invoicing',
|
'upgrade_popup_headline' => 'Más que facturación',
|
||||||
'upgrade_popup_description' => 'Simple Pricing. Advanced Features.',
|
'upgrade_popup_description' => 'Precios sencillos. Funciones avanzadas.',
|
||||||
'upgrade_popup_pro_headline' => 'Pay year for 10 months + 2 free!',
|
'upgrade_popup_pro_headline' => '¡Paga un año por 10 meses + 2 gratis!',
|
||||||
'upgrade_popup_enterprise_headline' => 'Pay year for 10 months + 2 free!',
|
'upgrade_popup_enterprise_headline' => '¡Paga un año por 10 meses + 2 gratis!',
|
||||||
'upgrade_popup_premium_business_plus_headline' => 'Pro + Enterprise + Premium Business Concierge',
|
'upgrade_popup_premium_business_plus_headline' => 'Conserje empresarial Pro + Enterprise + Premium',
|
||||||
'all_free_features_plus' => 'All free features +',
|
'all_free_features_plus' => 'Todas las funciones gratuitas +',
|
||||||
'all_pro_features_plus' => 'All pro features +',
|
'all_pro_features_plus' => 'Todas las funciones profesionales +',
|
||||||
'all_features_plus' => 'All features +',
|
'all_features_plus' => 'Todas las funciones +',
|
||||||
'upgrade_plan' => 'Upgrade Plan',
|
'upgrade_plan' => 'Plan de actualización',
|
||||||
'upgrade_popup_premium_business_plus_pricing' => 'Pricing? Let\'s talk!',
|
'upgrade_popup_premium_business_plus_pricing' => '¿Precios? ¡Hablemos!',
|
||||||
'plan_selected' => 'Plan Selected',
|
'plan_selected' => 'Plan Seleccionado',
|
||||||
'invalid_date_create_syntax' => 'Invalid date syntax',
|
'invalid_date_create_syntax' => 'Sintaxis de fecha no válida',
|
||||||
'start_and_end_date_required' => 'Start and end date are required',
|
'start_and_end_date_required' => 'Se requieren la fecha de inicio y la fecha de finalización.',
|
||||||
'project_value' => 'Project Value',
|
'project_value' => 'Valor del proyecto',
|
||||||
'invalid_csv_data' => 'Invalid CSV data, your import was cancelled.',
|
'invalid_csv_data' => 'Datos CSV no válidos, su importación fue cancelada.',
|
||||||
|
'selected_products' => 'Productos Seleccionados',
|
||||||
|
'create_company_error_unauthorized' => 'No está autorizado a crear una empresa. Solo el titular de la cuenta puede hacerlo.',
|
||||||
|
'deleted_location' => 'Ubicación eliminada',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
||||||
|
|
|
||||||
|
|
@ -2380,7 +2380,7 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
||||||
'contact_custom2' => 'Second champ de contact personnalisé',
|
'contact_custom2' => 'Second champ de contact personnalisé',
|
||||||
'currency' => 'Devise',
|
'currency' => 'Devise',
|
||||||
'ofx_help' => 'Pour résoudre un problème, consultez les commentaires sur :ofxhome_link et testez avec :ofxget_link.',
|
'ofx_help' => 'Pour résoudre un problème, consultez les commentaires sur :ofxhome_link et testez avec :ofxget_link.',
|
||||||
'comments' => 'Comments',
|
'comments' => 'Commentaires',
|
||||||
|
|
||||||
'item_product' => 'Produit de l\'article',
|
'item_product' => 'Produit de l\'article',
|
||||||
'item_notes' => 'Notes de l\'article',
|
'item_notes' => 'Notes de l\'article',
|
||||||
|
|
@ -2887,7 +2887,7 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
||||||
'reopened' => 'Ré-ouvrir',
|
'reopened' => 'Ré-ouvrir',
|
||||||
'priority' => 'Prioritée',
|
'priority' => 'Prioritée',
|
||||||
'last_updated' => 'Dernière mise à jour',
|
'last_updated' => 'Dernière mise à jour',
|
||||||
'comment' => 'Comment',
|
'comment' => 'Commentaire',
|
||||||
'tags' => 'Tags',
|
'tags' => 'Tags',
|
||||||
'linked_objects' => 'Objets liés',
|
'linked_objects' => 'Objets liés',
|
||||||
'low' => 'Faible',
|
'low' => 'Faible',
|
||||||
|
|
@ -5507,70 +5507,73 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
||||||
'unlock_invoice_documents_after_payment' => 'Débloquer les documents après le paiement',
|
'unlock_invoice_documents_after_payment' => 'Débloquer les documents après le paiement',
|
||||||
'unlock_invoice_documents_after_payment_help' => 'Permet au client d\'accéder aux documents de facturation lorsqu\'une facture a été payée',
|
'unlock_invoice_documents_after_payment_help' => 'Permet au client d\'accéder aux documents de facturation lorsqu\'une facture a été payée',
|
||||||
'quickbooks' => 'Quickbooks',
|
'quickbooks' => 'Quickbooks',
|
||||||
'disable_emails' => 'Disable Emails',
|
'disable_emails' => 'Désactiver les e-mails',
|
||||||
'disable_emails_error' => 'You are not authorized to send emails',
|
'disable_emails_error' => 'Vous n'êtes pas autorisé à envoyer des e-mails',
|
||||||
'disable_emails_help' => 'Prevents a user from sending emails from the system',
|
'disable_emails_help' => 'Empêche un utilisateur d'envoyer des e-mails depuis le système',
|
||||||
'add_location' => 'Add Location',
|
'add_location' => 'Ajouter un emplacement',
|
||||||
'updated_location' => 'Updated Location',
|
'updated_location' => 'Emplacement mis à jour',
|
||||||
'created_location' => 'Created Location',
|
'created_location' => 'Emplacement créé',
|
||||||
'sync_send_time' => 'Sync Send Time',
|
'sync_send_time' => 'Synchroniser l'heure d'envoi',
|
||||||
'sync_send_time_help' => 'Update all reminders / recurring invoices to use this new send time',
|
'sync_send_time_help' => 'Mettre à jour tous les rappels/factures récurrentes pour utiliser cette nouvelle heure d'envoi',
|
||||||
'edit_location' => 'Edit Location',
|
'edit_location' => 'Modifier l'emplacement',
|
||||||
'downgrade' => 'Downgrade',
|
'downgrade' => 'Rétrograder',
|
||||||
'downgrade_to_free' => 'Downgrade to Free Plan',
|
'downgrade_to_free' => 'Rétrograder vers le plan gratuit',
|
||||||
'downgrade_to_free_description' => 'Downgrade to the free plan, note this will remove all paid features from your account.',
|
'downgrade_to_free_description' => 'Rétrogradez vers le plan gratuit, notez que cela supprimera toutes les fonctionnalités payantes de votre compte.',
|
||||||
'delete_location' => 'Delete Location',
|
'delete_location' => 'Supprimer l'emplacement',
|
||||||
'delete_location_confirmation' => 'This will remove the location from the clients record.',
|
'delete_location_confirmation' => 'Cela supprimera l'emplacement de l'enregistrement du client.',
|
||||||
'add_card_reminder' => 'You can add a card again at any time.',
|
'add_card_reminder' => 'Vous pouvez ajouter à nouveau une carte à tout moment.',
|
||||||
'free_trial_then' => 'Free trial, then',
|
'free_trial_then' => 'Essai gratuit, alors',
|
||||||
'days_left' => ':days days left',
|
'days_left' => ':day s jours restants',
|
||||||
'days_trial' => ':days day trial',
|
'days_trial' => ':day essai d'une journée',
|
||||||
'pro_plan_label' => 'Ninja Pro',
|
'pro_plan_label' => 'Ninja Pro',
|
||||||
'enterprise_plan_label' => 'Enterprise',
|
'enterprise_plan_label' => 'Entreprise',
|
||||||
'premium_business_plus_label' => 'Premium Business+',
|
'premium_business_plus_label' => 'Premium Business+',
|
||||||
'pro_plan_feature_1' => 'Unlimited Clients & Invoices',
|
'pro_plan_feature_1' => 'Clients et factures illimités',
|
||||||
'pro_plan_feature_2' => 'Remove "Created by Invoice Ninja"',
|
'pro_plan_feature_2' => 'Supprimer « Créé par Invoice Ninja »',
|
||||||
'pro_plan_feature_3' => 'Email Invoices via Gmail & MSN',
|
'pro_plan_feature_3' => 'Factures par e-mail via Gmail et MSN',
|
||||||
'pro_plan_feature_4' => 'Email Invoices via your custom SMTP',
|
'pro_plan_feature_4' => 'Envoyez vos factures par e-mail via votre SMTP personnalisé',
|
||||||
'pro_plan_feature_5' => 'Branded URL: "YourSite".Invoicing.co',
|
'pro_plan_feature_5' => 'URL de marque : « VotreSite ».Invoicing.co',
|
||||||
'pro_plan_feature_6' => '11 Professional Invoice Templates',
|
'pro_plan_feature_6' => '11 modèles de factures professionnels',
|
||||||
'pro_plan_feature_7' => 'Customize Invoice Designs',
|
'pro_plan_feature_7' => 'Personnaliser les modèles de factures',
|
||||||
'pro_plan_feature_8' => 'API Integration with 3rd Party Apps',
|
'pro_plan_feature_8' => 'Intégration d'API avec des applications tierces',
|
||||||
'pro_plan_feature_9' => 'Password Protect Client-Side Portal',
|
'pro_plan_feature_9' => 'Portail côté client protégé par mot de passe',
|
||||||
'pro_plan_feature_10' => 'Set Up Auto-Reminder Emails',
|
'pro_plan_feature_10' => 'Configurer des e-mails de rappel automatique',
|
||||||
'pro_plan_feature_11' => 'Auto-Attached Invoice PDF to Emails',
|
'pro_plan_feature_11' => 'Facture PDF automatiquement jointe aux e-mails',
|
||||||
'pro_plan_feature_12' => 'Display Clients E-Signature on Invoices',
|
'pro_plan_feature_12' => 'Afficher la signature électronique des clients sur les factures',
|
||||||
'pro_plan_feature_13' => "Enable an 'Approve Terms' Checkbox",
|
'pro_plan_feature_13' => "Cochez la case « Approuver les conditions »",
|
||||||
'pro_plan_feature_14' => 'Reports: Invoices, Expenses, P&L, more',
|
'pro_plan_feature_14' => 'Rapports : factures, dépenses, P&L, etc.',
|
||||||
'pro_plan_feature_15' => 'Bulk Email Invoices, Quotes, Credits',
|
'pro_plan_feature_15' => 'Factures, devis et crédits par e-mail en masse',
|
||||||
'pro_plan_feature_16' => 'Interlink 10 Companies with 1 Login',
|
'pro_plan_feature_16' => 'Interlink 10 entreprises avec 1 identifiant',
|
||||||
'pro_plan_feature_17' => 'Create Unique "Client Group" Settings',
|
'pro_plan_feature_17' => 'Créer des paramètres uniques pour le « Groupe de clients »',
|
||||||
'pro_plan_feature_18' => 'Auto Sales Tax Calculation (US States)',
|
'pro_plan_feature_18' => 'Calcul de la taxe de vente automobile (États américains)',
|
||||||
'enterprise_plan_feature_1' => 'Create Additional Account Users (up to 50!) & Set Permissions per User',
|
'enterprise_plan_feature_1' => 'Créez des utilisateurs de compte supplémentaires (jusqu'à 50 !) et définissez les autorisations par utilisateur',
|
||||||
'enterprise_plan_feature_2' => 'Attach Files to Emails & Client-Portal (pdf, jpg, ppt, xls, doc & more)',
|
'enterprise_plan_feature_2' => 'Joindre des fichiers aux e-mails et au portail client (pdf, jpg, ppt, xls, doc et plus)',
|
||||||
'enterprise_plan_feature_3' => 'Fully Branded Client Portal: "Billing.YourCompany.com"',
|
'enterprise_plan_feature_3' => 'Portail client entièrement personnalisé : « Billing.YourCompany.com »',
|
||||||
'enterprise_plan_feature_4' => 'Integrate Your Financial Accounts and Sync Banking Transactions via Yodlee or Nordigen Banking Platforms',
|
'enterprise_plan_feature_4' => 'Intégrez vos comptes financiers et synchronisez vos transactions bancaires via les plateformes bancaires Yodlee ou Nordigen',
|
||||||
'premium_business_plus_feature_1' => 'Developer Concierge',
|
'premium_business_plus_feature_1' => 'Concierge du développeur',
|
||||||
'premium_business_plus_feature_2' => 'Direct Priority Support',
|
'premium_business_plus_feature_2' => 'Assistance prioritaire directe',
|
||||||
'premium_business_plus_feature_3' => 'Invoice Design Service',
|
'premium_business_plus_feature_3' => 'Service de conception de factures',
|
||||||
'premium_business_plus_feature_4' => 'Feature Request Priority',
|
'premium_business_plus_feature_4' => 'Priorité des demandes de fonctionnalités',
|
||||||
'premium_business_plus_feature_5' => 'Data Migration Assist',
|
'premium_business_plus_feature_5' => 'Assistance à la migration des données',
|
||||||
'premium_business_plus_feature_6' => 'Build Custom Reports',
|
'premium_business_plus_feature_6' => 'Créer des rapports personnalisés',
|
||||||
'upgrade_popup_headline' => 'More than invoicing',
|
'upgrade_popup_headline' => 'Plus que de la facturation',
|
||||||
'upgrade_popup_description' => 'Simple Pricing. Advanced Features.',
|
'upgrade_popup_description' => 'Tarification simple. Fonctionnalités avancées.',
|
||||||
'upgrade_popup_pro_headline' => 'Pay year for 10 months + 2 free!',
|
'upgrade_popup_pro_headline' => 'Payez 10 mois par an + 2 gratuits !',
|
||||||
'upgrade_popup_enterprise_headline' => 'Pay year for 10 months + 2 free!',
|
'upgrade_popup_enterprise_headline' => 'Payez 10 mois par an + 2 gratuits !',
|
||||||
'upgrade_popup_premium_business_plus_headline' => 'Pro + Enterprise + Premium Business Concierge',
|
'upgrade_popup_premium_business_plus_headline' => 'Concierge d'affaires Pro + Entreprise + Premium',
|
||||||
'all_free_features_plus' => 'All free features +',
|
'all_free_features_plus' => 'Toutes les fonctionnalités gratuites +',
|
||||||
'all_pro_features_plus' => 'All pro features +',
|
'all_pro_features_plus' => 'Toutes les fonctionnalités pro +',
|
||||||
'all_features_plus' => 'All features +',
|
'all_features_plus' => 'Toutes les fonctionnalités +',
|
||||||
'upgrade_plan' => 'Upgrade Plan',
|
'upgrade_plan' => 'Plan de mise à niveau',
|
||||||
'upgrade_popup_premium_business_plus_pricing' => 'Pricing? Let\'s talk!',
|
'upgrade_popup_premium_business_plus_pricing' => 'Tarifs ? Discutons-en !',
|
||||||
'plan_selected' => 'Plan Selected',
|
'plan_selected' => 'Plan sélectionné',
|
||||||
'invalid_date_create_syntax' => 'Invalid date syntax',
|
'invalid_date_create_syntax' => 'Syntaxe de date non valide',
|
||||||
'start_and_end_date_required' => 'Start and end date are required',
|
'start_and_end_date_required' => 'Les dates de début et de fin sont obligatoires',
|
||||||
'project_value' => 'Project Value',
|
'project_value' => 'Valeur du projet',
|
||||||
'invalid_csv_data' => 'Invalid CSV data, your import was cancelled.',
|
'invalid_csv_data' => 'Données CSV non valides, votre importation a été annulée.',
|
||||||
|
'selected_products' => 'Produits sélectionnés',
|
||||||
|
'create_company_error_unauthorized' => 'Vous n'êtes pas autorisé à créer une entreprise. Seul le titulaire du compte peut en créer une.',
|
||||||
|
'deleted_location' => 'Emplacement supprimé',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue