mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
Add option to attach ubl/einvoice to emails
This commit is contained in:
parent
6855be8b34
commit
42a68979b6
@ -158,7 +158,7 @@ class TemplateEmail extends Mailable
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($this->invitation->invoice && $settings->ubl_email_attachment && $this->company->account->hasFeature(Account::FEATURE_PDF_ATTACHMENT)) {
|
if ($this->invitation->invoice && $settings->ubl_email_attachment && !$this->invitation->invoice->client->getSetting('enable_e_invoice') && $this->company->account->hasFeature(Account::FEATURE_PDF_ATTACHMENT)) {
|
||||||
$ubl_string = (new CreateUbl($this->invitation->invoice))->handle();
|
$ubl_string = (new CreateUbl($this->invitation->invoice))->handle();
|
||||||
|
|
||||||
if ($ubl_string) {
|
if ($ubl_string) {
|
||||||
@ -168,7 +168,7 @@ class TemplateEmail extends Mailable
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($this->invitation->invoice) {
|
if ($this->invitation->invoice) {
|
||||||
if ($this->invitation->invoice->client->getSetting('enable_e_invoice') && $this->company->account->hasFeature(Account::FEATURE_PDF_ATTACHMENT)) {
|
if ($this->invitation->invoice->client->getSetting('enable_e_invoice') && $this->invitation->invoice->client->getSetting('ubl_email_attachment') && $this->company->account->hasFeature(Account::FEATURE_PDF_ATTACHMENT)) {
|
||||||
$xml_string = $this->invitation->invoice->service()->getEInvoice($this->invitation->contact);
|
$xml_string = $this->invitation->invoice->service()->getEInvoice($this->invitation->contact);
|
||||||
|
|
||||||
if ($xml_string) {
|
if ($xml_string) {
|
||||||
@ -177,7 +177,7 @@ class TemplateEmail extends Mailable
|
|||||||
|
|
||||||
}
|
}
|
||||||
} elseif ($this->invitation->credit) {
|
} elseif ($this->invitation->credit) {
|
||||||
if ($this->invitation->credit->client->getSetting('enable_e_invoice') && $this->company->account->hasFeature(Account::FEATURE_PDF_ATTACHMENT)) {
|
if ($this->invitation->credit->client->getSetting('enable_e_invoice') && $this->invitation->invoice->client->getSetting('ubl_email_attachment') && $this->company->account->hasFeature(Account::FEATURE_PDF_ATTACHMENT)) {
|
||||||
$xml_string = $this->invitation->credit->service()->getECredit($this->invitation->contact);
|
$xml_string = $this->invitation->credit->service()->getECredit($this->invitation->contact);
|
||||||
|
|
||||||
if ($xml_string) {
|
if ($xml_string) {
|
||||||
@ -186,7 +186,7 @@ class TemplateEmail extends Mailable
|
|||||||
|
|
||||||
}
|
}
|
||||||
} elseif ($this->invitation->quote) {
|
} elseif ($this->invitation->quote) {
|
||||||
if ($this->invitation->quote->client->getSetting('enable_e_invoice') && $this->company->account->hasFeature(Account::FEATURE_PDF_ATTACHMENT)) {
|
if ($this->invitation->quote->client->getSetting('enable_e_invoice') && $this->invitation->invoice->client->getSetting('ubl_email_attachment') && $this->company->account->hasFeature(Account::FEATURE_PDF_ATTACHMENT)) {
|
||||||
$xml_string = $this->invitation->quote->service()->getEQuote($this->invitation->contact);
|
$xml_string = $this->invitation->quote->service()->getEQuote($this->invitation->contact);
|
||||||
|
|
||||||
if ($xml_string) {
|
if ($xml_string) {
|
||||||
@ -195,7 +195,7 @@ class TemplateEmail extends Mailable
|
|||||||
|
|
||||||
}
|
}
|
||||||
} elseif ($this->invitation->purchase_order) {
|
} elseif ($this->invitation->purchase_order) {
|
||||||
if ($this->invitation->purchase_order->vendor->getSetting('enable_e_invoice') && $this->company->account->hasFeature(Account::FEATURE_PDF_ATTACHMENT)) {
|
if ($this->invitation->purchase_order->vendor->getSetting('enable_e_invoice') && $this->invitation->invoice->client->getSetting('ubl_email_attachment') && $this->company->account->hasFeature(Account::FEATURE_PDF_ATTACHMENT)) {
|
||||||
$xml_string = $this->invitation->purchase_order->service()->getEPurchaseOrder($this->invitation->contact);
|
$xml_string = $this->invitation->purchase_order->service()->getEPurchaseOrder($this->invitation->contact);
|
||||||
|
|
||||||
if ($xml_string) {
|
if ($xml_string) {
|
||||||
|
@ -318,7 +318,7 @@ class EmailDefaults
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** UBL xml file */
|
/** UBL xml file */
|
||||||
if ($this->email->email_object->settings->ubl_email_attachment && $this->email->email_object->entity instanceof Invoice) {
|
if ($this->email->email_object->settings->ubl_email_attachment && !$this->email->email_object->settings->enable_e_invoice && $this->email->email_object->entity instanceof Invoice) {
|
||||||
$ubl_string = (new CreateUbl($this->email->email_object->entity))->handle();
|
$ubl_string = (new CreateUbl($this->email->email_object->entity))->handle();
|
||||||
|
|
||||||
if ($ubl_string) {
|
if ($ubl_string) {
|
||||||
@ -326,14 +326,14 @@ class EmailDefaults
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
/** E-Invoice xml file */
|
/** E-Invoice xml file */
|
||||||
if ($this->email->email_object->settings->enable_e_invoice) {
|
if ($this->email->email_object->settings->enable_e_invoice && $this->email->email_object->settings->enable_e_invoice) {
|
||||||
if ($this->email_object->settings->e_invoice_attachment ?? true){
|
|
||||||
$xml_string = $this->email->email_object->entity->service()->getEDocument();
|
$xml_string = $this->email->email_object->entity->service()->getEDocument();
|
||||||
|
|
||||||
if($xml_string) {
|
if($xml_string) {
|
||||||
$this->email->email_object->attachments = array_merge($this->email->email_object->attachments, [['file' => base64_encode($xml_string), 'name' => explode(".", $this->email->email_object->entity->getFileName('xml'))[0]."-e_invoice.xml"]]);
|
$this->email->email_object->attachments = array_merge($this->email->email_object->attachments, [['file' => base64_encode($xml_string), 'name' => explode(".", $this->email->email_object->entity->getFileName('xml'))[0]."-e_invoice.xml"]]);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$this->email->email_object->settings->document_email_attachment || !$this->email->company->account->hasFeature(Account::FEATURE_DOCUMENTS)) {
|
if (!$this->email->email_object->settings->document_email_attachment || !$this->email->company->account->hasFeature(Account::FEATURE_DOCUMENTS)) {
|
||||||
|
@ -2345,7 +2345,7 @@ $lang = array(
|
|||||||
'currency_gold_troy_ounce' => 'أونصة تروي ذهبية',
|
'currency_gold_troy_ounce' => 'أونصة تروي ذهبية',
|
||||||
'currency_nicaraguan_córdoba' => 'قرطبة نيكاراغوا',
|
'currency_nicaraguan_córdoba' => 'قرطبة نيكاراغوا',
|
||||||
'currency_malagasy_ariary' => 'أرياري مدغشقر',
|
'currency_malagasy_ariary' => 'أرياري مدغشقر',
|
||||||
"currency_tongan_pa_anga" => "تونجا بانجا",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'نأمل أن تستمتع باستخدام التطبيق.<br/> إذا كنت تفكر في :link فإننا نقدر ذلك كثيرًا!',
|
'review_app_help' => 'نأمل أن تستمتع باستخدام التطبيق.<br/> إذا كنت تفكر في :link فإننا نقدر ذلك كثيرًا!',
|
||||||
'writing_a_review' => 'كتابة مراجعة',
|
'writing_a_review' => 'كتابة مراجعة',
|
||||||
@ -2861,19 +2861,6 @@ $lang = array(
|
|||||||
'refunded' => 'معاد',
|
'refunded' => 'معاد',
|
||||||
'marked_quote_as_sent' => 'نجح وضع علامة على الاقتباس على أنه تم الإرسال',
|
'marked_quote_as_sent' => 'نجح وضع علامة على الاقتباس على أنه تم الإرسال',
|
||||||
'custom_module_settings' => 'إعدادات الوحدة النمطية المخصصة',
|
'custom_module_settings' => 'إعدادات الوحدة النمطية المخصصة',
|
||||||
'ticket' => 'تذكرة',
|
|
||||||
'tickets' => 'تذاكر',
|
|
||||||
'ticket_number' => 'تذكرة #',
|
|
||||||
'new_ticket' => 'تذكرة جديدة',
|
|
||||||
'edit_ticket' => 'تحرير التذكرة',
|
|
||||||
'view_ticket' => 'عرض التذكرة',
|
|
||||||
'archive_ticket' => 'أرشفة التذكرة',
|
|
||||||
'restore_ticket' => 'استعادة التذكرة',
|
|
||||||
'delete_ticket' => 'حذف التذكرة',
|
|
||||||
'archived_ticket' => 'تمت أرشفة التذكرة بنجاح',
|
|
||||||
'archived_tickets' => 'تم أرشفة التذاكر بنجاح',
|
|
||||||
'restored_ticket' => 'تمت استعادة التذكرة بنجاح',
|
|
||||||
'deleted_ticket' => 'تم حذف التذكرة بنجاح',
|
|
||||||
'open' => 'يفتح',
|
'open' => 'يفتح',
|
||||||
'new' => 'جديد',
|
'new' => 'جديد',
|
||||||
'closed' => 'مغلق',
|
'closed' => 'مغلق',
|
||||||
@ -2890,14 +2877,6 @@ $lang = array(
|
|||||||
'assigned_to' => 'مخصص ل',
|
'assigned_to' => 'مخصص ل',
|
||||||
'reply' => 'رد',
|
'reply' => 'رد',
|
||||||
'awaiting_reply' => 'في انتظار الرد',
|
'awaiting_reply' => 'في انتظار الرد',
|
||||||
'ticket_close' => 'إغلاق التذكرة',
|
|
||||||
'ticket_reopen' => 'إعادة فتح التذكرة',
|
|
||||||
'ticket_open' => 'تذكرة مفتوحة',
|
|
||||||
'ticket_split' => 'تقسيم التذكرة',
|
|
||||||
'ticket_merge' => 'دمج التذكرة',
|
|
||||||
'ticket_update' => 'تحديث التذكرة',
|
|
||||||
'ticket_settings' => 'إعدادات التذكرة',
|
|
||||||
'updated_ticket' => 'تم تحديث التذكرة',
|
|
||||||
'mark_spam' => 'علامة كدعاية',
|
'mark_spam' => 'علامة كدعاية',
|
||||||
'local_part' => 'الجزء المحلي',
|
'local_part' => 'الجزء المحلي',
|
||||||
'local_part_unavailable' => 'الاسم مأخوذ',
|
'local_part_unavailable' => 'الاسم مأخوذ',
|
||||||
@ -2915,31 +2894,23 @@ $lang = array(
|
|||||||
'mime_types' => 'أنواع التمثيل الصامت',
|
'mime_types' => 'أنواع التمثيل الصامت',
|
||||||
'mime_types_placeholder' => '.pdf ، .docx ، .jpg',
|
'mime_types_placeholder' => '.pdf ، .docx ، .jpg',
|
||||||
'mime_types_help' => 'قائمة مفصولة بفواصل لأنواع التمثيل الصامت المسموح بها ، اتركها فارغة للجميع',
|
'mime_types_help' => 'قائمة مفصولة بفواصل لأنواع التمثيل الصامت المسموح بها ، اتركها فارغة للجميع',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'الأولوية الافتراضية',
|
'default_priority' => 'الأولوية الافتراضية',
|
||||||
'alert_new_comment_id' => 'تعليق جديد',
|
'alert_new_comment_id' => 'تعليق جديد',
|
||||||
'alert_comment_ticket_help' => 'سيؤدي تحديد قالب إلى إرسال إشعار (إلى الوكيل) عند إجراء تعليق.',
|
|
||||||
'alert_comment_ticket_email_help' => 'رسائل بريد إلكتروني مفصولة بفواصل إلى نسخة مخفية الوجهة عند التعليق الجديد.',
|
|
||||||
'new_ticket_notification_list' => 'إخطارات تذكرة جديدة إضافية',
|
|
||||||
'update_ticket_notification_list' => 'إخطارات تعليق إضافية جديدة',
|
'update_ticket_notification_list' => 'إخطارات تعليق إضافية جديدة',
|
||||||
'comma_separated_values' => 'admin@example.com ، supervisor@example.com',
|
'comma_separated_values' => 'admin@example.com ، supervisor@example.com',
|
||||||
'alert_ticket_assign_agent_id' => 'احالة تذكرة',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'سيؤدي تحديد قالب إلى إرسال إشعار (إلى الوكيل) عند تعيين تذكرة.',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'تذكرة إضافية مخصصة الإخطارات',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'رسائل بريد إلكتروني مفصولة بفاصلة إلى نسخة مخفية الوجهة عند تخصيص التذكرة.',
|
|
||||||
'alert_ticket_transfer_email_help' => 'رسائل بريد إلكتروني مفصولة بفواصل إلى نسخة مخفية الوجهة عند تحويل التذكرة.',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'تأخرت التذكرة',
|
|
||||||
'alert_ticket_overdue_email' => 'إشعارات إضافية بشأن التذاكر المتأخرة',
|
|
||||||
'alert_ticket_overdue_email_help' => 'رسائل بريد إلكتروني مفصولة بفاصلة لإرسالها إلى نسخة مخفية الوجهة عند التأخر في تقديم التذكرة.',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'سيؤدي تحديد قالب إلى إرسال إشعار (إلى الوكيل) عندما تصبح التذكرة متأخرة.',
|
|
||||||
'default_agent' => 'الوكيل الافتراضي',
|
'default_agent' => 'الوكيل الافتراضي',
|
||||||
'default_agent_help' => 'إذا تم تحديده فسيتم تخصيصه تلقائيًا لجميع التذاكر الواردة',
|
'default_agent_help' => 'إذا تم تحديده فسيتم تخصيصه تلقائيًا لجميع التذاكر الواردة',
|
||||||
'show_agent_details' => 'إظهار تفاصيل الوكيل في الردود',
|
'show_agent_details' => 'إظهار تفاصيل الوكيل في الردود',
|
||||||
'avatar' => 'الصورة الرمزية',
|
'avatar' => 'الصورة الرمزية',
|
||||||
'remove_avatar' => 'إزالة الصورة الرمزية',
|
'remove_avatar' => 'إزالة الصورة الرمزية',
|
||||||
'ticket_not_found' => 'لم يتم العثور على التذكرة',
|
|
||||||
'add_template' => 'أضف قالبًا',
|
'add_template' => 'أضف قالبًا',
|
||||||
'updated_ticket_template' => 'نموذج تذكرة محدث',
|
|
||||||
'created_ticket_template' => 'تم إنشاء نموذج تذكرة',
|
|
||||||
'archive_ticket_template' => 'قالب الأرشيف',
|
'archive_ticket_template' => 'قالب الأرشيف',
|
||||||
'restore_ticket_template' => 'استعادة النموذج',
|
'restore_ticket_template' => 'استعادة النموذج',
|
||||||
'archived_ticket_template' => 'تمت أرشفة النموذج بنجاح',
|
'archived_ticket_template' => 'تمت أرشفة النموذج بنجاح',
|
||||||
@ -3796,7 +3767,7 @@ $lang = array(
|
|||||||
'entity_number_placeholder' => 'رقم :entity :entity_number',
|
'entity_number_placeholder' => 'رقم :entity :entity_number',
|
||||||
'email_link_not_working' => 'إذا كان الزر أعلاه لا يعمل من أجلك ، فيرجى النقر فوق الارتباط',
|
'email_link_not_working' => 'إذا كان الزر أعلاه لا يعمل من أجلك ، فيرجى النقر فوق الارتباط',
|
||||||
'display_log' => 'عرض السجل',
|
'display_log' => 'عرض السجل',
|
||||||
'send_fail_logs_to_our_server' => 'إرسال الأخطاء مباشرةً',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'الإعداد',
|
'setup' => 'الإعداد',
|
||||||
'quick_overview_statistics' => 'نظرة عامة وإحصاءات سريعة',
|
'quick_overview_statistics' => 'نظرة عامة وإحصاءات سريعة',
|
||||||
'update_your_personal_info' => 'قم بتحديث معلوماتك الشخصية',
|
'update_your_personal_info' => 'قم بتحديث معلوماتك الشخصية',
|
||||||
@ -5284,6 +5255,33 @@ $lang = array(
|
|||||||
'currency_bhutan_ngultrum' => 'بوتان نغولتروم',
|
'currency_bhutan_ngultrum' => 'بوتان نغولتروم',
|
||||||
'end_of_month' => 'نهاية الشهر',
|
'end_of_month' => 'نهاية الشهر',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'نهاية الشهر',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -2364,7 +2364,7 @@ $lang = array(
|
|||||||
'currency_gold_troy_ounce' => 'Unça Troia d'or',
|
'currency_gold_troy_ounce' => 'Unça Troia d'or',
|
||||||
'currency_nicaraguan_córdoba' => 'Còrdova nicaragüenca',
|
'currency_nicaraguan_córdoba' => 'Còrdova nicaragüenca',
|
||||||
'currency_malagasy_ariary' => 'ariary malgaix',
|
'currency_malagasy_ariary' => 'ariary malgaix',
|
||||||
"currency_tongan_pa_anga" => "Pa'anga de Tonga",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'We hope you\'re enjoying using the app.<br/>If you\'d consider :link we\'d greatly appreciate it!',
|
'review_app_help' => 'We hope you\'re enjoying using the app.<br/>If you\'d consider :link we\'d greatly appreciate it!',
|
||||||
'writing_a_review' => 'escriu una ressenya',
|
'writing_a_review' => 'escriu una ressenya',
|
||||||
@ -2880,19 +2880,6 @@ $lang = array(
|
|||||||
'refunded' => 'Refunded',
|
'refunded' => 'Refunded',
|
||||||
'marked_quote_as_sent' => 'Successfully marked quote as sent',
|
'marked_quote_as_sent' => 'Successfully marked quote as sent',
|
||||||
'custom_module_settings' => 'Custom Module Settings',
|
'custom_module_settings' => 'Custom Module Settings',
|
||||||
'ticket' => 'Ticket',
|
|
||||||
'tickets' => 'Tickets',
|
|
||||||
'ticket_number' => 'Ticket #',
|
|
||||||
'new_ticket' => 'New Ticket',
|
|
||||||
'edit_ticket' => 'Edit Ticket',
|
|
||||||
'view_ticket' => 'View Ticket',
|
|
||||||
'archive_ticket' => 'Archive Ticket',
|
|
||||||
'restore_ticket' => 'Restore Ticket',
|
|
||||||
'delete_ticket' => 'Delete Ticket',
|
|
||||||
'archived_ticket' => 'Successfully archived ticket',
|
|
||||||
'archived_tickets' => 'Successfully archived tickets',
|
|
||||||
'restored_ticket' => 'Successfully restored ticket',
|
|
||||||
'deleted_ticket' => 'Successfully deleted ticket',
|
|
||||||
'open' => 'Obre',
|
'open' => 'Obre',
|
||||||
'new' => 'Nou',
|
'new' => 'Nou',
|
||||||
'closed' => 'Tancat',
|
'closed' => 'Tancat',
|
||||||
@ -2909,14 +2896,6 @@ $lang = array(
|
|||||||
'assigned_to' => 'Assignat a',
|
'assigned_to' => 'Assignat a',
|
||||||
'reply' => 'Respon',
|
'reply' => 'Respon',
|
||||||
'awaiting_reply' => 'Awaiting reply',
|
'awaiting_reply' => 'Awaiting reply',
|
||||||
'ticket_close' => 'Close Ticket',
|
|
||||||
'ticket_reopen' => 'Reopen Ticket',
|
|
||||||
'ticket_open' => 'Open Ticket',
|
|
||||||
'ticket_split' => 'Split Ticket',
|
|
||||||
'ticket_merge' => 'Fusiona tiquets',
|
|
||||||
'ticket_update' => 'Actualitza tiquet',
|
|
||||||
'ticket_settings' => 'Ticket Settings',
|
|
||||||
'updated_ticket' => 'Tiquet actualitzat',
|
|
||||||
'mark_spam' => 'Marca com a SPAM',
|
'mark_spam' => 'Marca com a SPAM',
|
||||||
'local_part' => 'Local Part',
|
'local_part' => 'Local Part',
|
||||||
'local_part_unavailable' => 'Name taken',
|
'local_part_unavailable' => 'Name taken',
|
||||||
@ -2934,31 +2913,23 @@ $lang = array(
|
|||||||
'mime_types' => 'Mime types',
|
'mime_types' => 'Mime types',
|
||||||
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
||||||
'mime_types_help' => 'Comma separated list of allowed mime types, leave blank for all',
|
'mime_types_help' => 'Comma separated list of allowed mime types, leave blank for all',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'Default priority',
|
'default_priority' => 'Default priority',
|
||||||
'alert_new_comment_id' => 'Nou comentari',
|
'alert_new_comment_id' => 'Nou comentari',
|
||||||
'alert_comment_ticket_help' => 'Selecting a template will send a notification (to agent) when a comment is made.',
|
|
||||||
'alert_comment_ticket_email_help' => 'Comma separated emails to bcc on new comment.',
|
|
||||||
'new_ticket_notification_list' => 'Additional new ticket notifications',
|
|
||||||
'update_ticket_notification_list' => 'Additional new comment notifications',
|
'update_ticket_notification_list' => 'Additional new comment notifications',
|
||||||
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
||||||
'alert_ticket_assign_agent_id' => 'Ticket assignment',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'Selecting a template will send a notification (to agent) when a ticket is assigned.',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'Additional ticket assigned notifications',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'Comma separated emails to bcc on ticket assignment.',
|
|
||||||
'alert_ticket_transfer_email_help' => 'Comma separated emails to bcc on ticket transfer.',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'Tiquet vençut',
|
|
||||||
'alert_ticket_overdue_email' => 'Additional overdue ticket notifications',
|
|
||||||
'alert_ticket_overdue_email_help' => 'Comma separated emails to bcc on ticket overdue.',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'Selecting a template will send a notification (to agent) when a ticket becomes overdue.',
|
|
||||||
'default_agent' => 'Default Agent',
|
'default_agent' => 'Default Agent',
|
||||||
'default_agent_help' => 'If selected will automatically be assigned to all inbound tickets',
|
'default_agent_help' => 'If selected will automatically be assigned to all inbound tickets',
|
||||||
'show_agent_details' => 'Show agent details on responses',
|
'show_agent_details' => 'Show agent details on responses',
|
||||||
'avatar' => 'Avatar',
|
'avatar' => 'Avatar',
|
||||||
'remove_avatar' => 'Remove avatar',
|
'remove_avatar' => 'Remove avatar',
|
||||||
'ticket_not_found' => 'Ticket not found',
|
|
||||||
'add_template' => 'Add Template',
|
'add_template' => 'Add Template',
|
||||||
'updated_ticket_template' => 'Plantilla de tiquet actualitzada',
|
|
||||||
'created_ticket_template' => 'Plantilla de tiquet creada',
|
|
||||||
'archive_ticket_template' => 'Arxiva plantilla',
|
'archive_ticket_template' => 'Arxiva plantilla',
|
||||||
'restore_ticket_template' => 'Restaura plantilla',
|
'restore_ticket_template' => 'Restaura plantilla',
|
||||||
'archived_ticket_template' => 'Successfully archived template',
|
'archived_ticket_template' => 'Successfully archived template',
|
||||||
@ -3815,7 +3786,7 @@ $lang = array(
|
|||||||
'entity_number_placeholder' => ':entity # :entity_number',
|
'entity_number_placeholder' => ':entity # :entity_number',
|
||||||
'email_link_not_working' => 'If the button above isn\'t working for you, please click on the link',
|
'email_link_not_working' => 'If the button above isn\'t working for you, please click on the link',
|
||||||
'display_log' => 'Display Log',
|
'display_log' => 'Display Log',
|
||||||
'send_fail_logs_to_our_server' => 'Report errors in realtime',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'Setup',
|
'setup' => 'Setup',
|
||||||
'quick_overview_statistics' => 'Quick overview & statistics',
|
'quick_overview_statistics' => 'Quick overview & statistics',
|
||||||
'update_your_personal_info' => 'Update your personal information',
|
'update_your_personal_info' => 'Update your personal information',
|
||||||
@ -5303,6 +5274,33 @@ $lang = array(
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'End Of Month',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -2365,7 +2365,7 @@ Sobald Sie die Beträge erhalten haben, kommen Sie bitte wieder zurück zu diese
|
|||||||
'currency_gold_troy_ounce' => 'Goldene Feinunze',
|
'currency_gold_troy_ounce' => 'Goldene Feinunze',
|
||||||
'currency_nicaraguan_córdoba' => 'Nicaraguanischer Córdoba',
|
'currency_nicaraguan_córdoba' => 'Nicaraguanischer Córdoba',
|
||||||
'currency_malagasy_ariary' => 'Madagassischer Ariary',
|
'currency_malagasy_ariary' => 'Madagassischer Ariary',
|
||||||
"currency_tongan_pa_anga" => "Tongaischer Paʻanga",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'Wir hoffen, dass Ihnen die App gefällt. Wenn Sie :link in Betracht ziehen würden, wären wir Ihnen sehr dankbar!',
|
'review_app_help' => 'Wir hoffen, dass Ihnen die App gefällt. Wenn Sie :link in Betracht ziehen würden, wären wir Ihnen sehr dankbar!',
|
||||||
'writing_a_review' => 'Schreiben einer Rezension',
|
'writing_a_review' => 'Schreiben einer Rezension',
|
||||||
@ -2881,19 +2881,6 @@ Sobald Sie die Beträge erhalten haben, kommen Sie bitte wieder zurück zu diese
|
|||||||
'refunded' => 'Erstattet',
|
'refunded' => 'Erstattet',
|
||||||
'marked_quote_as_sent' => 'Angebot erfolgreich als versendet markiert',
|
'marked_quote_as_sent' => 'Angebot erfolgreich als versendet markiert',
|
||||||
'custom_module_settings' => 'Benutzerdefinierte Moduleinstellungen',
|
'custom_module_settings' => 'Benutzerdefinierte Moduleinstellungen',
|
||||||
'ticket' => 'Ticket',
|
|
||||||
'tickets' => 'Tickets',
|
|
||||||
'ticket_number' => 'Ticket #',
|
|
||||||
'new_ticket' => 'Neues Ticket',
|
|
||||||
'edit_ticket' => 'Ticket bearbeiten',
|
|
||||||
'view_ticket' => 'Ticket anzeigen',
|
|
||||||
'archive_ticket' => 'Ticket archivieren',
|
|
||||||
'restore_ticket' => 'Ticket wieder herstellen',
|
|
||||||
'delete_ticket' => 'Ticket löschen',
|
|
||||||
'archived_ticket' => 'Ticket erfolgreich archiviert',
|
|
||||||
'archived_tickets' => 'Ticket erfolgreich archiviert',
|
|
||||||
'restored_ticket' => 'Ticket erfolgreich wieder hergestellt',
|
|
||||||
'deleted_ticket' => 'Ticket erfolgreich gelöscht',
|
|
||||||
'open' => 'Offen',
|
'open' => 'Offen',
|
||||||
'new' => 'Neu',
|
'new' => 'Neu',
|
||||||
'closed' => 'Geschlossen',
|
'closed' => 'Geschlossen',
|
||||||
@ -2910,14 +2897,6 @@ Sobald Sie die Beträge erhalten haben, kommen Sie bitte wieder zurück zu diese
|
|||||||
'assigned_to' => 'Zugewiesen an',
|
'assigned_to' => 'Zugewiesen an',
|
||||||
'reply' => 'Antwort',
|
'reply' => 'Antwort',
|
||||||
'awaiting_reply' => 'Warten auf Antwort',
|
'awaiting_reply' => 'Warten auf Antwort',
|
||||||
'ticket_close' => 'Ticket schließen',
|
|
||||||
'ticket_reopen' => 'Ticket wieder öffnen',
|
|
||||||
'ticket_open' => 'Ticket öffnen',
|
|
||||||
'ticket_split' => 'Ticket teilen',
|
|
||||||
'ticket_merge' => 'Ticket zusammenführen',
|
|
||||||
'ticket_update' => 'Ticket aktualisieren',
|
|
||||||
'ticket_settings' => 'Ticket Einstelungen',
|
|
||||||
'updated_ticket' => 'Ticket aktualisiert',
|
|
||||||
'mark_spam' => 'Als Spam markieren',
|
'mark_spam' => 'Als Spam markieren',
|
||||||
'local_part' => 'Lokaler Teil',
|
'local_part' => 'Lokaler Teil',
|
||||||
'local_part_unavailable' => 'Name übernommen',
|
'local_part_unavailable' => 'Name übernommen',
|
||||||
@ -2935,31 +2914,23 @@ Sobald Sie die Beträge erhalten haben, kommen Sie bitte wieder zurück zu diese
|
|||||||
'mime_types' => 'Mime-Typen',
|
'mime_types' => 'Mime-Typen',
|
||||||
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
||||||
'mime_types_help' => 'Kommagetrennte Liste der zulässigen Mime-Typen, leer lassen für alle',
|
'mime_types_help' => 'Kommagetrennte Liste der zulässigen Mime-Typen, leer lassen für alle',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'Standardpriorität',
|
'default_priority' => 'Standardpriorität',
|
||||||
'alert_new_comment_id' => 'Neuer Kommentar',
|
'alert_new_comment_id' => 'Neuer Kommentar',
|
||||||
'alert_comment_ticket_help' => 'Die Auswahl einer Vorlage sendet eine Benachrichtigung (an den Agenten), wenn ein Kommentar abgegeben wird.',
|
|
||||||
'alert_comment_ticket_email_help' => 'Komma getrennte E-Mails an bcc bei neuem Kommentar.',
|
|
||||||
'new_ticket_notification_list' => 'Zusätzliche neue Ticket-Benachrichtigungen',
|
|
||||||
'update_ticket_notification_list' => 'Zusätzliche Benachrichtigungen über neue Kommentare',
|
'update_ticket_notification_list' => 'Zusätzliche Benachrichtigungen über neue Kommentare',
|
||||||
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
||||||
'alert_ticket_assign_agent_id' => 'Ticketzuweisung',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'Die Auswahl einer Vorlage sendet eine Benachrichtigung (an den Agenten), wenn ein Ticket zugewiesen wird.',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'Zusätzliche Ticketbenachrichtigungen',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'Komma getrennte E-Mails an bcc bei der Ticketvergabe.',
|
|
||||||
'alert_ticket_transfer_email_help' => 'Komma getrennte E-Mails an bcc bei der Ticketübertragung.',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'Ticket überfällig',
|
|
||||||
'alert_ticket_overdue_email' => 'Zusätzliche überfällige Ticket-Benachrichtigungen',
|
|
||||||
'alert_ticket_overdue_email_help' => 'Komma getrennte E-Mails an bcc bei überfälligem Ticket.',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'Die Auswahl einer Vorlage sendet eine Benachrichtigung (an den Agenten), wenn ein Ticket überfällig wird.',
|
|
||||||
'default_agent' => 'Standard-Agent',
|
'default_agent' => 'Standard-Agent',
|
||||||
'default_agent_help' => 'Wenn ausgewählt, wird er automatisch allen eingehenden Tickets zugeordnet.',
|
'default_agent_help' => 'Wenn ausgewählt, wird er automatisch allen eingehenden Tickets zugeordnet.',
|
||||||
'show_agent_details' => 'Zeigen Sie Agentendetails in den Antworten an',
|
'show_agent_details' => 'Zeigen Sie Agentendetails in den Antworten an',
|
||||||
'avatar' => 'Profilbild',
|
'avatar' => 'Profilbild',
|
||||||
'remove_avatar' => 'Profilbild entfernen',
|
'remove_avatar' => 'Profilbild entfernen',
|
||||||
'ticket_not_found' => 'Ticket nicht gefunden',
|
|
||||||
'add_template' => 'Vorlage hinzufügen',
|
'add_template' => 'Vorlage hinzufügen',
|
||||||
'updated_ticket_template' => 'Ticket Vorlage aktualisiert',
|
|
||||||
'created_ticket_template' => 'Ticket Vorlage erstellt',
|
|
||||||
'archive_ticket_template' => 'Vorlage archiviert',
|
'archive_ticket_template' => 'Vorlage archiviert',
|
||||||
'restore_ticket_template' => 'Vorlage wieder herstellen',
|
'restore_ticket_template' => 'Vorlage wieder herstellen',
|
||||||
'archived_ticket_template' => 'Vorlage erfolgreich archiviert',
|
'archived_ticket_template' => 'Vorlage erfolgreich archiviert',
|
||||||
@ -3817,7 +3788,7 @@ https://invoiceninja.github.io/docs/migration/#troubleshooting',
|
|||||||
'entity_number_placeholder' => ':entity # :entity_number',
|
'entity_number_placeholder' => ':entity # :entity_number',
|
||||||
'email_link_not_working' => 'Wenn die Schaltfläche oben nicht funktioniert, klicken Sie bitte auf den Link',
|
'email_link_not_working' => 'Wenn die Schaltfläche oben nicht funktioniert, klicken Sie bitte auf den Link',
|
||||||
'display_log' => 'Log anzeigen',
|
'display_log' => 'Log anzeigen',
|
||||||
'send_fail_logs_to_our_server' => 'Fehler in Echtzeit melden',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'Setup',
|
'setup' => 'Setup',
|
||||||
'quick_overview_statistics' => 'Schnellüberblick & Statistiken',
|
'quick_overview_statistics' => 'Schnellüberblick & Statistiken',
|
||||||
'update_your_personal_info' => 'Aktualisieren Sie Ihre Profil',
|
'update_your_personal_info' => 'Aktualisieren Sie Ihre Profil',
|
||||||
@ -5307,6 +5278,33 @@ Leistungsempfängers',
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'End Of Month',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -2364,7 +2364,7 @@ $lang = array(
|
|||||||
'currency_gold_troy_ounce' => 'Gold Troy Ounce',
|
'currency_gold_troy_ounce' => 'Gold Troy Ounce',
|
||||||
'currency_nicaraguan_córdoba' => 'Nicaraguan Córdoba',
|
'currency_nicaraguan_córdoba' => 'Nicaraguan Córdoba',
|
||||||
'currency_malagasy_ariary' => 'Malagasy ariary',
|
'currency_malagasy_ariary' => 'Malagasy ariary',
|
||||||
"currency_tongan_pa_anga" => "Tongan Pa'anga",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'Ελπίζουμε να απολαμβάνετε τη χρήση της εφαρμογής.<br/> Εάν θα θέλατε να γράψετε μια κριτική :link θα το εκτιμούσαμε ιδιαίτερα!',
|
'review_app_help' => 'Ελπίζουμε να απολαμβάνετε τη χρήση της εφαρμογής.<br/> Εάν θα θέλατε να γράψετε μια κριτική :link θα το εκτιμούσαμε ιδιαίτερα!',
|
||||||
'writing_a_review' => 'συγγραφή κριτικής',
|
'writing_a_review' => 'συγγραφή κριτικής',
|
||||||
@ -2880,19 +2880,6 @@ $lang = array(
|
|||||||
'refunded' => 'Επιστροφή χρημάτων',
|
'refunded' => 'Επιστροφή χρημάτων',
|
||||||
'marked_quote_as_sent' => 'Επιτυχής ορισμός προσφοράς ως απεσταλμένη',
|
'marked_quote_as_sent' => 'Επιτυχής ορισμός προσφοράς ως απεσταλμένη',
|
||||||
'custom_module_settings' => 'Ρυθμίσεις Προσαρμοσμένης Μονάδας',
|
'custom_module_settings' => 'Ρυθμίσεις Προσαρμοσμένης Μονάδας',
|
||||||
'ticket' => 'Αίτημα υποστήριξης',
|
|
||||||
'tickets' => 'Αιτήματα υποστήριξης',
|
|
||||||
'ticket_number' => 'Αίτημα υποστήριξης #',
|
|
||||||
'new_ticket' => 'Νέο Αίτημα υποστήριξης',
|
|
||||||
'edit_ticket' => 'Επεξεργασία Αιτήματος υποστήριξης',
|
|
||||||
'view_ticket' => 'Προβολή Αιτήματος υποστήριξης',
|
|
||||||
'archive_ticket' => 'Αρχειοθέτηση Αιτήματος υποστήριξης',
|
|
||||||
'restore_ticket' => 'Ανάκτηση Αιτήματος υποστήριξης',
|
|
||||||
'delete_ticket' => 'Διαγραφή Αιτήματος υποστήριξης',
|
|
||||||
'archived_ticket' => 'Επιτυχής αρχειοθέτηση αιτήματος υποστήριξης',
|
|
||||||
'archived_tickets' => 'Επιτυχής αρχειοθέτηση αιτήματος υποστήριξης',
|
|
||||||
'restored_ticket' => 'Επιτυχής ανάκτηση αιτήματος υποστήριξης',
|
|
||||||
'deleted_ticket' => 'Επιτυχής διαγραφή αιτήματος υποστήριξης',
|
|
||||||
'open' => 'Ανοιχτό',
|
'open' => 'Ανοιχτό',
|
||||||
'new' => 'Νέο',
|
'new' => 'Νέο',
|
||||||
'closed' => 'Κλειστό',
|
'closed' => 'Κλειστό',
|
||||||
@ -2909,14 +2896,6 @@ $lang = array(
|
|||||||
'assigned_to' => 'Ανατέθηκε σε',
|
'assigned_to' => 'Ανατέθηκε σε',
|
||||||
'reply' => 'Απάντηση',
|
'reply' => 'Απάντηση',
|
||||||
'awaiting_reply' => 'Αναμονή απάντησης',
|
'awaiting_reply' => 'Αναμονή απάντησης',
|
||||||
'ticket_close' => 'Κλείσιμο Αιτήματος υποστήριξης',
|
|
||||||
'ticket_reopen' => 'Επανάνοιγμα Αιτήματος υποστήριξης',
|
|
||||||
'ticket_open' => 'Άνοιγμα Αιτήματος υποστήριξης',
|
|
||||||
'ticket_split' => 'Διχοτόμηση Αιτήματος υποστήριξης',
|
|
||||||
'ticket_merge' => 'Συνένωση Αιτήματος υποστήριξης',
|
|
||||||
'ticket_update' => 'Ενημέρωση Αιτήματος υποστήριξης',
|
|
||||||
'ticket_settings' => 'Ρυθμίσεις Αιτήματος υποστήριξης',
|
|
||||||
'updated_ticket' => 'Ενημερώθηκε το Αίτημα υποστήριξης',
|
|
||||||
'mark_spam' => 'Σήμανση ως ανεπιθύμητο',
|
'mark_spam' => 'Σήμανση ως ανεπιθύμητο',
|
||||||
'local_part' => 'Τοπικό Τμήμα',
|
'local_part' => 'Τοπικό Τμήμα',
|
||||||
'local_part_unavailable' => 'Το όνομα είναι δεσμευμένο',
|
'local_part_unavailable' => 'Το όνομα είναι δεσμευμένο',
|
||||||
@ -2934,31 +2913,23 @@ $lang = array(
|
|||||||
'mime_types' => 'Τύποι αρχείων',
|
'mime_types' => 'Τύποι αρχείων',
|
||||||
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
||||||
'mime_types_help' => 'Λίστα χωριζόμενων με κόμμα τύπων αρχείων, αφήστε το κενό για όλους',
|
'mime_types_help' => 'Λίστα χωριζόμενων με κόμμα τύπων αρχείων, αφήστε το κενό για όλους',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'Προεπιλεγμένη προτεραιότητα',
|
'default_priority' => 'Προεπιλεγμένη προτεραιότητα',
|
||||||
'alert_new_comment_id' => 'Νέο σχόλιο',
|
'alert_new_comment_id' => 'Νέο σχόλιο',
|
||||||
'alert_comment_ticket_help' => 'Η επιλογή ενός προτύπου θα στείλει μία ειδοποίηση (στον εκπρόσωπο) όταν προστεθεί ένα σχόλιο.',
|
|
||||||
'alert_comment_ticket_email_help' => 'Διαχωρίστε με κόμμα τα emails για να σταλεί μια κρυφή κοινοποίηση σε κάθε νέο σχόλιο',
|
|
||||||
'new_ticket_notification_list' => 'Επιπλέον ειδοποιήσεις νέου αιτήματος υποστήριξης',
|
|
||||||
'update_ticket_notification_list' => 'Επιπλέον ειδοποιήσεις νέου σχολίου',
|
'update_ticket_notification_list' => 'Επιπλέον ειδοποιήσεις νέου σχολίου',
|
||||||
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
||||||
'alert_ticket_assign_agent_id' => 'Ανάθεση αιτήματος υποστήριξης',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'Η επιλογή ενός προτύπου θα στείλει μία ειδοποίηση (στον εκπρόσωπο) όταν ανατεθεί ένα αίτημα υποστήριξης.',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'Επιπλέον ειδοποιήσεις ανάθεσης αιτήματος υποστήριξης',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'Διαχωρίστε με κόμμα τα emails για να σταλεί μια κρυφή κοινοποίηση όταν ανατεθεί το αίτημα υποστήριξης',
|
|
||||||
'alert_ticket_transfer_email_help' => 'Διαχωρίστε με κόμμα τα emails για να σταλεί μια κρυφή κοινοποίηση όταν μεταφερθεί το αίτημα υποστήριξης',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'Αίτημα υποστήριξης σε καθυστέρηση',
|
|
||||||
'alert_ticket_overdue_email' => 'Επιπλέον ειδοποιήσεις καθυστερούμενου αιτήματος υποστήριξης',
|
|
||||||
'alert_ticket_overdue_email_help' => 'Διαχωρίστε με κόμμα τα emails για να σταλεί μια κρυφή κοινοποίηση όταν το αίτημα υποστήριξης τεθεί σε καθυστέρηση',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'Η επιλογή ενός προτύπου θα στείλει μία ειδοποίηση (στον εκπρόσωπο) όταν ένα αίτημα υποστήριξης γίνει εκπρόθεσμο.',
|
|
||||||
'default_agent' => 'Προεπιλεγμένος Εκπρόσωπος',
|
'default_agent' => 'Προεπιλεγμένος Εκπρόσωπος',
|
||||||
'default_agent_help' => 'Εάν επιλεγεί θα του ανατεθούν όλα τα εισερχόμενα αιτήματα υποστήριξης',
|
'default_agent_help' => 'Εάν επιλεγεί θα του ανατεθούν όλα τα εισερχόμενα αιτήματα υποστήριξης',
|
||||||
'show_agent_details' => 'Εμφάνιση λεπτομερειών εκπροσώπου στις απαντήσεις',
|
'show_agent_details' => 'Εμφάνιση λεπτομερειών εκπροσώπου στις απαντήσεις',
|
||||||
'avatar' => 'Avatar',
|
'avatar' => 'Avatar',
|
||||||
'remove_avatar' => 'Διαγραφή avatar',
|
'remove_avatar' => 'Διαγραφή avatar',
|
||||||
'ticket_not_found' => 'Δεν βρέθηκε το αίτημα υποστήριξης',
|
|
||||||
'add_template' => 'Προσθήκη Προτύπου',
|
'add_template' => 'Προσθήκη Προτύπου',
|
||||||
'updated_ticket_template' => 'Ενημερώθηκε το πρότυπο αιτήματος υποστήριξης',
|
|
||||||
'created_ticket_template' => 'Δημιουργήθηκε το πρότυπο αιτήματος υποστήριξης',
|
|
||||||
'archive_ticket_template' => 'Αρχειοθέτηση Προτύπου',
|
'archive_ticket_template' => 'Αρχειοθέτηση Προτύπου',
|
||||||
'restore_ticket_template' => 'Ανάκτηση Προτύπου',
|
'restore_ticket_template' => 'Ανάκτηση Προτύπου',
|
||||||
'archived_ticket_template' => 'Επιτυχής αρχειοθέτηση προτύπου',
|
'archived_ticket_template' => 'Επιτυχής αρχειοθέτηση προτύπου',
|
||||||
@ -3815,7 +3786,7 @@ $lang = array(
|
|||||||
'entity_number_placeholder' => ':entity # :entity_number',
|
'entity_number_placeholder' => ':entity # :entity_number',
|
||||||
'email_link_not_working' => 'If the button above isn\'t working for you, please click on the link',
|
'email_link_not_working' => 'If the button above isn\'t working for you, please click on the link',
|
||||||
'display_log' => 'Εμφάνιση αρχείου καταγραφής',
|
'display_log' => 'Εμφάνιση αρχείου καταγραφής',
|
||||||
'send_fail_logs_to_our_server' => 'Αναφορά σφαλμάτων σε πραγματικό χρόνο',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'Καθορισμός',
|
'setup' => 'Καθορισμός',
|
||||||
'quick_overview_statistics' => 'Quick overview & statistics',
|
'quick_overview_statistics' => 'Quick overview & statistics',
|
||||||
'update_your_personal_info' => 'Επικαιροποίησε τις προσωπικές σου πληροφορίες',
|
'update_your_personal_info' => 'Επικαιροποίησε τις προσωπικές σου πληροφορίες',
|
||||||
@ -5303,6 +5274,33 @@ $lang = array(
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'End Of Month',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -1099,7 +1099,7 @@ $lang = array(
|
|||||||
'invoice_embed_documents' => 'Embed Documents',
|
'invoice_embed_documents' => 'Embed Documents',
|
||||||
'invoice_embed_documents_help' => 'Include attached images in the invoice.',
|
'invoice_embed_documents_help' => 'Include attached images in the invoice.',
|
||||||
'document_email_attachment' => 'Attach Documents',
|
'document_email_attachment' => 'Attach Documents',
|
||||||
'ubl_email_attachment' => 'Attach UBL',
|
'ubl_email_attachment' => 'Attach UBL/E-Invoice',
|
||||||
'download_documents' => 'Download Documents (:size)',
|
'download_documents' => 'Download Documents (:size)',
|
||||||
'documents_from_expenses' => 'From Expenses:',
|
'documents_from_expenses' => 'From Expenses:',
|
||||||
'dropzone_default_message' => 'Drop files or click to upload',
|
'dropzone_default_message' => 'Drop files or click to upload',
|
||||||
@ -3045,7 +3045,7 @@ $lang = array(
|
|||||||
'portal_mode' => 'Portal Mode',
|
'portal_mode' => 'Portal Mode',
|
||||||
'attach_pdf' => 'Attach PDF',
|
'attach_pdf' => 'Attach PDF',
|
||||||
'attach_documents' => 'Attach Documents',
|
'attach_documents' => 'Attach Documents',
|
||||||
'attach_ubl' => 'Attach UBL',
|
'attach_ubl' => 'Attach UBL/E-Invoice',
|
||||||
'email_style' => 'Email Style',
|
'email_style' => 'Email Style',
|
||||||
'processed' => 'Processed',
|
'processed' => 'Processed',
|
||||||
'fee_amount' => 'Fee Amount',
|
'fee_amount' => 'Fee Amount',
|
||||||
|
@ -2363,7 +2363,7 @@ $lang = array(
|
|||||||
'currency_gold_troy_ounce' => 'Onza troy de oro',
|
'currency_gold_troy_ounce' => 'Onza troy de oro',
|
||||||
'currency_nicaraguan_córdoba' => 'Córdoba nicaragüense',
|
'currency_nicaraguan_córdoba' => 'Córdoba nicaragüense',
|
||||||
'currency_malagasy_ariary' => 'ariary malgache',
|
'currency_malagasy_ariary' => 'ariary malgache',
|
||||||
"currency_tongan_pa_anga" => "Pa'anga tongano",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'Esperamos que estés disfrutando de usar la aplicación.<br/>Si consideras :link lo apreciaremos mucho!',
|
'review_app_help' => 'Esperamos que estés disfrutando de usar la aplicación.<br/>Si consideras :link lo apreciaremos mucho!',
|
||||||
'writing_a_review' => 'escribiendo una reseña',
|
'writing_a_review' => 'escribiendo una reseña',
|
||||||
@ -2879,19 +2879,6 @@ $lang = array(
|
|||||||
'refunded' => 'Reintegrado',
|
'refunded' => 'Reintegrado',
|
||||||
'marked_quote_as_sent' => 'Presupuesto marcado correctamente como enviado',
|
'marked_quote_as_sent' => 'Presupuesto marcado correctamente como enviado',
|
||||||
'custom_module_settings' => 'Configuración del módulo personalizado',
|
'custom_module_settings' => 'Configuración del módulo personalizado',
|
||||||
'ticket' => 'Boleto',
|
|
||||||
'tickets' => 'Entradas',
|
|
||||||
'ticket_number' => 'Boleto #',
|
|
||||||
'new_ticket' => 'Nuevo boleto',
|
|
||||||
'edit_ticket' => 'Editar boleto',
|
|
||||||
'view_ticket' => 'Ver boleto',
|
|
||||||
'archive_ticket' => 'Boleto de archivo',
|
|
||||||
'restore_ticket' => 'Restaurar boleto',
|
|
||||||
'delete_ticket' => 'Eliminar boleto',
|
|
||||||
'archived_ticket' => 'Ticket archivado con éxito',
|
|
||||||
'archived_tickets' => 'Tickets archivados con éxito',
|
|
||||||
'restored_ticket' => 'Boleto restaurado con éxito',
|
|
||||||
'deleted_ticket' => 'Boleto eliminado con éxito',
|
|
||||||
'open' => 'Abierto',
|
'open' => 'Abierto',
|
||||||
'new' => 'Nuevo',
|
'new' => 'Nuevo',
|
||||||
'closed' => 'Cerrado',
|
'closed' => 'Cerrado',
|
||||||
@ -2908,14 +2895,6 @@ $lang = array(
|
|||||||
'assigned_to' => 'Asignado a',
|
'assigned_to' => 'Asignado a',
|
||||||
'reply' => 'Responder',
|
'reply' => 'Responder',
|
||||||
'awaiting_reply' => 'Esperando respuesta',
|
'awaiting_reply' => 'Esperando respuesta',
|
||||||
'ticket_close' => 'Cerrar ticket',
|
|
||||||
'ticket_reopen' => 'Boleto de reapertura',
|
|
||||||
'ticket_open' => 'Boleto abierto',
|
|
||||||
'ticket_split' => 'Boleto dividido',
|
|
||||||
'ticket_merge' => 'Boleto de combinación',
|
|
||||||
'ticket_update' => 'Actualizar ticket',
|
|
||||||
'ticket_settings' => 'Configuración de boletos',
|
|
||||||
'updated_ticket' => 'Boleto actualizado',
|
|
||||||
'mark_spam' => 'Marcar como correo no deseado',
|
'mark_spam' => 'Marcar como correo no deseado',
|
||||||
'local_part' => 'Parte local',
|
'local_part' => 'Parte local',
|
||||||
'local_part_unavailable' => 'Nombre tomado',
|
'local_part_unavailable' => 'Nombre tomado',
|
||||||
@ -2933,31 +2912,23 @@ $lang = array(
|
|||||||
'mime_types' => 'Tipos de mimo',
|
'mime_types' => 'Tipos de mimo',
|
||||||
'mime_types_placeholder' => '.pdf, .docx, .jpg',
|
'mime_types_placeholder' => '.pdf, .docx, .jpg',
|
||||||
'mime_types_help' => 'Lista separada por comas de tipos MIME permitidos, déjela en blanco para todos',
|
'mime_types_help' => 'Lista separada por comas de tipos MIME permitidos, déjela en blanco para todos',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'Prioridad predeterminada',
|
'default_priority' => 'Prioridad predeterminada',
|
||||||
'alert_new_comment_id' => 'Nuevo comentario',
|
'alert_new_comment_id' => 'Nuevo comentario',
|
||||||
'alert_comment_ticket_help' => 'Al seleccionar una plantilla, se enviará una notificación (al agente) cuando se realice un comentario.',
|
|
||||||
'alert_comment_ticket_email_help' => 'Correos electrónicos separados por comas a BCC en un nuevo comentario.',
|
|
||||||
'new_ticket_notification_list' => 'Notificaciones adicionales de nuevos boletos',
|
|
||||||
'update_ticket_notification_list' => 'Notificaciones adicionales de nuevos comentarios',
|
'update_ticket_notification_list' => 'Notificaciones adicionales de nuevos comentarios',
|
||||||
'comma_separated_values' => 'admin@ejemplo.com, supervisor@ejemplo.com',
|
'comma_separated_values' => 'admin@ejemplo.com, supervisor@ejemplo.com',
|
||||||
'alert_ticket_assign_agent_id' => 'Asignación de entradas',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'Al seleccionar una plantilla, se enviará una notificación (al agente) cuando se asigne un ticket.',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'Notificaciones adicionales de boletos asignados',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'Correos electrónicos separados por comas a BCC en la asignación de tickets.',
|
|
||||||
'alert_ticket_transfer_email_help' => 'Correos electrónicos separados por comas a BCC en la transferencia de boletos.',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'Boleto vencido',
|
|
||||||
'alert_ticket_overdue_email' => 'Notificaciones adicionales de boletos vencidos',
|
|
||||||
'alert_ticket_overdue_email_help' => 'Correos electrónicos separados por comas a BCC en ticket vencido.',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'Al seleccionar una plantilla, se enviará una notificación (al agente) cuando venza un ticket.',
|
|
||||||
'default_agent' => 'Agente predeterminado',
|
'default_agent' => 'Agente predeterminado',
|
||||||
'default_agent_help' => 'Si se selecciona, se asignará automáticamente a todos los boletos entrantes',
|
'default_agent_help' => 'Si se selecciona, se asignará automáticamente a todos los boletos entrantes',
|
||||||
'show_agent_details' => 'Mostrar detalles del agente en las respuestas',
|
'show_agent_details' => 'Mostrar detalles del agente en las respuestas',
|
||||||
'avatar' => 'Avatar',
|
'avatar' => 'Avatar',
|
||||||
'remove_avatar' => 'Quitar avatar',
|
'remove_avatar' => 'Quitar avatar',
|
||||||
'ticket_not_found' => 'Boleto no encontrado',
|
|
||||||
'add_template' => 'Agregar plantilla',
|
'add_template' => 'Agregar plantilla',
|
||||||
'updated_ticket_template' => 'Plantilla de ticket actualizada',
|
|
||||||
'created_ticket_template' => 'Plantilla de ticket creada',
|
|
||||||
'archive_ticket_template' => 'Plantilla de archivo',
|
'archive_ticket_template' => 'Plantilla de archivo',
|
||||||
'restore_ticket_template' => 'Plantilla de restauración',
|
'restore_ticket_template' => 'Plantilla de restauración',
|
||||||
'archived_ticket_template' => 'Plantilla archivada correctamente',
|
'archived_ticket_template' => 'Plantilla archivada correctamente',
|
||||||
@ -3814,7 +3785,7 @@ $lang = array(
|
|||||||
'entity_number_placeholder' => ':entity # :entity_número',
|
'entity_number_placeholder' => ':entity # :entity_número',
|
||||||
'email_link_not_working' => 'Si el botón de arriba no funciona para usted, por favor haga clic en el enlace',
|
'email_link_not_working' => 'Si el botón de arriba no funciona para usted, por favor haga clic en el enlace',
|
||||||
'display_log' => 'Mostrar registro',
|
'display_log' => 'Mostrar registro',
|
||||||
'send_fail_logs_to_our_server' => 'Reportar errores en tiempo real',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'Configuración',
|
'setup' => 'Configuración',
|
||||||
'quick_overview_statistics' => 'Resumen rápido y estadísticas',
|
'quick_overview_statistics' => 'Resumen rápido y estadísticas',
|
||||||
'update_your_personal_info' => 'Actualice su información personal',
|
'update_your_personal_info' => 'Actualice su información personal',
|
||||||
@ -5302,6 +5273,33 @@ $lang = array(
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'End Of Month',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -2360,7 +2360,7 @@ Una vez que tenga los montos, vuelva a esta página de métodos de pago y haga c
|
|||||||
'currency_gold_troy_ounce' => 'Onza troy de oro',
|
'currency_gold_troy_ounce' => 'Onza troy de oro',
|
||||||
'currency_nicaraguan_córdoba' => 'Córdoba nicaragüense',
|
'currency_nicaraguan_córdoba' => 'Córdoba nicaragüense',
|
||||||
'currency_malagasy_ariary' => 'Ariary malgache',
|
'currency_malagasy_ariary' => 'Ariary malgache',
|
||||||
"currency_tongan_pa_anga" => "Pa'anga tongano",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'Esperamos que estés disfrutando con la app. <br/>Si consideras :link ¡te lo agraderemos enormemente!',
|
'review_app_help' => 'Esperamos que estés disfrutando con la app. <br/>Si consideras :link ¡te lo agraderemos enormemente!',
|
||||||
'writing_a_review' => 'escribir una reseña',
|
'writing_a_review' => 'escribir una reseña',
|
||||||
@ -2876,19 +2876,6 @@ Una vez que tenga los montos, vuelva a esta página de métodos de pago y haga c
|
|||||||
'refunded' => 'Reembolsado',
|
'refunded' => 'Reembolsado',
|
||||||
'marked_quote_as_sent' => 'Presupuesto marcado como enviado correctamente',
|
'marked_quote_as_sent' => 'Presupuesto marcado como enviado correctamente',
|
||||||
'custom_module_settings' => 'Opciones del Módulo Personalizado',
|
'custom_module_settings' => 'Opciones del Módulo Personalizado',
|
||||||
'ticket' => 'Ticket',
|
|
||||||
'tickets' => 'Tickets',
|
|
||||||
'ticket_number' => 'N. Ticket',
|
|
||||||
'new_ticket' => 'Nuevo Ticket',
|
|
||||||
'edit_ticket' => 'Editar Ticket',
|
|
||||||
'view_ticket' => 'Ver Ticket',
|
|
||||||
'archive_ticket' => 'Archivar Ticket',
|
|
||||||
'restore_ticket' => 'Restaurar Ticket',
|
|
||||||
'delete_ticket' => 'Eliminar Ticket',
|
|
||||||
'archived_ticket' => 'Ticket archivado correctamente',
|
|
||||||
'archived_tickets' => 'Tickets archivados correctamente',
|
|
||||||
'restored_ticket' => 'Ticket restaurado correctamente',
|
|
||||||
'deleted_ticket' => 'Ticket eliminado correctamente',
|
|
||||||
'open' => 'Abrir',
|
'open' => 'Abrir',
|
||||||
'new' => 'Nuevo',
|
'new' => 'Nuevo',
|
||||||
'closed' => 'Cerrado',
|
'closed' => 'Cerrado',
|
||||||
@ -2905,14 +2892,6 @@ Una vez que tenga los montos, vuelva a esta página de métodos de pago y haga c
|
|||||||
'assigned_to' => 'Asignado a',
|
'assigned_to' => 'Asignado a',
|
||||||
'reply' => 'Responder',
|
'reply' => 'Responder',
|
||||||
'awaiting_reply' => 'Esperando respuesta',
|
'awaiting_reply' => 'Esperando respuesta',
|
||||||
'ticket_close' => 'Cerrar Ticket',
|
|
||||||
'ticket_reopen' => 'Reabrir Ticket',
|
|
||||||
'ticket_open' => 'Abrir Ticket',
|
|
||||||
'ticket_split' => 'Dividir Ticket',
|
|
||||||
'ticket_merge' => 'Unir Ticket',
|
|
||||||
'ticket_update' => 'Actualizar Ticket',
|
|
||||||
'ticket_settings' => 'Opciones de Ticket',
|
|
||||||
'updated_ticket' => 'Ticket Actualizado',
|
|
||||||
'mark_spam' => 'Marcar como Spam',
|
'mark_spam' => 'Marcar como Spam',
|
||||||
'local_part' => 'Parte Local',
|
'local_part' => 'Parte Local',
|
||||||
'local_part_unavailable' => 'Nombre asignado',
|
'local_part_unavailable' => 'Nombre asignado',
|
||||||
@ -2930,31 +2909,23 @@ Una vez que tenga los montos, vuelva a esta página de métodos de pago y haga c
|
|||||||
'mime_types' => 'Tipos de ficheros',
|
'mime_types' => 'Tipos de ficheros',
|
||||||
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
||||||
'mime_types_help' => 'Lista separada por comas de los tipos mime de fichero aceptados, déjalo en blanco para todos',
|
'mime_types_help' => 'Lista separada por comas de los tipos mime de fichero aceptados, déjalo en blanco para todos',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'Prioridad por defecto',
|
'default_priority' => 'Prioridad por defecto',
|
||||||
'alert_new_comment_id' => 'Nuevo comentario',
|
'alert_new_comment_id' => 'Nuevo comentario',
|
||||||
'alert_comment_ticket_help' => 'Seleccionando una plantilla enviará una notificación (a un agente) cuando se haga un comentario.',
|
|
||||||
'alert_comment_ticket_email_help' => 'Lista de emails separados por coma en el campo BCC en un nuevo comentario.',
|
|
||||||
'new_ticket_notification_list' => 'Notificaciones de nuevo ticket adicionales',
|
|
||||||
'update_ticket_notification_list' => 'Notificaciones de nuevo comentario adicionales',
|
'update_ticket_notification_list' => 'Notificaciones de nuevo comentario adicionales',
|
||||||
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
||||||
'alert_ticket_assign_agent_id' => 'Asignación de ticket',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'Seleccionando una plantilla enviará una notificación (a un agente) cuando un ticket sea asignado.',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'Notificaciones de ticket asignado adicionales',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'Lista de emails separados por coma en el campo BCC en la asignación de ticket.',
|
|
||||||
'alert_ticket_transfer_email_help' => 'Lista de emails separados por coma en el campo BCC en la transferencia de ticket.',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'Ticket vencido',
|
|
||||||
'alert_ticket_overdue_email' => 'Notificaciones de ticket vencido adicionales',
|
|
||||||
'alert_ticket_overdue_email_help' => 'Lista de emails separados por coma en el campo BCC en el vencimiento de ticket.',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'Seleccionando una plantilla enviará una notificación (a un agente) cuando un ticket llegue a la fecha de vencimiento.',
|
|
||||||
'default_agent' => 'Agente por Defecto',
|
'default_agent' => 'Agente por Defecto',
|
||||||
'default_agent_help' => 'Si se selecciona, será asignado automáticamente en todos los tickets de entrada',
|
'default_agent_help' => 'Si se selecciona, será asignado automáticamente en todos los tickets de entrada',
|
||||||
'show_agent_details' => 'Mostrar los detalles del agente en las respuestas',
|
'show_agent_details' => 'Mostrar los detalles del agente en las respuestas',
|
||||||
'avatar' => 'Avatar',
|
'avatar' => 'Avatar',
|
||||||
'remove_avatar' => 'Eliminar avatar',
|
'remove_avatar' => 'Eliminar avatar',
|
||||||
'ticket_not_found' => 'Ticket no encontrado',
|
|
||||||
'add_template' => 'Añadir Plantila',
|
'add_template' => 'Añadir Plantila',
|
||||||
'updated_ticket_template' => 'Plantilla de Ticket Actualizada',
|
|
||||||
'created_ticket_template' => 'Plantilla de Ticket Creada',
|
|
||||||
'archive_ticket_template' => 'Archivar Plantilla',
|
'archive_ticket_template' => 'Archivar Plantilla',
|
||||||
'restore_ticket_template' => 'Restaurar Plantilla',
|
'restore_ticket_template' => 'Restaurar Plantilla',
|
||||||
'archived_ticket_template' => 'Plantilla archivada correctamente',
|
'archived_ticket_template' => 'Plantilla archivada correctamente',
|
||||||
@ -3811,7 +3782,7 @@ Una vez que tenga los montos, vuelva a esta página de métodos de pago y haga c
|
|||||||
'entity_number_placeholder' => ':entity # :entity_number',
|
'entity_number_placeholder' => ':entity # :entity_number',
|
||||||
'email_link_not_working' => 'Si el botón de arriba no te está funcionando, por favor pulsa en el enlace',
|
'email_link_not_working' => 'Si el botón de arriba no te está funcionando, por favor pulsa en el enlace',
|
||||||
'display_log' => 'Mostrar Registro',
|
'display_log' => 'Mostrar Registro',
|
||||||
'send_fail_logs_to_our_server' => 'Reportar errores en tiempo real',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'Instalación',
|
'setup' => 'Instalación',
|
||||||
'quick_overview_statistics' => 'Vistazo rápido y estadísticas',
|
'quick_overview_statistics' => 'Vistazo rápido y estadísticas',
|
||||||
'update_your_personal_info' => 'Actualiza tu información personal',
|
'update_your_personal_info' => 'Actualiza tu información personal',
|
||||||
@ -5300,6 +5271,33 @@ De lo contrario, este campo deberá dejarse en blanco.',
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'End Of Month',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -2364,7 +2364,7 @@ $lang = array(
|
|||||||
'currency_gold_troy_ounce' => 'Gold Troy Ounce',
|
'currency_gold_troy_ounce' => 'Gold Troy Ounce',
|
||||||
'currency_nicaraguan_córdoba' => 'Nicaraguan Córdoba',
|
'currency_nicaraguan_córdoba' => 'Nicaraguan Córdoba',
|
||||||
'currency_malagasy_ariary' => 'Malagasy ariary',
|
'currency_malagasy_ariary' => 'Malagasy ariary',
|
||||||
"currency_tongan_pa_anga" => "Tongan Pa'anga",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'Loodame, et teile meeldib rakenduse kasutamine.<br/>Kui kaaluksite :link, oleksime selle eest väga tänulikud!',
|
'review_app_help' => 'Loodame, et teile meeldib rakenduse kasutamine.<br/>Kui kaaluksite :link, oleksime selle eest väga tänulikud!',
|
||||||
'writing_a_review' => 'arvustuse kirjutamine',
|
'writing_a_review' => 'arvustuse kirjutamine',
|
||||||
@ -2880,19 +2880,6 @@ $lang = array(
|
|||||||
'refunded' => 'Tagastatud',
|
'refunded' => 'Tagastatud',
|
||||||
'marked_quote_as_sent' => 'Hinnapakkumine märgiti saadetuks',
|
'marked_quote_as_sent' => 'Hinnapakkumine märgiti saadetuks',
|
||||||
'custom_module_settings' => 'Kohandatud mooduli sätted',
|
'custom_module_settings' => 'Kohandatud mooduli sätted',
|
||||||
'ticket' => 'Pilet',
|
|
||||||
'tickets' => 'Piletid',
|
|
||||||
'ticket_number' => 'Pilet #',
|
|
||||||
'new_ticket' => 'Uus pilet',
|
|
||||||
'edit_ticket' => 'Muuda piletit',
|
|
||||||
'view_ticket' => 'Vaata piletit',
|
|
||||||
'archive_ticket' => 'Arhiveeri pilet',
|
|
||||||
'restore_ticket' => 'Taasta pilet',
|
|
||||||
'delete_ticket' => 'Kustuta pilet',
|
|
||||||
'archived_ticket' => 'Pileti arhiveerimine õnnestus',
|
|
||||||
'archived_tickets' => 'Piletite arhiveerimine õnnestus',
|
|
||||||
'restored_ticket' => 'Pilet edukalt taastatud',
|
|
||||||
'deleted_ticket' => 'Pilet edukalt kustutatud',
|
|
||||||
'open' => 'Avatud',
|
'open' => 'Avatud',
|
||||||
'new' => 'Uus',
|
'new' => 'Uus',
|
||||||
'closed' => 'Suletud',
|
'closed' => 'Suletud',
|
||||||
@ -2909,14 +2896,6 @@ $lang = array(
|
|||||||
'assigned_to' => 'Määratud',
|
'assigned_to' => 'Määratud',
|
||||||
'reply' => 'Vasta',
|
'reply' => 'Vasta',
|
||||||
'awaiting_reply' => 'Ootan vastust',
|
'awaiting_reply' => 'Ootan vastust',
|
||||||
'ticket_close' => 'Sule pilet',
|
|
||||||
'ticket_reopen' => 'Ava pilet uuesti',
|
|
||||||
'ticket_open' => 'Ava pilet',
|
|
||||||
'ticket_split' => 'Jagage pilet',
|
|
||||||
'ticket_merge' => 'Ühendage pilet',
|
|
||||||
'ticket_update' => 'Uuenda piletit',
|
|
||||||
'ticket_settings' => 'Pileti seaded',
|
|
||||||
'updated_ticket' => 'Pilet uuendatud',
|
|
||||||
'mark_spam' => 'Märgi rämpspostiks',
|
'mark_spam' => 'Märgi rämpspostiks',
|
||||||
'local_part' => 'Local Part',
|
'local_part' => 'Local Part',
|
||||||
'local_part_unavailable' => 'Nimi võetud',
|
'local_part_unavailable' => 'Nimi võetud',
|
||||||
@ -2934,31 +2913,23 @@ $lang = array(
|
|||||||
'mime_types' => 'Mime types',
|
'mime_types' => 'Mime types',
|
||||||
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
||||||
'mime_types_help' => 'Comma separated list of allowed mime types, leave blank for all',
|
'mime_types_help' => 'Comma separated list of allowed mime types, leave blank for all',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'Default priority',
|
'default_priority' => 'Default priority',
|
||||||
'alert_new_comment_id' => 'Uus kommentaar',
|
'alert_new_comment_id' => 'Uus kommentaar',
|
||||||
'alert_comment_ticket_help' => 'Malli valimine saadab kommentaari tegemisel teate (agendile).',
|
|
||||||
'alert_comment_ticket_email_help' => 'Comma separated emails to bcc on new comment.',
|
|
||||||
'new_ticket_notification_list' => 'Additional new ticket notifications',
|
|
||||||
'update_ticket_notification_list' => 'Additional new comment notifications',
|
'update_ticket_notification_list' => 'Additional new comment notifications',
|
||||||
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
||||||
'alert_ticket_assign_agent_id' => 'Ticket assignment',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'Malli valimine saadab (agendile) teate, kui pilet on määratud.',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'Malli valimine saadab (agendile) teate, kui pilet on määratud.',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'Comma separated emails to bcc on ticket assignment.',
|
|
||||||
'alert_ticket_transfer_email_help' => 'Comma separated emails to bcc on ticket transfer.',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'Pilet üle tähtaja',
|
|
||||||
'alert_ticket_overdue_email' => 'Additional overdue ticket notifications',
|
|
||||||
'alert_ticket_overdue_email_help' => 'Comma separated emails to bcc on ticket overdue.',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'Malli valimine saadab (agendile) teate, kui pilet on üle tähtaja.',
|
|
||||||
'default_agent' => 'Vaikimisi agent',
|
'default_agent' => 'Vaikimisi agent',
|
||||||
'default_agent_help' => 'If selected will automatically be assigned to all inbound tickets',
|
'default_agent_help' => 'If selected will automatically be assigned to all inbound tickets',
|
||||||
'show_agent_details' => 'Näidake vastuste kohta agendi üksikasju',
|
'show_agent_details' => 'Näidake vastuste kohta agendi üksikasju',
|
||||||
'avatar' => 'Avatar',
|
'avatar' => 'Avatar',
|
||||||
'remove_avatar' => 'Eemalda avatar',
|
'remove_avatar' => 'Eemalda avatar',
|
||||||
'ticket_not_found' => 'Piletit ei leitud',
|
|
||||||
'add_template' => 'Lisa mall',
|
'add_template' => 'Lisa mall',
|
||||||
'updated_ticket_template' => 'Uuendatud pileti mall',
|
|
||||||
'created_ticket_template' => 'Loodud pileti mall',
|
|
||||||
'archive_ticket_template' => 'Arhiveeri mall',
|
'archive_ticket_template' => 'Arhiveeri mall',
|
||||||
'restore_ticket_template' => 'Taasta mall',
|
'restore_ticket_template' => 'Taasta mall',
|
||||||
'archived_ticket_template' => 'Mall edukalt arhiveeritud',
|
'archived_ticket_template' => 'Mall edukalt arhiveeritud',
|
||||||
@ -3815,7 +3786,7 @@ $lang = array(
|
|||||||
'entity_number_placeholder' => ':entity # :entity_number',
|
'entity_number_placeholder' => ':entity # :entity_number',
|
||||||
'email_link_not_working' => 'Kui ülalolev nupp teie jaoks ei tööta, klõpsake lingil',
|
'email_link_not_working' => 'Kui ülalolev nupp teie jaoks ei tööta, klõpsake lingil',
|
||||||
'display_log' => 'Display Log',
|
'display_log' => 'Display Log',
|
||||||
'send_fail_logs_to_our_server' => 'Teatage vigadest reaalajas',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'Setup',
|
'setup' => 'Setup',
|
||||||
'quick_overview_statistics' => 'Quick overview & statistics',
|
'quick_overview_statistics' => 'Quick overview & statistics',
|
||||||
'update_your_personal_info' => 'Värskendage oma isikuandmeid',
|
'update_your_personal_info' => 'Värskendage oma isikuandmeid',
|
||||||
@ -5303,6 +5274,33 @@ $lang = array(
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'End Of Month',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -2364,7 +2364,7 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'currency_gold_troy_ounce' => 'Once troy d'or',
|
'currency_gold_troy_ounce' => 'Once troy d'or',
|
||||||
'currency_nicaraguan_córdoba' => 'Cordoue nicaraguayenne',
|
'currency_nicaraguan_córdoba' => 'Cordoue nicaraguayenne',
|
||||||
'currency_malagasy_ariary' => 'Ariary malgache',
|
'currency_malagasy_ariary' => 'Ariary malgache',
|
||||||
"currency_tongan_pa_anga" => "Pa'anga tongien",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'Nous espérons que votre utilisation de cette application vous est agréable.<br/>Un commentaire de votre part serait grandement apprécié!',
|
'review_app_help' => 'Nous espérons que votre utilisation de cette application vous est agréable.<br/>Un commentaire de votre part serait grandement apprécié!',
|
||||||
'writing_a_review' => 'écrire un commentaire',
|
'writing_a_review' => 'écrire un commentaire',
|
||||||
@ -2880,19 +2880,6 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'refunded' => 'Remboursé',
|
'refunded' => 'Remboursé',
|
||||||
'marked_quote_as_sent' => 'Le devis sélectionné a été envoyé avec succès',
|
'marked_quote_as_sent' => 'Le devis sélectionné a été envoyé avec succès',
|
||||||
'custom_module_settings' => 'Paramètres personnalisés de modules',
|
'custom_module_settings' => 'Paramètres personnalisés de modules',
|
||||||
'ticket' => 'Ticket',
|
|
||||||
'tickets' => 'Tickets',
|
|
||||||
'ticket_number' => 'Numéro de ticket',
|
|
||||||
'new_ticket' => 'Nouveau ticket',
|
|
||||||
'edit_ticket' => 'Mettre à jour le ticket',
|
|
||||||
'view_ticket' => 'Voir le ticket',
|
|
||||||
'archive_ticket' => 'Archiver le ticket',
|
|
||||||
'restore_ticket' => 'Restaurer le ticket',
|
|
||||||
'delete_ticket' => 'Supprimer le ticket',
|
|
||||||
'archived_ticket' => 'Ticket archivé avec succès',
|
|
||||||
'archived_tickets' => 'Tickets archivés avec succès',
|
|
||||||
'restored_ticket' => 'Ticket restauré avec succès',
|
|
||||||
'deleted_ticket' => 'Ticket supprimé avec succès',
|
|
||||||
'open' => 'Ouvrir',
|
'open' => 'Ouvrir',
|
||||||
'new' => 'Nouveau',
|
'new' => 'Nouveau',
|
||||||
'closed' => 'Fermé',
|
'closed' => 'Fermé',
|
||||||
@ -2909,14 +2896,6 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'assigned_to' => 'Assigné à',
|
'assigned_to' => 'Assigné à',
|
||||||
'reply' => 'Répondre',
|
'reply' => 'Répondre',
|
||||||
'awaiting_reply' => 'Attente de réponse',
|
'awaiting_reply' => 'Attente de réponse',
|
||||||
'ticket_close' => 'Fermer le ticket',
|
|
||||||
'ticket_reopen' => 'Ré-ouvrir le ticket',
|
|
||||||
'ticket_open' => 'Ouvrir un ticket',
|
|
||||||
'ticket_split' => 'Diviser le ticket',
|
|
||||||
'ticket_merge' => 'Fusionner les tickets',
|
|
||||||
'ticket_update' => 'Mettre à jour le ticket',
|
|
||||||
'ticket_settings' => 'Paramètres du ticket',
|
|
||||||
'updated_ticket' => 'Ticket mis à jour',
|
|
||||||
'mark_spam' => 'Indiqué comme spam',
|
'mark_spam' => 'Indiqué comme spam',
|
||||||
'local_part' => 'Partie locale',
|
'local_part' => 'Partie locale',
|
||||||
'local_part_unavailable' => 'Nom pris',
|
'local_part_unavailable' => 'Nom pris',
|
||||||
@ -2934,31 +2913,23 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'mime_types' => 'Type MIME',
|
'mime_types' => 'Type MIME',
|
||||||
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
||||||
'mime_types_help' => 'Liste séparée par une virgule pour les types MIME autorisés. Laisser vide pour tout autoriser',
|
'mime_types_help' => 'Liste séparée par une virgule pour les types MIME autorisés. Laisser vide pour tout autoriser',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'Priorité par défaut',
|
'default_priority' => 'Priorité par défaut',
|
||||||
'alert_new_comment_id' => 'Nouveau commentaire',
|
'alert_new_comment_id' => 'Nouveau commentaire',
|
||||||
'alert_comment_ticket_help' => 'En sélectionnant un modèle, une notification (à l\'agent) sera envoyée lorsqu\'un commentaire est posté',
|
|
||||||
'alert_comment_ticket_email_help' => 'E-mails séparés par une virgule pour CCI lors d\'un nouveau commentaire.',
|
|
||||||
'new_ticket_notification_list' => 'Notification de nouveaux tickets additionnel',
|
|
||||||
'update_ticket_notification_list' => 'Notification de nouveau comment additionnel',
|
'update_ticket_notification_list' => 'Notification de nouveau comment additionnel',
|
||||||
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
||||||
'alert_ticket_assign_agent_id' => 'Assignation de ticket',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'En sélectionnant un modèle, une notification (à l\'agent) sera envoyée lorsqu\'un billet est assigné.',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'Notification d\'assignation de ticket additionnel',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'E-mails séparés par une virgule pour CCI lors d\'un ticket assigné.',
|
|
||||||
'alert_ticket_transfer_email_help' => 'E-mails séparés par une virgule pour CCI lors d\'un ticket transféré.',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'Ticket en retard.',
|
|
||||||
'alert_ticket_overdue_email' => 'Notifications de billets en retard additionnels',
|
|
||||||
'alert_ticket_overdue_email_help' => 'E-mails séparés par une virgule pour CCI lors d\'un ticket en retard.',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'En sélectionnant un modèle, une notification (à l\'agent) sera envoyée lorsqu\'un ticket est en retard.',
|
|
||||||
'default_agent' => 'Agent par défaut',
|
'default_agent' => 'Agent par défaut',
|
||||||
'default_agent_help' => 'Cette sélection va automatiquement être assignée à tous les courriels entrants',
|
'default_agent_help' => 'Cette sélection va automatiquement être assignée à tous les courriels entrants',
|
||||||
'show_agent_details' => 'Afficher les informations de l\'agent dans les réponses',
|
'show_agent_details' => 'Afficher les informations de l\'agent dans les réponses',
|
||||||
'avatar' => 'Avatar',
|
'avatar' => 'Avatar',
|
||||||
'remove_avatar' => 'Enlever l\'avatar',
|
'remove_avatar' => 'Enlever l\'avatar',
|
||||||
'ticket_not_found' => 'Ticket non trouvé',
|
|
||||||
'add_template' => 'Ajouter un modèle',
|
'add_template' => 'Ajouter un modèle',
|
||||||
'updated_ticket_template' => 'Modèle de ticket mis à jour',
|
|
||||||
'created_ticket_template' => 'Modèle de ticket crée',
|
|
||||||
'archive_ticket_template' => 'Archiver modèle',
|
'archive_ticket_template' => 'Archiver modèle',
|
||||||
'restore_ticket_template' => 'Restaurer modèle',
|
'restore_ticket_template' => 'Restaurer modèle',
|
||||||
'archived_ticket_template' => 'Modèle archivé avec succès',
|
'archived_ticket_template' => 'Modèle archivé avec succès',
|
||||||
@ -3815,7 +3786,7 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'entity_number_placeholder' => ':entity # :entity_number',
|
'entity_number_placeholder' => ':entity # :entity_number',
|
||||||
'email_link_not_working' => 'Si le bouton ci-dessus ne fonctionne pas pour vous, veuillez cliquer sur le lien',
|
'email_link_not_working' => 'Si le bouton ci-dessus ne fonctionne pas pour vous, veuillez cliquer sur le lien',
|
||||||
'display_log' => 'Afficher les logs',
|
'display_log' => 'Afficher les logs',
|
||||||
'send_fail_logs_to_our_server' => 'Envoyer les erreurs à nos serveurs',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'Installation',
|
'setup' => 'Installation',
|
||||||
'quick_overview_statistics' => 'Aperçu rapide et statistiques',
|
'quick_overview_statistics' => 'Aperçu rapide et statistiques',
|
||||||
'update_your_personal_info' => 'Mettre à jour vos informations personnelles',
|
'update_your_personal_info' => 'Mettre à jour vos informations personnelles',
|
||||||
@ -5303,6 +5274,33 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'End Of Month',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -3783,7 +3783,7 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'entity_number_placeholder' => ':entity N° :entity_number',
|
'entity_number_placeholder' => ':entity N° :entity_number',
|
||||||
'email_link_not_working' => 'Si le bouton ci-dessus ne fonctionne pas correctement, cliquez sur le lien',
|
'email_link_not_working' => 'Si le bouton ci-dessus ne fonctionne pas correctement, cliquez sur le lien',
|
||||||
'display_log' => 'Afficher le registre',
|
'display_log' => 'Afficher le registre',
|
||||||
'send_fail_logs_to_our_server' => 'Rapporter les erreurs en temps réel',
|
'send_fail_logs_to_our_server' => 'Signalez les erreurs pour aider à l\'amélioration de l\'application',
|
||||||
'setup' => 'Configuration',
|
'setup' => 'Configuration',
|
||||||
'quick_overview_statistics' => 'Aperçu et statistiques',
|
'quick_overview_statistics' => 'Aperçu et statistiques',
|
||||||
'update_your_personal_info' => 'Mettre à jour vos infos personnelles',
|
'update_your_personal_info' => 'Mettre à jour vos infos personnelles',
|
||||||
@ -5283,7 +5283,22 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'remind_quote' => 'Rappel de soumission',
|
'remind_quote' => 'Rappel de soumission',
|
||||||
'end_of_month' => 'Fin de mois',
|
'end_of_month' => 'Fin de mois',
|
||||||
'tax_currency_mismatch' => 'La devise de la taxe est différente de la devise de la facture.',
|
'tax_currency_mismatch' => 'La devise de la taxe est différente de la devise de la facture.',
|
||||||
'edocument_import_already_exists' => '\nLa facture a déjà été importée le :date'
|
'edocument_import_already_exists' => 'La facture a déjà été importée le :date',
|
||||||
|
'before_valid_until' => 'Avant le Valide jusqu\'au',
|
||||||
|
'after_valid_until' => 'Après le Valide jusqu\'au',
|
||||||
|
'task_assigned_notification' => 'Notification d\'affectation de tâche',
|
||||||
|
'task_assigned_notification_help' => 'Encoyer un courriel lors de l\'attribution d\'une tâche',
|
||||||
|
'invoices_locked_end_of_month' => 'Factures verrouillées à la fin du mois',
|
||||||
|
'referral_url' => 'Code de référencement',
|
||||||
|
'add_comment' => 'Ajouter un commentaire',
|
||||||
|
'added_comment' => 'Le commentaire a été ajouté',
|
||||||
|
'tickets' => 'Billets',
|
||||||
|
'assigned_group' => 'Le groupe a été attribué',
|
||||||
|
'merge_to_pdf' => 'Fusionner avec le PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: La dernière version requiert PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Développer automatiquement les notes du tableau de produits',
|
||||||
|
'auto_expand_product_table_notes_help' => '
|
||||||
|
Développe automatiquement la section des notes dans le tableau de produits pour afficher plus de lignes.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
||||||
|
@ -32,7 +32,7 @@ $lang = array(
|
|||||||
'po_number' => 'N° de bon de commande',
|
'po_number' => 'N° de bon de commande',
|
||||||
'po_number_short' => 'Bon de commande n°',
|
'po_number_short' => 'Bon de commande n°',
|
||||||
'frequency_id' => 'Fréquence',
|
'frequency_id' => 'Fréquence',
|
||||||
'discount' => 'Escompte',
|
'discount' => 'Réduction',
|
||||||
'taxes' => 'Taxes',
|
'taxes' => 'Taxes',
|
||||||
'tax' => 'TVA',
|
'tax' => 'TVA',
|
||||||
'item' => 'Article',
|
'item' => 'Article',
|
||||||
@ -2194,7 +2194,7 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'mailgun_private_key' => 'Clé privée Mailgun',
|
'mailgun_private_key' => 'Clé privée Mailgun',
|
||||||
'brevo_domain' => 'Domaine de Brevo',
|
'brevo_domain' => 'Domaine de Brevo',
|
||||||
'brevo_private_key' => 'Clé privée Brevo',
|
'brevo_private_key' => 'Clé privée Brevo',
|
||||||
'send_test_email' => 'Send Test Email',
|
'send_test_email' => 'Envoyer un courriel test',
|
||||||
'select_label' => 'Sélectionnez le libellé',
|
'select_label' => 'Sélectionnez le libellé',
|
||||||
'label' => 'Libellé',
|
'label' => 'Libellé',
|
||||||
'service' => 'Service',
|
'service' => 'Service',
|
||||||
@ -2361,7 +2361,7 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'currency_gold_troy_ounce' => 'Once troy d'or',
|
'currency_gold_troy_ounce' => 'Once troy d'or',
|
||||||
'currency_nicaraguan_córdoba' => 'Cordoue nicaraguayenne',
|
'currency_nicaraguan_córdoba' => 'Cordoue nicaraguayenne',
|
||||||
'currency_malagasy_ariary' => 'Ariary malgache',
|
'currency_malagasy_ariary' => 'Ariary malgache',
|
||||||
"currency_tongan_pa_anga" => "Pa'anga tongien",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'Nous espérons que votre utilisation de cette application vous est agréable.<br/>Un commentaire de votre part serait grandement apprécié!',
|
'review_app_help' => 'Nous espérons que votre utilisation de cette application vous est agréable.<br/>Un commentaire de votre part serait grandement apprécié!',
|
||||||
'writing_a_review' => 'rédiger un commentaire',
|
'writing_a_review' => 'rédiger un commentaire',
|
||||||
@ -2877,19 +2877,6 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'refunded' => 'Remboursée',
|
'refunded' => 'Remboursée',
|
||||||
'marked_quote_as_sent' => 'L\'offre a été marqué comme envoyé avec succès',
|
'marked_quote_as_sent' => 'L\'offre a été marqué comme envoyé avec succès',
|
||||||
'custom_module_settings' => 'Paramètres personnalisés de modules',
|
'custom_module_settings' => 'Paramètres personnalisés de modules',
|
||||||
'ticket' => 'Billet',
|
|
||||||
'tickets' => 'Billets',
|
|
||||||
'ticket_number' => 'Billet #',
|
|
||||||
'new_ticket' => 'Nouveau billet',
|
|
||||||
'edit_ticket' => 'Éditer le billet',
|
|
||||||
'view_ticket' => 'Voir le billet',
|
|
||||||
'archive_ticket' => 'Archiver le billet',
|
|
||||||
'restore_ticket' => 'Restaurer le billet',
|
|
||||||
'delete_ticket' => 'Supprimer le billet',
|
|
||||||
'archived_ticket' => 'Le billet a été archivé avec succès',
|
|
||||||
'archived_tickets' => 'Les billets ont été archivés avec succès',
|
|
||||||
'restored_ticket' => 'Le billet a été restauré avec succès',
|
|
||||||
'deleted_ticket' => 'Le billet a été supprimé avec succès',
|
|
||||||
'open' => 'Ouvert',
|
'open' => 'Ouvert',
|
||||||
'new' => 'Nouveau',
|
'new' => 'Nouveau',
|
||||||
'closed' => 'Fermé',
|
'closed' => 'Fermé',
|
||||||
@ -2906,14 +2893,6 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'assigned_to' => 'Assigné à',
|
'assigned_to' => 'Assigné à',
|
||||||
'reply' => 'Répondre',
|
'reply' => 'Répondre',
|
||||||
'awaiting_reply' => 'En attente de réponse',
|
'awaiting_reply' => 'En attente de réponse',
|
||||||
'ticket_close' => 'Fermer le billet',
|
|
||||||
'ticket_reopen' => 'Réouvrir le billet',
|
|
||||||
'ticket_open' => 'Ouvrir le billet',
|
|
||||||
'ticket_split' => 'Scinder le billet',
|
|
||||||
'ticket_merge' => 'Fusionner le billet',
|
|
||||||
'ticket_update' => 'Mettre à jour le billet',
|
|
||||||
'ticket_settings' => 'Paramètres des billets',
|
|
||||||
'updated_ticket' => 'Billet mis à jour',
|
|
||||||
'mark_spam' => 'Marquer comme spam',
|
'mark_spam' => 'Marquer comme spam',
|
||||||
'local_part' => 'Partie locale',
|
'local_part' => 'Partie locale',
|
||||||
'local_part_unavailable' => 'Nom déjà pris',
|
'local_part_unavailable' => 'Nom déjà pris',
|
||||||
@ -2931,31 +2910,23 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'mime_types' => 'Type MIME',
|
'mime_types' => 'Type MIME',
|
||||||
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
||||||
'mime_types_help' => 'Liste séparée par une virgule pour les types MIME autorisés. Laissant vide pour tout autoriser',
|
'mime_types_help' => 'Liste séparée par une virgule pour les types MIME autorisés. Laissant vide pour tout autoriser',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'Nouveau ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Ticket mis à jour',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Ticket fermé',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'Priorité par défaut',
|
'default_priority' => 'Priorité par défaut',
|
||||||
'alert_new_comment_id' => 'Nouveau commentaire',
|
'alert_new_comment_id' => 'Nouveau commentaire',
|
||||||
'alert_comment_ticket_help' => 'En sélectionnant un modèle, une notification (à l\'agent) sera envoyée lorsqu\'un commentaire est fait',
|
|
||||||
'alert_comment_ticket_email_help' => 'Courriels séparés par une virgule pour CCI sur un nouveau commentaire.',
|
|
||||||
'new_ticket_notification_list' => 'Notifications de nouveaux billets additionnels',
|
|
||||||
'update_ticket_notification_list' => 'Notifications de nouveaux commentaires additionnels',
|
'update_ticket_notification_list' => 'Notifications de nouveaux commentaires additionnels',
|
||||||
'comma_separated_values' => 'admin@exemple.com, supervisor@exemple.com',
|
'comma_separated_values' => 'admin@exemple.com, supervisor@exemple.com',
|
||||||
'alert_ticket_assign_agent_id' => 'Assignation de billet',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'En sélectionnant un modèle, une notification (à l\'agent) sera envoyée lorsqu\'un billet est assigné.',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'Notifications de billets assignés additionnels',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'Courriels séparés par une virgule pour CCI pour un billet assigné.',
|
|
||||||
'alert_ticket_transfer_email_help' => 'Courriels séparés par une virgule pour CCI sur un billet transféré.',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'Billet en retard',
|
|
||||||
'alert_ticket_overdue_email' => 'Notifications de billets en retard additionnels',
|
|
||||||
'alert_ticket_overdue_email_help' => 'Courriels séparés par une virgule pour CCI sur un billet en retard.',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'En sélectionnant un modèle, une notification (à l\'agent) sera envoyée lorsqu\'un billet est en retard.',
|
|
||||||
'default_agent' => 'Agent par défaut',
|
'default_agent' => 'Agent par défaut',
|
||||||
'default_agent_help' => 'Cette sélection va automatiquement être assignée à tous les courriels entrants',
|
'default_agent_help' => 'Cette sélection va automatiquement être assignée à tous les courriels entrants',
|
||||||
'show_agent_details' => 'Afficher les informations de l\'agent dans les réponses',
|
'show_agent_details' => 'Afficher les informations de l\'agent dans les réponses',
|
||||||
'avatar' => 'Avatar',
|
'avatar' => 'Avatar',
|
||||||
'remove_avatar' => 'Retirer l\'avatar',
|
'remove_avatar' => 'Retirer l\'avatar',
|
||||||
'ticket_not_found' => 'Billet introuvable',
|
|
||||||
'add_template' => 'Ajouter un modèle',
|
'add_template' => 'Ajouter un modèle',
|
||||||
'updated_ticket_template' => 'Modèle de billets mise à jour',
|
|
||||||
'created_ticket_template' => 'Modèle de billet créés',
|
|
||||||
'archive_ticket_template' => 'Archiver le modèle',
|
'archive_ticket_template' => 'Archiver le modèle',
|
||||||
'restore_ticket_template' => 'Restaurer le modèle',
|
'restore_ticket_template' => 'Restaurer le modèle',
|
||||||
'archived_ticket_template' => 'Le modèle a été archivé avec succès',
|
'archived_ticket_template' => 'Le modèle a été archivé avec succès',
|
||||||
@ -3812,7 +3783,7 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'entity_number_placeholder' => ':entity N° :entity_number',
|
'entity_number_placeholder' => ':entity N° :entity_number',
|
||||||
'email_link_not_working' => 'Si le bouton ci-dessus ne fonctionne pas correctement, cliquez sur le lien',
|
'email_link_not_working' => 'Si le bouton ci-dessus ne fonctionne pas correctement, cliquez sur le lien',
|
||||||
'display_log' => 'Afficher le registre',
|
'display_log' => 'Afficher le registre',
|
||||||
'send_fail_logs_to_our_server' => 'Rapporter les erreurs en temps réel',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'Configuration',
|
'setup' => 'Configuration',
|
||||||
'quick_overview_statistics' => 'Aperçu et statistiques',
|
'quick_overview_statistics' => 'Aperçu et statistiques',
|
||||||
'update_your_personal_info' => 'Mettre à jour vos infos personnelles',
|
'update_your_personal_info' => 'Mettre à jour vos infos personnelles',
|
||||||
@ -4134,7 +4105,7 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'one_time_purchases' => 'Achat définitif',
|
'one_time_purchases' => 'Achat définitif',
|
||||||
'recurring_purchases' => 'Achat récurrent',
|
'recurring_purchases' => 'Achat récurrent',
|
||||||
'you_might_be_interested_in_following' => 'Ceci pourrait vous intéresser',
|
'you_might_be_interested_in_following' => 'Ceci pourrait vous intéresser',
|
||||||
'quotes_with_status_sent_can_be_approved' => 'Only quotes with "Sent" status can be approved. Expired quotes cannot be approved.',
|
'quotes_with_status_sent_can_be_approved' => 'Seules les offres avec l\'état "Envoyée" peuvent être approuvées. Les offres expirées ne peuvent pas être approuver.',
|
||||||
'no_quotes_available_for_download' => 'Aucune offre disponible pour le téléchargement.',
|
'no_quotes_available_for_download' => 'Aucune offre disponible pour le téléchargement.',
|
||||||
'copyright' => 'Droits d\'auteur',
|
'copyright' => 'Droits d\'auteur',
|
||||||
'user_created_user' => ':user a créé :created_user à :time',
|
'user_created_user' => ':user a créé :created_user à :time',
|
||||||
@ -5262,44 +5233,71 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
|
|||||||
'assign_group' => 'Attribuer un groupe',
|
'assign_group' => 'Attribuer un groupe',
|
||||||
'paypal_advanced_cards' => 'Advanced Card Payments',
|
'paypal_advanced_cards' => 'Advanced Card Payments',
|
||||||
'local_domain_help' => 'EHLO domain (optional)',
|
'local_domain_help' => 'EHLO domain (optional)',
|
||||||
'port_help' => 'ie. 25,587,465',
|
'port_help' => 'ex. 25,587,465',
|
||||||
'host_help' => 'ie. smtp.gmail.com',
|
'host_help' => 'ex. smtp.gmail.com',
|
||||||
'always_show_required_fields' => 'Allows show required fields form',
|
'always_show_required_fields' => 'Permet l\'affichage des champs requis d\'un formulaire',
|
||||||
'always_show_required_fields_help' => 'Displays the required fields form always at checkout',
|
'always_show_required_fields_help' => 'Displays the required fields form always at checkout',
|
||||||
'advanced_cards' => 'Advanced Cards',
|
'advanced_cards' => 'Advanced Cards',
|
||||||
'activity_140' => 'Statement sent to :client',
|
'activity_140' => 'Statement sent to :client',
|
||||||
'invoice_net_amount' => 'Invoice Net Amount',
|
'invoice_net_amount' => 'Montant hors taxe de la facture',
|
||||||
'round_to_minutes' => 'Round To Minutes',
|
'round_to_minutes' => 'Arrondir aux minutes',
|
||||||
'1_second' => '1 Second',
|
'1_second' => '1 seconde',
|
||||||
'1_minute' => '1 Minute',
|
'1_minute' => '1 minute',
|
||||||
'5_minutes' => '5 Minutes',
|
'5_minutes' => '5 minutes',
|
||||||
'15_minutes' => '15 Minutes',
|
'15_minutes' => '15 minutes',
|
||||||
'30_minutes' => '30 Minutes',
|
'30_minutes' => '30 minutes',
|
||||||
'1_hour' => '1 Hour',
|
'1_hour' => '1 heure',
|
||||||
'1_day' => '1 Day',
|
'1_day' => '1 jour',
|
||||||
'round_tasks' => 'Task Rounding Direction',
|
'round_tasks' => 'Task Rounding Direction',
|
||||||
'round_tasks_help' => 'Round task times up or down.',
|
'round_tasks_help' => 'Arrondir les temps des tâches vers le haut ou vers le bas',
|
||||||
'direction' => 'Direction',
|
'direction' => 'Direction',
|
||||||
'round_up' => 'Round Up',
|
'round_up' => 'Arrondir à hausse',
|
||||||
'round_down' => 'Round Down',
|
'round_down' => 'Arrondir à la baisse',
|
||||||
'task_round_to_nearest' => 'Round To Nearest',
|
'task_round_to_nearest' => 'Arrondir au plus près',
|
||||||
'task_round_to_nearest_help' => 'The interval to round the task to.',
|
'task_round_to_nearest_help' => 'Intervalle d\'arrondi des tâches',
|
||||||
'bulk_updated' => 'Successfully updated data',
|
'bulk_updated' => 'Les données ont été mises à jour',
|
||||||
'bulk_update' => 'Bulk Update',
|
'bulk_update' => 'Mise à jour groupée',
|
||||||
'calculate' => 'Calculate',
|
'calculate' => 'Calculer',
|
||||||
'sum' => 'Sum',
|
'sum' => 'Somme',
|
||||||
'money' => 'Money',
|
'money' => 'Argent',
|
||||||
'web_app' => 'Web App',
|
'web_app' => 'App web',
|
||||||
'desktop_app' => 'Desktop App',
|
'desktop_app' => 'Desktop App',
|
||||||
'disconnected' => 'Disconnected',
|
'disconnected' => 'Déconnecté',
|
||||||
'reconnect' => 'Reconnect',
|
'reconnect' => 'Reconnection',
|
||||||
'e_invoice_settings' => 'E-Invoice Settings',
|
'e_invoice_settings' => 'Paramètres E-Facture',
|
||||||
'btcpay_refund_subject' => 'Refund of your invoice via BTCPay',
|
'btcpay_refund_subject' => 'Refund of your invoice via BTCPay',
|
||||||
'btcpay_refund_body' => 'A refund intended for you has been issued. To claim it via BTCPay, please click on this link:',
|
'btcpay_refund_body' => 'A refund intended for you has been issued. To claim it via BTCPay, please click on this link:',
|
||||||
'currency_mauritanian_ouguiya' => 'Mauritanian Ouguiya',
|
'currency_mauritanian_ouguiya' => 'Mauritanian Ouguiya',
|
||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'Fin du mois',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Fusionner E-Facture et PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'Premier rappel pour l\'offre',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'Fin du mois',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -2362,7 +2362,7 @@ $lang = array(
|
|||||||
'currency_gold_troy_ounce' => 'זהב טרוי אונקה',
|
'currency_gold_troy_ounce' => 'זהב טרוי אונקה',
|
||||||
'currency_nicaraguan_córdoba' => 'קורדובה ניקרגואה',
|
'currency_nicaraguan_córdoba' => 'קורדובה ניקרגואה',
|
||||||
'currency_malagasy_ariary' => 'ארית מלגזית',
|
'currency_malagasy_ariary' => 'ארית מלגזית',
|
||||||
"currency_tongan_pa_anga" => "פאאנגה טונגנית",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'We hope you\'re enjoying using the app.<br/>If you\'d consider :link we\'d greatly appreciate it!',
|
'review_app_help' => 'We hope you\'re enjoying using the app.<br/>If you\'d consider :link we\'d greatly appreciate it!',
|
||||||
'writing_a_review' => 'writing a review',
|
'writing_a_review' => 'writing a review',
|
||||||
@ -2878,19 +2878,6 @@ $lang = array(
|
|||||||
'refunded' => 'הוחזר',
|
'refunded' => 'הוחזר',
|
||||||
'marked_quote_as_sent' => 'ציטוט סומן בהצלחה כנשלח',
|
'marked_quote_as_sent' => 'ציטוט סומן בהצלחה כנשלח',
|
||||||
'custom_module_settings' => 'Custom Module Settings',
|
'custom_module_settings' => 'Custom Module Settings',
|
||||||
'ticket' => 'כַּרְטִיס',
|
|
||||||
'tickets' => 'כרטיסים',
|
|
||||||
'ticket_number' => 'כרטיס מס'',
|
|
||||||
'new_ticket' => 'כרטיס חדש',
|
|
||||||
'edit_ticket' => 'ערוך כרטיס',
|
|
||||||
'view_ticket' => 'צפה בכרטיס',
|
|
||||||
'archive_ticket' => 'כרטיס ארכיון',
|
|
||||||
'restore_ticket' => 'שחזור כרטיס',
|
|
||||||
'delete_ticket' => 'מחק כרטיס',
|
|
||||||
'archived_ticket' => 'הכרטיס הועבר לארכיון בהצלחה',
|
|
||||||
'archived_tickets' => 'הכרטיסים הועברו לארכיון בהצלחה',
|
|
||||||
'restored_ticket' => 'הכרטיס שוחזר בהצלחה',
|
|
||||||
'deleted_ticket' => 'הכרטיס נמחק בהצלחה',
|
|
||||||
'open' => 'לִפְתוֹחַ',
|
'open' => 'לִפְתוֹחַ',
|
||||||
'new' => 'חָדָשׁ',
|
'new' => 'חָדָשׁ',
|
||||||
'closed' => 'סָגוּר',
|
'closed' => 'סָגוּר',
|
||||||
@ -2907,14 +2894,6 @@ $lang = array(
|
|||||||
'assigned_to' => 'שהוקצה ל',
|
'assigned_to' => 'שהוקצה ל',
|
||||||
'reply' => 'תשובה',
|
'reply' => 'תשובה',
|
||||||
'awaiting_reply' => 'ממתין לתגובה',
|
'awaiting_reply' => 'ממתין לתגובה',
|
||||||
'ticket_close' => 'סגור את הכרטיס',
|
|
||||||
'ticket_reopen' => 'פתח מחדש את הכרטיס',
|
|
||||||
'ticket_open' => 'כרטיס פתוח',
|
|
||||||
'ticket_split' => 'כרטיס מפוצל',
|
|
||||||
'ticket_merge' => 'מיזוג כרטיס',
|
|
||||||
'ticket_update' => 'עדכון כרטיס',
|
|
||||||
'ticket_settings' => 'הגדרות כרטיס',
|
|
||||||
'updated_ticket' => 'הכרטיס עודכן',
|
|
||||||
'mark_spam' => 'סמן כספאם',
|
'mark_spam' => 'סמן כספאם',
|
||||||
'local_part' => 'חלק מקומי',
|
'local_part' => 'חלק מקומי',
|
||||||
'local_part_unavailable' => 'השם נלקח',
|
'local_part_unavailable' => 'השם נלקח',
|
||||||
@ -2932,31 +2911,23 @@ $lang = array(
|
|||||||
'mime_types' => 'סוגי פנטומימה',
|
'mime_types' => 'סוגי פנטומימה',
|
||||||
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
||||||
'mime_types_help' => 'רשימה מופרדת בפסיק של סוגי פנטומימאי מותרים, השאר ריק עבור כולם',
|
'mime_types_help' => 'רשימה מופרדת בפסיק של סוגי פנטומימאי מותרים, השאר ריק עבור כולם',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'עדיפות ברירת מחדל',
|
'default_priority' => 'עדיפות ברירת מחדל',
|
||||||
'alert_new_comment_id' => 'תגובה חדשה',
|
'alert_new_comment_id' => 'תגובה חדשה',
|
||||||
'alert_comment_ticket_help' => 'בחירת תבנית תשלח הודעה (לסוכן) עם הערה.',
|
|
||||||
'alert_comment_ticket_email_help' => 'הודעות דוא"ל מופרדות בפסיק לעותק מוסתר בהערה חדשה.',
|
|
||||||
'new_ticket_notification_list' => 'הודעות נוספות על כרטיסים חדשים',
|
|
||||||
'update_ticket_notification_list' => 'התראות נוספות על הערות חדשות',
|
'update_ticket_notification_list' => 'התראות נוספות על הערות חדשות',
|
||||||
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
||||||
'alert_ticket_assign_agent_id' => 'הקצאת כרטיסים',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'Selecting a template will send a notification (to agent) when a ticket is assigned.',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'הודעות נוספות שהוקצו לכרטיסים',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'הודעות דוא"ל מופרדות בפסיק לעותק מוסתר בהקצאת כרטיס.',
|
|
||||||
'alert_ticket_transfer_email_help' => 'הודעות דוא"ל מופרדות בפסיק לעותק מוסתר בהעברת כרטיס.',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'כרטיס איחור',
|
|
||||||
'alert_ticket_overdue_email' => 'הודעות נוספות על כרטיס איחור',
|
|
||||||
'alert_ticket_overdue_email_help' => 'הודעות דוא"ל מופרדות בפסיק לעותק מוסתר על איחור בכרטיס.',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'Selecting a template will send a notification (to agent) when a ticket becomes overdue.',
|
|
||||||
'default_agent' => 'סוכן ברירת מחדל',
|
'default_agent' => 'סוכן ברירת מחדל',
|
||||||
'default_agent_help' => 'If selected will automatically be assigned to all inbound tickets',
|
'default_agent_help' => 'If selected will automatically be assigned to all inbound tickets',
|
||||||
'show_agent_details' => 'הצג פרטי סוכן בתגובות',
|
'show_agent_details' => 'הצג פרטי סוכן בתגובות',
|
||||||
'avatar' => 'גִלגוּל',
|
'avatar' => 'גִלגוּל',
|
||||||
'remove_avatar' => 'הסר את הדמות',
|
'remove_avatar' => 'הסר את הדמות',
|
||||||
'ticket_not_found' => 'הכרטיס לא נמצא',
|
|
||||||
'add_template' => 'הוסף תבנית',
|
'add_template' => 'הוסף תבנית',
|
||||||
'updated_ticket_template' => 'תבנית כרטיס מעודכנת',
|
|
||||||
'created_ticket_template' => 'נוצר תבנית כרטיס',
|
|
||||||
'archive_ticket_template' => 'תבנית ארכיון',
|
'archive_ticket_template' => 'תבנית ארכיון',
|
||||||
'restore_ticket_template' => 'שחזר תבנית',
|
'restore_ticket_template' => 'שחזר תבנית',
|
||||||
'archived_ticket_template' => 'תבנית הועברה לארכיון בהצלחה',
|
'archived_ticket_template' => 'תבנית הועברה לארכיון בהצלחה',
|
||||||
@ -3813,7 +3784,7 @@ $lang = array(
|
|||||||
'entity_number_placeholder' => ':entity # :entity_number',
|
'entity_number_placeholder' => ':entity # :entity_number',
|
||||||
'email_link_not_working' => 'If the button above isn\'t working for you, please click on the link',
|
'email_link_not_working' => 'If the button above isn\'t working for you, please click on the link',
|
||||||
'display_log' => 'הצג יומן',
|
'display_log' => 'הצג יומן',
|
||||||
'send_fail_logs_to_our_server' => 'דווח על שגיאות בזמן אמת',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'להכין',
|
'setup' => 'להכין',
|
||||||
'quick_overview_statistics' => 'סקירה מהירה וסטטיסטיקה',
|
'quick_overview_statistics' => 'סקירה מהירה וסטטיסטיקה',
|
||||||
'update_your_personal_info' => 'עדכן את המידע האישי שלך',
|
'update_your_personal_info' => 'עדכן את המידע האישי שלך',
|
||||||
@ -5301,6 +5272,33 @@ $lang = array(
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'End Of Month',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -2348,7 +2348,7 @@ adva :date',
|
|||||||
'currency_gold_troy_ounce' => 'Arany Troy Unce',
|
'currency_gold_troy_ounce' => 'Arany Troy Unce',
|
||||||
'currency_nicaraguan_córdoba' => 'nicaraguai Córdoba',
|
'currency_nicaraguan_córdoba' => 'nicaraguai Córdoba',
|
||||||
'currency_malagasy_ariary' => 'madagaszkári ariary',
|
'currency_malagasy_ariary' => 'madagaszkári ariary',
|
||||||
"currency_tongan_pa_anga" => "Tonga Pa'anga",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'Segítség az értékeléshez',
|
'review_app_help' => 'Segítség az értékeléshez',
|
||||||
'writing_a_review' => 'Értékelés írása',
|
'writing_a_review' => 'Értékelés írása',
|
||||||
@ -2864,19 +2864,6 @@ adva :date',
|
|||||||
'refunded' => 'Visszatérített',
|
'refunded' => 'Visszatérített',
|
||||||
'marked_quote_as_sent' => 'Az árajánlatot elküldöttnek jelölte',
|
'marked_quote_as_sent' => 'Az árajánlatot elküldöttnek jelölte',
|
||||||
'custom_module_settings' => 'Egyedi modul beállítások',
|
'custom_module_settings' => 'Egyedi modul beállítások',
|
||||||
'ticket' => 'Jegy',
|
|
||||||
'tickets' => 'Jegyek',
|
|
||||||
'ticket_number' => 'Jegy száma',
|
|
||||||
'new_ticket' => 'Új jegy',
|
|
||||||
'edit_ticket' => 'Jegy szerkesztése',
|
|
||||||
'view_ticket' => 'Jegy megtekintése',
|
|
||||||
'archive_ticket' => 'Jegy archiválása',
|
|
||||||
'restore_ticket' => 'Jegy visszaállítása',
|
|
||||||
'delete_ticket' => 'Jegy törlése',
|
|
||||||
'archived_ticket' => 'Archivált jegy',
|
|
||||||
'archived_tickets' => 'Archivált jegyek',
|
|
||||||
'restored_ticket' => 'Visszaállított jegy',
|
|
||||||
'deleted_ticket' => 'Törölt jegy',
|
|
||||||
'open' => 'Nyitott',
|
'open' => 'Nyitott',
|
||||||
'new' => 'Új',
|
'new' => 'Új',
|
||||||
'closed' => 'Lezárva',
|
'closed' => 'Lezárva',
|
||||||
@ -2893,14 +2880,6 @@ adva :date',
|
|||||||
'assigned_to' => 'Hozzárendelve:',
|
'assigned_to' => 'Hozzárendelve:',
|
||||||
'reply' => 'Válasz',
|
'reply' => 'Válasz',
|
||||||
'awaiting_reply' => 'Válaszra vár',
|
'awaiting_reply' => 'Válaszra vár',
|
||||||
'ticket_close' => 'Jegy lezárása',
|
|
||||||
'ticket_reopen' => 'Jegy újranyitása',
|
|
||||||
'ticket_open' => 'Jegy megnyitása',
|
|
||||||
'ticket_split' => 'Jegy szétválasztása',
|
|
||||||
'ticket_merge' => 'Jegy összevonása',
|
|
||||||
'ticket_update' => 'Jegy frissítése',
|
|
||||||
'ticket_settings' => 'Jegy beállítások',
|
|
||||||
'updated_ticket' => 'Frissített jegy',
|
|
||||||
'mark_spam' => 'Spamként jelöl',
|
'mark_spam' => 'Spamként jelöl',
|
||||||
'local_part' => 'Helyi rész',
|
'local_part' => 'Helyi rész',
|
||||||
'local_part_unavailable' => 'A helyi rész már foglalt',
|
'local_part_unavailable' => 'A helyi rész már foglalt',
|
||||||
@ -2918,31 +2897,23 @@ adva :date',
|
|||||||
'mime_types' => 'MIME típusok',
|
'mime_types' => 'MIME típusok',
|
||||||
'mime_types_placeholder' => '.pdf, .docx, stb.',
|
'mime_types_placeholder' => '.pdf, .docx, stb.',
|
||||||
'mime_types_help' => 'Példa MIME típusok: .pdf, .docx, .png',
|
'mime_types_help' => 'Példa MIME típusok: .pdf, .docx, .png',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'Alapértelmezett prioritás',
|
'default_priority' => 'Alapértelmezett prioritás',
|
||||||
'alert_new_comment_id' => 'Értesítés új megjegyzésről',
|
'alert_new_comment_id' => 'Értesítés új megjegyzésről',
|
||||||
'alert_comment_ticket_help' => 'Az új megjegyzésre adott értesítés kiválasztott sablonja',
|
|
||||||
'alert_comment_ticket_email_help' => 'Az új megjegyzésre adott értesítés e-mailben történő kiküldésének beállítása',
|
|
||||||
'new_ticket_notification_list' => 'Új jegy értesítési lista',
|
|
||||||
'update_ticket_notification_list' => 'Jegy frissítés értesítési lista',
|
'update_ticket_notification_list' => 'Jegy frissítés értesítési lista',
|
||||||
'comma_separated_values' => 'Vesszővel elválasztott értékek',
|
'comma_separated_values' => 'Vesszővel elválasztott értékek',
|
||||||
'alert_ticket_assign_agent_id' => 'Értesítés jegy hozzárendeléséről',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'Az ügynöknek történő jegy hozzárendelésre adott értesítés kiválasztott sablonja',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'Az ügynöknek történő jegy hozzárendelésre adott értesítések küldése',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'Értesítés küldése, amikor egy ügynöknek hozzárendelik a jegyet',
|
|
||||||
'alert_ticket_transfer_email_help' => 'Az értesítés küldése, amikor egy jegyet átvisznek egy másik ügynökhöz',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'Értesítés lejárt jegyről',
|
|
||||||
'alert_ticket_overdue_email' => 'Lejárt jegy e-mail értesítés',
|
|
||||||
'alert_ticket_overdue_email_help' => 'Az értesítés küldése, amikor egy jegy lejár',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'Az ügynöknek történő értesítés küldése, amikor egy jegy lejár',
|
|
||||||
'default_agent' => 'Alapértelmezett ügynök',
|
'default_agent' => 'Alapértelmezett ügynök',
|
||||||
'default_agent_help' => 'Az új jegyekhez rendelt alapértelmezett ügynök',
|
'default_agent_help' => 'Az új jegyekhez rendelt alapértelmezett ügynök',
|
||||||
'show_agent_details' => 'Ügynök részleteinek megjelenítése',
|
'show_agent_details' => 'Ügynök részleteinek megjelenítése',
|
||||||
'avatar' => 'Profilkép',
|
'avatar' => 'Profilkép',
|
||||||
'remove_avatar' => 'Profilkép eltávolítása',
|
'remove_avatar' => 'Profilkép eltávolítása',
|
||||||
'ticket_not_found' => 'A jegy nem található',
|
|
||||||
'add_template' => 'Sablon hozzáadása',
|
'add_template' => 'Sablon hozzáadása',
|
||||||
'updated_ticket_template' => 'Frissített jegy sablon',
|
|
||||||
'created_ticket_template' => 'Létrehozott jegy sablon',
|
|
||||||
'archive_ticket_template' => 'Jegy sablon archiválása',
|
'archive_ticket_template' => 'Jegy sablon archiválása',
|
||||||
'restore_ticket_template' => 'Jegy sablon visszaállítása',
|
'restore_ticket_template' => 'Jegy sablon visszaállítása',
|
||||||
'archived_ticket_template' => 'Archivált jegy sablon',
|
'archived_ticket_template' => 'Archivált jegy sablon',
|
||||||
@ -3799,7 +3770,7 @@ adva :date',
|
|||||||
'entity_number_placeholder' => 'Entitás szám helykitöltő',
|
'entity_number_placeholder' => 'Entitás szám helykitöltő',
|
||||||
'email_link_not_working' => 'Az e-mail link nem működik',
|
'email_link_not_working' => 'Az e-mail link nem működik',
|
||||||
'display_log' => 'Napló megjelenítése',
|
'display_log' => 'Napló megjelenítése',
|
||||||
'send_fail_logs_to_our_server' => 'Küldje el a hibajegyzéket a szerverünkre',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'Beállítás',
|
'setup' => 'Beállítás',
|
||||||
'quick_overview_statistics' => 'Gyors áttekintő statisztikák',
|
'quick_overview_statistics' => 'Gyors áttekintő statisztikák',
|
||||||
'update_your_personal_info' => 'Frissítse személyes adatait',
|
'update_your_personal_info' => 'Frissítse személyes adatait',
|
||||||
@ -5287,6 +5258,33 @@ adva :date',
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'End Of Month',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -2355,7 +2355,7 @@ $lang = array(
|
|||||||
'currency_gold_troy_ounce' => 'Oncia Troy d'oro',
|
'currency_gold_troy_ounce' => 'Oncia Troy d'oro',
|
||||||
'currency_nicaraguan_córdoba' => 'Cordova nicaraguense',
|
'currency_nicaraguan_córdoba' => 'Cordova nicaraguense',
|
||||||
'currency_malagasy_ariary' => 'Ariary malgascio',
|
'currency_malagasy_ariary' => 'Ariary malgascio',
|
||||||
"currency_tongan_pa_anga" => "Tongano Pa'anga",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'Ci auguriamo che ti piaccia usare l'app.<br/> Se prendessi in considerazione :link lo apprezzeremmo molto!',
|
'review_app_help' => 'Ci auguriamo che ti piaccia usare l'app.<br/> Se prendessi in considerazione :link lo apprezzeremmo molto!',
|
||||||
'writing_a_review' => 'scrivendo una recensione',
|
'writing_a_review' => 'scrivendo una recensione',
|
||||||
@ -2871,19 +2871,6 @@ $lang = array(
|
|||||||
'refunded' => 'Rimborsato',
|
'refunded' => 'Rimborsato',
|
||||||
'marked_quote_as_sent' => 'Preventivo contrassegnato come inviato con successo',
|
'marked_quote_as_sent' => 'Preventivo contrassegnato come inviato con successo',
|
||||||
'custom_module_settings' => 'Impostazioni modulo personalizzate',
|
'custom_module_settings' => 'Impostazioni modulo personalizzate',
|
||||||
'ticket' => 'Ticket',
|
|
||||||
'tickets' => 'Tickets',
|
|
||||||
'ticket_number' => 'Ticket #',
|
|
||||||
'new_ticket' => 'Nuovo Ticket',
|
|
||||||
'edit_ticket' => 'Modifica Ticket',
|
|
||||||
'view_ticket' => 'Vedi Ticket',
|
|
||||||
'archive_ticket' => 'Archivia Ticket',
|
|
||||||
'restore_ticket' => 'Ripristina Ticket',
|
|
||||||
'delete_ticket' => 'Elimina Ticket',
|
|
||||||
'archived_ticket' => 'Ticket archiviato con successo',
|
|
||||||
'archived_tickets' => 'Ticket archiviati con successo',
|
|
||||||
'restored_ticket' => 'Ticket ripristinato con successo',
|
|
||||||
'deleted_ticket' => 'Biglietto cancellato con successo',
|
|
||||||
'open' => 'Apri',
|
'open' => 'Apri',
|
||||||
'new' => 'Nuovo',
|
'new' => 'Nuovo',
|
||||||
'closed' => 'Chiuso',
|
'closed' => 'Chiuso',
|
||||||
@ -2900,14 +2887,6 @@ $lang = array(
|
|||||||
'assigned_to' => 'Assegnato a',
|
'assigned_to' => 'Assegnato a',
|
||||||
'reply' => 'Rispondi',
|
'reply' => 'Rispondi',
|
||||||
'awaiting_reply' => 'In attesa di risposta',
|
'awaiting_reply' => 'In attesa di risposta',
|
||||||
'ticket_close' => 'Chiudi Ticket',
|
|
||||||
'ticket_reopen' => 'Riapri Ticket',
|
|
||||||
'ticket_open' => 'Apri Ticket',
|
|
||||||
'ticket_split' => 'Dividi Ticket',
|
|
||||||
'ticket_merge' => 'Unisci Ticket',
|
|
||||||
'ticket_update' => 'Aggiorna Ticket',
|
|
||||||
'ticket_settings' => 'Impostazioni Ticket',
|
|
||||||
'updated_ticket' => 'Ticket Aggiornato',
|
|
||||||
'mark_spam' => 'Segnala come Spam',
|
'mark_spam' => 'Segnala come Spam',
|
||||||
'local_part' => 'Parte Locale',
|
'local_part' => 'Parte Locale',
|
||||||
'local_part_unavailable' => 'Nome già preso',
|
'local_part_unavailable' => 'Nome già preso',
|
||||||
@ -2925,31 +2904,23 @@ $lang = array(
|
|||||||
'mime_types' => 'Tipi file MIME',
|
'mime_types' => 'Tipi file MIME',
|
||||||
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
||||||
'mime_types_help' => 'Elenco separato da virgole dei tipi mime consentiti, lasciare vuoto per tutti',
|
'mime_types_help' => 'Elenco separato da virgole dei tipi mime consentiti, lasciare vuoto per tutti',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'Priorità predefinita',
|
'default_priority' => 'Priorità predefinita',
|
||||||
'alert_new_comment_id' => 'Nuovo commento',
|
'alert_new_comment_id' => 'Nuovo commento',
|
||||||
'alert_comment_ticket_help' => 'Selezionando un modello, verrà inviata una notifica (all\'agente) quando viene fatto un commento.',
|
|
||||||
'alert_comment_ticket_email_help' => 'Email separate da virgole a bcc su un nuovo commento.',
|
|
||||||
'new_ticket_notification_list' => 'Notifiche aggiuntive di nuovi ticket',
|
|
||||||
'update_ticket_notification_list' => 'Notifiche aggiuntive di nuovi commenti',
|
'update_ticket_notification_list' => 'Notifiche aggiuntive di nuovi commenti',
|
||||||
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
||||||
'alert_ticket_assign_agent_id' => 'Assegnazione ticket',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'Selezionando un modello verrà inviata una notifica (all\'agente) quando un ticket viene assegnato.',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'Notifiche aggiuntive assegnate ai ticket',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'Email separate da virgole a bcc sull'assegnazione del ticket.',
|
|
||||||
'alert_ticket_transfer_email_help' => 'Email separate da virgole a bcc sul trasferimento del biglietto.',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'Ticket scaduto',
|
|
||||||
'alert_ticket_overdue_email' => 'Ulteriori notifiche di ticket scaduti',
|
|
||||||
'alert_ticket_overdue_email_help' => 'Email separate da virgole a bcc su ticket scaduti.',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'Selezionando un modello invierà una notifica (all\'agente) quando un ticket va in scadenza.',
|
|
||||||
'default_agent' => 'Agente predefinito',
|
'default_agent' => 'Agente predefinito',
|
||||||
'default_agent_help' => 'Se selezionato sarà automaticamente assegnato a tutti i ticket in entrata',
|
'default_agent_help' => 'Se selezionato sarà automaticamente assegnato a tutti i ticket in entrata',
|
||||||
'show_agent_details' => 'Mostra i dettagli dell\'agente sulle risposte',
|
'show_agent_details' => 'Mostra i dettagli dell\'agente sulle risposte',
|
||||||
'avatar' => 'Avatar',
|
'avatar' => 'Avatar',
|
||||||
'remove_avatar' => 'Rimuovi avatar',
|
'remove_avatar' => 'Rimuovi avatar',
|
||||||
'ticket_not_found' => 'Ticket non trovato',
|
|
||||||
'add_template' => 'Aggiungi Modello',
|
'add_template' => 'Aggiungi Modello',
|
||||||
'updated_ticket_template' => 'Modello Ticket Aggiornato',
|
|
||||||
'created_ticket_template' => 'Modello Ticket Creato',
|
|
||||||
'archive_ticket_template' => 'Archivia il modello',
|
'archive_ticket_template' => 'Archivia il modello',
|
||||||
'restore_ticket_template' => 'Riprestina il modello',
|
'restore_ticket_template' => 'Riprestina il modello',
|
||||||
'archived_ticket_template' => 'Modello archiviato con successo',
|
'archived_ticket_template' => 'Modello archiviato con successo',
|
||||||
@ -3806,7 +3777,7 @@ $lang = array(
|
|||||||
'entity_number_placeholder' => ':entity # :entity_numero',
|
'entity_number_placeholder' => ':entity # :entity_numero',
|
||||||
'email_link_not_working' => 'Se il pulsante sopra non funziona per te, fai clic sul link',
|
'email_link_not_working' => 'Se il pulsante sopra non funziona per te, fai clic sul link',
|
||||||
'display_log' => 'Visualizza registro',
|
'display_log' => 'Visualizza registro',
|
||||||
'send_fail_logs_to_our_server' => 'Segnala gli errori in tempo reale',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'Impostare',
|
'setup' => 'Impostare',
|
||||||
'quick_overview_statistics' => 'Panoramica rapida e statistiche',
|
'quick_overview_statistics' => 'Panoramica rapida e statistiche',
|
||||||
'update_your_personal_info' => 'Aggiorna le tue informazioni personali',
|
'update_your_personal_info' => 'Aggiorna le tue informazioni personali',
|
||||||
@ -5294,6 +5265,33 @@ $lang = array(
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'End Of Month',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -2344,7 +2344,7 @@ $lang = array(
|
|||||||
'currency_gold_troy_ounce' => 'មាស Troy អោន',
|
'currency_gold_troy_ounce' => 'មាស Troy អោន',
|
||||||
'currency_nicaraguan_córdoba' => 'នីការ៉ាហ្គ័រ Córdoba',
|
'currency_nicaraguan_córdoba' => 'នីការ៉ាហ្គ័រ Córdoba',
|
||||||
'currency_malagasy_ariary' => 'អារីរីម៉ាឡាហ្គាស៊ី',
|
'currency_malagasy_ariary' => 'អារីរីម៉ាឡាហ្គាស៊ី',
|
||||||
"currency_tongan_pa_anga" => "តុងហ្គាន ប៉ាអង់ហ្គា",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'យើងសង្ឃឹមថាអ្នករីករាយនឹងការប្រើប្រាស់កម្មវិធី។<br/> ប្រសិនបើអ្នកនឹងពិចារណា :link យើងនឹងកោតសរសើរវាយ៉ាងខ្លាំង!',
|
'review_app_help' => 'យើងសង្ឃឹមថាអ្នករីករាយនឹងការប្រើប្រាស់កម្មវិធី។<br/> ប្រសិនបើអ្នកនឹងពិចារណា :link យើងនឹងកោតសរសើរវាយ៉ាងខ្លាំង!',
|
||||||
'writing_a_review' => 'សរសេរការពិនិត្យឡើងវិញ',
|
'writing_a_review' => 'សរសេរការពិនិត្យឡើងវិញ',
|
||||||
@ -2860,19 +2860,6 @@ $lang = array(
|
|||||||
'refunded' => 'សងប្រាក់វិញ។',
|
'refunded' => 'សងប្រាក់វិញ។',
|
||||||
'marked_quote_as_sent' => 'បានសម្គាល់សម្រង់ដោយជោគជ័យថាបានផ្ញើ',
|
'marked_quote_as_sent' => 'បានសម្គាល់សម្រង់ដោយជោគជ័យថាបានផ្ញើ',
|
||||||
'custom_module_settings' => 'ការកំណត់ម៉ូឌុលផ្ទាល់ខ្លួន',
|
'custom_module_settings' => 'ការកំណត់ម៉ូឌុលផ្ទាល់ខ្លួន',
|
||||||
'ticket' => 'សំបុត្រ',
|
|
||||||
'tickets' => 'សំបុត្រ',
|
|
||||||
'ticket_number' => 'សំបុត្រ #',
|
|
||||||
'new_ticket' => 'សំបុត្រថ្មី។',
|
|
||||||
'edit_ticket' => 'កែសម្រួលសំបុត្រ',
|
|
||||||
'view_ticket' => 'មើលសំបុត្រ',
|
|
||||||
'archive_ticket' => 'បណ្ណសារសំបុត្រ',
|
|
||||||
'restore_ticket' => 'ទិញសំបុត្រឡើងវិញ',
|
|
||||||
'delete_ticket' => 'លុបសំបុត្រ',
|
|
||||||
'archived_ticket' => 'បានរក្សាទុកសំបុត្រដោយជោគជ័យ',
|
|
||||||
'archived_tickets' => 'បានរក្សាទុកសំបុត្រដោយជោគជ័យ',
|
|
||||||
'restored_ticket' => 'បានស្ដារសំបុត្រឡើងវិញដោយជោគជ័យ',
|
|
||||||
'deleted_ticket' => 'បានលុបសំបុត្រដោយជោគជ័យ',
|
|
||||||
'open' => 'បើក',
|
'open' => 'បើក',
|
||||||
'new' => 'ថ្មី។',
|
'new' => 'ថ្មី។',
|
||||||
'closed' => 'បិទ',
|
'closed' => 'បិទ',
|
||||||
@ -2889,14 +2876,6 @@ $lang = array(
|
|||||||
'assigned_to' => 'ចាត់តាំងទៅ',
|
'assigned_to' => 'ចាត់តាំងទៅ',
|
||||||
'reply' => 'ឆ្លើយតប',
|
'reply' => 'ឆ្លើយតប',
|
||||||
'awaiting_reply' => 'កំពុងរង់ចាំការឆ្លើយតប',
|
'awaiting_reply' => 'កំពុងរង់ចាំការឆ្លើយតប',
|
||||||
'ticket_close' => 'បិទសំបុត្រ',
|
|
||||||
'ticket_reopen' => 'បើកសំបុត្រឡើងវិញ',
|
|
||||||
'ticket_open' => 'បើកសំបុត្រ',
|
|
||||||
'ticket_split' => 'ចែកសំបុត្រ',
|
|
||||||
'ticket_merge' => 'សំបុត្របញ្ចូលគ្នា',
|
|
||||||
'ticket_update' => 'ធ្វើបច្ចុប្បន្នភាពសំបុត្រ',
|
|
||||||
'ticket_settings' => 'ការកំណត់សំបុត្រ',
|
|
||||||
'updated_ticket' => 'សំបុត្របានធ្វើបច្ចុប្បន្នភាព',
|
|
||||||
'mark_spam' => 'សម្គាល់ថាជាសារឥតបានការ',
|
'mark_spam' => 'សម្គាល់ថាជាសារឥតបានការ',
|
||||||
'local_part' => 'ផ្នែកក្នុងស្រុក',
|
'local_part' => 'ផ្នែកក្នុងស្រុក',
|
||||||
'local_part_unavailable' => 'ឈ្មោះបានយក',
|
'local_part_unavailable' => 'ឈ្មោះបានយក',
|
||||||
@ -2914,31 +2893,23 @@ $lang = array(
|
|||||||
'mime_types' => 'ប្រភេទ Mime',
|
'mime_types' => 'ប្រភេទ Mime',
|
||||||
'mime_types_placeholder' => '.pdf , .docx , .jpg',
|
'mime_types_placeholder' => '.pdf , .docx , .jpg',
|
||||||
'mime_types_help' => 'បញ្ជីដោយបំបែកដោយសញ្ញាក្បៀសនៃប្រភេទ mime ដែលបានអនុញ្ញាត ទុកទទេសម្រាប់ទាំងអស់គ្នា',
|
'mime_types_help' => 'បញ្ជីដោយបំបែកដោយសញ្ញាក្បៀសនៃប្រភេទ mime ដែលបានអនុញ្ញាត ទុកទទេសម្រាប់ទាំងអស់គ្នា',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'អាទិភាពលំនាំដើម',
|
'default_priority' => 'អាទិភាពលំនាំដើម',
|
||||||
'alert_new_comment_id' => 'មតិថ្មី។',
|
'alert_new_comment_id' => 'មតិថ្មី។',
|
||||||
'alert_comment_ticket_help' => 'ការជ្រើសរើសគំរូនឹងផ្ញើការជូនដំណឹង (ទៅភ្នាក់ងារ) នៅពេលមានមតិយោបល់។',
|
|
||||||
'alert_comment_ticket_email_help' => 'សញ្ញាក្បៀសបានបំបែកអ៊ីមែលទៅ bcc នៅលើមតិយោបល់ថ្មី។',
|
|
||||||
'new_ticket_notification_list' => 'ការជូនដំណឹងអំពីសំបុត្រថ្មីបន្ថែម',
|
|
||||||
'update_ticket_notification_list' => 'ការជូនដំណឹងអំពីមតិយោបល់ថ្មីបន្ថែម',
|
'update_ticket_notification_list' => 'ការជូនដំណឹងអំពីមតិយោបល់ថ្មីបន្ថែម',
|
||||||
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
||||||
'alert_ticket_assign_agent_id' => 'ការកំណត់សំបុត្រ',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'ការជ្រើសរើសគំរូនឹងផ្ញើការជូនដំណឹង (ទៅភ្នាក់ងារ) នៅពេលដែលសំបុត្រត្រូវបានចាត់តាំង។',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'ការជូនដំណឹងបន្ថែមដែលបានកំណត់សំបុត្រ',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'សញ្ញាក្បៀសបានបំបែកអ៊ីមែលទៅ bcc នៅលើការចាត់តាំងសំបុត្រ។',
|
|
||||||
'alert_ticket_transfer_email_help' => 'សញ្ញាក្បៀសបំបែកអ៊ីមែលទៅ bcc នៅលើការផ្ទេរសំបុត្រ។',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'សំបុត្រហួសកាលកំណត់',
|
|
||||||
'alert_ticket_overdue_email' => 'ការជូនដំណឹងអំពីសំបុត្រហួសកាលកំណត់បន្ថែម',
|
|
||||||
'alert_ticket_overdue_email_help' => 'សញ្ញាក្បៀសបានបំបែកអ៊ីមែលទៅជា bcc នៅលើសំបុត្រហួសកំណត់។',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'ការជ្រើសរើសគំរូនឹងផ្ញើការជូនដំណឹង (ទៅភ្នាក់ងារ) នៅពេលដែលសំបុត្រផុតកំណត់។',
|
|
||||||
'default_agent' => 'ភ្នាក់ងារលំនាំដើម',
|
'default_agent' => 'ភ្នាក់ងារលំនាំដើម',
|
||||||
'default_agent_help' => 'ប្រសិនបើបានជ្រើសនឹងត្រូវបានកំណត់ដោយស្វ័យប្រវត្តិចំពោះសំបុត្រចូលទាំងអស់',
|
'default_agent_help' => 'ប្រសិនបើបានជ្រើសនឹងត្រូវបានកំណត់ដោយស្វ័យប្រវត្តិចំពោះសំបុត្រចូលទាំងអស់',
|
||||||
'show_agent_details' => 'បង្ហាញព័ត៌មានលម្អិតភ្នាក់ងារលើការឆ្លើយតប',
|
'show_agent_details' => 'បង្ហាញព័ត៌មានលម្អិតភ្នាក់ងារលើការឆ្លើយតប',
|
||||||
'avatar' => 'Avatar',
|
'avatar' => 'Avatar',
|
||||||
'remove_avatar' => 'លុបរូបតំណាង',
|
'remove_avatar' => 'លុបរូបតំណាង',
|
||||||
'ticket_not_found' => 'រកមិនឃើញសំបុត្រទេ។',
|
|
||||||
'add_template' => 'បន្ថែមគំរូ',
|
'add_template' => 'បន្ថែមគំរូ',
|
||||||
'updated_ticket_template' => 'គំរូសំបុត្រដែលបានធ្វើបច្ចុប្បន្នភាព',
|
|
||||||
'created_ticket_template' => 'បានបង្កើតគំរូសំបុត្រ',
|
|
||||||
'archive_ticket_template' => 'បណ្ណសារគំរូ',
|
'archive_ticket_template' => 'បណ្ណសារគំរូ',
|
||||||
'restore_ticket_template' => 'ស្តារគំរូ',
|
'restore_ticket_template' => 'ស្តារគំរូ',
|
||||||
'archived_ticket_template' => 'ពុម្ពដែលបានទុកក្នុងប័ណ្ណសារដោយជោគជ័យ',
|
'archived_ticket_template' => 'ពុម្ពដែលបានទុកក្នុងប័ណ្ណសារដោយជោគជ័យ',
|
||||||
@ -3795,7 +3766,7 @@ $lang = array(
|
|||||||
'entity_number_placeholder' => ':entity # :entity_number',
|
'entity_number_placeholder' => ':entity # :entity_number',
|
||||||
'email_link_not_working' => 'ប្រសិនបើប៊ូតុងខាងលើមិនដំណើរការសម្រាប់អ្នក សូមចុចលើតំណ',
|
'email_link_not_working' => 'ប្រសិនបើប៊ូតុងខាងលើមិនដំណើរការសម្រាប់អ្នក សូមចុចលើតំណ',
|
||||||
'display_log' => 'បង្ហាញកំណត់ហេតុ',
|
'display_log' => 'បង្ហាញកំណត់ហេតុ',
|
||||||
'send_fail_logs_to_our_server' => 'រាយការណ៍កំហុសក្នុងពេលវេលាជាក់ស្តែង',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'រៀបចំ',
|
'setup' => 'រៀបចំ',
|
||||||
'quick_overview_statistics' => 'ទិដ្ឋភាពទូទៅ និងស្ថិតិរហ័ស',
|
'quick_overview_statistics' => 'ទិដ្ឋភាពទូទៅ និងស្ថិតិរហ័ស',
|
||||||
'update_your_personal_info' => 'ធ្វើបច្ចុប្បន្នភាពព័ត៌មានផ្ទាល់ខ្លួនរបស់អ្នក។',
|
'update_your_personal_info' => 'ធ្វើបច្ចុប្បន្នភាពព័ត៌មានផ្ទាល់ខ្លួនរបស់អ្នក។',
|
||||||
@ -5283,6 +5254,33 @@ $lang = array(
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'End Of Month',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -2364,7 +2364,7 @@ $lang = array(
|
|||||||
'currency_gold_troy_ounce' => 'ທອງຄຳ Troy ອອນສ໌',
|
'currency_gold_troy_ounce' => 'ທອງຄຳ Troy ອອນສ໌',
|
||||||
'currency_nicaraguan_córdoba' => 'ນິກາຣາກົວ ໂກໂດບາ',
|
'currency_nicaraguan_córdoba' => 'ນິກາຣາກົວ ໂກໂດບາ',
|
||||||
'currency_malagasy_ariary' => 'ມາລາກາຊີ ariary',
|
'currency_malagasy_ariary' => 'ມາລາກາຊີ ariary',
|
||||||
"currency_tongan_pa_anga" => "ຕົງກັນປາອາງາ",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'ພວກເຮົາຫວັງວ່າທ່ານຈະມີຄວາມສຸກກັບການນໍາໃຊ້ app ໄດ້.<br/>ຖ້າຫາກວ່າທ່ານ \'ພິຈາລະນາ :link ພວກເຮົາຈະຂໍຂອບໃຈເປັນຢ່າງຍິ່ງ!',
|
'review_app_help' => 'ພວກເຮົາຫວັງວ່າທ່ານຈະມີຄວາມສຸກກັບການນໍາໃຊ້ app ໄດ້.<br/>ຖ້າຫາກວ່າທ່ານ \'ພິຈາລະນາ :link ພວກເຮົາຈະຂໍຂອບໃຈເປັນຢ່າງຍິ່ງ!',
|
||||||
'writing_a_review' => 'ຂຽນບົດວິຈານ',
|
'writing_a_review' => 'ຂຽນບົດວິຈານ',
|
||||||
@ -2880,19 +2880,6 @@ $lang = array(
|
|||||||
'refunded' => 'ໄດ້ເງິນຄືນ',
|
'refunded' => 'ໄດ້ເງິນຄືນ',
|
||||||
'marked_quote_as_sent' => 'ໄດ້ໝາຍການອ້າງອີງສຳເລັດແລ້ວວ່າສົ່ງແລ້ວ',
|
'marked_quote_as_sent' => 'ໄດ້ໝາຍການອ້າງອີງສຳເລັດແລ້ວວ່າສົ່ງແລ້ວ',
|
||||||
'custom_module_settings' => 'ການຕັ້ງຄ່າໂມດູນແບບກຳນົດເອງ',
|
'custom_module_settings' => 'ການຕັ້ງຄ່າໂມດູນແບບກຳນົດເອງ',
|
||||||
'ticket' => 'ປີ້',
|
|
||||||
'tickets' => 'ປີ້',
|
|
||||||
'ticket_number' => 'ປີ້ #',
|
|
||||||
'new_ticket' => 'ປີ້ໃໝ່',
|
|
||||||
'edit_ticket' => 'ແກ້ໄຂປີ້',
|
|
||||||
'view_ticket' => 'ເບິ່ງປີ້',
|
|
||||||
'archive_ticket' => 'ເກັບປີ້',
|
|
||||||
'restore_ticket' => 'ກູ້ປີ້ຄືນ',
|
|
||||||
'delete_ticket' => 'ລຶບປີ້',
|
|
||||||
'archived_ticket' => 'ປີ້ເຂົ້າແຟ້ມສຳເລັດແລ້ວ',
|
|
||||||
'archived_tickets' => 'ເກັບປີ້ສຳເລັດແລ້ວ',
|
|
||||||
'restored_ticket' => 'ໄດ້ຄືນປີ້ສຳເລັດແລ້ວ',
|
|
||||||
'deleted_ticket' => 'ລຶບປີ້ສຳເລັດແລ້ວ',
|
|
||||||
'open' => 'ເປີດ',
|
'open' => 'ເປີດ',
|
||||||
'new' => 'ໃໝ່',
|
'new' => 'ໃໝ່',
|
||||||
'closed' => 'ປິດ',
|
'closed' => 'ປິດ',
|
||||||
@ -2909,14 +2896,6 @@ $lang = array(
|
|||||||
'assigned_to' => 'ມອບໝາຍໃຫ້',
|
'assigned_to' => 'ມອບໝາຍໃຫ້',
|
||||||
'reply' => 'ຕອບ',
|
'reply' => 'ຕອບ',
|
||||||
'awaiting_reply' => 'ກຳລັງລໍຖ້າຄຳຕອບ',
|
'awaiting_reply' => 'ກຳລັງລໍຖ້າຄຳຕອບ',
|
||||||
'ticket_close' => 'ປິດປີ້',
|
|
||||||
'ticket_reopen' => 'ເປີດປີ້ໃໝ່',
|
|
||||||
'ticket_open' => 'ເປີດປີ້',
|
|
||||||
'ticket_split' => 'ປີ້ແຍກ',
|
|
||||||
'ticket_merge' => 'ລວມປີ້',
|
|
||||||
'ticket_update' => 'ອັບເດດປີ້',
|
|
||||||
'ticket_settings' => 'ການຕັ້ງຄ່າປີ້',
|
|
||||||
'updated_ticket' => 'ປີ້ອັບເດດ',
|
|
||||||
'mark_spam' => 'ໝາຍເປັນສະແປມ',
|
'mark_spam' => 'ໝາຍເປັນສະແປມ',
|
||||||
'local_part' => 'ພາກສ່ວນທ້ອງຖິ່ນ',
|
'local_part' => 'ພາກສ່ວນທ້ອງຖິ່ນ',
|
||||||
'local_part_unavailable' => 'ເອົາຊື່',
|
'local_part_unavailable' => 'ເອົາຊື່',
|
||||||
@ -2934,31 +2913,23 @@ $lang = array(
|
|||||||
'mime_types' => 'ປະເພດ Mime',
|
'mime_types' => 'ປະເພດ Mime',
|
||||||
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
||||||
'mime_types_help' => 'ໝາຍຈຸດແຍກລາຍຊື່ປະເພດ mime ທີ່ອະນຸຍາດ, ປ່ອຍໃຫ້ຫວ່າງສຳລັບທັງໝົດ',
|
'mime_types_help' => 'ໝາຍຈຸດແຍກລາຍຊື່ປະເພດ mime ທີ່ອະນຸຍາດ, ປ່ອຍໃຫ້ຫວ່າງສຳລັບທັງໝົດ',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'ບູລິມະສິດເລີ່ມຕົ້ນ',
|
'default_priority' => 'ບູລິມະສິດເລີ່ມຕົ້ນ',
|
||||||
'alert_new_comment_id' => 'ຄຳເຫັນໃໝ່',
|
'alert_new_comment_id' => 'ຄຳເຫັນໃໝ່',
|
||||||
'alert_comment_ticket_help' => 'ການເລືອກແມ່ແບບຈະສົ່ງການແຈ້ງເຕືອນ (ໃຫ້ຕົວແທນ) ເມື່ອມີຄຳເຫັນ.',
|
|
||||||
'alert_comment_ticket_email_help' => 'ໝາຍຈຸດແຍກອີເມວໃສ່ bcc ໃນຄຳເຫັນໃໝ່.',
|
|
||||||
'new_ticket_notification_list' => 'ແຈ້ງປີ້ໃໝ່ເພີ່ມເຕີມ',
|
|
||||||
'update_ticket_notification_list' => 'ແຈ້ງຄຳເຫັນໃໝ່ເພີ່ມເຕີມ',
|
'update_ticket_notification_list' => 'ແຈ້ງຄຳເຫັນໃໝ່ເພີ່ມເຕີມ',
|
||||||
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
||||||
'alert_ticket_assign_agent_id' => 'ການມອບໝາຍປີ້',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'ການເລືອກແມ່ແບບຈະສົ່ງການແຈ້ງເຕືອນ (ໃຫ້ຕົວແທນ) ເມື່ອປີ້ຖືກມອບໝາຍ.',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'ແຈ້ງການເພີ່ມເຕີມທີ່ໄດ້ຮັບມອບໝາຍປີ້',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'ໝາຍຈຸດແຍກອີເມວໃສ່ bcc ໃນການມອບໝາຍປີ້.',
|
|
||||||
'alert_ticket_transfer_email_help' => 'ໝາຍຈຸດແຍກອີເມວໄປຫາ bcc ໃນການໂອນປີ້.',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'ປີ້ໝົດກຳນົດ',
|
|
||||||
'alert_ticket_overdue_email' => 'ການແຈ້ງປີ້ທີ່ເກີນກຳນົດເວລາເພີ່ມເຕີມ',
|
|
||||||
'alert_ticket_overdue_email_help' => 'ໝາຍຈຸດທີ່ແຍກອີເມວໄປຫາ bcc ໃນປີ້ທີ່ໝົດກຳນົດ.',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'ການເລືອກແມ່ແບບຈະສົ່ງການແຈ້ງເຕືອນ (ໃຫ້ຕົວແທນ) ເມື່ອປີ້ໝົດກຳນົດ.',
|
|
||||||
'default_agent' => 'ຕົວແທນເລີ່ມຕົ້ນ',
|
'default_agent' => 'ຕົວແທນເລີ່ມຕົ້ນ',
|
||||||
'default_agent_help' => 'ຖ້າເລືອກຈະຖືກມອບໃຫ້ປີ້ເຂົ້າທັງໝົດໂດຍອັດຕະໂນມັດ',
|
'default_agent_help' => 'ຖ້າເລືອກຈະຖືກມອບໃຫ້ປີ້ເຂົ້າທັງໝົດໂດຍອັດຕະໂນມັດ',
|
||||||
'show_agent_details' => 'ສະແດງລາຍລະອຽດຕົວແທນກ່ຽວກັບການຕອບ',
|
'show_agent_details' => 'ສະແດງລາຍລະອຽດຕົວແທນກ່ຽວກັບການຕອບ',
|
||||||
'avatar' => 'ຮູບແທນຕົວ',
|
'avatar' => 'ຮູບແທນຕົວ',
|
||||||
'remove_avatar' => 'ເອົາຮູບແທນຕົວອອກ',
|
'remove_avatar' => 'ເອົາຮູບແທນຕົວອອກ',
|
||||||
'ticket_not_found' => 'ບໍ່ພົບປີ້',
|
|
||||||
'add_template' => 'ເພີ່ມແມ່ແບບ',
|
'add_template' => 'ເພີ່ມແມ່ແບບ',
|
||||||
'updated_ticket_template' => 'ແມ່ແບບປີ້ທີ່ອັບເດດແລ້ວ',
|
|
||||||
'created_ticket_template' => 'Ticket Template ທີ່ສ້າງແລ້ວ',
|
|
||||||
'archive_ticket_template' => 'ແມ່ແບບເກັບມ້ຽນ',
|
'archive_ticket_template' => 'ແມ່ແບບເກັບມ້ຽນ',
|
||||||
'restore_ticket_template' => 'ຟື້ນຟູແມ່ແບບ',
|
'restore_ticket_template' => 'ຟື້ນຟູແມ່ແບບ',
|
||||||
'archived_ticket_template' => 'ແມ່ແບບທີ່ເກັບໄວ້ສຳເລັດແລ້ວ',
|
'archived_ticket_template' => 'ແມ່ແບບທີ່ເກັບໄວ້ສຳເລັດແລ້ວ',
|
||||||
@ -3815,7 +3786,7 @@ $lang = array(
|
|||||||
'entity_number_placeholder' => ':entity # :entity_number',
|
'entity_number_placeholder' => ':entity # :entity_number',
|
||||||
'email_link_not_working' => 'ຖ້າປຸ່ມຂ້າງເທິງນີ້ບໍ່ໄດ້ເຮັດວຽກສໍາລັບທ່ານ, ກະລຸນາຄລິກໃສ່ການເຊື່ອມຕໍ່',
|
'email_link_not_working' => 'ຖ້າປຸ່ມຂ້າງເທິງນີ້ບໍ່ໄດ້ເຮັດວຽກສໍາລັບທ່ານ, ກະລຸນາຄລິກໃສ່ການເຊື່ອມຕໍ່',
|
||||||
'display_log' => 'ບັນທຶກການສະແດງ',
|
'display_log' => 'ບັນທຶກການສະແດງ',
|
||||||
'send_fail_logs_to_our_server' => 'ລາຍງານຄວາມຜິດພາດໃນເວລາຈິງ',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'ຕັ້ງຄ່າ',
|
'setup' => 'ຕັ້ງຄ່າ',
|
||||||
'quick_overview_statistics' => 'ພາບລວມໄວ & ສະຖິຕິ',
|
'quick_overview_statistics' => 'ພາບລວມໄວ & ສະຖິຕິ',
|
||||||
'update_your_personal_info' => 'ອັບເດດຂໍ້ມູນສ່ວນຕົວຂອງເຈົ້າ',
|
'update_your_personal_info' => 'ອັບເດດຂໍ້ມູນສ່ວນຕົວຂອງເຈົ້າ',
|
||||||
@ -5303,6 +5274,33 @@ $lang = array(
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'ທ້າຍເດືອນ',
|
'end_of_month' => 'ທ້າຍເດືອນ',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'ທ້າຍເດືອນ',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -2364,7 +2364,7 @@ $lang = array(
|
|||||||
'currency_gold_troy_ounce' => 'Gold Troy Ounce',
|
'currency_gold_troy_ounce' => 'Gold Troy Ounce',
|
||||||
'currency_nicaraguan_córdoba' => 'Nicaraguan Córdoba',
|
'currency_nicaraguan_córdoba' => 'Nicaraguan Córdoba',
|
||||||
'currency_malagasy_ariary' => 'Malagasy ariary',
|
'currency_malagasy_ariary' => 'Malagasy ariary',
|
||||||
"currency_tongan_pa_anga" => "Tongan Pa'anga",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'We hope you\'re enjoying using the app.<br/>If you\'d consider :link we\'d greatly appreciate it!',
|
'review_app_help' => 'We hope you\'re enjoying using the app.<br/>If you\'d consider :link we\'d greatly appreciate it!',
|
||||||
'writing_a_review' => 'writing a review',
|
'writing_a_review' => 'writing a review',
|
||||||
@ -2880,19 +2880,6 @@ $lang = array(
|
|||||||
'refunded' => 'Grąžinta',
|
'refunded' => 'Grąžinta',
|
||||||
'marked_quote_as_sent' => 'Successfully marked quote as sent',
|
'marked_quote_as_sent' => 'Successfully marked quote as sent',
|
||||||
'custom_module_settings' => 'Custom Module Settings',
|
'custom_module_settings' => 'Custom Module Settings',
|
||||||
'ticket' => 'Ticket',
|
|
||||||
'tickets' => 'Tickets',
|
|
||||||
'ticket_number' => 'Ticket #',
|
|
||||||
'new_ticket' => 'New Ticket',
|
|
||||||
'edit_ticket' => 'Edit Ticket',
|
|
||||||
'view_ticket' => 'View Ticket',
|
|
||||||
'archive_ticket' => 'Archive Ticket',
|
|
||||||
'restore_ticket' => 'Restore Ticket',
|
|
||||||
'delete_ticket' => 'Delete Ticket',
|
|
||||||
'archived_ticket' => 'Successfully archived ticket',
|
|
||||||
'archived_tickets' => 'Successfully archived tickets',
|
|
||||||
'restored_ticket' => 'Successfully restored ticket',
|
|
||||||
'deleted_ticket' => 'Successfully deleted ticket',
|
|
||||||
'open' => 'Open',
|
'open' => 'Open',
|
||||||
'new' => 'New',
|
'new' => 'New',
|
||||||
'closed' => 'Closed',
|
'closed' => 'Closed',
|
||||||
@ -2909,14 +2896,6 @@ $lang = array(
|
|||||||
'assigned_to' => 'Assigned to',
|
'assigned_to' => 'Assigned to',
|
||||||
'reply' => 'Reply',
|
'reply' => 'Reply',
|
||||||
'awaiting_reply' => 'Awaiting reply',
|
'awaiting_reply' => 'Awaiting reply',
|
||||||
'ticket_close' => 'Close Ticket',
|
|
||||||
'ticket_reopen' => 'Reopen Ticket',
|
|
||||||
'ticket_open' => 'Open Ticket',
|
|
||||||
'ticket_split' => 'Split Ticket',
|
|
||||||
'ticket_merge' => 'Merge Ticket',
|
|
||||||
'ticket_update' => 'Update Ticket',
|
|
||||||
'ticket_settings' => 'Ticket Settings',
|
|
||||||
'updated_ticket' => 'Ticket Updated',
|
|
||||||
'mark_spam' => 'Mark as Spam',
|
'mark_spam' => 'Mark as Spam',
|
||||||
'local_part' => 'Local Part',
|
'local_part' => 'Local Part',
|
||||||
'local_part_unavailable' => 'Name taken',
|
'local_part_unavailable' => 'Name taken',
|
||||||
@ -2934,31 +2913,23 @@ $lang = array(
|
|||||||
'mime_types' => 'Mime types',
|
'mime_types' => 'Mime types',
|
||||||
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
||||||
'mime_types_help' => 'Comma separated list of allowed mime types, leave blank for all',
|
'mime_types_help' => 'Comma separated list of allowed mime types, leave blank for all',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'Default priority',
|
'default_priority' => 'Default priority',
|
||||||
'alert_new_comment_id' => 'New comment',
|
'alert_new_comment_id' => 'New comment',
|
||||||
'alert_comment_ticket_help' => 'Selecting a template will send a notification (to agent) when a comment is made.',
|
|
||||||
'alert_comment_ticket_email_help' => 'Comma separated emails to bcc on new comment.',
|
|
||||||
'new_ticket_notification_list' => 'Additional new ticket notifications',
|
|
||||||
'update_ticket_notification_list' => 'Additional new comment notifications',
|
'update_ticket_notification_list' => 'Additional new comment notifications',
|
||||||
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
||||||
'alert_ticket_assign_agent_id' => 'Ticket assignment',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'Selecting a template will send a notification (to agent) when a ticket is assigned.',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'Additional ticket assigned notifications',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'Comma separated emails to bcc on ticket assignment.',
|
|
||||||
'alert_ticket_transfer_email_help' => 'Comma separated emails to bcc on ticket transfer.',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'Ticket overdue',
|
|
||||||
'alert_ticket_overdue_email' => 'Additional overdue ticket notifications',
|
|
||||||
'alert_ticket_overdue_email_help' => 'Comma separated emails to bcc on ticket overdue.',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'Selecting a template will send a notification (to agent) when a ticket becomes overdue.',
|
|
||||||
'default_agent' => 'Default Agent',
|
'default_agent' => 'Default Agent',
|
||||||
'default_agent_help' => 'If selected will automatically be assigned to all inbound tickets',
|
'default_agent_help' => 'If selected will automatically be assigned to all inbound tickets',
|
||||||
'show_agent_details' => 'Show agent details on responses',
|
'show_agent_details' => 'Show agent details on responses',
|
||||||
'avatar' => 'Avatar',
|
'avatar' => 'Avatar',
|
||||||
'remove_avatar' => 'Remove avatar',
|
'remove_avatar' => 'Remove avatar',
|
||||||
'ticket_not_found' => 'Ticket not found',
|
|
||||||
'add_template' => 'Pridėti Šabloną',
|
'add_template' => 'Pridėti Šabloną',
|
||||||
'updated_ticket_template' => 'Atnaujintas Bilieto Šablonas',
|
|
||||||
'created_ticket_template' => 'Sukurtas Bilieto Šablonas',
|
|
||||||
'archive_ticket_template' => 'Archyvuoti Šabloną',
|
'archive_ticket_template' => 'Archyvuoti Šabloną',
|
||||||
'restore_ticket_template' => 'Atstatyti Šabloną',
|
'restore_ticket_template' => 'Atstatyti Šabloną',
|
||||||
'archived_ticket_template' => 'Sėkmingai archyvuotas šablonas',
|
'archived_ticket_template' => 'Sėkmingai archyvuotas šablonas',
|
||||||
@ -3815,7 +3786,7 @@ $lang = array(
|
|||||||
'entity_number_placeholder' => ':entity # :entity_number',
|
'entity_number_placeholder' => ':entity # :entity_number',
|
||||||
'email_link_not_working' => 'If the button above isn\'t working for you, please click on the link',
|
'email_link_not_working' => 'If the button above isn\'t working for you, please click on the link',
|
||||||
'display_log' => 'Display Log',
|
'display_log' => 'Display Log',
|
||||||
'send_fail_logs_to_our_server' => 'Pranešti apie klaidas realiuoju laiku',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'Setup',
|
'setup' => 'Setup',
|
||||||
'quick_overview_statistics' => 'Trumpa apžvalga ir statistika',
|
'quick_overview_statistics' => 'Trumpa apžvalga ir statistika',
|
||||||
'update_your_personal_info' => 'Update your personal information',
|
'update_your_personal_info' => 'Update your personal information',
|
||||||
@ -5303,6 +5274,33 @@ $lang = array(
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'End Of Month',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -2361,7 +2361,7 @@ Kom terug naar deze betalingsmethode pagina zodra u de bedragen heeft ontvangen
|
|||||||
'currency_gold_troy_ounce' => 'Gouden Troy Ounce',
|
'currency_gold_troy_ounce' => 'Gouden Troy Ounce',
|
||||||
'currency_nicaraguan_córdoba' => 'Nicaraguaans Córdoba',
|
'currency_nicaraguan_córdoba' => 'Nicaraguaans Córdoba',
|
||||||
'currency_malagasy_ariary' => 'Malagassische ariarium',
|
'currency_malagasy_ariary' => 'Malagassische ariarium',
|
||||||
"currency_tongan_pa_anga" => "Tongaanse Pa'anga",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'We hopen dat je het leuk vindt om de app te gebruiken.<br/> Als je zou overwegen :link, zouden we dat zeer op prijs stellen!',
|
'review_app_help' => 'We hopen dat je het leuk vindt om de app te gebruiken.<br/> Als je zou overwegen :link, zouden we dat zeer op prijs stellen!',
|
||||||
'writing_a_review' => 'een recensie schrijven',
|
'writing_a_review' => 'een recensie schrijven',
|
||||||
@ -2877,19 +2877,6 @@ Kom terug naar deze betalingsmethode pagina zodra u de bedragen heeft ontvangen
|
|||||||
'refunded' => 'Gecrediteerd',
|
'refunded' => 'Gecrediteerd',
|
||||||
'marked_quote_as_sent' => 'De offerte is gemarkeerd als verzonden',
|
'marked_quote_as_sent' => 'De offerte is gemarkeerd als verzonden',
|
||||||
'custom_module_settings' => 'Aangepaste module-instellingen',
|
'custom_module_settings' => 'Aangepaste module-instellingen',
|
||||||
'ticket' => 'Ticket',
|
|
||||||
'tickets' => 'Tickets',
|
|
||||||
'ticket_number' => 'Ticketnummer',
|
|
||||||
'new_ticket' => 'Nieuw ticket',
|
|
||||||
'edit_ticket' => 'Bewerk ticket',
|
|
||||||
'view_ticket' => 'Bekijk ticket',
|
|
||||||
'archive_ticket' => 'Archiveer ticket',
|
|
||||||
'restore_ticket' => 'Herstel ticket',
|
|
||||||
'delete_ticket' => 'Verwijder ticket',
|
|
||||||
'archived_ticket' => 'Het ticket is gearchiveerd',
|
|
||||||
'archived_tickets' => 'De tickets zijn gearchiveerd',
|
|
||||||
'restored_ticket' => 'Het ticket is teruggezet',
|
|
||||||
'deleted_ticket' => 'Het ticket is verwijderd',
|
|
||||||
'open' => 'Open',
|
'open' => 'Open',
|
||||||
'new' => 'Nieuw',
|
'new' => 'Nieuw',
|
||||||
'closed' => 'Gesloten',
|
'closed' => 'Gesloten',
|
||||||
@ -2906,14 +2893,6 @@ Kom terug naar deze betalingsmethode pagina zodra u de bedragen heeft ontvangen
|
|||||||
'assigned_to' => 'Toegewezen aan',
|
'assigned_to' => 'Toegewezen aan',
|
||||||
'reply' => 'Antwoord',
|
'reply' => 'Antwoord',
|
||||||
'awaiting_reply' => 'In afwachting van antwoord',
|
'awaiting_reply' => 'In afwachting van antwoord',
|
||||||
'ticket_close' => 'Sluit ticket',
|
|
||||||
'ticket_reopen' => 'Heropen ticket',
|
|
||||||
'ticket_open' => 'Open ticket',
|
|
||||||
'ticket_split' => 'Splits ticket',
|
|
||||||
'ticket_merge' => 'Ticket samenvoegen',
|
|
||||||
'ticket_update' => 'Werk ticket bij',
|
|
||||||
'ticket_settings' => 'Ticket instellingen',
|
|
||||||
'updated_ticket' => 'Ticket bijgewerkt',
|
|
||||||
'mark_spam' => 'Markeer als spam',
|
'mark_spam' => 'Markeer als spam',
|
||||||
'local_part' => 'Lokaal gedeelte',
|
'local_part' => 'Lokaal gedeelte',
|
||||||
'local_part_unavailable' => 'Naam reeds in gebruik',
|
'local_part_unavailable' => 'Naam reeds in gebruik',
|
||||||
@ -2931,31 +2910,23 @@ Kom terug naar deze betalingsmethode pagina zodra u de bedragen heeft ontvangen
|
|||||||
'mime_types' => 'MIME-types',
|
'mime_types' => 'MIME-types',
|
||||||
'mime_types_placeholder' => '.pdf, .docx, .jpg',
|
'mime_types_placeholder' => '.pdf, .docx, .jpg',
|
||||||
'mime_types_help' => 'Komma-gescheiden lijst met toegestane MIME-types, laat leeg voor alle',
|
'mime_types_help' => 'Komma-gescheiden lijst met toegestane MIME-types, laat leeg voor alle',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'Prioriteit',
|
'default_priority' => 'Prioriteit',
|
||||||
'alert_new_comment_id' => 'Nieuwe opmerking',
|
'alert_new_comment_id' => 'Nieuwe opmerking',
|
||||||
'alert_comment_ticket_help' => 'Het selecteren van een sjabloon zal een notificatie versturen (naar de agent) zodra een opmerking is geplaatst.',
|
|
||||||
'alert_comment_ticket_email_help' => 'E-mailadressen gescheiden met een komma waar een notificatie in BCC naar gestuurd zal worden bij nieuwe reacties.',
|
|
||||||
'new_ticket_notification_list' => 'Additionele notificaties bij nieuwe tickets',
|
|
||||||
'update_ticket_notification_list' => 'Additionele notificaties bij nieuwe opmerkingen',
|
'update_ticket_notification_list' => 'Additionele notificaties bij nieuwe opmerkingen',
|
||||||
'comma_separated_values' => 'admin@voorbeeld.com, beheerder@voorbeeld.com',
|
'comma_separated_values' => 'admin@voorbeeld.com, beheerder@voorbeeld.com',
|
||||||
'alert_ticket_assign_agent_id' => 'Tickettoewijzing',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'Het selecteren van een sjabloon zal een notificatie versturen (naar de agent) zodra een ticket is toegewezen.',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'Additionele notificaties bij tickettoewijzigingen',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'E-mailadressen gescheiden met een komma waar een notificatie in BCC naar gestuurd zal worden bij nieuwe tickettoewijzingen.',
|
|
||||||
'alert_ticket_transfer_email_help' => 'E-mailadressen gescheiden met een komma waar een notificatie in BCC naar gestuurd zal worden bij het overdragen van tickets.',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'Ticket over tijd',
|
|
||||||
'alert_ticket_overdue_email' => 'Additionele notificaties bij achterstallige tickets',
|
|
||||||
'alert_ticket_overdue_email_help' => 'E-mailadressen gescheiden met een komma waar een notificatie in BCC naar gestuurd zal worden bij achterstallige tickets.',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'Het selecteren van een sjabloon zal een notificatie versturen (naar de agent) zodra een ticket achterstallig wordt.',
|
|
||||||
'default_agent' => 'Agent',
|
'default_agent' => 'Agent',
|
||||||
'default_agent_help' => 'Zal bij selectie automatisch toegewezen worden aan alle binnenkomende tickets',
|
'default_agent_help' => 'Zal bij selectie automatisch toegewezen worden aan alle binnenkomende tickets',
|
||||||
'show_agent_details' => 'Toon details van de agent bij reacties',
|
'show_agent_details' => 'Toon details van de agent bij reacties',
|
||||||
'avatar' => 'Avatar',
|
'avatar' => 'Avatar',
|
||||||
'remove_avatar' => 'Verwijder avatar',
|
'remove_avatar' => 'Verwijder avatar',
|
||||||
'ticket_not_found' => 'Ticket niet gevonden',
|
|
||||||
'add_template' => 'Sjabloon toevoegen',
|
'add_template' => 'Sjabloon toevoegen',
|
||||||
'updated_ticket_template' => 'Ticketsjabloon gewijzigd',
|
|
||||||
'created_ticket_template' => 'Ticketsjabloon aangemaakt',
|
|
||||||
'archive_ticket_template' => 'Archiveer sjabloon',
|
'archive_ticket_template' => 'Archiveer sjabloon',
|
||||||
'restore_ticket_template' => 'Herstel sjabloon',
|
'restore_ticket_template' => 'Herstel sjabloon',
|
||||||
'archived_ticket_template' => 'Het sjabloon is gearchiveerd',
|
'archived_ticket_template' => 'Het sjabloon is gearchiveerd',
|
||||||
@ -3812,7 +3783,7 @@ Kom terug naar deze betalingsmethode pagina zodra u de bedragen heeft ontvangen
|
|||||||
'entity_number_placeholder' => ':entity # :entity_number',
|
'entity_number_placeholder' => ':entity # :entity_number',
|
||||||
'email_link_not_working' => 'Indien de bovenstaande knop niet werkt voor u, gelieve op de link te klikken',
|
'email_link_not_working' => 'Indien de bovenstaande knop niet werkt voor u, gelieve op de link te klikken',
|
||||||
'display_log' => 'Toon logboek',
|
'display_log' => 'Toon logboek',
|
||||||
'send_fail_logs_to_our_server' => 'Rapporteer fouten in realtime',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'Setup',
|
'setup' => 'Setup',
|
||||||
'quick_overview_statistics' => 'Snel overzicht & statistieken',
|
'quick_overview_statistics' => 'Snel overzicht & statistieken',
|
||||||
'update_your_personal_info' => 'Update jouw persoonlijke informatie',
|
'update_your_personal_info' => 'Update jouw persoonlijke informatie',
|
||||||
@ -5303,6 +5274,33 @@ Email: :email<b><br><b>',
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'End Of Month',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -197,7 +197,7 @@ Przykłady dynamicznych zmiennych:
|
|||||||
'removed_logo' => 'Logo zostało usunięte',
|
'removed_logo' => 'Logo zostało usunięte',
|
||||||
'sent_message' => 'Wiadomość została wysłana',
|
'sent_message' => 'Wiadomość została wysłana',
|
||||||
'invoice_error' => 'Pamiętaj, aby wybrać klienta i poprawić błędy',
|
'invoice_error' => 'Pamiętaj, aby wybrać klienta i poprawić błędy',
|
||||||
'limit_clients' => 'You\'ve hit the :count client limit on Free accounts. Congrats on your success!.',
|
'limit_clients' => 'You\'ve hit the :count client limit on Free accounts. Congrats on your success!',
|
||||||
'payment_error' => 'Wystąpił błąd w trakcie przetwarzania płatności. Prosimy spróbować później.',
|
'payment_error' => 'Wystąpił błąd w trakcie przetwarzania płatności. Prosimy spróbować później.',
|
||||||
'registration_required' => 'Wymagana rejestracja',
|
'registration_required' => 'Wymagana rejestracja',
|
||||||
'confirmation_required' => 'Potwierdź swój adres emailowy, :link do ponownego wysłania emailu weryfikujacego.',
|
'confirmation_required' => 'Potwierdź swój adres emailowy, :link do ponownego wysłania emailu weryfikujacego.',
|
||||||
@ -2362,7 +2362,7 @@ Gdy przelewy zostaną zaksięgowane na Twoim koncie, wróć do tej strony i klik
|
|||||||
'currency_gold_troy_ounce' => 'Gold Troy Ounce',
|
'currency_gold_troy_ounce' => 'Gold Troy Ounce',
|
||||||
'currency_nicaraguan_córdoba' => 'Nicaraguan Córdoba',
|
'currency_nicaraguan_córdoba' => 'Nicaraguan Córdoba',
|
||||||
'currency_malagasy_ariary' => 'Malagasy ariary',
|
'currency_malagasy_ariary' => 'Malagasy ariary',
|
||||||
"currency_tongan_pa_anga" => "Tongan Pa'anga",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'We hope you\'re enjoying using the app.<br/>If you\'d consider :link we\'d greatly appreciate it!',
|
'review_app_help' => 'We hope you\'re enjoying using the app.<br/>If you\'d consider :link we\'d greatly appreciate it!',
|
||||||
'writing_a_review' => 'pisanie recenzji',
|
'writing_a_review' => 'pisanie recenzji',
|
||||||
@ -2693,7 +2693,7 @@ Gdy przelewy zostaną zaksięgowane na Twoim koncie, wróć do tej strony i klik
|
|||||||
'no_assets' => 'No images, drag to upload',
|
'no_assets' => 'No images, drag to upload',
|
||||||
'add_image' => 'Dodaj obraz',
|
'add_image' => 'Dodaj obraz',
|
||||||
'select_image' => 'Wybierz obraz',
|
'select_image' => 'Wybierz obraz',
|
||||||
'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload images',
|
'upgrade_to_upload_images' => 'Upgrade to the Enterprise Plan to upload files & images',
|
||||||
'delete_image' => 'Usuń obraz',
|
'delete_image' => 'Usuń obraz',
|
||||||
'delete_image_help' => 'Warning: deleting the image will remove it from all proposals.',
|
'delete_image_help' => 'Warning: deleting the image will remove it from all proposals.',
|
||||||
'amount_variable_help' => 'Note: the invoice $amount field will use the partial/deposit field if set otherwise it will use the invoice balance.',
|
'amount_variable_help' => 'Note: the invoice $amount field will use the partial/deposit field if set otherwise it will use the invoice balance.',
|
||||||
@ -2878,19 +2878,6 @@ Gdy przelewy zostaną zaksięgowane na Twoim koncie, wróć do tej strony i klik
|
|||||||
'refunded' => 'Zwrócone',
|
'refunded' => 'Zwrócone',
|
||||||
'marked_quote_as_sent' => 'Successfully marked quote as sent',
|
'marked_quote_as_sent' => 'Successfully marked quote as sent',
|
||||||
'custom_module_settings' => 'Ustawienia własnego modułu',
|
'custom_module_settings' => 'Ustawienia własnego modułu',
|
||||||
'ticket' => 'Ticket',
|
|
||||||
'tickets' => 'Tickets',
|
|
||||||
'ticket_number' => 'Ticket #',
|
|
||||||
'new_ticket' => 'New Ticket',
|
|
||||||
'edit_ticket' => 'Edit Ticket',
|
|
||||||
'view_ticket' => 'View Ticket',
|
|
||||||
'archive_ticket' => 'Archive Ticket',
|
|
||||||
'restore_ticket' => 'Restore Ticket',
|
|
||||||
'delete_ticket' => 'Delete Ticket',
|
|
||||||
'archived_ticket' => 'Successfully archived ticket',
|
|
||||||
'archived_tickets' => 'Successfully archived tickets',
|
|
||||||
'restored_ticket' => 'Successfully restored ticket',
|
|
||||||
'deleted_ticket' => 'Successfully deleted ticket',
|
|
||||||
'open' => 'Otwórz',
|
'open' => 'Otwórz',
|
||||||
'new' => 'Nowy',
|
'new' => 'Nowy',
|
||||||
'closed' => 'Zamknięte',
|
'closed' => 'Zamknięte',
|
||||||
@ -2907,14 +2894,6 @@ Gdy przelewy zostaną zaksięgowane na Twoim koncie, wróć do tej strony i klik
|
|||||||
'assigned_to' => 'Przypisane do',
|
'assigned_to' => 'Przypisane do',
|
||||||
'reply' => 'Odpowiedz',
|
'reply' => 'Odpowiedz',
|
||||||
'awaiting_reply' => 'Oczekiwanie na odpowiedź',
|
'awaiting_reply' => 'Oczekiwanie na odpowiedź',
|
||||||
'ticket_close' => 'Close Ticket',
|
|
||||||
'ticket_reopen' => 'Reopen Ticket',
|
|
||||||
'ticket_open' => 'Open Ticket',
|
|
||||||
'ticket_split' => 'Split Ticket',
|
|
||||||
'ticket_merge' => 'Merge Ticket',
|
|
||||||
'ticket_update' => 'Update Ticket',
|
|
||||||
'ticket_settings' => 'Ticket Settings',
|
|
||||||
'updated_ticket' => 'Ticket Updated',
|
|
||||||
'mark_spam' => 'Oznacz jako Spam',
|
'mark_spam' => 'Oznacz jako Spam',
|
||||||
'local_part' => 'Część lokalna',
|
'local_part' => 'Część lokalna',
|
||||||
'local_part_unavailable' => 'Nazwa zajęta',
|
'local_part_unavailable' => 'Nazwa zajęta',
|
||||||
@ -2941,66 +2920,25 @@ Gdy przelewy zostaną zaksięgowane na Twoim koncie, wróć do tej strony i klik
|
|||||||
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'Domyślny priorytet',
|
'default_priority' => 'Domyślny priorytet',
|
||||||
'alert_new_comment_id' => 'Nowy komentarz',
|
'alert_new_comment_id' => 'Nowy komentarz',
|
||||||
'alert_comment_ticket_help' => 'Wybranie szablonu spowoduje wysłanie powiadomienia (do agenta) o pojawieniu się komentarza.',
|
|
||||||
'alert_comment_ticket_email_help' => 'Comma separated emails to bcc on new comment.',
|
|
||||||
'new_ticket_notification_list' => 'Additional new ticket notifications',
|
|
||||||
'update_ticket_notification_list' => 'Dodatkowe powiadomienia o nowych komentarzach',
|
'update_ticket_notification_list' => 'Dodatkowe powiadomienia o nowych komentarzach',
|
||||||
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
||||||
'alert_ticket_assign_agent_id' => 'Ticket assignment',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'Selecting a template will send a notification (to agent) when a ticket is assigned.',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'Additional ticket assigned notifications',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'Comma separated emails to bcc on ticket assignment.',
|
|
||||||
'alert_ticket_transfer_email_help' => 'Comma separated emails to bcc on ticket transfer.',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'Ticket overdue',
|
|
||||||
'alert_ticket_overdue_email' => 'Additional overdue ticket notifications',
|
|
||||||
'alert_ticket_overdue_email_help' => 'Comma separated emails to bcc on ticket overdue.',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'Selecting a template will send a notification (to agent) when a ticket becomes overdue.',
|
|
||||||
'ticket_master' => 'Ticket Master',
|
|
||||||
'ticket_master_help' => 'Has the ability to assign and transfer tickets. Assigned as the default agent for all tickets.',
|
|
||||||
'default_agent' => 'Domyślny agent',
|
'default_agent' => 'Domyślny agent',
|
||||||
'default_agent_help' => 'If selected will automatically be assigned to all inbound tickets',
|
'default_agent_help' => 'If selected will automatically be assigned to all inbound tickets',
|
||||||
'show_agent_details' => 'Pokaż szczegóły agenta w odpowiedziach',
|
'show_agent_details' => 'Pokaż szczegóły agenta w odpowiedziach',
|
||||||
'avatar' => 'Awatar',
|
'avatar' => 'Awatar',
|
||||||
'remove_avatar' => 'Usuń awatar',
|
'remove_avatar' => 'Usuń awatar',
|
||||||
'ticket_not_found' => 'Ticket not found',
|
|
||||||
'add_template' => 'Dodaj Szablon',
|
'add_template' => 'Dodaj Szablon',
|
||||||
'ticket_template' => 'Ticket Template',
|
|
||||||
'ticket_templates' => 'Ticket Templates',
|
|
||||||
'updated_ticket_template' => 'Updated Ticket Template',
|
|
||||||
'created_ticket_template' => 'Created Ticket Template',
|
|
||||||
'archive_ticket_template' => 'Archiwizuj Szablon',
|
'archive_ticket_template' => 'Archiwizuj Szablon',
|
||||||
'restore_ticket_template' => 'Przywróć Szablon',
|
'restore_ticket_template' => 'Przywróć Szablon',
|
||||||
'archived_ticket_template' => 'Szablon zarchiwizowany pomyślnie',
|
'archived_ticket_template' => 'Szablon zarchiwizowany pomyślnie',
|
||||||
'restored_ticket_template' => 'Szablon przywrócony pomyślnie',
|
'restored_ticket_template' => 'Szablon przywrócony pomyślnie',
|
||||||
'close_reason' => 'Let us know why you are closing this ticket',
|
|
||||||
'reopen_reason' => 'Let us know why you are reopening this ticket',
|
|
||||||
'enter_ticket_message' => 'Please enter a message to update the ticket',
|
'enter_ticket_message' => 'Please enter a message to update the ticket',
|
||||||
'show_hide_all' => 'Pokaż / Ukryj wszystko',
|
'show_hide_all' => 'Pokaż / Ukryj wszystko',
|
||||||
'subject_required' => 'Temat jest wymagany',
|
'subject_required' => 'Temat jest wymagany',
|
||||||
'mobile_refresh_warning' => 'Jeśli korzystasz z aplikacji mobilnej, może być konieczne pełne odświeżenie.',
|
'mobile_refresh_warning' => 'Jeśli korzystasz z aplikacji mobilnej, może być konieczne pełne odświeżenie.',
|
||||||
'enable_proposals_for_background' => 'To upload a background image :link to enable the proposals module.',
|
|
||||||
'ticket_assignment' => 'Ticket :ticket_number has been assigned to :agent',
|
|
||||||
'ticket_contact_reply' => 'Ticket :ticket_number has been updated by client :contact',
|
|
||||||
'ticket_new_template_subject' => 'Ticket :ticket_number has been created.',
|
|
||||||
'ticket_updated_template_subject' => 'Ticket :ticket_number has been updated.',
|
|
||||||
'ticket_closed_template_subject' => 'Ticket :ticket_number has been closed.',
|
|
||||||
'ticket_overdue_template_subject' => 'Ticket :ticket_number is now overdue',
|
|
||||||
'merge' => 'Scal',
|
'merge' => 'Scal',
|
||||||
'merged' => 'Scalone',
|
'merged' => 'Scalone',
|
||||||
'agent' => 'Agent',
|
'agent' => 'Agent',
|
||||||
'parent_ticket' => 'Parent Ticket',
|
|
||||||
'linked_tickets' => 'Linked Tickets',
|
|
||||||
'merge_prompt' => 'Enter ticket number to merge into',
|
|
||||||
'merge_from_to' => 'Ticket #:old_ticket merged into Ticket #:new_ticket',
|
|
||||||
'merge_closed_ticket_text' => 'Ticket #:old_ticket was closed and merged into Ticket#:new_ticket - :subject',
|
|
||||||
'merge_updated_ticket_text' => 'Ticket #:old_ticket was closed and merged into this ticket',
|
|
||||||
'merge_placeholder' => 'Merge ticket #:ticket into the following ticket',
|
|
||||||
'select_ticket' => 'Select Ticket',
|
|
||||||
'new_internal_ticket' => 'New internal ticket',
|
|
||||||
'internal_ticket' => 'Internal ticket',
|
|
||||||
'create_ticket' => 'Create ticket',
|
|
||||||
'allow_inbound_email_tickets_external' => 'New Tickets by email (Client)',
|
|
||||||
'allow_inbound_email_tickets_external_help' => 'Allow clients to create new tickets by email',
|
|
||||||
'include_in_filter' => 'Uwzględnij w filtrowaniu',
|
'include_in_filter' => 'Uwzględnij w filtrowaniu',
|
||||||
'custom_client1' => ':VALUE',
|
'custom_client1' => ':VALUE',
|
||||||
'custom_client2' => ':VALUE',
|
'custom_client2' => ':VALUE',
|
||||||
@ -3846,7 +3784,7 @@ Gdy przelewy zostaną zaksięgowane na Twoim koncie, wróć do tej strony i klik
|
|||||||
'entity_number_placeholder' => ':entity # :entity_number',
|
'entity_number_placeholder' => ':entity # :entity_number',
|
||||||
'email_link_not_working' => 'Jeśli powyższy przycisk nie działa, kliknij link',
|
'email_link_not_working' => 'Jeśli powyższy przycisk nie działa, kliknij link',
|
||||||
'display_log' => 'Pokaż log',
|
'display_log' => 'Pokaż log',
|
||||||
'send_fail_logs_to_our_server' => 'Zgłaszaj błędy w czasie rzeczywistym',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'Instalacja',
|
'setup' => 'Instalacja',
|
||||||
'quick_overview_statistics' => 'Quick overview & statistics',
|
'quick_overview_statistics' => 'Quick overview & statistics',
|
||||||
'update_your_personal_info' => 'Aktualizacja Twoich danych osobowych',
|
'update_your_personal_info' => 'Aktualizacja Twoich danych osobowych',
|
||||||
@ -4027,7 +3965,7 @@ Gdy przelewy zostaną zaksięgowane na Twoim koncie, wróć do tej strony i klik
|
|||||||
'user_detached' => 'Użytkownik odłączony od firmy',
|
'user_detached' => 'Użytkownik odłączony od firmy',
|
||||||
'create_webhook_failure' => 'Failed to create Webhook',
|
'create_webhook_failure' => 'Failed to create Webhook',
|
||||||
'payment_message_extended' => 'Dziękujemy za wpłatę :amount za :invoice',
|
'payment_message_extended' => 'Dziękujemy za wpłatę :amount za :invoice',
|
||||||
'online_payments_minimum_note' => 'Note: Online payments are supported only if amount is bigger than $1 or currency equivalent.',
|
'online_payments_minimum_note' => 'Note: Online payments are supported only if amount is larger than $1 or currency equivalent.',
|
||||||
'payment_token_not_found' => 'Payment token not found, please try again. If an issue still persist, try with another payment method',
|
'payment_token_not_found' => 'Payment token not found, please try again. If an issue still persist, try with another payment method',
|
||||||
'vendor_address1' => 'Vendor Street',
|
'vendor_address1' => 'Vendor Street',
|
||||||
'vendor_address2' => 'Vendor Apt/Suite',
|
'vendor_address2' => 'Vendor Apt/Suite',
|
||||||
@ -4435,7 +4373,7 @@ Gdy przelewy zostaną zaksięgowane na Twoim koncie, wróć do tej strony i klik
|
|||||||
'client_shipping_country' => 'Client Shipping Country',
|
'client_shipping_country' => 'Client Shipping Country',
|
||||||
'load_pdf' => 'Load PDF',
|
'load_pdf' => 'Load PDF',
|
||||||
'start_free_trial' => 'Start Free Trial',
|
'start_free_trial' => 'Start Free Trial',
|
||||||
'start_free_trial_message' => 'Start your FREE 14 day trial of the pro plan',
|
'start_free_trial_message' => 'Start your FREE 14 day trial of the Pro Plan',
|
||||||
'due_on_receipt' => 'Due on Receipt',
|
'due_on_receipt' => 'Due on Receipt',
|
||||||
'is_paid' => 'Zapłacone',
|
'is_paid' => 'Zapłacone',
|
||||||
'age_group_paid' => 'Zapłacono',
|
'age_group_paid' => 'Zapłacono',
|
||||||
@ -5145,7 +5083,7 @@ Gdy przelewy zostaną zaksięgowane na Twoim koncie, wróć do tej strony i klik
|
|||||||
'payment_refund_receipt' => 'Payment Refund Receipt # :number',
|
'payment_refund_receipt' => 'Payment Refund Receipt # :number',
|
||||||
'payment_receipt' => 'Payment Receipt # :number',
|
'payment_receipt' => 'Payment Receipt # :number',
|
||||||
'load_template_description' => 'The template will be applied to following:',
|
'load_template_description' => 'The template will be applied to following:',
|
||||||
'run_template' => 'Run template',
|
'run_template' => 'Run Template',
|
||||||
'statement_design' => 'Statement Design',
|
'statement_design' => 'Statement Design',
|
||||||
'delivery_note_design' => 'Delivery Note Design',
|
'delivery_note_design' => 'Delivery Note Design',
|
||||||
'payment_receipt_design' => 'Payment Receipt Design',
|
'payment_receipt_design' => 'Payment Receipt Design',
|
||||||
@ -5295,6 +5233,72 @@ Gdy przelewy zostaną zaksięgowane na Twoim koncie, wróć do tej strony i klik
|
|||||||
'rappen_rounding_help' => 'Round amount to 5 cents',
|
'rappen_rounding_help' => 'Round amount to 5 cents',
|
||||||
'assign_group' => 'Assign group',
|
'assign_group' => 'Assign group',
|
||||||
'paypal_advanced_cards' => 'Advanced Card Payments',
|
'paypal_advanced_cards' => 'Advanced Card Payments',
|
||||||
|
'local_domain_help' => 'EHLO domain (optional)',
|
||||||
|
'port_help' => 'ie. 25,587,465',
|
||||||
|
'host_help' => 'ie. smtp.gmail.com',
|
||||||
|
'always_show_required_fields' => 'Allows show required fields form',
|
||||||
|
'always_show_required_fields_help' => 'Displays the required fields form always at checkout',
|
||||||
|
'advanced_cards' => 'Advanced Cards',
|
||||||
|
'activity_140' => 'Statement sent to :client',
|
||||||
|
'invoice_net_amount' => 'Invoice Net Amount',
|
||||||
|
'round_to_minutes' => 'Round To Minutes',
|
||||||
|
'1_second' => '1 Second',
|
||||||
|
'1_minute' => '1 Minute',
|
||||||
|
'5_minutes' => '5 Minutes',
|
||||||
|
'15_minutes' => '15 Minutes',
|
||||||
|
'30_minutes' => '30 Minutes',
|
||||||
|
'1_hour' => '1 Hour',
|
||||||
|
'1_day' => '1 Day',
|
||||||
|
'round_tasks' => 'Task Rounding Direction',
|
||||||
|
'round_tasks_help' => 'Round task times up or down.',
|
||||||
|
'direction' => 'Direction',
|
||||||
|
'round_up' => 'Round Up',
|
||||||
|
'round_down' => 'Round Down',
|
||||||
|
'task_round_to_nearest' => 'Round To Nearest',
|
||||||
|
'task_round_to_nearest_help' => 'The interval to round the task to.',
|
||||||
|
'bulk_updated' => 'Successfully updated data',
|
||||||
|
'bulk_update' => 'Bulk Update',
|
||||||
|
'calculate' => 'Calculate',
|
||||||
|
'sum' => 'Sum',
|
||||||
|
'money' => 'Money',
|
||||||
|
'web_app' => 'Web App',
|
||||||
|
'desktop_app' => 'Desktop App',
|
||||||
|
'disconnected' => 'Disconnected',
|
||||||
|
'reconnect' => 'Reconnect',
|
||||||
|
'e_invoice_settings' => 'E-Invoice Settings',
|
||||||
|
'btcpay_refund_subject' => 'Refund of your invoice via BTCPay',
|
||||||
|
'btcpay_refund_body' => 'A refund intended for you has been issued. To claim it via BTCPay, please click on this link:',
|
||||||
|
'currency_mauritanian_ouguiya' => 'Mauritanian Ouguiya',
|
||||||
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
||||||
|
@ -2361,7 +2361,7 @@ Quando tiver as quantias, volte a esta página de formas de pagamento e clique "
|
|||||||
'currency_gold_troy_ounce' => 'Onça Troy de Ouro',
|
'currency_gold_troy_ounce' => 'Onça Troy de Ouro',
|
||||||
'currency_nicaraguan_córdoba' => 'Córdoba Nicaraguense',
|
'currency_nicaraguan_córdoba' => 'Córdoba Nicaraguense',
|
||||||
'currency_malagasy_ariary' => 'Ariário malgaxe',
|
'currency_malagasy_ariary' => 'Ariário malgaxe',
|
||||||
"currency_tongan_pa_anga" => "Pa'anga de Tonga",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'Esperamos que esteja aproveitando o app. <br/>Se você considerar :link agradeceríamos bastante!',
|
'review_app_help' => 'Esperamos que esteja aproveitando o app. <br/>Se você considerar :link agradeceríamos bastante!',
|
||||||
'writing_a_review' => 'Escrevendo uma avaliação',
|
'writing_a_review' => 'Escrevendo uma avaliação',
|
||||||
@ -2877,19 +2877,6 @@ Quando tiver as quantias, volte a esta página de formas de pagamento e clique "
|
|||||||
'refunded' => 'Reembolsado',
|
'refunded' => 'Reembolsado',
|
||||||
'marked_quote_as_sent' => 'Orçamento marcado como enviado com sucesso',
|
'marked_quote_as_sent' => 'Orçamento marcado como enviado com sucesso',
|
||||||
'custom_module_settings' => 'Configurações Personalizadas de Módulo',
|
'custom_module_settings' => 'Configurações Personalizadas de Módulo',
|
||||||
'ticket' => 'Ticket',
|
|
||||||
'tickets' => 'Tickets',
|
|
||||||
'ticket_number' => 'Ticket #',
|
|
||||||
'new_ticket' => 'Novo Ticket',
|
|
||||||
'edit_ticket' => 'Editar Ticket',
|
|
||||||
'view_ticket' => 'Visualizar Ticket',
|
|
||||||
'archive_ticket' => 'Arquivar Ticket',
|
|
||||||
'restore_ticket' => 'Restaurar Ticket',
|
|
||||||
'delete_ticket' => 'Excluir Ticket',
|
|
||||||
'archived_ticket' => 'Ticket arquivado com sucesso',
|
|
||||||
'archived_tickets' => 'Tickets arquivados com sucesso',
|
|
||||||
'restored_ticket' => 'Ticket restaurado com sucesso',
|
|
||||||
'deleted_ticket' => 'Ticket excluído com sucesso',
|
|
||||||
'open' => 'Aberto',
|
'open' => 'Aberto',
|
||||||
'new' => 'Novo',
|
'new' => 'Novo',
|
||||||
'closed' => 'Fechado',
|
'closed' => 'Fechado',
|
||||||
@ -2906,14 +2893,6 @@ Quando tiver as quantias, volte a esta página de formas de pagamento e clique "
|
|||||||
'assigned_to' => 'Atribuído para',
|
'assigned_to' => 'Atribuído para',
|
||||||
'reply' => 'Responder',
|
'reply' => 'Responder',
|
||||||
'awaiting_reply' => 'Aguardando Resposta',
|
'awaiting_reply' => 'Aguardando Resposta',
|
||||||
'ticket_close' => 'Fechar Ticket',
|
|
||||||
'ticket_reopen' => 'Reabrir Ticket',
|
|
||||||
'ticket_open' => 'Abrir Ticket',
|
|
||||||
'ticket_split' => 'Dividir Ticket',
|
|
||||||
'ticket_merge' => 'Unir Ticket',
|
|
||||||
'ticket_update' => 'Atualizar Ticket',
|
|
||||||
'ticket_settings' => 'Configurações do Ticket',
|
|
||||||
'updated_ticket' => 'Ticket Atualizado',
|
|
||||||
'mark_spam' => 'Marcar como Spam',
|
'mark_spam' => 'Marcar como Spam',
|
||||||
'local_part' => 'Parte Local',
|
'local_part' => 'Parte Local',
|
||||||
'local_part_unavailable' => 'Nome tomado',
|
'local_part_unavailable' => 'Nome tomado',
|
||||||
@ -2931,31 +2910,23 @@ Quando tiver as quantias, volte a esta página de formas de pagamento e clique "
|
|||||||
'mime_types' => 'Tipos MIME',
|
'mime_types' => 'Tipos MIME',
|
||||||
'mime_types_placeholder' => '.pdf , .docx , .jpg',
|
'mime_types_placeholder' => '.pdf , .docx , .jpg',
|
||||||
'mime_types_help' => 'Lista separada por vírgulas de tipos MIME permitidos, deixe em branco para TODOS',
|
'mime_types_help' => 'Lista separada por vírgulas de tipos MIME permitidos, deixe em branco para TODOS',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'Prioridade Padrão',
|
'default_priority' => 'Prioridade Padrão',
|
||||||
'alert_new_comment_id' => 'Novo comentário',
|
'alert_new_comment_id' => 'Novo comentário',
|
||||||
'alert_comment_ticket_help' => 'Selecionar um modelo enviará uma notificação (para um agente) quando um novo comentário for feito.',
|
|
||||||
'alert_comment_ticket_email_help' => 'Emails separados por vírgulas para cco após um novo comentário.',
|
|
||||||
'new_ticket_notification_list' => 'Notificações adicionais de novo ticket',
|
|
||||||
'update_ticket_notification_list' => 'Notificações adicionais de novo comentário',
|
'update_ticket_notification_list' => 'Notificações adicionais de novo comentário',
|
||||||
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
||||||
'alert_ticket_assign_agent_id' => 'Atribuição de Ticket',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'Selecionar um modelo enviará uma notificação (para um agente) quando um ticket for atribuído.',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'Notificações adicionais de ticket atribuído',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'Emails separados por vírgulas para cco após atribuição de ticket.',
|
|
||||||
'alert_ticket_transfer_email_help' => 'Emails separados por vírgulas para cco após transferência de ticket.',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'Atraso de Ticket',
|
|
||||||
'alert_ticket_overdue_email' => 'Notificações adicionais de ticket atrasado',
|
|
||||||
'alert_ticket_overdue_email_help' => 'Emails separados por vírgulas para cco após atraso de ticket. ',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'Selecionar um modelo enviará uma notificação (para um agente) quando um ticket atrasar. ',
|
|
||||||
'default_agent' => 'Agente Padrão',
|
'default_agent' => 'Agente Padrão',
|
||||||
'default_agent_help' => 'Se selecionado irá automaticamente ser selecionado para todos os tickets entrantes',
|
'default_agent_help' => 'Se selecionado irá automaticamente ser selecionado para todos os tickets entrantes',
|
||||||
'show_agent_details' => 'Exibir detalhes do agente nas respostas',
|
'show_agent_details' => 'Exibir detalhes do agente nas respostas',
|
||||||
'avatar' => 'Avatar',
|
'avatar' => 'Avatar',
|
||||||
'remove_avatar' => 'Remover avatar',
|
'remove_avatar' => 'Remover avatar',
|
||||||
'ticket_not_found' => 'Ticket não encontrado',
|
|
||||||
'add_template' => 'Adicionar Modelo',
|
'add_template' => 'Adicionar Modelo',
|
||||||
'updated_ticket_template' => 'Modelo de Ticket Atualizado',
|
|
||||||
'created_ticket_template' => 'Modelo de Ticket Criado',
|
|
||||||
'archive_ticket_template' => 'Arquivar Modelo',
|
'archive_ticket_template' => 'Arquivar Modelo',
|
||||||
'restore_ticket_template' => 'Restaurar Modelo',
|
'restore_ticket_template' => 'Restaurar Modelo',
|
||||||
'archived_ticket_template' => 'Modelo arquivado com sucesso',
|
'archived_ticket_template' => 'Modelo arquivado com sucesso',
|
||||||
@ -3812,7 +3783,7 @@ Quando tiver as quantias, volte a esta página de formas de pagamento e clique "
|
|||||||
'entity_number_placeholder' => ':entity # :entity _número',
|
'entity_number_placeholder' => ':entity # :entity _número',
|
||||||
'email_link_not_working' => 'Se o botão acima não estiver funcionando para você, clique no link',
|
'email_link_not_working' => 'Se o botão acima não estiver funcionando para você, clique no link',
|
||||||
'display_log' => 'Exibir registro',
|
'display_log' => 'Exibir registro',
|
||||||
'send_fail_logs_to_our_server' => 'Relate erros em tempo real',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'Configurar',
|
'setup' => 'Configurar',
|
||||||
'quick_overview_statistics' => 'Visão geral rápida e estatísticas',
|
'quick_overview_statistics' => 'Visão geral rápida e estatísticas',
|
||||||
'update_your_personal_info' => 'Atualize suas informações pessoais',
|
'update_your_personal_info' => 'Atualize suas informações pessoais',
|
||||||
@ -5300,6 +5271,33 @@ Quando tiver as quantias, volte a esta página de formas de pagamento e clique "
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'End Of Month',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -2362,7 +2362,7 @@ Quando tiver os valores dos depósitos, volte a esta página e conclua a verific
|
|||||||
'currency_gold_troy_ounce' => 'Onça Troy de Ouro',
|
'currency_gold_troy_ounce' => 'Onça Troy de Ouro',
|
||||||
'currency_nicaraguan_córdoba' => 'Córdoba Nicaraguense',
|
'currency_nicaraguan_córdoba' => 'Córdoba Nicaraguense',
|
||||||
'currency_malagasy_ariary' => 'Ariário malgaxe',
|
'currency_malagasy_ariary' => 'Ariário malgaxe',
|
||||||
"currency_tongan_pa_anga" => "Pa'anga de Tonga",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'Esperamos que esteja a gostar da aplicação. <br/>Se eventualmente considerar :link agradecíamos muito!',
|
'review_app_help' => 'Esperamos que esteja a gostar da aplicação. <br/>Se eventualmente considerar :link agradecíamos muito!',
|
||||||
'writing_a_review' => 'escrever uma avaliação',
|
'writing_a_review' => 'escrever uma avaliação',
|
||||||
@ -2879,19 +2879,6 @@ debitar da sua conta de acordo com essas instruções. Está elegível a um reem
|
|||||||
'refunded' => 'Reembolsado',
|
'refunded' => 'Reembolsado',
|
||||||
'marked_quote_as_sent' => 'Orçamento marcado como enviado com sucesso',
|
'marked_quote_as_sent' => 'Orçamento marcado como enviado com sucesso',
|
||||||
'custom_module_settings' => 'Configurações Personalizadas de Módulo',
|
'custom_module_settings' => 'Configurações Personalizadas de Módulo',
|
||||||
'ticket' => 'Bilhete',
|
|
||||||
'tickets' => 'Bilhetes',
|
|
||||||
'ticket_number' => 'Bilhete #',
|
|
||||||
'new_ticket' => 'Novo Bilhete',
|
|
||||||
'edit_ticket' => 'Editar Bilhete',
|
|
||||||
'view_ticket' => 'Visualizar Bilhete',
|
|
||||||
'archive_ticket' => 'Arquivar Bilhete',
|
|
||||||
'restore_ticket' => 'Restaurar Bilhete',
|
|
||||||
'delete_ticket' => 'Apagar Bilhete',
|
|
||||||
'archived_ticket' => 'Bilhete arquivado com sucesso',
|
|
||||||
'archived_tickets' => 'Bilhetes arquivados com sucesso',
|
|
||||||
'restored_ticket' => 'Bilhete restaurado com sucesso',
|
|
||||||
'deleted_ticket' => 'Bilhete apagado com sucesso',
|
|
||||||
'open' => 'Aberto',
|
'open' => 'Aberto',
|
||||||
'new' => 'Novo',
|
'new' => 'Novo',
|
||||||
'closed' => 'Fechado',
|
'closed' => 'Fechado',
|
||||||
@ -2908,14 +2895,6 @@ debitar da sua conta de acordo com essas instruções. Está elegível a um reem
|
|||||||
'assigned_to' => 'Atribuído para',
|
'assigned_to' => 'Atribuído para',
|
||||||
'reply' => 'Responder',
|
'reply' => 'Responder',
|
||||||
'awaiting_reply' => 'Aguarda Resposta',
|
'awaiting_reply' => 'Aguarda Resposta',
|
||||||
'ticket_close' => 'Fechar Bilhete',
|
|
||||||
'ticket_reopen' => 'Reabrir Bilhete',
|
|
||||||
'ticket_open' => 'Abrir Bilhete',
|
|
||||||
'ticket_split' => 'Dividir Bilhete',
|
|
||||||
'ticket_merge' => 'Unir Bilhete',
|
|
||||||
'ticket_update' => 'Atualizar Bilhete',
|
|
||||||
'ticket_settings' => 'Configurações do Bilhete',
|
|
||||||
'updated_ticket' => 'Bilhete Atualizado',
|
|
||||||
'mark_spam' => 'Marcar como Spam',
|
'mark_spam' => 'Marcar como Spam',
|
||||||
'local_part' => 'Parte Local',
|
'local_part' => 'Parte Local',
|
||||||
'local_part_unavailable' => 'Nome indisponível',
|
'local_part_unavailable' => 'Nome indisponível',
|
||||||
@ -2933,31 +2912,23 @@ debitar da sua conta de acordo com essas instruções. Está elegível a um reem
|
|||||||
'mime_types' => 'Tipos MIME',
|
'mime_types' => 'Tipos MIME',
|
||||||
'mime_types_placeholder' => '.pdf , .docx , .jpg',
|
'mime_types_placeholder' => '.pdf , .docx , .jpg',
|
||||||
'mime_types_help' => 'Lista separada por vírgulas de tipos MIME permitidos, deixe em branco para TODOS',
|
'mime_types_help' => 'Lista separada por vírgulas de tipos MIME permitidos, deixe em branco para TODOS',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'Prioridade Padrão',
|
'default_priority' => 'Prioridade Padrão',
|
||||||
'alert_new_comment_id' => 'Novo comentário',
|
'alert_new_comment_id' => 'Novo comentário',
|
||||||
'alert_comment_ticket_help' => 'Selecionar um modelo enviará uma notificação (para um agente) quando um novo comentário for feito.',
|
|
||||||
'alert_comment_ticket_email_help' => 'E-mails separados por vírgulas para bcc após um novo comentário.',
|
|
||||||
'new_ticket_notification_list' => 'Notificações adicionais de novo bilhete',
|
|
||||||
'update_ticket_notification_list' => 'Notificações adicionais de novo comentário',
|
'update_ticket_notification_list' => 'Notificações adicionais de novo comentário',
|
||||||
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
||||||
'alert_ticket_assign_agent_id' => 'Atribuição de Bilhete',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'Selecionar um modelo enviará uma notificação (para um agente) quando um bilhete for atribuído.',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'Notificações adicionais de bilhete atribuído',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'E-mails separados por vírgulas para bcc após atribuição de bilhete.',
|
|
||||||
'alert_ticket_transfer_email_help' => 'Emails separados por vírgulas para bcc após transferência de bilhete.',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'Atraso de Bilhete',
|
|
||||||
'alert_ticket_overdue_email' => 'Notificações adicionais de ticket atrasado',
|
|
||||||
'alert_ticket_overdue_email_help' => 'Emails separados por vírgulas para bcc após atraso de ticket. ',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'Selecionar um modelo enviará uma notificação (para um agente) quando um ticket atrasar. ',
|
|
||||||
'default_agent' => 'Agente Padrão',
|
'default_agent' => 'Agente Padrão',
|
||||||
'default_agent_help' => 'Se selecionado irá automaticamente ser selecionado para todos os tickets entrantes',
|
'default_agent_help' => 'Se selecionado irá automaticamente ser selecionado para todos os tickets entrantes',
|
||||||
'show_agent_details' => 'Exibir detalhes do agente nas respostas',
|
'show_agent_details' => 'Exibir detalhes do agente nas respostas',
|
||||||
'avatar' => 'Avatar',
|
'avatar' => 'Avatar',
|
||||||
'remove_avatar' => 'Remover avatar',
|
'remove_avatar' => 'Remover avatar',
|
||||||
'ticket_not_found' => 'Ticket não encontrado',
|
|
||||||
'add_template' => 'Adicionar Modelo',
|
'add_template' => 'Adicionar Modelo',
|
||||||
'updated_ticket_template' => 'Modelo de Ticket Atualizado',
|
|
||||||
'created_ticket_template' => 'Modelo de Ticket Criado',
|
|
||||||
'archive_ticket_template' => 'Arquivar Modelo',
|
'archive_ticket_template' => 'Arquivar Modelo',
|
||||||
'restore_ticket_template' => 'Restaurar Modelo',
|
'restore_ticket_template' => 'Restaurar Modelo',
|
||||||
'archived_ticket_template' => 'Modelo arquivado com sucesso',
|
'archived_ticket_template' => 'Modelo arquivado com sucesso',
|
||||||
@ -3814,7 +3785,7 @@ debitar da sua conta de acordo com essas instruções. Está elegível a um reem
|
|||||||
'entity_number_placeholder' => ':entity # :entity_number',
|
'entity_number_placeholder' => ':entity # :entity_number',
|
||||||
'email_link_not_working' => 'Se o botão acima não estiver a funcionar, por favor carregue neste link',
|
'email_link_not_working' => 'Se o botão acima não estiver a funcionar, por favor carregue neste link',
|
||||||
'display_log' => 'Mostrar Log',
|
'display_log' => 'Mostrar Log',
|
||||||
'send_fail_logs_to_our_server' => 'Reportar erros em direto',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'Configurar',
|
'setup' => 'Configurar',
|
||||||
'quick_overview_statistics' => 'Visão Rápida & Estatísticas',
|
'quick_overview_statistics' => 'Visão Rápida & Estatísticas',
|
||||||
'update_your_personal_info' => 'Atualize a sua informação pessoal',
|
'update_your_personal_info' => 'Atualize a sua informação pessoal',
|
||||||
@ -5303,6 +5274,33 @@ O envio de E-mails foi suspenso. Será retomado às 23:00 UTC.',
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'End Of Month',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -2364,7 +2364,7 @@ Odată ce sumele au ajuns la dumneavoastră, reveniți la pagina cu metode de pl
|
|||||||
'currency_gold_troy_ounce' => 'Uncie Troy de aur',
|
'currency_gold_troy_ounce' => 'Uncie Troy de aur',
|
||||||
'currency_nicaraguan_córdoba' => 'Córdoba din Nicaragua',
|
'currency_nicaraguan_córdoba' => 'Córdoba din Nicaragua',
|
||||||
'currency_malagasy_ariary' => 'ariar malgaș',
|
'currency_malagasy_ariary' => 'ariar malgaș',
|
||||||
"currency_tongan_pa_anga" => "Tongan Pa'anga",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'Sperăm că vă place aplicația.<br/>Am aprecia dacă :link!',
|
'review_app_help' => 'Sperăm că vă place aplicația.<br/>Am aprecia dacă :link!',
|
||||||
'writing_a_review' => 'părerea dumneavoastră',
|
'writing_a_review' => 'părerea dumneavoastră',
|
||||||
@ -2881,19 +2881,6 @@ Odată ce sumele au ajuns la dumneavoastră, reveniți la pagina cu metode de pl
|
|||||||
'refunded' => 'Rambursată',
|
'refunded' => 'Rambursată',
|
||||||
'marked_quote_as_sent' => 'Oferta a fost marcată cu succes ca trimisă ',
|
'marked_quote_as_sent' => 'Oferta a fost marcată cu succes ca trimisă ',
|
||||||
'custom_module_settings' => 'Setări personalizate pentru modul',
|
'custom_module_settings' => 'Setări personalizate pentru modul',
|
||||||
'ticket' => 'Tichet',
|
|
||||||
'tickets' => 'Tichete',
|
|
||||||
'ticket_number' => 'Tichet #',
|
|
||||||
'new_ticket' => 'Un tichet nou',
|
|
||||||
'edit_ticket' => 'Modificați tichet',
|
|
||||||
'view_ticket' => 'Vizualizare tichet',
|
|
||||||
'archive_ticket' => 'Arhivați tichet',
|
|
||||||
'restore_ticket' => 'Restabiliți tichet',
|
|
||||||
'delete_ticket' => 'Sterge tichet',
|
|
||||||
'archived_ticket' => 'Tichet arhivat cu succes',
|
|
||||||
'archived_tickets' => 'Tichetele au fost arhivate cu succes',
|
|
||||||
'restored_ticket' => 'Tichetele au fost restabilite cu succes',
|
|
||||||
'deleted_ticket' => 'Tichet sters cu succes',
|
|
||||||
'open' => 'Deschideți',
|
'open' => 'Deschideți',
|
||||||
'new' => 'Nou',
|
'new' => 'Nou',
|
||||||
'closed' => 'Inchis',
|
'closed' => 'Inchis',
|
||||||
@ -2910,14 +2897,6 @@ Odată ce sumele au ajuns la dumneavoastră, reveniți la pagina cu metode de pl
|
|||||||
'assigned_to' => 'Asignare lui',
|
'assigned_to' => 'Asignare lui',
|
||||||
'reply' => 'Raspuns',
|
'reply' => 'Raspuns',
|
||||||
'awaiting_reply' => 'In asteptare raspuns',
|
'awaiting_reply' => 'In asteptare raspuns',
|
||||||
'ticket_close' => 'Inchide tichet',
|
|
||||||
'ticket_reopen' => 'Redeschide tichet',
|
|
||||||
'ticket_open' => 'Deschide tichet',
|
|
||||||
'ticket_split' => 'Imparte tichet',
|
|
||||||
'ticket_merge' => 'Îmbinați tichet',
|
|
||||||
'ticket_update' => 'Actualizeaza tichet',
|
|
||||||
'ticket_settings' => 'Configuratie tichet',
|
|
||||||
'updated_ticket' => 'Tichet actualizat',
|
|
||||||
'mark_spam' => 'Marcheaza ca SPAM',
|
'mark_spam' => 'Marcheaza ca SPAM',
|
||||||
'local_part' => 'Parte locală',
|
'local_part' => 'Parte locală',
|
||||||
'local_part_unavailable' => 'Numele este utilizat deja',
|
'local_part_unavailable' => 'Numele este utilizat deja',
|
||||||
@ -2935,31 +2914,23 @@ Odată ce sumele au ajuns la dumneavoastră, reveniți la pagina cu metode de pl
|
|||||||
'mime_types' => 'Tipuri de Mime',
|
'mime_types' => 'Tipuri de Mime',
|
||||||
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
||||||
'mime_types_help' => 'Listă separață prin virgule pentru tipuri de Mime permise. Nu scrieți nimic, pentru a selecta totul',
|
'mime_types_help' => 'Listă separață prin virgule pentru tipuri de Mime permise. Nu scrieți nimic, pentru a selecta totul',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'Prioritate implicita',
|
'default_priority' => 'Prioritate implicita',
|
||||||
'alert_new_comment_id' => 'Comentariu nou',
|
'alert_new_comment_id' => 'Comentariu nou',
|
||||||
'alert_comment_ticket_help' => 'Selectarea unui sablon va trimite o notificare ( agentului ) cand apare un comentariu nou.',
|
|
||||||
'alert_comment_ticket_email_help' => 'Email-uri separate prin virgule pentru BCC în comentarii noi.',
|
|
||||||
'new_ticket_notification_list' => 'Notificare pentru tichete aditionale',
|
|
||||||
'update_ticket_notification_list' => 'Notificări adiționale pentru comentarii noi',
|
'update_ticket_notification_list' => 'Notificări adiționale pentru comentarii noi',
|
||||||
'comma_separated_values' => 'admin@exemplu.com, supervizor@exemplu.com',
|
'comma_separated_values' => 'admin@exemplu.com, supervizor@exemplu.com',
|
||||||
'alert_ticket_assign_agent_id' => 'Alocare tichet',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'Selectând un șablon, veți trimite o notificare (agentului), când este atribuit un tichet. ',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'Notificări adiționale pentru tichetele atribuite',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'Email-uri separate prin virgule pentru BCC în evaluarea tichetelor.',
|
|
||||||
'alert_ticket_transfer_email_help' => 'Email-uri separate prin virgule pentru BCC în trasferul de tichete.',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'Tichet scadent',
|
|
||||||
'alert_ticket_overdue_email' => 'Notificări adiționale pentru tichetele scadente',
|
|
||||||
'alert_ticket_overdue_email_help' => 'Email-uri separate prin virgule pentru BCC în tichete scadente.',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'Selectând un șablon, veți trimite o notificare (agentului), când un tichet a trecut de data limită.',
|
|
||||||
'default_agent' => 'Agent implicit',
|
'default_agent' => 'Agent implicit',
|
||||||
'default_agent_help' => 'Dacă este selectat, va atribui automat toate tichetele',
|
'default_agent_help' => 'Dacă este selectat, va atribui automat toate tichetele',
|
||||||
'show_agent_details' => 'Afișați detaliile agenților în răspunsuri',
|
'show_agent_details' => 'Afișați detaliile agenților în răspunsuri',
|
||||||
'avatar' => 'Avatar',
|
'avatar' => 'Avatar',
|
||||||
'remove_avatar' => 'Îndepărtați avatar',
|
'remove_avatar' => 'Îndepărtați avatar',
|
||||||
'ticket_not_found' => 'Tichetul nu a fost găsit',
|
|
||||||
'add_template' => 'Adăugați un șablon',
|
'add_template' => 'Adăugați un șablon',
|
||||||
'updated_ticket_template' => 'Actualizați șablonul pentru tichete',
|
|
||||||
'created_ticket_template' => 'Creați un șablon pentru tichete',
|
|
||||||
'archive_ticket_template' => 'Arhivați șablonul',
|
'archive_ticket_template' => 'Arhivați șablonul',
|
||||||
'restore_ticket_template' => 'Restabiliți șablonul',
|
'restore_ticket_template' => 'Restabiliți șablonul',
|
||||||
'archived_ticket_template' => 'Șablonul a fost arhivat cu succes',
|
'archived_ticket_template' => 'Șablonul a fost arhivat cu succes',
|
||||||
@ -3816,7 +3787,7 @@ Odată ce sumele au ajuns la dumneavoastră, reveniți la pagina cu metode de pl
|
|||||||
'entity_number_placeholder' => ':entity # :entity_number',
|
'entity_number_placeholder' => ':entity # :entity_number',
|
||||||
'email_link_not_working' => 'În cazul în care nu funcționează butonul de mai sus, accesați link-ul',
|
'email_link_not_working' => 'În cazul în care nu funcționează butonul de mai sus, accesați link-ul',
|
||||||
'display_log' => 'Afișați înregistrările',
|
'display_log' => 'Afișați înregistrările',
|
||||||
'send_fail_logs_to_our_server' => 'Raportare erori în timp real',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'Configurare',
|
'setup' => 'Configurare',
|
||||||
'quick_overview_statistics' => 'Prezentare rapidă și statistici',
|
'quick_overview_statistics' => 'Prezentare rapidă și statistici',
|
||||||
'update_your_personal_info' => 'Actualizați-vă informațiile',
|
'update_your_personal_info' => 'Actualizați-vă informațiile',
|
||||||
@ -5304,6 +5275,33 @@ Odată ce sumele au ajuns la dumneavoastră, reveniți la pagina cu metode de pl
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'End Of Month',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -2351,7 +2351,7 @@ $lang = array(
|
|||||||
'currency_gold_troy_ounce' => 'Zlatá trójska unca',
|
'currency_gold_troy_ounce' => 'Zlatá trójska unca',
|
||||||
'currency_nicaraguan_córdoba' => 'Nikaragujská Córdoba',
|
'currency_nicaraguan_córdoba' => 'Nikaragujská Córdoba',
|
||||||
'currency_malagasy_ariary' => 'Madagaskarský ariár',
|
'currency_malagasy_ariary' => 'Madagaskarský ariár',
|
||||||
"currency_tongan_pa_anga" => "Tongan Pa'anga",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'Dúfame, že sa vám používanie aplikácie páči.<br/> Ak by ste zvážili :link, veľmi by sme to ocenili!',
|
'review_app_help' => 'Dúfame, že sa vám používanie aplikácie páči.<br/> Ak by ste zvážili :link, veľmi by sme to ocenili!',
|
||||||
'writing_a_review' => 'písanie recenzie',
|
'writing_a_review' => 'písanie recenzie',
|
||||||
@ -2867,19 +2867,6 @@ $lang = array(
|
|||||||
'refunded' => 'Vrátené',
|
'refunded' => 'Vrátené',
|
||||||
'marked_quote_as_sent' => 'Ponuka bola úspešne označená ako odoslaná',
|
'marked_quote_as_sent' => 'Ponuka bola úspešne označená ako odoslaná',
|
||||||
'custom_module_settings' => 'Vlastné nastavenia modulu',
|
'custom_module_settings' => 'Vlastné nastavenia modulu',
|
||||||
'ticket' => 'Tiket',
|
|
||||||
'tickets' => 'Tikety',
|
|
||||||
'ticket_number' => 'Tiket #',
|
|
||||||
'new_ticket' => 'Nový tiket',
|
|
||||||
'edit_ticket' => 'Upraviť tiket',
|
|
||||||
'view_ticket' => 'Zobraziť tiket',
|
|
||||||
'archive_ticket' => 'Archivovať tiket',
|
|
||||||
'restore_ticket' => 'Obnoviť tiket',
|
|
||||||
'delete_ticket' => 'Zmazať tiket',
|
|
||||||
'archived_ticket' => 'Tiket úspešne archivovaný',
|
|
||||||
'archived_tickets' => 'Tikety úspešne archivované',
|
|
||||||
'restored_ticket' => 'Tiket úspešne obnovený',
|
|
||||||
'deleted_ticket' => 'Tiket úspešne odstránený',
|
|
||||||
'open' => 'Otvoriť',
|
'open' => 'Otvoriť',
|
||||||
'new' => 'Nový',
|
'new' => 'Nový',
|
||||||
'closed' => 'Zavretý',
|
'closed' => 'Zavretý',
|
||||||
@ -2896,14 +2883,6 @@ $lang = array(
|
|||||||
'assigned_to' => 'Priradený',
|
'assigned_to' => 'Priradený',
|
||||||
'reply' => 'Odpovedať',
|
'reply' => 'Odpovedať',
|
||||||
'awaiting_reply' => 'Čaká sa na odpoveď',
|
'awaiting_reply' => 'Čaká sa na odpoveď',
|
||||||
'ticket_close' => 'Zatvoriť tiket',
|
|
||||||
'ticket_reopen' => 'Znovu otvoriť tiket',
|
|
||||||
'ticket_open' => 'Otvoriť tiket',
|
|
||||||
'ticket_split' => 'Rozdeliť tiket',
|
|
||||||
'ticket_merge' => 'Zlúčiť tiket',
|
|
||||||
'ticket_update' => 'Aktualizovať tiket',
|
|
||||||
'ticket_settings' => 'Nastavenia tiketu',
|
|
||||||
'updated_ticket' => 'Tiket bol aktualizovaný',
|
|
||||||
'mark_spam' => 'Označiť ako spam',
|
'mark_spam' => 'Označiť ako spam',
|
||||||
'local_part' => 'Miestna časť',
|
'local_part' => 'Miestna časť',
|
||||||
'local_part_unavailable' => 'Meno je už obsadené',
|
'local_part_unavailable' => 'Meno je už obsadené',
|
||||||
@ -2921,31 +2900,23 @@ $lang = array(
|
|||||||
'mime_types' => 'Mime typy',
|
'mime_types' => 'Mime typy',
|
||||||
'mime_types_placeholder' => '.pdf, .docx, .jpg',
|
'mime_types_placeholder' => '.pdf, .docx, .jpg',
|
||||||
'mime_types_help' => 'Čiarkami oddelený zoznam povolených typov MIME, ponechajte prázdne pre všetky',
|
'mime_types_help' => 'Čiarkami oddelený zoznam povolených typov MIME, ponechajte prázdne pre všetky',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'Predvolená priorita',
|
'default_priority' => 'Predvolená priorita',
|
||||||
'alert_new_comment_id' => 'Nový komentár',
|
'alert_new_comment_id' => 'Nový komentár',
|
||||||
'alert_comment_ticket_help' => 'Výberom šablóny sa odošle upozornenie (agentovi) po vytvorení komentára.',
|
|
||||||
'alert_comment_ticket_email_help' => 'E-maily oddelené čiarkami na skrytú kópiu nového komentára.',
|
|
||||||
'new_ticket_notification_list' => 'Ďalšie upozornenia na nové tikety',
|
|
||||||
'update_ticket_notification_list' => 'Ďalšie upozornenia na nové komentáre',
|
'update_ticket_notification_list' => 'Ďalšie upozornenia na nové komentáre',
|
||||||
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
||||||
'alert_ticket_assign_agent_id' => 'Priradenie tiketu',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'Výberom šablóny sa po priradení tiketu odošle upozornenie (agentovi).',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'Ďalšie upozornenia o pridelení tiketu',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'E-maily oddelené čiarkami na skrytú kópiu pri priradení lístka.',
|
|
||||||
'alert_ticket_transfer_email_help' => 'E-maily oddelené čiarkami na skrytú kópiu pri prevode lístka.',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'Tiket po splatnosti',
|
|
||||||
'alert_ticket_overdue_email' => 'Ďalšie upozornenia na tikety po splatnosti',
|
|
||||||
'alert_ticket_overdue_email_help' => 'E-maily oddelené čiarkami na skrytú kópiu na lístku po splatnosti.',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'Výberom šablóny sa odošle upozornenie (agentovi), keď sa tiket bude po splatnosti.',
|
|
||||||
'default_agent' => 'Predvolený agent',
|
'default_agent' => 'Predvolený agent',
|
||||||
'default_agent_help' => 'Ak je vybraté, bude automaticky priradené ku všetkým prichádzajúcim tiketom',
|
'default_agent_help' => 'Ak je vybraté, bude automaticky priradené ku všetkým prichádzajúcim tiketom',
|
||||||
'show_agent_details' => 'Zobraziť podrobnosti o agentovi v odpovediach',
|
'show_agent_details' => 'Zobraziť podrobnosti o agentovi v odpovediach',
|
||||||
'avatar' => 'Avatar',
|
'avatar' => 'Avatar',
|
||||||
'remove_avatar' => 'Odstrániť avatara',
|
'remove_avatar' => 'Odstrániť avatara',
|
||||||
'ticket_not_found' => 'Tiket sa nenašiel',
|
|
||||||
'add_template' => 'Pridať šablónu',
|
'add_template' => 'Pridať šablónu',
|
||||||
'updated_ticket_template' => 'Aktualizovaná šablóna tiketu',
|
|
||||||
'created_ticket_template' => 'Vytvorená šablóna tiketu',
|
|
||||||
'archive_ticket_template' => 'Archivovať šablónu',
|
'archive_ticket_template' => 'Archivovať šablónu',
|
||||||
'restore_ticket_template' => 'Obnoviť šablónu',
|
'restore_ticket_template' => 'Obnoviť šablónu',
|
||||||
'archived_ticket_template' => 'Šablóna úspešne archivovaná',
|
'archived_ticket_template' => 'Šablóna úspešne archivovaná',
|
||||||
@ -3802,7 +3773,7 @@ $lang = array(
|
|||||||
'entity_number_placeholder' => ':entity # :entity_number',
|
'entity_number_placeholder' => ':entity # :entity_number',
|
||||||
'email_link_not_working' => 'Ak vám vyššie uvedené tlačidlo nefunguje, kliknite na odkaz',
|
'email_link_not_working' => 'Ak vám vyššie uvedené tlačidlo nefunguje, kliknite na odkaz',
|
||||||
'display_log' => 'Zobraziť denník',
|
'display_log' => 'Zobraziť denník',
|
||||||
'send_fail_logs_to_our_server' => 'Hlásiť chyby v reálnom čase',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'Nastaviť',
|
'setup' => 'Nastaviť',
|
||||||
'quick_overview_statistics' => 'Rýchly prehľad a štatistiky',
|
'quick_overview_statistics' => 'Rýchly prehľad a štatistiky',
|
||||||
'update_your_personal_info' => 'Aktualizujte svoje osobné údaje',
|
'update_your_personal_info' => 'Aktualizujte svoje osobné údaje',
|
||||||
@ -5290,6 +5261,33 @@ $lang = array(
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'End Of Month',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -2364,7 +2364,7 @@ Kada budete imali iznose, vratite se na ovu stranicu sa načinima plaćanja i k
|
|||||||
'currency_gold_troy_ounce' => 'Gold Troy Ounce',
|
'currency_gold_troy_ounce' => 'Gold Troy Ounce',
|
||||||
'currency_nicaraguan_córdoba' => 'Nicaraguan Córdoba',
|
'currency_nicaraguan_córdoba' => 'Nicaraguan Córdoba',
|
||||||
'currency_malagasy_ariary' => 'Malagasy ariary',
|
'currency_malagasy_ariary' => 'Malagasy ariary',
|
||||||
"currency_tongan_pa_anga" => "Tongan Pa'anga",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'Nadamo se da uživate u korišćenju aplikacije. <br/> Bili bismo veoma zahvalni ako biste razmotrili :link.',
|
'review_app_help' => 'Nadamo se da uživate u korišćenju aplikacije. <br/> Bili bismo veoma zahvalni ako biste razmotrili :link.',
|
||||||
'writing_a_review' => 'pisanje recenzije',
|
'writing_a_review' => 'pisanje recenzije',
|
||||||
@ -2880,19 +2880,6 @@ Kada budete imali iznose, vratite se na ovu stranicu sa načinima plaćanja i k
|
|||||||
'refunded' => 'Refundirano',
|
'refunded' => 'Refundirano',
|
||||||
'marked_quote_as_sent' => 'Ponuda uspešno obeležena kao poslata',
|
'marked_quote_as_sent' => 'Ponuda uspešno obeležena kao poslata',
|
||||||
'custom_module_settings' => 'Podešavanje dodatnih modula',
|
'custom_module_settings' => 'Podešavanje dodatnih modula',
|
||||||
'ticket' => 'Tiket',
|
|
||||||
'tickets' => 'Tiketi',
|
|
||||||
'ticket_number' => 'Tiket #',
|
|
||||||
'new_ticket' => 'Novi tiket',
|
|
||||||
'edit_ticket' => 'Izmeni tiket',
|
|
||||||
'view_ticket' => 'Vidi tiket',
|
|
||||||
'archive_ticket' => 'Arhiviraj tiket',
|
|
||||||
'restore_ticket' => 'Vrati tiket',
|
|
||||||
'delete_ticket' => 'Obriši tiket',
|
|
||||||
'archived_ticket' => 'Tiket uspešno arhiviran',
|
|
||||||
'archived_tickets' => 'Uspešno arhivirani tiketi',
|
|
||||||
'restored_ticket' => 'Uspešno vraćen tiket',
|
|
||||||
'deleted_ticket' => 'Uspešno obrisan tiket',
|
|
||||||
'open' => 'Otvori',
|
'open' => 'Otvori',
|
||||||
'new' => 'Novi',
|
'new' => 'Novi',
|
||||||
'closed' => 'Zatvoreno',
|
'closed' => 'Zatvoreno',
|
||||||
@ -2909,14 +2896,6 @@ Kada budete imali iznose, vratite se na ovu stranicu sa načinima plaćanja i k
|
|||||||
'assigned_to' => 'Dodeljeno za',
|
'assigned_to' => 'Dodeljeno za',
|
||||||
'reply' => 'Odgovor',
|
'reply' => 'Odgovor',
|
||||||
'awaiting_reply' => 'Čekanje odgovora',
|
'awaiting_reply' => 'Čekanje odgovora',
|
||||||
'ticket_close' => 'Zatvori tiket',
|
|
||||||
'ticket_reopen' => 'Ponovo otvori tiket',
|
|
||||||
'ticket_open' => 'Otvori tiket',
|
|
||||||
'ticket_split' => 'Razdvoji tiket',
|
|
||||||
'ticket_merge' => 'Spoji tiket',
|
|
||||||
'ticket_update' => 'Ažuriraj tiket',
|
|
||||||
'ticket_settings' => 'Podešavanje tiketa',
|
|
||||||
'updated_ticket' => 'Tiket ažuriran',
|
|
||||||
'mark_spam' => 'Obeleži kao nepoželjno',
|
'mark_spam' => 'Obeleži kao nepoželjno',
|
||||||
'local_part' => 'Lokalni deo',
|
'local_part' => 'Lokalni deo',
|
||||||
'local_part_unavailable' => 'Ime zauzeto',
|
'local_part_unavailable' => 'Ime zauzeto',
|
||||||
@ -2934,31 +2913,23 @@ Kada budete imali iznose, vratite se na ovu stranicu sa načinima plaćanja i k
|
|||||||
'mime_types' => 'Dozvoljeni tipovi',
|
'mime_types' => 'Dozvoljeni tipovi',
|
||||||
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
||||||
'mime_types_help' => 'Lista dozvoljenih tipova fajlova odvojenih zarezom, ostavite prazno za sve',
|
'mime_types_help' => 'Lista dozvoljenih tipova fajlova odvojenih zarezom, ostavite prazno za sve',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'Podrazumevani prioritet',
|
'default_priority' => 'Podrazumevani prioritet',
|
||||||
'alert_new_comment_id' => 'Novi komentar',
|
'alert_new_comment_id' => 'Novi komentar',
|
||||||
'alert_comment_ticket_help' => 'Izborom šablona će se poslati obaveštenje (agentu) prilikom unosa komentara.',
|
|
||||||
'alert_comment_ticket_email_help' => 'Adrese e-pošte za slanje bcc kopija prilikom unosa komentara, odvojene zarezom',
|
|
||||||
'new_ticket_notification_list' => 'Dodatna obaveštenja od novom tiketu',
|
|
||||||
'update_ticket_notification_list' => 'Dodatna obaveštenja o novom komentaru',
|
'update_ticket_notification_list' => 'Dodatna obaveštenja o novom komentaru',
|
||||||
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
||||||
'alert_ticket_assign_agent_id' => 'Dodela tiketa',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'Izborom šablona će se poslati obaveštenje (agentu) prilikom dodeljivanja tiketa.',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'Dodatna obaveštenja o dodeljivanju tiketa',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'Adrese e-pošte za slanje bcc kopija prilikom dodeljivanja tiketa, odvojene zarezom',
|
|
||||||
'alert_ticket_transfer_email_help' => 'Adrese e-pošte za slanje bcc kopija prilikom prenosa tiketa, odvojene zarezom',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'Zakasneo tiket',
|
|
||||||
'alert_ticket_overdue_email' => 'Dodatna obaveštenja o zakasnelim tiketima',
|
|
||||||
'alert_ticket_overdue_email_help' => 'Adrese e-pošte za slanje bcc kopija prilikom zakasnelog tiketa, odvojene zarezom',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'Izborom šablona će se poslati obaveštenje (agentu) kada je tiket zakasneo.',
|
|
||||||
'default_agent' => 'Podrazumevani agent',
|
'default_agent' => 'Podrazumevani agent',
|
||||||
'default_agent_help' => 'Ako se izabere, biće automatski dodeljen za sve dolazeće tikete',
|
'default_agent_help' => 'Ako se izabere, biće automatski dodeljen za sve dolazeće tikete',
|
||||||
'show_agent_details' => 'Prikaži detalje agenta u odgovorima',
|
'show_agent_details' => 'Prikaži detalje agenta u odgovorima',
|
||||||
'avatar' => 'Avatar',
|
'avatar' => 'Avatar',
|
||||||
'remove_avatar' => 'Ukloni avatar',
|
'remove_avatar' => 'Ukloni avatar',
|
||||||
'ticket_not_found' => 'Tiket nije pronađen',
|
|
||||||
'add_template' => 'Dodaj šablon',
|
'add_template' => 'Dodaj šablon',
|
||||||
'updated_ticket_template' => 'Šablon tiketa ažuriran',
|
|
||||||
'created_ticket_template' => 'Šablon tiketa kreiran',
|
|
||||||
'archive_ticket_template' => 'Arhiviraj šablon',
|
'archive_ticket_template' => 'Arhiviraj šablon',
|
||||||
'restore_ticket_template' => 'Vrati šablon',
|
'restore_ticket_template' => 'Vrati šablon',
|
||||||
'archived_ticket_template' => 'Uspešno arhiviran šablon',
|
'archived_ticket_template' => 'Uspešno arhiviran šablon',
|
||||||
@ -3815,7 +3786,7 @@ Kada budete imali iznose, vratite se na ovu stranicu sa načinima plaćanja i k
|
|||||||
'entity_number_placeholder' => ':entity # :entity_number',
|
'entity_number_placeholder' => ':entity # :entity_number',
|
||||||
'email_link_not_working' => 'Ako vam gornje dugme ne odgovara, kliknite na link',
|
'email_link_not_working' => 'Ako vam gornje dugme ne odgovara, kliknite na link',
|
||||||
'display_log' => 'Prikaži zapis',
|
'display_log' => 'Prikaži zapis',
|
||||||
'send_fail_logs_to_our_server' => 'Prijavite greške u realnom vremenu',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'Podesiti',
|
'setup' => 'Podesiti',
|
||||||
'quick_overview_statistics' => 'Brzi pregled i statistika',
|
'quick_overview_statistics' => 'Brzi pregled i statistika',
|
||||||
'update_your_personal_info' => 'Ažurirajte svoje lične podatke',
|
'update_your_personal_info' => 'Ažurirajte svoje lične podatke',
|
||||||
@ -5303,6 +5274,33 @@ Kada budete imali iznose, vratite se na ovu stranicu sa načinima plaćanja i k
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'End Of Month',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -2372,7 +2372,7 @@ Den här funktionen kräver att en produkt skapas och en betalningsgateway är k
|
|||||||
'currency_gold_troy_ounce' => 'Guld Troy Ounce',
|
'currency_gold_troy_ounce' => 'Guld Troy Ounce',
|
||||||
'currency_nicaraguan_córdoba' => 'Nicaraguanska Córdoba',
|
'currency_nicaraguan_córdoba' => 'Nicaraguanska Córdoba',
|
||||||
'currency_malagasy_ariary' => 'Madagaskar ariary',
|
'currency_malagasy_ariary' => 'Madagaskar ariary',
|
||||||
"currency_tongan_pa_anga" => "tonganska Pa'anga",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => 'We hope you\'re enjoying using the app.<br/>If you\'d consider :link we\'d greatly appreciate it!',
|
'review_app_help' => 'We hope you\'re enjoying using the app.<br/>If you\'d consider :link we\'d greatly appreciate it!',
|
||||||
'writing_a_review' => 'writing a review',
|
'writing_a_review' => 'writing a review',
|
||||||
@ -2888,19 +2888,6 @@ Den här funktionen kräver att en produkt skapas och en betalningsgateway är k
|
|||||||
'refunded' => 'Återbetalad',
|
'refunded' => 'Återbetalad',
|
||||||
'marked_quote_as_sent' => 'Offerten har markerats som skickad',
|
'marked_quote_as_sent' => 'Offerten har markerats som skickad',
|
||||||
'custom_module_settings' => 'Anpassade modulinställningar',
|
'custom_module_settings' => 'Anpassade modulinställningar',
|
||||||
'ticket' => 'Ärende',
|
|
||||||
'tickets' => 'Ärenden',
|
|
||||||
'ticket_number' => 'Ärende #',
|
|
||||||
'new_ticket' => 'Skapa ärende',
|
|
||||||
'edit_ticket' => 'Redigera ärende',
|
|
||||||
'view_ticket' => 'Visa ärende',
|
|
||||||
'archive_ticket' => 'Arkivera ärende',
|
|
||||||
'restore_ticket' => 'Återskapa ärende',
|
|
||||||
'delete_ticket' => 'Radera ärende',
|
|
||||||
'archived_ticket' => 'Ärende har arkiverats',
|
|
||||||
'archived_tickets' => 'Ärendena har arkiverats',
|
|
||||||
'restored_ticket' => 'Ärendet har återställts',
|
|
||||||
'deleted_ticket' => 'Ärendena har återställts',
|
|
||||||
'open' => 'Öppna',
|
'open' => 'Öppna',
|
||||||
'new' => 'Ny',
|
'new' => 'Ny',
|
||||||
'closed' => 'Stängd',
|
'closed' => 'Stängd',
|
||||||
@ -2917,14 +2904,6 @@ Den här funktionen kräver att en produkt skapas och en betalningsgateway är k
|
|||||||
'assigned_to' => 'Tilldelat till',
|
'assigned_to' => 'Tilldelat till',
|
||||||
'reply' => 'Svara',
|
'reply' => 'Svara',
|
||||||
'awaiting_reply' => 'Väntar på svar',
|
'awaiting_reply' => 'Väntar på svar',
|
||||||
'ticket_close' => 'Stäng ärende',
|
|
||||||
'ticket_reopen' => 'Återöppna ärende',
|
|
||||||
'ticket_open' => 'Öppna ärende',
|
|
||||||
'ticket_split' => 'Dela ärende',
|
|
||||||
'ticket_merge' => 'Slå ihop ärende',
|
|
||||||
'ticket_update' => 'Uppdatera ärende',
|
|
||||||
'ticket_settings' => 'Ärendeinställningar',
|
|
||||||
'updated_ticket' => 'Ärende uppdaterat',
|
|
||||||
'mark_spam' => 'Markera som spam',
|
'mark_spam' => 'Markera som spam',
|
||||||
'local_part' => 'Lokal del',
|
'local_part' => 'Lokal del',
|
||||||
'local_part_unavailable' => 'Namn upptaget',
|
'local_part_unavailable' => 'Namn upptaget',
|
||||||
@ -2942,31 +2921,23 @@ Den här funktionen kräver att en produkt skapas och en betalningsgateway är k
|
|||||||
'mime_types' => 'Mimetyper',
|
'mime_types' => 'Mimetyper',
|
||||||
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
||||||
'mime_types_help' => 'Kommaseparerad lista över tillåtna mimetyper, lämna tomt för alla',
|
'mime_types_help' => 'Kommaseparerad lista över tillåtna mimetyper, lämna tomt för alla',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => 'Standardprioritet',
|
'default_priority' => 'Standardprioritet',
|
||||||
'alert_new_comment_id' => 'Ny kommentar',
|
'alert_new_comment_id' => 'Ny kommentar',
|
||||||
'alert_comment_ticket_help' => 'När du väljer en mall skickas ett meddelande (till agenten) när en kommentar görs.',
|
|
||||||
'alert_comment_ticket_email_help' => 'Kommaseparerade e-postadresser till bcc på ny kommentar.',
|
|
||||||
'new_ticket_notification_list' => 'Ytterligare nya ärende notifikationer',
|
|
||||||
'update_ticket_notification_list' => 'Ytterligare nya kommentarer notifikationer',
|
'update_ticket_notification_list' => 'Ytterligare nya kommentarer notifikationer',
|
||||||
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
||||||
'alert_ticket_assign_agent_id' => 'Tilldelning av ärenden',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => 'När du väljer en mall skickas ett meddelande (till agenten) när ett ärende tilldelas.',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => 'Ytterligare ärende tilldelats notifikationer',
|
|
||||||
'alert_ticket_assign_agent_id_help' => 'Kommaseparerade e-postadresser till bcc vid tilldelning av ärende.',
|
|
||||||
'alert_ticket_transfer_email_help' => 'Kommaseparerade e-postadresser till bcc vid överföring av ärende.',
|
|
||||||
'alert_ticket_overdue_agent_id' => 'Ärende försenat',
|
|
||||||
'alert_ticket_overdue_email' => 'Ytterligare ärende försenat notifikationer',
|
|
||||||
'alert_ticket_overdue_email_help' => 'Kommaseparerade e-postadresser till bcc vid försening av ärende.',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => 'När du väljer en mall skickas ett meddelande (till agenten) när ett ärende blir försenat.',
|
|
||||||
'default_agent' => 'Standardagent',
|
'default_agent' => 'Standardagent',
|
||||||
'default_agent_help' => 'Om det väljs kommer alla inkommande ärenden automatiskt att tilldelas',
|
'default_agent_help' => 'Om det väljs kommer alla inkommande ärenden automatiskt att tilldelas',
|
||||||
'show_agent_details' => 'Visa agentinformation vid svar',
|
'show_agent_details' => 'Visa agentinformation vid svar',
|
||||||
'avatar' => 'Avatar',
|
'avatar' => 'Avatar',
|
||||||
'remove_avatar' => 'Ta bort avatar',
|
'remove_avatar' => 'Ta bort avatar',
|
||||||
'ticket_not_found' => 'Ärendet hittades inte',
|
|
||||||
'add_template' => 'Lägg till mall',
|
'add_template' => 'Lägg till mall',
|
||||||
'updated_ticket_template' => 'Uppdaterad ärendemall',
|
|
||||||
'created_ticket_template' => 'Skapad ärendemall',
|
|
||||||
'archive_ticket_template' => 'Akrivera mall',
|
'archive_ticket_template' => 'Akrivera mall',
|
||||||
'restore_ticket_template' => 'Återställ ärendemall',
|
'restore_ticket_template' => 'Återställ ärendemall',
|
||||||
'archived_ticket_template' => 'Mallen har arkiverats',
|
'archived_ticket_template' => 'Mallen har arkiverats',
|
||||||
@ -3823,7 +3794,7 @@ Den här funktionen kräver att en produkt skapas och en betalningsgateway är k
|
|||||||
'entity_number_placeholder' => ':entity # :entity_number',
|
'entity_number_placeholder' => ':entity # :entity_number',
|
||||||
'email_link_not_working' => 'Om knappen ovan inte fungerar för dig, klicka på länken',
|
'email_link_not_working' => 'Om knappen ovan inte fungerar för dig, klicka på länken',
|
||||||
'display_log' => 'Visa logg',
|
'display_log' => 'Visa logg',
|
||||||
'send_fail_logs_to_our_server' => 'Rapportera fel i realtid',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => 'Installation',
|
'setup' => 'Installation',
|
||||||
'quick_overview_statistics' => 'Snabb översikt och statistik',
|
'quick_overview_statistics' => 'Snabb översikt och statistik',
|
||||||
'update_your_personal_info' => 'Uppdatera din personliga information',
|
'update_your_personal_info' => 'Uppdatera din personliga information',
|
||||||
@ -5311,6 +5282,33 @@ Den här funktionen kräver att en produkt skapas och en betalningsgateway är k
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'End Of Month',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
@ -2364,7 +2364,7 @@ $lang = array(
|
|||||||
'currency_gold_troy_ounce' => '金金衡盎司',
|
'currency_gold_troy_ounce' => '金金衡盎司',
|
||||||
'currency_nicaraguan_córdoba' => '尼加拉瓜科爾多瓦',
|
'currency_nicaraguan_córdoba' => '尼加拉瓜科爾多瓦',
|
||||||
'currency_malagasy_ariary' => '馬達加斯加阿里阿里',
|
'currency_malagasy_ariary' => '馬達加斯加阿里阿里',
|
||||||
"currency_tongan_pa_anga" => "東加潘加",
|
"currency_tongan_paanga" => "Tongan Pa'anga",
|
||||||
|
|
||||||
'review_app_help' => '我們希望您喜歡使用這個程式。<br/>若您考慮 :link,我們會非常感謝!',
|
'review_app_help' => '我們希望您喜歡使用這個程式。<br/>若您考慮 :link,我們會非常感謝!',
|
||||||
'writing_a_review' => '撰寫評語',
|
'writing_a_review' => '撰寫評語',
|
||||||
@ -2880,19 +2880,6 @@ $lang = array(
|
|||||||
'refunded' => '退款',
|
'refunded' => '退款',
|
||||||
'marked_quote_as_sent' => '標記報價單為已傳送成功',
|
'marked_quote_as_sent' => '標記報價單為已傳送成功',
|
||||||
'custom_module_settings' => '自訂模組設定',
|
'custom_module_settings' => '自訂模組設定',
|
||||||
'ticket' => '票證',
|
|
||||||
'tickets' => '票證',
|
|
||||||
'ticket_number' => '票證 #',
|
|
||||||
'new_ticket' => '新票證',
|
|
||||||
'edit_ticket' => '編輯票證',
|
|
||||||
'view_ticket' => '檢視票證',
|
|
||||||
'archive_ticket' => '歸檔票證',
|
|
||||||
'restore_ticket' => '復原票證',
|
|
||||||
'delete_ticket' => '刪除票證',
|
|
||||||
'archived_ticket' => '歸檔票證成功',
|
|
||||||
'archived_tickets' => '歸檔票證成功',
|
|
||||||
'restored_ticket' => '復原票證成功',
|
|
||||||
'deleted_ticket' => '刪除票證成功',
|
|
||||||
'open' => '開啟',
|
'open' => '開啟',
|
||||||
'new' => '新增',
|
'new' => '新增',
|
||||||
'closed' => '已關閉',
|
'closed' => '已關閉',
|
||||||
@ -2909,14 +2896,6 @@ $lang = array(
|
|||||||
'assigned_to' => '分配給',
|
'assigned_to' => '分配給',
|
||||||
'reply' => '回覆',
|
'reply' => '回覆',
|
||||||
'awaiting_reply' => '等待回覆',
|
'awaiting_reply' => '等待回覆',
|
||||||
'ticket_close' => '關閉票證',
|
|
||||||
'ticket_reopen' => '重開票證',
|
|
||||||
'ticket_open' => '開啟票證',
|
|
||||||
'ticket_split' => '拆分票證',
|
|
||||||
'ticket_merge' => '合併票證',
|
|
||||||
'ticket_update' => '更新票證',
|
|
||||||
'ticket_settings' => '票證設定',
|
|
||||||
'updated_ticket' => '票證更新',
|
|
||||||
'mark_spam' => '標記為垃圾郵件',
|
'mark_spam' => '標記為垃圾郵件',
|
||||||
'local_part' => '本地部份',
|
'local_part' => '本地部份',
|
||||||
'local_part_unavailable' => '取得的名稱',
|
'local_part_unavailable' => '取得的名稱',
|
||||||
@ -2934,31 +2913,23 @@ $lang = array(
|
|||||||
'mime_types' => 'Mime 類型',
|
'mime_types' => 'Mime 類型',
|
||||||
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
'mime_types_placeholder' => '.pdf , .docx, .jpg',
|
||||||
'mime_types_help' => '逗號分隔的允許的 mime 類型清單, 為所有',
|
'mime_types_help' => '逗號分隔的允許的 mime 類型清單, 為所有',
|
||||||
|
'ticket_number_start_help' => 'Ticket number must be greater than the current ticket number',
|
||||||
|
'new_ticket_template_id' => 'New ticket',
|
||||||
|
'new_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a new ticket is created',
|
||||||
|
'update_ticket_template_id' => 'Updated ticket',
|
||||||
|
'update_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is updated',
|
||||||
|
'close_ticket_template_id' => 'Closed ticket',
|
||||||
|
'close_ticket_autoresponder_help' => 'Selecting a template will send an auto response to a client/contact when a ticket is closed',
|
||||||
'default_priority' => '預設優先順序',
|
'default_priority' => '預設優先順序',
|
||||||
'alert_new_comment_id' => '新評論',
|
'alert_new_comment_id' => '新評論',
|
||||||
'alert_comment_ticket_help' => '選取範本將在做出評論時 (向代理) 傳送通知。',
|
|
||||||
'alert_comment_ticket_email_help' => '逗號分隔的電子郵件給 bcc 關於新的評論。',
|
|
||||||
'new_ticket_notification_list' => '其它新票證通知',
|
|
||||||
'update_ticket_notification_list' => '其它新評論通知',
|
'update_ticket_notification_list' => '其它新評論通知',
|
||||||
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
'comma_separated_values' => 'admin@example.com, supervisor@example.com',
|
||||||
'alert_ticket_assign_agent_id' => '票證分配',
|
|
||||||
'alert_ticket_assign_agent_id_hel' => '選取範本將在分配票證時 (向代理) 傳送通知。',
|
|
||||||
'alert_ticket_assign_agent_id_notifications' => '分配的其它票證通知',
|
|
||||||
'alert_ticket_assign_agent_id_help' => '逗號分隔的電子郵件給 bcc 的票證分配。',
|
|
||||||
'alert_ticket_transfer_email_help' => '逗號分隔的電子郵件給 bcc 的票證轉讓。',
|
|
||||||
'alert_ticket_overdue_agent_id' => '過期票證',
|
|
||||||
'alert_ticket_overdue_email' => '其它逾期票證通知',
|
|
||||||
'alert_ticket_overdue_email_help' => '逗號分隔的電子郵件給 bcc 的票證期。',
|
|
||||||
'alert_ticket_overdue_agent_id_help' => '選取範本將在票證過期時 (向代理) 傳送通知。',
|
|
||||||
'default_agent' => '預設代理',
|
'default_agent' => '預設代理',
|
||||||
'default_agent_help' => '如果選取,將自動分配給所有入站票證',
|
'default_agent_help' => '如果選取,將自動分配給所有入站票證',
|
||||||
'show_agent_details' => '顯示回應的代理詳細資訊',
|
'show_agent_details' => '顯示回應的代理詳細資訊',
|
||||||
'avatar' => '頭像',
|
'avatar' => '頭像',
|
||||||
'remove_avatar' => '刪除頭像',
|
'remove_avatar' => '刪除頭像',
|
||||||
'ticket_not_found' => '找不到票證',
|
|
||||||
'add_template' => '加入範本',
|
'add_template' => '加入範本',
|
||||||
'updated_ticket_template' => '已更新票證範本',
|
|
||||||
'created_ticket_template' => '已建立票證範本',
|
|
||||||
'archive_ticket_template' => '歸檔範本',
|
'archive_ticket_template' => '歸檔範本',
|
||||||
'restore_ticket_template' => '復原範本',
|
'restore_ticket_template' => '復原範本',
|
||||||
'archived_ticket_template' => '歸檔範本成功',
|
'archived_ticket_template' => '歸檔範本成功',
|
||||||
@ -3815,7 +3786,7 @@ $lang = array(
|
|||||||
'entity_number_placeholder' => ':entity # :entity _number',
|
'entity_number_placeholder' => ':entity # :entity _number',
|
||||||
'email_link_not_working' => '如果上面的按鈕不適合您,請點擊連結',
|
'email_link_not_working' => '如果上面的按鈕不適合您,請點擊連結',
|
||||||
'display_log' => '顯示日誌',
|
'display_log' => '顯示日誌',
|
||||||
'send_fail_logs_to_our_server' => '即時報告錯誤',
|
'send_fail_logs_to_our_server' => 'Report errors to help improve the app',
|
||||||
'setup' => '設定',
|
'setup' => '設定',
|
||||||
'quick_overview_statistics' => '快速概覽和統計',
|
'quick_overview_statistics' => '快速概覽和統計',
|
||||||
'update_your_personal_info' => '更新您的個人資訊',
|
'update_your_personal_info' => '更新您的個人資訊',
|
||||||
@ -5303,6 +5274,33 @@ $lang = array(
|
|||||||
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
'currency_bhutan_ngultrum' => 'Bhutan Ngultrum',
|
||||||
'end_of_month' => 'End Of Month',
|
'end_of_month' => 'End Of Month',
|
||||||
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
'merge_e_invoice_to_pdf' => 'Merge E-Invoice and PDF',
|
||||||
|
'task_assigned_subject' => 'New task assignment [Task :task] [ :date ]',
|
||||||
|
'task_assigned_body' => 'You have been assigned task :task <br><br> Description: :description <br><br> Client: :client',
|
||||||
|
'activity_141' => 'User :user entered note: :notes',
|
||||||
|
'quote_reminder_subject' => 'Reminder: Quote :quote from :company',
|
||||||
|
'quote_reminder_message' => 'Reminder for quote :number for :amount',
|
||||||
|
'quote_reminder1' => 'First Quote Reminder',
|
||||||
|
'before_valid_until_date' => 'Before the valid until date',
|
||||||
|
'after_valid_until_date' => 'After the valid until date',
|
||||||
|
'after_quote_date' => 'After the quote date',
|
||||||
|
'remind_quote' => 'Remind Quote',
|
||||||
|
'end_of_month' => 'End Of Month',
|
||||||
|
'tax_currency_mismatch' => 'Tax currency is different from invoice currency',
|
||||||
|
'edocument_import_already_exists' => 'The invoice has already been imported on :date',
|
||||||
|
'before_valid_until' => 'Before the valid until',
|
||||||
|
'after_valid_until' => 'After the valid until',
|
||||||
|
'task_assigned_notification' => 'Task Assigned Notification',
|
||||||
|
'task_assigned_notification_help' => 'Send an email when a task is assigned',
|
||||||
|
'invoices_locked_end_of_month' => 'Invoices are locked at the end of the month',
|
||||||
|
'referral_url' => 'Referral URL',
|
||||||
|
'add_comment' => 'Add Comment',
|
||||||
|
'added_comment' => 'Successfully saved comment',
|
||||||
|
'tickets' => 'Tickets',
|
||||||
|
'assigned_group' => 'Successfully assigned group',
|
||||||
|
'merge_to_pdf' => 'Merge to PDF',
|
||||||
|
'latest_requires_php_version' => 'Note: the latest version requires PHP :version',
|
||||||
|
'auto_expand_product_table_notes' => 'Automatically expand products table notes',
|
||||||
|
'auto_expand_product_table_notes_help' => 'Automatically expands the notes section within the products table to display more lines.',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $lang;
|
return $lang;
|
Loading…
x
Reference in New Issue
Block a user