diff --git a/lib/data/models/product_model.dart b/lib/data/models/product_model.dart index c3ff72e6be0..91ab5267367 100644 --- a/lib/data/models/product_model.dart +++ b/lib/data/models/product_model.dart @@ -343,6 +343,10 @@ abstract class ProductEntity extends Object actions.add(EntityAction.newInvoice); } + if (userCompany!.canCreate(EntityType.quote) && !isDeleted!) { + actions.add(EntityAction.newQuote); + } + if (userCompany.canCreate(EntityType.purchaseOrder) && !isDeleted!) { actions.add(EntityAction.newPurchaseOrder); } diff --git a/lib/redux/product/product_actions.dart b/lib/redux/product/product_actions.dart index a9fb2dc35df..60d1418fba3 100644 --- a/lib/redux/product/product_actions.dart +++ b/lib/redux/product/product_actions.dart @@ -296,6 +296,24 @@ void handleProductAction( ), ); break; + case EntityAction.newQuote: + final invoice = InvoiceEntity(state: state, entityType: EntityType.quote); + createEntity( + entity: invoice.rebuild( + (b) => b + ..lineItems.addAll( + productIds.map( + (productId) => convertProductToInvoiceItem( + company: state.company, + invoice: invoice, + product: state.productState.map[productId], + currencyMap: state.staticState.currencyMap, + ), + ), + ), + ), + ); + break; case EntityAction.newPurchaseOrder: final invoice = InvoiceEntity(state: state, entityType: EntityType.purchaseOrder); diff --git a/lib/ui/system/update_dialog.dart b/lib/ui/system/update_dialog.dart index bf95b2760e1..07172d96d52 100644 --- a/lib/ui/system/update_dialog.dart +++ b/lib/ui/system/update_dialog.dart @@ -1,5 +1,6 @@ // Dart imports: import 'dart:convert'; +import 'package:http/http.dart' as http; // Flutter imports: import 'package:flutter/foundation.dart'; @@ -37,6 +38,23 @@ enum UpdateState { class _UpdateDialogState extends State { UpdateState updateState = UpdateState.initial; String? updateResponse; + String? phpVersion; + + @override + void initState() { + super.initState(); + + http + .read(Uri.parse( + 'https://github.com/invoiceninja/invoiceninja/blob/v5-develop/composer.json?raw=true')) + .then((value) { + final data = jsonDecode(value); + setState(() { + phpVersion = data['require']['php'] ?? ''; + phpVersion = phpVersion!.replaceFirst('^', ''); + }); + }); + } @override Widget build(BuildContext context) { @@ -103,6 +121,9 @@ class _UpdateDialogState extends State { trailing: Icon(Icons.copy), ), ], + SizedBox(height: 20), + Text(localization.latestRequiresPhpVersion + .replaceFirst(':version', phpVersion ?? '...')), ], ), actions: [ diff --git a/lib/utils/i18n.dart b/lib/utils/i18n.dart index c65be9c294b..b7a9de205ca 100644 --- a/lib/utils/i18n.dart +++ b/lib/utils/i18n.dart @@ -18,6 +18,8 @@ mixin LocalizationsProvider on LocaleCodeAware { static final Map> _localizedValues = { 'en': { // STARTER: lang key - do not remove comment + 'latest_requires_php_version': + 'Note: the latest version requires PHP :version', 'quote_reminder1': 'First Quote Reminder', 'before_valid_until': 'Before the valid until', 'after_valid_until': 'After the valid until', @@ -2694,6 +2696,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'sq': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Programi i referimit', + 'comment': 'Comments', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Koha', + 'format': 'Format', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Expense :expense notification sent to :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': 'Këto kredenciale nuk përputhen me të dhënat tona', @@ -3414,10 +3468,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', 'set_password': 'Vendos Fjalëkalim', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', @@ -3455,7 +3505,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Expenses must all belong to the same client', 'app': 'App', 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Gross line total', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'Email Invoices', 'bulk_email_quotes': 'Email Quotes', 'bulk_email_credits': 'Email Credits', @@ -4715,7 +4765,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Successfully archived group', 'deleted_group': 'Successfully deleted group', 'restored_group': 'Successfully restored group', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Successfully uploaded logo', 'logo': 'Logo', 'saved_settings': 'Successfully saved settings', @@ -5335,16 +5385,68 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'ar': { - 'check_credentials': 'Check Credentials', - 'valid_credentials': 'Credentials are valid', + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'نهاية الشهر', + 'referral_url': 'Referral URL', + 'referral_program': 'برنامج الإحالة', + 'comment': 'تعليقات', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'انقطع الاتصال', + 'reconnect': 'أعد الاتصال', + 'e_invoice_settings': 'إعدادات الفاتورة الإلكترونية', + 'calculate': 'احسب', + 'sum': 'مجموع', + 'money': 'مال', + 'time': 'وقت', + 'format': 'شكل', + 'web_app': 'التطبيق على شبكة الإنترنت', + 'desktop_app': 'التطبيق سطح المكتب', + 'invoice_net_amount': 'صافي مبلغ الفاتورة', + 'round_to_minutes': 'جولة إلى دقائق', + '1_minute': '1 دقيقة', + '5_minutes': '5 دقائق', + '15_minutes': '15 دقيقة', + '30_minutes': '30 دقيقة', + '1_hour': '1 ساعة', + '1_day': 'يوم 1', + 'round_tasks': 'اتجاه تقريب المهمة', + 'round_tasks_help': 'قم بتقريب أوقات المهام لأعلى أو لأسفل.', + 'direction': 'اتجاه', + 'round_up': 'جمع الشمل', + 'round_down': 'المستدير لأسفل', + 'task_round_to_nearest': 'جولة إلى الأقرب', + 'activity_139': 'تم إرسال إشعار النفقات :expense إلى :contact', + 'activity_140': 'تم إرسال البيان إلى :client', + 'bulk_updated': 'تم تحديث البيانات بنجاح', + 'bulk_update': 'تحديث بالجملة', + 'advanced_cards': 'بطاقات متقدمة', + 'always_show_required_fields': 'يسمح بإظهار نموذج الحقول المطلوبة', + 'always_show_required_fields_help': + 'يعرض نموذج الحقول المطلوبة دائمًا عند الخروج', + 'flutter_web_warning': + 'نوصي باستخدام تطبيق الويب الجديد أو تطبيق سطح المكتب للحصول على أفضل أداء', + 'rappen_rounding': 'تقريب رابين', + 'rappen_rounding_help': 'جولة المبلغ إلى 5 سنتات', + 'check_credentials': 'التحقق من بيانات الاعتماد', + 'valid_credentials': 'أوراق الاعتماد صالحة', 'invalid_credentials': 'أوراق الاعتماد هذه لا تتطابق مع سجلاتنا', - 'e_quote': 'E-Quote', - 'e_credit': 'E-Credit', - 'e_purchase_order': 'E-Purchase Order', + 'e_quote': 'الاقتباس الإلكتروني', + 'e_credit': 'الائتمان الإلكتروني', + 'e_purchase_order': 'أمر الشراء الإلكتروني', 'valid_vat_number': 'رقم ضريبة القيمة المضافة صالح', 'use_available_payments': 'استخدم المدفوعات المتاحة', 'test_email_sent': 'تم إرسال البريد الإلكتروني بنجاح', - 'send_test_email': 'إرسال بريد إلكتروني تجريبي', + 'send_test_email': 'Send Test Email', 'gateway_type': 'نوع البوابة', 'please_select_an_invoice_or_credit': 'الرجاء تحديد فاتورة أو رصيد', 'mobile_version': 'اصدار المحمول', @@ -5376,7 +5478,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'مبيعات العملاء', 'tax_summary': 'ملخص الضرائب', 'user_sales': 'مبيعات المستخدم', - 'run_template': 'تشغيل القالب', + 'run_template': 'Run Template', 'task_extension_banner': 'اضافة ملحق Chrome لإدارة مهامك', 'watch_video': 'شاهد الفيديو', 'view_extension': 'عرض الامتداد', @@ -5470,7 +5572,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'routing_id': 'معرف التوجيه', 'enable_e_invoice': 'تفعيل الفاتورة الإلكترونية', 'e_invoice_type': 'نوع الفاتورة الإلكترونية', - 'e_quote_type': 'E-Quote Type', + 'e_quote_type': 'نوع الاقتباس الإلكتروني', 'reduced_tax': 'تخفيض الضرائب', 'override_tax': 'تجاوز الضريبة', 'zero_rated': 'تصنيف صفر', @@ -5729,7 +5831,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': 'تحرير الحساب المصرفي', 'default_category': 'الفئة الافتراضية', 'account_type': 'نوع الحساب', - 'new_bank_account': 'Add Bank Account', + 'new_bank_account': 'اضافة حساب البنك', 'connect_accounts': 'ربط الحسابات', 'manage_rules': 'إدارة القواعد', 'search_category': 'بحث 1 فئة', @@ -6000,7 +6102,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'قم بتحميل ملف PDF', 'start_free_trial': 'ابدأ الإصدار التجريبي المجاني', 'start_free_trial_message': - 'ابدأ تجربتك المجانية لمدة 14 يومًا من الخطة الاحترافية', + 'ابدأ تجربتك المجانية لمدة 14 يومًا للخطة الاحترافية', 'due_on_receipt': 'المستحقة على إيصال', 'is_paid': 'مدفوع', 'age_group_paid': 'مدفوع', @@ -6043,9 +6145,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'الخصم المباشر', 'please_set_a_password': 'الرجاء تعيين كلمة مرور الحساب', 'set_password': 'ضبط كلمة السر', - 'recommend_desktop': - 'نوصي باستخدام تطبيق سطح المكتب للحصول على أفضل أداء', - 'recommend_mobile': 'نوصي باستخدام تطبيق الهاتف للحصول على أفضل أداء', 'disconnected_gateway': 'تم قطع اتصال البوابة بنجاح', 'disconnect': 'قطع الاتصال', 'add_to_invoices': 'أضف إلى الفواتير', @@ -6082,7 +6181,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'error_cross_client_expenses': 'يجب أن تنتمي جميع النفقات إلى نفس العميل', 'app': 'برنامج', 'for_best_performance': 'للحصول على أفضل أداء ، قم بتنزيل تطبيق :app', - 'gross_line_total': 'إجمالي الخط', + 'gross_line_total': 'إجمالي الخط الإجمالي', 'bulk_email_invoices': 'فواتير البريد الإلكتروني', 'bulk_email_quotes': 'عروض البريد الإلكتروني', 'bulk_email_credits': 'ائتمانات البريد الإلكتروني', @@ -7320,7 +7419,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'تمت أرشفة المجموعة بنجاح', 'deleted_group': 'تم حذف المجموعة بنجاح', 'restored_group': 'تمت استعادة المجموعة بنجاح', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'قم بتحميل شعار شركتك', 'uploaded_logo': 'تم تحميل الشعار بنجاح', 'logo': 'شعار', 'saved_settings': 'تم حفظ الإعدادات بنجاح', @@ -7371,7 +7470,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'no_record_selected': 'لم يتم تحديد سجل', 'error_unsaved_changes': 'يرجى حفظ أو إلغاء التغييرات الخاصة بك', 'download': 'تحميل', - 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', + 'requires_an_enterprise_plan': 'يتطلب خطة المؤسسة', 'take_picture': 'التقط صورة', 'upload_files': 'تحميل الملفات', 'document': 'وثيقة', @@ -7943,6 +8042,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'تحميل موضوع اللون', }, 'bg': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Referral Program', + 'comment': 'Забележки', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Време', + 'format': 'Формат', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Expense :expense notification sent to :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': @@ -7953,7 +8104,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'valid_vat_number': 'Valid VAT Number', 'use_available_payments': 'Use Available Payments', 'test_email_sent': 'Successfully sent email', - 'send_test_email': 'Изпращане на тестов имейл', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Gateway Type', 'please_select_an_invoice_or_credit': 'Please select an invoice or credit', @@ -7986,7 +8137,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Client Sales', 'tax_summary': 'Tax Summary', 'user_sales': 'User Sales', - 'run_template': 'Run template', + 'run_template': 'Run Template', 'task_extension_banner': 'Add the Chrome extension to manage your tasks', 'watch_video': 'Watch Video', 'view_extension': 'View Extension', @@ -8621,7 +8772,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Load PDF', 'start_free_trial': 'Start Free Trial', 'start_free_trial_message': - 'Start your FREE 14 day trial of the pro plan', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Due on Receipt', 'is_paid': 'Is Paid', 'age_group_paid': 'Paid', @@ -8664,10 +8815,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', 'set_password': 'Задаване на парола', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', @@ -8705,7 +8852,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Expenses must all belong to the same client', 'app': 'App', 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Gross line total', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'Email Invoices', 'bulk_email_quotes': 'Email Quotes', 'bulk_email_credits': 'Email Credits', @@ -9968,7 +10115,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Групата беше архивирана успешно', 'deleted_group': 'Групата беше изтрита успешно', 'restored_group': 'Групата беше възстановена успешно', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Логото беше качено успешно', 'logo': 'Лого', 'saved_settings': 'Настройките бяха записани успешно', @@ -10593,16 +10740,67 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'zh_TW': { - 'check_credentials': 'Check Credentials', - 'valid_credentials': 'Credentials are valid', + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': '推薦計劃', + 'comment': '評論', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': '時間', + 'format': '格式', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': '費用:expense通知已發送至:contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': '我們建議使用新的網頁應用程式或桌面應用程式以獲得最佳效能', + 'rappen_rounding': '拉彭舍入', + 'rappen_rounding_help': '金額為 5 美分', + 'check_credentials': '檢查憑證', + 'valid_credentials': '憑證有效', 'invalid_credentials': '這些憑證不符我們的紀錄', - 'e_quote': 'E-Quote', - 'e_credit': 'E-Credit', - 'e_purchase_order': 'E-Purchase Order', + 'e_quote': '電子報價', + 'e_credit': '電子信貸', + 'e_purchase_order': '電子採購訂單', 'valid_vat_number': '有效增值稅號', 'use_available_payments': '使用可用付款', 'test_email_sent': '已成功發送電子郵件', - 'send_test_email': '寄送測試郵件', + 'send_test_email': 'Send Test Email', 'gateway_type': '網關類型', 'please_select_an_invoice_or_credit': '請選擇發票或信用證', 'mobile_version': '手機版', @@ -10633,7 +10831,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': '客戶銷售', 'tax_summary': '稅務摘要', 'user_sales': '用戶銷售', - 'run_template': '運行模板', + 'run_template': 'Run Template', 'task_extension_banner': '新增 Chrome 擴充功能來管理您的任務', 'watch_video': '看影片', 'view_extension': '查看擴充', @@ -10721,7 +10919,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'routing_id': '路由ID', 'enable_e_invoice': '啟用電子發票', 'e_invoice_type': '電子發票類型', - 'e_quote_type': 'E-Quote Type', + 'e_quote_type': '電子報價類型', 'reduced_tax': '減稅', 'override_tax': '覆蓋稅', 'zero_rated': '零評級', @@ -10966,7 +11164,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': '編輯銀行帳號', 'default_category': '預設類別', 'account_type': '帳戶類型', - 'new_bank_account': 'Add Bank Account', + 'new_bank_account': '新增銀行帳戶', 'connect_accounts': '連接帳戶', 'manage_rules': '管理規則', 'search_category': '搜尋 1 類別', @@ -11218,7 +11416,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_shipping_country': '客戶出貨國家/地區', 'load_pdf': '載入 PDF', 'start_free_trial': '開啟免費體驗', - 'start_free_trial_message': '開始 14 天免費試用專業計劃', + 'start_free_trial_message': + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': '收據到期', 'is_paid': '已經付款了', 'age_group_paid': '有薪資的', @@ -11258,8 +11457,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': '直接借記', 'please_set_a_password': '請設定帳戶密碼', 'set_password': '設定密碼', - 'recommend_desktop': '我們建議使用桌面應用程式以獲得最佳效能', - 'recommend_mobile': '我們建議使用行動應用程式以獲得最佳效能', 'disconnected_gateway': '成功斷開網關', 'disconnect': '斷開', 'add_to_invoices': '新增到發票', @@ -12492,7 +12689,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': '已成功封存群組', 'deleted_group': '已成功刪除群組', 'restored_group': '已成功還原群組', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': '上傳您的公司徽標', 'uploaded_logo': '已成功上傳徽標', 'logo': '標誌', 'saved_settings': '已成功儲存設定', @@ -12542,7 +12739,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'no_record_selected': '未選取任何記錄', 'error_unsaved_changes': '請儲存或取消您的變更', 'download': '下載', - 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', + 'requires_an_enterprise_plan': '需要企業計劃', 'take_picture': '拍照', 'upload_files': '上傳文件', 'document': '文件', @@ -13103,6 +13300,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': '載入顏色主題', }, 'hr': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Referentni progam', + 'comment': 'Komentari', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Vrijeme', + 'format': 'Format', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Expense :expense notification sent to :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': 'Ove vjerodajnice se ne odgovaraju našim zapisima', @@ -13112,7 +13361,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'valid_vat_number': 'Valid VAT Number', 'use_available_payments': 'Use Available Payments', 'test_email_sent': 'Successfully sent email', - 'send_test_email': 'Send test email', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Gateway Type', 'please_select_an_invoice_or_credit': 'Please select an invoice or credit', @@ -13145,7 +13394,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Client Sales', 'tax_summary': 'Tax Summary', 'user_sales': 'User Sales', - 'run_template': 'Run template', + 'run_template': 'Run Template', 'task_extension_banner': 'Add the Chrome extension to manage your tasks', 'watch_video': 'Watch Video', 'view_extension': 'View Extension', @@ -13780,7 +14029,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Load PDF', 'start_free_trial': 'Start Free Trial', 'start_free_trial_message': - 'Start your FREE 14 day trial of the pro plan', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Due on Receipt', 'is_paid': 'Is Paid', 'age_group_paid': 'Paid', @@ -13823,10 +14072,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', 'set_password': 'Postava zaporke', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', @@ -13864,7 +14109,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Expenses must all belong to the same client', 'app': 'App', 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Ukupno bruto', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'Email Invoices', 'bulk_email_quotes': 'Email Quotes', 'bulk_email_credits': 'Email Credits', @@ -15118,7 +15363,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Grupa je uspješno arhivirana', 'deleted_group': 'Grupa je uspješno izbrisana', 'restored_group': 'Grupa je uspješno vraćena', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Uspješno preneseni logo', 'logo': 'Logo', 'saved_settings': 'Postavke uspješno spremljene', @@ -15740,6 +15985,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'cs': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Referral program', + 'comment': 'Comments', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Čas', + 'format': 'Formát', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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': 'Round Tasks', + 'round_tasks_help': 'Round time intervals when saving tasks', + 'direction': 'Direction', + 'round_up': 'Round Up', + 'round_down': 'Round Down', + 'task_round_to_nearest': 'Round To Nearest', + 'activity_139': 'Expense :expense notification sent to :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': 'Tyto údaje neodpovídají našim záznamům.', @@ -15749,7 +16046,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'valid_vat_number': 'Valid VAT Number', 'use_available_payments': 'Use Available Payments', 'test_email_sent': 'Successfully sent email', - 'send_test_email': 'Odeslat zkušební e-mail', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Gateway Type', 'please_select_an_invoice_or_credit': 'Please select an invoice or credit', @@ -15891,7 +16188,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'tax_category': 'Tax Category', 'physical_goods': 'Physical Goods', 'digital_products': 'Digitální produkty', - 'services': 'Services', + 'services': 'Služby', 'shipping': 'Shipping', 'tax_exempt': 'Osvobozen od daní', 'reduced_rate': 'Reduced Rate', @@ -16340,7 +16637,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'standing': 'Trvající', 'view_map': 'View Map', 'set_default_design': 'Set Default Design', - 'add_gateway': 'Add Payment Gateway', + 'add_gateway': 'Přidat platební bránu', 'add_gateway_help_message': 'Add a payment gateway (ie. Stripe, WePay or PayPal) to accept online payments', 'left': 'Left', @@ -16461,10 +16758,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Prosím nastavte si heslo účtu', 'set_password': 'Nastavit heslo', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Odpojit', 'add_to_invoices': 'Přidávat do faktur', @@ -16502,7 +16795,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Expenses must all belong to the same client', 'app': 'Aplikace', 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Gross line total', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'Email Invoices', 'bulk_email_quotes': 'Email Quotes', 'bulk_email_credits': 'Email Credits', @@ -17755,7 +18048,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Successfully archived group', 'deleted_group': 'Successfully deleted group', 'restored_group': 'Successfully restored group', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Successfully uploaded logo', 'logo': 'Logo', 'saved_settings': 'Successfully saved settings', @@ -18376,12 +18669,65 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'da': { - 'check_credentials': 'Check Credentials', - 'valid_credentials': 'Credentials are valid', + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Referral Program', + 'comment': 'Kommentarer', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Afbrudt', + 'reconnect': 'Genoprrettet', + 'e_invoice_settings': 'E-faktura indstillinger', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Penge', + 'time': 'Tid', + 'format': 'Format', + 'web_app': 'Web App', + 'desktop_app': 'Skrivebords App', + 'invoice_net_amount': 'Faktura netto beløb', + 'round_to_minutes': 'Afrund til minutter', + '1_minute': '1 Minut', + '5_minutes': '5 Minutter', + '15_minutes': '15 Minutter', + '30_minutes': '30 Minutter', + '1_hour': '1 Time', + '1_day': '1 Dag', + 'round_tasks': 'Opgave afrundingsretning', + 'round_tasks_help': 'Afrund opgave tider op eller ned.', + 'direction': 'Retning', + 'round_up': 'Afrund op', + 'round_down': 'Afrund ned', + 'task_round_to_nearest': 'Afrund til nærmeste', + 'activity_139': 'Udgift :expense meddelelse sendt til :contact', + 'activity_140': 'Kontoudtog sendt til :client', + 'bulk_updated': 'Data opdateret succesfuldt', + 'bulk_update': 'Bulk opdater', + 'advanced_cards': 'Avancerede Kort', + 'always_show_required_fields': + 'Tillad visning af obligatoriske formularfelter', + 'always_show_required_fields_help': + 'Vis altid de obligatoriske formularfelter ved kassen', + 'flutter_web_warning': + 'Vi anbefaler at bruge den nye webapp eller desktop-appen for at få den bedste ydeevne', + 'rappen_rounding': 'Rappen afrunding', + 'rappen_rounding_help': 'Rund Beløb til 5 øre', + 'check_credentials': 'Tjek legitimationsoplysninger', + 'valid_credentials': 'Legitimationsoplysninger er gyldige', 'invalid_credentials': 'These credentials do not match our records', - 'e_quote': 'E-Quote', - 'e_credit': 'E-Credit', - 'e_purchase_order': 'E-Purchase Order', + 'e_quote': 'E-Citat', + 'e_credit': 'E-kredit', + 'e_purchase_order': 'E-købsordre', 'valid_vat_number': 'Gyldigt momsnummer', 'use_available_payments': 'Brug tilgængelig Betalinger', 'test_email_sent': 'Succesfuldt sendt e-mail', @@ -18515,7 +18861,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'routing_id': 'Routing ID', 'enable_e_invoice': 'Aktiver E- Faktura', 'e_invoice_type': 'E- Faktura Type', - 'e_quote_type': 'E-Quote Type', + 'e_quote_type': 'E-tilbudstype', 'reduced_tax': 'Nedsat skat', 'override_tax': 'Tilsidesæt skat', 'zero_rated': 'Nul vurderet', @@ -18783,7 +19129,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': 'Edit Bank Account', 'default_category': 'Standard kategori', 'account_type': 'Kontotype', - 'new_bank_account': 'Add Bank Account', + 'new_bank_account': 'Tilføj bankkonto', 'connect_accounts': 'Tilslut konti', 'manage_rules': 'Administrer regler', 'search_category': 'Søg 1 kategori', @@ -19055,7 +19401,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Indlæs PDF', 'start_free_trial': 'Start gratis prøveperiode', 'start_free_trial_message': - 'Start din GRATIS 14 dages prøveversion af pro-planen', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Forfalder ved modtagelse', 'is_paid': 'Er betalt', 'age_group_paid': 'Betalt', @@ -19100,10 +19446,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direkte debitering', 'please_set_a_password': 'Indstil venligst en kontoadgangskode', 'set_password': 'Sæt adgangskode', - 'recommend_desktop': - 'Vi anbefaler at bruge desktop-appen for den bedste ydeevne', - 'recommend_mobile': - 'Vi anbefaler at bruge mobilappen for den bedste ydeevne', 'disconnected_gateway': 'Succesfuldt afbrudt Gateway', 'disconnect': 'Koble fra', 'add_to_invoices': 'Tilføj til Fakturaer', @@ -19143,7 +19485,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'app': 'App', 'for_best_performance': 'For den bedste ydeevne skal du downloade :app -appen', - 'gross_line_total': 'Bruttolinje Total', + 'gross_line_total': 'Brutto Linie Total', 'bulk_email_invoices': 'e-mail Fakturaer', 'bulk_email_quotes': 'e-mail tilbud', 'bulk_email_credits': 'e-mail Credits', @@ -19925,7 +20267,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'deleted_designs': 'Succesfuldt slettet :value designs', 'restored_designs': 'Succesfuldt genskabt :value designs', 'proposals': 'Projektforslag', - 'tickets': 'Sager', + 'tickets': 'Tickets', 'recurring_quotes': 'Gentagne tilbud', 'recurring_tasks': 'Gentagen opgaver', 'account_management': 'Account Management', @@ -20404,7 +20746,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Succesfuldt arkiveret gruppe', 'deleted_group': 'Succesfuldt slettet gruppe', 'restored_group': 'Succesfuldt genskabt gruppe', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Upload dit firmalogo', 'uploaded_logo': 'Succesfuldt uploadet logo', 'logo': 'Logo', 'saved_settings': 'Succesfuldt reddede Indstillinger', @@ -20455,7 +20797,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'no_record_selected': 'Ingen post valgt', 'error_unsaved_changes': 'Venligst Gem eller Afbryd dine ændringer', 'download': 'Hent', - 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', + 'requires_an_enterprise_plan': 'Kræver en Enterprise Plan', 'take_picture': 'Tage billede', 'upload_files': 'Upload filer', 'document': 'Dokument', @@ -20640,7 +20982,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'phone': 'Telefon', 'website': 'Hjemmeside', 'vat_number': 'CVR/SE-nummer', - 'id_number': 'CVR/SE-nummer', + 'id_number': 'ID Nummer', 'create': 'Opret', 'copied_to_clipboard': 'Kopierede :value til udklipsholderen', 'error': 'Fejl', @@ -21025,16 +21367,68 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Indlæs farvetema', }, 'nl': { - 'check_credentials': 'Check Credentials', - 'valid_credentials': 'Credentials are valid', + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Referral-programma', + 'comment': 'Opmerkingen', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Tijd', + 'format': 'Formaat', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Melding onkosten :expense verzonden naar :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'Voor de beste prestaties raden we u aan de nieuwe web-app of de desktop-app te gebruiken', + 'rappen_rounding': 'Rappenafronding', + 'rappen_rounding_help': 'Rond het bedrag af op 5 cent', + 'check_credentials': 'Controleer inloggegevens', + 'valid_credentials': 'De legitimatiegegevens zijn geldig', 'invalid_credentials': 'Deze inloggegevens zijn niet bij ons bekend', - 'e_quote': 'E-Quote', - 'e_credit': 'E-Credit', - 'e_purchase_order': 'E-Purchase Order', + 'e_quote': 'E-offerte', + 'e_credit': 'E-krediet', + 'e_purchase_order': 'E-aankooporder', 'valid_vat_number': 'Geldig BTW-nummer', 'use_available_payments': 'Gebruik beschikbare betalingen', 'test_email_sent': 'E-mail succesvol verzonden', - 'send_test_email': 'Verstuur test-e-mail', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Gatewaytype', 'please_select_an_invoice_or_credit': 'Selecteer een factuur of tegoed', 'mobile_version': 'Mobiele versie', @@ -21066,7 +21460,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Verkoop van klanten', 'tax_summary': 'Belastingoverzicht', 'user_sales': 'Gebruikersverkoop', - 'run_template': 'Sjabloon uitvoeren', + 'run_template': 'Run Template', 'task_extension_banner': 'Voeg de Chrome-extensie toe om uw taken te beheren', 'watch_video': 'Bekijk video', @@ -21163,7 +21557,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'routing_id': 'Routerings-ID', 'enable_e_invoice': 'E-Factuur activeren', 'e_invoice_type': 'E-Factuur type', - 'e_quote_type': 'E-Quote Type', + 'e_quote_type': 'Type e-offerte', 'reduced_tax': 'Verlaagde belasting', 'override_tax': 'Belasting overschrijven', 'zero_rated': 'Nul nominaal', @@ -21437,7 +21831,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': 'Bewerk bankrekening', 'default_category': 'Standaard categorie', 'account_type': 'Rekening type', - 'new_bank_account': 'Add Bank Account', + 'new_bank_account': 'Voeg een bankrekening toe', 'connect_accounts': 'Accounts koppelen', 'manage_rules': 'Regels beheren', 'search_category': 'Zoek 1 categorie', @@ -21716,7 +22110,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Laad PDF', 'start_free_trial': 'Start gratis proefperiode', 'start_free_trial_message': - 'Start uw GRATIS proefperiode van 14 dagen voor het pro-abonnement', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Verschuldigd bij ontvangst', 'is_paid': 'Is betaald', 'age_group_paid': 'Betaald', @@ -21766,9 +22160,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Automatische Incasso', 'please_set_a_password': 'Voer een account wachtwoord in', 'set_password': 'Stel wachtwoord in', - 'recommend_desktop': - 'Wij raden de desktop app aan voor de beste werking.', - 'recommend_mobile': 'Wij raden de mobiele app aan voor de beste werking.', 'disconnected_gateway': 'Gateway succesvol ontkoppeld', 'disconnect': 'Verbreek verbinding', 'add_to_invoices': 'Voeg toe aan facturen', @@ -21807,7 +22198,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Kosten moeten allemaal behoren tot dezelfde klant', 'app': 'App', 'for_best_performance': 'Download voor de beste prestaties de :app-app', - 'gross_line_total': 'Subtotaal', + 'gross_line_total': 'Bruto lijntotaal', 'bulk_email_invoices': 'E-mail facturen', 'bulk_email_quotes': 'E-mail offertes', 'bulk_email_credits': 'E-mail creditzijde', @@ -23082,7 +23473,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Groep gearchiveerd', 'deleted_group': 'Groep verwijderd', 'restored_group': 'De groep is hersteld', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Upload uw bedrijfslogo', 'uploaded_logo': 'Het logo is opgeslagen', 'logo': 'Logo', 'saved_settings': 'De instellingen zijn opgeslagen', @@ -23133,7 +23524,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'no_record_selected': 'Geen records geselecteerd', 'error_unsaved_changes': 'Bewaar of annuleer de wijzigingen', 'download': 'Download', - 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', + 'requires_an_enterprise_plan': 'Vereist een Enterprise-abonnement', 'take_picture': 'Maak foto', 'upload_files': 'Upload bestanden', 'document': 'Document', @@ -23709,6 +24100,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Kleurthema laden', }, 'en_GB': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Referral Program', + 'comment': 'Comments', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Time', + 'format': 'Format', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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': 'Round Tasks', + 'round_tasks_help': 'Round time intervals when saving tasks', + 'direction': 'Direction', + 'round_up': 'Round Up', + 'round_down': 'Round Down', + 'task_round_to_nearest': 'Round To Nearest', + 'activity_139': 'Expense :expense notification sent to :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': 'These credentials do not match our records', @@ -23718,7 +24161,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'valid_vat_number': 'Valid VAT Number', 'use_available_payments': 'Use Available Payments', 'test_email_sent': 'Successfully sent email', - 'send_test_email': 'Send test email', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Gateway Type', 'please_select_an_invoice_or_credit': 'Please select an invoice or credit', @@ -23990,7 +24433,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'There are no documents in the selected records to download', 'pixels': 'Pixels', 'logo_size': 'Logo Size', - 'postal_city': 'Postal/City', + 'postal_city': 'Postcode/City', 'failed': 'Failed', 'client_contacts': 'Client Contacts', 'sync_from': 'Sync From', @@ -24096,7 +24539,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'category_type': 'Category Type', 'bank_transaction': 'Transaction', 'bulk_print': 'Print PDF', - 'vendor_postal_code': 'Vendor Postal Code', + 'vendor_postal_code': 'Vendor Postcode', 'preview_location': 'Preview Location', 'bottom': 'Bottom', 'side': 'Side', @@ -24114,7 +24557,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': 'Edit Bank Account', 'default_category': 'Default Category', 'account_type': 'Account type', - 'new_bank_account': 'New bank account', + 'new_bank_account': 'Add Bank Account', 'connect_accounts': 'Connect Accounts', 'manage_rules': 'Manage Rules', 'search_category': 'Search 1 Category', @@ -24308,7 +24751,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'standing': 'Standing', 'view_map': 'View Map', 'set_default_design': 'Set Default Design', - 'add_gateway': 'Add Gateway', + 'add_gateway': 'Add Payment Gateway', 'add_gateway_help_message': 'Add a payment gateway (ie. Stripe, WePay or PayPal) to accept online payments', 'left': 'Left', @@ -24379,9 +24822,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'approve': 'Approve', 'client_website': 'Client Website', 'invalid_time': 'Invalid Time', - 'client_shipping_state': 'Client Shipping State', + 'client_shipping_state': 'Client Shipping County', 'client_shipping_city': 'Client Shipping City', - 'client_shipping_postal_code': 'Client Shipping Postal Code', + 'client_shipping_postal_code': 'Client Postcode', 'client_shipping_country': 'Client Shipping Country', 'load_pdf': 'Load PDF', 'start_free_trial': 'Start Free Trial', @@ -24429,14 +24872,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', 'set_password': 'Set Password', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', - 'acss': 'Pre-authorized debit payments', + 'acss': 'ACSS Debit', 'becs': 'BECS Direct Debit', 'bulk_download': 'Download', 'persist_data_help': @@ -24444,7 +24883,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'persist_ui': 'Persist UI', 'persist_ui_help': 'Save UI state locally to enable the app to start at the last location, disabling may improve performance', - 'client_postal_code': 'Client Postal Code', + 'client_postal_code': 'Client Postcode', 'client_vat_number': 'Client VAT Number', 'has_tasks': 'Has Tasks', 'registration': 'Registration', @@ -24470,7 +24909,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Expenses must all belong to the same client', 'app': 'App', 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Gross line total', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'Email Invoices', 'bulk_email_quotes': 'Email Quotes', 'bulk_email_credits': 'Email Credits', @@ -24483,7 +24922,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'created_recurring_expense': 'Successfully created recurring expense', 'updated_recurring_expense': 'Successfully updated recurring expense', 'archived_recurring_expense': 'Successfully archived recurring expense', - 'deleted_recurring_expense': 'Successfully deleted project', + 'deleted_recurring_expense': 'Successfully deleted recurring expense', 'removed_recurring_expense': 'Successfully removed recurring expense', 'restored_recurring_expense': 'Successfully restored recurring expense', 'search_recurring_expense': 'Search Recurring Expense', @@ -24492,7 +24931,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'include_drafts': 'Include Drafts', 'include_drafts_help': 'Include draft records in reports', 'is_invoiced': 'Is Invoiced', - 'change_plan': 'Change Plan', + 'change_plan': 'Manage Plan', 'persist_data': 'Persist Data', 'customer_count': 'Customer Count', 'verify_customers': 'Verify Customers', @@ -24665,7 +25104,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'disconnected_gmail': 'Successfully disconnected Gmail', 'update_fail_help': 'Changes to the codebase may be blocking the update, you can run this command to discard the changes:', - 'client_id_number': 'Client ID Number', + 'client_id_number': 'Client Company Number', 'count_minutes': ':count Minutes', 'password_timeout': 'Password Timeout', 'shared_invoice_credit_counter': 'Share Invoice/Credit Counter', @@ -24939,9 +25378,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'minimum_under_payment_amount': 'Minimum Under Payment Amount', 'profit': 'Profit', 'line_item': 'Line Item', - 'allow_over_payment': 'Allow Over Payment', + 'allow_over_payment': 'Allow Overpayment', 'allow_over_payment_help': 'Support paying extra to accept tips', - 'allow_under_payment': 'Allow Under Payment', + 'allow_under_payment': 'Allow Underpayment', 'allow_under_payment_help': 'Support paying at minimum the partial/deposit amount', 'test_mode': 'Test Mode', @@ -25171,8 +25610,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'reversed_invoices': 'Successfully reversed invoices', 'reverse': 'Reverse', 'full_name': 'Full Name', - 'city_state_postal': 'City/State/Postal', - 'postal_city_state': 'Postal/City/State', + 'city_state_postal': 'City/County/Postcode', + 'postal_city_state': 'Postcode/City/County', 'custom1': 'First Custom', 'custom2': 'Second Custom', 'custom3': 'Third Custom', @@ -25343,17 +25782,17 @@ mixin LocalizationsProvider on LocaleCodeAware { 'contact_custom_value2': 'Contact Custom Value 2', 'contact_custom_value3': 'Contact Custom Value 3', 'contact_custom_value4': 'Contact Custom Value 4', - 'shipping_address1': 'Shipping Street', - 'shipping_address2': 'Shipping Apt/Suite', - 'shipping_city': 'Shipping City', - 'shipping_state': 'Shipping State/Province', - 'shipping_postal_code': 'Shipping Postal Code', + 'shipping_address1': 'Shipping Address Line 1', + 'shipping_address2': 'Shipping Address Line 2', + 'shipping_city': 'Shipping Town/City', + 'shipping_state': 'Shipping County', + 'shipping_postal_code': 'Shipping Postcode', 'shipping_country': 'Shipping Country', - 'billing_address1': 'Billing Street', - 'billing_address2': 'Billing Apt/Suite', - 'billing_city': 'Billing City', - 'billing_state': 'Billing State/Province', - 'billing_postal_code': 'Billing Postal Code', + 'billing_address1': 'Billing Address Line 1', + 'billing_address2': 'Billing Address Line 2', + 'billing_city': 'Billing Town/City', + 'billing_state': 'Billing County', + 'billing_postal_code': 'Billing Postcode', 'billing_country': 'Billing Country', 'client_id': 'Client Id', 'assigned_to': 'Assigned to', @@ -25392,7 +25831,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', 'configure_settings': 'Configure Settings', - 'support_forum': 'support forum', + 'support_forum': 'Support Forums', 'about': 'About', 'documentation': 'Documentation', 'contact_us': 'Contact Us', @@ -25400,7 +25839,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'line_total': 'Line Total', 'item': 'Item', 'credit_email': 'Credit Email', - 'iframe_url': 'Website', + 'iframe_url': 'iFrame URL', 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': @@ -25773,7 +26212,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'no_record_selected': 'No record selected', 'error_unsaved_changes': 'Please save or cancel your changes', 'download': 'Download', - 'requires_an_enterprise_plan': 'Requires an enterprise plan', + 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', 'take_picture': 'Take Picture', 'upload_files': 'Upload Files', 'document': 'Document', @@ -25958,7 +26397,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'phone': 'Phone', 'website': 'Website', 'vat_number': 'VAT Number', - 'id_number': 'ID Number', + 'id_number': 'Company Number', 'create': 'Create', 'copied_to_clipboard': 'Copied :value to the clipboard', 'error': 'Error', @@ -25998,10 +26437,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'deleted_clients': 'Successfully deleted :count clients', 'restored_client': 'Successfully restored client', 'restored_clients': 'Successfully restored :value clients', - 'address1': 'Street', - 'address2': 'Unit/Suite', - 'city': 'Town/Suburb', - 'state': 'State', + 'address1': 'Address Line 1', + 'address2': 'Address Line 2', + 'city': 'Town/City', + 'state': 'County', 'postal_code': 'Postcode', 'country': 'Country', 'invoice': 'Invoice', @@ -26076,9 +26515,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'paid': 'Paid', 'mark_sent': 'Mark Sent', 'marked_invoice_as_sent': 'Successfully marked invoice as sent', - 'marked_invoice_as_paid': 'Successfully marked invoice as sent', + 'marked_invoice_as_paid': 'Successfully marked invoice as paid', 'marked_invoices_as_sent': 'Successfully marked invoices as sent', - 'marked_invoices_as_paid': 'Successfully marked invoices as sent', + 'marked_invoices_as_paid': 'Successfully marked invoices as paid', 'done': 'Done', 'please_enter_a_client_or_contact_name': 'Please enter a client or contact name', @@ -26246,8 +26685,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'all': 'All', 'select': 'Select', 'long_press_multiselect': 'Long-press Multiselect', - 'custom_value1': 'Custom Value', - 'custom_value2': 'Custom Value', + 'custom_value1': 'Custom Value 1', + 'custom_value2': 'Custom Value 2', 'custom_value3': 'Custom Value 3', 'custom_value4': 'Custom Value 4', 'email_style_custom': 'Custom Email Style', @@ -26277,7 +26716,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'credit_number_counter': 'Credit Number Counter', 'reset_counter_date': 'Reset Counter Date', 'counter_padding': 'Counter Padding', - 'shared_invoice_quote_counter': 'Share Invoice Quote Counter', + 'shared_invoice_quote_counter': 'Share Invoice/Quote Counter', 'default_tax_name_1': 'Default Tax Name 1', 'default_tax_rate_1': 'Default Tax Rate 1', 'default_tax_name_2': 'Default Tax Name 2', @@ -26296,11 +26735,11 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_is_active': 'Client is Active', 'client_balance': 'Client Balance', 'client_address1': 'Client Street', - 'client_address2': 'Client Apt/Suite', + 'client_address2': 'Client Address Line 2', 'vendor_address1': 'Vendor Street', - 'vendor_address2': 'Vendor Apt/Suite', - 'client_shipping_address1': 'Client Shipping Street', - 'client_shipping_address2': 'Client Shipping Apt/Suite', + 'vendor_address2': 'Vendor Address Line 2', + 'client_shipping_address1': 'Client Shipping Address Line 1', + 'client_shipping_address2': 'Client Shipping Address Line 2', 'type': 'Type', 'invoice_amount': 'Invoice Amount', 'invoice_due_date': 'Due Date', @@ -26342,6 +26781,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'et': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Referral Program', + 'comment': 'Kommentaarid', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Aeg', + 'format': 'Vorming', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Expense :expense notification sent to :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': 'Parool või salasõna ei klapi.', @@ -26351,7 +26842,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'valid_vat_number': 'Valid VAT Number', 'use_available_payments': 'Use Available Payments', 'test_email_sent': 'Successfully sent email', - 'send_test_email': 'Saada test e-kiri', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Gateway Type', 'please_select_an_invoice_or_credit': 'Please select an invoice or credit', @@ -26384,7 +26875,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Client Sales', 'tax_summary': 'Tax Summary', 'user_sales': 'User Sales', - 'run_template': 'Run template', + 'run_template': 'Run Template', 'task_extension_banner': 'Add the Chrome extension to manage your tasks', 'watch_video': 'Watch Video', 'view_extension': 'View Extension', @@ -27019,7 +27510,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Load PDF', 'start_free_trial': 'Start Free Trial', 'start_free_trial_message': - 'Start your FREE 14 day trial of the pro plan', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Due on Receipt', 'is_paid': 'Is Paid', 'age_group_paid': 'Paid', @@ -27062,10 +27553,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Otsekorraldusega', 'please_set_a_password': 'Palun määra konto parool', 'set_password': 'Sea Salasõna', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', @@ -27106,7 +27593,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'app': 'Rakendus', 'for_best_performance': 'Parima suutlikuse saavutamiseks laadige alla rakendus :app', - 'gross_line_total': 'Gross line total', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'Email Invoices', 'bulk_email_quotes': 'Email Quotes', 'bulk_email_credits': 'Email Credits', @@ -28356,7 +28843,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Grupi arhiveerimine õnnestus', 'deleted_group': 'Grupi kustutamine õnnestus', 'restored_group': 'Grupi taastamine õnnestus', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Logo üleslaadimine õnnestus', 'logo': 'Logo', 'saved_settings': 'Seadete salvestamine õnnestus', @@ -28978,6 +29465,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Laadige värviteema', }, 'fi': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Referral Program', + 'comment': 'Comments', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Aika', + 'format': 'Format', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Expense :expense notification sent to :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': 'Kirjautumistiedot eivät täsmää tietojemme kanssa', @@ -28987,7 +29526,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'valid_vat_number': 'Valid VAT Number', 'use_available_payments': 'Use Available Payments', 'test_email_sent': 'Successfully sent email', - 'send_test_email': 'lähetä testisähköposti', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Gateway Type', 'please_select_an_invoice_or_credit': 'Please select an invoice or credit', @@ -29020,7 +29559,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Client Sales', 'tax_summary': 'Tax Summary', 'user_sales': 'User Sales', - 'run_template': 'Run template', + 'run_template': 'Run Template', 'task_extension_banner': 'Add the Chrome extension to manage your tasks', 'watch_video': 'Watch Video', 'view_extension': 'View Extension', @@ -29655,7 +30194,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Load PDF', 'start_free_trial': 'Start Free Trial', 'start_free_trial_message': - 'Start your FREE 14 day trial of the pro plan', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Due on Receipt', 'is_paid': 'Is Paid', 'age_group_paid': 'Paid', @@ -29699,10 +30238,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', 'set_password': 'Aseta salasana', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Katkaise yhteys', 'add_to_invoices': 'Lisää laskuille', @@ -29740,7 +30275,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Expenses must all belong to the same client', 'app': 'App', 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Yhteensä verollinen', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'Email Invoices', 'bulk_email_quotes': 'Email Quotes', 'bulk_email_credits': 'Email Credits', @@ -30060,7 +30595,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'sidebar_editor': 'Sidebar Editor', 'please_type_to_confirm': 'Please type \':value\' to confirm', 'purge': 'Purge', - 'service': 'Service', + 'service': 'Palvelu', 'clone_to': 'Clone To', 'clone_to_other': 'Clone to Other', 'labels': 'Labels', @@ -30993,7 +31528,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'onnistuneesti arkistoitu ryhmä', 'deleted_group': 'onnistuneesti poistettu ryhmä', 'restored_group': 'onnistuneesti palautettu ryhmä', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Logo onnistuneesti ladattu palvelimelle', 'logo': 'Logo', 'saved_settings': 'onnistuneesti saved asetus', @@ -31327,7 +31862,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_select_a_date': 'valitse päivämäärä', 'please_select_a_client': 'valitse asiakas', 'please_select_an_invoice': 'valitse lasku', - 'task_rate': 'Tehtävän luokitus', + 'task_rate': 'Tehtävän hinta', 'settings': 'Asetukset', 'language': 'Kieli', 'currency': 'Valuutta', @@ -31615,16 +32150,68 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'fr': { - 'check_credentials': 'Check Credentials', - 'valid_credentials': 'Credentials are valid', + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Programme de parrainage', + 'comment': 'Commentaire', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Temps', + 'format': 'Format', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Dépense :expense notification envoyée à :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'Nous vous recommandons d'utiliser la nouvelle application Web ou l'application de bureau pour obtenir les meilleures performances.', + 'rappen_rounding': 'Arrondi de Rappen', + 'rappen_rounding_help': 'Montant rond à 5 centimes', + 'check_credentials': 'Vérifier les informations d'identification', + 'valid_credentials': 'Les informations d'identification sont valides', 'invalid_credentials': 'Ces informations de connexion sont invalides', - 'e_quote': 'E-Quote', - 'e_credit': 'E-Credit', - 'e_purchase_order': 'E-Purchase Order', + 'e_quote': 'Devis électronique', + 'e_credit': 'E-Crédit', + 'e_purchase_order': 'Bon de commande électronique', 'valid_vat_number': 'Numéro de TVA valide', 'use_available_payments': 'Utiliser les paiements disponibles', 'test_email_sent': 'E-mail envoyé avec succès', - 'send_test_email': 'Envoyer un courriel de test', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Type de passerelle', 'please_select_an_invoice_or_credit': 'Veuillez sélectionner une facture ou un crédit', @@ -31657,7 +32244,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Ventes clients', 'tax_summary': 'Récapitulatif de taxe', 'user_sales': 'Ventes aux utilisateurs', - 'run_template': 'Exécuter le modèle', + 'run_template': 'Run Template', 'task_extension_banner': 'Ajoutez l'extension Chrome pour gérer vos tâches', 'watch_video': 'Regarder la vidéo', @@ -31756,7 +32343,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'routing_id': 'ID de routage', 'enable_e_invoice': 'Activer la facturation électronique', 'e_invoice_type': 'Type de facture électronique', - 'e_quote_type': 'E-Quote Type', + 'e_quote_type': 'Type de devis électronique', 'reduced_tax': 'Taxe réduite', 'override_tax': 'Outrepasser la taxe', 'zero_rated': 'Évaluation à zéro', @@ -32037,7 +32624,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': 'Éditer le compte bancaire', 'default_category': 'Catégorie par défaut', 'account_type': 'Type de compte', - 'new_bank_account': 'Add Bank Account', + 'new_bank_account': 'Ajouter un compte bancaire', 'connect_accounts': 'Connecter des comptes', 'manage_rules': 'Gérer les règles', 'search_category': 'Rechercher 1 catégorie', @@ -32325,7 +32912,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Charger le PDF', 'start_free_trial': 'Commencer l\'essai gratuit', 'start_free_trial_message': - 'Commencez votre essai GRATUIT de 14 jours du plan pro', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Payable à réception', 'is_paid': 'Est payé', 'age_group_paid': 'Payé', @@ -32376,10 +32963,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Prélèvement', 'please_set_a_password': 'Veuillez définir un mot de passe de compte', 'set_password': 'Définir le mot de passe', - 'recommend_desktop': - 'Nous vous recommandons d\'utiliser l\'application de bureau pour de meilleures performances', - 'recommend_mobile': - 'Nous vous recommandons d\'utiliser l\'application mobile pour de meilleures performances', 'disconnected_gateway': 'Passerelle déconnectée avec succès', 'disconnect': 'Déconnecter', 'add_to_invoices': 'Ajouter aux factures', @@ -32420,7 +33003,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'app': 'Application', 'for_best_performance': 'Pour de meilleures performances, téléchargez l\'application :app', - 'gross_line_total': 'Total brut de la ligne', + 'gross_line_total': 'Total brut', 'bulk_email_invoices': 'Factures par e-mail', 'bulk_email_quotes': 'Devis par e-mail', 'bulk_email_credits': 'Crédits d\'e-mail', @@ -33726,7 +34309,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Le groupe a été archivé avec succès', 'deleted_group': 'Le groupe a été supprimé avec succès', 'restored_group': 'Le groupe a été restauré avec succès', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Téléchargez le logo de votre entreprise', 'uploaded_logo': 'Le logo a été envoyé avec succès', 'logo': 'Logo', 'saved_settings': 'Les paramètres ont été enregistrés avec succès', @@ -33778,7 +34361,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'error_unsaved_changes': 'Veuillez enregistrer ou annuler vos modifications', 'download': 'Télécharger', - 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', + 'requires_an_enterprise_plan': 'Nécessite un forfait Entreprise', 'take_picture': 'Φωτογραφίσετε', 'upload_files': 'Télécharger des fichiers', 'document': 'Document', @@ -34355,13 +34938,67 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Charger le thème de couleur', }, 'fr_CA': { - 'check_credentials': 'Check Credentials', - 'valid_credentials': 'Credentials are valid', + 'quote_reminder1': 'Rappel pour la première soumission', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'Après al date de soumission', + 'remind_quote': 'Rappel de soumission', + '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', + 'end_of_month': 'Fin de mois', + 'referral_url': 'Referral URL', + 'referral_program': 'Programme de référencement', + 'comment': 'Commentaires', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Déconnecté', + 'reconnect': 'Reconnecté', + 'e_invoice_settings': 'Paramètres E-Facture', + 'calculate': 'Calculer', + 'sum': 'Somme', + 'money': 'Argent', + 'time': 'Temps', + 'format': 'Format', + 'web_app': 'App web', + 'desktop_app': 'App de bureau', + 'invoice_net_amount': 'Montant net de la facture', + 'round_to_minutes': 'Arrondir aux minutes', + '1_minute': '1 minute', + '5_minutes': '5 minutes', + '15_minutes': '15 minutes', + '30_minutes': '30 minutes', + '1_hour': '1 heure', + '1_day': '1 jour', + 'round_tasks': 'Direction d\'arrondi des tâches', + 'round_tasks_help': + 'Arrondir les temps des tâches vers le haut ou vers le bas', + 'direction': 'Direction', + 'round_up': 'Arrondir à hausse', + 'round_down': 'Arrondir à la baisse', + 'task_round_to_nearest': 'Arrondir au plus près', + 'activity_139': 'Notification de dépense :expense envoyée à :contact', + 'activity_140': 'État de compte envoyé à :client', + 'bulk_updated': 'Les données ont été mises à jour', + 'bulk_update': 'Mise à jour groupée', + 'advanced_cards': 'Cartes avancées', + 'always_show_required_fields': + 'Permet l\'affichage des champs requis d\'un formulaire', + 'always_show_required_fields_help': + 'Affiche toujours les champs requis d\'un formulaire au paiement', + 'flutter_web_warning': + 'Nous vous recommandons d\'utiliser la nouvelle application web ou l\'application PC pour de meilleures performances.', + 'rappen_rounding': 'Arrondir au cents', + 'rappen_rounding_help': 'Arrondir au 5 cents', + 'check_credentials': 'Vérifier les informations de connexion', + 'valid_credentials': 'Les informations de connexion sont valides', 'invalid_credentials': 'Ces informations ne correspondent pas à nos données', - 'e_quote': 'E-Quote', - 'e_credit': 'E-Credit', - 'e_purchase_order': 'E-Purchase Order', + 'e_quote': 'E-Soumission', + 'e_credit': 'E-Crédit', + 'e_purchase_order': 'E-Bon d\'achat', 'valid_vat_number': 'Numéro de taxe valide', 'use_available_payments': 'Utilisez les paiements disponibles', 'test_email_sent': 'Le courriel a été envoyé', @@ -34497,7 +35134,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'routing_id': 'ID de routage', 'enable_e_invoice': 'Activer la facturation électronique', 'e_invoice_type': 'Type de facture électronique', - 'e_quote_type': 'E-Quote Type', + 'e_quote_type': 'E-Type de soumission', 'reduced_tax': 'Taxe réduite', 'override_tax': 'Outrepasser la taxe', 'zero_rated': 'Évaluation à zéro', @@ -35107,10 +35744,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Prélèvement automatique', 'please_set_a_password': 'Veuillez spécifier un mot de passe', 'set_password': 'Nouveau mot de passe', - 'recommend_desktop': - 'Nous recommandons l\'utilisation de l\'application de bureau pour de meilleures performances.', - 'recommend_mobile': - 'Nous recommandons l\'utilisation de l\'application mobile pour de meilleures performances.', 'disconnected_gateway': 'La passerelle a été déconnectée', 'disconnect': 'Déconnexion', 'add_to_invoices': 'Ajouter aux factures', @@ -35954,7 +36587,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'deleted_designs': 'Les :value modèles ont été supprimés', 'restored_designs': 'Les :value modèles ont été restaurés', 'proposals': 'Propositions', - 'tickets': 'Billets', + 'tickets': 'Tickets', 'recurring_quotes': 'Soumissions récurrentes', 'recurring_tasks': 'Tâches récurrentes', 'account_management': 'Gestion du compte', @@ -37068,17 +37701,69 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Charger le thème de couleurs', }, 'fr_CH': { - 'check_credentials': 'Check Credentials', - 'valid_credentials': 'Credentials are valid', + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Programme de référencement', + 'comment': 'Commentaires', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Temps', + 'format': 'Format', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Dépense :expense notification envoyée à :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'Nous vous recommandons d'utiliser la nouvelle application Web ou l'application de bureau pour obtenir les meilleures performances.', + 'rappen_rounding': 'Arrondi de Rappen', + 'rappen_rounding_help': 'Montant rond à 5 centimes', + 'check_credentials': 'Vérifier les informations d'identification', + 'valid_credentials': 'Les informations d'identification sont valides', 'invalid_credentials': 'Ces informations ne correspondent pas à nos données', - 'e_quote': 'E-Quote', - 'e_credit': 'E-Credit', - 'e_purchase_order': 'E-Purchase Order', + 'e_quote': 'Devis électronique', + 'e_credit': 'E-Crédit', + 'e_purchase_order': 'Bon de commande électronique', 'valid_vat_number': 'Numéro de TVA valide', 'use_available_payments': 'Utiliser les paiements disponibles', 'test_email_sent': 'E-mail envoyé avec succès', - 'send_test_email': 'Envoyer un courriel test', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Type de passerelle', 'please_select_an_invoice_or_credit': 'Veuillez sélectionner une facture ou un crédit', @@ -37111,7 +37796,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Ventes clients', 'tax_summary': 'Récapitulatif fiscal', 'user_sales': 'Ventes aux utilisateurs', - 'run_template': 'Exécuter le modèle', + 'run_template': 'Run Template', 'task_extension_banner': 'Ajoutez l'extension Chrome pour gérer vos tâches', 'watch_video': 'Regardez la vidéo', @@ -37210,7 +37895,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'routing_id': 'ID de routage', 'enable_e_invoice': 'Activer la facture électronique', 'e_invoice_type': 'Type de facture électronique', - 'e_quote_type': 'E-Quote Type', + 'e_quote_type': 'Type de devis électronique', 'reduced_tax': 'Taxe réduite', 'override_tax': 'Remplacer la taxe', 'zero_rated': 'Évalué zéro', @@ -37480,7 +38165,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': 'éditer le compte bancaire', 'default_category': 'Default Category', 'account_type': 'Type de compte', - 'new_bank_account': 'Add Bank Account', + 'new_bank_account': 'Ajouter un compte bancaire', 'connect_accounts': 'Connect Accounts', 'manage_rules': 'Manage Rules', 'search_category': 'Search 1 Category', @@ -37754,7 +38439,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Load PDF', 'start_free_trial': 'Start Free Trial', 'start_free_trial_message': - 'Start your FREE 14 day trial of the pro plan', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Due on Receipt', 'is_paid': 'Is Paid', 'age_group_paid': 'Paid', @@ -37798,10 +38483,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Prélèvement automatique', 'please_set_a_password': 'Please set an account password', 'set_password': 'Nouveau mot de passe', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Passerelle déconnectée', 'disconnect': 'Déconnexion', 'add_to_invoices': 'Ajouter aux factures', @@ -37840,7 +38521,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Expenses must all belong to the same client', 'app': 'App', 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Total TTC', + 'gross_line_total': 'Total brut', 'bulk_email_invoices': 'Envoyer les factures par courriel', 'bulk_email_quotes': 'Envoyer les offres par courriel', 'bulk_email_credits': 'Envoyer les crédits par courriel', @@ -39159,7 +39840,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Le groupe a été archivé avec succès', 'deleted_group': 'Le groupe a été supprimé avec succès', 'restored_group': 'Le groupe a été restauré avec succès', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Téléchargez le logo de votre entreprise', 'uploaded_logo': 'Le logo a été téléversé avec succès', 'logo': 'Logo', 'saved_settings': 'Les paramètres ont été sauvegardés avec succès', @@ -39211,7 +39892,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'error_unsaved_changes': 'Veuillez sauvegarder ou annuler vos modifications', 'download': 'Télécharger', - 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', + 'requires_an_enterprise_plan': 'Nécessite un forfait Entreprise', 'take_picture': 'Prendre un photo', 'upload_files': 'Téléverser les fichiers', 'document': 'Justificatifs', @@ -39792,12 +40473,64 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'de': { - 'check_credentials': 'Check Credentials', - 'valid_credentials': 'Credentials are valid', + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Empfehlungs-Programm', + 'comment': 'Kommentare', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Berechnen', + 'sum': 'Summe', + 'money': 'Money', + 'time': 'Zeit', + 'format': 'Format', + 'web_app': 'Webanwendung', + 'desktop_app': 'Desktopanwendung', + 'invoice_net_amount': 'Rechnungsnettobetrag', + 'round_to_minutes': 'Auf Minuten runden', + '1_minute': '1 Minute', + '5_minutes': '5 Minuten', + '15_minutes': '15 Minuten', + '30_minutes': '30 Minuten', + '1_hour': '1 Stunde', + '1_day': '1 Tag', + 'round_tasks': 'Task Rounding Direction', + 'round_tasks_help': 'Round task times up or down.', + 'direction': 'Richtung', + 'round_up': 'Aufrunden', + 'round_down': 'Abrunden', + 'task_round_to_nearest': 'Round To Nearest', + 'activity_139': 'Ausgabe :expense Benachrichtigung an :contact gesendet', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Daten erfolgreich aktualisiert', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'Für eine optimale Leistung empfehlen wir die Verwendung der neuen Web-App oder der Desktop-App.', + 'rappen_rounding': 'Rappenrundung', + 'rappen_rounding_help': 'Betrag auf 5 Cent aufrunden', + 'check_credentials': 'Anmeldeinformationen prüfen', + 'valid_credentials': 'Die Anmeldeinformationen sind gültig', 'invalid_credentials': 'Diese Zugangsdaten können wir nicht finden.', - 'e_quote': 'E-Quote', - 'e_credit': 'E-Credit', - 'e_purchase_order': 'E-Purchase Order', + 'e_quote': 'E- Angebot / Kostenvoranschlag', + 'e_credit': 'E-Guthaben', + 'e_purchase_order': 'Elektronische Bestellung', 'valid_vat_number': 'Gültige USt-ID', 'use_available_payments': 'Verwenden Sie verfügbare Zahlungen', 'test_email_sent': 'E-Mail erfolgreich gesendet', @@ -39834,7 +40567,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Kunde', 'tax_summary': 'Steuerzusammenfassung', 'user_sales': 'Benutzerverkäufe', - 'run_template': 'Template anwenden', + 'run_template': 'Run Template', 'task_extension_banner': 'Die Chrome Erweiterung hinzufügen, um Aufgaben zu bearbeiten', 'watch_video': 'Video ansehen', @@ -39935,7 +40668,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'routing_id': 'Leitweg-ID', 'enable_e_invoice': 'Aktiviere E-Rechnung', 'e_invoice_type': 'E-Rechnungsstandard', - 'e_quote_type': 'E-Quote Type', + 'e_quote_type': 'E- Angebot / Kostenvoranschlag Typ', 'reduced_tax': 'Reduzierte Mehrwertsteuer', 'override_tax': 'Steuer überschreiben', 'zero_rated': 'Steuerbefreit', @@ -40210,7 +40943,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': 'Bankverbindung bearbeiten', 'default_category': 'Standartkategorie', 'account_type': 'Kontotyp', - 'new_bank_account': 'Add Bank Account', + 'new_bank_account': 'Bankverbindung hinzufügen', 'connect_accounts': 'Konten verbinden', 'manage_rules': 'Regeln verwalten', 'search_category': 'Suche 1 Kategorie', @@ -40494,7 +41227,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_shipping_country': 'Kunde Lieferung LAND', 'load_pdf': 'PDF laden', 'start_free_trial': 'Kostenlose Testversion starten', - 'start_free_trial_message': 'Teste den Pro-Tarif GRATIS für 14 Tage', + 'start_free_trial_message': + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Fällig bei Erhalt', 'is_paid': 'Ist bezahlt', 'age_group_paid': 'Bezahlt', @@ -40545,10 +41279,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Lastschriftverfahren', 'please_set_a_password': 'Bitte legen Sie ein Kontopasswort fest', 'set_password': 'Passwort festlegen', - 'recommend_desktop': - 'Wir empfehlen, die Desktop-Anwendung zu verwenden, um die beste Leistung zu erzielen.', - 'recommend_mobile': - 'Wir empfehlen die Verwendung der mobilen App, um die beste Leistung zu erzielen.', 'disconnected_gateway': 'Gateway erfolgreich getrennt', 'disconnect': 'Trennen', 'add_to_invoices': 'Zu Rechnungen hinzufügen', @@ -40589,7 +41319,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'app': 'App', 'for_best_performance': 'Für die beste Leistung laden Sie die App herunter :app', - 'gross_line_total': 'Bruttozeile gesamt', + 'gross_line_total': 'Bruttozeilensumme', 'bulk_email_invoices': 'E-Mail-Rechnungen', 'bulk_email_quotes': 'E-Mail-Angebote', 'bulk_email_credits': 'E-Mail-Gutschriften', @@ -41896,7 +42626,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Gruppe erfolgreich archiviert', 'deleted_group': 'Gruppe erfolgreich gelöscht', 'restored_group': 'Gruppe erfolgreich wiederhergestellt', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Laden Sie Ihr Firmenlogo hoch', 'uploaded_logo': 'Logo erfolgreich hochgeladen', 'logo': 'Logo', 'saved_settings': 'Einstellungen erfolgreich gespeichert', @@ -41948,7 +42678,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'error_unsaved_changes': 'Bitte speichern oder verwerfen Sie Ihre Änderungen', 'download': 'Herunterladen', - 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', + 'requires_an_enterprise_plan': 'Erfordert einen Enterprise-Plan', 'take_picture': 'Bild aufnehmen', 'upload_files': 'Dateien hochladen', 'document': 'Dokument', @@ -42353,7 +43083,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user archivierte Rechnung :invoice', 'activity_9': ':user löschte Rechnung :invoice', 'activity_10': - ':user hat die Zahlung :payment für :payment _amount der Rechnung :invoice für Kunde :client eingegeben', + ':user hat die Zahlung :payment über :payment_amount der Rechnung :invoice für Kunde :client eingegeben.', 'activity_11': ':user aktualisierte Zahlung :payment', 'activity_12': ':user archivierte Zahlung :payment', 'activity_13': ':user löschte Zahlung :payment', @@ -42530,6 +43260,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'lade Farbschema', }, 'el': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Πρόγραμμα Παραπομπής', + 'comment': 'Σχόλια', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Ώρα', + 'format': 'Μορφή', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Expense :expense notification sent to :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': @@ -42540,7 +43322,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'valid_vat_number': 'Valid VAT Number', 'use_available_payments': 'Use Available Payments', 'test_email_sent': 'Successfully sent email', - 'send_test_email': 'Αποστολή δοκιμαστικού email', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Gateway Type', 'please_select_an_invoice_or_credit': 'Please select an invoice or credit', @@ -42573,7 +43355,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Client Sales', 'tax_summary': 'Tax Summary', 'user_sales': 'User Sales', - 'run_template': 'Run template', + 'run_template': 'Run Template', 'task_extension_banner': 'Add the Chrome extension to manage your tasks', 'watch_video': 'Watch Video', 'view_extension': 'View Extension', @@ -43209,7 +43991,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Load PDF', 'start_free_trial': 'Start Free Trial', 'start_free_trial_message': - 'Start your FREE 14 day trial of the pro plan', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Due on Receipt', 'is_paid': 'Is Paid', 'age_group_paid': 'Paid', @@ -43252,10 +44034,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', 'set_password': 'Ορισμός Κωδικού Πρόσβασης', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', @@ -43293,7 +44071,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Expenses must all belong to the same client', 'app': 'App', 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Gross line total', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'Email Invoices', 'bulk_email_quotes': 'Email Quotes', 'bulk_email_credits': 'Email Credits', @@ -44581,7 +45359,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Επιτυχής αρχειοθέτηση γκρουπ', 'deleted_group': 'Επιτυχής διαγραφή γκρουπ', 'restored_group': 'Επιτυχής ανάκτηση γκρουπ', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Επιτυχής μεταφόρτωση λογοτύπου', 'logo': 'Λογότυπο', 'saved_settings': 'Επιτυχής αποθήκευση ρυθμίσεων', @@ -45213,16 +45991,68 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'he': { - 'check_credentials': 'Check Credentials', - 'valid_credentials': 'Credentials are valid', + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'תכנית שותפים', + 'comment': 'הערות', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'זמן', + 'format': 'Format', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'הודעת הוצאה :expense נשלחה אל :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'אנו ממליצים להשתמש באפליקציית האינטרנט החדשה או באפליקציית שולחן העבודה לקבלת הביצועים הטובים ביותר', + 'rappen_rounding': 'עיגול רפן', + 'rappen_rounding_help': 'סכום עגול עד 5 סנט', + 'check_credentials': 'בדוק אישורים', + 'valid_credentials': 'אישורים תקפים', 'invalid_credentials': 'שם המשתמש או הסיסמה אינם תואמים את הנתונים', - 'e_quote': 'E-Quote', - 'e_credit': 'E-Credit', - 'e_purchase_order': 'E-Purchase Order', + 'e_quote': 'ציטוט אלקטרוני', + 'e_credit': 'אשראי אלקטרוני', + 'e_purchase_order': 'הזמנת רכש אלקטרונית', 'valid_vat_number': 'מספר מע"מ תקף', 'use_available_payments': 'השתמש בתשלומים זמינים', 'test_email_sent': 'דוא"ל נשלח בהצלחה', - 'send_test_email': 'Send test email', + 'send_test_email': 'Send Test Email', 'gateway_type': 'סוג שער', 'please_select_an_invoice_or_credit': 'אנא בחר חשבונית או זיכוי', 'mobile_version': 'גרסת נייד', @@ -45253,7 +46083,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'מכירות לקוח', 'tax_summary': 'סיכום מס', 'user_sales': 'מכירות משתמשים', - 'run_template': 'הפעל תבנית', + 'run_template': 'Run Template', 'task_extension_banner': 'הוסף את התוסף של Chrome כדי לנהל את המשימות שלך', 'watch_video': 'צפה בוידאו', @@ -45349,7 +46179,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'routing_id': 'מזהה ניתוב', 'enable_e_invoice': 'אפשר חשבונית אלקטרונית', 'e_invoice_type': 'סוג חשבונית אלקטרונית', - 'e_quote_type': 'E-Quote Type', + 'e_quote_type': 'סוג הצעת מחיר אלקטרונית', 'reduced_tax': 'מס מופחת', 'override_tax': 'ביטול מס', 'zero_rated': 'דירוג אפס', @@ -45602,7 +46432,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': 'ערוך חשבון בנק', 'default_category': 'קטגוריית ברירת מחדל', 'account_type': 'סוג החשבון', - 'new_bank_account': 'Add Bank Account', + 'new_bank_account': 'הוסף חשבון בנק', 'connect_accounts': 'חבר חשבונות', 'manage_rules': 'נהל כללים', 'search_category': 'חפש קטגוריה 1', @@ -45863,7 +46693,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'טען PDF', 'start_free_trial': 'להתחיל ניסיון ללא תשלום', 'start_free_trial_message': - 'התחל את 14 ימי הניסיון שלך בחינם של תוכנית המקצוענים', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'לפירעון בקבלה', 'is_paid': 'שולם', 'age_group_paid': 'שולם', @@ -45906,10 +46736,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'חיוב ישיר', 'please_set_a_password': 'אנא הגדר סיסמת חשבון', 'set_password': 'הגדרת סיסמא', - 'recommend_desktop': - 'אנו ממליצים להשתמש באפליקציית שולחן העבודה לקבלת הביצועים הטובים ביותר', - 'recommend_mobile': - 'אנו ממליצים להשתמש באפליקציה לנייד לביצועים הטובים ביותר', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'לְנַתֵק', 'add_to_invoices': 'הוסף לחשבונית', @@ -47174,7 +48000,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'הקבוצה הועברה לארכיון בהצלחה', 'deleted_group': 'הקבוצה נמחקה בהצלחה', 'restored_group': 'הקבוצה שוחזרה בהצלחה', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'העלה את לוגו החברה שלך', 'uploaded_logo': 'הלוגו הועלה בהצלחה', 'logo': 'לוגו', 'saved_settings': 'ההגדרות נשמרו בהצלחה', @@ -47225,7 +48051,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'no_record_selected': 'לא נבחר רשומה', 'error_unsaved_changes': 'אנא שמור או בטל את השינויים שלך', 'download': 'הורדה', - 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', + 'requires_an_enterprise_plan': 'דורש תוכנית ארגונית', 'take_picture': 'צלם תמונה', 'upload_files': 'העלה קבצים', 'document': 'מסמך', @@ -47795,16 +48621,68 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'טען ערכת נושא צבע', }, 'hu': { - 'check_credentials': 'Check Credentials', - 'valid_credentials': 'Credentials are valid', + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Ajánlási program', + 'comment': 'Megjegyzés', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Idő', + 'format': 'Formátum', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Költség :expense értesítés elküldve :contact címre', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'A legjobb teljesítmény érdekében az új webalkalmazás vagy az asztali alkalmazás használatát javasoljuk', + 'rappen_rounding': 'Rappen kerekítés', + 'rappen_rounding_help': 'Kerek összeg 5 cent', + 'check_credentials': 'Ellenőrizze a hitelesítő adatokat', + 'valid_credentials': 'A hitelesítő adatok érvényesek', 'invalid_credentials': 'Érvénytelen hitelesítő adatok', - 'e_quote': 'E-Quote', + 'e_quote': 'E-Idézet', 'e_credit': 'E-Credit', - 'e_purchase_order': 'E-Purchase Order', + 'e_purchase_order': 'E-vásárlási megrendelés', 'valid_vat_number': 'érvényes ÁFA-szám', 'use_available_payments': 'Használja az Elérhető fizetéseket', 'test_email_sent': 'E-mail sikeresen elküldve', - 'send_test_email': 'Teszt e-mail küldése', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Átjáró típusa', 'please_select_an_invoice_or_credit': 'Kérjük, válasszon számlát vagy jóváírást', @@ -47837,7 +48715,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Ügyfél értékesítés', 'tax_summary': 'adóösszegzés', 'user_sales': 'Felhasználói értékesítés', - 'run_template': 'Sablon futtatása', + 'run_template': 'Run Template', 'task_extension_banner': 'Adja hozzá a Chrome-bővítményt a feladatok kezeléséhez', 'watch_video': 'Videót nézni', @@ -47936,7 +48814,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'routing_id': 'útvonal azonosító', 'enable_e_invoice': 'elektronikus számla engedélyezése', 'e_invoice_type': 'elektronikus számla típusa', - 'e_quote_type': 'E-Quote Type', + 'e_quote_type': 'E- idézet típusa', 'reduced_tax': 'csökkentett adó', 'override_tax': 'adó felülbírálása', 'zero_rated': 'nulla adómértékű', @@ -48194,7 +49072,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': 'Bankfiók szerkesztése', 'default_category': 'Alapértelmezett kategória', 'account_type': 'Fiók típusa', - 'new_bank_account': 'Add Bank Account', + 'new_bank_account': 'Bankszámla hozzáadása', 'connect_accounts': 'Fiókok összekapcsolása', 'manage_rules': 'Szabályok kezelése', 'search_category': 'Kategória keresése', @@ -48464,7 +49342,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_shipping_country': 'Ügyfél szállítási országa', 'load_pdf': 'PDF betöltése', 'start_free_trial': 'Ingyenes próbaverzió indítása', - 'start_free_trial_message': 'Ingyenes próbaverzió indításának üzenete', + 'start_free_trial_message': + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Esedékes a fogadáskor', 'is_paid': 'Fizetett', 'age_group_paid': 'Fizetett korcsoport', @@ -48504,8 +49383,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Közvetlen terhelés', 'please_set_a_password': 'Kérjük, állítsa be a jelszót', 'set_password': 'Jelszó beállítása', - 'recommend_desktop': 'Asztali ajánlása', - 'recommend_mobile': 'Mobil ajánlása', 'disconnected_gateway': 'Létrehozott kapu', 'disconnect': 'Kapcsolat bontása', 'add_to_invoices': 'Hozzáadás a számlákhoz', @@ -48539,7 +49416,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'error_cross_client_expenses': 'Hiba a keresztüli ügyfélköltségekben', 'app': 'Alkalmazás', 'for_best_performance': 'A legjobb teljesítmény érdekében', - 'gross_line_total': 'Bruttó vonalösszeg', + 'gross_line_total': 'Bruttó sor összesen', 'bulk_email_invoices': 'Tömeges e-mail számlákhoz', 'bulk_email_quotes': 'Tömeges e-mail árajánlatokhoz', 'bulk_email_credits': 'Tömeges e-mail jóváírásokhoz', @@ -49780,7 +50657,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Csoport archiválva', 'deleted_group': 'Csoport törölve', 'restored_group': 'Csoport helyreállítva', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Töltsd fel céged logóját', 'uploaded_logo': 'Logó feltöltve', 'logo': 'Logó', 'saved_settings': 'Beállítások mentve', @@ -49831,7 +50708,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'no_record_selected': 'Nincs kiválasztott rekord', 'error_unsaved_changes': 'Hiba: Nem mentett változások', 'download': 'Letöltés', - 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', + 'requires_an_enterprise_plan': 'Vállalati terv szükséges', 'take_picture': 'Kép készítése', 'upload_files': 'Fájlok feltöltése', 'document': 'Dokumentum', @@ -50403,17 +51280,69 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Szín téma betöltése', }, 'it': { - 'check_credentials': 'Check Credentials', - 'valid_credentials': 'Credentials are valid', + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Referral Program', + 'comment': 'Commenti', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Tempo', + 'format': 'Formato', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Spesa :expense notifica inviata a :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'Ti consigliamo di utilizzare la nuova app Web o l'app desktop per ottenere le migliori prestazioni', + 'rappen_rounding': 'Arrotondamento rapido', + 'rappen_rounding_help': 'Ammontare tondo a 5 centesimi', + 'check_credentials': 'Controlla le credenziali', + 'valid_credentials': 'Le credenziali sono valide', 'invalid_credentials': 'Queste credenziali non hanno trovato corrispondenza', - 'e_quote': 'E-Quote', - 'e_credit': 'E-Credit', - 'e_purchase_order': 'E-Purchase Order', + 'e_quote': 'Citazione elettronica', + 'e_credit': 'Credito elettronico', + 'e_purchase_order': 'Ordine di acquisto elettronico', 'valid_vat_number': 'Partita IVA valida', 'use_available_payments': 'Usa Pagamenti Disponibili', 'test_email_sent': 'Con successo inviata email', - 'send_test_email': 'Invia email di test', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Tipo Piattaforma', 'please_select_an_invoice_or_credit': 'Seleziona una Fattura o un credito', @@ -50446,7 +51375,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Vendite Cliente', 'tax_summary': 'Riepilogo fiscale', 'user_sales': 'Vendite Utente', - 'run_template': 'Esegui modello', + 'run_template': 'Run Template', 'task_extension_banner': 'Aggiungi l'estensione Chrome per gestire le tue attività', 'watch_video': 'Guarda un video', @@ -50544,7 +51473,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'routing_id': 'ID di instradamento', 'enable_e_invoice': 'Abilita E- Fattura', 'e_invoice_type': 'Tipo di Fattura E', - 'e_quote_type': 'E-Quote Type', + 'e_quote_type': 'Tipo di preventivo elettronico', 'reduced_tax': 'Tassa ridotta', 'override_tax': 'Ignorare l'imposta', 'zero_rated': 'Valutazione zero', @@ -50820,7 +51749,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': 'Modifica conto bancario', 'default_category': 'Categoria predefinita', 'account_type': 'Tipo di account', - 'new_bank_account': 'Add Bank Account', + 'new_bank_account': 'Aggiungi conto bancario', 'connect_accounts': 'Connetti gli account', 'manage_rules': 'Gestisci regole', 'search_category': 'Cerca 1 categoria', @@ -51105,7 +52034,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Carica PDF', 'start_free_trial': 'Inizia la prova gratuita', 'start_free_trial_message': - 'Inizia la tua prova GRATUITA di 14 giorni del piano pro', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Dovuto al ricevimento', 'is_paid': 'È pagato', 'age_group_paid': 'Pagato', @@ -51152,10 +52081,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_set_a_password': 'Si prega di impostare una password per l'account', 'set_password': 'Imposta Password', - 'recommend_desktop': - 'Si consiglia di utilizzare l'app desktop per ottenere le migliori prestazioni', - 'recommend_mobile': - 'Si consiglia di utilizzare l'app per dispositivi mobili per ottenere le migliori prestazioni', 'disconnected_gateway': 'Gateway disconnesso correttamente', 'disconnect': 'Disconnetti', 'add_to_invoices': 'Aggiungi a fatture', @@ -51196,7 +52121,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'app': 'App', 'for_best_performance': 'Per le migliori prestazioni scarica l'app :app', - 'gross_line_total': 'Totale linea lorda', + 'gross_line_total': 'Totale', 'bulk_email_invoices': 'Fatture e-mail', 'bulk_email_quotes': 'Citazioni e-mail', 'bulk_email_credits': 'Crediti e-mail', @@ -52482,7 +53407,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Gruppo archiviato con successo', 'deleted_group': 'Gruppo cancellato con successo', 'restored_group': 'Gruppo ripristinato con successo', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Carica il logo della tua azienda', 'uploaded_logo': 'Logo caricato con successo', 'logo': 'Logo', 'saved_settings': 'Impostazioni salvate con successo', @@ -52533,7 +53458,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'no_record_selected': 'Nessun dato selezionato', 'error_unsaved_changes': 'Si prega di salvare o annullare le modifiche', 'download': 'Scarica', - 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', + 'requires_an_enterprise_plan': 'Richiede un piano aziendale', 'take_picture': 'Fai foto', 'upload_files': 'Caricare files', 'document': 'Documento', @@ -53118,6 +54043,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Carica tema colore', }, 'ja': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'リファーラル・プログラム', + 'comment': 'Comments', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': '時間', + 'format': 'Format', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Expense :expense notification sent to :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': 'These credentials do not match our records', @@ -53127,7 +54104,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'valid_vat_number': 'Valid VAT Number', 'use_available_payments': 'Use Available Payments', 'test_email_sent': 'Successfully sent email', - 'send_test_email': 'Send test email', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Gateway Type', 'please_select_an_invoice_or_credit': 'Please select an invoice or credit', @@ -53160,7 +54137,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Client Sales', 'tax_summary': 'Tax Summary', 'user_sales': 'User Sales', - 'run_template': 'Run template', + 'run_template': 'Run Template', 'task_extension_banner': 'Add the Chrome extension to manage your tasks', 'watch_video': 'Watch Video', 'view_extension': 'View Extension', @@ -53702,7 +54679,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'search_purchase_order': 'Search Purchase Order', 'search_purchase_orders': 'Search Purchase Orders', 'login_url': 'Login URL', - 'payment_settings': 'Payment Settings', + 'payment_settings': '支払い設定', 'default': 'Default', 'stock_quantity': 'Stock Quantity', 'notification_threshold': 'Notification Threshold', @@ -53794,7 +54771,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Load PDF', 'start_free_trial': 'Start Free Trial', 'start_free_trial_message': - 'Start your FREE 14 day trial of the pro plan', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Due on Receipt', 'is_paid': 'Is Paid', 'age_group_paid': 'Paid', @@ -53836,10 +54813,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', 'set_password': 'パスワードを設定', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', @@ -53877,7 +54850,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Expenses must all belong to the same client', 'app': 'App', 'for_best_performance': '最高のパフォーマンスを得るには、:app アプリをダウンロードしてください', - 'gross_line_total': 'Gross line total', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'Email Invoices', 'bulk_email_quotes': 'Email Quotes', 'bulk_email_credits': 'Email Credits', @@ -55115,14 +56088,14 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Successfully archived group', 'deleted_group': 'Successfully deleted group', 'restored_group': 'Successfully restored group', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Successfully uploaded logo', 'logo': 'ロゴ', 'saved_settings': 'Successfully saved settings', 'product_settings': '商品設定', 'device_settings': 'Device Settings', 'defaults': 'デフォルト', - 'basic_settings': 'Basic Settings', + 'basic_settings': '基本設定', 'advanced_settings': '詳細設定', 'company_details': '企業情報', 'user_details': 'ユーザの詳細', @@ -55734,17 +56707,69 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'km_KH': { - 'check_credentials': 'Check Credentials', - 'valid_credentials': 'Credentials are valid', + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'កម្មវិធីយោង', + 'comment': 'មតិយោបល់', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'ពេលវេលា', + 'format': 'ទម្រង់', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'ការជូនដំណឹងអំពីការចំណាយ :expense ផ្ញើទៅ :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'យើងសូមណែនាំឱ្យប្រើកម្មវិធីបណ្តាញថ្មី ឬកម្មវិធីកុំព្យូទ័រសម្រាប់ដំណើរការល្អបំផុត', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'ចំនួនទឹកប្រាក់ជុំដល់ 5 សេន', + 'check_credentials': 'ពិនិត្យអត្តសញ្ញាណប័ណ្ណ', + 'valid_credentials': 'អត្តសញ្ញាណប័ណ្ណមានសុពលភាព', 'invalid_credentials': 'លិខិតសម្គាល់ទាំងនេះមិនត្រូវគ្នានឹងកំណត់ត្រារបស់យើងទេ។', - 'e_quote': 'E-Quote', - 'e_credit': 'E-Credit', - 'e_purchase_order': 'E-Purchase Order', + 'e_quote': 'សម្រង់អ៊ី', + 'e_credit': 'ឥណទានអ៊ី', + 'e_purchase_order': 'ការបញ្ជាទិញតាមអ៊ីនធឺណិត', 'valid_vat_number': 'លេខអាករដែលមានសុពលភាព', 'use_available_payments': 'ប្រើការទូទាត់ដែលមាន', 'test_email_sent': 'បានផ្ញើអ៊ីមែលដោយជោគជ័យ', - 'send_test_email': 'ផ្ញើអ៊ីមែលសាកល្បង', + 'send_test_email': 'Send Test Email', 'gateway_type': 'ប្រភេទច្រកផ្លូវ', 'please_select_an_invoice_or_credit': 'សូមជ្រើសរើសវិក្កយបត្រ ឬឥណទាន', 'mobile_version': 'កំណែចល័ត', @@ -55776,7 +56801,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'ការលក់អតិថិជន', 'tax_summary': 'សង្ខេបពន្ធ', 'user_sales': 'ការលក់អ្នកប្រើប្រាស់', - 'run_template': 'ដំណើរការគំរូ', + 'run_template': 'Run Template', 'task_extension_banner': 'បន្ថែមផ្នែកបន្ថែម Chrome ដើម្បីគ្រប់គ្រងកិច្ចការរបស់អ្នក។', 'watch_video': 'មើល​វីដេអូ', @@ -55872,7 +56897,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'routing_id': 'លេខសម្គាល់ផ្លូវ', 'enable_e_invoice': 'បើកវិក្កយបត្រអេឡិចត្រូនិច', 'e_invoice_type': 'ប្រភេទវិក័យប័ត្រអេឡិចត្រូនិច', - 'e_quote_type': 'E-Quote Type', + 'e_quote_type': 'ប្រភេទសម្រង់អេឡិចត្រូនិច', 'reduced_tax': 'ពន្ធកាត់បន្ថយ', 'override_tax': 'បដិសេធពន្ធ', 'zero_rated': 'ការវាយតម្លៃសូន្យ', @@ -56141,7 +57166,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': 'កែសម្រួលគណនីធនាគារ', 'default_category': 'ប្រភេទលំនាំដើម', 'account_type': 'ប្រភេទ​គណនី', - 'new_bank_account': 'Add Bank Account', + 'new_bank_account': 'បន្ថែមគណនីធនាគារ', 'connect_accounts': 'ភ្ជាប់គណនី', 'manage_rules': 'គ្រប់គ្រងច្បាប់', 'search_category': 'ស្វែងរក 1 ប្រភេទ', @@ -56416,7 +57441,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'ផ្ទុកឯកសារ PDF', 'start_free_trial': 'ចាប់ផ្តើមការសាកល្បងឥតគិតថ្លៃ', 'start_free_trial_message': - 'ចាប់ផ្តើមការសាកល្បងឥតគិតថ្លៃរយៈពេល 14 ថ្ងៃនៃគម្រោងគាំទ្ររបស់អ្នក។', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'ដល់ពេលទទួល', 'is_paid': 'ត្រូវបានបង់', 'age_group_paid': 'បង់', @@ -56463,10 +57488,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'ឥណពន្ធផ្ទាល់', 'please_set_a_password': 'សូម​កំណត់​ពាក្យ​សម្ងាត់​គណនី', 'set_password': 'កំណត់ពាក្យសម្ងាត់', - 'recommend_desktop': - 'យើងសូមណែនាំឱ្យប្រើកម្មវិធីកុំព្យូទ័រសម្រាប់ដំណើរការល្អបំផុត', - 'recommend_mobile': - 'យើងសូមណែនាំឱ្យប្រើកម្មវិធីទូរស័ព្ទសម្រាប់ដំណើរការល្អបំផុត', 'disconnected_gateway': 'បានផ្តាច់ច្រកចេញចូលដោយជោគជ័យ', 'disconnect': 'ផ្តាច់', 'add_to_invoices': 'បញ្ចូលទៅក្នុងវិក្កយបត្រ', @@ -56504,7 +57525,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'ការចំណាយទាំងអស់ត្រូវតែជារបស់អតិថិជនដូចគ្នា។', 'app': 'កម្មវិធី', 'for_best_performance': 'សម្រាប់ដំណើរការល្អបំផុត សូមទាញយកកម្មវិធី :app', - 'gross_line_total': 'ជួរសរុប', + 'gross_line_total': 'បន្ទាត់សរុប', 'bulk_email_invoices': 'វិក្កយបត្រអ៊ីម៉ែល', 'bulk_email_quotes': 'សម្រង់អ៊ីមែល', 'bulk_email_credits': 'ឥណទានអ៊ីម៉ែល', @@ -57768,7 +58789,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'បាន​ទុក​ក្រុម​ដោយ​ជោគជ័យ', 'deleted_group': 'បានលុបក្រុមដោយជោគជ័យ', 'restored_group': 'បានស្ដារក្រុមដោយជោគជ័យ', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'បង្ហោះរូបសញ្ញាក្រុមហ៊ុនរបស់អ្នក។', 'uploaded_logo': 'បានបង្ហោះរូបសញ្ញាដោយជោគជ័យ', 'logo': 'និមិត្តសញ្ញា', 'saved_settings': 'បានរក្សាទុកការកំណត់ដោយជោគជ័យ', @@ -57819,7 +58840,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'no_record_selected': 'មិនបានជ្រើសរើសកំណត់ត្រាទេ។', 'error_unsaved_changes': 'សូមរក្សាទុក ឬបោះបង់ការផ្លាស់ប្ដូររបស់អ្នក។', 'download': 'ទាញយក', - 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', + 'requires_an_enterprise_plan': 'ទាមទារផែនការសហគ្រាស', 'take_picture': 'ថតរូប', 'upload_files': 'ផ្ទុកឯកសារឡើង', 'document': 'ឯកសារ', @@ -58393,12 +59414,64 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'ផ្ទុកស្បែកពណ៌', }, 'lo_LA': { - 'check_credentials': 'Check Credentials', - 'valid_credentials': 'Credentials are valid', + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'ທ້າຍເດືອນ', + 'referral_url': 'Referral URL', + 'referral_program': 'ໂຄງການອ້າງອີງ', + 'comment': 'ຄຳເຫັນ', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'ຕັດການເຊື່ອມຕໍ່', + 'reconnect': 'ເຊື່ອມຕໍ່ຄືນໃໝ່', + 'e_invoice_settings': 'ການຕັ້ງຄ່າ E-Invoice', + 'calculate': 'ໄລ່ເລກ', + 'sum': 'ຈໍານວນ', + 'money': 'ເງິນ', + 'time': 'ເວລາ', + 'format': 'ຮູບແບບ', + 'web_app': 'ແອັບເວັບ', + 'desktop_app': 'ແອັບເດັສທັອບ', + 'invoice_net_amount': 'ໃບເກັບເງິນສຸດທິ', + 'round_to_minutes': 'ຮອບເຖິງນາທີ', + '1_minute': '1 ນາທີ', + '5_minutes': '5 ນາທີ', + '15_minutes': '15 ນາທີ', + '30_minutes': '30 ນາທີ', + '1_hour': '1 ຊົ່ວ​ໂມງ', + '1_day': '1 ມື້', + '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', + 'activity_139': 'ລາຍຈ່າຍ : ແຈ້ງຄ່າໃຊ້ຈ່າຍທີ່ສົ່ງຫາ : ຕິດຕໍ່', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'ອັບເດດຂໍ້ມູນສຳເລັດແລ້ວ', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'ບັດຂັ້ນສູງ', + 'always_show_required_fields': 'ອະນຸຍາດໃຫ້ສະແດງແບບຟອມທີ່ຕ້ອງການ', + 'always_show_required_fields_help': + 'ສະແດງແບບຟອມຊ່ອງຂໍ້ມູນທີ່ຕ້ອງການຢູ່ສະເໝີໃນເວລາຈ່າຍເງິນ', + 'flutter_web_warning': + 'ພວກເຮົາແນະນຳໃຫ້ໃຊ້ແອັບເວັບໃໝ່ ຫຼືແອັບ desktop ເພື່ອປະສິດທິພາບທີ່ດີທີ່ສຸດ', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'ຈໍານວນຮອບເປັນ 5 ເຊັນ', + 'check_credentials': 'ກວດສອບຂໍ້ມູນປະຈໍາຕົວ', + 'valid_credentials': 'ຂໍ້ມູນປະຈໍາຕົວຖືກຕ້ອງ', 'invalid_credentials': 'ຂໍ້ມູນປະຈຳຕົວເຫຼົ່ານີ້ບໍ່ກົງກັບບັນທຶກຂອງພວກເຮົາ', 'e_quote': 'E-Quote', - 'e_credit': 'E-Credit', - 'e_purchase_order': 'E-Purchase Order', + 'e_credit': 'ສິນເຊື່ອອີເມລ໌', + 'e_purchase_order': 'ການສັ່ງຊື້ອີເມລ໌', 'valid_vat_number': 'ໝາຍເລກອາກອນມູນຄ່າເພີ່ມທີ່ຖືກຕ້ອງ', 'use_available_payments': 'ໃຊ້ການຈ່າຍເງິນທີ່ມີຢູ່', 'test_email_sent': 'ສົ່ງອີເມວສຳເລັດແລ້ວ', @@ -58531,7 +59604,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'routing_id': 'ID ເສັ້ນທາງ', 'enable_e_invoice': 'ເປີດໃຊ້ E-Invoice', 'e_invoice_type': 'ປະເພດໃບແຈ້ງໜີ້', - 'e_quote_type': 'E-Quote Type', + 'e_quote_type': 'ປະເພດ E-Quote', 'reduced_tax': 'ພາສີຫຼຸດລົງ', 'override_tax': 'ເສຍພາສີ', 'zero_rated': 'ຄະແນນສູນ', @@ -58787,7 +59860,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': 'ແກ້ໄຂບັນຊີທະນາຄານ', 'default_category': 'ໝວດໝູ່ເລີ່ມຕົ້ນ', 'account_type': 'ປະເພດບັນຊີ', - 'new_bank_account': 'Add Bank Account', + 'new_bank_account': 'ເພີ່ມບັນຊີທະນາຄານ', 'connect_accounts': 'ເຊື່ອມຕໍ່ບັນຊີ', 'manage_rules': 'ຈັດການກົດລະບຽບ', 'search_category': 'ຊອກຫາ 1 ໝວດໝູ່', @@ -59052,7 +60125,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'ໂຫລດ PDF', 'start_free_trial': 'ເລີ່ມທົດລອງໃຊ້ຟຣີ', 'start_free_trial_message': - 'ເລີ່ມການທົດລອງໃຊ້ຟຣີ 14 ມື້ຂອງແຜນການສົ່ງເສີມຂອງທ່ານ', + 'ເລີ່ມການທົດລອງໃຊ້ Pro Plan ຟຣີ 14 ມື້ຂອງທ່ານ', 'due_on_receipt': 'ຄົບກຳນົດໃນໃບຮັບເງິນ', 'is_paid': 'ໄດ້ຈ່າຍແລ້ວ', 'age_group_paid': 'ຈ່າຍແລ້ວ', @@ -59098,10 +60171,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'ເດບິດໂດຍກົງ', 'please_set_a_password': 'ກະລຸນາຕັ້ງລະຫັດຜ່ານບັນຊີ', 'set_password': 'ຕັ້ງລະຫັດຜ່ານ', - 'recommend_desktop': - 'ພວກເຮົາແນະນໍາໃຫ້ໃຊ້ແອັບຯ desktop ເພື່ອປະສິດທິພາບທີ່ດີທີ່ສຸດ', - 'recommend_mobile': - 'ພວກເຮົາແນະນໍາໃຫ້ໃຊ້ແອັບຯມືຖືເພື່ອປະສິດທິພາບທີ່ດີທີ່ສຸດ', 'disconnected_gateway': 'ຕັດການເຊື່ອມຕໍ່ປະຕູສຳເລັດແລ້ວ', 'disconnect': 'ຕັດການເຊື່ອມຕໍ່', 'add_to_invoices': 'ຕື່ມໃສ່ໃບແຈ້ງໜີ້', @@ -59139,7 +60208,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'error_cross_client_expenses': 'ລາຍຈ່າຍທັງໝົດຕ້ອງເປັນຂອງລູກຄ້າດຽວກັນ', 'app': 'ແອັບ', 'for_best_performance': 'ເພື່ອປະສິດທິພາບທີ່ດີທີ່ສຸດດາວໂຫລດ: app app', - 'gross_line_total': 'ເສັ້ນລວມທັງໝົດ', + 'gross_line_total': 'ລວມຍອດເສັ້ນທັງໝົດ', 'bulk_email_invoices': 'ອີເມລ໌ໃບແຈ້ງໜີ້', 'bulk_email_quotes': 'ອີເມລ໌ວົງຢືມ', 'bulk_email_credits': 'ສິນເຊື່ອອີເມວ', @@ -60377,7 +61446,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'ກຸ່ມທີ່ເກັບໄວ້ສຳເລັດແລ້ວ', 'deleted_group': 'ລຶບກຸ່ມສຳເລັດແລ້ວ', 'restored_group': 'ກຸ່ມຟື້ນຟູສຳເລັດແລ້ວ', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'ອັບໂຫຼດໂລໂກ້ບໍລິສັດຂອງເຈົ້າ', 'uploaded_logo': 'ອັບໂຫລດໂລໂກ້ສຳເລັດແລ້ວ', 'logo': 'ໂລໂກ້', 'saved_settings': 'ບັນທຶກການຕັ້ງຄ່າສຳເລັດແລ້ວ', @@ -60428,7 +61497,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'no_record_selected': 'ບໍ່ໄດ້ເລືອກບັນທຶກ', 'error_unsaved_changes': 'ກະລຸນາບັນທຶກ ຫຼືຍົກເລີກການປ່ຽນແປງຂອງທ່ານ', 'download': 'ດາວໂຫລດ', - 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', + 'requires_an_enterprise_plan': 'ຕ້ອງການແຜນວິສາຫະກິດ', 'take_picture': 'ຖ່າຍຮູບ', 'upload_files': 'ອັບໂຫລດໄຟລ໌', 'document': 'ເອກະສານ', @@ -60998,6 +62067,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'lv_LV': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Referral Program', + 'comment': 'Comments', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Time', + 'format': 'Format', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Expense :expense notification sent to :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': 'These credentials do not match our records', @@ -61007,7 +62128,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'valid_vat_number': 'Valid VAT Number', 'use_available_payments': 'Use Available Payments', 'test_email_sent': 'Successfully sent email', - 'send_test_email': 'Send test email', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Gateway Type', 'please_select_an_invoice_or_credit': 'Please select an invoice or credit', @@ -61040,7 +62161,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Client Sales', 'tax_summary': 'Tax Summary', 'user_sales': 'User Sales', - 'run_template': 'Run template', + 'run_template': 'Run Template', 'task_extension_banner': 'Add the Chrome extension to manage your tasks', 'watch_video': 'Watch Video', 'view_extension': 'View Extension', @@ -61675,7 +62796,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Load PDF', 'start_free_trial': 'Start Free Trial', 'start_free_trial_message': - 'Start your FREE 14 day trial of the pro plan', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Due on Receipt', 'is_paid': 'Is Paid', 'age_group_paid': 'Paid', @@ -61718,10 +62839,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', 'set_password': 'Set Password', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', @@ -61759,7 +62876,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Expenses must all belong to the same client', 'app': 'App', 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Gross line total', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'Email Invoices', 'bulk_email_quotes': 'Email Quotes', 'bulk_email_credits': 'Email Credits', @@ -63011,7 +64128,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Successfully archived group', 'deleted_group': 'Successfully deleted group', 'restored_group': 'Successfully restored group', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Successfully uploaded logo', 'logo': 'Logo', 'saved_settings': 'Successfully saved settings', @@ -63632,6 +64749,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'lt': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Referral Program', + 'comment': 'Comments', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Laikas', + 'format': 'Formatas', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Expense :expense notification sent to :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': 'Šie įgaliojimai neatitinka mūsų įrašų', @@ -63641,7 +64810,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'valid_vat_number': 'Valid VAT Number', 'use_available_payments': 'Use Available Payments', 'test_email_sent': 'Successfully sent email', - 'send_test_email': 'Send test email', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Gateway Type', 'please_select_an_invoice_or_credit': 'Please select an invoice or credit', @@ -63674,7 +64843,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Client Sales', 'tax_summary': 'Tax Summary', 'user_sales': 'User Sales', - 'run_template': 'Run template', + 'run_template': 'Run Template', 'task_extension_banner': 'Add the Chrome extension to manage your tasks', 'watch_video': 'Watch Video', 'view_extension': 'View Extension', @@ -64309,7 +65478,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Load PDF', 'start_free_trial': 'Start Free Trial', 'start_free_trial_message': - 'Start your FREE 14 day trial of the pro plan', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Due on Receipt', 'is_paid': 'Is Paid', 'age_group_paid': 'Paid', @@ -64352,10 +65521,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', 'set_password': 'Įrašyti slaptažodį', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', @@ -64393,7 +65558,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Expenses must all belong to the same client', 'app': 'App', 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Gross line total', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'Email Invoices', 'bulk_email_quotes': 'Email Quotes', 'bulk_email_credits': 'Email Credits', @@ -65645,7 +66810,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Successfully archived group', 'deleted_group': 'Successfully deleted group', 'restored_group': 'Successfully restored group', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Successfully uploaded logo', 'logo': 'Logotipas', 'saved_settings': 'Successfully saved settings', @@ -66266,6 +67431,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'mk_MK': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Програма за упатување', + 'comment': 'Comments', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Време', + 'format': 'Формат', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Expense :expense notification sent to :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': @@ -66276,7 +67493,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'valid_vat_number': 'Valid VAT Number', 'use_available_payments': 'Use Available Payments', 'test_email_sent': 'Successfully sent email', - 'send_test_email': 'Прати тест е-пошта', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Gateway Type', 'please_select_an_invoice_or_credit': 'Please select an invoice or credit', @@ -66309,7 +67526,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Client Sales', 'tax_summary': 'Tax Summary', 'user_sales': 'User Sales', - 'run_template': 'Run template', + 'run_template': 'Run Template', 'task_extension_banner': 'Add the Chrome extension to manage your tasks', 'watch_video': 'Watch Video', 'view_extension': 'View Extension', @@ -66944,7 +68161,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Load PDF', 'start_free_trial': 'Start Free Trial', 'start_free_trial_message': - 'Start your FREE 14 day trial of the pro plan', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Due on Receipt', 'is_paid': 'Is Paid', 'age_group_paid': 'Paid', @@ -66987,10 +68204,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', 'set_password': 'Сетирај лозинка', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', @@ -67028,7 +68241,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Expenses must all belong to the same client', 'app': 'App', 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Gross line total', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'Email Invoices', 'bulk_email_quotes': 'Email Quotes', 'bulk_email_credits': 'Email Credits', @@ -68285,7 +69498,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Successfully archived group', 'deleted_group': 'Successfully deleted group', 'restored_group': 'Successfully restored group', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Successfully uploaded logo', 'logo': 'Лого', 'saved_settings': 'Successfully saved settings', @@ -68905,6 +70118,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'nb_NO': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Henvisningsprogram', + 'comment': 'Comments', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Tid', + 'format': 'Formater', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Expense :expense notification sent to :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': @@ -68915,7 +70180,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'valid_vat_number': 'Valid VAT Number', 'use_available_payments': 'Use Available Payments', 'test_email_sent': 'Successfully sent email', - 'send_test_email': 'Send test-e-post', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Gateway Type', 'please_select_an_invoice_or_credit': 'Please select an invoice or credit', @@ -69626,10 +70891,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', 'set_password': 'Sett Passord', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', @@ -69667,7 +70928,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Expenses must all belong to the same client', 'app': 'App', 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Gross line total', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'Email Invoices', 'bulk_email_quotes': 'Email Quotes', 'bulk_email_credits': 'Email Credits', @@ -70918,7 +72179,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Successfully archived group', 'deleted_group': 'Successfully deleted group', 'restored_group': 'Successfully restored group', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Successfully uploaded logo', 'logo': 'Logo', 'saved_settings': 'Successfully saved settings', @@ -71540,6 +72801,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'fa': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Referral Program', + 'comment': 'Comments', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Time', + 'format': 'Format', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Expense :expense notification sent to :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': 'These credentials do not match our records', @@ -71549,7 +72862,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'valid_vat_number': 'Valid VAT Number', 'use_available_payments': 'Use Available Payments', 'test_email_sent': 'Successfully sent email', - 'send_test_email': 'Send test email', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Gateway Type', 'please_select_an_invoice_or_credit': 'Please select an invoice or credit', @@ -71582,7 +72895,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Client Sales', 'tax_summary': 'Tax Summary', 'user_sales': 'User Sales', - 'run_template': 'Run template', + 'run_template': 'Run Template', 'task_extension_banner': 'Add the Chrome extension to manage your tasks', 'watch_video': 'Watch Video', 'view_extension': 'View Extension', @@ -72217,7 +73530,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Load PDF', 'start_free_trial': 'Start Free Trial', 'start_free_trial_message': - 'Start your FREE 14 day trial of the pro plan', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Due on Receipt', 'is_paid': 'Is Paid', 'age_group_paid': 'Paid', @@ -72260,10 +73573,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', 'set_password': 'Set Password', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', @@ -72301,7 +73610,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Expenses must all belong to the same client', 'app': 'App', 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Gross line total', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'Email Invoices', 'bulk_email_quotes': 'Email Quotes', 'bulk_email_credits': 'Email Credits', @@ -73553,7 +74862,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Successfully archived group', 'deleted_group': 'Successfully deleted group', 'restored_group': 'Successfully restored group', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Successfully uploaded logo', 'logo': 'Logo', 'saved_settings': 'Successfully saved settings', @@ -74173,6 +75482,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'pl': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Program referencyjny', + 'comment': 'Komentarze', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Czas', + 'format': 'Format', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Expense :expense notification sent to :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': 'Niepoprawne dane logowania', @@ -74182,7 +75543,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'valid_vat_number': 'Prawidłowy numer VAT', 'use_available_payments': 'Use Available Payments', 'test_email_sent': 'Successfully sent email', - 'send_test_email': 'Wyślij wiadomość testową', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Gateway Type', 'please_select_an_invoice_or_credit': 'Please select an invoice or credit', @@ -74895,10 +76256,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Proszę ustawić hasło do konta', 'set_password': 'Ustaw hasło', - 'recommend_desktop': - 'Zalecamy korzystanie z aplikacji komputerowej w celu uzyskania najlepszej wydajności', - 'recommend_mobile': - 'Zalecamy korzystanie z aplikacji mobilnej w celu uzyskania najlepszej wydajności', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', @@ -74936,7 +76293,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Expenses must all belong to the same client', 'app': 'App', 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Wartość brutto', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'Email Invoices', 'bulk_email_quotes': 'Email Quotes', 'bulk_email_credits': 'Email Credits', @@ -76191,7 +77548,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Grupa zarchiwizowana pomyślnie', 'deleted_group': 'Grupa usunięta pomyślnie', 'restored_group': 'Grupa przywrócona pomyślnie', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Successfully uploaded logo', 'logo': 'Logo', 'saved_settings': 'Successfully saved settings', @@ -76813,17 +78170,69 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'pt_BR': { - 'check_credentials': 'Check Credentials', - 'valid_credentials': 'Credentials are valid', + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Programa de Indicações', + 'comment': 'Comentários', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Hora', + 'format': 'Formato', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Notificação de despesa :expense enviada para :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'Recomendamos usar o novo aplicativo da web ou o aplicativo de desktop para obter o melhor desempenho', + 'rappen_rounding': 'Arredondamento de Rappen', + 'rappen_rounding_help': 'Montante redondo para 5 centavos', + 'check_credentials': 'Verifique as credenciais', + 'valid_credentials': 'As credenciais são válidas', 'invalid_credentials': 'Estas credenciais não foram encontradas em nossos registros', - 'e_quote': 'E-Quote', - 'e_credit': 'E-Credit', - 'e_purchase_order': 'E-Purchase Order', + 'e_quote': 'E-Citação', + 'e_credit': 'Crédito eletrônico', + 'e_purchase_order': 'Pedido de compra eletrônica', 'valid_vat_number': 'Número de IVA válido', 'use_available_payments': 'Use pagamentos disponíveis', 'test_email_sent': 'E-mail enviado com sucesso', - 'send_test_email': 'Enviar email de teste', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Tipo de gateway', 'please_select_an_invoice_or_credit': 'Selecione uma fatura ou crédito', 'mobile_version': 'Versão móvel', @@ -76855,7 +78264,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Vendas ao cliente', 'tax_summary': 'Resumo fiscal', 'user_sales': 'Vendas de usuários', - 'run_template': 'Executar modelo', + 'run_template': 'Run Template', 'task_extension_banner': 'Adicione a extensão do Chrome para gerenciar suas tarefas', 'watch_video': 'Assista vídeo', @@ -76953,7 +78362,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'routing_id': 'ID de roteamento', 'enable_e_invoice': 'Ativar fatura eletrônica', 'e_invoice_type': 'Tipo de fatura eletrônica', - 'e_quote_type': 'E-Quote Type', + 'e_quote_type': 'Tipo de cotação eletrônica', 'reduced_tax': 'Imposto reduzido', 'override_tax': 'Substituir imposto', 'zero_rated': 'Classificação zero', @@ -77226,7 +78635,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': 'Editar Conta Bancária', 'default_category': 'Categoria padrão', 'account_type': 'Tipo de conta', - 'new_bank_account': 'Add Bank Account', + 'new_bank_account': 'Adicionar conta bancária', 'connect_accounts': 'Conectar contas', 'manage_rules': 'Gerenciar regras', 'search_category': 'Pesquisar 1 categoria', @@ -77508,7 +78917,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Carregar PDF', 'start_free_trial': 'Comece o teste gratuito', 'start_free_trial_message': - 'Comece seu teste GRATUITO de 14 dias do plano pro', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Vencimento no recebimento', 'is_paid': 'É pago', 'age_group_paid': 'Pago', @@ -77551,10 +78960,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Débito Direto', 'please_set_a_password': 'Defina uma senha de conta', 'set_password': 'Definir Senha', - 'recommend_desktop': - 'Recomendamos usar o aplicativo de desktop para obter o melhor desempenho', - 'recommend_mobile': - 'Recomendamos usar o aplicativo móvel para obter o melhor desempenho', 'disconnected_gateway': 'Gateway desconectado com sucesso', 'disconnect': 'desconectar', 'add_to_invoices': 'Adicionar às faturas', @@ -77595,7 +79000,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'app': 'Aplicativo', 'for_best_performance': 'Para obter o melhor desempenho, baixe o aplicativo :app', - 'gross_line_total': 'Total bruto da linha', + 'gross_line_total': 'Total Bruto da Linha', 'bulk_email_invoices': 'Faturas por e-mail', 'bulk_email_quotes': 'Cotações por e-mail', 'bulk_email_credits': 'Créditos de e-mail', @@ -78876,7 +80281,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Grupo arquivado com sucesso', 'deleted_group': 'Grupo removido com sucesso', 'restored_group': 'Grupo restaurado com sucesso', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Faça upload do logotipo da sua empresa', 'uploaded_logo': 'Logo carregado com sucesso', 'logo': 'Logo', 'saved_settings': 'Configurações salvas com sucesso', @@ -78927,7 +80332,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'no_record_selected': 'Nenhum registro selecionado', 'error_unsaved_changes': 'Por favor, salve ou cancele suas alterações', 'download': 'Download', - 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', + 'requires_an_enterprise_plan': 'Requer um plano empresarial', 'take_picture': 'Tire uma Foto', 'upload_files': 'Fazer upload de arquivos', 'document': 'Documento', @@ -79502,16 +80907,68 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Carregar tema de cores', }, 'pt_PT': { - 'check_credentials': 'Check Credentials', - 'valid_credentials': 'Credentials are valid', + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Programa de Indicação', + 'comment': 'Comentários', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Tempo', + 'format': 'Formato', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Notificação de despesa :expense enviada para :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'Recomendamos usar o novo aplicativo da web ou o aplicativo de desktop para obter o melhor desempenho', + 'rappen_rounding': 'Arredondamento de Rappen', + 'rappen_rounding_help': 'Montante redondo para 5 centavos', + 'check_credentials': 'Verifique as credenciais', + 'valid_credentials': 'As credenciais são válidas', 'invalid_credentials': 'Utilizador e/ou senha inválidos', - 'e_quote': 'E-Quote', - 'e_credit': 'E-Credit', - 'e_purchase_order': 'E-Purchase Order', + 'e_quote': 'E-Citação', + 'e_credit': 'Crédito eletrônico', + 'e_purchase_order': 'Pedido de compra eletrônica', 'valid_vat_number': 'Número de IVA válido', 'use_available_payments': 'Use pagamentos disponíveis', 'test_email_sent': 'E-mail enviado com sucesso', - 'send_test_email': 'Enviar e-mail de teste', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Tipo de gateway', 'please_select_an_invoice_or_credit': 'Selecione uma fatura ou crédito', 'mobile_version': 'Versão móvel', @@ -79543,7 +81000,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Vendas ao cliente', 'tax_summary': 'Resumo do imposto', 'user_sales': 'Vendas de usuários', - 'run_template': 'Executar modelo', + 'run_template': 'Run Template', 'task_extension_banner': 'Adicione a extensão do Chrome para gerenciar suas tarefas', 'watch_video': 'Assista vídeo', @@ -79641,7 +81098,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'routing_id': 'ID de roteamento', 'enable_e_invoice': 'Ativar fatura eletrônica', 'e_invoice_type': 'Tipo de fatura eletrônica', - 'e_quote_type': 'E-Quote Type', + 'e_quote_type': 'Tipo de cotação eletrônica', 'reduced_tax': 'Imposto reduzido', 'override_tax': 'Substituir imposto', 'zero_rated': 'Classificação zero', @@ -79914,7 +81371,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': 'Editar Conta Bancária', 'default_category': 'Categoria padrão', 'account_type': 'Tipo de Conta', - 'new_bank_account': 'Add Bank Account', + 'new_bank_account': 'Adicionar conta bancária', 'connect_accounts': 'Conectar contas', 'manage_rules': 'Gerenciar regras', 'search_category': 'Pesquisar 1 categoria', @@ -80194,7 +81651,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Carregar PDF', 'start_free_trial': 'Iniciar teste gratuito', 'start_free_trial_message': - 'Comece seu teste GRATUITO de 14 dias do plano pro', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Vence Quando Recebido', 'is_paid': 'É pago', 'age_group_paid': 'Pago', @@ -80238,10 +81695,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Débito Direto', 'please_set_a_password': 'Defina uma senha de conta', 'set_password': 'Defenir senha', - 'recommend_desktop': - 'Recomendamos usar o aplicativo de desktop para obter o melhor desempenho', - 'recommend_mobile': - 'Recomendamos o uso do aplicativo móvel para obter o melhor desempenho', 'disconnected_gateway': 'Gateway desconectado com sucesso', 'disconnect': 'desconectar', 'add_to_invoices': 'Adicionar às faturas', @@ -80281,7 +81734,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'app': 'Aplicativo', 'for_best_performance': 'Para obter o melhor desempenho, baixe o aplicativo :app', - 'gross_line_total': 'Total bruto', + 'gross_line_total': 'Total Bruto da Linha', 'bulk_email_invoices': 'Faturas por e-mail', 'bulk_email_quotes': 'Cotações por e-mail', 'bulk_email_credits': 'Créditos de e-mail', @@ -81564,7 +83017,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Grupo arquivado com sucesso', 'deleted_group': 'Grupo removido com sucesso', 'restored_group': 'Grupo restaurado com sucesso', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Faça upload do logotipo da sua empresa', 'uploaded_logo': 'Logótipo carregado com sucesso', 'logo': 'Logótipo', 'saved_settings': 'Configurações guardadas com sucesso', @@ -81616,7 +83069,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'error_unsaved_changes': 'Por favor, guarde ou cancele as suas alterações', 'download': 'Transferir', - 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', + 'requires_an_enterprise_plan': 'Requer um plano empresarial', 'take_picture': 'Tirar Fotografia', 'upload_files': 'Fazer upload de arquivos', 'document': 'Documento', @@ -82196,16 +83649,68 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Carregar tema de cores', }, 'ro': { - 'check_credentials': 'Check Credentials', - 'valid_credentials': 'Credentials are valid', + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Program Promovare', + 'comment': 'Comentarii', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Timp', + 'format': 'Format', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Cheltuieli :expense notificare trimisă către :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'Vă recomandăm să utilizați noua aplicație web sau aplicația desktop pentru cea mai bună performanță', + 'rappen_rounding': 'Rappen rotunjire', + 'rappen_rounding_help': 'Suma rotundă la 5 cenți', + 'check_credentials': 'Verificați acreditările', + 'valid_credentials': 'Acreditările sunt valide', 'invalid_credentials': 'Aceste credențiale nu coincid cu datele noastre', - 'e_quote': 'E-Quote', + 'e_quote': 'Citat electronic', 'e_credit': 'E-Credit', - 'e_purchase_order': 'E-Purchase Order', + 'e_purchase_order': 'Comandă electronică', 'valid_vat_number': 'Număr de TVA valabil', 'use_available_payments': 'Utilizați plățile disponibile', 'test_email_sent': 'E-mail trimis cu succes', - 'send_test_email': 'Trimiteți un email de test', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Tip gateway', 'please_select_an_invoice_or_credit': 'Vă rugăm să selectați o factură sau un credit', @@ -82238,7 +83743,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Vânzări pentru clienți', 'tax_summary': 'Rezumatul impozitelor', 'user_sales': 'Vânzări utilizatori', - 'run_template': 'Rulați șablonul', + 'run_template': 'Run Template', 'task_extension_banner': 'Adăugați extensia Chrome pentru a vă gestiona sarcinile', 'watch_video': 'Urmăriți videoclipul', @@ -82337,7 +83842,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'routing_id': 'ID de rutare', 'enable_e_invoice': 'Activați Factura electronică', 'e_invoice_type': 'Tip factură electronică', - 'e_quote_type': 'E-Quote Type', + 'e_quote_type': 'Tip de citat electronic', 'reduced_tax': 'Impozit redus', 'override_tax': 'Anulează impozitul', 'zero_rated': 'Evaluat zero', @@ -82611,7 +84116,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': 'Modificați contul bancar', 'default_category': 'Categorie implicită', 'account_type': 'Tip cont', - 'new_bank_account': 'Add Bank Account', + 'new_bank_account': 'Adăugați un cont bancar', 'connect_accounts': 'Conectați conturi', 'manage_rules': 'Gestionați regulile', 'search_category': 'Caută 1 categorie', @@ -82905,7 +84410,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Încărcați PDF', 'start_free_trial': 'Începeți perioada gratuită de test', 'start_free_trial_message': - 'Începeți perioada gratuită de test de 14 zile pentru planul PRO', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Scadență pe nota de plată', 'is_paid': 'Este plătită', 'age_group_paid': 'Plătit(ă)', @@ -82954,8 +84459,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Setați o parolă', 'set_password': 'Stabilește Parola', - 'recommend_desktop': 'Vă recomandăm să utilizați aplicația de desktop', - 'recommend_mobile': 'Vă recomandăm să utilizați aplicația mobilă', 'disconnected_gateway': 'Calea de acces a fost deconectată cu succes', 'disconnect': 'Deconectat(ă)', 'add_to_invoices': 'Adăugați în facturi', @@ -84299,7 +85802,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Grupul a fost arhivat cu succes', 'deleted_group': 'Grupul a fost eliminat cu succes', 'restored_group': 'Grupul a fost restabilit cu succes', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Încărcați sigla companiei dvs', 'uploaded_logo': 'Sigla a fost încărcată cu succes', 'logo': 'Logo', 'saved_settings': 'Sigla a fost salvată cu succes', @@ -84350,7 +85853,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'no_record_selected': 'Nu a fost selectată nicio înregistrare', 'error_unsaved_changes': 'Salvați sau anulați modificările', 'download': 'Descarca', - 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', + 'requires_an_enterprise_plan': 'Necesită un plan de întreprindere', 'take_picture': 'Faceți o fotografie', 'upload_files': 'Încărca fișiere', 'document': 'Document', @@ -84928,6 +86431,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Schemă de culori încărcare', }, 'ru_RU': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Реферальная программа', + 'comment': 'Комментарии', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Время', + 'format': 'Format', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Expense :expense notification sent to :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': 'Учетные данные не найдены', @@ -84937,7 +86492,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'valid_vat_number': 'Valid VAT Number', 'use_available_payments': 'Use Available Payments', 'test_email_sent': 'Successfully sent email', - 'send_test_email': 'Отправить тестовое сообщение', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Gateway Type', 'please_select_an_invoice_or_credit': 'Please select an invoice or credit', @@ -84970,7 +86525,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Client Sales', 'tax_summary': 'Tax Summary', 'user_sales': 'User Sales', - 'run_template': 'Run template', + 'run_template': 'Run Template', 'task_extension_banner': 'Add the Chrome extension to manage your tasks', 'watch_video': 'Watch Video', 'view_extension': 'View Extension', @@ -85333,7 +86888,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': 'Edit Bank Account', 'default_category': 'Default Category', 'account_type': 'Account type', - 'new_bank_account': 'New bank account', + 'new_bank_account': 'Add Bank Account', 'connect_accounts': 'Connect Accounts', 'manage_rules': 'Manage Rules', 'search_category': 'Search 1 Category', @@ -85605,7 +87160,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Load PDF', 'start_free_trial': 'Start Free Trial', 'start_free_trial_message': - 'Start your FREE 14 day trial of the pro plan', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Due on Receipt', 'is_paid': 'Is Paid', 'age_group_paid': 'Paid', @@ -85648,10 +87203,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', 'set_password': 'Установить пароль', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', @@ -85689,7 +87240,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Expenses must all belong to the same client', 'app': 'App', 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Gross line total', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'Email Invoices', 'bulk_email_quotes': 'Email Quotes', 'bulk_email_credits': 'Email Credits', @@ -86993,7 +88544,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'no_record_selected': 'No record selected', 'error_unsaved_changes': 'Please save or cancel your changes', 'download': 'Скачать', - 'requires_an_enterprise_plan': 'Requires an enterprise plan', + 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', 'take_picture': 'Take Picture', 'upload_files': 'Upload Files', 'document': 'Document', @@ -87562,6 +89113,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'sr': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Referentni program', + 'comment': 'Komentari', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Vreme', + 'format': 'Format', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Expense :expense notification sent to :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': @@ -87572,7 +89175,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'valid_vat_number': 'Valid VAT Number', 'use_available_payments': 'Use Available Payments', 'test_email_sent': 'Successfully sent email', - 'send_test_email': 'Pošalji probnu e-poštu', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Gateway Type', 'please_select_an_invoice_or_credit': 'Please select an invoice or credit', @@ -87605,7 +89208,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Client Sales', 'tax_summary': 'Tax Summary', 'user_sales': 'User Sales', - 'run_template': 'Run template', + 'run_template': 'Run Template', 'task_extension_banner': 'Add the Chrome extension to manage your tasks', 'watch_video': 'Watch Video', 'view_extension': 'View Extension', @@ -88240,7 +89843,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Load PDF', 'start_free_trial': 'Start Free Trial', 'start_free_trial_message': - 'Start your FREE 14 day trial of the pro plan', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Due on Receipt', 'is_paid': 'Is Paid', 'age_group_paid': 'Paid', @@ -88283,10 +89886,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direktni dug', 'please_set_a_password': 'Please set an account password', 'set_password': 'Postavi lozinku', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', @@ -88324,7 +89923,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Expenses must all belong to the same client', 'app': 'App', 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Gross line total', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'Email Invoices', 'bulk_email_quotes': 'Email Quotes', 'bulk_email_credits': 'Email Credits', @@ -89580,7 +91179,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Grupa je uspešno arhivirana', 'deleted_group': 'Grupa je uspešno obrisana', 'restored_group': 'Grupa je uspešno vraćena', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Logo je uspešno otpremljen', 'logo': 'Logo', 'saved_settings': 'Postavke su uspešno sačuvane', @@ -90205,17 +91804,70 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'sk': { - 'check_credentials': 'Check Credentials', - 'valid_credentials': 'Credentials are valid', + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Referenčný program', + 'comment': 'Komentáre', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Čas', + 'format': 'Formát', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': + 'Oznámenie o výdavkoch :expense odoslané na adresu :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'Na dosiahnutie najlepšieho výkonu odporúčame použiť novú webovú aplikáciu alebo počítačovú aplikáciu', + 'rappen_rounding': 'Rappen zaokrúhľovanie', + 'rappen_rounding_help': 'Okrúhla suma do 5 centov', + 'check_credentials': 'Skontrolujte poverenia', + 'valid_credentials': 'Poverenia sú platné', 'invalid_credentials': 'Tieto prihlasovacie údaje sa nezhodujú s našimi záznamami', - 'e_quote': 'E-Quote', - 'e_credit': 'E-Credit', - 'e_purchase_order': 'E-Purchase Order', + 'e_quote': 'Elektronická cenová ponuka', + 'e_credit': 'Elektronický kredit', + 'e_purchase_order': 'Objednávka elektronického nákupu', 'valid_vat_number': 'Platné IČ DPH', 'use_available_payments': 'Použite dostupné platby', 'test_email_sent': 'E-mail bol úspešne odoslaný', - 'send_test_email': 'Odoslať skúšobný email', + 'send_test_email': 'Odoslať testovací email', 'gateway_type': 'Typ brány', 'please_select_an_invoice_or_credit': 'Vyberte faktúru alebo kredit', 'mobile_version': 'Mobilná verzia', @@ -90247,7 +91899,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Klientsky predaj', 'tax_summary': 'Súhrn dane', 'user_sales': 'Predaj používateľov', - 'run_template': 'Spustiť šablónu', + 'run_template': 'Run Template', 'task_extension_banner': 'Ak chcete spravovať svoje úlohy, pridajte si rozšírenie pre Chrome', 'watch_video': 'Pozeraj video', @@ -90345,7 +91997,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'routing_id': 'ID smerovania', 'enable_e_invoice': 'Povoliť elektronickú faktúru', 'e_invoice_type': 'Typ elektronickej faktúry', - 'e_quote_type': 'E-Quote Type', + 'e_quote_type': 'Typ elektronickej cenovej ponuky', 'reduced_tax': 'Znížená daň', 'override_tax': 'Prepísať daň', 'zero_rated': 'Zero Rated', @@ -90617,7 +92269,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': 'Upraviť bankový účet', 'default_category': 'Predvolená kategória', 'account_type': 'Typ účtu', - 'new_bank_account': 'Add Bank Account', + 'new_bank_account': 'Pridať bankový účet', 'connect_accounts': 'Pripojiť účty', 'manage_rules': 'Spravovať pravidlá', 'search_category': 'Hľadať 1 kategóriu', @@ -90895,7 +92547,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Načítať PDF', 'start_free_trial': 'Spustiť bezplatnú skúšobnú verziu', 'start_free_trial_message': - 'Začnite BEZPLATNÚ 14-dňovú skúšobnú verziu profesionálneho plánu', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Splatné pri prijatí', 'is_paid': 'Je zaplatená', 'age_group_paid': 'Zaplatené', @@ -90940,10 +92592,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Inkaso', 'please_set_a_password': 'Nastavte heslo účtu', 'set_password': 'Nastaviť heslo', - 'recommend_desktop': - 'Na dosiahnutie najlepšieho výkonu odporúčame používať počítačovú aplikáciu', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Brána bola úspešne odpojená', 'disconnect': 'Odpojiť', 'add_to_invoices': 'Pridať do faktúr', @@ -92248,7 +93896,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Skupina úspešne archivovaná', 'deleted_group': 'Skupina úspešne zmazaná', 'restored_group': 'Skupina úspešne obnovená', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Nahrajte logo svojej spoločnosti', 'uploaded_logo': 'Logo úspešne nahraté', 'logo': 'Logo', 'saved_settings': 'Nastavenia boli úspešne uložné', @@ -92299,7 +93947,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'no_record_selected': 'Nie je vybraný žiadny záznam', 'error_unsaved_changes': 'Prosím uložte alebo zrušte Vaše zmeny', 'download': 'Stiahnuť', - 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', + 'requires_an_enterprise_plan': 'Vyžaduje podnikový plán', 'take_picture': 'Vyfotiť', 'upload_files': 'Nahrať súbory', 'document': 'Dokument', @@ -92644,7 +94292,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'reminder2': 'Druhá Upomienka', 'reminder3': 'Tretia Upomienka', 'template': 'Šablóna', - 'send': 'Odoslané', + 'send': 'Odoslať', 'subject': 'Predmet', 'body': 'Telo', 'send_email': 'Poslať e-mail', @@ -92871,6 +94519,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Načítať farebný motív', }, 'sl': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Program napotnice', + 'comment': 'Komentarji', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Čas', + 'format': 'Oblika', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Expense :expense notification sent to :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': 'Prijava se ne ujema z našimi podatki', @@ -92880,7 +94580,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'valid_vat_number': 'Valid VAT Number', 'use_available_payments': 'Use Available Payments', 'test_email_sent': 'Successfully sent email', - 'send_test_email': 'Pošlji testno sporočilo', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Gateway Type', 'please_select_an_invoice_or_credit': 'Please select an invoice or credit', @@ -92913,7 +94613,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Client Sales', 'tax_summary': 'Tax Summary', 'user_sales': 'User Sales', - 'run_template': 'Run template', + 'run_template': 'Run Template', 'task_extension_banner': 'Add the Chrome extension to manage your tasks', 'watch_video': 'Watch Video', 'view_extension': 'View Extension', @@ -93548,7 +95248,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Load PDF', 'start_free_trial': 'Start Free Trial', 'start_free_trial_message': - 'Start your FREE 14 day trial of the pro plan', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Due on Receipt', 'is_paid': 'Is Paid', 'age_group_paid': 'Paid', @@ -93591,10 +95291,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', 'set_password': 'Nastavi geslo', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', @@ -93632,7 +95328,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Expenses must all belong to the same client', 'app': 'App', 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Gross line total', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'Email Invoices', 'bulk_email_quotes': 'Email Quotes', 'bulk_email_credits': 'Email Credits', @@ -94889,7 +96585,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Successfully archived group', 'deleted_group': 'Successfully deleted group', 'restored_group': 'Successfully restored group', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Successfully uploaded logo', 'logo': 'Logotip', 'saved_settings': 'Successfully saved settings', @@ -95512,17 +97208,69 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Naloži barvno shemo', }, 'es': { - 'check_credentials': 'Check Credentials', - 'valid_credentials': 'Credentials are valid', + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Programa de Referidos', + 'comment': 'Comentarios', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Tiempo', + 'format': 'Format', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Notificación de gastos :expense enviada a :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'Recomendamos utilizar la nueva aplicación web o la aplicación de escritorio para obtener el mejor rendimiento.', + 'rappen_rounding': 'Redondeo de rappen', + 'rappen_rounding_help': 'Monto redondo a 5 centavos', + 'check_credentials': 'Verificar credenciales', + 'valid_credentials': 'Las credenciales son válidas', 'invalid_credentials': 'Estas credenciales no concuerdan con nuestros registros', - 'e_quote': 'E-Quote', - 'e_credit': 'E-Credit', - 'e_purchase_order': 'E-Purchase Order', + 'e_quote': 'Cotización electrónica', + 'e_credit': 'Crédito electrónico', + 'e_purchase_order': 'Orden de compra electrónica', 'valid_vat_number': 'Número de IVA válido', 'use_available_payments': 'Usar pagos disponibles', 'test_email_sent': 'Correo electrónico enviado correctamente', - 'send_test_email': 'Enviar correo de prueba', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Tipo de puerta de enlace', 'please_select_an_invoice_or_credit': 'Por favor seleccione una factura o crédito', @@ -95555,7 +97303,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Ventas al cliente', 'tax_summary': 'Resumen de impuestos', 'user_sales': 'Ventas de usuarios', - 'run_template': 'Ejecutar plantilla', + 'run_template': 'Run Template', 'task_extension_banner': 'Añade la extensión de Chrome para gestionar tus tareas', 'watch_video': 'Ver video', @@ -95655,7 +97403,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'routing_id': 'Id. de enrutamiento', 'enable_e_invoice': 'Habilitar factura electrónica', 'e_invoice_type': 'Tipo de factura electrónica', - 'e_quote_type': 'E-Quote Type', + 'e_quote_type': 'Tipo de cotización electrónica', 'reduced_tax': 'Impuesto reducido', 'override_tax': 'Anular impuestos', 'zero_rated': 'Clasificación cero', @@ -95933,7 +97681,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': 'Editar Cuenta Bancaria', 'default_category': 'Categoría predeterminada', 'account_type': 'Tipo de cuenta', - 'new_bank_account': 'Add Bank Account', + 'new_bank_account': 'Agregar cuenta bancaria', 'connect_accounts': 'Conectar cuentas', 'manage_rules': 'Administrar reglas', 'search_category': 'Buscar 1 Categoría', @@ -96215,7 +97963,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Cargar PDF', 'start_free_trial': 'Empiza la prueba gratuita', 'start_free_trial_message': - 'Comience su prueba GRATUITA de 14 días del plan profesional', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Debido a la recepción', 'is_paid': 'Está pagado', 'age_group_paid': 'Pagado', @@ -96259,10 +98007,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Débito directo', 'please_set_a_password': 'Establezca una contraseña de cuenta', 'set_password': 'Asignar Contraseña', - 'recommend_desktop': - 'Recomendamos usar la aplicación de escritorio para obtener el mejor rendimiento', - 'recommend_mobile': - 'Recomendamos usar la aplicación móvil para obtener el mejor rendimiento', 'disconnected_gateway': 'Puerta de enlace desconectada con éxito', 'disconnect': 'Desconectar', 'add_to_invoices': 'Agregar a facturas', @@ -96303,7 +98047,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'app': 'aplicación', 'for_best_performance': 'Para obtener el mejor rendimiento, descargue la aplicación :app', - 'gross_line_total': 'Total bruto de línea', + 'gross_line_total': 'Total de línea bruto', 'bulk_email_invoices': 'Facturas por correo electrónico', 'bulk_email_quotes': 'Cotizaciones por correo electrónico', 'bulk_email_credits': 'Créditos de correo electrónico', @@ -97592,7 +99336,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Grupo archivado correctamente', 'deleted_group': 'Grupo eliminado con éxito', 'restored_group': 'Grupo restaurado con éxito', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Cargue el logotipo de su empresa', 'uploaded_logo': 'Logotipo subido correctamente', 'logo': 'Logo', 'saved_settings': 'Configuraciones guardadas con éxito', @@ -97643,7 +99387,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'no_record_selected': 'Ningún registro seleccionado', 'error_unsaved_changes': 'Guarde o cancele sus cambios', 'download': 'Descargar', - 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', + 'requires_an_enterprise_plan': 'Requiere un plan empresarial', 'take_picture': 'Tomar la foto', 'upload_files': 'Subir archivos', 'document': 'Documento', @@ -98226,17 +99970,69 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Cargar tema de color', }, 'es_ES': { - 'check_credentials': 'Check Credentials', - 'valid_credentials': 'Credentials are valid', + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Programa de Recomendaciones', + 'comment': 'Comentarios', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Hora', + 'format': 'Formato', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Notificación de gastos :expense enviada a :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'Recomendamos utilizar la nueva aplicación web o la aplicación de escritorio para obtener el mejor rendimiento.', + 'rappen_rounding': 'Redondeo de rappen', + 'rappen_rounding_help': 'Cantidad redonda a 5 centimos', + 'check_credentials': 'Verificar credenciales', + 'valid_credentials': 'Las credenciales son válidas', 'invalid_credentials': 'Las credenciales no coinciden con nuestros registros', - 'e_quote': 'E-Quote', - 'e_credit': 'E-Credit', - 'e_purchase_order': 'E-Purchase Order', + 'e_quote': 'Presupuesto Electrónico', + 'e_credit': 'Crédito Electrónico', + 'e_purchase_order': 'Orden de compra electrónica', 'valid_vat_number': 'Número de IVA válido', 'use_available_payments': 'Usar pagos disponibles', 'test_email_sent': 'Correo electrónico enviado correctamente', - 'send_test_email': 'Enviar email de prueba', + 'send_test_email': 'Enviar correo electrónico de prueba', 'gateway_type': 'Tipo de puerta de enlace', 'please_select_an_invoice_or_credit': 'Por favor seleccione una factura o crédito', @@ -98269,7 +100065,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Ventas al cliente', 'tax_summary': 'Resumen de impuestos', 'user_sales': 'Ventas de usuarios', - 'run_template': 'Ejecutar plantilla', + 'run_template': 'Run Template', 'task_extension_banner': 'Añade la extensión de Chrome para gestionar tus tareas', 'watch_video': 'Ver video', @@ -98369,7 +100165,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'routing_id': 'Id. de enrutamiento', 'enable_e_invoice': 'Habilitar E-Factura', 'e_invoice_type': 'Tipo de E-Factura', - 'e_quote_type': 'E-Quote Type', + 'e_quote_type': 'Tipo de presupuesto electrónico', 'reduced_tax': 'Impuesto reducido', 'override_tax': 'Anular impuestos', 'zero_rated': 'Clasificación cero', @@ -98648,7 +100444,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': 'Editar Cuenta Bancaria', 'default_category': 'Categoría por defecto', 'account_type': 'Tipo de cuenta', - 'new_bank_account': 'Add Bank Account', + 'new_bank_account': 'Agregar cuenta bancaria', 'connect_accounts': 'Conectar cuentas', 'manage_rules': 'Administrar Reglas', 'search_category': 'Buscar 1 Categoría', @@ -98933,7 +100729,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Cargar PDF', 'start_free_trial': 'Iniciar prueba gratuita', 'start_free_trial_message': - 'Comience su prueba GRATUITA de 14 días del plan profesional', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Adeudado a la recepción', 'is_paid': 'Está pagado', 'age_group_paid': 'Pagado', @@ -98977,10 +100773,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Débito directo', 'please_set_a_password': 'Establezca una contraseña para la cuenta', 'set_password': 'Establecer Contraseña', - 'recommend_desktop': - 'Recomendamos usar la aplicación de escritorio para obtener el mejor rendimiento', - 'recommend_mobile': - 'Recomendamos usar la aplicación de escritorio para obtener el mejor rendimiento', 'disconnected_gateway': 'Puerta de enlace desconectada con éxito', 'disconnect': 'Desconectar', 'add_to_invoices': 'Agregar a facturas', @@ -99021,7 +100813,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'app': 'App', 'for_best_performance': 'Para obtener el mejor rendimiento, descargue la aplicación :app', - 'gross_line_total': 'Total línea bruto', + 'gross_line_total': 'Total de línea bruto', 'bulk_email_invoices': 'Enviar facturas por correo electrónico', 'bulk_email_quotes': 'Enviar presupuestos por correo electrónico', 'bulk_email_credits': 'Enviar créditos por correo electrónico', @@ -100321,7 +102113,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Grupo archivado correctamente', 'deleted_group': 'Grupo borrado correctamente', 'restored_group': 'Grupo restaurado correctamente', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Cargue el logotipo de su empresa', 'uploaded_logo': 'Logo subido', 'logo': 'Logo', 'saved_settings': 'Ajustes guardados', @@ -100372,7 +102164,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'no_record_selected': 'No se han seleccionado registros', 'error_unsaved_changes': 'Guarda o cancela tus cambios', 'download': 'Descargar', - 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', + 'requires_an_enterprise_plan': 'Requiere un plan empresarial', 'take_picture': 'Tomar foto', 'upload_files': 'Subir archivos', 'document': 'Documento', @@ -100949,6 +102741,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Cargar color del tema', }, 'sv': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Referensprogram', + 'comment': 'Kommentarer', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Tid', + 'format': 'Format', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Avisering om kostnad :expense skickad till :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': 'Dessa uppgifter matchar inte våra register', @@ -100958,7 +102802,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'valid_vat_number': 'Giltigt momsnummer', 'use_available_payments': 'Använd tillgängliga betalningar', 'test_email_sent': 'Skickat e-postmeddelande', - 'send_test_email': 'Skicka test meddelande', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Gateway typ', 'please_select_an_invoice_or_credit': 'Välj en faktura eller kredit', 'mobile_version': 'Mobil version', @@ -100990,7 +102834,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_sales': 'Kundförsäljning', 'tax_summary': 'Skatteöversikt', 'user_sales': 'Användarförsäljning', - 'run_template': 'Kör mall', + 'run_template': 'Run Template', 'task_extension_banner': 'Lägg till Chrome-tillägget för att hantera dina uppgifter', 'watch_video': 'Kolla på video', @@ -101625,7 +103469,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_pdf': 'Ladda PDF', 'start_free_trial': 'Påbörja gratis försöksperiod', 'start_free_trial_message': - 'Starta din GRATIS 14 dagars provversion av proplanen', + 'Start your FREE 14 day trial of the Pro Plan', 'due_on_receipt': 'Förfaller vid mottagandet', 'is_paid': 'Är betalad', 'age_group_paid': 'Betalt', @@ -101670,10 +103514,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direktbetalning', 'please_set_a_password': 'Vänligen ange ett kontolösenord', 'set_password': 'Ange lösenord', - 'recommend_desktop': - 'Vi rekommenderar att du använder skrivbordsappen för bästa prestanda', - 'recommend_mobile': - 'Vi rekommenderar att du använder mobilappen för bästa prestanda', 'disconnected_gateway': 'Gatewayen har kopplats från', 'disconnect': 'Koppla ifrån', 'add_to_invoices': 'Lägg till i fakturor', @@ -101711,7 +103551,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'error_cross_client_expenses': 'Alla kostnader ska tillhöra samma kund', 'app': 'App', 'for_best_performance': 'Ladda ner appen :app för bästa prestanda', - 'gross_line_total': 'Brutto rad totalt', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'E-postfakturor', 'bulk_email_quotes': 'E-post offerter', 'bulk_email_credits': 'E-postkrediter', @@ -102978,7 +104818,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Gruppen har arkiverats', 'deleted_group': 'Gruppen har raderats', 'restored_group': 'Gruppen har återställts', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Logotypen har laddats upp', 'logo': 'Logotyp', 'saved_settings': 'Inställningarna har sparats', @@ -103600,6 +105440,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Ladda färgtema', }, 'th': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Referral Program', + 'comment': 'Comments', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'เวลา', + 'format': 'รูปแบบ', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Expense :expense notification sent to :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': 'ข้อมูลรับรองเหล่านี้ไม่ตรงกับบันทึกของเรา', @@ -103609,7 +105501,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'valid_vat_number': 'Valid VAT Number', 'use_available_payments': 'Use Available Payments', 'test_email_sent': 'Successfully sent email', - 'send_test_email': 'ส่งอีเมล์ทดสอบ', + 'send_test_email': 'Send Test Email', 'gateway_type': 'Gateway Type', 'please_select_an_invoice_or_credit': 'Please select an invoice or credit', @@ -104320,10 +106212,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', 'set_password': 'ตั้งรหัสผ่าน', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', @@ -104361,7 +106249,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Expenses must all belong to the same client', 'app': 'App', 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Gross line total', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'Email Invoices', 'bulk_email_quotes': 'Email Quotes', 'bulk_email_credits': 'Email Credits', @@ -105611,7 +107499,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Successfully archived group', 'deleted_group': 'Successfully deleted group', 'restored_group': 'Successfully restored group', - 'upload_logo': 'Upload Your Company Logo', + 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Successfully uploaded logo', 'logo': 'www', 'saved_settings': 'Successfully saved settings', @@ -106231,6 +108119,58 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'tr_TR': { + 'quote_reminder1': 'First Quote Reminder', + 'before_valid_until': 'Before the valid until', + 'after_valid_until': 'After the valid until', + 'after_quote_date': 'After the quote date', + 'remind_quote': 'Remind Quote', + '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', + 'end_of_month': 'End Of Month', + 'referral_url': 'Referral URL', + 'referral_program': 'Yönlendirme Programı', + 'comment': 'Comments', + 'add_comment': 'Add Comment', + 'added_comment': 'Successfully saved comment', + 'disconnected': 'Disconnected', + 'reconnect': 'Reconnect', + 'e_invoice_settings': 'E-Invoice Settings', + 'calculate': 'Calculate', + 'sum': 'Sum', + 'money': 'Money', + 'time': 'Zaman', + 'format': 'Format', + 'web_app': 'Web App', + 'desktop_app': 'Desktop App', + 'invoice_net_amount': 'Invoice Net Amount', + 'round_to_minutes': 'Round To Minutes', + '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', + 'activity_139': 'Expense :expense notification sent to :contact', + 'activity_140': 'Statement sent to :client', + 'bulk_updated': 'Successfully updated data', + 'bulk_update': 'Bulk Update', + 'advanced_cards': 'Advanced Cards', + 'always_show_required_fields': 'Allows show required fields form', + 'always_show_required_fields_help': + 'Displays the required fields form always at checkout', + 'flutter_web_warning': + 'We recommend using the new web app or the desktop app for the best performance', + 'rappen_rounding': 'Rappen Rounding', + 'rappen_rounding_help': 'Round amount to 5 cents', 'check_credentials': 'Check Credentials', 'valid_credentials': 'Credentials are valid', 'invalid_credentials': 'Bu kimlik bilgileri kayıtlarımızla uyuşmuyor', @@ -106636,7 +108576,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_bank_account': 'Banka Hesabını Düzenle', 'default_category': 'Default Category', 'account_type': 'Account type', - 'new_bank_account': 'New bank account', + 'new_bank_account': 'Add Bank Account', 'connect_accounts': 'Connect Accounts', 'manage_rules': 'Manage Rules', 'search_category': 'Search 1 Category', @@ -106951,10 +108891,6 @@ mixin LocalizationsProvider on LocaleCodeAware { 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', 'set_password': 'Şifreyi belirle', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', @@ -106992,7 +108928,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Expenses must all belong to the same client', 'app': 'App', 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Gross line total', + 'gross_line_total': 'Gross Line Total', 'bulk_email_invoices': 'Email Invoices', 'bulk_email_quotes': 'Email Quotes', 'bulk_email_credits': 'Email Credits', @@ -108297,7 +110233,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'no_record_selected': 'No record selected', 'error_unsaved_changes': 'Please save or cancel your changes', 'download': 'İndir', - 'requires_an_enterprise_plan': 'Requires an enterprise plan', + 'requires_an_enterprise_plan': 'Requires an Enterprise Plan', 'take_picture': 'Take Picture', 'upload_files': 'Upload Files', 'document': 'Document', @@ -115575,6 +117511,10 @@ mixin LocalizationsProvider on LocaleCodeAware { _localizedValues[localeCode]!['after_quote_date'] ?? _localizedValues['en']!['after_quote_date']!; + String get latestRequiresPhpVersion => + _localizedValues[localeCode]!['latest_requires_php_version'] ?? + _localizedValues['en']!['latest_requires_php_version']!; + // STARTER: lang field - do not remove comment String lookup(String? key, {String? overrideLocaleCode}) {