diff --git a/lib/ui/app/forms/learn_more.dart b/lib/ui/app/forms/learn_more.dart new file mode 100644 index 000000000..0528bcc91 --- /dev/null +++ b/lib/ui/app/forms/learn_more.dart @@ -0,0 +1,41 @@ +import 'package:flutter/material.dart'; +import 'package:invoiceninja_flutter/utils/localization.dart'; +import 'package:url_launcher/url_launcher.dart'; + +class LearnMore extends StatelessWidget { + const LearnMore({ + @required this.child, + @required this.url, + }); + + final Widget child; + final String url; + + @override + Widget build(BuildContext context) { + final localization = AppLocalization.of(context); + + if (url.isEmpty) { + return child; + } + + return Row( + children: [ + Expanded( + child: child, + ), + SizedBox( + width: 10, + ), + FlatButton( + child: Text(localization.learnMore), + onPressed: () async { + if (await canLaunch(url)) { + await launch(url, forceSafariVC: false, forceWebView: false); + } + }, + ), + ], + ); + } +} diff --git a/lib/ui/settings/integrations.dart b/lib/ui/settings/integrations.dart index 0b8e126bc..4c75ab628 100644 --- a/lib/ui/settings/integrations.dart +++ b/lib/ui/settings/integrations.dart @@ -2,6 +2,7 @@ import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:invoiceninja_flutter/ui/app/form_card.dart'; import 'package:invoiceninja_flutter/ui/app/forms/decorated_form_field.dart'; +import 'package:invoiceninja_flutter/ui/app/forms/learn_more.dart'; import 'package:invoiceninja_flutter/ui/settings/integrations_vm.dart'; import 'package:invoiceninja_flutter/ui/app/edit_scaffold.dart'; import 'package:invoiceninja_flutter/utils/localization.dart'; @@ -57,9 +58,7 @@ class _IntegrationSettingsState extends State { super.didChangeDependencies(); } - void _onChanged() { - - } + void _onChanged() {} @override Widget build(BuildContext context) { @@ -73,15 +72,21 @@ class _IntegrationSettingsState extends State { children: [ FormCard( children: [ - DecoratedFormField( - label: 'Slack', - hint: localization.slackWebhookUrl, - controller: _slackWebhookController, + LearnMore( + url: 'https://my.slack.com/services/new/incoming-webhook/', + child: DecoratedFormField( + label: 'Slack', + hint: localization.slackWebhookUrl, + controller: _slackWebhookController, + ), ), - DecoratedFormField( - label: 'Google Analytics', - hint: localization.analyticsKey, - controller: _googleAnalyticsController, + LearnMore( + url: 'https://support.google.com/analytics/answer/1037249', + child: DecoratedFormField( + label: 'Google Analytics', + hint: localization.trackingId, + controller: _googleAnalyticsController, + ), ), ], ) diff --git a/lib/utils/i18n.dart b/lib/utils/i18n.dart index 627a33cb6..79f3fb70a 100644 --- a/lib/utils/i18n.dart +++ b/lib/utils/i18n.dart @@ -14,6 +14,7 @@ abstract class LocaleCodeAware { mixin LocalizationsProvider on LocaleCodeAware { static final Map> _localizedValues = { 'en': { + 'learn_more': 'Learn More', 'integrations': 'Integrations', 'tracking_id': 'Tracking Id', 'slack_webhook_url': 'Slack Webhook URL', @@ -124,12 +125,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Message', 'from': 'From', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Ensure client fee matches the gateway fee', @@ -146,7 +147,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password must be at least 8 character long', 'password_is_too_easy': - 'Password must contain an upper case character and a number', + 'Password must contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -173,16 +174,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -225,7 +226,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrator', 'administrator_help': - 'Allow user to manage users, change settings and modify all records', + 'Allow user to manage users, change settings and modify all records', 'user_management': 'User Management', 'users': 'Users', 'new_user': 'New User', @@ -240,7 +241,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Invoice Options', 'hide_paid_to_date': 'Hide Paid to Date', 'hide_paid_to_date_help': - 'Only display the "Paid to Date" area on your invoices once a payment has been received.', + 'Only display the "Paid to Date" area on your invoices once a payment has been received.', 'invoice_embed_documents': 'Embed Documents', 'invoice_embed_documents_help': 'Include attached images in the invoice.', 'all_pages_header': 'Show Header on', @@ -263,16 +264,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Quote Footer', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', + 'Automatically email recurring invoices when they are created.', 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', + 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', + 'Automatically archive quotes when they are converted.', 'auto_convert_quote': 'Auto Convert', 'auto_convert_quote_help': - 'Automatically convert a quote to an invoice when approved by a client.', + 'Automatically convert a quote to an invoice when approved by a client.', 'workflow_settings': 'Workflow Settings', 'freq_daily': 'Daily', 'freq_weekly': 'Weekly', @@ -320,30 +321,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Show the client signature on the invoice/quote PDF.', + 'Show the client signature on the invoice/quote PDF.', 'show_accept_invoice_terms': 'Invoice Terms Checkbox', 'show_accept_invoice_terms_help': - 'Require client to confirm that they accept the invoice terms.', + 'Require client to confirm that they accept the invoice terms.', 'show_accept_quote_terms': 'Quote Terms Checkbox', 'show_accept_quote_terms_help': - 'Require client to confirm that they accept the quote terms.', + 'Require client to confirm that they accept the quote terms.', 'require_invoice_signature': 'Invoice Signature', 'require_invoice_signature_help': - 'Require client to provide their signature.', + 'Require client to provide their signature.', 'require_quote_signature': 'Quote Signature', 'enable_portal_password': 'Password Protect Invoices', 'enable_portal_password_help': - 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', + 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', 'send_portal_password': 'Generate Automatically', 'send_portal_password_help': - 'If no password is set, one will be generated and sent with the first invoice.', + 'If no password is set, one will be generated and sent with the first invoice.', 'authorization': 'Authorization', 'subdomain': 'Subdomain', 'domain': 'Domain', 'portal_mode': 'Portal Mode', 'email_signature': 'Email Signature', 'enable_email_markup_help': - 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', + 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', 'plain': 'Plain', 'light': 'Light', 'dark': 'Dark', @@ -372,9 +373,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Update address', 'update_address_help': 'Update client\'s address with provided details', 'rate': 'Rate', @@ -388,13 +389,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Fill Products', 'fill_products_help': - 'Selecting a product will automatically fill in the description and cost', + 'Selecting a product will automatically fill in the description and cost', 'update_products': 'Update Products', 'update_products_help': - 'Updating an invoice will automatically update the product library', + 'Updating an invoice will automatically update the product library', 'convert_products': 'Convert Products', 'convert_products_help': - 'Automatically convert product prices to the client\'s currency', + 'Automatically convert product prices to the client\'s currency', 'fees': 'Fees', 'limits': 'Limits', 'provider': 'Provider', @@ -495,7 +496,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -594,7 +595,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -798,7 +799,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as paid', 'done': 'Done', 'please_enter_a_client_or_contact_name': - 'Please enter a client or contact name', + 'Please enter a client or contact name', 'dark_mode': 'Dark Mode', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', @@ -1111,12 +1112,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Mesazhi', 'from': 'Nga', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -1133,7 +1134,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -1160,16 +1161,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -1212,7 +1213,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrator', 'administrator_help': - 'Lejon përdoruesit të menaxhoj përdoruesit, të ndryshojë rregullimet dhe të modifikojë të gjitha shënimet.', + 'Lejon përdoruesit të menaxhoj përdoruesit, të ndryshojë rregullimet dhe të modifikojë të gjitha shënimet.', 'user_management': 'Menaxhimi i përdoruesve', 'users': 'Përdorues', 'new_user': 'Përdorues i ri', @@ -1227,7 +1228,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Opsionet e faturës', 'hide_paid_to_date': 'Fshihe Paguar deri më tash', 'hide_paid_to_date_help': - 'Shfaqni \"Paguar deri më tash\" në faturat tuaja pasi të jetë pranuar pagesa.', + 'Shfaqni \"Paguar deri më tash\" në faturat tuaja pasi të jetë pranuar pagesa.', 'invoice_embed_documents': 'Dokumentet e lidhura', 'invoice_embed_documents_help': 'Vendos fotografinë në faturë.', 'all_pages_header': 'Shfaqe Header', @@ -1250,16 +1251,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Footer i Ofertës', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', + 'Automatically email recurring invoices when they are created.', 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', + 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', + 'Automatically archive quotes when they are converted.', 'auto_convert_quote': 'Auto Convert', 'auto_convert_quote_help': - 'Automatikisht konverto ofertën në faturë kur pranohet nga klienti.', + 'Automatikisht konverto ofertën në faturë kur pranohet nga klienti.', 'workflow_settings': 'Workflow Settings', 'freq_daily': 'Daily', 'freq_weekly': 'Javore', @@ -1307,30 +1308,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Show the client signature on the invoice/quote PDF.', + 'Show the client signature on the invoice/quote PDF.', 'show_accept_invoice_terms': 'Invoice Terms Checkbox', 'show_accept_invoice_terms_help': - 'Require client to confirm that they accept the invoice terms.', + 'Require client to confirm that they accept the invoice terms.', 'show_accept_quote_terms': 'Quote Terms Checkbox', 'show_accept_quote_terms_help': - 'Require client to confirm that they accept the quote terms.', + 'Require client to confirm that they accept the quote terms.', 'require_invoice_signature': 'Invoice Signature', 'require_invoice_signature_help': - 'Require client to provide their signature.', + 'Require client to provide their signature.', 'require_quote_signature': 'Quote Signature', 'enable_portal_password': 'Password Protect Invoices', 'enable_portal_password_help': - 'Ju mundëson të vendosni fjalëkalim për secilin kontakt. Nëse vendoset fjalëkalimi, kontakti duhet të vendos fjalëkalimin para se t\'i sheh faturat.', + 'Ju mundëson të vendosni fjalëkalim për secilin kontakt. Nëse vendoset fjalëkalimi, kontakti duhet të vendos fjalëkalimin para se t\'i sheh faturat.', 'send_portal_password': 'Generate Automatically', 'send_portal_password_help': - 'Nëse nuk caktoni fjalëkalim, do të krijohet një dhe do t\'ju dërgohet me faturën e parë.', + 'Nëse nuk caktoni fjalëkalim, do të krijohet një dhe do t\'ju dërgohet me faturën e parë.', 'authorization': 'Authorization', 'subdomain': 'Subdomain', 'domain': 'Domain', 'portal_mode': 'Portal Mode', 'email_signature': 'Përshëndetje', 'enable_email_markup_help': - 'Bëjeni më të lehtë për klientët tuaj të realizojnë pagesat duke vendosur schema.org markimin në emailat tuaj.', + 'Bëjeni më të lehtë për klientët tuaj të realizojnë pagesat duke vendosur schema.org markimin në emailat tuaj.', 'plain': 'E thjeshtë', 'light': 'E lehtë', 'dark': 'E mbylltë', @@ -1359,12 +1360,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Perditeso Adresën', 'update_address_help': - 'Perditeso adresën e klientit me detajet e ofruara', + 'Perditeso adresën e klientit me detajet e ofruara', 'rate': 'Norma', 'tax_rate': 'Norma e taksave', 'new_tax_rate': 'Normë e re e taksave', @@ -1376,13 +1377,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Plotëso-automatikisht produktet', 'fill_products_help': - 'Duke zgjedhur produktin, automatikisht do të plotësohen fill in the description and cost', + 'Duke zgjedhur produktin, automatikisht do të plotësohen fill in the description and cost', 'update_products': 'Perditeso-automatikisht produktet', 'update_products_help': - 'Perditesimi i faturës automatikisht do të perditesoje librarine e produktit', + 'Perditesimi i faturës automatikisht do të perditesoje librarine e produktit', 'convert_products': 'Convert Products', 'convert_products_help': - 'Automatically convert product prices to the client\'s currency', + 'Automatically convert product prices to the client\'s currency', 'fees': 'Fees', 'limits': 'Limits', 'provider': 'Provider', @@ -1482,7 +1483,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -1581,7 +1582,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -1785,7 +1786,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Përfundo', 'please_enter_a_client_or_contact_name': - 'Please enter a client or contact name', + 'Please enter a client or contact name', 'dark_mode': 'Modeli i errët', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', @@ -1867,7 +1868,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user ka arkivuar faturën :invoice', 'activity_9': ':user ka fshirë faturën :invoice', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user ka perditesuar pagesën :payment', 'activity_12': ':user ka arkivuar pagesën :payment', 'activity_13': ':user ka fshirë pagesën :payment', @@ -1897,7 +1898,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user restored expense :expense', 'activity_39': ':user cancelled a :payment_amount payment :payment', 'activity_40': - ':user refunded :adjustment of a :payment_amount payment :payment', + ':user refunded :adjustment of a :payment_amount payment :payment', 'activity_41': ':payment_amount payment (:payment) ka dështuar', 'activity_42': ':user created task :task', 'activity_43': ':user updated task :task', @@ -2099,12 +2100,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Съобщение', 'from': 'От', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -2121,7 +2122,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Паролата е твърде кратка', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -2148,16 +2149,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -2200,7 +2201,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Администратор', 'administrator_help': - 'Даване на права на потребителя да управлява другите потребители, да променя настойки и да редактира всички записи', + 'Даване на права на потребителя да управлява другите потребители, да променя настойки и да редактира всички записи', 'user_management': 'Управление на потребителите', 'users': 'Потребители', 'new_user': 'Нов потребител', @@ -2215,10 +2216,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Опции на фактурата', 'hide_paid_to_date': 'Скрий \"Изплатено до момента\"', 'hide_paid_to_date_help': - 'Покажи \"Изплатено до момента\" във фактурите, след като е получено плащане.', + 'Покажи \"Изплатено до момента\" във фактурите, след като е получено плащане.', 'invoice_embed_documents': 'Свързани документи', 'invoice_embed_documents_help': - 'Включване на прикачените изображения във фактурата.', + 'Включване на прикачените изображения във фактурата.', 'all_pages_header': 'Показване на хедъра на', 'all_pages_footer': 'Показване на футъра на', 'first_page': 'Първа страница', @@ -2239,16 +2240,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Футър на оферта', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Автоматично изпращане на периодични фактури при създаването им', + 'Автоматично изпращане на периодични фактури при създаването им', 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Автоматично архивиране на фактури при плащането им', + 'Автоматично архивиране на фактури при плащането им', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Автоматично архивиране на оферти при конвертирането им', + 'Автоматично архивиране на оферти при конвертирането им', 'auto_convert_quote': 'Автоматично конвертиране', 'auto_convert_quote_help': - 'Автоматично конвертиране на оферта във фактура при одобрение от клиента.', + 'Автоматично конвертиране на оферта във фактура при одобрение от клиента.', 'workflow_settings': 'Настройки на работния процес', 'freq_daily': 'Ежедневно', 'freq_weekly': 'Седмично', @@ -2296,29 +2297,29 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Показване в PDF документа', 'signature_on_pdf_help': - 'Показване на подписа на клиента в PDF фактурата / офертата.', + 'Показване на подписа на клиента в PDF фактурата / офертата.', 'show_accept_invoice_terms': 'Чек-бокс за условия на фактура', 'show_accept_invoice_terms_help': - 'Изискване клиенът да потвърди, че приема условията на фактурата', + 'Изискване клиенът да потвърди, че приема условията на фактурата', 'show_accept_quote_terms': 'Чек-бокс за условия на офертата', 'show_accept_quote_terms_help': - 'Изискване клиенът да потвърди, че приема условията на офертата', + 'Изискване клиенът да потвърди, че приема условията на офертата', 'require_invoice_signature': 'Подпис на фактурата', 'require_invoice_signature_help': 'Изискване клиентът да подпише', 'require_quote_signature': 'Подпис на офертата', 'enable_portal_password': 'Защита на фактурите с парола', 'enable_portal_password_help': - 'Дава възможност да заложите парола за всеки контакт. Ако такава е заложена, контактното лице ще трябва да я въведе преди да види фактурите,', + 'Дава възможност да заложите парола за всеки контакт. Ако такава е заложена, контактното лице ще трябва да я въведе преди да види фактурите,', 'send_portal_password': 'Автоматично генериране', 'send_portal_password_help': - 'Ако не бъде заложена парола, такава ще се генерира и ще бъде изпратена с първата фактура.', + 'Ако не бъде заложена парола, такава ще се генерира и ще бъде изпратена с първата фактура.', 'authorization': 'Оторизация', 'subdomain': 'Subdomain', 'domain': 'Домейн', 'portal_mode': 'Portal Mode', 'email_signature': 'Поздрави,', 'enable_email_markup_help': - 'Направете плащането към Вас по-лесно за клиентите си като добавите в имейлите си schema.org markup.', + 'Направете плащането към Вас по-лесно за клиентите си като добавите в имейлите си schema.org markup.', 'plain': 'Изчистено', 'light': 'Светло', 'dark': 'Тъмно', @@ -2347,12 +2348,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Лога на приемани карти', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Актуализация на адреса', 'update_address_help': - 'Актуализация на адреса на клиента с предоставените данни', + 'Актуализация на адреса на клиента с предоставените данни', 'rate': 'Размер', 'tax_rate': 'Данъчна ставка', 'new_tax_rate': 'Нова такса', @@ -2364,13 +2365,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Автоматично попълвай продукти', 'fill_products_help': - 'Избирането на продукт автоматично ще попълни описанието и цената', + 'Избирането на продукт автоматично ще попълни описанието и цената', 'update_products': 'Автоматично обнови продукти', 'update_products_help': - 'Промяната на фактура автоматично ще обнови продуктовия каталог', + 'Промяната на фактура автоматично ще обнови продуктовия каталог', 'convert_products': 'Конвертиране на продукти', 'convert_products_help': - 'Автоматично конвертиране на цените на продуктите във валутата на клиента', + 'Автоматично конвертиране на цените на продуктите във валутата на клиента', 'fees': 'Такси', 'limits': 'Лимити', 'provider': 'Provider', @@ -2470,7 +2471,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -2562,7 +2563,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_project': 'Успешно възстановен проект', 'new_project': 'Нов проект', 'thank_you_for_using_our_app': - 'Благодарим Ви, че използвате нашето приложение!', + 'Благодарим Ви, че използвате нашето приложение!', 'if_you_like_it': 'Ако го харесвате Ви молим', 'click_here': 'натиснете тук', 'click_here_capital': 'Click here', @@ -2570,7 +2571,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Средно', 'unapproved': 'Неодобрено', 'authenticate_to_change_setting': - 'Моля, влезте в профила си за промяна на тази настойка', + 'Моля, влезте в профила си за промяна на тази настойка', 'locked': 'Блокирано', 'authenticate': 'Вход в профила', 'please_authenticate': 'Моля, влезте в профила си', @@ -2774,10 +2775,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Готово', 'please_enter_a_client_or_contact_name': - 'Моля, въведете клиент или лице за контакт', + 'Моля, въведете клиент или лице за контакт', 'dark_mode': 'Тъмен режим', 'restart_app_to_apply_change': - 'Рестартирайте приложението за прилагане на промяната', + 'Рестартирайте приложението за прилагане на промяната', 'refresh_data': 'Опресняване на данни', 'blank_contact': 'Празен контакт', 'activity': 'Активност', @@ -2857,7 +2858,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user архивира фактура :invoice', 'activity_9': ':user изтри фактура :invoice', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user актуализира плащане :payment', 'activity_12': ':user архивира плащане :payment', 'activity_13': ':user изтри плащане :payment', @@ -2887,7 +2888,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user възстанови покупка :expense', 'activity_39': ':user е отказал :payment_amount за плащане :payment', 'activity_40': - ':user е възстановил :adjustment на стойност :payment_amount за плащане :payment', + ':user е възстановил :adjustment на стойност :payment_amount за плащане :payment', 'activity_41': 'Отказани :payment_amount по плащане (:payment)', 'activity_42': ':user създаде задача :task', 'activity_43': ':user актуализира задача :task', @@ -3089,12 +3090,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': '訊息', 'from': '從', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': '調整百分比以計入費用', @@ -3111,7 +3112,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': '密碼太短', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -3138,16 +3139,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -3288,7 +3289,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'require_quote_signature': '報價單簽名', 'enable_portal_password': '用以保護發票的密碼', 'enable_portal_password_help': - '使您能夠為每位聯絡人設定密碼。若設定密碼,聯絡人將會在查看發票之前被要求輸入密碼。', + '使您能夠為每位聯絡人設定密碼。若設定密碼,聯絡人將會在查看發票之前被要求輸入密碼。', 'send_portal_password': '自動產生', 'send_portal_password_help': '若無設定密碼,則隨第一份發票自動產生一個,並將隨發票一同寄出。', 'authorization': '授權', @@ -3325,9 +3326,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': '接受的卡片標誌', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': '更新地址', 'update_address_help': '使用提供的詳細資料更新客戶的地址', 'rate': '率', @@ -3444,7 +3445,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -3827,7 +3828,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user 已將發票 :invoice 歸檔', 'activity_9': ':user 已刪除發票 :invoice', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user 已更新付款資料 :payment', 'activity_12': ':user 已將付款資料 :payment 歸檔', 'activity_13': ':user 已刪除付款資料 :payment', @@ -4058,12 +4059,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Poruka', 'from': 'Šalje', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -4080,7 +4081,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -4107,16 +4108,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -4159,7 +4160,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrator', 'administrator_help': - 'Allow user to manage users, change settings and modify all records', + 'Allow user to manage users, change settings and modify all records', 'user_management': 'Upravljanje korisnicima', 'users': 'Korisnici', 'new_user': 'Novi korisnik', @@ -4174,7 +4175,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Opcije računa', 'hide_paid_to_date': 'Sakrij datum plaćanja', 'hide_paid_to_date_help': - 'Prikažite \"Datum plaćanja\" na računima, onda kada je uplata primljena.', + 'Prikažite \"Datum plaćanja\" na računima, onda kada je uplata primljena.', 'invoice_embed_documents': 'Ugrađeni dokumenti', 'invoice_embed_documents_help': 'Ubaci dodane dokumente u račun.', 'all_pages_header': 'Prikaži zaglavlje na', @@ -4197,16 +4198,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Podnožje ponude', 'auto_email_invoice': 'Automatski email', 'auto_email_invoice_help': - 'Ponavljajuće račune, nakon kreiranja, automatski pošalji emailom.', + 'Ponavljajuće račune, nakon kreiranja, automatski pošalji emailom.', 'auto_archive_invoice': 'Automatsko arhiviranje', 'auto_archive_invoice_help': - 'Automatski arhiviraj račun nakon što je plaćen.', + 'Automatski arhiviraj račun nakon što je plaćen.', 'auto_archive_quote': 'Automatsko arhiviranje', 'auto_archive_quote_help': - 'Automatski arhiviraj ponudu nakon konvertiranja.', + 'Automatski arhiviraj ponudu nakon konvertiranja.', 'auto_convert_quote': 'Auto Convert', 'auto_convert_quote_help': - 'Automatski konvertirajte ponudu u račun nakon što je odobrena od strane klijenta.', + 'Automatski konvertirajte ponudu u račun nakon što je odobrena od strane klijenta.', 'workflow_settings': 'Workflow Settings', 'freq_daily': 'Daily', 'freq_weekly': 'Weekly', @@ -4254,30 +4255,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Pokaži na PDF-u', 'signature_on_pdf_help': - 'Show the client signature on the invoice/quote PDF.', + 'Show the client signature on the invoice/quote PDF.', 'show_accept_invoice_terms': 'Invoice Terms Checkbox', 'show_accept_invoice_terms_help': - 'Require client to confirm that they accept the invoice terms.', + 'Require client to confirm that they accept the invoice terms.', 'show_accept_quote_terms': 'Quote Terms Checkbox', 'show_accept_quote_terms_help': - 'Require client to confirm that they accept the quote terms.', + 'Require client to confirm that they accept the quote terms.', 'require_invoice_signature': 'Invoice Signature', 'require_invoice_signature_help': - 'Require client to provide their signature.', + 'Require client to provide their signature.', 'require_quote_signature': 'Quote Signature', 'enable_portal_password': 'Password Protect Invoices', 'enable_portal_password_help': - 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', + 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', 'send_portal_password': 'Generiraj automatski', 'send_portal_password_help': - 'If no password is set, one will be generated and sent with the first invoice.', + 'If no password is set, one will be generated and sent with the first invoice.', 'authorization': 'Authorization', 'subdomain': 'Poddomena', 'domain': 'Domain', 'portal_mode': 'Portal Mode', 'email_signature': 'Srdačno,', 'enable_email_markup_help': - 'Olakšajte svojim klijentima plaćanje dodavanjem schema.org markupa vašoj e-pošti.', + 'Olakšajte svojim klijentima plaćanje dodavanjem schema.org markupa vašoj e-pošti.', 'plain': 'Obično', 'light': 'Svijetlo', 'dark': 'Tamno', @@ -4306,9 +4307,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Ažuriraj adresu', 'update_address_help': 'Ažuriraj adresu klijenta uz osigurane detalje', 'rate': 'Stopa', @@ -4322,13 +4323,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Proizvodi sa samoispunom', 'fill_products_help': - 'Odabir proizvoda će automatski ispuniti opis i cijenu', + 'Odabir proizvoda će automatski ispuniti opis i cijenu', 'update_products': 'Proizvidi sa autoažuriranjem', 'update_products_help': - 'Ažuriranje računa automatski ažurirati registar proizvoda', + 'Ažuriranje računa automatski ažurirati registar proizvoda', 'convert_products': 'Convert Products', 'convert_products_help': - 'Automatically convert product prices to the client\'s currency', + 'Automatically convert product prices to the client\'s currency', 'fees': 'Fees', 'limits': 'Limits', 'provider': 'Provider', @@ -4428,7 +4429,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -4527,7 +4528,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -4731,10 +4732,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Dovršeno', 'please_enter_a_client_or_contact_name': - 'Molimo upišite ime klijenta ili kontakta', + 'Molimo upišite ime klijenta ili kontakta', 'dark_mode': 'Tamni prikaz', 'restart_app_to_apply_change': - 'Ponovno pokrenite aplikaciju za primjenu promjena', + 'Ponovno pokrenite aplikaciju za primjenu promjena', 'refresh_data': 'Osvježi podatke', 'blank_contact': 'Prazan kontakt', 'activity': 'Aktivnost', @@ -4814,7 +4815,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user arhivirao račun :invoice', 'activity_9': ':user obrisao račun :invoce', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user ažurirao uplatu :payment', 'activity_12': ':user ahivirao uplatu :payment', 'activity_13': ':user obrisao uplatu :payment', @@ -4844,7 +4845,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user restored expense :expense', 'activity_39': ':user cancelled a :payment_amount payment :payment', 'activity_40': - ':user refunded :adjustment of a :payment_amount payment :payment', + ':user refunded :adjustment of a :payment_amount payment :payment', 'activity_41': ':payment_amount payment (:payment) failed', 'activity_42': ':user created task :task', 'activity_43': ':user updated task :task', @@ -5046,12 +5047,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Zpráva', 'from': 'Od', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -5068,7 +5069,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -5095,16 +5096,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -5147,7 +5148,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrátor', 'administrator_help': - 'Povolit uživatelům spravovat další uživatele, měnit nastavení a všechny záznamy', + 'Povolit uživatelům spravovat další uživatele, měnit nastavení a všechny záznamy', 'user_management': 'Správa uživatelů', 'users': 'Uživatelé', 'new_user': 'Nový uživatel', @@ -5162,7 +5163,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Možnosti faktury', 'hide_paid_to_date': 'Skrýt Zaplaceno ke dni', 'hide_paid_to_date_help': - 'Zobrazit na faktuře \"Zaplaceno ke dni\" pouze když přijde platba.', + 'Zobrazit na faktuře \"Zaplaceno ke dni\" pouze když přijde platba.', 'invoice_embed_documents': 'Embed Documents', 'invoice_embed_documents_help': 'Include attached images in the invoice.', 'all_pages_header': 'Zobrazit hlavičku', @@ -5185,16 +5186,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Patička nabídky', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', + 'Automatically email recurring invoices when they are created.', 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', + 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', + 'Automatically archive quotes when they are converted.', 'auto_convert_quote': 'Auto Convert', 'auto_convert_quote_help': - 'Automaticky zkonvertovat nabídku na fakturu po schválení klientem.', + 'Automaticky zkonvertovat nabídku na fakturu po schválení klientem.', 'workflow_settings': 'Workflow Settings', 'freq_daily': 'Daily', 'freq_weekly': 'týdně', @@ -5242,30 +5243,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Show the client signature on the invoice/quote PDF.', + 'Show the client signature on the invoice/quote PDF.', 'show_accept_invoice_terms': 'Invoice Terms Checkbox', 'show_accept_invoice_terms_help': - 'Require client to confirm that they accept the invoice terms.', + 'Require client to confirm that they accept the invoice terms.', 'show_accept_quote_terms': 'Quote Terms Checkbox', 'show_accept_quote_terms_help': - 'Require client to confirm that they accept the quote terms.', + 'Require client to confirm that they accept the quote terms.', 'require_invoice_signature': 'Invoice Signature', 'require_invoice_signature_help': - 'Require client to provide their signature.', + 'Require client to provide their signature.', 'require_quote_signature': 'Quote Signature', 'enable_portal_password': 'Password Protect Invoices', 'enable_portal_password_help': - 'Umožní Vám nastavit heslo pro každý kontakt. Pokud heslo nastavíte, tak kontakt ho bude pro zobrazení faktury vždy použít.', + 'Umožní Vám nastavit heslo pro každý kontakt. Pokud heslo nastavíte, tak kontakt ho bude pro zobrazení faktury vždy použít.', 'send_portal_password': 'Generate Automatically', 'send_portal_password_help': - 'Pokud heslo není nastaveno, bude vygenerováno a zasláno spolu s první fakturou.', + 'Pokud heslo není nastaveno, bude vygenerováno a zasláno spolu s první fakturou.', 'authorization': 'Schválení', 'subdomain': 'subdoména', 'domain': 'Domain', 'portal_mode': 'Portal Mode', 'email_signature': 'S pozdravem,', 'enable_email_markup_help': - 'Přidejte si mikroznačky schema.org do emailu a usnadněte tak vašim klientům platby.', + 'Přidejte si mikroznačky schema.org do emailu a usnadněte tak vašim klientům platby.', 'plain': 'Prostý text', 'light': 'Světlý', 'dark': 'Tmavý', @@ -5294,9 +5295,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Změnit adresu', 'update_address_help': 'Změnit adresu klienta podle poskytnutých detailů', 'rate': 'Sazba', @@ -5310,13 +5311,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Automaticky předvyplnit produkty', 'fill_products_help': - 'Výběr produktu automaticky vyplní popis a cenu', + 'Výběr produktu automaticky vyplní popis a cenu', 'update_products': 'Automaticky aktualizovat produkty', 'update_products_help': - 'Změna na faktuře automaticky aktualizuje katalog produktů', + 'Změna na faktuře automaticky aktualizuje katalog produktů', 'convert_products': 'Convert Products', 'convert_products_help': - 'Automatically convert product prices to the client\'s currency', + 'Automatically convert product prices to the client\'s currency', 'fees': 'Fees', 'limits': 'Limits', 'provider': 'Provider', @@ -5416,7 +5417,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -5515,7 +5516,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -5719,7 +5720,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Hotovo', 'please_enter_a_client_or_contact_name': - 'Please enter a client or contact name', + 'Please enter a client or contact name', 'dark_mode': 'Tmavý mód', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', @@ -5801,7 +5802,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user archivoval fakturu :invoice', 'activity_9': ':user smazal fakturu :invoice', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user změnil platbu :payment', 'activity_12': ':user archivoval platbu :payment', 'activity_13': ':user smazal platbu :payment', @@ -5831,7 +5832,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user restored expense :expense', 'activity_39': ':user cancelled a :payment_amount payment :payment', 'activity_40': - ':user refunded :adjustment of a :payment_amount payment :payment', + ':user refunded :adjustment of a :payment_amount payment :payment', 'activity_41': ':payment_amount payment (:payment) failed', 'activity_42': ':user created task :task', 'activity_43': ':user updated task :task', @@ -6033,12 +6034,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Besked', 'from': 'Fra', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -6055,7 +6056,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -6082,16 +6083,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -6134,7 +6135,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrator', 'administrator_help': - 'Allow user to manage users, change settings and modify all records', + 'Allow user to manage users, change settings and modify all records', 'user_management': 'Brugerhåndtering', 'users': 'Brugere', 'new_user': 'New User', @@ -6149,7 +6150,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Fakturaindstillinger', 'hide_paid_to_date': 'Skjul delbetalinger', 'hide_paid_to_date_help': - 'Vis kun delbetalinger hvis der er forekommet en delbetaling.', + 'Vis kun delbetalinger hvis der er forekommet en delbetaling.', 'invoice_embed_documents': 'Embed Documents', 'invoice_embed_documents_help': 'Include attached images in the invoice.', 'all_pages_header': 'Show header on', @@ -6172,16 +6173,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Quote Footer', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', + 'Automatically email recurring invoices when they are created.', 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', + 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', + 'Automatically archive quotes when they are converted.', 'auto_convert_quote': 'Auto konvertering', 'auto_convert_quote_help': - 'Automatically convert a quote to an invoice when approved by a client.', + 'Automatically convert a quote to an invoice when approved by a client.', 'workflow_settings': 'Workflow Settings', 'freq_daily': 'Daglig', 'freq_weekly': 'Ugentlig', @@ -6229,30 +6230,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Show the client signature on the invoice/quote PDF.', + 'Show the client signature on the invoice/quote PDF.', 'show_accept_invoice_terms': 'Afkrydsningsfelt for fakturavilkår', 'show_accept_invoice_terms_help': - 'Bed kunden om at bekræfte, at de accepterer fakturavilkårene.', + 'Bed kunden om at bekræfte, at de accepterer fakturavilkårene.', 'show_accept_quote_terms': 'Tilbuds Betingelser Afkrydsningsfelt', 'show_accept_quote_terms_help': - 'Bed kunden om at bekræfte, at de accepterer tilbudsbetingelserne.', + 'Bed kunden om at bekræfte, at de accepterer tilbudsbetingelserne.', 'require_invoice_signature': 'Fakturasignatur', 'require_invoice_signature_help': - 'Kræv at klienten giver deres underskrift.', + 'Kræv at klienten giver deres underskrift.', 'require_quote_signature': 'Tilbuds underskrift', 'enable_portal_password': 'Adgangskodebeskyttet Fakturaer', 'enable_portal_password_help': - 'Lader dig indtaste en adgangskode til hver kontakt. Hvis en adgangskode ikke er lavet, vil kontakten blive pålagt at indtaste en adgangskode før det er muligt at se fakturaer.', + 'Lader dig indtaste en adgangskode til hver kontakt. Hvis en adgangskode ikke er lavet, vil kontakten blive pålagt at indtaste en adgangskode før det er muligt at se fakturaer.', 'send_portal_password': 'Generer automatisk', 'send_portal_password_help': - 'If no password is set, one will be generated and sent with the first invoice.', + 'If no password is set, one will be generated and sent with the first invoice.', 'authorization': 'Autorisation', 'subdomain': 'Underdomain', 'domain': 'Domain', 'portal_mode': 'Portal Mode', 'email_signature': 'Venlig hilsen,', 'enable_email_markup_help': - 'Gør det lettere for dine klienter at betale dig ved at tilføje schema.org markup i dine e-mails.', + 'Gør det lettere for dine klienter at betale dig ved at tilføje schema.org markup i dine e-mails.', 'plain': 'Plain', 'light': 'Light', 'dark': 'Dark', @@ -6281,9 +6282,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Opdater adresse', 'update_address_help': 'Opdater kundens adresse med de opgivne detaljer', 'rate': 'Sats', @@ -6297,13 +6298,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Automatisk-udfyld produkter', 'fill_products_help': - 'Valg af produkt vil automatisk udfylde beskrivelse og pris', + 'Valg af produkt vil automatisk udfylde beskrivelse og pris', 'update_products': 'Automatisk opdatering af produkter', 'update_products_help': - 'En opdatering af en faktura vil automatisk opdaterer Produkt biblioteket', + 'En opdatering af en faktura vil automatisk opdaterer Produkt biblioteket', 'convert_products': 'Convert Products', 'convert_products_help': - 'Automatically convert product prices to the client\'s currency', + 'Automatically convert product prices to the client\'s currency', 'fees': 'Fees', 'limits': 'Limits', 'provider': 'Provider', @@ -6403,7 +6404,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -6502,7 +6503,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -6706,7 +6707,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Færdig', 'please_enter_a_client_or_contact_name': - 'Please enter a client or contact name', + 'Please enter a client or contact name', 'dark_mode': 'Mørk tilstand', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', @@ -6784,12 +6785,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_4': ':user oprettede faktura :invoice', 'activity_5': ':user ajourførte faktura :invoice', 'activity_6': - ':user emailede fakturaen :invoice for :client til :contact', + ':user emailede fakturaen :invoice for :client til :contact', 'activity_7': ':contact læste faktura :invoice for :client', 'activity_8': ':user arkiverede faktura :invoice', 'activity_9': ':user slettede faktura :invoice', 'activity_10': - ':contact indtastede betaling :payment for :payment_amout i fakturaen :invoice for :client', + ':contact indtastede betaling :payment for :payment_amout i fakturaen :invoice for :client', 'activity_11': ':user ajourførte betaling :payment', 'activity_12': ':user arkiverede betaling :payment', 'activity_13': ':user slettede betaling :payment', @@ -6819,7 +6820,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user genskabte udgiften :expense', 'activity_39': ':user annullerede en :payment_amount betaling :payment', 'activity_40': - ':bruger refunderet :justering af en :betaling_beløb betaling :betaling', + ':bruger refunderet :justering af en :betaling_beløb betaling :betaling', 'activity_41': ':payment_amount betaling (:betaling) mislykkedes', 'activity_42': ':user oprettede opgaven :task', 'activity_43': ':user opdaterede opgaven :task', @@ -7021,16 +7022,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Bericht', 'from': 'Van', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': - 'Pas percentage aan om rekening te houden met de kosten', + 'Pas percentage aan om rekening te houden met de kosten', 'configure_settings': 'Configure Settings', 'support_forum': 'Support Forum', 'about': 'About', @@ -7044,7 +7045,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Wachtwoord is te kort', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -7071,16 +7072,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -7123,7 +7124,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Beheerder', 'administrator_help': - 'Geef gebruiker de toestemming om andere gebruikers te beheren, instellingen te wijzigen en alle regels te bewerken.', + 'Geef gebruiker de toestemming om andere gebruikers te beheren, instellingen te wijzigen en alle regels te bewerken.', 'user_management': 'Gebruikersbeheer', 'users': 'Gebruikers', 'new_user': 'Nieuwe Gebruiker', @@ -7138,10 +7139,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Factuuropties', 'hide_paid_to_date': 'Verberg \"Reeds betaald\"', 'hide_paid_to_date_help': - 'Toon alleen het \"Reeds betaald\" gebied op je facturen als er een betaling gemaakt is.', + 'Toon alleen het \"Reeds betaald\" gebied op je facturen als er een betaling gemaakt is.', 'invoice_embed_documents': 'Documenten invoegen', 'invoice_embed_documents_help': - 'Bijgevoegde afbeeldingen weergeven in de factuur.', + 'Bijgevoegde afbeeldingen weergeven in de factuur.', 'all_pages_header': 'Toon header op', 'all_pages_footer': 'Toon footer op', 'first_page': 'eerste pagina', @@ -7162,16 +7163,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Offertevoettekst', 'auto_email_invoice': 'Automatisch e-mailen', 'auto_email_invoice_help': - 'Verzend terugkerende facturen automatisch wanneer ze worden gemaakt.', + 'Verzend terugkerende facturen automatisch wanneer ze worden gemaakt.', 'auto_archive_invoice': 'Automatisch archiveren', 'auto_archive_invoice_help': - 'Facturen automatisch archiveren wanneer ze worden betaald.', + 'Facturen automatisch archiveren wanneer ze worden betaald.', 'auto_archive_quote': 'Automatisch archiveren', 'auto_archive_quote_help': - 'Offertes automatisch archiveren wanneer ze zijn omgezet.', + 'Offertes automatisch archiveren wanneer ze zijn omgezet.', 'auto_convert_quote': 'Automatisch omzetten', 'auto_convert_quote_help': - 'Zet een offerte automatisch om in een factuur zodra deze door een klant wordt goedgekeurd.', + 'Zet een offerte automatisch om in een factuur zodra deze door een klant wordt goedgekeurd.', 'workflow_settings': 'Workflow instellingen', 'freq_daily': 'Dagelijks', 'freq_weekly': 'Wekelijks', @@ -7219,30 +7220,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Weergeven op PDF', 'signature_on_pdf_help': - 'Toon de handtekening van de klant op de factuur/offerte PDF.', + 'Toon de handtekening van de klant op de factuur/offerte PDF.', 'show_accept_invoice_terms': 'Factuurvoorwaarden checkbox', 'show_accept_invoice_terms_help': - 'Verplicht de klant om akkoord te gaan met de factuurvoorwaarden.', + 'Verplicht de klant om akkoord te gaan met de factuurvoorwaarden.', 'show_accept_quote_terms': 'Offertevoorwaarden checkbox', 'show_accept_quote_terms_help': - 'Verplicht de klant om akkoord te gaan met de offertevoorwaarden.', + 'Verplicht de klant om akkoord te gaan met de offertevoorwaarden.', 'require_invoice_signature': 'Factuur handtekening', 'require_invoice_signature_help': - 'Verplicht de klant om zijn handtekening te zetten.', + 'Verplicht de klant om zijn handtekening te zetten.', 'require_quote_signature': 'Offerte handtekening', 'enable_portal_password': 'Facturen beveiligen met een wachtwoord', 'enable_portal_password_help': - 'Geeft u de mogelijkheid om een wachtwoord in te stellen voor elke contactpersoon. Als er een wachtwoord is ingesteld moet de contactpersoon het wachtwoord invoeren voordat deze facturen kan bekijken.', + 'Geeft u de mogelijkheid om een wachtwoord in te stellen voor elke contactpersoon. Als er een wachtwoord is ingesteld moet de contactpersoon het wachtwoord invoeren voordat deze facturen kan bekijken.', 'send_portal_password': 'Automatische generatie', 'send_portal_password_help': - 'Als er geen wachtwoord is ingesteld zal deze automatisch worden gegenereerd en verzonden bij de eerste factuur.', + 'Als er geen wachtwoord is ingesteld zal deze automatisch worden gegenereerd en verzonden bij de eerste factuur.', 'authorization': 'Autorisatie', 'subdomain': 'Subdomein', 'domain': 'Domein', 'portal_mode': 'Portal Mode', 'email_signature': 'Met vriendelijke groeten,', 'enable_email_markup_help': - 'Maak het gemakkelijker voor uw klanten om te betalen door scherma.org opmaak toe te voegen aan uw e-mails.', + 'Maak het gemakkelijker voor uw klanten om te betalen door scherma.org opmaak toe te voegen aan uw e-mails.', 'plain': 'Platte tekst', 'light': 'Licht', 'dark': 'Donker', @@ -7271,12 +7272,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Geaccepteerde kaart logo\'s', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Adres aanpassen', 'update_address_help': - 'Pas het adres van de klant aan met de ingevulde gegevens', + 'Pas het adres van de klant aan met de ingevulde gegevens', 'rate': 'Tarief', 'tax_rate': 'BTW-tarief', 'new_tax_rate': 'Nieuw BTW-tarief', @@ -7288,13 +7289,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Producten Automatisch aanvullen', 'fill_products_help': - 'Een product selecteren zal automatisch de beschrijving en kosten instellen', + 'Een product selecteren zal automatisch de beschrijving en kosten instellen', 'update_products': 'Producten automatisch wijzigen', 'update_products_help': - 'Het wijzigen van een factuur zal automatisch de producten aanpassen', + 'Het wijzigen van een factuur zal automatisch de producten aanpassen', 'convert_products': 'Producten omzetten', 'convert_products_help': - 'Productprijzen automatisch converteren naar het valuta van de klant', + 'Productprijzen automatisch converteren naar het valuta van de klant', 'fees': 'Transactiekosten', 'limits': 'Limieten', 'provider': 'Provider', @@ -7394,7 +7395,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Vul een voornaam in aub', 'please_enter_a_last_name': 'Vul een naam in aub', 'please_agree_to_terms_and_privacy': - 'Ga akkoord met de servicevoorwaarden en het privacybeleid om een account aan te maken.', + 'Ga akkoord met de servicevoorwaarden en het privacybeleid om een account aan te maken.', 'i_agree_to_the': 'Ik ga akkoord met', 'terms_of_service_link': 'de servicevoorwaarden', 'privacy_policy_link': 'het privacybeleid', @@ -7493,7 +7494,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Gemiddeld', 'unapproved': 'Afgekeurd', 'authenticate_to_change_setting': - 'Gelieve te authenticeren om deze instelling te wijzigen', + 'Gelieve te authenticeren om deze instelling te wijzigen', 'locked': 'Vergrendeld', 'authenticate': 'Authenticeer', 'please_authenticate': 'Gelieve te authenticeren', @@ -7678,7 +7679,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'updated_at': 'Bijgewerkt', 'tax': 'Belasting', 'please_enter_an_invoice_number': - 'Gelieve een factuurnummer in te voeren', + 'Gelieve een factuurnummer in te voeren', 'please_enter_a_quote_number': 'Gelieve een offertenummer in te voeren', 'past_due': 'Verlopen', 'draft': 'Concept', @@ -7693,16 +7694,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_status_4': 'Goedgekeurd', 'mark_sent': 'Markeer als verzonden', 'marked_invoice_as_sent': - 'De factuur is succesvol gemarkeerd als verzonden', + 'De factuur is succesvol gemarkeerd als verzonden', 'marked_invoice_as_paid': 'Successfully marked invoice as sent', 'marked_invoices_as_sent': 'Successfully marked invoices as sent', 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Klaar', 'please_enter_a_client_or_contact_name': - 'Gelieve een bedrijfsnaam of contactpersoon in te voeren', + 'Gelieve een bedrijfsnaam of contactpersoon in te voeren', 'dark_mode': 'Donkere modus', 'restart_app_to_apply_change': - 'Herstart de applicatie om de wijziging toe te passen', + 'Herstart de applicatie om de wijziging toe te passen', 'refresh_data': 'Gegevens verversen', 'blank_contact': 'Leeg contact', 'activity': 'Activiteit', @@ -7778,12 +7779,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_4': ':user heeft factuur :invoice aangemaakt', 'activity_5': ':user heeft factuur :invoice bijgewerkt', 'activity_6': - ':user heeft factuur :invoice voor :client naar :contact verstuurd', + ':user heeft factuur :invoice voor :client naar :contact verstuurd', 'activity_7': ':contact heeft factuur :invoice voor :client bekeken', 'activity_8': ':user heeft factuur :invoice gearchiveerd', 'activity_9': ':user heeft factuur :invoice verwijderd', 'activity_10': - ':contact heeft betaling :payment van :payment_amount ingevoerd voor factuur :invoice voor :client', + ':contact heeft betaling :payment van :payment_amount ingevoerd voor factuur :invoice voor :client', 'activity_11': ':user heeft betaling :payment bijgewerkt', 'activity_12': ':user heeft betaling :payment gearchiveerd', 'activity_13': ':user heeft betaling :payment verwijderd', @@ -7794,7 +7795,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_18': ':user heeft offerte :quote aangemaakt', 'activity_19': ':user heeft offerte :quote bijgewerkt', 'activity_20': - ':user heeft offerte :quote voor :client verstuurd naar :contact', + ':user heeft offerte :quote voor :client verstuurd naar :contact', 'activity_21': ':contact heeft offerte :quote bekeken', 'activity_22': ':user heeft offerte :quote gearchiveerd', 'activity_23': ':user heeft offerte :quote verwijderd', @@ -7813,9 +7814,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_36': ':user heeft uitgave :expense verwijderd', 'activity_37': ':user heeft uitgave :expense hersteld', 'activity_39': - ':user heeft een a :payment_amount betaling geannuleerd :payment', + ':user heeft een a :payment_amount betaling geannuleerd :payment', 'activity_40': - ':user heeft :adjustment van een :payment_amount betaling :payment', + ':user heeft :adjustment van een :payment_amount betaling :payment', 'activity_41': 'Betaling van :payment_amount mislukt (:payment)', 'activity_42': ':user heeft taak :task aangemaakt', 'activity_43': ':user heeft taak :task bijgewerkt', @@ -7836,7 +7837,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'one_time_password': 'Eenmalig wachtwoord', 'emailed_quote': 'De offerte is succesvol gemaild', 'marked_quote_as_sent': - 'De offerte is succesvol gemarkeerd als verzonden', + 'De offerte is succesvol gemarkeerd als verzonden', 'expired': 'Verlopen', 'all': 'Alles', 'select': 'Selecteer', @@ -8018,12 +8019,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Message', 'from': 'From', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -8040,7 +8041,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -8067,16 +8068,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -8119,7 +8120,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrator', 'administrator_help': - 'Allow user to manage users, change settings and modify all records', + 'Allow user to manage users, change settings and modify all records', 'user_management': 'User Management', 'users': 'Users', 'new_user': 'New User', @@ -8134,7 +8135,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Invoice Options', 'hide_paid_to_date': 'Hide Paid to Date', 'hide_paid_to_date_help': - 'Only display the \"Paid to Date\" area on your invoices once a payment has been received.', + 'Only display the \"Paid to Date\" area on your invoices once a payment has been received.', 'invoice_embed_documents': 'Embed Documents', 'invoice_embed_documents_help': 'Include attached images in the invoice.', 'all_pages_header': 'Show Header on', @@ -8157,16 +8158,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Quote Footer', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', + 'Automatically email recurring invoices when they are created.', 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', + 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', + 'Automatically archive quotes when they are converted.', 'auto_convert_quote': 'Auto Convert', 'auto_convert_quote_help': - 'Automatically convert a quote to an invoice when approved by a customer.', + 'Automatically convert a quote to an invoice when approved by a customer.', 'workflow_settings': 'Workflow Settings', 'freq_daily': 'Daily', 'freq_weekly': 'Weekly', @@ -8214,30 +8215,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Show the customer signature on the invoice/quote PDF.', + 'Show the customer signature on the invoice/quote PDF.', 'show_accept_invoice_terms': 'Invoice Terms Checkbox', 'show_accept_invoice_terms_help': - 'Require customer to confirm that they accept the invoice terms.', + 'Require customer to confirm that they accept the invoice terms.', 'show_accept_quote_terms': 'Quote Terms Checkbox', 'show_accept_quote_terms_help': - 'Require customer to confirm that they accept the quote terms.', + 'Require customer to confirm that they accept the quote terms.', 'require_invoice_signature': 'Invoice Signature', 'require_invoice_signature_help': - 'Require customer to provide their signature.', + 'Require customer to provide their signature.', 'require_quote_signature': 'Quote Signature', 'enable_portal_password': 'Password Protect Invoices', 'enable_portal_password_help': - 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', + 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', 'send_portal_password': 'Generate Automatically', 'send_portal_password_help': - 'If no password is set, one will be generated and sent with the first invoice.', + 'If no password is set, one will be generated and sent with the first invoice.', 'authorization': 'Authorisation', 'subdomain': 'Subdomain', 'domain': 'Domain', 'portal_mode': 'Portal Mode', 'email_signature': 'Regards,', 'enable_email_markup_help': - 'Make it easier for your customers to pay you by adding schema.org markup to your emails.', + 'Make it easier for your customers to pay you by adding schema.org markup to your emails.', 'plain': 'Plain', 'light': 'Light', 'dark': 'Dark', @@ -8266,9 +8267,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Update Address', 'update_address_help': 'Update customer\'s address with provided details', 'rate': 'Rate', @@ -8282,13 +8283,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Auto-fill products', 'fill_products_help': - 'Selecting a product will automatically fill in the description and price', + 'Selecting a product will automatically fill in the description and price', 'update_products': 'Auto-update products', 'update_products_help': - 'Updating an invoice will automatically update the product library', + 'Updating an invoice will automatically update the product library', 'convert_products': 'Convert Products', 'convert_products_help': - 'Automatically convert product prices to the customer\'s currency', + 'Automatically convert product prices to the customer\'s currency', 'fees': 'Fees', 'limits': 'Limits', 'provider': 'Provider', @@ -8388,7 +8389,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -8487,7 +8488,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -8691,7 +8692,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Done', 'please_enter_a_client_or_contact_name': - 'Please enter a customer or contact name', + 'Please enter a customer or contact name', 'dark_mode': 'Dark Mode', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', @@ -8773,7 +8774,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user archived invoice :invoice', 'activity_9': ':user deleted invoice :invoice', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user updated payment :payment', 'activity_12': ':user archived payment :payment', 'activity_13': ':user deleted payment :payment', @@ -8803,7 +8804,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user restored expense :expense', 'activity_39': ':user cancelled a :payment_amount payment :payment', 'activity_40': - ':user refunded :adjustment of a :payment_amount payment :payment', + ':user refunded :adjustment of a :payment_amount payment :payment', 'activity_41': ':payment_amount payment (:payment) failed', 'activity_42': ':user created task :task', 'activity_43': ':user updated task :task', @@ -9005,12 +9006,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Message', 'from': 'From', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -9027,7 +9028,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -9054,16 +9055,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -9106,7 +9107,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrator', 'administrator_help': - 'Allow user to manage users, change settings and modify all records', + 'Allow user to manage users, change settings and modify all records', 'user_management': 'User Management', 'users': 'Users', 'new_user': 'New User', @@ -9121,7 +9122,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Invoice Options', 'hide_paid_to_date': 'Hide Paid to Date', 'hide_paid_to_date_help': - 'Only display the \"Paid to Date\" area on your invoices once a payment has been received.', + 'Only display the \"Paid to Date\" area on your invoices once a payment has been received.', 'invoice_embed_documents': 'Embed Documents', 'invoice_embed_documents_help': 'Include attached images in the invoice.', 'all_pages_header': 'Show Header on', @@ -9144,16 +9145,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Quote Footer', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', + 'Automatically email recurring invoices when they are created.', 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', + 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', + 'Automatically archive quotes when they are converted.', 'auto_convert_quote': 'Auto Convert', 'auto_convert_quote_help': - 'Automatically convert a quote to an invoice when approved by a client.', + 'Automatically convert a quote to an invoice when approved by a client.', 'workflow_settings': 'Workflow Settings', 'freq_daily': 'Daily', 'freq_weekly': 'Weekly', @@ -9201,30 +9202,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Show the client signature on the invoice/quote PDF.', + 'Show the client signature on the invoice/quote PDF.', 'show_accept_invoice_terms': 'Invoice Terms Checkbox', 'show_accept_invoice_terms_help': - 'Require client to confirm that they accept the invoice terms.', + 'Require client to confirm that they accept the invoice terms.', 'show_accept_quote_terms': 'Quote Terms Checkbox', 'show_accept_quote_terms_help': - 'Require client to confirm that they accept the quote terms.', + 'Require client to confirm that they accept the quote terms.', 'require_invoice_signature': 'Invoice Signature', 'require_invoice_signature_help': - 'Require client to provide their signature.', + 'Require client to provide their signature.', 'require_quote_signature': 'Quote Signature', 'enable_portal_password': 'Password Protect Invoices', 'enable_portal_password_help': - 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', + 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', 'send_portal_password': 'Generate Automatically', 'send_portal_password_help': - 'If no password is set, one will be generated and sent with the first invoice.', + 'If no password is set, one will be generated and sent with the first invoice.', 'authorization': 'Authorisation', 'subdomain': 'Subdomain', 'domain': 'Domain', 'portal_mode': 'Portal Mode', 'email_signature': 'Regards,', 'enable_email_markup_help': - 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', + 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', 'plain': 'Plain', 'light': 'Light', 'dark': 'Dark', @@ -9253,9 +9254,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Update Address', 'update_address_help': 'Update client\'s address with provided details', 'rate': 'Rate', @@ -9269,13 +9270,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Auto-fill products', 'fill_products_help': - 'Selecting a product will automatically fill in the description and cost', + 'Selecting a product will automatically fill in the description and cost', 'update_products': 'Auto-update products', 'update_products_help': - 'Updating an invoice will automatically update the product library', + 'Updating an invoice will automatically update the product library', 'convert_products': 'Convert Products', 'convert_products_help': - 'Automatically convert product prices to the client\'s currency', + 'Automatically convert product prices to the client\'s currency', 'fees': 'Fees', 'limits': 'Limits', 'provider': 'Provider', @@ -9375,7 +9376,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -9474,7 +9475,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -9678,7 +9679,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Done', 'please_enter_a_client_or_contact_name': - 'Please enter a client or contact name', + 'Please enter a client or contact name', 'dark_mode': 'Dark Mode', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', @@ -9760,7 +9761,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user archived invoice :invoice', 'activity_9': ':user deleted invoice :invoice', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user updated payment :payment', 'activity_12': ':user archived payment :payment', 'activity_13': ':user deleted payment :payment', @@ -9790,7 +9791,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user restored expense :expense', 'activity_39': ':user cancelled a :payment_amount payment :payment', 'activity_40': - ':user refunded :adjustment of a :payment_amount payment :payment', + ':user refunded :adjustment of a :payment_amount payment :payment', 'activity_41': ':payment_amount payment (:payment) failed', 'activity_42': ':user created task :task', 'activity_43': ':user updated task :task', @@ -9992,12 +9993,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Viesti', 'from': 'Lähettäjä', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -10014,7 +10015,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -10041,16 +10042,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -10093,7 +10094,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrator', 'administrator_help': - 'Allow user to manage users, change settings and modify all records', + 'Allow user to manage users, change settings and modify all records', 'user_management': 'Käyttäjänhallinta', 'users': 'Käyttäjät', 'new_user': 'New User', @@ -10108,7 +10109,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Laskun valinnat', 'hide_paid_to_date': 'Piilota \"Maksettu tähän asti\"', 'hide_paid_to_date_help': - 'Näytä \"Maksettava päivämäärään mennessä\" kenttä laskuillasi vain maksetuilla laskuilla.', + 'Näytä \"Maksettava päivämäärään mennessä\" kenttä laskuillasi vain maksetuilla laskuilla.', 'invoice_embed_documents': 'Embed Documents', 'invoice_embed_documents_help': 'Include attached images in the invoice.', 'all_pages_header': 'Show Header on', @@ -10131,16 +10132,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Tarjouksen alatunniste', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', + 'Automatically email recurring invoices when they are created.', 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', + 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', + 'Automatically archive quotes when they are converted.', 'auto_convert_quote': 'Auto Convert', 'auto_convert_quote_help': - 'Automatically convert a quote to an invoice when approved by a client.', + 'Automatically convert a quote to an invoice when approved by a client.', 'workflow_settings': 'Workflow Settings', 'freq_daily': 'Daily', 'freq_weekly': 'Weekly', @@ -10188,30 +10189,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Show the client signature on the invoice/quote PDF.', + 'Show the client signature on the invoice/quote PDF.', 'show_accept_invoice_terms': 'Invoice Terms Checkbox', 'show_accept_invoice_terms_help': - 'Require client to confirm that they accept the invoice terms.', + 'Require client to confirm that they accept the invoice terms.', 'show_accept_quote_terms': 'Quote Terms Checkbox', 'show_accept_quote_terms_help': - 'Require client to confirm that they accept the quote terms.', + 'Require client to confirm that they accept the quote terms.', 'require_invoice_signature': 'Invoice Signature', 'require_invoice_signature_help': - 'Require client to provide their signature.', + 'Require client to provide their signature.', 'require_quote_signature': 'Quote Signature', 'enable_portal_password': 'Password Protect Invoices', 'enable_portal_password_help': - 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', + 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', 'send_portal_password': 'Generate Automatically', 'send_portal_password_help': - 'If no password is set, one will be generated and sent with the first invoice.', + 'If no password is set, one will be generated and sent with the first invoice.', 'authorization': 'Authorization', 'subdomain': 'Alidomain', 'domain': 'Domain', 'portal_mode': 'Portal Mode', 'email_signature': 'Ystävällisesti,', 'enable_email_markup_help': - 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', + 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', 'plain': 'Yksinkertainen', 'light': 'Vaalea', 'dark': 'Tumma', @@ -10240,9 +10241,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Päivitä osoite', 'update_address_help': 'Päivitä asiakkaan osoite annetuilla tiedoilla', 'rate': 'á hinta', @@ -10256,13 +10257,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Lisää automaattisesti tuotteita', 'fill_products_help': - 'Tuotteen valinta täyttää kuvauksen ja hinnan automaattisesti', + 'Tuotteen valinta täyttää kuvauksen ja hinnan automaattisesti', 'update_products': 'Päivitä automaattisesti tuotteet', 'update_products_help': - 'Laskun päivittäminen päivittää tuotetietokannan automaattisesti', + 'Laskun päivittäminen päivittää tuotetietokannan automaattisesti', 'convert_products': 'Convert Products', 'convert_products_help': - 'Automatically convert product prices to the client\'s currency', + 'Automatically convert product prices to the client\'s currency', 'fees': 'Fees', 'limits': 'Limits', 'provider': 'Provider', @@ -10362,7 +10363,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -10461,7 +10462,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -10665,7 +10666,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Valmis', 'please_enter_a_client_or_contact_name': - 'Please enter a client or contact name', + 'Please enter a client or contact name', 'dark_mode': 'Tumma tila', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', @@ -10747,7 +10748,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user arkistoi laskun :invoice', 'activity_9': ':user poisti laskun :invoice', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user päivitti maksun :payment', 'activity_12': ':user arkistoi maksun :payment', 'activity_13': ':user poisti maksun :payment', @@ -10777,7 +10778,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user palautti kulun :expense', 'activity_39': ':user cancelled a :payment_amount payment :payment', 'activity_40': - ':user refunded :adjustment of a :payment_amount payment :payment', + ':user refunded :adjustment of a :payment_amount payment :payment', 'activity_41': ':payment_amount payment (:payment) failed', 'activity_42': ':user loi tehtävän :task', 'activity_43': ':user päivitti tehtävän :task', @@ -10979,12 +10980,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Message', 'from': 'De', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Ajuster le frais de pourcentage au compte', @@ -11001,7 +11002,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Mot de passe trop court', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -11028,16 +11029,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -11080,7 +11081,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrateur', 'administrator_help': - 'Permettre à l\'utilisateur de gérer les utilisateurs, modifier les paramètres et de modifier tous les enregistrements', + 'Permettre à l\'utilisateur de gérer les utilisateurs, modifier les paramètres et de modifier tous les enregistrements', 'user_management': 'Gestion des utilisateurs', 'users': 'Utilisateurs', 'new_user': 'Nouvel utilisateur', @@ -11095,10 +11096,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Options de facturation', 'hide_paid_to_date': 'Masquer \"Payé à ce jour\"', 'hide_paid_to_date_help': - 'Afficher la ligne \"Payé à ce jour\" sur vos factures seulement une fois qu\'un paiement a été reçu.', + 'Afficher la ligne \"Payé à ce jour\" sur vos factures seulement une fois qu\'un paiement a été reçu.', 'invoice_embed_documents': 'Documents intégrés', 'invoice_embed_documents_help': - 'Inclure l\'image attachée dans la facture.', + 'Inclure l\'image attachée dans la facture.', 'all_pages_header': 'Voir les en-têtes sur', 'all_pages_footer': 'Voir les pieds de page sur', 'first_page': 'Première page', @@ -11119,16 +11120,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Pied de page des devis', 'auto_email_invoice': 'Envoyer automatiquement par courriel', 'auto_email_invoice_help': - 'Envoyer automatiquement par courriel les factures récurrentes lorsqu\'elles sont créés.', + 'Envoyer automatiquement par courriel les factures récurrentes lorsqu\'elles sont créés.', 'auto_archive_invoice': 'Archiver automatiquement', 'auto_archive_invoice_help': - 'Archiver automatiquement les factures lorsqu\'elles sont payées.', + 'Archiver automatiquement les factures lorsqu\'elles sont payées.', 'auto_archive_quote': 'Archiver automatiquement', 'auto_archive_quote_help': - 'Archiver automatiquement les devis lorsqu\'ils sont convertis.', + 'Archiver automatiquement les devis lorsqu\'ils sont convertis.', 'auto_convert_quote': 'Convertir automatiquement', 'auto_convert_quote_help': - 'Convertir automatiquement un devis en facture dès qu\'il est approuvé par le client.', + 'Convertir automatiquement un devis en facture dès qu\'il est approuvé par le client.', 'workflow_settings': 'Paramètres de flux de travail', 'freq_daily': 'Quotidien', 'freq_weekly': 'Hebdomadaire', @@ -11176,30 +11177,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Afficher sur le PDF', 'signature_on_pdf_help': - 'Afficher la signature du client sur la facture / le devis PDF.', + 'Afficher la signature du client sur la facture / le devis PDF.', 'show_accept_invoice_terms': - 'Case à cocher pour les conditions de facturation', + 'Case à cocher pour les conditions de facturation', 'show_accept_invoice_terms_help': - 'Exiger que le client confirme qu\'il accepte les conditions de facturation', + 'Exiger que le client confirme qu\'il accepte les conditions de facturation', 'show_accept_quote_terms': 'Case à cocher pour les conditions d\'offre', 'show_accept_quote_terms_help': - 'Exiger que le client confirme qu\'il accepte les conditions de l\'offre', + 'Exiger que le client confirme qu\'il accepte les conditions de l\'offre', 'require_invoice_signature': 'Signature de facture', 'require_invoice_signature_help': 'Exiger que le client signe', 'require_quote_signature': 'Signature de l\'offre', 'enable_portal_password': 'Protéger les factures avec un mot de passe', 'enable_portal_password_help': - 'Autoriser la création d\'un mot de passe pour chaque contact. Si un mot de passe est créé, le contact devra entrer un mot de passe avant de voir les factures.', + 'Autoriser la création d\'un mot de passe pour chaque contact. Si un mot de passe est créé, le contact devra entrer un mot de passe avant de voir les factures.', 'send_portal_password': 'Générer automatiquement', 'send_portal_password_help': - 'Si aucun mot de passe n\'est créé, un sera généré et envoyé avec la première facture.', + 'Si aucun mot de passe n\'est créé, un sera généré et envoyé avec la première facture.', 'authorization': 'Autorisation', 'subdomain': 'Sous-domaine', 'domain': 'Domaine', 'portal_mode': 'Portal Mode', 'email_signature': 'Cordialement,', 'enable_email_markup_help': - 'Rendez le règlement de vos clients plus facile en ajoutant les markup schema.org à vos courriels.', + 'Rendez le règlement de vos clients plus facile en ajoutant les markup schema.org à vos courriels.', 'plain': 'Brut', 'light': 'Clair', 'dark': 'Sombre', @@ -11228,12 +11229,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Logos des cartes acceptées', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Mettre à jour l\'adresse', 'update_address_help': - 'Mettre à jour l\'adresse du client avec les détails fournis', + 'Mettre à jour l\'adresse du client avec les détails fournis', 'rate': 'Taux', 'tax_rate': 'Taux de taxe', 'new_tax_rate': 'Nouveau taux de taxe', @@ -11245,13 +11246,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Remplissage auto des produits', 'fill_products_help': - 'La sélection d’un produit entrainera la MAJ de la description et du prix', + 'La sélection d’un produit entrainera la MAJ de la description et du prix', 'update_products': 'Mise à jour auto des produits', 'update_products_help': - 'La mise à jour d\'une facture entraîne la mise à jour des produits', + 'La mise à jour d\'une facture entraîne la mise à jour des produits', 'convert_products': 'Convertir les produits', 'convert_products_help': - 'Convertir automatiquement les prix des produits dans la devise du client', + 'Convertir automatiquement les prix des produits dans la devise du client', 'fees': 'Frais', 'limits': 'Limites', 'provider': 'Provider', @@ -11351,7 +11352,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Veuillez entrer un prénom', 'please_enter_a_last_name': 'Veuillez entrer un nom', 'please_agree_to_terms_and_privacy': - 'Veuillez accepter les conditions d\'utilisation et la politique de confidentialité pour créer un compte.', + 'Veuillez accepter les conditions d\'utilisation et la politique de confidentialité pour créer un compte.', 'i_agree_to_the': 'J\'accepte les', 'terms_of_service_link': 'Conditions d\'utilisation', 'privacy_policy_link': 'Politique de confidentialité', @@ -11365,7 +11366,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'create_new': 'Créer', 'no_record_selected': 'Aucun enregistrement sélectionné', 'error_unsaved_changes': - 'Veuillez enregistrer ou annuler vos modifications', + 'Veuillez enregistrer ou annuler vos modifications', 'download': 'Télécharger', 'requires_an_enterprise_plan': 'Χρειάζεται πλάνο επιχείρησης', 'take_picture': 'Φωτογραφίσετε', @@ -11451,7 +11452,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Moyenne', 'unapproved': 'Non approuvé', 'authenticate_to_change_setting': - 'Veuillez vous connecter pour changer ce paramètre', + 'Veuillez vous connecter pour changer ce paramètre', 'locked': 'Verrouillé', 'authenticate': 'Connexion', 'please_authenticate': 'Veuillez vous connecter', @@ -11655,10 +11656,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Terminé', 'please_enter_a_client_or_contact_name': - 'Veuillez introduire un nom de client', + 'Veuillez introduire un nom de client', 'dark_mode': 'Mode sombre', 'restart_app_to_apply_change': - 'Recommencer k\'app pour introduire l\'app change', + 'Recommencer k\'app pour introduire l\'app change', 'refresh_data': 'Rafraîchir les données', 'blank_contact': 'Details pour contacter la Banque', 'activity': 'Activité', @@ -11738,7 +11739,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user a archivé la facture :invoice', 'activity_9': ':user a supprimé la facture :invoice', 'activity_10': - ':contact a saisi un paiement :payment concernant :invoice pour :invoiceclient', + ':contact a saisi un paiement :payment concernant :invoice pour :invoiceclient', 'activity_11': ':user a mis à jour le moyen de paiement :payment', 'activity_12': ':user a archivé le moyen de paiement :payment', 'activity_13': ':user a supprimé le moyen de paiement :payment', @@ -11768,7 +11769,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user a restauré la dépense :expense', 'activity_39': ':user a annulé un paiement de :payment_amount (:payment)', 'activity_40': - ':user a remboursé :adjustment d\'un paiement de :payment_amount (:payment)', + ':user a remboursé :adjustment d\'un paiement de :payment_amount (:payment)', 'activity_41': 'Le paiement de :payment_amount a échoué (:payment)', 'activity_42': ':user a créé la tâche :task', 'activity_43': ':user a mis à jour la tâche :task', @@ -11970,12 +11971,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Message', 'from': 'De', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Ajuster le frais de pourcentage au compte', @@ -11992,7 +11993,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Le mot de passe est trop court', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -12019,16 +12020,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -12071,7 +12072,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrateur', 'administrator_help': - 'Permet à un utilisateur de gérer d\'autres utilisateurs, modifier les paramètres et tous les enregistrements.', + 'Permet à un utilisateur de gérer d\'autres utilisateurs, modifier les paramètres et tous les enregistrements.', 'user_management': 'Gestion des utilisateurs', 'users': 'Utilisateurs', 'new_user': 'Nouvel utilisateur', @@ -12086,10 +12087,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Options de facturation', 'hide_paid_to_date': 'Masquer \"Payé à ce jour\"', 'hide_paid_to_date_help': - 'Afficher seulement la ligne \"Payé à ce jour\"sur les factures pour lesquelles il y a au moins un paiement.', + 'Afficher seulement la ligne \"Payé à ce jour\"sur les factures pour lesquelles il y a au moins un paiement.', 'invoice_embed_documents': 'Documents intégrés', 'invoice_embed_documents_help': - 'Inclure les images jointes dans la facture.', + 'Inclure les images jointes dans la facture.', 'all_pages_header': 'Afficher l\'entête sur', 'all_pages_footer': 'Afficher le pied de page sur', 'first_page': 'première page', @@ -12110,16 +12111,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Pied de soumission par défaut', 'auto_email_invoice': 'Envoi automatique', 'auto_email_invoice_help': - 'Envoi automatiquement les factures récurrentes lorsqu\'elles sont créées.', + 'Envoi automatiquement les factures récurrentes lorsqu\'elles sont créées.', 'auto_archive_invoice': 'Autoarchivage', 'auto_archive_invoice_help': - 'Archive automatiquement les soumissions lorsqu\'elles sont converties.', + 'Archive automatiquement les soumissions lorsqu\'elles sont converties.', 'auto_archive_quote': 'Autoarchivage', 'auto_archive_quote_help': - 'Archive automatiquement les soumissions lorsqu\'elles sont converties.', + 'Archive automatiquement les soumissions lorsqu\'elles sont converties.', 'auto_convert_quote': 'Autoconversion', 'auto_convert_quote_help': - 'Convertir automatiquement une soumission en facture lorsque le client l\'accepte.', + 'Convertir automatiquement une soumission en facture lorsque le client l\'accepte.', 'workflow_settings': 'Paramètres de flux de travail', 'freq_daily': 'Quotidienne', 'freq_weekly': 'Hebdomadaire', @@ -12167,31 +12168,31 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Afficher sur le PDF', 'signature_on_pdf_help': - 'Afficher la signature du client sur la facture/soumission PDF.', + 'Afficher la signature du client sur la facture/soumission PDF.', 'show_accept_invoice_terms': - 'Case à cocher pour les conditions de facturation', + 'Case à cocher pour les conditions de facturation', 'show_accept_invoice_terms_help': - 'Requiert du client qu\'il confirme et accepte les conditions de facturation', + 'Requiert du client qu\'il confirme et accepte les conditions de facturation', 'show_accept_quote_terms': - 'Case à cocher pour les conditions de soumssion', + 'Case à cocher pour les conditions de soumssion', 'show_accept_quote_terms_help': - 'Requiert du client qu\'il confirme et accepte les conditions de soumission', + 'Requiert du client qu\'il confirme et accepte les conditions de soumission', 'require_invoice_signature': 'Signature de facture', 'require_invoice_signature_help': 'Requiert une signature du client', 'require_quote_signature': 'Signature de soumission', 'enable_portal_password': 'Protéger les factures avec un mot de passe', 'enable_portal_password_help': - 'Permet de spécifier un mot de passe pour chaque contact. Si un mot de passe est spécifié, le contact devra saisir ce mot de passe pour visualiser ses factures.', + 'Permet de spécifier un mot de passe pour chaque contact. Si un mot de passe est spécifié, le contact devra saisir ce mot de passe pour visualiser ses factures.', 'send_portal_password': 'Générer automatiquement', 'send_portal_password_help': - 'Si aucun mot de passe n\'est spécifié, le client recevra un mot de passe autogénéré lors de l\'envoi de la première facture.', + 'Si aucun mot de passe n\'est spécifié, le client recevra un mot de passe autogénéré lors de l\'envoi de la première facture.', 'authorization': 'Autorisation', 'subdomain': 'sous-domaine', 'domain': 'Domaine', 'portal_mode': 'Portal Mode', 'email_signature': 'Cordialement,', 'enable_email_markup_help': - 'rendez le paiement plus facile à vos client en ajoutant à vos courriel, le marquage de schema.org.', + 'rendez le paiement plus facile à vos client en ajoutant à vos courriel, le marquage de schema.org.', 'plain': 'Ordinaire', 'light': 'Clair', 'dark': 'Foncé', @@ -12220,12 +12221,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Logos des cartes acceptées', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Mise à jour de l\\adresse', 'update_address_help': - 'Met à jour l\'adresse du client avec les informations fournies', + 'Met à jour l\'adresse du client avec les informations fournies', 'rate': 'Taux', 'tax_rate': 'Taux de taxe', 'new_tax_rate': 'Nouveau taux de taxe', @@ -12237,13 +12238,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Remplissage auto des produits', 'fill_products_help': - 'La sélection d\'un produit entrainera la mise à jour de la description et du prix', + 'La sélection d\'un produit entrainera la mise à jour de la description et du prix', 'update_products': 'Mise à jour auto des produits', 'update_products_help': - 'La mise à jour d\'une facture entraîne la mise à jour des produits', + 'La mise à jour d\'une facture entraîne la mise à jour des produits', 'convert_products': 'Convertir les produits', 'convert_products_help': - 'Convertir automatiquement le prix des produits dans la devise du client', + 'Convertir automatiquement le prix des produits dans la devise du client', 'fees': 'Frais', 'limits': 'Limites', 'provider': 'Provider', @@ -12343,7 +12344,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Veuillez entrer votre prénom', 'please_enter_a_last_name': 'Veuillez entrer votre nom', 'please_agree_to_terms_and_privacy': - 'Vous devez accepter les conditions et la politique de confidentialité pour créer un compte.', + 'Vous devez accepter les conditions et la politique de confidentialité pour créer un compte.', 'i_agree_to_the': 'J\'accepte', 'terms_of_service_link': 'les conditions', 'privacy_policy_link': 'la politique de confidentialité', @@ -12357,7 +12358,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'create_new': 'Créer', 'no_record_selected': 'Aucun enregistrement sélectionné', 'error_unsaved_changes': - 'Veuillez sauvegarder ou annuler vos modifications', + 'Veuillez sauvegarder ou annuler vos modifications', 'download': 'Télécharger', 'requires_an_enterprise_plan': 'Le plan Entreprise est requis', 'take_picture': 'Prendre un photo', @@ -12443,7 +12444,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Moyenne', 'unapproved': 'Non approuvé', 'authenticate_to_change_setting': - 'Veuillez vous connecter pour changer ce paramètre', + 'Veuillez vous connecter pour changer ce paramètre', 'locked': 'Verrouillé', 'authenticate': 'Connexion', 'please_authenticate': 'Veuillez vous connecter', @@ -12647,10 +12648,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Valider', 'please_enter_a_client_or_contact_name': - 'Veuillez saisir un nom de client ou de contact', + 'Veuillez saisir un nom de client ou de contact', 'dark_mode': 'Mode foncé', 'restart_app_to_apply_change': - 'Redémarrez l\'app pour mettre à jour les changements', + 'Redémarrez l\'app pour mettre à jour les changements', 'refresh_data': 'Actualiser les données', 'blank_contact': 'Contact vide', 'activity': 'Activité', @@ -12726,12 +12727,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_4': ':user a créé la facture :invoice', 'activity_5': ':user a mis à jour la facture :invoice', 'activity_6': - ':user a envoyé par courriel la facture :invoice pour :client à :contact', + ':user a envoyé par courriel la facture :invoice pour :client à :contact', 'activity_7': ':contact a visualisé la facture :invoice pour :client', 'activity_8': ':user a archivé la facture :invoice', 'activity_9': ':user a supprimé la facture :invoice', 'activity_10': - ':contact a saisi le paiement :payment de :payment_amount de la facture :invoice pour :client', + ':contact a saisi le paiement :payment de :payment_amount de la facture :invoice pour :client', 'activity_11': ':user a mis à jour le paiement :payment', 'activity_12': ':user a archivé le paiement :payment', 'activity_13': ':user a supprimé le paiement :payment', @@ -12742,7 +12743,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_18': ':user a créé la soumission :quote', 'activity_19': ':user a mis à jour la soumission :quote', 'activity_20': - ':user a envoyé par courriel la soumission :quote pour :client à :contact', + ':user a envoyé par courriel la soumission :quote pour :client à :contact', 'activity_21': ':contact a visualisé la soumission :quote', 'activity_22': ':user a archivé la soumission :quote', 'activity_23': ':user a supprimé la soumission :quote', @@ -12762,7 +12763,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user a restauré la dépense :expense', 'activity_39': ':user a annulé un paiement :payment de :payment_amount', 'activity_40': - ':user a remboursé :adjustment d\'un paiement :payment de :payment_amount', + ':user a remboursé :adjustment d\'un paiement :payment de :payment_amount', 'activity_41': 'Le paiement de :payment_amount a échoué (:payment)', 'activity_42': ':user a créé la tâche :task', 'activity_43': ':user a mis à jour la tâche :task', @@ -12964,12 +12965,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Nachricht', 'from': 'Von', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Gebühren Prozentsatz an das Konto anpassen', @@ -12986,7 +12987,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Das Passwort ist zu kurz', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -13013,16 +13014,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -13065,7 +13066,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrator', 'administrator_help': - 'Dem Benutzer erlauben, andere Benutzer zu administrieren, Einstellungen zu ändern und alle Einträge zu bearbeiten', + 'Dem Benutzer erlauben, andere Benutzer zu administrieren, Einstellungen zu ändern und alle Einträge zu bearbeiten', 'user_management': 'Benutzerverwaltung', 'users': 'Benutzer', 'new_user': 'Neuer Benutzer', @@ -13080,10 +13081,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Rechnungsoptionen', 'hide_paid_to_date': '\"Bereits gezahlt\" ausblenden', 'hide_paid_to_date_help': - '\"Bereits gezahlt\" nur anzeigen, wenn eine Zahlung eingegangen ist.', + '\"Bereits gezahlt\" nur anzeigen, wenn eine Zahlung eingegangen ist.', 'invoice_embed_documents': 'Dokumente einbetten', 'invoice_embed_documents_help': - 'Bildanhänge zu den Rechnungen hinzufügen.', + 'Bildanhänge zu den Rechnungen hinzufügen.', 'all_pages_header': 'Zeige Kopf auf', 'all_pages_footer': 'Zeige Fußzeilen auf', 'first_page': 'Erste Seite', @@ -13104,16 +13105,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Angebots-Fußzeile', 'auto_email_invoice': 'Automatische Email', 'auto_email_invoice_help': - 'Senden Sie wiederkehrende Rechnungen automatisch per E-Mail, wenn sie erstellt werden.', + 'Senden Sie wiederkehrende Rechnungen automatisch per E-Mail, wenn sie erstellt werden.', 'auto_archive_invoice': 'Automatisches Archiv', 'auto_archive_invoice_help': - 'Archivieren Sie Rechnungen automatisch, wenn sie bezahlt sind.', + 'Archivieren Sie Rechnungen automatisch, wenn sie bezahlt sind.', 'auto_archive_quote': 'Automatisches Archiv', 'auto_archive_quote_help': - 'Archivieren Sie Angebote automatisch, wenn sie konvertiert werden.', + 'Archivieren Sie Angebote automatisch, wenn sie konvertiert werden.', 'auto_convert_quote': 'Automatisch konvertieren', 'auto_convert_quote_help': - 'Das Angebot automatisch in eine Rechnung umwandeln wenn es vom Kunden angenommen wird.', + 'Das Angebot automatisch in eine Rechnung umwandeln wenn es vom Kunden angenommen wird.', 'workflow_settings': 'Workflow Einstellungen', 'freq_daily': 'Täglich', 'freq_weekly': 'Wöchentlich', @@ -13161,30 +13162,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Auf PDF anzeigen', 'signature_on_pdf_help': - 'Unterschrift des Kunden auf dem Angebots/Rechnungs PDF anzeigen.', + 'Unterschrift des Kunden auf dem Angebots/Rechnungs PDF anzeigen.', 'show_accept_invoice_terms': 'Checkbox für Rechnungsbedingungen', 'show_accept_invoice_terms_help': - 'Erfordern Sie die Bestätigung der Rechnungsbedingungen durch den Kunden.', + 'Erfordern Sie die Bestätigung der Rechnungsbedingungen durch den Kunden.', 'show_accept_quote_terms': 'Checkbox für Angebotsbedingungen', 'show_accept_quote_terms_help': - 'Erfordern Sie die Bestätigung der Angebotsbedingungen durch den Kunden.', + 'Erfordern Sie die Bestätigung der Angebotsbedingungen durch den Kunden.', 'require_invoice_signature': 'Rechnungsunterschrift', 'require_invoice_signature_help': - 'Erfordern Sie die Unterschrift des Kunden bei Rechnungen.', + 'Erfordern Sie die Unterschrift des Kunden bei Rechnungen.', 'require_quote_signature': 'Angebotsunterschrift', 'enable_portal_password': 'Rechnungen mit Passwort schützen', 'enable_portal_password_help': - 'Erlaubt Ihnen ein Passwort für jeden Kontakt zu erstellen. Wenn ein Passwort erstellt wurde, muss der Kunde dieses eingeben, bevor er eine Rechnung ansehen darf.', + 'Erlaubt Ihnen ein Passwort für jeden Kontakt zu erstellen. Wenn ein Passwort erstellt wurde, muss der Kunde dieses eingeben, bevor er eine Rechnung ansehen darf.', 'send_portal_password': 'Automatisch generieren', 'send_portal_password_help': - 'Wenn kein Passwort gesetzt wurde, wird eins generiert und mit der ersten Rechnung verschickt.', + 'Wenn kein Passwort gesetzt wurde, wird eins generiert und mit der ersten Rechnung verschickt.', 'authorization': 'Genehmigung', 'subdomain': 'Subdomäne', 'domain': 'Domäne', 'portal_mode': 'Portal Mode', 'email_signature': 'Mit freundlichen Grüßen,', 'enable_email_markup_help': - 'Machen Sie es einfacher für Ihre Kunden zu bezahlen, indem Sie schema.org Markup zu Ihren E-Mails hinzufügen.', + 'Machen Sie es einfacher für Ihre Kunden zu bezahlen, indem Sie schema.org Markup zu Ihren E-Mails hinzufügen.', 'plain': 'Einfach', 'light': 'Hell', 'dark': 'Dunkel', @@ -13213,12 +13214,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Logos der akzeptierten Kreditkarten', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Adresse aktualisieren', 'update_address_help': - 'Kundenadresse mit den gemachten Angaben aktualisieren', + 'Kundenadresse mit den gemachten Angaben aktualisieren', 'rate': 'Satz', 'tax_rate': 'Steuersatz', 'new_tax_rate': 'Neuer Steuersatz', @@ -13230,13 +13231,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Produkte automatisch ausfüllen', 'fill_products_help': - 'Beim Auswählen eines Produktes werden automatisch Beschreibung und Kosten ausgefüllt', + 'Beim Auswählen eines Produktes werden automatisch Beschreibung und Kosten ausgefüllt', 'update_products': 'Produkte automatisch aktualisieren', 'update_products_help': - 'Beim Aktualisieren einer Rechnung werden die Produkte automatisch aktualisiert', + 'Beim Aktualisieren einer Rechnung werden die Produkte automatisch aktualisiert', 'convert_products': 'Produkte konvertieren', 'convert_products_help': - 'Produktpreise automatisch in die Währung des Kunden konvertieren', + 'Produktpreise automatisch in die Währung des Kunden konvertieren', 'fees': 'Gebühren', 'limits': 'Grenzwerte', 'provider': 'Provider', @@ -13336,7 +13337,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Bitte geben Sie einen Vornamen ein', 'please_enter_a_last_name': 'Bitte geben Sie einen Nachnamen ein', 'please_agree_to_terms_and_privacy': - 'Bitte stimmen Sie den Nutzungsbedingungen und der Datenschutzerklärung zu, um ein Konto zu erstellen.', + 'Bitte stimmen Sie den Nutzungsbedingungen und der Datenschutzerklärung zu, um ein Konto zu erstellen.', 'i_agree_to_the': 'Ich stimme den', 'terms_of_service_link': 'Nutzungsbedingungen', 'privacy_policy_link': 'Datenschutzerklärung', @@ -13350,7 +13351,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'create_new': 'Neu...', 'no_record_selected': 'Kein Eintrag ausgewählt', 'error_unsaved_changes': - 'Bitte speichern oder verwerfen Sie Ihre Änderungen', + 'Bitte speichern oder verwerfen Sie Ihre Änderungen', 'download': 'Downloaden', 'requires_an_enterprise_plan': 'Benötigt einen Enterprise Plan', 'take_picture': 'Bild aufnehmen', @@ -13436,7 +13437,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Durchschnittlich', 'unapproved': 'Nicht genehmigt', 'authenticate_to_change_setting': - 'Bitte authentifizieren Sie sich, um diese Einstellung zu ändern.', + 'Bitte authentifizieren Sie sich, um diese Einstellung zu ändern.', 'locked': 'Gesperrt', 'authenticate': 'Authentifizieren', 'please_authenticate': 'Bitte authentifizieren Sie sich', @@ -13512,7 +13513,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_your_password': 'Bitte geben Sie Ihr Passwort ein', 'please_enter_your_url': 'Bitte geben Sie Ihre URL ein', 'please_enter_a_product_key': - 'Bitte geben Sie Ihren Produkt schlüssel ein', + 'Bitte geben Sie Ihren Produkt schlüssel ein', 'ascending': 'Aufsteigend', 'descending': 'Absteigend', 'save': 'Speichern', @@ -13605,7 +13606,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_status_id': 'Rechnungs Status', 'quote_status': 'Angebots Status', 'click_plus_to_add_item': - 'Klicken Sie auf +, um ein Element hinzuzufügen.', + 'Klicken Sie auf +, um ein Element hinzuzufügen.', 'click_plus_to_add_time': 'Klicken Sie auf +, um die Zeit hinzuzufügen.', 'count_selected': ':count ausgewählt', 'total': 'Gesamt', @@ -13623,7 +13624,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'updated_at': 'Aktualisiert', 'tax': 'Steuer', 'please_enter_an_invoice_number': - 'Bitte geben Sie eine Rechnungs Nummer ein', + 'Bitte geben Sie eine Rechnungs Nummer ein', 'please_enter_a_quote_number': 'Bitte geben Sie eine Angebots Nummer ein', 'past_due': 'Überfällig', 'draft': 'Entwurf', @@ -13643,10 +13644,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Erledigt', 'please_enter_a_client_or_contact_name': - 'Bitte geben Sie einen Kunden- oder Kontaktnamen ein', + 'Bitte geben Sie einen Kunden- oder Kontaktnamen ein', 'dark_mode': 'Dunkler Modus', 'restart_app_to_apply_change': - 'Starten Sie die App neu, um die Änderung zu übernehmen.', + 'Starten Sie die App neu, um die Änderung zu übernehmen.', 'refresh_data': 'Daten aktualisieren', 'blank_contact': 'Leerer Kontakt', 'activity': 'Aktivität', @@ -13726,7 +13727,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user archivierte Rechnung :invoice', 'activity_9': ':user löschte Rechnung :invoice', 'activity_10': - ':contact gab Zahlungsinformation :payment über :payment_amount für Rechnung :invoice für Kunde :client', + ':contact gab Zahlungsinformation :payment über :payment_amount für Rechnung :invoice für Kunde :client', 'activity_11': ':user aktualisierte Zahlung :payment', 'activity_12': ':user archivierte Zahlung :payment', 'activity_13': ':user löschte Zahlung :payment', @@ -13755,9 +13756,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_36': ':user hat Ausgabe :expense gelöscht', 'activity_37': ':user hat Ausgabe :expense wiederhergestellt', 'activity_39': - ':user brach eine Zahlung über :payment_amount ab :payment', + ':user brach eine Zahlung über :payment_amount ab :payment', 'activity_40': - ':user hat :adjustment von :payment_amount der Zahlung :payment zurück erstattet', + ':user hat :adjustment von :payment_amount der Zahlung :payment zurück erstattet', 'activity_41': ':payment_amount Zahlung (:payment) schlug fehl', 'activity_42': ':user hat Aufgabe :task erstellt', 'activity_43': ':user hat Aufgabe :task bearbeitet', @@ -13959,16 +13960,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Μήνυμα', 'from': 'Από', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': - 'Τροποποιηση του ποσοστού του λογαριασμού για αμοιβή', + 'Τροποποιηση του ποσοστού του λογαριασμού για αμοιβή', 'configure_settings': 'Configure Settings', 'support_forum': 'φόρουμ υποστήριξης', 'about': 'About', @@ -13982,7 +13983,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Ο κωδικός πρόσβασης είναι πολύ μικρός', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -14009,16 +14010,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -14061,7 +14062,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Διαχειριστής', 'administrator_help': - 'Επιτρέψτε στο χρήστη να διαχειρίζεται χρήστες, να αλλάζει ρυθμίσεις και να τροποποιεί όλες τις εγγραφές', + 'Επιτρέψτε στο χρήστη να διαχειρίζεται χρήστες, να αλλάζει ρυθμίσεις και να τροποποιεί όλες τις εγγραφές', 'user_management': 'Διαχειριση Χρηστών', 'users': 'Χρήστες', 'new_user': 'Νέος Χρήστης', @@ -14076,10 +14077,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Επιλογές Τιμολογίου', 'hide_paid_to_date': 'Απόκρυψη Εξοφλημένου Ποσού', 'hide_paid_to_date_help': - 'Εμφάνιση πεδίου \"Εξοφλημένο Ποσό\" μόνο στο παραστατικό όταν ληφθεί μια πληρωμή.', + 'Εμφάνιση πεδίου \"Εξοφλημένο Ποσό\" μόνο στο παραστατικό όταν ληφθεί μια πληρωμή.', 'invoice_embed_documents': 'Ενσωματωμένα Έγγραφα', 'invoice_embed_documents_help': - 'Συμπεριλάβετε τις συνημμένες εικόνες στο τιμολόγιο', + 'Συμπεριλάβετε τις συνημμένες εικόνες στο τιμολόγιο', 'all_pages_header': 'Εμφάνιση Κεφαλίδας', 'all_pages_footer': 'Εμφάνιση Υποσέλιδου', 'first_page': 'Πρώτη σελίδα', @@ -14100,16 +14101,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Υποσέλιδο Προσφοράς', 'auto_email_invoice': 'Αυτόματο Email', 'auto_email_invoice_help': - 'Αυτόματη αποστολή επαναλαμβανόμενων τιμολογίων με email όταν δημιουργηθούν.', + 'Αυτόματη αποστολή επαναλαμβανόμενων τιμολογίων με email όταν δημιουργηθούν.', 'auto_archive_invoice': 'Αυτόματη Αρχειοθέτηση', 'auto_archive_invoice_help': - 'Αυτόματη αρχειοθέτηση τιμολογίων όταν εξοφληθούν.', + 'Αυτόματη αρχειοθέτηση τιμολογίων όταν εξοφληθούν.', 'auto_archive_quote': 'Αυτόματη Αρχειοθέτηση', 'auto_archive_quote_help': - 'Αυτόματη αρχειοθέτηση προσφορών όταν μετατραπούν.', + 'Αυτόματη αρχειοθέτηση προσφορών όταν μετατραπούν.', 'auto_convert_quote': 'Αυτόματη Μετατροπή', 'auto_convert_quote_help': - 'Αυτόματη μετατροπή της προσφοράς σε τιμολόγιο μόλις γίνει αποδεκτή από τον πελάτη.', + 'Αυτόματη μετατροπή της προσφοράς σε τιμολόγιο μόλις γίνει αποδεκτή από τον πελάτη.', 'workflow_settings': 'Ρυθμίσεις Ροής Εργασιών', 'freq_daily': 'Ημερήσιο', 'freq_weekly': 'Εβδομάδα', @@ -14157,30 +14158,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Εμφάνισε στο PDF', 'signature_on_pdf_help': - 'Εμφάνισε την υπογραφή του πελάτη στο PDF του τιμολογίου/προσφοράς.', + 'Εμφάνισε την υπογραφή του πελάτη στο PDF του τιμολογίου/προσφοράς.', 'show_accept_invoice_terms': 'Κουτάκι Όρων Τιμολογίου', 'show_accept_invoice_terms_help': - 'Απαίτηση από τον πελάτη να αποδεχθεί τους όρους του τιμολογίου', + 'Απαίτηση από τον πελάτη να αποδεχθεί τους όρους του τιμολογίου', 'show_accept_quote_terms': 'Κουτάκι Όρων Προσφοράς', 'show_accept_quote_terms_help': - 'Απαίτηση από τον πελάτη να αποδεχθεί τους όρους της προσφοράς', + 'Απαίτηση από τον πελάτη να αποδεχθεί τους όρους της προσφοράς', 'require_invoice_signature': 'Υπογραφή Τιμολογίου', 'require_invoice_signature_help': - 'Απαίτηση από τον πελάτη να συμπληρώσει την υπογραφή του.', + 'Απαίτηση από τον πελάτη να συμπληρώσει την υπογραφή του.', 'require_quote_signature': 'Υπογραφή Προσφοράς', 'enable_portal_password': 'Προστασία Τιμολογίων με Κωδικό Πρόσβασης', 'enable_portal_password_help': - 'Επιτρέπει τον καθορισμό κωδικού πρόσβασης για κάθε επαφή. Αν έχει καθοριστεί κωδικός, η επαφή θα υποχρεούται να καταχωρήσει κωδικό πριν την προβολή των τιμολογίων.', + 'Επιτρέπει τον καθορισμό κωδικού πρόσβασης για κάθε επαφή. Αν έχει καθοριστεί κωδικός, η επαφή θα υποχρεούται να καταχωρήσει κωδικό πριν την προβολή των τιμολογίων.', 'send_portal_password': 'Αυτόματη Δημιουργία', 'send_portal_password_help': - 'Εάν δεν έχει οριστεί κωδικό πρόσβασης, θα δημιουργηθεί ένα αυτόματα και θα αποσταλεί με το πρώτο τιμολόγιο.', + 'Εάν δεν έχει οριστεί κωδικό πρόσβασης, θα δημιουργηθεί ένα αυτόματα και θα αποσταλεί με το πρώτο τιμολόγιο.', 'authorization': 'Εξουσιοδότηση', 'subdomain': 'Υποτομέας', 'domain': 'Domain', 'portal_mode': 'Portal Mode', 'email_signature': 'Με εκτίμηση,', 'enable_email_markup_help': - 'Κάντε τη διαδικασία πληρωμής πιο εύκολη για τους πελάτες σας προσθέτοντας σήμανση από το schema.org στα emails σας.', + 'Κάντε τη διαδικασία πληρωμής πιο εύκολη για τους πελάτες σας προσθέτοντας σήμανση από το schema.org στα emails σας.', 'plain': 'Απλό', 'light': 'Ανοιχτό', 'dark': 'Σκούρο', @@ -14209,12 +14210,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Λογότυπα Αποδεκτών Καρτών', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Ενημέρωση Διεύθυνσης', 'update_address_help': - 'Ενημέρωση της διεύθυνσης του πελάτη με τα παρεχόμενα στοιχεία', + 'Ενημέρωση της διεύθυνσης του πελάτη με τα παρεχόμενα στοιχεία', 'rate': 'Ποσοστό', 'tax_rate': 'Ποσοστό Φόρου', 'new_tax_rate': 'Νέο Ποσοστό Φόρου', @@ -14226,13 +14227,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Αυτόματη συμπλήρωση προϊόντων', 'fill_products_help': - 'Επιλέγοντας ένα προϊόν, αυτόματα θα συμπληρωθεί η περιγραφή και η αξία', + 'Επιλέγοντας ένα προϊόν, αυτόματα θα συμπληρωθεί η περιγραφή και η αξία', 'update_products': 'Αυτόματη ενημέρωση προϊόντων', 'update_products_help': - 'Ενημερώνοντας ένα τιμολόγιο, αυτόματα θα ενημερωθεί και η βιβλιοθήκη προϊόντων', + 'Ενημερώνοντας ένα τιμολόγιο, αυτόματα θα ενημερωθεί και η βιβλιοθήκη προϊόντων', 'convert_products': 'Μετατροπή Τιμών Προϊόντων', 'convert_products_help': - 'Αυτόματη μετατροπή τιμών προϊόντων στο νόμισμα συναλλαγών του πελάτη', + 'Αυτόματη μετατροπή τιμών προϊόντων στο νόμισμα συναλλαγών του πελάτη', 'fees': 'Προμήθειες', 'limits': 'Όρια', 'provider': 'Provider', @@ -14332,7 +14333,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Παρακαλούμε εισάγετε μικρό όνομα', 'please_enter_a_last_name': 'Παρακαλούμε εισάγετε επώνυμο', 'please_agree_to_terms_and_privacy': - 'Παρακαλούμε συμφωνήστε με τους όρους χρήσης και την πολιτική απορρήτου για να δημιουργήσετε ένα λογαριασμό.', + 'Παρακαλούμε συμφωνήστε με τους όρους χρήσης και την πολιτική απορρήτου για να δημιουργήσετε ένα λογαριασμό.', 'i_agree_to_the': 'Συμφωνώ με το', 'terms_of_service_link': 'όροι της υπηρεσίας', 'privacy_policy_link': 'πολιτική απορρήτου', @@ -14424,7 +14425,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_project': 'Επιτυχής ανάκτηση project', 'new_project': 'Νέο Project', 'thank_you_for_using_our_app': - 'Ευχαριστούμε που χρησιμοποιήσατε την εφαρμογή μας!', + 'Ευχαριστούμε που χρησιμοποιήσατε την εφαρμογή μας!', 'if_you_like_it': 'Εάν σας αρέσει παρακαλούμε', 'click_here': 'πατήστε εδώ', 'click_here_capital': 'Click here', @@ -14432,7 +14433,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Μέσος όρος', 'unapproved': 'Μη εγκεκριμένη', 'authenticate_to_change_setting': - 'Παρακαλούμε αυθεντικοποιήστε για να αλλάξετε αυτή τη ρύθμιση', + 'Παρακαλούμε αυθεντικοποιήστε για να αλλάξετε αυτή τη ρύθμιση', 'locked': 'Κλειδωμένη', 'authenticate': 'Αυθεντικοποιήστε', 'please_authenticate': 'Παρακαλούμε αυθεντικοποιήστε', @@ -14506,7 +14507,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'refresh_complete': 'Ανανέωση Ολοκληρώθηκε', 'please_enter_your_email': 'Παρακαλώ εισάγετε το email σας', 'please_enter_your_password': - 'Παρακαλώ εισάγετε τον κωδικό πρόσβασής σας', + 'Παρακαλώ εισάγετε τον κωδικό πρόσβασής σας', 'please_enter_your_url': 'Παρακαλώ εισάγετε το URL σας', 'please_enter_a_product_key': 'Παρακαλώ εισάγετε το κλειδί προϊόντος σας', 'ascending': 'Αύξουσα σειρά', @@ -14618,7 +14619,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'updated_at': 'Ενημερώθηκε', 'tax': 'Φόρος', 'please_enter_an_invoice_number': - 'Παρακαλώ εισάγετε ένα αριθμό τιμολογίου', + 'Παρακαλώ εισάγετε ένα αριθμό τιμολογίου', 'please_enter_a_quote_number': 'Παρακαλώ εισάγετε ένα αριθμό προσφοράς', 'past_due': 'Ληγμένα', 'draft': 'Πρόχειρο', @@ -14638,10 +14639,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Έτοιμο', 'please_enter_a_client_or_contact_name': - 'Παρακαλώ εισάγετε ένα πελάτη ή το όνομα μίας επαφής', + 'Παρακαλώ εισάγετε ένα πελάτη ή το όνομα μίας επαφής', 'dark_mode': 'Σκοτεινό Περιβάλλον', 'restart_app_to_apply_change': - 'Επανεκκινήστε την εφαρμογή για να εφαρμόσετε την αλλαγή', + 'Επανεκκινήστε την εφαρμογή για να εφαρμόσετε την αλλαγή', 'refresh_data': 'Ανανέωση Δεδομένων', 'blank_contact': 'Κενή Επαφή', 'activity': 'Δραστηριότητα', @@ -14717,13 +14718,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_4': 'Ο χρήστης :user δημιούργησε το τιμολόγιο :invoice', 'activity_5': 'Ο χρήστης :user ενημέρωσε το τιμολόγιο :invoice', 'activity_6': - 'Ο χρήστης :user έστειλε με email το τιμολόγιο :invoice για τον πελάτη :client στην επαφή :contact', + 'Ο χρήστης :user έστειλε με email το τιμολόγιο :invoice για τον πελάτη :client στην επαφή :contact', 'activity_7': - 'Η επαφή :contact είδε το τιμολόγιο :invoice για τον πελάτη :client', + 'Η επαφή :contact είδε το τιμολόγιο :invoice για τον πελάτη :client', 'activity_8': 'Ο χρήστης :user αρχειοθέτησε το τιμολόγιο :invoice', 'activity_9': 'Ο χρήστης :user διέγραψε το τιμολόγιο :invoice', 'activity_10': - 'Η επαφή :contact καταχώρησε την πληρωμή ποσού :payment_amount για το τιμολόγιο :invoice για τον πελάτη :client', + 'Η επαφή :contact καταχώρησε την πληρωμή ποσού :payment_amount για το τιμολόγιο :invoice για τον πελάτη :client', 'activity_11': 'Ο χρήστης :user ενημέρωσε την πληρωμή :payment', 'activity_12': 'Ο χρήστης :user αρχειοθέτησε την πληρωμή :payment', 'activity_13': 'Ο χρήστης :user διέγραψε την πληρωμή :payment', @@ -14734,7 +14735,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_18': 'Ο χρήστης :user δημιουργησε την προσφορά :quote', 'activity_19': 'Ο χρήστης :user ενημέρωσε την προσφορά :quote', 'activity_20': - 'Ο χρήστης :user έστειλε με email την προσφορά :quote για τον πελάτη :client στην επαφή :contact', + 'Ο χρήστης :user έστειλε με email την προσφορά :quote για τον πελάτη :client στην επαφή :contact', 'activity_21': 'Η επαφή :contact είδε την προσφορά :quote', 'activity_22': 'Ο χρήστης :user αρχειοθέτησε την προσφορά :quote', 'activity_23': 'Ο χρήστης :user διέγραψε την προσφορά :quote', @@ -14744,7 +14745,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_27': 'Ο χρήστης :user επανέφερε την πληρωμή :payment', 'activity_28': 'Ο χρήστης :user επανέφερε την πίστωση :credit', 'activity_29': - 'Η επαφή :contact αποδέχτηκε την προσφορά :quote για τον πελάτη :client', + 'Η επαφή :contact αποδέχτηκε την προσφορά :quote για τον πελάτη :client', 'activity_30': 'Ο χρήστης :user δημιούργησε τον προμηθευτή :vendor', 'activity_31': 'Ο χρήστης :user αρχειοθέτησε τον προμηθευτή :vendor', 'activity_32': 'Ο χρήστης :user διέγραψε τον προμηθευτή :vendor', @@ -14755,7 +14756,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': 'Ο χρήστης :user επανέφερε τη δαπάνη :expense', 'activity_39': ':user ακύρωσε :payment_amount πληρωμής :payment', 'activity_40': - ':user επέστρεψε :adjustment μιας :payment_amount πληρωμής :payment', + ':user επέστρεψε :adjustment μιας :payment_amount πληρωμής :payment', 'activity_41': ':payment_amount πληρωμής (:payment) απέτυχε', 'activity_42': 'Ο χρήστης :user δημιούργησε την εργασία :task', 'activity_43': 'Ο χρήστης :user ενημέρωσε την εργασία :task', @@ -14767,13 +14768,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_49': 'Ο χρήστης :user έκλεισε το αίτημα υποστήριξης :ticket', 'activity_50': 'Ο χρήστης :user συνένωσε το αίτημα υποστήριξης :ticket', 'activity_51': - 'Ο χρήστης :user διαίρεσε στα δύο το αίτημα υποστήριξης :ticket', + 'Ο χρήστης :user διαίρεσε στα δύο το αίτημα υποστήριξης :ticket', 'activity_52': - 'Η επαφή :contact δημιούργησε το αίτημα υποστήριξης :ticket', + 'Η επαφή :contact δημιούργησε το αίτημα υποστήριξης :ticket', 'activity_53': - 'Η επαφή :contact επαναδημιούργησε το αίτημα υποστήριξης :ticket', + 'Η επαφή :contact επαναδημιούργησε το αίτημα υποστήριξης :ticket', 'activity_54': - 'Ο χρήστης :user επαναδημιούργησε το αίτημα υποστήριξης :ticket', + 'Ο χρήστης :user επαναδημιούργησε το αίτημα υποστήριξης :ticket', 'activity_55': 'Η επαφή :contact απάντησε στο αίτημα υποστήριξης :ticket', 'activity_56': 'Ο χρήστης :user είδε το αίτημα υποστήριξης :ticket', 'activity_57': 'System failed to email invoice :invoice', @@ -14961,12 +14962,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Messaggio', 'from': 'Da', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -14983,7 +14984,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -15010,16 +15011,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -15062,7 +15063,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrator', 'administrator_help': - 'Allow user to manage users, change settings and modify all records', + 'Allow user to manage users, change settings and modify all records', 'user_management': 'Gestione utente', 'users': 'Utenti', 'new_user': 'New User', @@ -15077,7 +15078,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Opzioni Fattura', 'hide_paid_to_date': 'Nascondi la data di pagamento', 'hide_paid_to_date_help': - 'Visualizza l\'area \"Pagato alla data\" sulle fatture solo dopo aver ricevuto un pagamento.', + 'Visualizza l\'area \"Pagato alla data\" sulle fatture solo dopo aver ricevuto un pagamento.', 'invoice_embed_documents': 'Embed Documents', 'invoice_embed_documents_help': 'Include attached images in the invoice.', 'all_pages_header': 'Mostra l\'Intestazione nel', @@ -15100,16 +15101,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Piè di Pagina Preventivi', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', + 'Automatically email recurring invoices when they are created.', 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', + 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', + 'Automatically archive quotes when they are converted.', 'auto_convert_quote': 'Auto Convert', 'auto_convert_quote_help': - 'Converti automaticamente un preventivo in una fattura se approvato da un cliente.', + 'Converti automaticamente un preventivo in una fattura se approvato da un cliente.', 'workflow_settings': 'Workflow Settings', 'freq_daily': 'Giornaliero', 'freq_weekly': 'Settimanale', @@ -15157,30 +15158,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Show the client signature on the invoice/quote PDF.', + 'Show the client signature on the invoice/quote PDF.', 'show_accept_invoice_terms': 'Invoice Terms Checkbox', 'show_accept_invoice_terms_help': - 'Setta come obbligatoria l\'accettazione dei termini della fattura.', + 'Setta come obbligatoria l\'accettazione dei termini della fattura.', 'show_accept_quote_terms': 'Quote Terms Checkbox', 'show_accept_quote_terms_help': - 'Setta come obbligatoria l\'accettazione dei termini del preventivo.', + 'Setta come obbligatoria l\'accettazione dei termini del preventivo.', 'require_invoice_signature': 'Firma Fattura', 'require_invoice_signature_help': - 'Richiedi al cliente di firmare la fattura.', + 'Richiedi al cliente di firmare la fattura.', 'require_quote_signature': 'Firma Bozza', 'enable_portal_password': 'Fatture Protette da Password', 'enable_portal_password_help': - 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', + 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', 'send_portal_password': 'Generato Automaticamente', 'send_portal_password_help': - 'If no password is set, one will be generated and sent with the first invoice.', + 'If no password is set, one will be generated and sent with the first invoice.', 'authorization': 'Autorizzazione', 'subdomain': 'Sottodominio', 'domain': 'Dominio', 'portal_mode': 'Portal Mode', 'email_signature': 'Distinti saluti,', 'enable_email_markup_help': - 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', + 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', 'plain': 'Plain', 'light': 'Light', 'dark': 'Dark', @@ -15209,12 +15210,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Aggiorna indirizzo', 'update_address_help': - 'Aggiorna l\'indirizzo del cliente con i dettagli forniti', + 'Aggiorna l\'indirizzo del cliente con i dettagli forniti', 'rate': 'Aliquota', 'tax_rate': 'Tax Rate', 'new_tax_rate': 'New Tax Rate', @@ -15226,13 +15227,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Riempimento automatico prodotti', 'fill_products_help': - 'Selezionare un prodotto farà automaticamente inserire la descrizione ed il costo', + 'Selezionare un prodotto farà automaticamente inserire la descrizione ed il costo', 'update_products': 'Aggiorna automaticamente i prodotti', 'update_products_help': - 'Aggiornare una fatura farà automaticamente aggiornare i prodotti', + 'Aggiornare una fatura farà automaticamente aggiornare i prodotti', 'convert_products': 'Convert Products', 'convert_products_help': - 'Automatically convert product prices to the client\'s currency', + 'Automatically convert product prices to the client\'s currency', 'fees': 'Commissioni', 'limits': 'Limiti', 'provider': 'Provider', @@ -15332,7 +15333,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -15394,7 +15395,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'running': 'In corso', 'resume': 'Riprendi', 'task_errors': - 'Si prega di correggere eventuali tempi di sovrapposizione', + 'Si prega di correggere eventuali tempi di sovrapposizione', 'start': 'Inizia', 'stop': 'Ferma', 'started_task': 'Successfully started task', @@ -15432,7 +15433,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -15636,7 +15637,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Fatto', 'please_enter_a_client_or_contact_name': - 'Please enter a client or contact name', + 'Please enter a client or contact name', 'dark_mode': 'Modalità scura', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', @@ -15718,7 +15719,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user ha archiviato la fattura :invoice', 'activity_9': ':user ha cancellato la fattura :invoice', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user ha aggiornato il pagamento :payment', 'activity_12': ':user ha archiviato il pagamento :payment', 'activity_13': ':user ha cancellato il pagamento :payment', @@ -15748,7 +15749,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': 'L\'utente :user ha ripristinato la spesa :expense', 'activity_39': ':user cancelled a :payment_amount payment :payment', 'activity_40': - ':user refunded :adjustment of a :payment_amount payment :payment', + ':user refunded :adjustment of a :payment_amount payment :payment', 'activity_41': 'pagamento di :payment_amount (:payment) fallito', 'activity_42': 'L\'utente :user ha creato l\'attività :task', 'activity_43': 'L\'utente :user ha aggiornato l\'attività :task', @@ -15950,12 +15951,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'メッセージ', 'from': 'From', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -15972,7 +15973,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -15999,16 +16000,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -16051,7 +16052,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrator', 'administrator_help': - 'Allow user to manage users, change settings and modify all records', + 'Allow user to manage users, change settings and modify all records', 'user_management': 'ユーザ管理', 'users': 'ユーザー', 'new_user': '新しいユーザ', @@ -16066,7 +16067,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': '請求書オプション', 'hide_paid_to_date': 'Hide Paid to Date', 'hide_paid_to_date_help': - 'Only display the \"Paid to Date\" area on your invoices once a payment has been received.', + 'Only display the \"Paid to Date\" area on your invoices once a payment has been received.', 'invoice_embed_documents': 'Embed Documents', 'invoice_embed_documents_help': 'Include attached images in the invoice.', 'all_pages_header': 'Show header on', @@ -16089,16 +16090,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': '見積書フッタ', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', + 'Automatically email recurring invoices when they are created.', 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', + 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', + 'Automatically archive quotes when they are converted.', 'auto_convert_quote': 'Auto Convert', 'auto_convert_quote_help': - 'Automatically convert a quote to an invoice when approved by a client.', + 'Automatically convert a quote to an invoice when approved by a client.', 'workflow_settings': 'Workflow Settings', 'freq_daily': 'Daily', 'freq_weekly': 'Weekly', @@ -16146,30 +16147,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Show the client signature on the invoice/quote PDF.', + 'Show the client signature on the invoice/quote PDF.', 'show_accept_invoice_terms': 'Invoice Terms Checkbox', 'show_accept_invoice_terms_help': - 'Require client to confirm that they accept the invoice terms.', + 'Require client to confirm that they accept the invoice terms.', 'show_accept_quote_terms': 'Quote Terms Checkbox', 'show_accept_quote_terms_help': - 'Require client to confirm that they accept the quote terms.', + 'Require client to confirm that they accept the quote terms.', 'require_invoice_signature': 'Invoice Signature', 'require_invoice_signature_help': - 'Require client to provide their signature.', + 'Require client to provide their signature.', 'require_quote_signature': 'Quote Signature', 'enable_portal_password': 'Password Protect Invoices', 'enable_portal_password_help': - 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', + 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', 'send_portal_password': 'Generate Automatically', 'send_portal_password_help': - 'If no password is set, one will be generated and sent with the first invoice.', + 'If no password is set, one will be generated and sent with the first invoice.', 'authorization': 'Authorization', 'subdomain': 'サブドメイン', 'domain': 'Domain', 'portal_mode': 'Portal Mode', 'email_signature': 'どうぞよろしくお願いいたします。', 'enable_email_markup_help': - 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', + 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', 'plain': 'プレーン', 'light': 'ライト', 'dark': 'ダーク', @@ -16198,9 +16199,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': '住所を更新', 'update_address_help': 'Update client\'s address with provided details', 'rate': '率', @@ -16214,13 +16215,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Auto-fill products', 'fill_products_help': - 'Selecting a product will automatically fill in the description and cost', + 'Selecting a product will automatically fill in the description and cost', 'update_products': 'Auto-update products', 'update_products_help': - 'Updating an invoice will automatically update the product library', + 'Updating an invoice will automatically update the product library', 'convert_products': 'Convert Products', 'convert_products_help': - 'Automatically convert product prices to the client\'s currency', + 'Automatically convert product prices to the client\'s currency', 'fees': 'Fees', 'limits': 'Limits', 'provider': 'Provider', @@ -16320,7 +16321,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -16419,7 +16420,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -16623,7 +16624,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': '完了', 'please_enter_a_client_or_contact_name': - 'Please enter a client or contact name', + 'Please enter a client or contact name', 'dark_mode': 'ダークモード', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', @@ -16705,7 +16706,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user は 請求書 :invoice をアーカイブしました。', 'activity_9': ':user は 請求書 :invoice をアーカイブしました。', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user updated payment :payment', 'activity_12': ':user archived payment :payment', 'activity_13': ':user deleted payment :payment', @@ -16735,7 +16736,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user restored expense :expense', 'activity_39': ':user cancelled a :payment_amount payment :payment', 'activity_40': - ':user refunded :adjustment of a :payment_amount payment :payment', + ':user refunded :adjustment of a :payment_amount payment :payment', 'activity_41': ':payment_amount payment (:payment) failed', 'activity_42': ':user created task :task', 'activity_43': ':user updated task :task', @@ -16937,12 +16938,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Žinutė', 'from': 'Pardavėjas', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -16959,7 +16960,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -16986,16 +16987,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -17038,7 +17039,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administratorius', 'administrator_help': - 'Allow user to manage users, change settings and modify all records', + 'Allow user to manage users, change settings and modify all records', 'user_management': 'User Management', 'users': 'Klientai', 'new_user': 'New User', @@ -17053,7 +17054,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Invoice Options', 'hide_paid_to_date': 'Hide paid to date', 'hide_paid_to_date_help': - 'Only display the \"Paid to Date\" area on your invoices once a payment has been received.', + 'Only display the \"Paid to Date\" area on your invoices once a payment has been received.', 'invoice_embed_documents': 'Įkelti dokumentai', 'invoice_embed_documents_help': 'Include attached images in the invoice.', 'all_pages_header': 'Show header on', @@ -17076,16 +17077,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Quote Footer', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', + 'Automatically email recurring invoices when they are created.', 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', + 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', + 'Automatically archive quotes when they are converted.', 'auto_convert_quote': 'Automatiškai Konvertuoti', 'auto_convert_quote_help': - 'Automatically convert a quote to an invoice when approved by a client.', + 'Automatically convert a quote to an invoice when approved by a client.', 'workflow_settings': 'Workflow Settings', 'freq_daily': 'Daily', 'freq_weekly': 'Weekly', @@ -17133,30 +17134,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Show the client signature on the invoice/quote PDF.', + 'Show the client signature on the invoice/quote PDF.', 'show_accept_invoice_terms': 'Invoice Terms Checkbox', 'show_accept_invoice_terms_help': - 'Require client to confirm that they accept the invoice terms.', + 'Require client to confirm that they accept the invoice terms.', 'show_accept_quote_terms': 'Quote Terms Checkbox', 'show_accept_quote_terms_help': - 'Require client to confirm that they accept the quote terms.', + 'Require client to confirm that they accept the quote terms.', 'require_invoice_signature': 'Invoice Signature', 'require_invoice_signature_help': - 'Require client to provide their signature.', + 'Require client to provide their signature.', 'require_quote_signature': 'Quote Signature', 'enable_portal_password': 'Password Protect Invoices', 'enable_portal_password_help': - 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', + 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', 'send_portal_password': 'Sugeneruoti Automatiškai', 'send_portal_password_help': - 'If no password is set, one will be generated and sent with the first invoice.', + 'If no password is set, one will be generated and sent with the first invoice.', 'authorization': 'Authorization', 'subdomain': 'Subdomain', 'domain': 'Domain', 'portal_mode': 'Portal Mode', 'email_signature': 'Linkiu geros dienos,', 'enable_email_markup_help': - 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', + 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', 'plain': 'Plain', 'light': 'Light', 'dark': 'Dark', @@ -17185,9 +17186,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Update Address', 'update_address_help': 'Update client\'s address with provided details', 'rate': 'Įkainis', @@ -17201,13 +17202,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Auto-fill products', 'fill_products_help': - 'Selecting a product will automatically fill in the description and cost', + 'Selecting a product will automatically fill in the description and cost', 'update_products': 'Auto-update products', 'update_products_help': - 'Updating an invoice will automatically update the product library', + 'Updating an invoice will automatically update the product library', 'convert_products': 'Convert Products', 'convert_products_help': - 'Automatically convert product prices to the client\'s currency', + 'Automatically convert product prices to the client\'s currency', 'fees': 'Fees', 'limits': 'Limits', 'provider': 'Provider', @@ -17307,7 +17308,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -17406,7 +17407,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -17610,7 +17611,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Baigta', 'please_enter_a_client_or_contact_name': - 'Please enter a client or contact name', + 'Please enter a client or contact name', 'dark_mode': 'Dark Mode', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', @@ -17692,7 +17693,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user archived invoice :invoice', 'activity_9': ':user deleted invoice :invoice', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user atnaujino mokėjimą :payment', 'activity_12': ':user archived payment :payment', 'activity_13': ':user deleted payment :payment', @@ -17722,7 +17723,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user restored expense :expense', 'activity_39': ':user cancelled a :payment_amount payment :payment', 'activity_40': - ':user refunded :adjustment of a :payment_amount payment :payment', + ':user refunded :adjustment of a :payment_amount payment :payment', 'activity_41': ':payment_amount mokėjimas (:payment) nepavyko', 'activity_42': ':user created task :task', 'activity_43': ':user updated task :task', @@ -17924,12 +17925,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Порака', 'from': 'Од', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -17946,7 +17947,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -17973,16 +17974,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -18025,7 +18026,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Администратор', 'administrator_help': - 'Дозвола за корисникот да менаџира со корисниците, да ги менува поставките и да ги модифицира сите записи', + 'Дозвола за корисникот да менаџира со корисниците, да ги менува поставките и да ги модифицира сите записи', 'user_management': 'Управување со корисник', 'users': 'Корисници', 'new_user': 'Нов корисник', @@ -18040,10 +18041,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Поставки за фактура', 'hide_paid_to_date': 'Сокриј Платено до датум', 'hide_paid_to_date_help': - 'Прикажи \"Платено до датум\" на фактурите откако ќе биде примено плаќањето.', + 'Прикажи \"Платено до датум\" на фактурите откако ќе биде примено плаќањето.', 'invoice_embed_documents': 'Вметни документи', 'invoice_embed_documents_help': - 'Вклучи ги прикачените слики во фактурата.', + 'Вклучи ги прикачените слики во фактурата.', 'all_pages_header': 'Прикажи заглавје на', 'all_pages_footer': 'Прикажи футер на', 'first_page': 'Прва страна', @@ -18064,16 +18065,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Футер на понуда', 'auto_email_invoice': 'Автоматска е-пошта', 'auto_email_invoice_help': - 'Автоматски испрати рекурентни фактури по е-пошта кога ќе бидат креирани.', + 'Автоматски испрати рекурентни фактури по е-пошта кога ќе бидат креирани.', 'auto_archive_invoice': 'Автоматско архивирање', 'auto_archive_invoice_help': - 'Автоматски архивирај фактури кога ќе бидат платени.', + 'Автоматски архивирај фактури кога ќе бидат платени.', 'auto_archive_quote': 'Автоматско архивирање', 'auto_archive_quote_help': - 'Автоматски архивирај фактури кога ќе бидат конвертирани.', + 'Автоматски архивирај фактури кога ќе бидат конвертирани.', 'auto_convert_quote': 'Автоматско конвертирање', 'auto_convert_quote_help': - 'Автоматски конвертирај понуда во фактура кога истата ќе биде одобрена од клиентот.', + 'Автоматски конвертирај понуда во фактура кога истата ќе биде одобрена од клиентот.', 'workflow_settings': 'Подесувања на текот на работа', 'freq_daily': 'Дневно', 'freq_weekly': 'Неделно', @@ -18121,30 +18122,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Прикажи на PDF', 'signature_on_pdf_help': - 'Прикажи го потписот на клиентот на PDF фактура/понуда.', + 'Прикажи го потписот на клиентот на PDF фактура/понуда.', 'show_accept_invoice_terms': 'Поле за избор на услови за фактура', 'show_accept_invoice_terms_help': - 'Побарај од клиентот да потврди дека ги прифаќа условите на фактурата.', + 'Побарај од клиентот да потврди дека ги прифаќа условите на фактурата.', 'show_accept_quote_terms': 'Поле за избор на услови за понуда', 'show_accept_quote_terms_help': - 'Побарај од клиентот да потврди дека ги прифаќа условите на понудата.', + 'Побарај од клиентот да потврди дека ги прифаќа условите на понудата.', 'require_invoice_signature': 'Потпис на фактура', 'require_invoice_signature_help': - 'Побарај од клиентот да обезбеди потпис.', + 'Побарај од клиентот да обезбеди потпис.', 'require_quote_signature': 'Потпис на понуда', 'enable_portal_password': 'Фактури заштитени со лозинка', 'enable_portal_password_help': - 'Ви дозволува поставување на лозинка за секој контакт. Ако поставите лозинка. контактот ќе мора да ја внесе лозинката пред да ги прегледа фактурите.', + 'Ви дозволува поставување на лозинка за секој контакт. Ако поставите лозинка. контактот ќе мора да ја внесе лозинката пред да ги прегледа фактурите.', 'send_portal_password': 'Генерирај автоматски', 'send_portal_password_help': - 'Ако не е поставена лозинка, ќе се изгенерира и ќе се прати заедно со првата фактура.', + 'Ако не е поставена лозинка, ќе се изгенерира и ќе се прати заедно со првата фактура.', 'authorization': 'Овластување', 'subdomain': 'Поддомен', 'domain': 'Домен', 'portal_mode': 'Portal Mode', 'email_signature': 'Со почит,', 'enable_email_markup_help': - 'Направете го полесно плаќањето за вашите клиенти со додавање на schema.org обележје на вашите е-пошти', + 'Направете го полесно плаќањето за вашите клиенти со додавање на schema.org обележје на вашите е-пошти', 'plain': 'Обично', 'light': 'Светло', 'dark': 'Темно', @@ -18173,12 +18174,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Прифатени логоа на картичка', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Ажурирај адреса', 'update_address_help': - 'Ажурирај ја адресата на клиентот со обезбедените детали', + 'Ажурирај ја адресата на клиентот со обезбедените детали', 'rate': 'Стапка', 'tax_rate': 'Даночна стапка', 'new_tax_rate': 'Нова стапка на данок', @@ -18190,13 +18191,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Автоматско пополнување на продукти', 'fill_products_help': - 'Избирањето на продукт автоматски ќе ги исполни полињата за опис и цена', + 'Избирањето на продукт автоматски ќе ги исполни полињата за опис и цена', 'update_products': 'Автоматско ажурирање на продукти', 'update_products_help': - 'Ажурирањето на факура автоматски ќе ја ажурира библиотеката на продукти ', + 'Ажурирањето на факура автоматски ќе ја ажурира библиотеката на продукти ', 'convert_products': 'Конвертирај продукти', 'convert_products_help': - 'Автоматски конвертирај ги цените на продуктите по валутите на клиентите', + 'Автоматски конвертирај ги цените на продуктите по валутите на клиентите', 'fees': 'Надоместоци', 'limits': 'Ограничувања', 'provider': 'Provider', @@ -18296,7 +18297,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -18395,7 +18396,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -18599,7 +18600,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Завршено', 'please_enter_a_client_or_contact_name': - 'Please enter a client or contact name', + 'Please enter a client or contact name', 'dark_mode': 'Темен режим', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', @@ -18681,7 +18682,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user ја архивира фактурата :invoice', 'activity_9': ':user ја избриша фактурата :invoice', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user го ажурира плаќањето :payment', 'activity_12': ':user го архивира плаќањето :payment', 'activity_13': ':user го избриша плаќањето :payment', @@ -18711,7 +18712,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user го поврати трошокот :expense', 'activity_39': ':user го откажа :payment_amount плаќањето :payment', 'activity_40': - ':user го рефундира :adjustment на :payment_amount плаќање :payment', + ':user го рефундира :adjustment на :payment_amount плаќање :payment', 'activity_41': ':payment_amount плаќање (:payment) е неуспешно', 'activity_42': ':user ја креира задачата :task', 'activity_43': ':user ажурира задачата :task', @@ -18913,12 +18914,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Beskjed', 'from': 'Fra', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -18935,7 +18936,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -18962,16 +18963,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -19014,7 +19015,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrator', 'administrator_help': - 'Allow user to manage users, change settings and modify all records', + 'Allow user to manage users, change settings and modify all records', 'user_management': 'Brukerhåndtering', 'users': 'Brukere', 'new_user': 'New User', @@ -19029,7 +19030,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Faktura alternativer', 'hide_paid_to_date': 'Skjul delbetalinger', 'hide_paid_to_date_help': - 'Bare vis delbetalinger om det har forekommet en delbetaling.', + 'Bare vis delbetalinger om det har forekommet en delbetaling.', 'invoice_embed_documents': 'Embed Dokumenter', 'invoice_embed_documents_help': 'Include attached images in the invoice.', 'all_pages_header': 'Show header on', @@ -19052,16 +19053,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Tilbud Bunntekst', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', + 'Automatically email recurring invoices when they are created.', 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', + 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', + 'Automatically archive quotes when they are converted.', 'auto_convert_quote': 'Auto Convert', 'auto_convert_quote_help': - 'Automatically convert a quote to an invoice when approved by a client.', + 'Automatically convert a quote to an invoice when approved by a client.', 'workflow_settings': 'Workflow Settings', 'freq_daily': 'Daglig', 'freq_weekly': 'Ukentlig', @@ -19109,29 +19110,29 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Show the client signature on the invoice/quote PDF.', + 'Show the client signature on the invoice/quote PDF.', 'show_accept_invoice_terms': 'Invoice Terms Checkbox', 'show_accept_invoice_terms_help': - 'Require client to confirm that they accept the invoice terms.', + 'Require client to confirm that they accept the invoice terms.', 'show_accept_quote_terms': 'Quote Terms Checkbox', 'show_accept_quote_terms_help': - 'Require client to confirm that they accept the quote terms.', + 'Require client to confirm that they accept the quote terms.', 'require_invoice_signature': 'Faktura-signatur', 'require_invoice_signature_help': 'Krever klients signatur.', 'require_quote_signature': 'Tilbuds-signatur', 'enable_portal_password': 'Passord-beskytt fakturaer', 'enable_portal_password_help': - 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', + 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', 'send_portal_password': 'Opprett Automatisk', 'send_portal_password_help': - 'If no password is set, one will be generated and sent with the first invoice.', + 'If no password is set, one will be generated and sent with the first invoice.', 'authorization': 'Autorisasjon', 'subdomain': 'Subdomene', 'domain': 'Domene', 'portal_mode': 'Portal Mode', 'email_signature': 'Med vennlig hilsen,', 'enable_email_markup_help': - 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', + 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', 'plain': 'Plain', 'light': 'Light', 'dark': 'Dark', @@ -19160,9 +19161,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Oppdater Adresse', 'update_address_help': 'Oppdater kundens adresse med oppgitte detaljer', 'rate': 'Sats', @@ -19176,13 +19177,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Automatisk-utfyll produkter', 'fill_products_help': - 'Valg av produkt vil automatisk fylle ut beskrivelse og kostnaden', + 'Valg av produkt vil automatisk fylle ut beskrivelse og kostnaden', 'update_products': 'Automatisk oppdater produkter', 'update_products_help': - 'Å endre en faktura vil automatisk oppdatere produktbilioteket', + 'Å endre en faktura vil automatisk oppdatere produktbilioteket', 'convert_products': 'Convert Products', 'convert_products_help': - 'Automatically convert product prices to the client\'s currency', + 'Automatically convert product prices to the client\'s currency', 'fees': 'Avgifter', 'limits': 'Begrensninger', 'provider': 'Provider', @@ -19282,7 +19283,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -19381,7 +19382,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -19585,7 +19586,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Ferdig', 'please_enter_a_client_or_contact_name': - 'Please enter a client or contact name', + 'Please enter a client or contact name', 'dark_mode': 'Mørk Modus', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', @@ -19667,7 +19668,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user arkiverte faktura :invoice', 'activity_9': ':user slettet faktura :invoice', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user oppdaterte betaling :payment', 'activity_12': ':user arkiverte betaling :payment', 'activity_13': ':user slettet betaling :payment', @@ -19697,7 +19698,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user gjenopprettet utgift :expense', 'activity_39': ':user cancelled a :payment_amount payment :payment', 'activity_40': - ':user refunded :adjustment of a :payment_amount payment :payment', + ':user refunded :adjustment of a :payment_amount payment :payment', 'activity_41': ':payment_amount payment (:payment) failed', 'activity_42': ':user opprettet oppgave :task', 'activity_43': ':user oppdaterte oppgave :task', @@ -19899,12 +19900,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Wiadomość', 'from': 'Od', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -19921,7 +19922,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -19948,16 +19949,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -20000,7 +20001,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrator', 'administrator_help': - 'Zezwól użytkownikowi na zarządzanie użytkownikami, edytowanie ustawień oraz wszystkich danych.', + 'Zezwól użytkownikowi na zarządzanie użytkownikami, edytowanie ustawień oraz wszystkich danych.', 'user_management': 'Zarządzanie użytkownikami', 'users': 'Użytkownicy', 'new_user': 'Nowy użytkownik', @@ -20015,7 +20016,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Opcje faktury', 'hide_paid_to_date': 'Ukryj pole \"Zapłacono dotychczas\"', 'hide_paid_to_date_help': - 'Wyświetlaj \"Zapłacono dotychczas\" tylko przy tych fakturach, do których otrzymano płatność.', + 'Wyświetlaj \"Zapłacono dotychczas\" tylko przy tych fakturach, do których otrzymano płatność.', 'invoice_embed_documents': 'Załączniki', 'invoice_embed_documents_help': 'Wstaw do faktury załączniki graficzne.', 'all_pages_header': 'Pokaż nagłówek na', @@ -20038,16 +20039,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Stopka oferty', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', + 'Automatically email recurring invoices when they are created.', 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', + 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', + 'Automatically archive quotes when they are converted.', 'auto_convert_quote': 'Automatycznie konwertuj', 'auto_convert_quote_help': - 'Utwórz automatycznie fakturę z oferty zaakceptowanej przez klienta.', + 'Utwórz automatycznie fakturę z oferty zaakceptowanej przez klienta.', 'workflow_settings': 'Workflow Settings', 'freq_daily': 'Codziennie', 'freq_weekly': 'Co tydzień', @@ -20095,29 +20096,29 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Show the client signature on the invoice/quote PDF.', + 'Show the client signature on the invoice/quote PDF.', 'show_accept_invoice_terms': 'Przycisk wyboru do warunków faktury', 'show_accept_invoice_terms_help': - 'Wymagaj od klienta potwierdzenia, że akceptuje warunki faktury.', + 'Wymagaj od klienta potwierdzenia, że akceptuje warunki faktury.', 'show_accept_quote_terms': 'Przycisk wyboru do warunków oferty', 'show_accept_quote_terms_help': - 'Wymagaj od klienta potwierdzenia, że akceptuje warunki oferty.', + 'Wymagaj od klienta potwierdzenia, że akceptuje warunki oferty.', 'require_invoice_signature': 'Podpis na fakurze', 'require_invoice_signature_help': 'Wymagaj od klienta podpisania faktury', 'require_quote_signature': 'Podpis na ofercie', 'enable_portal_password': 'Faktury chronione hasłem', 'enable_portal_password_help': - 'Zezwala na utworzenie haseł dla każdego kontaktu. Jeśli hasło zostanie ustanowione, użytkownik będzie musiał podać hasło, aby przeglądać faktury.', + 'Zezwala na utworzenie haseł dla każdego kontaktu. Jeśli hasło zostanie ustanowione, użytkownik będzie musiał podać hasło, aby przeglądać faktury.', 'send_portal_password': 'Wygeneruj automatycznie', 'send_portal_password_help': - 'Wygeneruje hasło automatycznie, jeśli nie zostanie ono wpisane. Klient otrzyma je razem z pierwszą fakturą.', + 'Wygeneruje hasło automatycznie, jeśli nie zostanie ono wpisane. Klient otrzyma je razem z pierwszą fakturą.', 'authorization': 'Autoryzacja', 'subdomain': 'Subdomena', 'domain': 'Domena', 'portal_mode': 'Portal Mode', 'email_signature': 'Z wyrazami szacunku,', 'enable_email_markup_help': - 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', + 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', 'plain': 'Zwykły', 'light': 'Jasny', 'dark': 'Ciemny', @@ -20146,12 +20147,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Aktualizuj adres', 'update_address_help': - 'Zaktualizuj dane adresowe klienta na podstawie dostarczonych informacji', + 'Zaktualizuj dane adresowe klienta na podstawie dostarczonych informacji', 'rate': 'Stawka', 'tax_rate': 'Stawka podatkowa', 'new_tax_rate': 'Nowa stawka podatkowa', @@ -20163,13 +20164,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Automatycznie uzupełniaj produkty', 'fill_products_help': - 'Wybieranie produktu automatycznie uzupełni opis i kwotę', + 'Wybieranie produktu automatycznie uzupełni opis i kwotę', 'update_products': 'Automatycznie aktualizuj produkty', 'update_products_help': - 'Zaktualizowanie faktury automatycznie uaktualni produkt w bibliotece produktów', + 'Zaktualizowanie faktury automatycznie uaktualni produkt w bibliotece produktów', 'convert_products': 'Convert Products', 'convert_products_help': - 'Automatycznie zamieniaj ceny produktu na walutę klienta', + 'Automatycznie zamieniaj ceny produktu na walutę klienta', 'fees': 'Opłaty', 'limits': 'Limity', 'provider': 'Provider', @@ -20269,7 +20270,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -20368,7 +20369,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -20572,10 +20573,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Gotowe', 'please_enter_a_client_or_contact_name': - 'Please enter a client or contact name', + 'Please enter a client or contact name', 'dark_mode': 'Tryb ciemny', 'restart_app_to_apply_change': - 'Uruchom ponownie aplikację, aby zastosować zmianę', + 'Uruchom ponownie aplikację, aby zastosować zmianę', 'refresh_data': 'Refresh Data', 'blank_contact': 'Blank Contact', 'activity': 'Dziennik aktywności', @@ -20655,7 +20656,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user zarchiwizował fakturę :invoice', 'activity_9': ':user usunął fakturę :invoice', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user zaktualizował płatność :payment', 'activity_12': ':user zarchiwizował płatność :payment', 'activity_13': ':user usunął płatność :payment', @@ -20685,7 +20686,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user przywrócił wydatek :expense', 'activity_39': ':user cancelled a :payment_amount payment :payment', 'activity_40': - ':user refunded :adjustment of a :payment_amount payment :payment', + ':user refunded :adjustment of a :payment_amount payment :payment', 'activity_41': 'płatność :payment_amount (:payment) nieudana', 'activity_42': ':user stworzył zadanie :task', 'activity_43': ':user zaktualizował zadanie :task', @@ -20887,12 +20888,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Mensagem', 'from': 'De', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Ajustar o percentual de taxa a contabilizar', @@ -20909,7 +20910,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'A senha é muito curta', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -20936,16 +20937,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -20988,7 +20989,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrador', 'administrator_help': - 'Permite ao usuário gerenciar usuários, mudar configurações e modificar todos os registros', + 'Permite ao usuário gerenciar usuários, mudar configurações e modificar todos os registros', 'user_management': 'Gerenciamento de Usuários', 'users': 'Usuários', 'new_user': 'Novo Usuário', @@ -21003,7 +21004,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Opções da Fatura', 'hide_paid_to_date': 'Ocultar Pago até Hoje', 'hide_paid_to_date_help': - 'Apenas mostrar \"Pago até a Data\" em suas faturas uma vez que o pagamento for recebido.', + 'Apenas mostrar \"Pago até a Data\" em suas faturas uma vez que o pagamento for recebido.', 'invoice_embed_documents': 'Embutir Documentos', 'invoice_embed_documents_help': 'Incluir imagens anexas na fatura.', 'all_pages_header': 'Exibir Cabeçalho em', @@ -21026,16 +21027,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Rodapé do Orçamento', 'auto_email_invoice': 'Email Automático', 'auto_email_invoice_help': - 'Enviar faturas recorrentes por email automaticamente quando forem criadas.', + 'Enviar faturas recorrentes por email automaticamente quando forem criadas.', 'auto_archive_invoice': 'Arquivar Automaticamente', 'auto_archive_invoice_help': - 'Arquivar automaticamente faturas quando forem pagas.', + 'Arquivar automaticamente faturas quando forem pagas.', 'auto_archive_quote': 'Arquivar Automaticamente', 'auto_archive_quote_help': - 'Arquivar automaticamente orçamentos quando forem convertidos.', + 'Arquivar automaticamente orçamentos quando forem convertidos.', 'auto_convert_quote': 'Auto Conversão', 'auto_convert_quote_help': - 'Converter automaticamente um orçamento quando for aprovado pelo cliente.', + 'Converter automaticamente um orçamento quando for aprovado pelo cliente.', 'workflow_settings': 'Configurações de Fluxo de Trabalho', 'freq_daily': 'Diariamente', 'freq_weekly': 'Semanalmente', @@ -21083,30 +21084,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Exibir em PDF', 'signature_on_pdf_help': - 'Exibir a assinatura do cliente no PDF da fatura/orçamento.', + 'Exibir a assinatura do cliente no PDF da fatura/orçamento.', 'show_accept_invoice_terms': 'Checkbox para Condições de Fatura', 'show_accept_invoice_terms_help': - 'Exigir que o cliente confirme que aceita as condições da fatura.', + 'Exigir que o cliente confirme que aceita as condições da fatura.', 'show_accept_quote_terms': 'Checkbox de Condições do Orçamento', 'show_accept_quote_terms_help': - 'Exigir que cliente confirme que aceita as Condições do Orçamento', + 'Exigir que cliente confirme que aceita as Condições do Orçamento', 'require_invoice_signature': 'Assinatura de Fatura', 'require_invoice_signature_help': - 'Exigir que o cliente providencie sua assinatura', + 'Exigir que o cliente providencie sua assinatura', 'require_quote_signature': 'Assinatura de Orçamento', 'enable_portal_password': 'Proteger Faturas com Senha', 'enable_portal_password_help': - 'Permite definir uma senha para cada contato. Se uma senha for definida, o contato deverá informar uma senha antes de visualizar faturas.', + 'Permite definir uma senha para cada contato. Se uma senha for definida, o contato deverá informar uma senha antes de visualizar faturas.', 'send_portal_password': 'Gerar Automaticamente', 'send_portal_password_help': - 'Se nenhuma senha for definida, uma será gerada e enviada com a primeira fatura.', + 'Se nenhuma senha for definida, uma será gerada e enviada com a primeira fatura.', 'authorization': 'Autorização', 'subdomain': 'Subdomínio', 'domain': 'Domínio', 'portal_mode': 'Portal Mode', 'email_signature': 'Atenciosamente,', 'enable_email_markup_help': - 'Tornar mais fácil para os seus clientes efetuarem seus pagamentos acrescentando marcações schema.org a seus emails.', + 'Tornar mais fácil para os seus clientes efetuarem seus pagamentos acrescentando marcações schema.org a seus emails.', 'plain': 'Plano', 'light': 'Claro', 'dark': 'Escuro', @@ -21135,12 +21136,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Logos de Cartões Aceitos', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Atualizar Endereço', 'update_address_help': - 'Atualizar o endereço do cliente com os dados fornecidos', + 'Atualizar o endereço do cliente com os dados fornecidos', 'rate': 'Taxa', 'tax_rate': 'Taxa do Imposto', 'new_tax_rate': 'Nova Taxa de Imposto', @@ -21152,13 +21153,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Auto-preencher produtos', 'fill_products_help': - 'Ao selecionar um produto sua descrição e preço serão automaticamente preenchidos', + 'Ao selecionar um produto sua descrição e preço serão automaticamente preenchidos', 'update_products': 'Atualização automática dos produtos', 'update_products_help': - 'Atualizar uma fatura irá automaticamenteatualizar a biblioteca de produtos', + 'Atualizar uma fatura irá automaticamenteatualizar a biblioteca de produtos', 'convert_products': 'Converter Produtos', 'convert_products_help': - 'Converter automaticamente preços de produtos para a moeda do cliente', + 'Converter automaticamente preços de produtos para a moeda do cliente', 'fees': 'Taxas', 'limits': 'Limites', 'provider': 'Provider', @@ -21258,7 +21259,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -21357,7 +21358,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Médio', 'unapproved': 'Não Aprovado', 'authenticate_to_change_setting': - 'Por favor autentique-se para modificar esta configuração', + 'Por favor autentique-se para modificar esta configuração', 'locked': 'Travado', 'authenticate': 'Autenticar', 'please_authenticate': 'Por favor autentique-se', @@ -21561,7 +21562,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Concluído', 'please_enter_a_client_or_contact_name': - 'Por favor digite um cliente ou nome de contato', + 'Por favor digite um cliente ou nome de contato', 'dark_mode': 'Modo Escuro', 'restart_app_to_apply_change': 'Reinicie o app para aplicar a mudança', 'refresh_data': 'Atualizar Dados', @@ -21643,7 +21644,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user arquivou a fatura :invoice', 'activity_9': ':user excluiu a fatura :invoice', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user atualizou o pagamento :payment', 'activity_12': ':user arquivou o pagamento :payment', 'activity_13': ':user excluiu o pagamento :payment', @@ -21672,9 +21673,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_36': ':user excluiu a despesa :expense', 'activity_37': ':user restaurou a despesa :expense', 'activity_39': - ':user cancelou um pagamento de :payment_amount em :payment', + ':user cancelou um pagamento de :payment_amount em :payment', 'activity_40': - ':user reembolsou :adjustment de um pagamento :payment_amount em :payment', + ':user reembolsou :adjustment de um pagamento :payment_amount em :payment', 'activity_41': 'Pagamento :payment_amount (:payment) falhou', 'activity_42': ':user criou a tarefa :task', 'activity_43': ':user atualizou a tarefa :task', @@ -21876,12 +21877,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Mensagem', 'from': 'De', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -21898,7 +21899,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -21925,16 +21926,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -21977,7 +21978,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrador', 'administrator_help': - 'Permite ao utilizador gerir utilizadores, alterar definições e modificar registos.', + 'Permite ao utilizador gerir utilizadores, alterar definições e modificar registos.', 'user_management': 'Gerir utilizadores', 'users': 'Utilizadores', 'new_user': 'Novo Utilizador', @@ -21992,10 +21993,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Opções da Nota Pag.', 'hide_paid_to_date': 'Ocultar data de pagamento', 'hide_paid_to_date_help': - 'Apenas mostrar a \"Data de Pagamento\" quanto o pagamento tiver sido efetuado.', + 'Apenas mostrar a \"Data de Pagamento\" quanto o pagamento tiver sido efetuado.', 'invoice_embed_documents': 'Documentos Embutidos', 'invoice_embed_documents_help': - 'Incluir imagens anexadas na nota de pagamento.', + 'Incluir imagens anexadas na nota de pagamento.', 'all_pages_header': 'Mostrar cabeçalho ativo', 'all_pages_footer': 'Mostrar rodapé ativo', 'first_page': 'primeira página', @@ -22016,16 +22017,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Rodapé do Orçamento', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', + 'Automatically email recurring invoices when they are created.', 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', + 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', + 'Automatically archive quotes when they are converted.', 'auto_convert_quote': 'Auto Convert', 'auto_convert_quote_help': - 'Converter automaticamente um orçamento quando for aprovado pelo cliente.', + 'Converter automaticamente um orçamento quando for aprovado pelo cliente.', 'workflow_settings': 'Workflow Settings', 'freq_daily': 'Daily', 'freq_weekly': 'Semanal', @@ -22073,30 +22074,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Show the client signature on the invoice/quote PDF.', + 'Show the client signature on the invoice/quote PDF.', 'show_accept_invoice_terms': 'Checkbox para Termos da Nota de Pagamento', 'show_accept_invoice_terms_help': - 'Requer que o cliente confirme que aceita os termos da nota de pagamento.', + 'Requer que o cliente confirme que aceita os termos da nota de pagamento.', 'show_accept_quote_terms': 'Checkbox para Termos do Orçamento', 'show_accept_quote_terms_help': - 'Requer que o cliente confirme que aceita os termos do orçamento.', + 'Requer que o cliente confirme que aceita os termos do orçamento.', 'require_invoice_signature': 'Assinatura da Nota de Pagamento', 'require_invoice_signature_help': - 'Requer que o cliente introduza a sua assinatura.', + 'Requer que o cliente introduza a sua assinatura.', 'require_quote_signature': 'Assinatura de Orçamento', 'enable_portal_password': 'Proteger notas de pag. com palavra-passe', 'enable_portal_password_help': - 'Permite definir uma palavra-passe para cada contacto. Se uma palavra-passe for definida, o contacto deverá introduzir a palavra-passe antes de visualizar a nota de pagamento.', + 'Permite definir uma palavra-passe para cada contacto. Se uma palavra-passe for definida, o contacto deverá introduzir a palavra-passe antes de visualizar a nota de pagamento.', 'send_portal_password': 'Generate Automatically', 'send_portal_password_help': - 'Se não definir uma palavra-passe, será gerada uma automaticamente e enviada com a primeira nota de pagamento.', + 'Se não definir uma palavra-passe, será gerada uma automaticamente e enviada com a primeira nota de pagamento.', 'authorization': 'Autorização', 'subdomain': 'Subdomínio', 'domain': 'Domínio', 'portal_mode': 'Portal Mode', 'email_signature': 'Atenciosamente,', 'enable_email_markup_help': - 'Tornar mais fácil para os seus clientes efetuarem os pagamentos, acrescentando marcação schema.org a seus e-mails.', + 'Tornar mais fácil para os seus clientes efetuarem os pagamentos, acrescentando marcação schema.org a seus e-mails.', 'plain': 'Plano', 'light': 'Claro', 'dark': 'Escuro', @@ -22125,9 +22126,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Atualizar Morada', 'update_address_help': 'Atualizar morada do cliente', 'rate': 'Valor', @@ -22141,13 +22142,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Sugerir produtos', 'fill_products_help': - 'Selecionando o produto descrição e preço serão preenchidos automaticamente', + 'Selecionando o produto descrição e preço serão preenchidos automaticamente', 'update_products': 'Atualização automática dos produtos', 'update_products_help': - 'Atualizando na nota de pagamento o produto também será atualizado', + 'Atualizando na nota de pagamento o produto também será atualizado', 'convert_products': 'Convert Products', 'convert_products_help': - 'Automatically convert product prices to the client\'s currency', + 'Automatically convert product prices to the client\'s currency', 'fees': 'Taxas', 'limits': 'Limites', 'provider': 'Provider', @@ -22247,7 +22248,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -22346,7 +22347,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -22550,7 +22551,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Feito', 'please_enter_a_client_or_contact_name': - 'Please enter a client or contact name', + 'Please enter a client or contact name', 'dark_mode': 'Modo Escuro', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', @@ -22632,7 +22633,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user arquivou a nota de pagamento :invoice', 'activity_9': ':user removeu a nota de pagamento :invoice', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user atualizou o pagamento :payment', 'activity_12': ':user arquivou o pagamento :payment', 'activity_13': ':user removeu o pagamento :payment', @@ -22662,7 +22663,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user restaurou a despesa :expense', 'activity_39': ':user cancelled a :payment_amount payment :payment', 'activity_40': - ':user refunded :adjustment of a :payment_amount payment :payment', + ':user refunded :adjustment of a :payment_amount payment :payment', 'activity_41': 'pagamento (:payment) de :payment_amount falhou', 'activity_42': ':user criou a tarefa :task', 'activity_43': ':user atualizou a tarefa :task', @@ -22864,12 +22865,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Mesaj', 'from': 'De la', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -22886,7 +22887,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -22913,16 +22914,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -22965,7 +22966,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrator', 'administrator_help': - 'Allow user to manage users, change settings and modify all records', + 'Allow user to manage users, change settings and modify all records', 'user_management': 'Utilizatori', 'users': 'Utilizatori', 'new_user': 'New User', @@ -22980,7 +22981,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Opțiuni Factură', 'hide_paid_to_date': 'Ascunde câmpul \"Plătit până la\"', 'hide_paid_to_date_help': - 'Afișează \"Plătit pana la\" decât când plata a fost efectuată.', + 'Afișează \"Plătit pana la\" decât când plata a fost efectuată.', 'invoice_embed_documents': 'Embed Documents', 'invoice_embed_documents_help': 'Include attached images in the invoice.', 'all_pages_header': 'Show Header on', @@ -23003,16 +23004,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Subsol Proformă', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', + 'Automatically email recurring invoices when they are created.', 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', + 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', + 'Automatically archive quotes when they are converted.', 'auto_convert_quote': 'Auto Convert', 'auto_convert_quote_help': - 'Automatically convert a quote to an invoice when approved by a client.', + 'Automatically convert a quote to an invoice when approved by a client.', 'workflow_settings': 'Workflow Settings', 'freq_daily': 'Zilnic', 'freq_weekly': 'Săptămânal', @@ -23060,30 +23061,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Show the client signature on the invoice/quote PDF.', + 'Show the client signature on the invoice/quote PDF.', 'show_accept_invoice_terms': 'Invoice Terms Checkbox', 'show_accept_invoice_terms_help': - 'Require client to confirm that they accept the invoice terms.', + 'Require client to confirm that they accept the invoice terms.', 'show_accept_quote_terms': 'Quote Terms Checkbox', 'show_accept_quote_terms_help': - 'Require client to confirm that they accept the quote terms.', + 'Require client to confirm that they accept the quote terms.', 'require_invoice_signature': 'Invoice Signature', 'require_invoice_signature_help': - 'Require client to provide their signature.', + 'Require client to provide their signature.', 'require_quote_signature': 'Quote Signature', 'enable_portal_password': 'Password Protect Invoices', 'enable_portal_password_help': - 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', + 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', 'send_portal_password': 'Generate Automatically', 'send_portal_password_help': - 'If no password is set, one will be generated and sent with the first invoice.', + 'If no password is set, one will be generated and sent with the first invoice.', 'authorization': 'Authorization', 'subdomain': 'Subdomeniu', 'domain': 'Domain', 'portal_mode': 'Portal Mode', 'email_signature': 'În legătură cu,', 'enable_email_markup_help': - 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', + 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', 'plain': 'Plain', 'light': 'Light', 'dark': 'Dark', @@ -23112,12 +23113,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Actualizează Adresa', 'update_address_help': - 'Actualizează adresa clientului cu detaliile trimise', + 'Actualizează adresa clientului cu detaliile trimise', 'rate': 'Valoare', 'tax_rate': 'Valoare Taxă', 'new_tax_rate': 'New Tax Rate', @@ -23129,13 +23130,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Completează automat produsele', 'fill_products_help': - 'Alegând un produs descrierea și prețul vor fi completate automat', + 'Alegând un produs descrierea și prețul vor fi completate automat', 'update_products': 'Actualizare automată a produselor', 'update_products_help': - 'Actualizând o factură se va actualiza si librăria de produse', + 'Actualizând o factură se va actualiza si librăria de produse', 'convert_products': 'Convert Products', 'convert_products_help': - 'Automatically convert product prices to the client\'s currency', + 'Automatically convert product prices to the client\'s currency', 'fees': 'Fees', 'limits': 'Limits', 'provider': 'Provider', @@ -23235,7 +23236,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -23334,7 +23335,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -23538,7 +23539,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Gata', 'please_enter_a_client_or_contact_name': - 'Please enter a client or contact name', + 'Please enter a client or contact name', 'dark_mode': 'Mod întunecat', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', @@ -23616,12 +23617,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_4': ':user a creat factura :invoice', 'activity_5': ':user a actualizat factura :invoice', 'activity_6': - ':user a trimis pe email factura :invoice pentru :client la :contact', + ':user a trimis pe email factura :invoice pentru :client la :contact', 'activity_7': ':contact a vizualizat factura :invoice pentru :client', 'activity_8': ':user a arhivat factura :invoice', 'activity_9': ':user a șters factura :invoice', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user a actualizat plata :payment', 'activity_12': ':user a arhivat plata :payment', 'activity_13': ':user a șters plata :payment', @@ -23632,7 +23633,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_18': ':user a creat proforma :quote', 'activity_19': ':user a actualizat proforma :quote', 'activity_20': - ':user a trimis pe email proforma :quote pentru :client la :contact', + ':user a trimis pe email proforma :quote pentru :client la :contact', 'activity_21': ':contact a vizualizat proforma :quote', 'activity_22': ':user a arhivat proforma :quote', 'activity_23': ':user a șters proforma :quote', @@ -23652,7 +23653,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user a restaurat cheltuiala :expense', 'activity_39': ':user cancelled a :payment_amount payment :payment', 'activity_40': - ':user refunded :adjustment of a :payment_amount payment :payment', + ':user refunded :adjustment of a :payment_amount payment :payment', 'activity_41': ':payment_amount payment (:payment) failed', 'activity_42': ':user created task :task', 'activity_43': ':user updated task :task', @@ -23854,12 +23855,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Poruka', 'from': 'Šalje', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -23876,7 +23877,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Lozinka je prekratka', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -23903,16 +23904,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -23955,7 +23956,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrator', 'administrator_help': - 'Allow user to manage users, change settings and modify all records', + 'Allow user to manage users, change settings and modify all records', 'user_management': 'Upravljanje korisnicima', 'users': 'Korisnici', 'new_user': 'New User', @@ -23970,7 +23971,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Opcije računa', 'hide_paid_to_date': 'Sakrij datum plaćanja', 'hide_paid_to_date_help': - 'Prikažite \"Datum plaćanja\" na računima, onda kada je uplata primljena.', + 'Prikažite \"Datum plaćanja\" na računima, onda kada je uplata primljena.', 'invoice_embed_documents': 'Embed Documents', 'invoice_embed_documents_help': 'Include attached images in the invoice.', 'all_pages_header': 'Prikaži zaglavlje na', @@ -23993,16 +23994,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Podnožje ponude', 'auto_email_invoice': 'Automatsko slanje ePošte', 'auto_email_invoice_help': - 'Automatski pošalji ponavljajuće račune u momentu kreiranja.', + 'Automatski pošalji ponavljajuće račune u momentu kreiranja.', 'auto_archive_invoice': 'AAutomatsko arhiviranje', 'auto_archive_invoice_help': - 'Automatski arhiviraj račune kada su plaćeni.', + 'Automatski arhiviraj račune kada su plaćeni.', 'auto_archive_quote': 'Automatsko Arhiviranje', 'auto_archive_quote_help': - 'Automatski arhiviraj ponude kada su konvertovane.', + 'Automatski arhiviraj ponude kada su konvertovane.', 'auto_convert_quote': 'Auto konverzija', 'auto_convert_quote_help': - 'Automatski konvertujte ponudu u račun nakon što je odobrena od strane klijenta.', + 'Automatski konvertujte ponudu u račun nakon što je odobrena od strane klijenta.', 'workflow_settings': 'Podešavanje toka rada', 'freq_daily': 'Svakodnevno', 'freq_weekly': 'Weekly', @@ -24050,30 +24051,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Prikaži u PDF-u', 'signature_on_pdf_help': - 'Prikazite potpis klijenta na PDF-u računa/ponude.', + 'Prikazite potpis klijenta na PDF-u računa/ponude.', 'show_accept_invoice_terms': 'Invoice Terms Checkbox', 'show_accept_invoice_terms_help': - 'Require client to confirm that they accept the invoice terms.', + 'Require client to confirm that they accept the invoice terms.', 'show_accept_quote_terms': 'Quote Terms Checkbox', 'show_accept_quote_terms_help': - 'Require client to confirm that they accept the quote terms.', + 'Require client to confirm that they accept the quote terms.', 'require_invoice_signature': 'Invoice Signature', 'require_invoice_signature_help': - 'Require client to provide their signature.', + 'Require client to provide their signature.', 'require_quote_signature': 'Quote Signature', 'enable_portal_password': 'Password Protect Invoices', 'enable_portal_password_help': - 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', + 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', 'send_portal_password': 'Generiši automatski', 'send_portal_password_help': - 'If no password is set, one will be generated and sent with the first invoice.', + 'If no password is set, one will be generated and sent with the first invoice.', 'authorization': 'Authorization', 'subdomain': 'Poddomena', 'domain': 'Domain', 'portal_mode': 'Portal Mode', 'email_signature': 'Srdačno,', 'enable_email_markup_help': - 'Olakšajte svojim klijentima plaćanje dodavanjem schema.org markupa vašoj e-pošti.', + 'Olakšajte svojim klijentima plaćanje dodavanjem schema.org markupa vašoj e-pošti.', 'plain': 'Obično', 'light': 'Svetlo', 'dark': 'Tamno', @@ -24102,9 +24103,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Logoi Prihvaćenih Kartica', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Ažuriraj adresu', 'update_address_help': 'Ažuriraj adresu klijenta uz osigurane detalje', 'rate': 'Stopa', @@ -24118,13 +24119,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Proizvodi sa samoispunom', 'fill_products_help': - 'Odabir proizvoda će automatski ispuniti opis i cijenu', + 'Odabir proizvoda će automatski ispuniti opis i cijenu', 'update_products': 'Proizvodi sa autoažuriranjem', 'update_products_help': - 'Ažuriranje računa automatski ažurirati registar proizvoda', + 'Ažuriranje računa automatski ažurirati registar proizvoda', 'convert_products': 'Konvertuj proizvode', 'convert_products_help': - 'Automatski konvertuj cene proizvoda u valutu klijenta', + 'Automatski konvertuj cene proizvoda u valutu klijenta', 'fees': 'Fees', 'limits': 'Limits', 'provider': 'Provider', @@ -24224,7 +24225,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Unesite ime', 'please_enter_a_last_name': 'Unesite prezime', 'please_agree_to_terms_and_privacy': - 'Molimo Vas prihvatite uslove korišćenja i politiku privatnosti da biste registrovali korisnički nalog.', + 'Molimo Vas prihvatite uslove korišćenja i politiku privatnosti da biste registrovali korisnički nalog.', 'i_agree_to_the': 'Slažem se sa', 'terms_of_service_link': 'uslovima korišćenja', 'privacy_policy_link': 'politikom privatnosti', @@ -24323,7 +24324,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Prosek', 'unapproved': 'Neodobreno', 'authenticate_to_change_setting': - 'Molimo Vas auotorizujte se da biste promenili ovu opciju', + 'Molimo Vas auotorizujte se da biste promenili ovu opciju', 'locked': 'Zaključano', 'authenticate': 'Autorizuj se', 'please_authenticate': 'Molimo Vas da se autorizujete', @@ -24527,10 +24528,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Završeno', 'please_enter_a_client_or_contact_name': - 'Unesite klijenta ili ime kontakta', + 'Unesite klijenta ili ime kontakta', 'dark_mode': 'Tamni prikaz', 'restart_app_to_apply_change': - 'Restartuje aplikaciju za aktiviranje izmene', + 'Restartuje aplikaciju za aktiviranje izmene', 'refresh_data': 'Osveži podatke', 'blank_contact': 'Prazan kontakt', 'activity': 'Aktivnost', @@ -24610,7 +24611,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user arhivirao račun :invoice', 'activity_9': ':user obrisao račun :invoce', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user ažurirao uplatu :payment', 'activity_12': ':user ahivirao uplatu :payment', 'activity_13': ':user obrisao uplatu :payment', @@ -24640,7 +24641,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user restored expense :expense', 'activity_39': ':user je otkazao :payment_amount plaćanje :payment', 'activity_40': - ':user vratio :adjustment od :payment_amount plaćanja :payment', + ':user vratio :adjustment od :payment_amount plaćanja :payment', 'activity_41': ':payment_amount payment (:payment) failed', 'activity_42': ':user created task :task', 'activity_43': ':user updated task :task', @@ -24842,12 +24843,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Sporočilo', 'from': 'Od', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -24864,7 +24865,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -24891,16 +24892,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -24943,7 +24944,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Upravljalec', 'administrator_help': - 'Dovoli uporabniku da upravlja z uporabniki, nastavitvami in vsemi zapisi', + 'Dovoli uporabniku da upravlja z uporabniki, nastavitvami in vsemi zapisi', 'user_management': 'Uporabniki', 'users': 'Uporabniki', 'new_user': 'Nov uporabnik', @@ -24958,7 +24959,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Možnosti računa', 'hide_paid_to_date': 'Skrij datum plačila', 'hide_paid_to_date_help': - 'Prikaži le \"Plačano\" polje v računu, nakar je bilo plačilo prejeto.', + 'Prikaži le \"Plačano\" polje v računu, nakar je bilo plačilo prejeto.', 'invoice_embed_documents': 'Omogočeni dokumenti', 'invoice_embed_documents_help': 'V računu vključi pripete slike.', 'all_pages_header': 'Prikaži glavo na', @@ -24981,15 +24982,15 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Noga predračuna', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', + 'Automatically email recurring invoices when they are created.', 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', + 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': 'Samodejno arhiviraj predračune po pretvorbi.', 'auto_convert_quote': 'Samodejna Pretvorba', 'auto_convert_quote_help': - 'Samodejno pretvori predračun v račun, ki ga stranka potrdi.', + 'Samodejno pretvori predračun v račun, ki ga stranka potrdi.', 'workflow_settings': 'Workflow Settings', 'freq_daily': 'Dnevno', 'freq_weekly': 'Tedensko', @@ -25037,30 +25038,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Prikaži na PDF', 'signature_on_pdf_help': - 'Prikaži podpis stranke na PDF računu/predračunu.', + 'Prikaži podpis stranke na PDF računu/predračunu.', 'show_accept_invoice_terms': 'Potrditev pogojev računa', 'show_accept_invoice_terms_help': - 'Stranka mora potrditi strinjanje s pogoji na računu.', + 'Stranka mora potrditi strinjanje s pogoji na računu.', 'show_accept_quote_terms': 'Potrditev pogojev predračuna', 'show_accept_quote_terms_help': - 'Stranka mora potrditi strinjanje s pogoji na predračunu.', + 'Stranka mora potrditi strinjanje s pogoji na predračunu.', 'require_invoice_signature': 'Podpis računa', 'require_invoice_signature_help': - 'Zahteva od stranke, da zagotovi svoj podpis.', + 'Zahteva od stranke, da zagotovi svoj podpis.', 'require_quote_signature': 'Podpis predračuna', 'enable_portal_password': 'Zaščiti račune z geslom', 'enable_portal_password_help': - 'Omogoča da nastavite geslo za vsako osebo. Če je geslo nastavljeno, ga bo uporabnik moral vnesti pred ogledom računa.', + 'Omogoča da nastavite geslo za vsako osebo. Če je geslo nastavljeno, ga bo uporabnik moral vnesti pred ogledom računa.', 'send_portal_password': 'Samodejno nastavi', 'send_portal_password_help': - 'Če geslo ni nastavljeno, bo ustvarjeno samodejno in se pošlje s prvim računom.', + 'Če geslo ni nastavljeno, bo ustvarjeno samodejno in se pošlje s prvim računom.', 'authorization': 'Overovitev', 'subdomain': 'Poddomena', 'domain': 'Domena', 'portal_mode': 'Portal Mode', 'email_signature': 'Lep pozdrav,', 'enable_email_markup_help': - 'Olajšajte strankam plačevanje z dodajanjem schema.org označb v vašo e-pošto.', + 'Olajšajte strankam plačevanje z dodajanjem schema.org označb v vašo e-pošto.', 'plain': 'Navadno', 'light': 'Svetlo', 'dark': 'Temno', @@ -25089,9 +25090,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Prikazani logotipi katric', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Posodobi naslov', 'update_address_help': 'Posodobi naslov stranke z predloženimi podatki', 'rate': 'Cena', @@ -25105,13 +25106,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Samodejno vnesi produkte', 'fill_products_help': - 'Izbira produkta bo samodejno vnesla opis in ceno', + 'Izbira produkta bo samodejno vnesla opis in ceno', 'update_products': 'Samodejno posodobi produkte', 'update_products_help': - 'Posodobitev računa bo samodejno posodobila knjižnico produktov', + 'Posodobitev računa bo samodejno posodobila knjižnico produktov', 'convert_products': 'Pretvori produkte', 'convert_products_help': - 'Samodejno pretvori cene produktov v valuto stranke', + 'Samodejno pretvori cene produktov v valuto stranke', 'fees': 'Provizije', 'limits': 'Omejitve', 'provider': 'Provider', @@ -25211,7 +25212,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -25310,7 +25311,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -25514,7 +25515,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Končano', 'please_enter_a_client_or_contact_name': - 'Please enter a client or contact name', + 'Please enter a client or contact name', 'dark_mode': 'Temen način', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', @@ -25596,7 +25597,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user je arhiviral račun :invoice', 'activity_9': ':user je odstranil račun :invoice', 'activity_10': - ':contact je vnesel plačilo :payment v znesku :payment_amount na računu :invoice za :client', + ':contact je vnesel plačilo :payment v znesku :payment_amount na računu :invoice za :client', 'activity_11': ':user je posodobil plačilo :payment', 'activity_12': ':user je arhiviral plačilo :payment', 'activity_13': ':user je odstranil :payment', @@ -25607,7 +25608,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_18': ':user je ustvaril predračun :quote', 'activity_19': ':user je posodobil predračun :quote', 'activity_20': - ':user je predračun :quote za :client poslal osebi :contact', + ':user je predračun :quote za :client poslal osebi :contact', 'activity_21': ':contact je pogledal predračun :quote', 'activity_22': ':user je arhiviral predračun :quote', 'activity_23': ':user je odstranil predračun :quote', @@ -25626,9 +25627,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_36': ':user je izbrisal strošek :expense', 'activity_37': ':user je obnovil strošek :expense', 'activity_39': - ':user je preklical plačilo :payment v znesku :payment_amount', + ':user je preklical plačilo :payment v znesku :payment_amount', 'activity_40': - ':user je vrnil :adjustment od plačila :payment v znesku :payment_amount', + ':user je vrnil :adjustment od plačila :payment v znesku :payment_amount', 'activity_41': ':payment_amount plačilo (:payment) ni uspelo', 'activity_42': ':user je vnesel opravilo :task', 'activity_43': ':user je posodobil opravilo :task', @@ -25830,12 +25831,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Mensaje', 'from': 'De', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -25852,7 +25853,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -25879,16 +25880,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -25931,7 +25932,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrador', 'administrator_help': - 'Permitir que administre usuarios, cambie configuraciones y modifique cualquier registro', + 'Permitir que administre usuarios, cambie configuraciones y modifique cualquier registro', 'user_management': 'Gestión de Usuarios', 'users': 'Usuarios', 'new_user': 'Nuevo Usuario', @@ -25946,7 +25947,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Opciones de Factura', 'hide_paid_to_date': 'Ocultar Valor Pagado a la Fecha', 'hide_paid_to_date_help': - 'Solo mostrar la opción “Pagado a la fecha” en sus facturas cuando se ha recibido un pago.', + 'Solo mostrar la opción “Pagado a la fecha” en sus facturas cuando se ha recibido un pago.', 'invoice_embed_documents': 'Embed Documents', 'invoice_embed_documents_help': 'Include attached images in the invoice.', 'all_pages_header': 'Mostrar encabezado', @@ -25969,16 +25970,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Pie de la Cotización', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', + 'Automatically email recurring invoices when they are created.', 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', + 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', + 'Automatically archive quotes when they are converted.', 'auto_convert_quote': 'Auto Convertir', 'auto_convert_quote_help': - 'Convierte un presupuesto en factura automaticamente cuando los aprueba el cliente.', + 'Convierte un presupuesto en factura automaticamente cuando los aprueba el cliente.', 'workflow_settings': 'Workflow Settings', 'freq_daily': 'Diario', 'freq_weekly': 'Weekly', @@ -26026,30 +26027,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Show the client signature on the invoice/quote PDF.', + 'Show the client signature on the invoice/quote PDF.', 'show_accept_invoice_terms': 'Casilla de los Términos de la Factura', 'show_accept_invoice_terms_help': - 'Requerir que el cliente confirme que aceptó los términos de la factura.', + 'Requerir que el cliente confirme que aceptó los términos de la factura.', 'show_accept_quote_terms': 'Casilla de los Términos de la Cotización', 'show_accept_quote_terms_help': - 'Requerir que el cliente confirme que aceptó los términos de la cotización.', + 'Requerir que el cliente confirme que aceptó los términos de la cotización.', 'require_invoice_signature': 'Firma de la Facturra', 'require_invoice_signature_help': - 'Requerir que el cliente provea su firma.', + 'Requerir que el cliente provea su firma.', 'require_quote_signature': 'Firma de la Cotización', 'enable_portal_password': 'Proteger Facturas con Contraseña', 'enable_portal_password_help': - 'Permite establecer una contraseña para cada contacto. Si una contraseña es establecida, se le será solicitada al contacto para acceder a sus facturas.', + 'Permite establecer una contraseña para cada contacto. Si una contraseña es establecida, se le será solicitada al contacto para acceder a sus facturas.', 'send_portal_password': 'Generar Automáticamente', 'send_portal_password_help': - 'Si no se establece una contraseña, será generada automáticamente con la primer factura.', + 'Si no se establece una contraseña, será generada automáticamente con la primer factura.', 'authorization': 'Autorización', 'subdomain': 'Subdominio', 'domain': 'Dominio', 'portal_mode': 'Portal Mode', 'email_signature': 'Un cordial saludo,', 'enable_email_markup_help': - 'Haga que sea fácil para sus clientes que paguen mediante la adición de marcas \"schema.org\" a sus correos electrónicos.', + 'Haga que sea fácil para sus clientes que paguen mediante la adición de marcas \"schema.org\" a sus correos electrónicos.', 'plain': 'Plano', 'light': 'Claro', 'dark': 'Oscuro', @@ -26078,12 +26079,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Logos de Tarjetas Aceptadas', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Actualizar Dirección', 'update_address_help': - 'Actualiza la dirección del cliente con los detalles proporcionados', + 'Actualiza la dirección del cliente con los detalles proporcionados', 'rate': 'Tasas', 'tax_rate': 'Tasa de Impuesto', 'new_tax_rate': 'Nueva Tasa de Impuesto', @@ -26095,13 +26096,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Auto-rellenar productos', 'fill_products_help': - 'Seleccionar un producto automáticamente configurará la descripción y coste', + 'Seleccionar un producto automáticamente configurará la descripción y coste', 'update_products': 'Auto-actualizar productos', 'update_products_help': - 'Actualizar una factura automáticamente actualizará los productos', + 'Actualizar una factura automáticamente actualizará los productos', 'convert_products': 'Convert Products', 'convert_products_help': - 'Automatically convert product prices to the client\'s currency', + 'Automatically convert product prices to the client\'s currency', 'fees': 'Tarifas', 'limits': 'Límites', 'provider': 'Provider', @@ -26201,7 +26202,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -26263,7 +26264,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'running': 'Ejecutando', 'resume': 'Continuar', 'task_errors': - 'Por favor corrija cualquier tiempo que se sobreponga con otro', + 'Por favor corrija cualquier tiempo que se sobreponga con otro', 'start': 'Iniciar', 'stop': 'Detener', 'started_task': 'Tarea iniciada con éxito', @@ -26301,7 +26302,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -26505,7 +26506,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Hecho', 'please_enter_a_client_or_contact_name': - 'Please enter a client or contact name', + 'Please enter a client or contact name', 'dark_mode': 'Modo Oscuro', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', @@ -26544,7 +26545,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'body': 'Mensaje', 'send_email': 'Enviar email', 'email_receipt': - 'Enviar por correo electrónico el recibo de pago al cliente', + 'Enviar por correo electrónico el recibo de pago al cliente', 'auto_billing': 'Auto billing', 'button': 'Button', 'preview': 'Preview', @@ -26588,7 +26589,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user archivó la factura :invoice', 'activity_9': ':user eliminó la factura :invoice', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user actualizó el pago :payment', 'activity_12': ':user archivó el pago :payment', 'activity_13': ':user eliminó el pago :payment', @@ -26618,7 +26619,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user restauró el gasto :expense', 'activity_39': ':usaer canceló :payment_amount pago :payment', 'activity_40': - ':user reembolsó :adjustment de un pago de :payment_amount :payment', + ':user reembolsó :adjustment de un pago de :payment_amount :payment', 'activity_41': ':payment_amount payment (:payment) failed', 'activity_42': ':user creó la tarea :task', 'activity_43': ':user actualizó la tarea :task', @@ -26820,16 +26821,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Mensaje', 'from': 'De', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': - 'Ajustar el porcentaje para dar cuenta de la tarifa', + 'Ajustar el porcentaje para dar cuenta de la tarifa', 'configure_settings': 'Configure Settings', 'support_forum': 'Foro de soporte', 'about': 'About', @@ -26843,7 +26844,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -26870,16 +26871,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -26922,7 +26923,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrador', 'administrator_help': - 'Permitir que administre usuarios, cambie configuración y modifique cualquier registro', + 'Permitir que administre usuarios, cambie configuración y modifique cualquier registro', 'user_management': 'Administración de Usuarios', 'users': 'Usuarios', 'new_user': 'Nuevo Usuario', @@ -26937,7 +26938,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Opciones de Factura', 'hide_paid_to_date': 'Ocultar el valor Pagado a la Fecha', 'hide_paid_to_date_help': - 'Solo mostrará el valor Pagado a la Fecha en sus Facturas cuando se ha recibido un Pago.', + 'Solo mostrará el valor Pagado a la Fecha en sus Facturas cuando se ha recibido un Pago.', 'invoice_embed_documents': 'Documentos anexados', 'invoice_embed_documents_help': 'Incluye imagenes adjuntas en la factura', 'all_pages_header': 'Mostrar Cabecera en', @@ -26960,16 +26961,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Pie del Presupuesto', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automáticamente enviar por email facturas recurrentes cuando sean creadas.', + 'Automáticamente enviar por email facturas recurrentes cuando sean creadas.', 'auto_archive_invoice': 'Auto Archivar', 'auto_archive_invoice_help': - 'Automáticamente archivar facturas cuando sean pagadas.', + 'Automáticamente archivar facturas cuando sean pagadas.', 'auto_archive_quote': 'Auto Archivar', 'auto_archive_quote_help': - 'Automáticamente archivar presupuestos cuando sean convertidos.', + 'Automáticamente archivar presupuestos cuando sean convertidos.', 'auto_convert_quote': 'Auto Convertir', 'auto_convert_quote_help': - 'Convertir un Presupuesto en Factura automáticamente cuando lo apruebe el cliente.', + 'Convertir un Presupuesto en Factura automáticamente cuando lo apruebe el cliente.', 'workflow_settings': 'Configuración de Flujos', 'freq_daily': 'Diariamente', 'freq_weekly': 'Semanal', @@ -27017,32 +27018,32 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Mostrar en PDF', 'signature_on_pdf_help': - 'Mostrar la firma del cliente en el PDF de la factura/presupuesto', + 'Mostrar la firma del cliente en el PDF de la factura/presupuesto', 'show_accept_invoice_terms': - 'Mostrar aceptación de términos de la factura', + 'Mostrar aceptación de términos de la factura', 'show_accept_invoice_terms_help': - 'Requerir que el cliente confirme que acepta los términos de la factura.', + 'Requerir que el cliente confirme que acepta los términos de la factura.', 'show_accept_quote_terms': - 'Mostrar aceptación de términos del presupuesto', + 'Mostrar aceptación de términos del presupuesto', 'show_accept_quote_terms_help': - 'Requerir que el cliente confirme que acepta los términos del presupuesto.', + 'Requerir que el cliente confirme que acepta los términos del presupuesto.', 'require_invoice_signature': 'Firma de la factura', 'require_invoice_signature_help': - 'Requerir que el cliente proporcione su firma.', + 'Requerir que el cliente proporcione su firma.', 'require_quote_signature': 'Firma del presupuesto.', 'enable_portal_password': 'Proteger Facturas con Contraseña', 'enable_portal_password_help': - 'Habilite para seleccionar una contraseña para cada contacto. Si una contraseña esta especificada, se le será solicitada al contacto para acceder a sus facturas.', + 'Habilite para seleccionar una contraseña para cada contacto. Si una contraseña esta especificada, se le será solicitada al contacto para acceder a sus facturas.', 'send_portal_password': 'Generada Automaticamente', 'send_portal_password_help': - 'Si no se especifica password, se generará una y se enviará junto con la primera Factura.', + 'Si no se especifica password, se generará una y se enviará junto con la primera Factura.', 'authorization': 'Autorización', 'subdomain': 'Subdominio', 'domain': 'Dominio', 'portal_mode': 'Portal Mode', 'email_signature': 'Un cordial saludo,', 'enable_email_markup_help': - 'Haga que sea fácil para sus clientes que paguen mediante la adición de marcas \"schema.org\" a sus correos electrónicos.', + 'Haga que sea fácil para sus clientes que paguen mediante la adición de marcas \"schema.org\" a sus correos electrónicos.', 'plain': 'Plano', 'light': 'Claro', 'dark': 'Oscuro', @@ -27071,12 +27072,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Logotipos de tarjetas aceptadas', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Actualizar Dirección', 'update_address_help': - 'Actualizar la direccion del cliente con los datos provistos', + 'Actualizar la direccion del cliente con los datos provistos', 'rate': 'Precio', 'tax_rate': 'Impuesto', 'new_tax_rate': 'Nuevo Impuesto', @@ -27088,13 +27089,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Auto-rellenar Productos', 'fill_products_help': - 'Seleccionar un producto automáticamente configurará la descripción y coste', + 'Seleccionar un producto automáticamente configurará la descripción y coste', 'update_products': 'Auto-actualizar Productos', 'update_products_help': - 'Actualizar una Factura automáticamente actualizará los Productos', + 'Actualizar una Factura automáticamente actualizará los Productos', 'convert_products': 'Convertir Productos', 'convert_products_help': - 'Convertir automáticamente los precios de los productos a la divisa del cliente', + 'Convertir automáticamente los precios de los productos a la divisa del cliente', 'fees': 'Cargos', 'limits': 'Limites', 'provider': 'Provider', @@ -27194,7 +27195,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -27256,7 +27257,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'running': 'Ejecutando', 'resume': 'Reanudar', 'task_errors': - 'Por favor corrija cualquier tiempo que se solape con otro', + 'Por favor corrija cualquier tiempo que se solape con otro', 'start': 'Iniciar', 'stop': 'Parar', 'started_task': 'Tarea empezada correctamente', @@ -27294,7 +27295,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Promedio', 'unapproved': 'No aprobado', 'authenticate_to_change_setting': - 'Por favor, autenticarse para cambiar esta configuración', + 'Por favor, autenticarse para cambiar esta configuración', 'locked': 'Bloqueado', 'authenticate': 'Autenticación', 'please_authenticate': 'Por favor, autenticarse', @@ -27479,9 +27480,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'updated_at': 'Actualizado', 'tax': 'Impuesto', 'please_enter_an_invoice_number': - 'Por favor introduce un número de factura', + 'Por favor introduce un número de factura', 'please_enter_a_quote_number': - 'Por favor introduce un número de presupuesto', + 'Por favor introduce un número de presupuesto', 'past_due': 'Vencido', 'draft': 'Borrador', 'sent': 'Enviada', @@ -27500,7 +27501,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Hecho', 'please_enter_a_client_or_contact_name': - 'Por favor introduce un cliente o nombre de contacto', + 'Por favor introduce un cliente o nombre de contacto', 'dark_mode': 'Modo Oscuro', 'restart_app_to_apply_change': 'Reinicia la app para aplicar el cambio', 'refresh_data': 'Actualizar Datos', @@ -27582,7 +27583,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user archivó la factura :invoice', 'activity_9': ':user borró la factura :invoice', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user actualizó el Pago :payment', 'activity_12': ':user archivó el pago :payment', 'activity_13': ':user borró el pago :payment', @@ -27612,7 +27613,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user restauró el gasto :expense', 'activity_39': ':user cancelo :payment_amount del pago :payment', 'activity_40': - ':user reembolsó :adjustment de :payment_amount del pago :payment', + ':user reembolsó :adjustment de :payment_amount del pago :payment', 'activity_41': 'Fallo el pago de :payment_amount para (:payment)', 'activity_42': ':user creó la tarea :task', 'activity_43': ':user actualizó la tarea :task', @@ -27814,12 +27815,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Meddelande', 'from': 'Från', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -27836,7 +27837,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -27863,16 +27864,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -27915,7 +27916,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administratör', 'administrator_help': - 'Tillåt användare att hantera användare, ändra inställningar och ändra alla värden', + 'Tillåt användare att hantera användare, ändra inställningar och ändra alla värden', 'user_management': 'Användarhantering', 'users': 'Användare', 'new_user': 'Ny användare', @@ -27930,7 +27931,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Fakturainställningar', 'hide_paid_to_date': 'Dölj \"Betald till\"', 'hide_paid_to_date_help': - 'Visa bara \"Betald till\"-sektionen på fakturan när en betalning har mottagits.', + 'Visa bara \"Betald till\"-sektionen på fakturan när en betalning har mottagits.', 'invoice_embed_documents': 'Bädda in dokument', 'invoice_embed_documents_help': 'Include attached images in the invoice.', 'all_pages_header': 'Visa Header på', @@ -27953,16 +27954,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Offert footer', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', + 'Automatically email recurring invoices when they are created.', 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', + 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', + 'Automatically archive quotes when they are converted.', 'auto_convert_quote': 'Auto Convert', 'auto_convert_quote_help': - 'Konvertera automatiskt en offert till en faktura när den godkänts av en klient.', + 'Konvertera automatiskt en offert till en faktura när den godkänts av en klient.', 'workflow_settings': 'Workflow Settings', 'freq_daily': 'Dagligen', 'freq_weekly': 'Veckovis', @@ -28012,26 +28013,26 @@ mixin LocalizationsProvider on LocaleCodeAware { 'signature_on_pdf_help': 'Visa kundens signatur på fakturan/offerten.', 'show_accept_invoice_terms': 'Faktura villkor kryssruta', 'show_accept_invoice_terms_help': - 'Kräv att klienten accepterar faktura villkoren.', + 'Kräv att klienten accepterar faktura villkoren.', 'show_accept_quote_terms': 'Offert villkors kryssruta', 'show_accept_quote_terms_help': - 'Kräv att klienten accepterar offert villkoren.', + 'Kräv att klienten accepterar offert villkoren.', 'require_invoice_signature': 'Faktura signatur', 'require_invoice_signature_help': 'Kräv signatur av klient.', 'require_quote_signature': 'Offert signatur', 'enable_portal_password': 'Lösenordsskydda fakturor', 'enable_portal_password_help': - 'Tillåter dig att sätta ett lösenord för varje kontakt. Om ett lösenord är valt kommer kontakten vara tvungen att skriva in lösenordet innan den kan se fakturan.', + 'Tillåter dig att sätta ett lösenord för varje kontakt. Om ett lösenord är valt kommer kontakten vara tvungen att skriva in lösenordet innan den kan se fakturan.', 'send_portal_password': 'Skapa automatiskt', 'send_portal_password_help': - 'Om inget lösenord är satt, kommer ett bli genererat och skickat med första fakturan.', + 'Om inget lösenord är satt, kommer ett bli genererat och skickat med första fakturan.', 'authorization': 'Tillstånd', 'subdomain': 'Underdomän', 'domain': 'Domän', 'portal_mode': 'Portal Mode', 'email_signature': 'Vänliga hälsningar,', 'enable_email_markup_help': - 'Gör det enklare för dina klienter att betala genom att lägga till schema.org märkning till dina e-post.', + 'Gör det enklare för dina klienter att betala genom att lägga till schema.org märkning till dina e-post.', 'plain': 'Vanlig', 'light': 'Ljus', 'dark': 'Mörk', @@ -28060,12 +28061,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Accepterade kort logos', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Uppdatera adress', 'update_address_help': - 'Uppdatera kundens adress med tillhandahållna uppgifter', + 'Uppdatera kundens adress med tillhandahållna uppgifter', 'rate': '`a-pris', 'tax_rate': 'Skattenivå', 'new_tax_rate': 'Ny skatte nivå', @@ -28077,13 +28078,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Auto-ifyll produkter', 'fill_products_help': - 'Välj en produkt för att automatiskt fylla i beskrivning och pris', + 'Välj en produkt för att automatiskt fylla i beskrivning och pris', 'update_products': 'Auto-uppdaterade produkter', 'update_products_help': - 'Uppdatera en faktura för att automatiskt uppdatera produktbiblioteket', + 'Uppdatera en faktura för att automatiskt uppdatera produktbiblioteket', 'convert_products': 'Konvertera produkter', 'convert_products_help': - 'Konvertera automatiskt produkt priser till kundens valuta', + 'Konvertera automatiskt produkt priser till kundens valuta', 'fees': 'Avgifter', 'limits': 'Gränser', 'provider': 'Provider', @@ -28183,7 +28184,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -28282,7 +28283,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -28486,7 +28487,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Klar', 'please_enter_a_client_or_contact_name': - 'Please enter a client or contact name', + 'Please enter a client or contact name', 'dark_mode': 'Mörkt läge', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', @@ -28568,7 +28569,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user arkiverade faktura :invoice', 'activity_9': ':user raderade faktura :invoice', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user uppdaterade betalning :payment', 'activity_12': ':user arkiverade betalning :payment', 'activity_13': ':user tog bort betalning :payment', @@ -28598,7 +28599,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user återställde kostnad :expense', 'activity_39': ':user avbröt en :payment_amount betalning :payment', 'activity_40': - ':user återbetalade :adjustment av en :payment_amount betalning :payment', + ':user återbetalade :adjustment av en :payment_amount betalning :payment', 'activity_41': ':payment_amount betalning (:payment) misslyckad', 'activity_42': ':user skapade uppgift :task', 'activity_43': ':user uppdaterade uppgift :task', @@ -28800,12 +28801,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'ข้อความ', 'from': 'จาก', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -28822,7 +28823,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'รหัสผ่านสั้นเกินไป', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -28849,16 +28850,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -28901,7 +28902,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'ผู้ดูแลระบบ', 'administrator_help': - 'อนุญาตให้ผู้ใช้ จัดการผู้ใช้อื่น เปลี่ยนแปลงการตั้งค่าและแก้ไขระเบียนทั้งหมด', + 'อนุญาตให้ผู้ใช้ จัดการผู้ใช้อื่น เปลี่ยนแปลงการตั้งค่าและแก้ไขระเบียนทั้งหมด', 'user_management': 'การจัดการผู้ใช้', 'users': 'ผู้ใช้งาน', 'new_user': 'ผู้ใช้ใหม่', @@ -28916,7 +28917,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'ตัวเลือกใบเสนอราคา', 'hide_paid_to_date': 'ซ่อนการจ่ายเงินไปยังวันที่', 'hide_paid_to_date_help': - 'แสดงเฉพาะพื้นที่ \"ชำระเงินถึงวันที่\" ในใบแจ้งหนี้ของคุณเมื่อได้รับการชำระเงินแล้ว', + 'แสดงเฉพาะพื้นที่ \"ชำระเงินถึงวันที่\" ในใบแจ้งหนี้ของคุณเมื่อได้รับการชำระเงินแล้ว', 'invoice_embed_documents': 'ฝังเอกสาร', 'invoice_embed_documents_help': 'รวมภาพที่แนบมาในใบแจ้งหนี้', 'all_pages_header': 'แสดงหัวเรื่อง', @@ -28939,16 +28940,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'สุดท้ายใบเสนอราคา', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', + 'Automatically email recurring invoices when they are created.', 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', + 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', + 'Automatically archive quotes when they are converted.', 'auto_convert_quote': 'แปลงอัตโนมัติ', 'auto_convert_quote_help': - 'แปลงใบเสนอราคาให้เป็นใบแจ้งหนี้โดยอัตโนมัติเมื่อได้รับอนุมัติจากลูกค้า', + 'แปลงใบเสนอราคาให้เป็นใบแจ้งหนี้โดยอัตโนมัติเมื่อได้รับอนุมัติจากลูกค้า', 'workflow_settings': 'Workflow Settings', 'freq_daily': 'Daily', 'freq_weekly': 'รายสัปดาห์', @@ -28996,29 +28997,29 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Show the client signature on the invoice/quote PDF.', + 'Show the client signature on the invoice/quote PDF.', 'show_accept_invoice_terms': 'Checkbox เงื่อนไขในใบแจ้งหนี้', 'show_accept_invoice_terms_help': - 'กำหนดให้ลูกค้ายืนยันว่ายอมรับข้อกำหนดในใบแจ้งหนี้', + 'กำหนดให้ลูกค้ายืนยันว่ายอมรับข้อกำหนดในใบแจ้งหนี้', 'show_accept_quote_terms': 'Checkbox เงื่อนไขใบเสนอราคา', 'show_accept_quote_terms_help': - 'กำหนดให้ลูกค้ายืนยันว่ายอมรับเงื่อนไขการเสนอราคา', + 'กำหนดให้ลูกค้ายืนยันว่ายอมรับเงื่อนไขการเสนอราคา', 'require_invoice_signature': 'ลายเซ็นของใบแจ้งหนี้', 'require_invoice_signature_help': 'กำหนดให้ลูกค้าจัดหาลายเซ็น', 'require_quote_signature': 'ลายมือชื่อใบเสนอราคา', 'enable_portal_password': 'รหัสผ่านป้องกันใบแจ้งหนี้', 'enable_portal_password_help': - 'ช่วยให้คุณสามารถตั้งรหัสผ่านสำหรับแต่ละรายชื่อ หากมีการตั้งรหัสผ่านผู้ติดต่อจะต้องป้อนรหัสผ่านก่อนดูใบแจ้งหนี้', + 'ช่วยให้คุณสามารถตั้งรหัสผ่านสำหรับแต่ละรายชื่อ หากมีการตั้งรหัสผ่านผู้ติดต่อจะต้องป้อนรหัสผ่านก่อนดูใบแจ้งหนี้', 'send_portal_password': 'Generate Automatically', 'send_portal_password_help': - 'หากไม่มีการตั้งค่ารหัสผ่าน ระบบจะสร้างและส่งใบแจ้งหนี้ฉบับแรก', + 'หากไม่มีการตั้งค่ารหัสผ่าน ระบบจะสร้างและส่งใบแจ้งหนี้ฉบับแรก', 'authorization': 'การอนุญาต', 'subdomain': 'Subdomain', 'domain': 'โดเมน', 'portal_mode': 'Portal Mode', 'email_signature': 'ด้วยความเคารพ', 'enable_email_markup_help': - 'ทำให้ลูกค้าของคุณสามารถจ่ายเงินให้คุณได้ง่ายขึ้นโดยการเพิ่มมาร์กอัป schema.org ลงในอีเมลของคุณ', + 'ทำให้ลูกค้าของคุณสามารถจ่ายเงินให้คุณได้ง่ายขึ้นโดยการเพิ่มมาร์กอัป schema.org ลงในอีเมลของคุณ', 'plain': 'ธรรมดา', 'light': 'บาง', 'dark': 'มืด', @@ -29047,9 +29048,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'ยอมรับโลโก้ของบัตร', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'อัปเดตที่อยู่', 'update_address_help': 'อัปเดตที่อยู่ของลูกค้าโดยระบุรายละเอียดไว้', 'rate': 'อัตรา', @@ -29063,13 +29064,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'เติมข้อมูลอัตโนมัติ', 'fill_products_help': - 'การเลือกสินค้า จะเติมคำอธิบายและค่าใช้จ่ายโดยอัตโนมัติ', + 'การเลือกสินค้า จะเติมคำอธิบายและค่าใช้จ่ายโดยอัตโนมัติ', 'update_products': 'อัปเดตผลิตภัณฑ์โดยอัตโนมัติ', 'update_products_help': - 'การอัปเดตใบแจ้งหนี้ จะอัปเดตสินค้าโดยอัตโนมัติ', + 'การอัปเดตใบแจ้งหนี้ จะอัปเดตสินค้าโดยอัตโนมัติ', 'convert_products': 'Convert Products', 'convert_products_help': - 'Automatically convert product prices to the client\'s currency', + 'Automatically convert product prices to the client\'s currency', 'fees': 'ค่าธรรมเนียม', 'limits': 'จำกัด', 'provider': 'Provider', @@ -29169,7 +29170,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -29268,7 +29269,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'ค่าเฉลี่ย', 'unapproved': 'ไม่อนุมัติ', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -29472,7 +29473,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'เรียบร้อย', 'please_enter_a_client_or_contact_name': - 'Please enter a client or contact name', + 'Please enter a client or contact name', 'dark_mode': 'โหมดกลางคืน', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', @@ -29554,7 +29555,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user บันทึกใบแจ้งหนี้ :invoice', 'activity_9': ':user ได้ลบใบแจ้งหนี้ :invoice', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user อัปเดตการชำระเงินที่แล้ว :payment', 'activity_12': ':user เก็บบันทึกการจ่ายเงิน :payment', 'activity_13': ':user ลบการจ่ายเงิน :payment', @@ -29584,7 +29585,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user ได้กู้คืนค่าใช้จ่าย :expense', 'activity_39': ':user ยกเลิก :payment_amount การชำระเงิน :payment', 'activity_40': - ':usre คืนเงิน :adjustment ของ :payment_amount การชำระเงิน :payment', + ':usre คืนเงิน :adjustment ของ :payment_amount การชำระเงิน :payment', 'activity_41': ':payment_amount จ่ายชำระเงิน (:payment) ล้มเหลว', 'activity_42': ':user ได้สร้างงาน :task', 'activity_43': ':user ได้อัปเดตงาน :task', @@ -29786,12 +29787,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'applied': 'Applied', 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', + 'We have received your message and will try to respond promptly.', 'message': 'Mesaj', 'from': 'Kimden', 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Include the description and cost in the product dropdown', + 'Include the description and cost in the product dropdown', 'pdf_min_requirements': 'The PDF renderer requires :version', 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', @@ -29808,7 +29809,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password msut contain an upper case character and a number', + 'Password msut contain an upper case character and a number', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', @@ -29835,16 +29836,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'third_custom': 'Third Custom', 'show_cost': 'Show Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', + 'Display a product cost field to track the markup/profit', 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', + 'Display a product quantity field, otherwise default to one', 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Display a line item quantity field, otherwise default to one', 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automatically set the line item quantity to one', + 'Automatically set the line item quantity to one', 'one_tax_rate': 'One Tax Rate', 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', @@ -29887,7 +29888,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrator', 'administrator_help': - 'Allow user to manage users, change settings and modify all records', + 'Allow user to manage users, change settings and modify all records', 'user_management': 'Kullanıcı yönetimi', 'users': 'Kullanıcılar', 'new_user': 'Yeni Kullanıcı', @@ -29902,7 +29903,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_options': 'Fatura Seçenekleri', 'hide_paid_to_date': 'Ödeme Tarihini Gizle', 'hide_paid_to_date_help': - 'Bir ödeme alındığında yalnızca faturalarınızdaki \"Ödenen Tarihi\" alanını görüntüleyin.', + 'Bir ödeme alındığında yalnızca faturalarınızdaki \"Ödenen Tarihi\" alanını görüntüleyin.', 'invoice_embed_documents': 'Embed Documents', 'invoice_embed_documents_help': 'Include attached images in the invoice.', 'all_pages_header': 'Show Header on', @@ -29925,16 +29926,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_footer': 'Teklif Altbilgisi', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', + 'Automatically email recurring invoices when they are created.', 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', + 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', + 'Automatically archive quotes when they are converted.', 'auto_convert_quote': 'Auto Convert', 'auto_convert_quote_help': - 'Automatically convert a quote to an invoice when approved by a client.', + 'Automatically convert a quote to an invoice when approved by a client.', 'workflow_settings': 'Workflow Settings', 'freq_daily': 'Günlük', 'freq_weekly': 'Haftalık', @@ -29982,30 +29983,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Show the client signature on the invoice/quote PDF.', + 'Show the client signature on the invoice/quote PDF.', 'show_accept_invoice_terms': 'Invoice Terms Checkbox', 'show_accept_invoice_terms_help': - 'Require client to confirm that they accept the invoice terms.', + 'Require client to confirm that they accept the invoice terms.', 'show_accept_quote_terms': 'Quote Terms Checkbox', 'show_accept_quote_terms_help': - 'Require client to confirm that they accept the quote terms.', + 'Require client to confirm that they accept the quote terms.', 'require_invoice_signature': 'Invoice Signature', 'require_invoice_signature_help': - 'Require client to provide their signature.', + 'Require client to provide their signature.', 'require_quote_signature': 'Quote Signature', 'enable_portal_password': 'Password Protect Invoices', 'enable_portal_password_help': - 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', + 'Allows you to set a password for each contact. If a password is set, the contact will be required to enter a password before viewing invoices.', 'send_portal_password': 'Generate Automatically', 'send_portal_password_help': - 'If no password is set, one will be generated and sent with the first invoice.', + 'If no password is set, one will be generated and sent with the first invoice.', 'authorization': 'Authorization', 'subdomain': 'Alt etki alanı', 'domain': 'Domain', 'portal_mode': 'Portal Mode', 'email_signature': 'Saygılarımızla,', 'enable_email_markup_help': - 'Müşterilerinizin e-postalarınıza schema.org işaretleme ekleyerek ödeme yapmalarını kolaylaştırın.', + 'Müşterilerinizin e-postalarınıza schema.org işaretleme ekleyerek ödeme yapmalarını kolaylaştırın.', 'plain': 'Düz', 'light': 'Aydınlık', 'dark': 'Koyu', @@ -30034,12 +30035,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', 'require_billing_address_help': - 'Require client to provide their billing address', + 'Require client to provide their billing address', 'require_shipping_address_help': - 'Require client to provide their shipping address', + 'Require client to provide their shipping address', 'update_address': 'Adresi Güncelle', 'update_address_help': - 'Müşterinin adresini verilen ayrıntılarla güncelleyin', + 'Müşterinin adresini verilen ayrıntılarla güncelleyin', 'rate': 'Tarife', 'tax_rate': 'Vergi Oranı', 'new_tax_rate': 'Yeni Vergi Oranı', @@ -30051,13 +30052,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_tax_rate': 'Successfully restored tax rate', 'fill_products': 'Otomatik doldurma ürünleri', 'fill_products_help': - 'Bir ürün seçmek açıklama ve maliyeti otomatik olarak dolduracaktır', + 'Bir ürün seçmek açıklama ve maliyeti otomatik olarak dolduracaktır', 'update_products': 'Ürünleri otomatik güncelle', 'update_products_help': - 'Faturayı güncellemek ürün kütüphanesini otomatik olarak dolduracaktır.', + 'Faturayı güncellemek ürün kütüphanesini otomatik olarak dolduracaktır.', 'convert_products': 'Convert Products', 'convert_products_help': - 'Automatically convert product prices to the client\'s currency', + 'Automatically convert product prices to the client\'s currency', 'fees': 'Fees', 'limits': 'Limits', 'provider': 'Provider', @@ -30157,7 +30158,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_first_name': 'Please enter a first name', 'please_enter_a_last_name': 'Please enter a last name', 'please_agree_to_terms_and_privacy': - 'Please agree to the terms of service and privacy policy to create an account.', + 'Please agree to the terms of service and privacy policy to create an account.', 'i_agree_to_the': 'I agree to the', 'terms_of_service_link': 'terms of service', 'privacy_policy_link': 'privacy policy', @@ -30256,7 +30257,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', + 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', @@ -30460,7 +30461,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'marked_invoices_as_paid': 'Successfully marked invoices as sent', 'done': 'Tamam', 'please_enter_a_client_or_contact_name': - 'Please enter a client or contact name', + 'Please enter a client or contact name', 'dark_mode': 'Karanlık Mod', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', @@ -30542,7 +30543,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_8': ':user :invoice nolu faturayı arşivledi', 'activity_9': ':user :invoice nolu faturayı sildi', 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', + ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', 'activity_11': ':user :payment tutarlı ödemeyi güncelledi', 'activity_12': ':user :payment tutarlı ödemeyi arşivledi', 'activity_13': ':user :payment tutarlı ödemeyi sildi', @@ -30572,7 +30573,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_37': ':user masraf geri yükledi :expense', 'activity_39': ':user cancelled a :payment_amount payment :payment', 'activity_40': - ':user refunded :adjustment of a :payment_amount payment :payment', + ':user refunded :adjustment of a :payment_amount payment :payment', 'activity_41': ':payment_amount payment (:payment) failed', 'activity_42': ':user :task görevini oluşturdu', 'activity_43': ':user :task görevini güncelledi', @@ -32726,12 +32727,15 @@ mixin LocalizationsProvider on LocaleCodeAware { String get creditTerms => _localizedValues[localeCode]['credit_terms']; - String get slackWebhookUrl => _localizedValues[localeCode]['slack_webhook_url']; + String get slackWebhookUrl => + _localizedValues[localeCode]['slack_webhook_url']; - String get analyticsKey => _localizedValues[localeCode]['analytics_key']; + String get trackingId => _localizedValues[localeCode]['tracking_id']; String get integrations => _localizedValues[localeCode]['integrations']; + String get learnMore => _localizedValues[localeCode]['learn_more']; + String lookup(String key) { final lookupKey = toSnakeCase(key); return _localizedValues[localeCode][lookupKey] ??