diff --git a/.github/workflows/flatpak.yml b/.github/workflows/flatpak.yml
index e58991e20..463b105ea 100644
--- a/.github/workflows/flatpak.yml
+++ b/.github/workflows/flatpak.yml
@@ -86,7 +86,7 @@ jobs:
draft: false
prerelease: false
title: "Latest Release"
- automatic_release_tag: "v5.0.153"
+ automatic_release_tag: "v5.0.154"
files: |
${{ github.workspace }}/artifacts/Invoice-Ninja-Archive
${{ github.workspace }}/artifacts/Invoice-Ninja-Hash
diff --git a/flatpak/com.invoiceninja.InvoiceNinja.metainfo.xml b/flatpak/com.invoiceninja.InvoiceNinja.metainfo.xml
index 3c0fb28f6..895ac4ffc 100644
--- a/flatpak/com.invoiceninja.InvoiceNinja.metainfo.xml
+++ b/flatpak/com.invoiceninja.InvoiceNinja.metainfo.xml
@@ -50,6 +50,7 @@
+
diff --git a/lib/constants.dart b/lib/constants.dart
index 84c5061e2..998c7f6d1 100644
--- a/lib/constants.dart
+++ b/lib/constants.dart
@@ -6,7 +6,7 @@ class Constants {
}
// TODO remove version once #46609 is fixed
-const String kClientVersion = '5.0.153';
+const String kClientVersion = '5.0.154';
const String kMinServerVersion = '5.0.4';
const String kAppName = 'Invoice Ninja';
diff --git a/lib/ui/app/menu_drawer.dart b/lib/ui/app/menu_drawer.dart
index 3dd1253c2..6b2ea9db6 100644
--- a/lib/ui/app/menu_drawer.dart
+++ b/lib/ui/app/menu_drawer.dart
@@ -1425,7 +1425,12 @@ void _showAbout(BuildContext context) async {
.replaceFirst(':value', state.appVersion));
},
onLongPress: () async {
- if (kReleaseMode) {
+ if (!kReleaseMode && supportsInAppPurchase()) {
+ showDialog(
+ context: context,
+ builder: (context) => UpgradeDialog(),
+ );
+ } else {
showMessageDialog(
message: FLUTTER_VERSION['channel']!.toUpperCase() +
' • ' +
@@ -1436,11 +1441,6 @@ void _showAbout(BuildContext context) async {
onPressed: () => store.dispatch(UserLogout()),
),
]);
- } else {
- showDialog(
- context: context,
- builder: (context) => UpgradeDialog(),
- );
}
},
),
diff --git a/lib/ui/auth/init_screen.dart b/lib/ui/auth/init_screen.dart
index 32c6b8459..c9f6cc664 100644
--- a/lib/ui/auth/init_screen.dart
+++ b/lib/ui/auth/init_screen.dart
@@ -3,6 +3,7 @@ import 'package:flutter/material.dart';
// Package imports:
import 'package:flutter_redux/flutter_redux.dart';
+import 'package:invoiceninja_flutter/utils/localization.dart';
import 'package:redux/redux.dart';
// Project imports:
@@ -12,6 +13,8 @@ import 'package:invoiceninja_flutter/redux/auth/auth_actions.dart';
class InitScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
+ final localization = AppLocalization.of(context)!;
+
return StoreBuilder(
onInit: (Store store) =>
store.dispatch(LoadStateRequest(context)),
@@ -21,9 +24,32 @@ class InitScreen extends StatelessWidget {
child: Column(
mainAxisSize: MainAxisSize.max,
children: [
+ Expanded(child: SizedBox()),
Expanded(
child: Center(child: Image.asset('assets/images/icon.png')),
),
+ Expanded(
+ child: Stack(
+ alignment: Alignment.center,
+ children: [
+ SizedBox(
+ height: 50,
+ width: 100,
+ child: Material(
+ child: ElevatedButton(
+ child: Text(
+ localization.logout.toUpperCase(),
+ style: TextStyle(color: Colors.white),
+ ),
+ onPressed: () {
+ store.dispatch(UserLogout());
+ },
+ ),
+ ),
+ ),
+ ],
+ ),
+ ),
SizedBox(
height: 4.0,
child: LinearProgressIndicator(),
diff --git a/lib/ui/transaction/transaction_presenter.dart b/lib/ui/transaction/transaction_presenter.dart
index d9310d9cb..e22dd1d6c 100644
--- a/lib/ui/transaction/transaction_presenter.dart
+++ b/lib/ui/transaction/transaction_presenter.dart
@@ -77,7 +77,7 @@ class TransactionPresenter extends EntityPresenter {
currencyId: transaction.currencyId)!),
);
case TransactionFields.description:
- return Text(transaction.description);
+ return Text(transaction.formattedDescription);
case TransactionFields.participantName:
return Text(transaction.participantName);
case TransactionFields.participant:
diff --git a/lib/utils/i18n.dart b/lib/utils/i18n.dart
index 1364615ca..2e1554ff5 100644
--- a/lib/utils/i18n.dart
+++ b/lib/utils/i18n.dart
@@ -2634,6 +2634,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'sq': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Host',
+ 'port': 'Port',
+ 'encryption': 'Encryption',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'identifikimi',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -2644,12 +2660,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -2712,7 +2727,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'County',
'tax_details': 'Tax Details',
'activity_10_online':
- ':contact entered payment :payment for invoice :invoice for :client',
+ ':contact made payment :payment for invoice :invoice for :client',
'activity_10_manual':
':user entered payment :payment for invoice :invoice for :client',
'default_payment_type': 'Default Payment Type',
@@ -3334,7 +3349,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'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':
@@ -3844,9 +3859,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',
@@ -4305,7 +4320,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Totali i linjës',
'item': 'Njësi',
'credit_email': 'Credit Email',
- 'iframe_url': 'Webfaqja',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Domain URL',
'password_is_too_short': 'Password is too short',
'password_is_too_easy':
@@ -5183,7 +5198,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',
@@ -5248,6 +5263,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'ar': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'ميركادو باجو',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'تقرير البريد الإلكتروني',
+ 'host': 'يستضيف',
+ 'port': 'ميناء',
+ 'encryption': 'التشفير',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'اسم المستخدم',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -5258,12 +5289,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'اتصال رئيسي',
'all_contacts': 'كل الاتصالات',
'insert_below': 'أدخل أدناه',
- 'aged_receivable_detailed_report': 'تقرير مفصل عن المقبوضات المسنة',
- 'aged_receivable_summary_report': 'تقرير ملخص الذمم المدينة المسنة',
- 'client_balance_report': 'تقرير رصيد العميل',
- 'client_sales_report': 'تقرير مبيعات العملاء',
- 'tax_summary_report': 'تقرير الملخص الضريبي',
- 'user_sales_report': 'تقرير مبيعات المستخدم',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'ملخص الضرائب',
+ 'user_sales': 'User Sales',
'run_template': 'تشغيل القالب',
'task_extension_banner': 'اضافة ملحق Chrome لإدارة مهامك',
'watch_video': 'شاهد الفيديو',
@@ -6889,7 +6919,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'الإجمالي',
'item': 'غرض',
'credit_email': 'البريد الإلكتروني الائتماني',
- 'iframe_url': 'موقع إلكتروني',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'URL المجال',
'password_is_too_short': 'كلمة المرور قصيرة جدا',
'password_is_too_easy': 'يجب أن تحتوي كلمة المرور على أحرف كبيرة ورقم',
@@ -7830,6 +7860,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'تحميل موضوع اللون',
},
'bg': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Host',
+ 'port': 'Порт',
+ 'encryption': 'Криптиране',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Потребителско име',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -7840,12 +7886,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -7908,7 +7953,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'County',
'tax_details': 'Tax Details',
'activity_10_online':
- ':contact entered payment :payment for invoice :invoice for :client',
+ ':contact made payment :payment for invoice :invoice for :client',
'activity_10_manual':
':user entered payment :payment for invoice :invoice for :client',
'default_payment_type': 'Default Payment Type',
@@ -9504,7 +9549,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Обща цена',
'item': 'Продукт',
'credit_email': 'Кредитен е-мейл',
- 'iframe_url': 'Сайт',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Домейн адрес',
'password_is_too_short': 'Паролата е твърде кратка',
'password_is_too_easy': 'Паролата трябва да съдържа главна буква и цифра',
@@ -10452,6 +10497,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'zh_TW': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': '梅爾卡多帕戈',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': '主機',
+ 'port': '埠',
+ 'encryption': '加密',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': '使用者名稱',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -10462,12 +10523,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': '帳齡應收帳款詳細報告',
- 'aged_receivable_summary_report': '帳齡應收帳款總報告',
- 'client_balance_report': '客戶餘額報告',
- 'client_sales_report': '客戶銷售報告',
- 'tax_summary_report': '稅務匯總報告',
- 'user_sales_report': '用戶銷售報告',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': '稅務摘要',
+ 'user_sales': 'User Sales',
'run_template': '運行模板',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -12025,7 +12085,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': '總計',
'item': '品項',
'credit_email': '信用電子郵件',
- 'iframe_url': '網站',
+ 'iframe_url': 'iFrame URL',
'domain_url': '網域網址',
'password_is_too_short': '密碼太短',
'password_is_too_easy': '密碼必須包含大寫字元和數字',
@@ -12940,6 +13000,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': '載入顏色主題',
},
'hr': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Host',
+ 'port': 'Port',
+ 'encryption': 'Encryption',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Korisničko ime',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -12950,12 +13026,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -13018,7 +13093,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'County',
'tax_details': 'Tax Details',
'activity_10_online':
- ':contact entered payment :payment for invoice :invoice for :client',
+ ':contact made payment :payment for invoice :invoice for :client',
'activity_10_manual':
':user entered payment :payment for invoice :invoice for :client',
'default_payment_type': 'Default Payment Type',
@@ -13640,7 +13715,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'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':
@@ -14143,9 +14218,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',
@@ -14607,7 +14682,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Ukupno',
'item': 'Stavka',
'credit_email': 'Credit Email',
- 'iframe_url': 'Web mjesto',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'URL domene',
'password_is_too_short': 'Lozinka je prekratka',
'password_is_too_easy':
@@ -15485,7 +15560,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'credit_number_counter': 'Credit Number Counter',
'reset_counter_date': 'Poništi datum brojača',
'counter_padding': 'Ispuna broja brojača',
- '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',
@@ -15550,6 +15625,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'cs': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Host',
+ 'port': 'Port',
+ 'encryption': 'Šifrování',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Uživatelské jméno',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -15560,12 +15651,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -15628,7 +15718,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'County',
'tax_details': 'Tax Details',
'activity_10_online':
- ':contact entered payment :payment for invoice :invoice for :client',
+ ':contact made payment :payment for invoice :invoice for :client',
'activity_10_manual':
':user entered payment :payment for invoice :invoice for :client',
'default_payment_type': 'Default Payment Type',
@@ -16251,7 +16341,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'disconnected_gateway': 'Successfully disconnected gateway',
'disconnect': 'Odpojit',
'add_to_invoices': 'Přidávat do faktur',
- 'acss': 'Pre-authorized debit payments',
+ 'acss': 'ACSS Debit',
'becs': 'BECS Direct Debit',
'bulk_download': 'Stáhnout',
'persist_data_help':
@@ -17217,7 +17307,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Celkem',
'item': 'Položka',
'credit_email': 'Credit Email',
- 'iframe_url': 'Web',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Domain URL',
'password_is_too_short': 'Password is too short',
'password_is_too_easy':
@@ -18094,7 +18184,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',
@@ -18159,6 +18249,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'da': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Vært',
+ 'port': 'Port',
+ 'encryption': 'Kryptering',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Username',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -18169,14 +18275,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report':
- 'Ældrede Tilgodehavender Detaljeret Rapport',
- 'aged_receivable_summary_report':
- 'Ældrede Tilgodehavender Oversigtsrapport',
- 'client_balance_report': 'Kundesaldorapport',
- 'client_sales_report': 'Kunde salgsrapport',
- 'tax_summary_report': 'Skatteoversigt',
- 'user_sales_report': 'Bruger salgsrapport',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Skatteoversigt',
+ 'user_sales': 'User Sales',
'run_template': 'Kør skabelon',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -19841,7 +19944,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Sum',
'item': 'Produkttype',
'credit_email': 'Kredit e-mail',
- 'iframe_url': 'Website',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Domæne-URL',
'password_is_too_short': 'Adgangskoden er for kort',
'password_is_too_easy':
@@ -20783,6 +20886,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Indlæs farvetema',
},
'nl': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'E-mailrapport',
+ 'host': 'Host',
+ 'port': 'Poort',
+ 'encryption': 'Encryptie',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Gebruikersnaam',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -20793,14 +20912,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report':
- 'Gedetailleerd rapport ouderdomsvorderingen',
- 'aged_receivable_summary_report':
- 'Samenvattend rapport ouderdomsvorderingen',
- 'client_balance_report': 'Klant saldo rapport',
- 'client_sales_report': 'Klant verkoop rapport',
- 'tax_summary_report': 'Fiscaal overzichtsrapport',
- 'user_sales_report': 'Verkooprapport van de gebruiker',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Belastingoverzicht',
+ 'user_sales': 'User Sales',
'run_template': 'Sjabloon uitvoeren',
'task_extension_banner':
'Voeg de Chrome-extensie toe om uw taken te beheren',
@@ -22493,7 +22609,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Totaal',
'item': 'Artikel',
'credit_email': 'Krediet E-mail',
- 'iframe_url': 'Website',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Domein URL',
'password_is_too_short': 'Wachtwoord is te kort',
'password_is_too_easy':
@@ -23443,6 +23559,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Kleurthema laden',
},
'en_GB': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Host',
+ 'port': 'Port',
+ 'encryption': 'Encryption',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Username',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -23453,12 +23585,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -26049,6 +26180,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'et': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Host',
+ 'port': 'Port',
+ 'encryption': 'Krüpteering',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Kasutajanimi',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -26059,12 +26206,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -26127,7 +26273,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'County',
'tax_details': 'Tax Details',
'activity_10_online':
- ':contact entered payment :payment for invoice :invoice for :client',
+ ':contact made payment :payment for invoice :invoice for :client',
'activity_10_manual':
':user entered payment :payment for invoice :invoice for :client',
'default_payment_type': 'Default Payment Type',
@@ -26749,7 +26895,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'disconnected_gateway': 'Successfully disconnected gateway',
'disconnect': 'Disconnect',
'add_to_invoices': 'Add to Invoices',
- 'acss': 'Eelvolitatud deebetmaksed',
+ 'acss': 'ACSS Debit',
'becs': 'BECS otsekorraldus',
'bulk_download': 'Lae alla',
'persist_data_help':
@@ -27256,9 +27402,9 @@ mixin LocalizationsProvider on LocaleCodeAware {
'minimum_under_payment_amount': 'Minimum Under Payment Amount',
'profit': 'Kasum',
'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': 'Testirežiim',
@@ -27718,7 +27864,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Summa',
'item': 'Kirje',
'credit_email': 'Credit Email',
- 'iframe_url': 'Koduleht',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Domeeni URL',
'password_is_too_short': 'Parool on liiga lühike',
'password_is_too_easy': 'Parool peab sisaldama suurtähti ja numbrit',
@@ -28593,7 +28739,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'credit_number_counter': 'Ettemaksu numbri loendur',
'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': 'Vaikimisi maksunimi 1',
'default_tax_rate_1': 'Vaikimisi maksumäär 1',
'default_tax_name_2': 'Vaikimisi maksunimi 2',
@@ -28658,6 +28804,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Laadige värviteema',
},
'fi': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Host',
+ 'port': 'portti',
+ 'encryption': 'Encryption',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Käyttäjätunnus',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -28668,12 +28830,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -28736,7 +28897,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'County',
'tax_details': 'Tax Details',
'activity_10_online':
- ':contact entered payment :payment for invoice :invoice for :client',
+ ':contact made payment :payment for invoice :invoice for :client',
'activity_10_manual':
':user entered payment :payment for invoice :invoice for :client',
'default_payment_type': 'Default Payment Type',
@@ -29359,7 +29520,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'disconnected_gateway': 'Successfully disconnected gateway',
'disconnect': 'Katkaise yhteys',
'add_to_invoices': 'Lisää laskuille',
- 'acss': 'Esihyväksy debit korttimaksut',
+ 'acss': 'ACSS Debit',
'becs': 'BECS Direct Debit',
'bulk_download': 'Lataa',
'persist_data_help':
@@ -29393,7 +29554,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': 'Yhteensä verollinen',
'bulk_email_invoices': 'Email Invoices',
'bulk_email_quotes': 'Email Quotes',
'bulk_email_credits': 'Email Credits',
@@ -29864,9 +30025,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',
@@ -30326,7 +30487,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Rivin summa',
'item': 'Tuote',
'credit_email': 'Credit Email',
- 'iframe_url': 'Verkkosivu',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Domain URL',
'password_is_too_short': 'salasana on liian lyhyt',
'password_is_too_easy': 'Salasanan pitää sisältää iso kirjain ja numero',
@@ -30558,7 +30719,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'credentials': 'Tunnukset',
'update_address': 'Päivitä osoite',
'update_address_help': 'Päivitä asiakkaan osoite annetuilla tiedoilla',
- 'rate': 'Kanta',
+ 'rate': 'À-hinta',
'tax_rate': 'Verokanta',
'new_tax_rate': 'Uusi veromäärä',
'edit_tax_rate': 'Muokkaa verokantaa',
@@ -31203,7 +31364,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',
@@ -31268,6 +31429,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'fr': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Rapport par courrier électronique',
+ 'host': 'Domaine',
+ 'port': 'Port',
+ 'encryption': 'Chiffrement',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Nom d\'utilisateur',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -31278,14 +31455,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Premier contact',
'all_contacts': 'Tous les contacts',
'insert_below': 'Insérer ci-dessous',
- 'aged_receivable_detailed_report':
- 'Rapport détaillé sur les créances chronologiques',
- 'aged_receivable_summary_report':
- 'Rapport récapitulatif des créances chronologiques',
- 'client_balance_report': 'Rapport sur le solde du client',
- 'client_sales_report': 'Rapport de ventes client',
- 'tax_summary_report': 'Rapport sommaire des taxes',
- 'user_sales_report': 'Rapport de ventes utilisateur',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Récapitulatif de taxe',
+ 'user_sales': 'User Sales',
'run_template': 'Exécuter le modèle',
'task_extension_banner':
'Ajoutez l'extension Chrome pour gérer vos tâches',
@@ -33022,7 +33196,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Total',
'item': 'Article',
'credit_email': 'Courriel de crédit',
- 'iframe_url': 'Site internet',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'URL du domaine',
'password_is_too_short': 'Mot de passe trop court',
'password_is_too_easy':
@@ -33983,7 +34157,23 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Charger le thème de couleur',
},
'fr_CA': {
- 'participant_name': 'Participant name',
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Envoyer le rapport',
+ 'host': 'Hôte',
+ 'port': 'Port',
+ 'encryption': 'Cryptage',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Nom d\'utilisateur',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
+ 'participant_name': 'Nom du participant',
'yodlee_regions': 'Régions: USA, Royaume-Uni, Australie et Inde',
'nordigen_regions': 'Régions: Europe et Royaume-Uni',
'select_provider': 'Sélectionner le fournisseur',
@@ -33993,14 +34183,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Contact principal',
'all_contacts': 'Tous les contacts',
'insert_below': 'Insérer ci-dessous',
- 'aged_receivable_detailed_report':
- 'Rapport détaillé des comptes à recevoir',
- 'aged_receivable_summary_report':
- 'Rapport sommaire des comptes à recevoir',
- 'client_balance_report': 'Rapport du solde de client',
- 'client_sales_report': 'Rapport de vente par client',
- 'tax_summary_report': 'Rapport sommaire de taxes',
- 'user_sales_report': 'Rapport de vente par utilisateur',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Sommaire de taxes',
+ 'user_sales': 'User Sales',
'run_template': 'Exécuter le modèle',
'task_extension_banner':
'Ajouter l\'extension Chrome pour gérer vos tâches',
@@ -34774,7 +34961,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'last_sent_date': 'Date du dernier envoi',
'include_drafts': 'Inclure les brouillons',
'include_drafts_help':
- 'Inclure les enregistrements e brouillons dans les rapports',
+ 'Inclure les enregistrements en brouillons dans les rapports',
'is_invoiced': 'Est facturé',
'change_plan': 'Gestion du plan',
'persist_data': 'Données persistantes',
@@ -35716,7 +35903,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Total',
'item': 'Article',
'credit_email': 'Courriel pour le crédit',
- 'iframe_url': 'Site web',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'URL de domaine',
'password_is_too_short': 'Le mot de passe est trop court',
'password_is_too_easy':
@@ -36670,6 +36857,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Charger le thème de couleurs',
},
'fr_CH': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Rapport par courrier électronique',
+ 'host': 'Hôte',
+ 'port': 'Port',
+ 'encryption': 'Cryptage',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Nom d\'utilisateur',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -36680,14 +36883,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Premier contact',
'all_contacts': 'Tous les contacts',
'insert_below': 'Insérer ci-dessous',
- 'aged_receivable_detailed_report':
- 'Rapport détaillé sur les créances chronologiques',
- 'aged_receivable_summary_report':
- 'Rapport récapitulatif des créances chronologiques',
- 'client_balance_report': 'Rapport sur le solde du client',
- 'client_sales_report': 'Rapport de ventes client',
- 'tax_summary_report': 'Rapport récapitulatif des taxes',
- 'user_sales_report': 'Rapport de ventes utilisateur',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Récapitulatif fiscal',
+ 'user_sales': 'User Sales',
'run_template': 'Exécuter le modèle',
'task_extension_banner':
'Ajoutez l'extension Chrome pour gérer vos tâches',
@@ -38402,7 +38602,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Total',
'item': 'Article',
'credit_email': 'Courriel pour le crédit',
- 'iframe_url': 'Site web',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'URL de domaine',
'password_is_too_short': 'Le mot de passe est trop court',
'password_is_too_easy':
@@ -39368,6 +39568,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'de': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'E-Mail-Bericht',
+ 'host': 'Host',
+ 'port': 'Port',
+ 'encryption': 'Verschlüsselung',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Benutzername',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -39378,14 +39594,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primärkontakt',
'all_contacts': 'Alle Kontakte',
'insert_below': 'Darunter einfügen',
- 'aged_receivable_detailed_report':
- 'Ausführlicher Bericht über gealterte Forderungen',
- 'aged_receivable_summary_report':
- 'Zusammenfassender Bericht über gealterte Forderungen',
- 'client_balance_report': 'Kontostandsbericht des Kunden',
- 'client_sales_report': 'Kundenverkaufsbericht',
- 'tax_summary_report': 'Zusammenfassender Steuerbericht',
- 'user_sales_report': 'Benutzerverkaufsbericht',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Steuerzusammenfassung',
+ 'user_sales': 'User Sales',
'run_template': 'Template anwenden',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Video ansehen',
@@ -41117,7 +41330,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Summe',
'item': 'Artikel',
'credit_email': 'Gutschrift E-Mail',
- 'iframe_url': 'Webseite',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Domain-URL',
'password_is_too_short': 'Das Passwort ist zu kurz',
'password_is_too_easy':
@@ -42078,6 +42291,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'lade Farbschema',
},
'el': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Εξυπηρετητής',
+ 'port': 'Πόρτα',
+ 'encryption': 'Κρυπτογράφηση',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Όνομα Χρήστη',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -42088,12 +42317,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -42156,7 +42384,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'County',
'tax_details': 'Tax Details',
'activity_10_online':
- ':contact entered payment :payment for invoice :invoice for :client',
+ ':contact made payment :payment for invoice :invoice for :client',
'activity_10_manual':
':user entered payment :payment for invoice :invoice for :client',
'default_payment_type': 'Default Payment Type',
@@ -42779,7 +43007,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'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':
@@ -43305,10 +43533,10 @@ mixin LocalizationsProvider on LocaleCodeAware {
'minimum_under_payment_amount': 'Ελάχιστο Ποσό Υποπληρωμής',
'profit': 'Κέρδος',
'line_item': 'Προϊόν Γραμμής',
- 'allow_over_payment': 'Επιτρέψτε Υπερπληρωμή',
+ 'allow_over_payment': 'Allow Overpayment',
'allow_over_payment_help':
'Υποστήριξη της επιπλεόν πληρωμής για να δέχεστε φιλοδορήματα',
- 'allow_under_payment': 'Επιτρέψτε Υποπληρωμή',
+ 'allow_under_payment': 'Allow Underpayment',
'allow_under_payment_help':
'Υποστήριξη εξόφλησης κατ\' ελάχιστο του μερικού ποσού',
'test_mode': 'Περιβάλλον Τεστ',
@@ -43773,7 +44001,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Αξία',
'item': 'Προϊόν',
'credit_email': 'Πιστωτικό μήνυμα ηλεκτρονικού ταχυδρομείου',
- 'iframe_url': 'Ιστοσελίδα',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Σύνδεσμος URL',
'password_is_too_short': 'Ο κωδικός πρόσβασης είναι πολύ μικρός',
'password_is_too_easy':
@@ -44668,7 +44896,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'credit_number_counter': 'Μετρητής Αριθμών πιστωτικών',
'reset_counter_date': 'Μηδενισμός Μετρητή Ημερομηνίας',
'counter_padding': 'Αντισταθμιστής',
- 'shared_invoice_quote_counter': 'Share Invoice Quote Counter',
+ 'shared_invoice_quote_counter': 'Share Invoice/Quote Counter',
'default_tax_name_1': 'Προεπιλεγμένη ονομασία φορολογικού συντελεστή 1',
'default_tax_rate_1': 'Προεπιλεγμένος φορολογικός συντελεστής 1',
'default_tax_name_2': 'Προεπιλεγμένη ονομασία φορολογικού συντελεστή 2',
@@ -44733,6 +44961,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'he': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'מרקדו פאגו',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'דוא"ל דו"ח',
+ 'host': 'Host',
+ 'port': 'Port',
+ 'encryption': 'Encryption',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'שם משתמש',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -44743,12 +44987,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'דוח מפורט של זקנים',
- 'aged_receivable_summary_report': 'דוח סיכום חובות זקנים',
- 'client_balance_report': 'דוח יתרת לקוחות',
- 'client_sales_report': 'דוח מכירת לקוחות',
- 'tax_summary_report': 'דוח סיכום מס',
- 'user_sales_report': 'דוח מכירת משתמשים',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'סיכום מס',
+ 'user_sales': 'User Sales',
'run_template': 'הפעל תבנית',
'task_extension_banner':
'הוסף את התוסף של Chrome כדי לנהל את המשימות שלך',
@@ -46356,7 +46599,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'סה\'כ',
'item': 'פריט',
'credit_email': 'אימייל אשראי',
- 'iframe_url': 'אתר אינטרנט',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'כתובת הדומיין',
'password_is_too_short': 'הסיסמה קצרה מדי',
'password_is_too_easy': 'הסיסמה חייבת להכיל תו גדול ומספר',
@@ -47290,6 +47533,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'טען ערכת נושא צבע',
},
'hu': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Jelentés e-mailben',
+ 'host': 'Host',
+ 'port': 'Port',
+ 'encryption': 'Titkosítás',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Felhasználónév',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -47300,13 +47559,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'öregedő követelés részletes jelentés',
- 'aged_receivable_summary_report':
- 'öregedő követelés összesített jelentés',
- 'client_balance_report': 'ügyfél egyenleg jelentés',
- 'client_sales_report': 'ügyfél értékesítési jelentés',
- 'tax_summary_report': 'adóösszegzés jelentés',
- 'user_sales_report': 'felhasználói értékesítési jelentés',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'adóösszegzés',
+ 'user_sales': 'User Sales',
'run_template': 'Sablon futtatása',
'task_extension_banner':
'Adja hozzá a Chrome-bővítményt a feladatok kezeléséhez',
@@ -48924,7 +49181,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Sor összege',
'item': 'Elem',
'credit_email': 'Hitel e-mail',
- 'iframe_url': 'Beágyazott weboldal URL',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Domain URL',
'password_is_too_short': 'A jelszó túl rövid',
'password_is_too_easy': 'A jelszó túl egyszerű.',
@@ -49872,6 +50129,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Szín téma betöltése',
},
'it': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercato Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'rapporto email',
+ 'host': 'Host',
+ 'port': 'Porta',
+ 'encryption': 'Crittografia',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Username',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -49882,12 +50155,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Rapporto dettagliato crediti scaduti',
- 'aged_receivable_summary_report': 'Rapporto di riepilogo crediti scaduti',
- 'client_balance_report': 'Rapporto sul saldo del cliente',
- 'client_sales_report': 'Rapporto sulle vendite dei clienti',
- 'tax_summary_report': 'Rapporto riepilogativo fiscale',
- 'user_sales_report': 'Rapporto sulle vendite degli utenti',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Riepilogo fiscale',
+ 'user_sales': 'User Sales',
'run_template': 'Esegui modello',
'task_extension_banner':
'Aggiungi l'estensione Chrome per gestire le tue attività',
@@ -51595,7 +51867,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Totale riga',
'item': 'Articolo',
'credit_email': 'Email credito',
- 'iframe_url': 'Website',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'URL dominio',
'password_is_too_short': 'La password è troppo corta',
'password_is_too_easy':
@@ -52559,6 +52831,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Carica tema colore',
},
'ja': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Host',
+ 'port': 'Port',
+ 'encryption': 'Encryption',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'ユーザ名',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -52569,12 +52857,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -52637,7 +52924,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'County',
'tax_details': 'Tax Details',
'activity_10_online':
- ':contact entered payment :payment for invoice :invoice for :client',
+ ':contact made payment :payment for invoice :invoice for :client',
'activity_10_manual':
':user entered payment :payment for invoice :invoice for :client',
'default_payment_type': 'Default Payment Type',
@@ -53257,7 +53544,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'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':
@@ -53749,9 +54036,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',
@@ -54207,7 +54494,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Line Total',
'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':
@@ -55083,7 +55370,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',
@@ -55148,6 +55435,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'km_KH': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'របាយការណ៍អ៊ីមែល',
+ 'host': 'ម្ចាស់ផ្ទះ',
+ 'port': 'ច្រក',
+ 'encryption': 'ការអ៊ិនគ្រីប',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'ឈ្មោះអ្នកប្រើប្រាស់',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -55158,12 +55461,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'របាយការណ៍លម្អិតនៃអ្នកទទួលដែលមានអាយុ',
- 'aged_receivable_summary_report': 'របាយការណ៍សង្ខេបនៃអ្នកទទួលដែលមានអាយុ',
- 'client_balance_report': 'របាយការណ៍សមតុល្យអតិថិជន',
- 'client_sales_report': 'របាយការណ៍លក់របស់អតិថិជន',
- 'tax_summary_report': 'របាយការណ៍សង្ខេបពន្ធ',
- 'user_sales_report': 'របាយការណ៍លក់អ្នកប្រើប្រាស់',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'សង្ខេបពន្ធ',
+ 'user_sales': 'User Sales',
'run_template': 'ដំណើរការគំរូ',
'task_extension_banner':
'បន្ថែមផ្នែកបន្ថែម Chrome ដើម្បីគ្រប់គ្រងកិច្ចការរបស់អ្នក។',
@@ -56833,7 +57135,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'ជួរសរុប',
'item': 'ធាតុ',
'credit_email': 'អ៊ីមែលឥណទាន',
- 'iframe_url': 'គេហទំព័រ',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'URL ដែន',
'password_is_too_short': 'ពាក្យសម្ងាត់ខ្លីពេក',
'password_is_too_easy': 'ពាក្យសម្ងាត់ត្រូវតែមានអក្សរធំ និងលេខ',
@@ -57780,6 +58082,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'ផ្ទុកស្បែកពណ៌',
},
'lo_LA': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'ລາຍງານອີເມວ',
+ 'host': 'ເຈົ້າພາບ',
+ 'port': 'ພອດ',
+ 'encryption': 'ການເຂົ້າລະຫັດ',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'ຊື່ຜູ້ໃຊ້',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -57790,12 +58108,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'ການຕິດຕໍ່ຕົ້ນຕໍ',
'all_contacts': 'ຕິດຕໍ່ພົວພັນທັງໝົດ',
'insert_below': 'ໃສ່ທາງລຸ່ມ',
- 'aged_receivable_detailed_report': 'ລາຍງານລາຍລະອຽດຜູ້ຮັບຜູ້ສູງອາຍຸ',
- 'aged_receivable_summary_report': 'ບົດລາຍງານສະຫຼຸບສັງລວມຜູ້ສູງອາຍຸ',
- 'client_balance_report': 'ບົດລາຍງານຍອດເງິນຂອງລູກຄ້າ',
- 'client_sales_report': 'ບົດລາຍງານການຂາຍຂອງລູກຄ້າ',
- 'tax_summary_report': 'ບົດລາຍງານສະຫຼຸບອາກອນ',
- 'user_sales_report': 'ບົດລາຍງານການຂາຍຜູ້ໃຊ້',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'ສະຫຼຸບອາກອນ',
+ 'user_sales': 'User Sales',
'run_template': 'ແລ່ນແມ່ແບບ',
'task_extension_banner':
'ເພີ່ມສ່ວນຂະຫຍາຍຂອງ Chrome ເພື່ອຈັດການວຽກຂອງເຈົ້າ',
@@ -59420,7 +59737,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'ລວມແຖວ',
'item': 'ລາຍການ',
'credit_email': 'ອີເມລ໌ສິນເຊື່ອ',
- 'iframe_url': 'ເວັບໄຊທ໌',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'ໂດເມນ URL',
'password_is_too_short': 'ລະຫັດຜ່ານສັ້ນເກີນໄປ',
'password_is_too_easy': 'ລະຫັດຜ່ານຕ້ອງມີຕົວອັກສອນຕົວພິມໃຫຍ່ ແລະຕົວເລກ',
@@ -60359,6 +60676,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'lv_LV': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Host',
+ 'port': 'Port',
+ 'encryption': 'Encryption',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Username',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -60369,12 +60702,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -60437,7 +60769,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'County',
'tax_details': 'Tax Details',
'activity_10_online':
- ':contact entered payment :payment for invoice :invoice for :client',
+ ':contact made payment :payment for invoice :invoice for :client',
'activity_10_manual':
':user entered payment :payment for invoice :invoice for :client',
'default_payment_type': 'Default Payment Type',
@@ -61059,7 +61391,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'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':
@@ -61562,9 +61894,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',
@@ -62023,7 +62355,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Pozīcija kopā',
'item': 'Pozīcija',
'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':
@@ -62901,7 +63233,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',
@@ -62966,6 +63298,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'lt': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Host',
+ 'port': 'Port',
+ 'encryption': 'Encryption',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Username',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -62976,12 +63324,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -63044,7 +63391,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'County',
'tax_details': 'Tax Details',
'activity_10_online':
- ':contact entered payment :payment for invoice :invoice for :client',
+ ':contact made payment :payment for invoice :invoice for :client',
'activity_10_manual':
':user entered payment :payment for invoice :invoice for :client',
'default_payment_type': 'Default Payment Type',
@@ -63666,7 +64013,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'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':
@@ -64169,9 +64516,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',
@@ -64630,7 +64977,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Suma',
'item': 'Prekė/Paslauga',
'credit_email': 'Credit Email',
- 'iframe_url': 'Tinklapis',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Domain URL',
'password_is_too_short': 'Password is too short',
'password_is_too_easy':
@@ -65508,7 +65855,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',
@@ -65573,6 +65920,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'mk_MK': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Хост',
+ 'port': 'Порта',
+ 'encryption': 'Енкрипција',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Корисничко име',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -65583,12 +65946,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -65651,7 +66013,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'County',
'tax_details': 'Tax Details',
'activity_10_online':
- ':contact entered payment :payment for invoice :invoice for :client',
+ ':contact made payment :payment for invoice :invoice for :client',
'activity_10_manual':
':user entered payment :payment for invoice :invoice for :client',
'default_payment_type': 'Default Payment Type',
@@ -66273,7 +66635,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'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':
@@ -66779,9 +67141,9 @@ mixin LocalizationsProvider on LocaleCodeAware {
'minimum_under_payment_amount': 'Minimum Under Payment Amount',
'profit': 'Профит',
'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',
@@ -67240,7 +67602,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Вкупно',
'item': 'Ставка',
'credit_email': 'Credit Email',
- 'iframe_url': 'Веб страна',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Domain URL',
'password_is_too_short': 'Password is too short',
'password_is_too_easy':
@@ -68119,7 +68481,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',
@@ -68184,6 +68546,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'nb_NO': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Tjener',
+ 'port': 'Port',
+ 'encryption': 'Kryptering',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Brukernavn',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -68194,12 +68572,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -68262,7 +68639,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'County',
'tax_details': 'Tax Details',
'activity_10_online':
- ':contact entered payment :payment for invoice :invoice for :client',
+ ':contact made payment :payment for invoice :invoice for :client',
'activity_10_manual':
':user entered payment :payment for invoice :invoice for :client',
'default_payment_type': 'Default Payment Type',
@@ -68884,7 +69261,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'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':
@@ -69387,9 +69764,9 @@ mixin LocalizationsProvider on LocaleCodeAware {
'minimum_under_payment_amount': 'Minimum Under Payment Amount',
'profit': 'Fortjeneste',
'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',
@@ -69848,7 +70225,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Sum',
'item': 'Produkt',
'credit_email': 'Credit Email',
- 'iframe_url': 'Nettside',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Domain URL',
'password_is_too_short': 'Password is too short',
'password_is_too_easy':
@@ -70726,7 +71103,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',
@@ -70791,6 +71168,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'fa': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Host',
+ 'port': 'Port',
+ 'encryption': 'Encryption',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Username',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -70801,12 +71194,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -70869,7 +71261,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'County',
'tax_details': 'Tax Details',
'activity_10_online':
- ':contact entered payment :payment for invoice :invoice for :client',
+ ':contact made payment :payment for invoice :invoice for :client',
'activity_10_manual':
':user entered payment :payment for invoice :invoice for :client',
'default_payment_type': 'Default Payment Type',
@@ -71491,7 +71883,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'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':
@@ -71994,9 +72386,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',
@@ -72455,7 +72847,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'خط کل',
'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':
@@ -73332,7 +73724,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',
@@ -73397,6 +73789,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'pl': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Host',
+ 'port': 'Port',
+ 'encryption': 'Szyfrowanie',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Użytkownik',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -73407,12 +73815,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -73475,7 +73882,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'County',
'tax_details': 'Tax Details',
'activity_10_online':
- ':contact entered payment :payment for invoice :invoice for :client',
+ ':contact made payment :payment for invoice :invoice for :client',
'activity_10_manual':
':user entered payment :payment for invoice :invoice for :client',
'default_payment_type': 'Default Payment Type',
@@ -74099,7 +74506,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'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': 'Pobierz',
'persist_data_help':
@@ -74604,9 +75011,9 @@ mixin LocalizationsProvider on LocaleCodeAware {
'minimum_under_payment_amount': 'Minimalna kwota niedopłaty',
'profit': 'Zysk',
'line_item': 'Element na liście',
- 'allow_over_payment': 'Zezwalaj na nadpłatę',
+ 'allow_over_payment': 'Allow Overpayment',
'allow_over_payment_help': 'Akceptuj płacenie napiwków',
- 'allow_under_payment': 'Zezwalaj na niedopłatę',
+ 'allow_under_payment': 'Allow Underpayment',
'allow_under_payment_help':
'Support paying at minimum the partial/deposit amount',
'test_mode': 'Tryb testowy',
@@ -75065,7 +75472,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Wartość pozycji',
'item': 'Pozycja',
'credit_email': 'Credit Email',
- 'iframe_url': 'Strona internetowa',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Adres URL domeny',
'password_is_too_short': 'Hasło jest zbyt krótkie',
'password_is_too_easy':
@@ -75848,7 +76255,8 @@ mixin LocalizationsProvider on LocaleCodeAware {
'activity_17': ':user usunął notę kredytową :credit',
'activity_18': ':user stworzył ofertę :quote',
'activity_19': ':user zakatualizował ofertę :quote',
- 'activity_20': ':user emailed quote :quote for :client to :contact',
+ 'activity_20':
+ ':user Wycena wysłana e-mailem :quote dla :client do :contact',
'activity_21': ':contact wyświetlił ofertę :quote',
'activity_22': ':user zarchiwizował ofertę :quote',
'activity_23': ':user usunął ofertę :quote',
@@ -75944,7 +76352,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',
@@ -76009,6 +76417,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'pt_BR': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Relatório por e-mail',
+ 'host': 'Servidor',
+ 'port': 'Porta',
+ 'encryption': 'Encriptação',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Usuário',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -76019,14 +76443,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report':
- 'Relatório detalhado de contas a receber antigas',
- 'aged_receivable_summary_report':
- 'Relatório resumido de contas a receber antigas',
- 'client_balance_report': 'Relatório de saldo do cliente',
- 'client_sales_report': 'Relatório de vendas do cliente',
- 'tax_summary_report': 'Relatório de resumo fiscal',
- 'user_sales_report': 'Relatório de vendas do usuário',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Resumo fiscal',
+ 'user_sales': 'User Sales',
'run_template': 'Executar modelo',
'task_extension_banner':
'Adicione a extensão do Chrome para gerenciar suas tarefas',
@@ -77722,7 +78143,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Total da Linha',
'item': 'Item',
'credit_email': 'E-mail de Crédito',
- 'iframe_url': 'Website',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'URL do Domínio',
'password_is_too_short': 'A senha é muito curta',
'password_is_too_easy':
@@ -78673,6 +79094,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Carregar tema de cores',
},
'pt_PT': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Relatório por e-mail',
+ 'host': 'Servidor',
+ 'port': 'Porta',
+ 'encryption': 'Encriptação',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Utilizador',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -78683,14 +79120,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report':
- 'Relatório Detalhado de Recebíveis Antigos',
- 'aged_receivable_summary_report':
- 'Relatório resumido de recebíveis antigos',
- 'client_balance_report': 'Relatório de saldo do cliente',
- 'client_sales_report': 'Relatório de vendas do cliente',
- 'tax_summary_report': 'Relatório de resumo fiscal',
- 'user_sales_report': 'Relatório de vendas do usuário',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Resumo do imposto',
+ 'user_sales': 'User Sales',
'run_template': 'Executar modelo',
'task_extension_banner':
'Adicione a extensão do Chrome para gerenciar suas tarefas',
@@ -80386,7 +80820,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Total',
'item': 'Produto',
'credit_email': 'E-mail de Crédito',
- 'iframe_url': 'Site',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'URL do Domínio',
'password_is_too_short': 'A senha é muito curta',
'password_is_too_easy':
@@ -81343,6 +81777,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Carregar tema de cores',
},
'ro': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Gazdă',
+ 'port': 'Port',
+ 'encryption': 'Criptare',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Nume de utilizator',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -81353,12 +81803,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -81421,7 +81870,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'County',
'tax_details': 'Tax Details',
'activity_10_online':
- ':contact entered payment :payment for invoice :invoice for :client',
+ ':contact made payment :payment for invoice :invoice for :client',
'activity_10_manual':
':user entered payment :payment for invoice :invoice for :client',
'default_payment_type': 'Default Payment Type',
@@ -82069,7 +82518,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'disconnected_gateway': 'Calea de acces a fost deconectată cu succes',
'disconnect': 'Deconectat(ă)',
'add_to_invoices': 'Adăugați în facturi',
- 'acss': 'Plăți debit autorizate în avans',
+ 'acss': 'ACSS Debit',
'becs': 'BECS Direct Debit',
'bulk_download': 'Descărcați',
'persist_data_help':
@@ -82607,10 +83056,10 @@ mixin LocalizationsProvider on LocaleCodeAware {
'minimum_under_payment_amount': 'Sumă minimă de plată',
'profit': 'Profit',
'line_item': 'Linie de articol',
- 'allow_over_payment': 'Permiteți supraplata',
+ 'allow_over_payment': 'Allow Overpayment',
'allow_over_payment_help':
'Permiteți plăți extra pentru a putea accepta bacșiș',
- 'allow_under_payment': 'Acceptați sub plata',
+ 'allow_under_payment': 'Allow Underpayment',
'allow_under_payment_help':
'Permiteți plata minimă a sumelor parțiale/depozitate',
'test_mode': 'Mod de test',
@@ -83077,7 +83526,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Total linie',
'item': 'Element',
'credit_email': 'Email de credit',
- 'iframe_url': 'Website',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'URL domeniu',
'password_is_too_short': 'Parola este prea scurtă',
'password_is_too_easy':
@@ -83972,7 +84421,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'credit_number_counter': 'Contor număr credit',
'reset_counter_date': 'Resetați dată contor',
'counter_padding': 'Completare contor',
- 'shared_invoice_quote_counter': 'Share Invoice Quote Counter',
+ 'shared_invoice_quote_counter': 'Share Invoice/Quote Counter',
'default_tax_name_1': 'Nume taxă implicit 1',
'default_tax_rate_1': 'Cotă taxă implicită 1',
'default_tax_name_2': 'Nume taxă implicit 2',
@@ -84037,6 +84486,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Schemă de culori încărcare',
},
'ru_RU': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Хост',
+ 'port': 'Порт',
+ 'encryption': 'Шифрование',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Username',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -84047,12 +84512,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -84115,7 +84579,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'County',
'tax_details': 'Tax Details',
'activity_10_online':
- ':contact entered payment :payment for invoice :invoice for :client',
+ ':contact made payment :payment for invoice :invoice for :client',
'activity_10_manual':
':user entered payment :payment for invoice :invoice for :client',
'default_payment_type': 'Default Payment Type',
@@ -84737,7 +85201,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'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':
@@ -85240,9 +85704,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',
@@ -85701,7 +86165,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Всего',
'item': 'Название',
'credit_email': 'Credit Email',
- 'iframe_url': 'Веб-сайт',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Domain URL',
'password_is_too_short': 'Password is too short',
'password_is_too_easy':
@@ -86579,7 +87043,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',
@@ -86644,6 +87108,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'sr': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Host',
+ 'port': 'Port',
+ 'encryption': 'Enkripcija',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Korisničko ime',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -86654,12 +87134,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -86722,7 +87201,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'County',
'tax_details': 'Tax Details',
'activity_10_online':
- ':contact entered payment :payment for invoice :invoice for :client',
+ ':contact made payment :payment for invoice :invoice for :client',
'activity_10_manual':
':user entered payment :payment for invoice :invoice for :client',
'default_payment_type': 'Default Payment Type',
@@ -87344,7 +87823,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'disconnected_gateway': 'Successfully disconnected gateway',
'disconnect': 'Disconnect',
'add_to_invoices': 'Add to Invoices',
- 'acss': 'Debitna plaćanja po prethodnom ovlašćenju',
+ 'acss': 'ACSS Debit',
'becs': 'BECS direktno zaduživanje',
'bulk_download': 'Download',
'persist_data_help':
@@ -87848,10 +88327,10 @@ mixin LocalizationsProvider on LocaleCodeAware {
'minimum_under_payment_amount': 'Minimalni iznos plaćanja',
'profit': 'Zarada',
'line_item': 'Stavka',
- 'allow_over_payment': 'Dozvoli preplatu',
+ 'allow_over_payment': 'Allow Overpayment',
'allow_over_payment_help':
'Podržite dodatno plaćanje za prihvatanje saveta',
- 'allow_under_payment': 'Allow Under Payment',
+ 'allow_under_payment': 'Allow Underpayment',
'allow_under_payment_help':
'Podrška plaćanja delimičnog minimalnog iznosa /depozita',
'test_mode': 'Način testiranja',
@@ -88313,7 +88792,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Ukupno',
'item': 'Stavka',
'credit_email': 'E-pošta za kreditiranje',
- 'iframe_url': 'Sajt',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Domen URL',
'password_is_too_short': 'Lozinka je prekratka',
'password_is_too_easy': 'Lozinka mora da sadrži veliko slovo i broj',
@@ -89194,7 +89673,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'credit_number_counter': 'Brojač broja kredita',
'reset_counter_date': 'Ponovo podesite datum brojača',
'counter_padding': 'Ispuna ispred broja brojača',
- 'shared_invoice_quote_counter': 'Share Invoice Quote Counter',
+ 'shared_invoice_quote_counter': 'Share Invoice/Quote Counter',
'default_tax_name_1': 'Podrazumevani naziv poreza 1',
'default_tax_rate_1': 'Podrazumevana poreska stopa 1',
'default_tax_name_2': 'Podrazumevani naziv poreza 2',
@@ -89259,6 +89738,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'sk': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'E-mailová správa',
+ 'host': 'Hostiteľ',
+ 'port': 'Port',
+ 'encryption': 'Šifrovanie',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Meno používateľa',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -89269,14 +89764,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report':
- 'Podrobná správa o starnutej pohľadávke',
- 'aged_receivable_summary_report':
- 'Súhrnná správa o starnutých pohľadávkach',
- 'client_balance_report': 'Správa o stave zákazníkov',
- 'client_sales_report': 'Správa o predaji zákazníkov',
- 'tax_summary_report': 'Súhrnný prehľad daní',
- 'user_sales_report': 'Prehľad predaja používateľov',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Súhrn dane',
+ 'user_sales': 'User Sales',
'run_template': 'Spustiť šablónu',
'task_extension_banner':
'Ak chcete spravovať svoje úlohy, pridajte si rozšírenie pre Chrome',
@@ -90957,7 +91449,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Spolu',
'item': 'Položka',
'credit_email': 'Kreditný email',
- 'iframe_url': 'Webová lokalita',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Adresa URL domény',
'password_is_too_short': 'Heslo je príliš krátke',
'password_is_too_easy': 'Heslo musí obsahovať veľké písmeno a číslo',
@@ -91900,6 +92392,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Načítať farebný motív',
},
'sl': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Gostitelj',
+ 'port': 'Vrata',
+ 'encryption': 'Enkripcija',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Uporabniško ime',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -91910,12 +92418,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -93569,7 +94076,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Skupaj',
'item': 'Postavka',
'credit_email': 'Credit Email',
- 'iframe_url': 'Spletna stran',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Domain URL',
'password_is_too_short': 'Password is too short',
'password_is_too_easy':
@@ -94514,24 +95021,37 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Naloži barvno shemo',
},
'es': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'mercado pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Informe por correo electrónico',
+ 'host': 'Servidor',
+ 'port': 'Puerto',
+ 'encryption': 'Encripción',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Usuario',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
- 'yodlee_regions': 'Regions: USA, UK, Australia & India',
- 'nordigen_regions': 'Regions: Europe & UK',
- 'select_provider': 'Select Provider',
- 'payment_type_credit': 'Payment Type Credit',
- 'payment_type_debit': 'Payment Type Debit',
- 'send_emails_to': 'Send Emails To',
- 'primary_contact': 'Primary Contact',
- 'all_contacts': 'All Contacts',
- 'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report':
- 'Informe detallado de cuentas por cobrar vencidas',
- 'aged_receivable_summary_report':
- 'Informe resumido de cuentas por cobrar antiguas',
- 'client_balance_report': 'Informe de saldo de clientes',
- 'client_sales_report': 'informe de ventas de clientes',
- 'tax_summary_report': 'Informe resumido de impuestos',
- 'user_sales_report': 'Informe de ventas de usuarios',
+ 'yodlee_regions': 'Regiones: EE. UU., Reino Unido, Australia e India',
+ 'nordigen_regions': 'Regiones: Europa y Reino Unido',
+ 'select_provider': 'Seleccionar Proveedor',
+ 'payment_type_credit': 'Tipo de pago Crédito',
+ 'payment_type_debit': 'Tipo de pago Débito',
+ 'send_emails_to': 'Enviar mensajes de correo electrónico a',
+ 'primary_contact': 'Contacto primario',
+ 'all_contacts': 'Todos los contactos',
+ 'insert_below': 'Insertar abajo',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Resumen de impuestos',
+ 'user_sales': 'User Sales',
'run_template': 'Ejecutar plantilla',
'task_extension_banner':
'Añade la extensión de Chrome para gestionar tus tareas',
@@ -94596,7 +95116,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'Condado',
'tax_details': 'Detalles de impuestos',
'activity_10_online':
- ':contact made payment :payment for invoice :invoice for :client',
+ ':contact realizó el pago :payment de la factura :invoice de :client',
'activity_10_manual':
':user ingresó el pago :payment para la factura :invoice para :client',
'default_payment_type': 'Tipo de pago predeterminado',
@@ -96240,7 +96760,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Total',
'item': 'Concepto',
'credit_email': 'Correo electrónico de crédito',
- 'iframe_url': 'Sitio Web',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'URL de dominio',
'password_is_too_short': 'La contraseña es demasiado corta',
'password_is_too_easy':
@@ -97202,24 +97722,37 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Cargar tema de color',
},
'es_ES': {
- 'participant_name': 'Participant name',
- 'yodlee_regions': 'Regions: USA, UK, Australia & India',
- 'nordigen_regions': 'Regions: Europe & UK',
- 'select_provider': 'Select Provider',
- 'payment_type_credit': 'Payment Type Credit',
- 'payment_type_debit': 'Payment Type Debit',
- 'send_emails_to': 'Send Emails To',
- 'primary_contact': 'Primary Contact',
- 'all_contacts': 'All Contacts',
- 'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report':
- 'Informe detallado de cuentas por cobrar vencidas',
- 'aged_receivable_summary_report':
- 'Informe resumido de cuentas por cobrar antiguas',
- 'client_balance_report': 'Informe de saldo de clientes',
- 'client_sales_report': 'Informe de ventas de clientes',
- 'tax_summary_report': 'Informe resumido de impuestos',
- 'user_sales_report': 'Informe de ventas de usuarios',
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Informe por correo electrónico',
+ 'host': 'Host',
+ 'port': 'Puerto',
+ 'encryption': 'Encriptación',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Usuario',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
+ 'participant_name': 'Nombre del participante',
+ 'yodlee_regions': 'Regiones: EE. UU., Reino Unido, Australia e India',
+ 'nordigen_regions': 'Regiones: Europa y Reino Unido',
+ 'select_provider': 'Seleccionar Proveedor',
+ 'payment_type_credit': 'Tipo de pago Crédito',
+ 'payment_type_debit': 'Tipo de pago Débito',
+ 'send_emails_to': 'Enviar correos electrónicos a',
+ 'primary_contact': 'Contacto primario',
+ 'all_contacts': 'Todos los contactos',
+ 'insert_below': 'Insertar abajo',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Resumen de impuestos',
+ 'user_sales': 'User Sales',
'run_template': 'Ejecutar plantilla',
'task_extension_banner':
'Añade la extensión de Chrome para gestionar tus tareas',
@@ -97284,7 +97817,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'Condado',
'tax_details': 'Detalles de impuestos',
'activity_10_online':
- ':contact made payment :payment for invoice :invoice for :client',
+ ':contact realizó el pago :payment de la factura :invoice de :client',
'activity_10_manual':
':user realizó el pago :payment para la factura :invoice de :client',
'default_payment_type': 'Tipo de pago predeterminado',
@@ -98943,7 +99476,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Total',
'item': 'Concepto',
'credit_email': 'Correo electrónico de crédito',
- 'iframe_url': 'Website',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'URL del Dominio',
'password_is_too_short': 'La contraseña es demasiado corta',
'password_is_too_easy':
@@ -99899,6 +100432,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Cargar color del tema',
},
'sv': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Värd',
+ 'port': 'Port',
+ 'encryption': 'Kryptering',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Användarnamn',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -99909,12 +100458,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -99977,7 +100525,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'County',
'tax_details': 'Tax Details',
'activity_10_online':
- ':contact entered payment :payment for invoice :invoice for :client',
+ ':contact made payment :payment for invoice :invoice for :client',
'activity_10_manual':
':user entered payment :payment for invoice :invoice for :client',
'default_payment_type': 'Default Payment Type',
@@ -100599,7 +101147,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'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':
@@ -101114,10 +101662,10 @@ mixin LocalizationsProvider on LocaleCodeAware {
'minimum_under_payment_amount': 'Lägsta belopp vid underbetalning',
'profit': 'Förtjänst',
'line_item': 'Rad',
- 'allow_over_payment': 'Tillåt överbetalning',
+ 'allow_over_payment': 'Allow Overpayment',
'allow_over_payment_help':
'Stöd för att betala extra för att ta emot dricks',
- 'allow_under_payment': 'Tillåt underbetalning',
+ 'allow_under_payment': 'Allow Underpayment',
'allow_under_payment_help':
'Stöd för att betala minimum del-/insättningsbeloppet',
'test_mode': 'Testläge',
@@ -101577,7 +102125,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Summa',
'item': 'Artikel',
'credit_email': 'Credit Email',
- 'iframe_url': 'Webbsida',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Domän URL',
'password_is_too_short': 'Lösenordet är för kort',
'password_is_too_easy':
@@ -102455,7 +103003,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'credit_number_counter': 'Kredit nummerräknare',
'reset_counter_date': 'Återställ räknedatum',
'counter_padding': 'Utfyllnad för räknare',
- 'shared_invoice_quote_counter': 'Share Invoice Quote Counter',
+ 'shared_invoice_quote_counter': 'Share Invoice/Quote Counter',
'default_tax_name_1': 'Standardskattnamn 1',
'default_tax_rate_1': 'Standard skattesats 1',
'default_tax_name_2': 'Standardskattnamn 2',
@@ -102520,6 +103068,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'th': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Host',
+ 'port': 'Port',
+ 'encryption': 'การเข้ารหัส',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'ชื่อผู้ใช้',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -102530,12 +103094,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -102598,7 +103161,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'County',
'tax_details': 'Tax Details',
'activity_10_online':
- ':contact entered payment :payment for invoice :invoice for :client',
+ ':contact made payment :payment for invoice :invoice for :client',
'activity_10_manual':
':user entered payment :payment for invoice :invoice for :client',
'default_payment_type': 'Default Payment Type',
@@ -103220,7 +103783,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'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':
@@ -103723,9 +104286,9 @@ mixin LocalizationsProvider on LocaleCodeAware {
'minimum_under_payment_amount': 'Minimum Under Payment Amount',
'profit': 'กำไร',
'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',
@@ -104184,7 +104747,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'รวมเงิน',
'item': 'รายการ',
'credit_email': 'Credit Email',
- 'iframe_url': 'Website',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Domain URL',
'password_is_too_short': 'รหัสผ่านสั้นเกินไป',
'password_is_too_easy':
@@ -105059,7 +105622,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',
@@ -105124,6 +105687,22 @@ mixin LocalizationsProvider on LocaleCodeAware {
'load_color_theme': 'Load Color Theme',
},
'tr_TR': {
+ 'please_select_an_invoice_or_credit':
+ 'Please select an invoice or credit',
+ 'mobile_version': 'Mobile Version',
+ 'venmo': 'Venmo',
+ 'mercado_pago': 'Mercado Pago',
+ 'my_bank': 'MyBank',
+ 'pay_later': 'Pay Later',
+ 'email_report': 'Email Report',
+ 'host': 'Host',
+ 'port': 'Port',
+ 'encryption': 'Encryption',
+ 'local_domain': 'Local Domain',
+ 'verify_peer': 'Verify Peer',
+ 'username': 'Kullanıcı Adı',
+ 'nordigen_help':
+ 'Note: connecting an account requires a GoCardless/Nordigen API key',
'participant_name': 'Participant name',
'yodlee_regions': 'Regions: USA, UK, Australia & India',
'nordigen_regions': 'Regions: Europe & UK',
@@ -105134,12 +105713,11 @@ mixin LocalizationsProvider on LocaleCodeAware {
'primary_contact': 'Primary Contact',
'all_contacts': 'All Contacts',
'insert_below': 'Insert Below',
- 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report',
- 'aged_receivable_summary_report': 'Aged Receivable Summary Report',
- 'client_balance_report': 'Customer balance report',
- 'client_sales_report': 'Customer sales report',
- 'tax_summary_report': 'Tax Summary Report',
- 'user_sales_report': 'User sales report',
+ 'ar_detailed': 'Accounts Receivable Detailed',
+ 'ar_summary': 'Accounts Receivable Summary',
+ 'client_sales': 'Client Sales',
+ 'tax_summary': 'Tax Summary',
+ 'user_sales': 'User Sales',
'run_template': 'Run template',
'task_extension_banner': 'Add the Chrome extension to manage your tasks',
'watch_video': 'Watch Video',
@@ -105202,7 +105780,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'county': 'County',
'tax_details': 'Tax Details',
'activity_10_online':
- ':contact entered payment :payment for invoice :invoice for :client',
+ ':contact made payment :payment for invoice :invoice for :client',
'activity_10_manual':
':user entered payment :payment for invoice :invoice for :client',
'default_payment_type': 'Default Payment Type',
@@ -105824,7 +106402,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'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':
@@ -106328,9 +106906,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',
@@ -106789,7 +107367,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
'line_total': 'Tutar',
'item': 'Öğe',
'credit_email': 'Credit Email',
- 'iframe_url': 'Web adresi',
+ 'iframe_url': 'iFrame URL',
'domain_url': 'Domain URL',
'password_is_too_short': 'Password is too short',
'password_is_too_easy':
@@ -107667,7 +108245,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',
diff --git a/pubspec.foss.yaml b/pubspec.foss.yaml
index 0c6e98d2a..204cd5b27 100644
--- a/pubspec.foss.yaml
+++ b/pubspec.foss.yaml
@@ -1,6 +1,6 @@
name: invoiceninja_flutter
description: Client for Invoice Ninja
-version: 5.0.153+153
+version: 5.0.154+154
homepage: https://invoiceninja.com
documentation: https://invoiceninja.github.io
publish_to: none
diff --git a/pubspec.yaml b/pubspec.yaml
index bddabaf81..cc5a0a217 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,6 +1,6 @@
name: invoiceninja_flutter
description: Client for Invoice Ninja
-version: 5.0.153+153
+version: 5.0.154+154
homepage: https://invoiceninja.com
documentation: https://invoiceninja.github.io
publish_to: none
diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml
index 502087c11..3050492c7 100644
--- a/snap/snapcraft.yaml
+++ b/snap/snapcraft.yaml
@@ -1,5 +1,5 @@
name: invoiceninja
-version: '5.0.153'
+version: '5.0.154'
summary: Create invoices, accept payments, track expenses & time tasks
description: "### Note: if the app fails to run using `snap run invoiceninja` it may help to run `/snap/invoiceninja/current/bin/invoiceninja` instead