diff --git a/lib/constants.dart b/lib/constants.dart index 6b85a05fcd3..5768c6ed209 100644 --- a/lib/constants.dart +++ b/lib/constants.dart @@ -4,7 +4,7 @@ class Constants { } // TODO remove version once #46609 is fixed -const String kClientVersion = '5.0.77'; +const String kClientVersion = '5.0.78'; const String kMinServerVersion = '5.0.4'; const String kAppName = 'Invoice Ninja'; diff --git a/lib/data/models/payment_model.dart b/lib/data/models/payment_model.dart index 51717145ae8..41dca4f01ee 100644 --- a/lib/data/models/payment_model.dart +++ b/lib/data/models/payment_model.dart @@ -114,7 +114,6 @@ abstract class PaymentEntity extends Object clientContactId: '', currencyId: '', invitationId: '', - isForInvoice: false, isApplying: false, ); } @@ -195,12 +194,6 @@ abstract class PaymentEntity extends Object @BuiltValueField(wireName: 'currency_id') String get currencyId; - @nullable - bool get isForInvoice; - - @nullable - bool get isForCredit; - @nullable bool get isApplying; diff --git a/lib/data/models/payment_model.g.dart b/lib/data/models/payment_model.g.dart index c24e8e873e3..abb5176cb48 100644 --- a/lib/data/models/payment_model.g.dart +++ b/lib/data/models/payment_model.g.dart @@ -213,20 +213,6 @@ class _$PaymentEntitySerializer implements StructuredSerializer { serializers.serialize(object.id, specifiedType: const FullType(String)), ]; Object value; - value = object.isForInvoice; - if (value != null) { - result - ..add('isForInvoice') - ..add( - serializers.serialize(value, specifiedType: const FullType(bool))); - } - value = object.isForCredit; - if (value != null) { - result - ..add('isForCredit') - ..add( - serializers.serialize(value, specifiedType: const FullType(bool))); - } value = object.isApplying; if (value != null) { result @@ -383,14 +369,6 @@ class _$PaymentEntitySerializer implements StructuredSerializer { result.currencyId = serializers.deserialize(value, specifiedType: const FullType(String)) as String; break; - case 'isForInvoice': - result.isForInvoice = serializers.deserialize(value, - specifiedType: const FullType(bool)) as bool; - break; - case 'isForCredit': - result.isForCredit = serializers.deserialize(value, - specifiedType: const FullType(bool)) as bool; - break; case 'isApplying': result.isApplying = serializers.deserialize(value, specifiedType: const FullType(bool)) as bool; @@ -783,10 +761,6 @@ class _$PaymentEntity extends PaymentEntity { @override final String currencyId; @override - final bool isForInvoice; - @override - final bool isForCredit; - @override final bool isApplying; @override final bool sendEmail; @@ -842,8 +816,6 @@ class _$PaymentEntity extends PaymentEntity { this.clientContactId, this.companyGatewayId, this.currencyId, - this.isForInvoice, - this.isForCredit, this.isApplying, this.sendEmail, this.gatewayRefund, @@ -948,8 +920,6 @@ class _$PaymentEntity extends PaymentEntity { clientContactId == other.clientContactId && companyGatewayId == other.companyGatewayId && currencyId == other.currencyId && - isForInvoice == other.isForInvoice && - isForCredit == other.isForCredit && isApplying == other.isApplying && sendEmail == other.sendEmail && gatewayRefund == other.gatewayRefund && @@ -987,12 +957,12 @@ class _$PaymentEntity extends PaymentEntity { $jc( $jc( $jc( - $jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc(0, amount.hashCode), applied.hashCode), refunded.hashCode), number.hashCode), clientId.hashCode), statusId.hashCode), transactionReference.hashCode), date.hashCode), typeId.hashCode), privateNotes.hashCode), customValue1.hashCode), customValue2.hashCode), customValue3.hashCode), customValue4.hashCode), exchangeRate.hashCode), exchangeCurrencyId.hashCode), isManual.hashCode), projectId.hashCode), vendorId.hashCode), invitationId.hashCode), - clientContactId.hashCode), - companyGatewayId.hashCode), - currencyId.hashCode), - isForInvoice.hashCode), - isForCredit.hashCode), + $jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc(0, amount.hashCode), applied.hashCode), refunded.hashCode), number.hashCode), clientId.hashCode), statusId.hashCode), transactionReference.hashCode), date.hashCode), typeId.hashCode), privateNotes.hashCode), customValue1.hashCode), customValue2.hashCode), customValue3.hashCode), customValue4.hashCode), exchangeRate.hashCode), exchangeCurrencyId.hashCode), isManual.hashCode), projectId.hashCode), + vendorId.hashCode), + invitationId.hashCode), + clientContactId.hashCode), + companyGatewayId.hashCode), + currencyId.hashCode), isApplying.hashCode), sendEmail.hashCode), gatewayRefund.hashCode), @@ -1035,8 +1005,6 @@ class _$PaymentEntity extends PaymentEntity { ..add('clientContactId', clientContactId) ..add('companyGatewayId', companyGatewayId) ..add('currencyId', currencyId) - ..add('isForInvoice', isForInvoice) - ..add('isForCredit', isForCredit) ..add('isApplying', isApplying) ..add('sendEmail', sendEmail) ..add('gatewayRefund', gatewayRefund) @@ -1155,14 +1123,6 @@ class PaymentEntityBuilder String get currencyId => _$this._currencyId; set currencyId(String currencyId) => _$this._currencyId = currencyId; - bool _isForInvoice; - bool get isForInvoice => _$this._isForInvoice; - set isForInvoice(bool isForInvoice) => _$this._isForInvoice = isForInvoice; - - bool _isForCredit; - bool get isForCredit => _$this._isForCredit; - set isForCredit(bool isForCredit) => _$this._isForCredit = isForCredit; - bool _isApplying; bool get isApplying => _$this._isApplying; set isApplying(bool isApplying) => _$this._isApplying = isApplying; @@ -1256,8 +1216,6 @@ class PaymentEntityBuilder _clientContactId = $v.clientContactId; _companyGatewayId = $v.companyGatewayId; _currencyId = $v.currencyId; - _isForInvoice = $v.isForInvoice; - _isForCredit = $v.isForCredit; _isApplying = $v.isApplying; _sendEmail = $v.sendEmail; _gatewayRefund = $v.gatewayRefund; @@ -1326,8 +1284,6 @@ class PaymentEntityBuilder clientContactId: BuiltValueNullFieldError.checkNotNull(clientContactId, 'PaymentEntity', 'clientContactId'), companyGatewayId: BuiltValueNullFieldError.checkNotNull(companyGatewayId, 'PaymentEntity', 'companyGatewayId'), currencyId: BuiltValueNullFieldError.checkNotNull(currencyId, 'PaymentEntity', 'currencyId'), - isForInvoice: isForInvoice, - isForCredit: isForCredit, isApplying: isApplying, sendEmail: sendEmail, gatewayRefund: gatewayRefund, diff --git a/lib/redux/credit/credit_actions.dart b/lib/redux/credit/credit_actions.dart index 121ac1175ff..9bc21221733 100644 --- a/lib/redux/credit/credit_actions.dart +++ b/lib/redux/credit/credit_actions.dart @@ -575,7 +575,6 @@ Future handleCreditAction( createEntity( context: context, entity: PaymentEntity(state: state).rebuild((b) => b - ..isForCredit = true ..typeId = kPaymentTypeCredit ..clientId = credit.clientId ..credits.addAll(credits diff --git a/lib/redux/credit/credit_selectors.dart b/lib/redux/credit/credit_selectors.dart index 16e908df717..c4bd8a98aab 100644 --- a/lib/redux/credit/credit_selectors.dart +++ b/lib/redux/credit/credit_selectors.dart @@ -61,7 +61,7 @@ List dropdownCreditSelector( invoice: creditB, clientMap: clientMap, sortAscending: true, - sortField: ClientFields.name, + sortField: CreditFields.number, userMap: userMap); }); diff --git a/lib/redux/invoice/invoice_actions.dart b/lib/redux/invoice/invoice_actions.dart index fc63d44a937..8dacc4e7e6b 100644 --- a/lib/redux/invoice/invoice_actions.dart +++ b/lib/redux/invoice/invoice_actions.dart @@ -645,7 +645,6 @@ void handleInvoiceAction(BuildContext context, List invoices, createEntity( context: context, entity: PaymentEntity(state: state).rebuild((b) => b - ..isForInvoice = true ..clientId = invoice.clientId ..invoices.addAll(invoices .where((invoice) => !(invoice as InvoiceEntity).isPaid) diff --git a/lib/ui/payment/edit/payment_edit.dart b/lib/ui/payment/edit/payment_edit.dart index 9c20bbaee78..e7c55c08710 100644 --- a/lib/ui/payment/edit/payment_edit.dart +++ b/lib/ui/payment/edit/payment_edit.dart @@ -154,10 +154,9 @@ class _PaymentEditState extends State { final localization = AppLocalization.of(context); final invoicePaymentables = payment.invoices.toList(); - if ((payment.isForInvoice != true || invoicePaymentables.isEmpty) && - invoicePaymentables - .where((paymentable) => paymentable.isEmpty) - .isEmpty) { + if (invoicePaymentables + .where((paymentable) => paymentable.isEmpty) + .isEmpty) { invoicePaymentables.add(PaymentableEntity()); } @@ -177,18 +176,27 @@ class _PaymentEditState extends State { creditTotal += credit.amount; }); - String amountPlaceholder; - if (paymentTotal != 0) { - amountPlaceholder = '${localization.amount} '; - if (creditTotal == 0) { - amountPlaceholder += - formatNumber(paymentTotal, context, clientId: payment.clientId); - } else { - amountPlaceholder += formatNumber(paymentTotal - creditTotal, context, - clientId: payment.clientId) + - ' + ${localization.credit} ' + - formatNumber(creditTotal, context, clientId: payment.clientId); - } + String amountPlaceholder = localization.amount; + + if (payment.invoices.length > 1) { + amountPlaceholder += ' • ' + + localization.total + + ' ' + + formatNumber(paymentTotal, context, clientId: payment.clientId); + } + + if (payment.credits.length > 1) { + amountPlaceholder += ' • ' + + localization.credit + + ' ' + + formatNumber(creditTotal, context, clientId: payment.clientId); + } + + double limit; + if (payment.amount != 0) { + limit = payment.amount - paymentTotal; + } else if (creditTotal != 0) { + limit = creditTotal - paymentTotal; } final body = Form( @@ -222,17 +230,14 @@ class _PaymentEditState extends State { state.userState.map, state.staticState), ), - if (payment.isForInvoice != true && payment.isForCredit != true) - DecoratedFormField( - controller: _amountController, - autocorrect: false, - keyboardType: TextInputType.numberWithOptions( - decimal: true, signed: true), - label: paymentTotal == 0 - ? localization.amount - : amountPlaceholder, - onSavePressed: viewModel.onSavePressed, - ), + DecoratedFormField( + controller: _amountController, + autocorrect: false, + keyboardType: TextInputType.numberWithOptions( + decimal: true, signed: true), + label: amountPlaceholder, + onSavePressed: viewModel.onSavePressed, + ), ] else DecoratedFormField( controller: _numberController, @@ -251,9 +256,7 @@ class _PaymentEditState extends State { paymentable: invoicePaymentables[index], index: index, entityType: EntityType.invoice, - limit: payment.amount == 0 - ? null - : payment.amount - paymentTotal, + limit: limit, ), if (payment.isApplying != true) DatePicker( @@ -278,8 +281,7 @@ class _PaymentEditState extends State { .rebuild((b) => b..typeId = paymentType?.id ?? '')), ), if (payment.isNew || payment.isApplying == true) - if (payment.isForInvoice != true && - state.company.isModuleEnabled(EntityType.credit)) + if (state.company.isModuleEnabled(EntityType.credit)) for (var index = 0; index < creditPaymentables.length; index++) @@ -727,7 +729,7 @@ class _PaymentableEditorState extends State { autocorrect: false, keyboardType: TextInputType.numberWithOptions(decimal: true, signed: true), - label: payment.isForInvoice == true + label: widget.entityType == EntityType.invoice ? localization.amount : localization.applied, onSavePressed: viewModel.onSavePressed, @@ -736,7 +738,6 @@ class _PaymentableEditorState extends State { ], if ((widget.entityType == EntityType.invoice && payment.invoices.isNotEmpty && - payment.isForInvoice != true && _invoiceId != null) || (widget.entityType == EntityType.credit && payment.credits.isNotEmpty && diff --git a/lib/ui/payment/edit/payment_edit_vm.dart b/lib/ui/payment/edit/payment_edit_vm.dart index 677160150e6..90d6159861a 100644 --- a/lib/ui/payment/edit/payment_edit_vm.dart +++ b/lib/ui/payment/edit/payment_edit_vm.dart @@ -89,9 +89,7 @@ class PaymentEditVM { showDialog( context: navigatorKey.currentContext, builder: (BuildContext context) { - return ErrorDialog(payment.isForCredit - ? localization.creditIsMoreThanInvoice - : localization.negativePaymentError); + return ErrorDialog(localization.negativePaymentError); }); return null; } diff --git a/lib/ui/settings/templates_and_reminders.dart b/lib/ui/settings/templates_and_reminders.dart index 9eb42ef1ce0..3da93b5a798 100644 --- a/lib/ui/settings/templates_and_reminders.dart +++ b/lib/ui/settings/templates_and_reminders.dart @@ -168,8 +168,6 @@ class _TemplatesAndRemindersState extends State _defaultBody = html2md.convert(_defaultBody); } }); - - _onChanged(); } void _onTextChanged() { @@ -353,6 +351,7 @@ class _TemplatesAndRemindersState extends State showBlank: false, onChanged: (dynamic value) => setState(() { _loadTemplate(value); + _onChanged(); viewModel.onTemplateChanged(value); }), items: EmailTemplate.values.where((value) { diff --git a/lib/utils/i18n.dart b/lib/utils/i18n.dart index ac161dc03c8..0934c66d4ac 100644 --- a/lib/utils/i18n.dart +++ b/lib/utils/i18n.dart @@ -2000,6 +2000,28 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'sq': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'The fee for a :amount invoice would be :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Aprovo', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -3977,6 +3999,28 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'ar': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'The fee for a :amount invoice would be :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Approve', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -5946,6 +5990,28 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'zh_TW': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': ':amount 份發票的費用應為 :total。', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': '同意', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -7892,6 +7958,28 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'hr': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'The fee for a :amount invoice would be :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Odobri', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -9864,6 +9952,28 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'cs': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'The fee for a :amount invoice would be :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Schválit', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -11833,6 +11943,28 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'da': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'The fee for a :amount invoice would be :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Godkend', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -13802,6 +13934,28 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'nl': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'De toeslag voor een :amount factuur is :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Goedkeuren', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -15797,6 +15951,28 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'en_GB': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'The fee for a :amount invoice would be :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Approve', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -17765,7 +17941,29 @@ mixin LocalizationsProvider on LocaleCodeAware { 'status_color_theme': 'Status Color Theme', 'load_color_theme': 'Load Color Theme', }, - 'et': { + 'fi': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'The palkkio a :amount lasku would be :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Hyväksy', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -17781,7 +17979,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'convert_to': 'Convert To', 'client_currency': 'Client Currency', 'company_currency': 'Company Currency', - 'purged_client': 'Successfully purged client', + 'purged_client': 'onnistuneesti purged asiakas', 'custom_emails_disabled_help': 'To prevent spam we require upgrading to a paid account to customize the email', 'upgrade_to_add_company': 'Upgrade your plan to add companies', @@ -17801,23 +17999,23 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_122': ':user archived recurring expense :recurring_expense', 'activity_123': ':user deleted recurring expense :recurring_expense', 'activity_124': ':user restored recurring expense :recurring_expense', - 'normal': 'Tavaline', + 'normal': 'Normal', 'large': 'Large', - 'extra_large': 'Väga suur', - 'show_pdf_preview': 'Kuva PDF-i eelvaade', - 'show_pdf_preview_help': 'Kuva PDF-i eelvaade arvete redigeerimise ajal', - 'print_pdf': 'Prindi PDF', - 'remind_me': 'Tuleta mulle meelde', + 'extra_large': 'Extra Large', + 'show_pdf_preview': 'Show PDF Preview', + 'show_pdf_preview_help': 'Display PDF preview while editing invoices', + 'print_pdf': 'Print PDF', + 'remind_me': 'Remind Me', 'instant_bank_pay': 'Instant Bank Pay', 'click_selected': 'Click Selected', - 'hide_preview': 'Peida eelvaade', - 'edit_record': 'Redigeeri kirjet', + 'hide_preview': 'Hide Preview', + 'edit_record': 'Edit Record', 'credit_is_more_than_invoice': - 'Ettemaksusumma ei tohi olla suurem kui arve summa', + 'The credit amount can not be more than the invoice amount', 'giropay': 'GiroPay', - 'direct_debit': 'Otsekorraldusega', - 'please_set_a_password': 'Palun määra konto parool', - 'set_password': 'Sea Salasõna', + 'direct_debit': 'Direct Debit', + 'please_set_a_password': 'Please set an account password', + 'set_password': 'Aseta salasana', 'recommend_desktop': 'We recommend using the desktop app for the best performance', 'recommend_mobile': @@ -17825,226 +18023,225 @@ mixin LocalizationsProvider on LocaleCodeAware { 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', - 'acss': 'Eelvolitatud deebetmaksed', - 'becs': 'BECS otsekorraldus', - 'bulk_download': 'Lae alla', + 'acss': 'Esihyväksy debit korttimaksut', + 'becs': 'BECS Direct Debit', + 'bulk_download': 'Download', 'persist_data_help': 'Save data locally to enable the app to start faster, disabling may improve performance in large accounts', 'persist_ui': 'Persist UI', 'persist_ui_help': 'Save UI state locally to enable the app to start at the last location, disabling may improve performance', - 'client_postal_code': 'Kliendi postiindeks', - 'client_vat_number': 'Kliendi KMKR number', + 'client_postal_code': 'Client Postal Code', + 'client_vat_number': 'Client VAT Number', 'has_tasks': 'Has Tasks', - 'registration': 'Registreerimine', + 'registration': 'Registration', 'unauthorized_stripe_warning': - 'Volitage Stripe võrgumakseid vastu võtma.', - 'view_expense': 'Vaadake kulu # :kulu', - 'view_statement': 'Vaata aruannet', - 'sepa': 'SEPA Direct Debit', + 'Please authorize Stripe to accept online payments.', + 'view_expense': 'Näytä kulu # :kulu', + 'view_statement': 'Näytä Tiliote', + 'sepa': 'SEPA-maksu', 'ideal': 'iDEAL', 'przelewy24': 'Przelewy24', 'eps': 'EPS', 'fpx': 'FPX', - 'update_all_records': 'Värskendage kõiki kirjeid', - 'system': 'Süsteem', - 'set_default_company': 'Määrake vaikeettevõte', - 'updated_company': 'Ettevõtte värskendamine õnnestus', + 'update_all_records': 'Update all records', + 'system': 'Järjestelmä', + 'set_default_company': 'Set Default Company', + 'updated_company': 'Successfully updated company', 'kbc': 'KBC', - 'bancontact': 'Blokeeri kontakt', - 'why_are_you_leaving': - 'Aidake meil täiustada, öelge meile põhjus (valikuline)', + 'bancontact': 'Bancontact', + 'why_are_you_leaving': 'Help us improve by telling us why (optional)', 'webhook_success': 'Webhook Success', - 'error_cross_client_tasks': - 'Kõik ülesanded peavad kuuluma samale kliendile', + 'error_cross_client_tasks': 'Tasks must all belong to the same client', 'error_cross_client_expenses': - 'Kõik kulud peavad kuuluma samale kliendile', - 'app': 'Rakendus', - 'for_best_performance': - 'Parima suutlikuse saavutamiseks laadige alla rakendus :app', + 'Expenses must all belong to the same client', + 'app': 'App', + 'for_best_performance': 'For the best performance download the :app app', 'gross_line_total': 'Gross line total', 'bulk_email_invoice': 'Email Invoice', 'bulk_email_quote': 'Email Quote', 'bulk_email_credit': 'Email Credit', - 'from_name': 'Kellelt Nimi', - 'clone_to_expense': 'Klooni kuluks', - 'recurring_expense': 'Korduva kulu', - 'recurring_expenses': 'Korduvad kulud', - 'new_recurring_expense': 'Uus Korduv kulu', - 'edit_recurring_expense': 'Redigeeri Korduv kulu', - 'created_recurring_expense': 'Korduva kulu loomine õnnestus', - 'updated_recurring_expense': 'Korduva kulu värskendamine õnnestus', - 'archived_recurring_expense': 'Korduva kulu arhiveerimine õnnestus', - 'deleted_recurring_expense': 'Projekti kustutamine õnnestus', + 'from_name': 'From nimi', + 'clone_to_expense': 'Kopioi kuluksi', + 'recurring_expense': 'toistuva kulu', + 'recurring_expenses': 'toistuva kulut', + 'new_recurring_expense': 'uusi toistuva kulu', + 'edit_recurring_expense': 'muokkaa toistuva kulu', + 'created_recurring_expense': 'onnistuneesti luotu toistuva kulu', + 'updated_recurring_expense': 'onnistuneesti päivitetty toistuva kulu', + 'archived_recurring_expense': 'onnistuneesti arkistoitu toistuva kulu', + 'deleted_recurring_expense': 'Projekti poistettu onnistuneesti', 'removed_recurring_expense': 'Successfully removed recurring expense', - 'restored_recurring_expense': 'Korduva kulu taastamine õnnestus', + 'restored_recurring_expense': 'onnistuneesti palautettu toistuva kulu', 'search_recurring_expense': 'Search Recurring Expense', 'search_recurring_expenses': 'Search Recurring Expenses', - 'last_sent_date': 'Viimase saatmise kuupäev', - 'include_drafts': 'Kaasa mustandid', - 'include_drafts_help': 'Kaasake aruannetesse kirjete mustandid', + 'last_sent_date': 'Last Sent Date', + 'include_drafts': 'Include Drafts', + 'include_drafts_help': 'Include draft records in reports', 'is_invoiced': 'Is Invoiced', - 'change_plan': 'Muuda plaani', + 'change_plan': 'Change Plan', 'persist_data': 'Persist Data', - 'customer_count': 'Klientide arv', - 'verify_customers': 'Kinnitage kliendid', + 'customer_count': 'Customer Count', + 'verify_customers': 'Verify Customers', 'google_analytics': 'Google Analytics', - 'google_analytics_tracking_id': 'Google Analyticsi jälgimise ID', - 'decimal_comma': 'Kümnendkoma', - 'use_comma_as_decimal_place': 'Kasutage vormides koma kümnendkohana', - 'select_method': 'Valige meetod', - 'select_platform': 'Valige Platvorm', + 'google_analytics_tracking_id': 'Google Analytics Tracking ID', + 'decimal_comma': 'Decimal Comma', + 'use_comma_as_decimal_place': 'Use comma as decimal place in forms', + 'select_method': 'Select Method', + 'select_platform': 'Select Platform', 'use_web_app_to_connect_gmail': - 'Kasutage Gmailiga ühenduse loomiseks veebirakendust', - 'expense_tax_help': 'Kauba maksumäärad on keelatud', + 'Please use the web app to connect to Gmail', + 'expense_tax_help': 'Item tax rates are disabled', 'enable_markdown': 'Enable Markdown', 'enable_markdown_help': 'Convert markdown to HTML on the PDF', - 'user_guide': 'Kasutusjuhend', - 'add_second_contact': 'Lisa teine ​​kontakt', - 'previous_page': 'Eelmine leht', - 'next_page': 'Järgmine leht', - 'export_colors': 'Ekspordi värve', - 'import_colors': 'Impordi värve', - 'clear_all': 'Puhasta kõik', - 'contrast': 'Kontrast', - 'custom_colors': 'Kohandatud värvid', - 'colors': 'Värvid', - 'sidebar_active_background_color': 'Külgriba aktiivne taustavärv', - 'sidebar_active_font_color': 'Külgriba aktiivne fondivärv', - 'sidebar_inactive_background_color': 'Külgriba mitteaktiivne taustavärv', - 'sidebar_inactive_font_color': 'Külgriba passiivne fondi värv', + 'user_guide': 'User Guide', + 'add_second_contact': 'Add Second Contact', + 'previous_page': 'Previous Page', + 'next_page': 'Next Page', + 'export_colors': 'Export Colors', + 'import_colors': 'Import Colors', + 'clear_all': 'Clear All', + 'contrast': 'Contrast', + 'custom_colors': 'Custom Colors', + 'colors': 'Colors', + 'sidebar_active_background_color': 'Sidebar Active Background Color', + 'sidebar_active_font_color': 'Sidebar Active Font Color', + 'sidebar_inactive_background_color': 'Sidebar Inactive Background Color', + 'sidebar_inactive_font_color': 'Sidebar Inactive Font Color', 'table_alternate_row_background_color': - 'Tabeli alternatiivse rea taustavärv', - 'invoice_header_background_color': 'Arve päise taustavärv', - 'invoice_header_font_color': 'Arve päise fondi värv', - 'net_subtotal': 'Neto kokku', - 'review_app': 'Vaadake rakendus üle', - 'check_status': 'Kontrolli olekut', - 'free_trial': 'Tasuta prooviversioon', + 'Table Alternate Row Background Color', + 'invoice_header_background_color': 'Invoice Header Background Color', + 'invoice_header_font_color': 'Invoice Header Font Color', + 'net_subtotal': 'Netto', + 'review_app': 'Review App', + 'check_status': 'Check Status', + 'free_trial': 'Free Trial', 'free_trial_ends_in_days': - 'Pro-paketi prooviperiood lõpeb :kogus päeva pärast, klõpsake versiooniuuendamiseks.', + 'The Pro plan trial ends in :count days, click to upgrade.', 'free_trial_ends_today': - 'Täna on Pro-paketi prooviversiooni viimane päev, klõpsake versiooniuuendamiseks.', - 'change_email': 'Muuda meiliaadressi', + 'Today is the last day of the Pro plan trial, click to upgrade.', + 'change_email': 'Change Email', 'client_portal_domain_hint': 'Optionally configure a separate client portal domain', - 'tasks_shown_in_portal': 'Portaalis kuvatud ülesanded', + 'tasks_shown_in_portal': 'Tasks Shown in Portal', 'uninvoiced': 'Uninvoiced', 'subdomain_guide': 'The subdomain is used in the client portal to personalize links to match your brand. ie, https://your-brand.invoicing.co', 'send_time': 'Send Time', - 'import_data': 'Impordi Andmed', - 'import_settings': 'Impordi sätted', - 'json_file_missing': 'Esitage JSON-fail', - 'json_option_missing': 'Valige importimiseks seaded ja/või andmed', + 'import_data': 'Tuo tietoja', + 'import_settings': 'Import Settings', + 'json_file_missing': 'Please provide the JSON file', + 'json_option_missing': 'Please select to import the settings and/or data', 'json': 'JSON', - 'no_payment_types_enabled': 'Ühtegi maksetüüpi pole lubatud', - 'wait_for_data': 'Palun oodake andmete laadimise lõpetamist', - 'net_total': 'Netosumma', - 'has_taxes': 'On maksud', - 'import_customers': 'Impordi kliendid', - 'imported_customers': 'Klientide importimine algas edukalt', - 'login_success': 'Sisselogimine õnnestus', - 'login_failure': 'Sisselogimine ebaõnnestus', - 'exported_data': 'Kui fail on valmis, saate allalaadimislingiga meili', - 'include_deleted_clients': 'Sisaldab kustutatud kliente', + 'no_payment_types_enabled': 'No payment types enabled', + 'wait_for_data': 'Please wait for the data to finish loading', + 'net_total': 'Net Total', + 'has_taxes': 'Has Taxes', + 'import_customers': 'Import Customers', + 'imported_customers': 'Successfully started importing customers', + 'login_success': 'Successful Login', + 'login_failure': 'Failed Login', + 'exported_data': + 'Once the file is ready you\"ll receive an email with a download link', + 'include_deleted_clients': 'Include Deleted Clients', 'include_deleted_clients_help': - 'Laadige kustutatud klientidele kuuluvad kirjed', - 'step_1_sign_in': '1. samm: logige sisse', - 'step_2_authorize': '2. samm: autoriseerimine', - 'account_id': 'Konto ID', + 'Load records belonging to deleted clients', + 'step_1_sign_in': 'Step 1: Sign In', + 'step_2_authorize': 'Step 2: Authorize', + 'account_id': 'Account ID', 'migration_not_yet_completed': 'The migration has not yet completed', 'activity_100': ':user created recurring invoice :recurring_invoice', 'activity_101': ':user updated recurring invoice :recurring_invoice', 'activity_102': ':user archived recurring invoice :recurring_invoice', 'activity_103': ':user deleted recurring invoice :recurring_invoice', 'activity_104': ':user restored recurring invoice :recurring_invoice', - 'show_task_end_date': 'Näita ülesande lõppkuupäeva', - 'show_task_end_date_help': 'Lubage ülesande lõppkuupäeva määramine', + 'show_task_end_date': 'Show Task End Date', + 'show_task_end_date_help': 'Enable specifying the task end date', 'gateway_setup': 'Gateway Setup', - 'preview_sidebar': 'Külgriba eelvaade', - 'years_data_shown': 'Näidatud aastate andmed', - 'ended_all_sessions': 'Kõik seansid on edukalt lõppenud', - 'end_all_sessions': 'Lõpetage kõik seansid', - 'count_session': '1 seanss', - 'count_sessions': ':kogus seansse', - 'invoice_created': 'Arve loodud', - 'quote_created': 'Hinnapakkumine loodud', - 'credit_created': 'Ettemaks loodud', + 'preview_sidebar': 'Preview Sidebar', + 'years_data_shown': 'Years Data Shown', + 'ended_all_sessions': 'Successfully ended all sessions', + 'end_all_sessions': 'End All Sessions', + 'count_session': '1 Session', + 'count_sessions': ':count Sessions', + 'invoice_created': 'Invoice Created', + 'quote_created': 'Quote Created', + 'credit_created': 'Credit Created', 'pro': 'Pro', - 'enterprise': 'Ettevõte', - 'last_updated': 'Viimati uuendatud', - 'invoice_item': 'Arve üksus', - 'quote_item': 'Hinnapakkumise üksus', - 'contact_first_name': 'Kontakti Eesnimi', - 'contact_last_name': 'Kontakti Perekonnanimi', - 'order': 'Telli', - 'unassigned': 'Määramata', - 'partial_value': 'Peab olema suurem kui null ja väiksem kui kogusumma', - 'search_kanban': 'Otsige Kanbanist', - 'search_kanbans': 'Otsige Kanbanist', + 'enterprise': 'Enterprise', + 'last_updated': 'viime päivitetty', + 'invoice_item': 'Invoice Item', + 'quote_item': 'Quote Item', + 'contact_first_name': 'kontakti ensimmäinen nimi', + 'contact_last_name': 'kontakti viime nimi', + 'order': 'Order', + 'unassigned': 'Kohdistamaton', + 'partial_value': + 'Täytyy olla suurempi kuin nolla ja vähemmän kuin kaikki yhteensä', + 'search_kanban': 'Search Kanban', + 'search_kanbans': 'Search Kanban', 'kanban': 'Kanban', - 'enable': 'Luba', - 'move_top': 'Liigu üles', - 'move_up': 'Liigu üles', - 'move_down': 'Liigu alla', - 'move_bottom': 'Liigu alla', + 'enable': 'Ota käyttöön', + 'move_top': 'Move Top', + 'move_up': 'Move Up', + 'move_down': 'Move Down', + 'move_bottom': 'Move Bottom', 'subdomain_help': - 'Set the subdomain or display the invoice on your own website.', + 'Aseta alidomain tai näytä lasku omalla verkkosivullasi.', 'body_variable_missing': 'Error: the custom email must include a :body variable', 'add_body_variable_message': 'Make sure to include a :body variable', 'view_date_formats': 'View Date Formats', - 'is_viewed': 'On vaadatud', - 'letter': 'Kiri', - 'legal': 'Juriidiline', - 'page_layout': 'Lehe kujundus', + 'is_viewed': 'Is Viewed', + 'letter': 'Letter', + 'legal': 'Legal', + 'page_layout': 'Page Layout', 'portrait': 'Portrait', 'landscape': 'Landscape', 'owner_upgrade_to_paid_plan': 'The account owner can upgrade to a paid plan to enable the advanced advanced settings', 'upgrade_to_paid_plan': 'Upgrade to a paid plan to enable the advanced settings', - 'invoice_payment_terms': 'Arve tasumise tingimused', - 'quote_valid_until': 'Pakkumine kehtib kuni', - 'no_headers': 'Päised puuduvad', - 'add_header': 'Lisa päis', - 'remove_header': 'Eemalda päis', + 'invoice_payment_terms': 'Invoice Payment Terms', + 'quote_valid_until': 'Quote Valid Until', + 'no_headers': 'No Headers', + 'add_header': 'Add Header', + 'remove_header': 'Remove Header', 'return_url': 'Return URL', - 'rest_method': 'REST meetod', + 'rest_method': 'REST Method', 'header_key': 'Header Key', - 'header_value': 'Päise väärtus', + 'header_value': 'Header Value', 'recurring_products': 'Recurring Products', 'promo_code': 'Promo code', - 'promo_discount': 'Promo allahindlus', - 'allow_cancellation': 'Luba tühistamine', + 'promo_discount': 'Promo Discount', + 'allow_cancellation': 'Allow Cancellation', 'per_seat_enabled': 'Per Seat Enabled', 'max_seats_limit': 'Max Seats Limit', - 'trial_enabled': 'Prooviversioon lubatud', - 'trial_duration': 'Prooviperioodi kestus', + 'trial_enabled': 'Trial Enabled', + 'trial_duration': 'Trial Duration', 'allow_query_overrides': 'Allow Query Overrides', 'allow_plan_changes': 'Allow Plan Changes', 'plan_map': 'Plan Map', - 'refund_period': 'Tagastamisperiood', + 'refund_period': 'Refund Period', 'webhook_configuration': 'Webhook Configuration', - 'purchase_page': 'Ostu leht', - 'security': 'Turvalisus', - 'email_bounced': 'E-post põrkus tagasi', - 'email_spam_complaint': 'Rämpsposti kaebus', - 'email_delivery': 'E-posti teel kohaletoimetamine', + 'purchase_page': 'Purchase Page', + 'security': 'Security', + 'email_bounced': 'Email Bounced', + 'email_spam_complaint': 'Spam Complaint', + 'email_delivery': 'Email Delivery', 'webhook_response': 'Webhook Response', - 'pdf_response': 'PDF vastus', - 'authentication_failure': 'Autentimise ebaõnnestumine', - 'pdf_failed': 'PDF ebaõnnestus', - 'pdf_success': 'PDF õnnestus', - 'modified': 'Muudetud', + 'pdf_response': 'PDF Response', + 'authentication_failure': 'Authentication Failure', + 'pdf_failed': 'PDF Failed', + 'pdf_success': 'PDF Success', + 'modified': 'Modified', 'subscription': 'Subscription', - 'subscriptions': 'Tellimused', + 'subscriptions': 'Subscriptions', 'new_subscription': 'New Subscription', - 'edit_subscription': 'Redigeeri tellimust', - 'created_subscription': 'Tellimuse loomine õnnestus', - 'updated_subscription': 'Tellimuse värskendamine õnnestus', - 'archived_subscription': 'Tellimuse arhiveerimine õnnestus', + 'edit_subscription': 'muokkaa tilaus', + 'created_subscription': 'onnistuneesti luotu tilaus', + 'updated_subscription': 'onnistuneesti päivitetty tilaus', + 'archived_subscription': 'onnistuneesti arkistoitu tilaus', 'deleted_subscription': 'Successfully deleted subscription', 'removed_subscription': 'Successfully removed subscription', 'restored_subscription': 'Successfully restored subscription', @@ -18071,7 +18268,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Warning: Changing your phone number will disable 2FA', 'help_translate': 'Help Translate', 'please_select_a_country': 'Please select a country', - 'resend_invite': 'Saada kutse uuesti', + 'resend_invite': 'Resend Invitation', 'disabled_two_factor': 'Successfully disabled 2FA', 'connected_google': 'Successfully connected account', 'disconnected_google': 'Successfully disconnected account', @@ -18083,11 +18280,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Please provide a mobile phone number to enable two factor authentication', 'send_sms': 'Send SMS', 'sms_code': 'SMS Code', - 'two_factor_setup_help': 'Scan the bar code with a :link compatible app.', - 'enabled_two_factor': 'Kahefaktoriline autentimine edukalt rakendatud', + 'two_factor_setup_help': 'Scan bar koodi a :link compatible app.', + 'enabled_two_factor': + 'Kaksivaiheinen tunnistautuminen otettu onnistuneesti käyttöön', 'connect_google': 'Connect Google', 'disconnect_google': 'Disconnect Google', - 'enable_two_factor': 'Kaheastmeline Autentimine', + 'enable_two_factor': 'Kaksivaiheinen tunnistautuminen', 'disable_two_factor': 'Disable Two Factor', 'require_password_with_social_login': 'Require Password with Social Login', @@ -18100,7 +18298,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'security_settings': 'Security Settings', 'resend_email': 'Resend Email', 'confirm_your_email_address': 'Please confirm your email address', - 'refunded_payment': 'Tagastatud makse', + 'refunded_payment': 'Hyvitetty maksu', 'partially_unapplied': 'Partially Unapplied', 'select_a_gmail_user': 'Please select a user authenticated with Gmail', 'list_long_press': 'List Long Press', @@ -18110,59 +18308,59 @@ mixin LocalizationsProvider on LocaleCodeAware { 'An email has been sent to confirm the email address', 'counter_pattern_error': 'To use :client_counter please add either :client_number or :client_id_number to prevent conflicts', - 'this_quarter': 'See kvartal', - 'last_quarter': 'Viimane kvartal', + 'this_quarter': 'This Quarter', + 'last_quarter': 'viime Quarter', 'to_update_run': 'To update run', - 'convert_to_invoice': 'Muuda Arveks', - 'registration_url': 'Registreerimise URL', - 'invoice_project': 'Arve projekt', - 'invoice_task': 'Koosta ülesande arve', - 'invoice_expense': 'Arve kulu', + 'convert_to_invoice': 'Muuta laskuksi', + 'registration_url': 'Registration URL', + 'invoice_project': 'Lasku projekti', + 'invoice_task': 'Laskuta tehtävä', + 'invoice_expense': 'Lasku kulu', 'search_payment_term': 'Search 1 Payment Term', 'search_payment_terms': 'Search :count Payment Terms', - 'save_and_preview': 'Salvesta ja eelvaade', - 'save_and_email': 'Salvesta ja saada meil', - 'supported_events': 'Supported Events', - 'converted_amount': 'Konverteeritud summa', - 'converted_balance': 'Konverteeritud saldo', + 'save_and_preview': 'Save and Preview', + 'save_and_email': 'Save and Email', + 'supported_events': 'Tuetut tapahtumat', + 'converted_amount': 'Converted määrä', + 'converted_balance': 'Converted Balance', 'converted_paid_to_date': 'Converted Paid to Date', 'converted_credit_balance': 'Converted Credit Balance', 'converted_total': 'Converted Total', - 'is_sent': 'On saadetud', - 'default_documents': 'Vaikimisi Dokumendid', - 'document_upload': 'Dokumendi üleslaadimine', - 'document_upload_help': 'Võimaldab klientidel dokumente üles laadida', - 'expense_total': 'Kulud kokku', - 'enter_taxes': 'Sisestage Maksud', + 'is_sent': 'Is Sent', + 'default_documents': 'oletus Documents', + 'document_upload': 'Document Upload', + 'document_upload_help': 'Enable clients to upload documents', + 'expense_total': 'Expense Total', + 'enter_taxes': 'Enter Taxes', 'by_rate': 'By Rate', - 'by_amount': 'Summa järgi', - 'enter_amount': 'Sisesta summa', - 'before_taxes': 'Enne makse', - 'after_taxes': 'Peale makse', - 'color': 'Värv', - 'show': 'Näita', - 'hide': 'Peida', - 'empty_columns': 'Tühjad veerud', + 'by_amount': 'By Amount', + 'enter_amount': 'Enter Amount', + 'before_taxes': 'Before Taxes', + 'after_taxes': 'After Taxes', + 'color': 'Color', + 'show': 'Show', + 'hide': 'Piilota', + 'empty_columns': 'Empty Columns', 'debug_mode_is_enabled': 'Debug mode is enabled', 'debug_mode_is_enabled_help': 'Warning: it is intended for use on local machines, it can leak credentials. Click to learn more.', 'running_tasks': 'Running Tasks', - 'recent_tasks': 'Viimased ülesanded', - 'recent_expenses': 'Viimased kulud', - 'upcoming_expenses': 'Eelseisvad kulud', - 'update_app': 'Värskenda rakendust', - 'started_import': 'Impordi alustamine õnnestus', + 'recent_tasks': 'Recent Tasks', + 'recent_expenses': 'Recent Expenses', + 'upcoming_expenses': 'Upcoming Expenses', + 'update_app': 'Update App', + 'started_import': 'Successfully started import', 'duplicate_column_mapping': 'Duplicate column mapping', 'uses_inclusive_taxes': 'Uses Inclusive Taxes', 'is_amount_discount': 'Is Amount Discount', - 'column': 'Tulp', - 'sample': 'Näidis', + 'column': 'Sarake', + 'sample': 'Otos', 'map_to': 'Map To', - 'import': 'Import', + 'import': 'Tuo', 'first_row_as_column_names': 'Use first row as column names', - 'select_file': 'Valige fail', + 'select_file': 'ystävällisesti valitsee tiedosto', 'no_file_selected': 'No File Selected', - 'csv_file': 'CSV fail', + 'csv_file': 'CSV tiedosto', 'csv': 'CSV', 'freshbooks': 'FreshBooks', 'invoice2go': 'Invoice2go', @@ -18172,279 +18370,277 @@ mixin LocalizationsProvider on LocaleCodeAware { 'accounting': 'Accounting', 'required_files_missing': 'Please provide all CSVs.', 'import_type': 'Import Type', - 'html_mode': 'HTML režiim', - 'html_mode_help': 'Värskenduste eelvaade on kiirem, kuid vähem täpne', - 'view_licenses': 'Vaadake litsentse', + 'html_mode': 'HTML Mode', + 'html_mode_help': 'Preview updates faster but is less accurate', + 'view_licenses': 'View Licenses', 'webhook_url': 'Webhook URL', 'fullscreen_editor': 'Fullscreen Editor', 'sidebar_editor': 'Sidebar Editor', - 'please_type_to_confirm': 'Kinnitamiseks tippige \":value\".', + 'please_type_to_confirm': 'Please type \":value\" to confirm', 'purge': 'Purge', - 'service': 'Teenus', - 'clone_to': 'Kloonida', + 'service': 'Service', + 'clone_to': 'Clone To', 'clone_to_other': 'Clone to Other', - 'labels': 'Sildid', - 'add_custom': 'Lisa kohandatud', + 'labels': 'Labels', + 'add_custom': 'Lisää mukautettu', 'payment_tax': 'Payment Tax', - 'unpaid': 'Maksmata', + 'unpaid': 'Maksamaton', 'white_label': 'White Label', - 'delivery_note': 'Saateleht', - 'sent_invoices_are_locked': 'Saadetud arved on lukus', - 'paid_invoices_are_locked': 'Tasutud arved on lukus', + 'delivery_note': 'Delivery Huom', + 'sent_invoices_are_locked': 'Sent invoices are locked', + 'paid_invoices_are_locked': 'Paid invoices are locked', 'source_code': 'Source Code', - 'app_platforms': 'Rakenduste platvormid', - 'invoice_late': 'Arve Hilinenud', - 'quote_expired': 'Hinnapakkumine aegunud', - 'partial_due': 'Osaline tähtaeg', - 'invoice_total': 'Arve kokku', - 'quote_total': 'Hinnapakkumine kokku', - 'credit_total': 'Ettemakse kokku', - 'recurring_invoice_total': 'Arve kokku', - 'actions': 'Tegevused', - 'expense_number': 'Kulu number', - 'task_number': 'Ülesande number', - 'project_number': 'Projekti number', - 'project_name': 'Projekti nimi', - 'warning': 'Hoiatus', - 'view_settings': 'Kuva Seaded', + 'app_platforms': 'App Platforms', + 'invoice_late': 'Invoice Late', + 'quote_expired': 'Quote Expired', + 'partial_due': 'Partial Due', + 'invoice_total': 'Maksettava', + 'quote_total': 'Tarjouksen loppusumma', + 'credit_total': 'luotto yhteensä', + 'recurring_invoice_total': 'Invoice Total', + 'actions': 'Actions', + 'expense_number': 'Expense Number', + 'task_number': 'Task Number', + 'project_number': 'Project Number', + 'project_name': 'Project Name', + 'warning': 'Varoitus', + 'view_settings': 'View Settings', 'company_disabled_warning': - 'Hoiatus: see ettevõte pole veel aktiveeritud', - 'late_invoice': 'Hilinenud arve', - 'expired_quote': 'Aegunud hinnapakkumine', - 'remind_invoice': 'Tuleta meelde arvet', + 'Warning: this company has not yet been activated', + 'late_invoice': 'Late Invoice', + 'expired_quote': 'Expired Quote', + 'remind_invoice': 'Remind Invoice', 'cvv': 'CVV', - 'client_name': 'Kliendi Nimi', - 'client_phone': 'Kliendi telefon', - 'required_fields': 'nõutud väljad', + 'client_name': 'Asiakkaan nimi', + 'client_phone': 'Client Phone', + 'required_fields': 'Required Fields', 'calculated_rate': 'Calculated Rate', 'default_task_rate': 'Default Task Rate', 'clear_cache': 'Clear Cache', 'sort_order': 'Sort Order', - 'task_status': 'Olek', - 'task_statuses': 'Ülesande olekud', - 'new_task_status': 'Uus ülesande olek', - 'edit_task_status': 'Redigeeri ülesande olekut', - 'created_task_status': 'Ülesande olek on edukalt loodud', - 'updated_task_status': 'Ülesande staatus edukalt uuendatud', - 'archived_task_status': 'Ülesande olek on edukalt arhiveeritud', - 'deleted_task_status': 'Ülesande olek on edukalt kustutatud', - 'removed_task_status': 'Ülesande olek on edukalt eemaldatud', - 'restored_task_status': 'Ülesande olek on edukalt taastatud', - 'archived_task_statuses': - ':value ülesannete olekute arhiveerimine õnnestus', - 'deleted_task_statuses': ':value ülesannete olekute kustutamine õnnestus', - 'restored_task_statuses': ':value ülesannete olekute taastamine õnnestus', + 'task_status': 'Status', + 'task_statuses': 'Task Statuses', + 'new_task_status': 'New Task Status', + 'edit_task_status': 'Edit Task Status', + 'created_task_status': 'Successfully created task status', + 'updated_task_status': 'Onnistuneesti päivitetty tehtävän tila', + 'archived_task_status': 'Successfully archived task status', + 'deleted_task_status': 'Successfully deleted task status', + 'removed_task_status': 'Successfully removed task status', + 'restored_task_status': 'Successfully restored task status', + 'archived_task_statuses': 'Successfully archived :value task statuses', + 'deleted_task_statuses': 'Successfully deleted :value task statuses', + 'restored_task_statuses': 'Successfully restored :value task statuses', 'search_task_status': 'Search 1 Task Status', - 'search_task_statuses': 'Otsi :kogus ülesande olekuid', + 'search_task_statuses': 'Search :count Task Statuses', 'show_tasks_table': 'Show Tasks Table', 'show_tasks_table_help': 'Always show the tasks section when creating invoices', 'invoice_task_timelog': 'Invoice Task Timelog', - 'invoice_task_timelog_help': 'Add time details to the invoice line items', + 'invoice_task_timelog_help': 'Lisää aikatieto laskun tuoteriville', 'invoice_task_datelog': 'Invoice Task Datelog', 'invoice_task_datelog_help': 'Add date details to the invoice line items', 'auto_start_tasks_help': 'Start tasks before saving', - 'configure_statuses': 'Olekute seadistamine', - 'task_settings': 'Ülesande seaded', + 'configure_statuses': 'Configure Statuses', + 'task_settings': 'Task Settings', 'configure_categories': 'Configure Categories', - 'expense_categories': 'Kulukategooriad', - 'new_expense_category': 'Uus kulukategooria', + 'expense_categories': 'kulu kategoriat', + 'new_expense_category': 'uusi kulu kategoria', 'edit_expense_category': 'Edit Expense Category', - 'created_expense_category': 'Kulukategooria loomine õnnestus', - 'updated_expense_category': 'Kulukategooria värskendamine õnnestus', - 'archived_expense_category': 'Kulukategooria arhiiveerimine õnnestus', - 'deleted_expense_category': 'Kategooria edukalt kustutatud', - 'removed_expense_category': 'Kulukategooria eemaldamine õnnestus', - 'restored_expense_category': 'Kulukategooria edukalt taastatud', + 'created_expense_category': 'onnistuneesti luotu kulukategoria', + 'updated_expense_category': 'onnistuneesti päivitetty kulukategoria', + 'archived_expense_category': 'onnistuneesti arkistoitu kulu kategoria', + 'deleted_expense_category': 'onnistuneesti poistettu category', + 'removed_expense_category': 'Successfully removed expense category', + 'restored_expense_category': 'onnistuneesti palautettu kulukategoria', 'archived_expense_categories': - 'Edukalt arhiveeritud :kogus kulukategooriat', + 'onnistuneesti arkistoitu :count kulu kategoria', 'deleted_expense_categories': - 'Kulude :väärtus kategooriad edukalt kustutatud', + 'Successfully deleted expense :value categories', 'restored_expense_categories': - 'Kulude :väärtus kategooriad edukalt taastatud', + 'Successfully restored expense :value categories', 'search_expense_category': 'Search 1 Expense Category', 'search_expense_categories': 'Search :count Expense Categories', 'use_available_credits': 'Use Available Credits', - 'show_option': 'Näita valikut', + 'show_option': 'Show Option', 'negative_payment_error': 'The credit amount cannot exceed the payment amount', - 'view_changes': 'Kuva muudatused', - 'force_update': 'Sunniviisiline uuendus', + 'view_changes': 'View Changes', + 'force_update': 'Force Update', 'force_update_help': - 'Kasutate uusimat versiooni, kuid saadaval võib olla ootel parandusi.', - 'mark_paid_help': 'Jälgige, et kulu on tasutud', - 'should_be_invoiced': 'Tuleks esitada arve', + 'You are running the latest version but there may be pending fixes available.', + 'mark_paid_help': 'Track the expense has been paid', + 'should_be_invoiced': 'Pitäisi laskuttaa', 'should_be_invoiced_help': 'Enable the expense to be invoiced', - 'add_documents_to_invoice_help': 'Tee dokumendid nähtavaks', - 'convert_currency_help': 'Määrake vahetuskurss', - 'expense_settings': 'Kuluseaded', - 'clone_to_recurring': 'Klooni korduvasse', - 'crypto': 'Krüpto', + 'add_documents_to_invoice_help': 'Make the documents visible', + 'convert_currency_help': 'Set an exchange rate', + 'expense_settings': 'Expense Settings', + 'clone_to_recurring': 'Clone to Recurring', + 'crypto': 'Crypto', 'paypal': 'PayPal', 'alipay': 'Alipay', 'sofort': 'Sofort', 'apple_pay': 'Apple/Google Pay', - 'user_field': 'Kasutaja väli', - 'variables': 'Muutujad', - 'show_password': 'Näita parooli', - 'hide_password': 'Peida parool', - 'copy_error': 'Kopeerimise viga', + 'user_field': 'User Field', + 'variables': 'Variables', + 'show_password': 'Show Password', + 'hide_password': 'Hide Password', + 'copy_error': 'Copy Error', 'capture_card': 'Capture Card', 'auto_bill_enabled': 'Auto Bill Enabled', - 'total_taxes': 'Maksud kokku', - 'line_taxes': 'Rea maksud', - 'total_fields': 'Väljad kokku', - 'stopped_recurring_invoice': 'Korduva arve peatamine õnnestus', - 'started_recurring_invoice': 'Korduva arve esitamine õnnestus', - 'resumed_recurring_invoice': 'Korduva arve esitamise jätkamine õnnestus', + 'total_taxes': 'Total Taxes', + 'line_taxes': 'Line Taxes', + 'total_fields': 'Total Fields', + 'stopped_recurring_invoice': 'Successfully stopped recurring invoice', + 'started_recurring_invoice': 'Successfully started recurring invoice', + 'resumed_recurring_invoice': 'Successfully resumed recurring invoice', 'gateway_refund': 'Gateway Refund', 'gateway_refund_help': 'Process the refund with the payment gateway', - 'due_date_days': 'Tähtaeg', - 'paused': 'Peatatud', - 'mark_active': 'Märgi aktiivseks', - 'day_count': 'Päev :kogus', - 'first_day_of_the_month': 'Kuu esimene päev', - 'last_day_of_the_month': 'Kuu viimane päev', - 'use_payment_terms': 'Kasutage maksetingimusi', - 'endless': 'Lõputu', - 'next_send_date': 'Järgmise saatmise kuupäev', - 'remaining_cycles': 'Ülejäänud tsüklid', - 'recurring_invoice': 'Perioodiline Arve', - 'recurring_invoices': 'Perioodilised Arved', - 'new_recurring_invoice': 'Uus Perioodiline Arve', - 'edit_recurring_invoice': 'Redigeeri korduv arvet', - 'created_recurring_invoice': 'Korduv arve on edukalt loodud', - 'updated_recurring_invoice': 'Korduva arve värskendamine õnnestus', - 'archived_recurring_invoice': 'Kordusarve edukalt arhiveeritud', - 'deleted_recurring_invoice': 'Kordusarve edukalt kustutatud', - 'removed_recurring_invoice': 'Korduva arve eemaldamine õnnestus', - 'restored_recurring_invoice': 'Kordusarve edukalt taastatud', + 'due_date_days': 'Eräpäivä', + 'paused': 'Paused', + 'mark_active': 'Merkitse aktiiviseksi', + 'day_count': 'Day :count', + 'first_day_of_the_month': 'First Day of the Month', + 'last_day_of_the_month': 'Last Day of the Month', + 'use_payment_terms': 'Use Payment Terms', + 'endless': 'Päättymätön', + 'next_send_date': 'Next Send Date', + 'remaining_cycles': 'Jäljellä olevia kertoja', + 'recurring_invoice': 'Toistuva lasku', + 'recurring_invoices': 'Toistuvat laskut', + 'new_recurring_invoice': 'Uusi toistuva lasku', + 'edit_recurring_invoice': 'muokkaa toistuva Lasku', + 'created_recurring_invoice': 'Successfully created recurring invoice', + 'updated_recurring_invoice': 'Successfully updated recurring invoice', + 'archived_recurring_invoice': 'Toistuva lasku arkistoitu onnistuneesti', + 'deleted_recurring_invoice': 'Toistuva lasku poistettu onnistuneesti', + 'removed_recurring_invoice': 'Successfully removed recurring invoice', + 'restored_recurring_invoice': 'Toistuva lasku palautettu onnistuneesti', 'archived_recurring_invoices': - ':value korduvad arved on edukalt arhiveeritud', + 'Successfully archived recurring :value invoices', 'deleted_recurring_invoices': - ':value korduvad arved on edukalt kustutatud', + 'Successfully deleted recurring :value invoices', 'restored_recurring_invoices': - ':value korduvad arved on edukalt taastatud', + 'Successfully restored recurring :value invoices', 'search_recurring_invoice': 'Search 1 Recurring Invoice', 'search_recurring_invoices': 'Search :count Recurring Invoices', 'send_date': 'Send Date', 'auto_bill_on': 'Auto Bill On', 'minimum_under_payment_amount': 'Minimum Under Payment Amount', - 'profit': 'Kasum', + 'profit': 'Profit', 'line_item': 'Line Item', 'allow_over_payment': 'Allow Over Payment', 'allow_over_payment_help': 'Support paying extra to accept tips', 'allow_under_payment': 'Allow Under Payment', 'allow_under_payment_help': 'Support paying at minimum the partial/deposit amount', - 'test_mode': 'Testirežiim', - 'opened': 'Avatud', + 'test_mode': 'Test Mode', + 'opened': 'Opened', 'payment_reconciliation_failure': 'Reconciliation Failure', 'payment_reconciliation_success': 'Reconciliation Success', 'gateway_success': 'Gateway Success', 'gateway_failure': 'Gateway Failure', 'gateway_error': 'Gateway Error', - 'email_send': 'Saada meil', + 'email_send': 'Email Send', 'email_retry_queue': 'Email Retry Queue', - 'failure': 'Ebaõnnestumine', - 'quota_exceeded': 'Kvoot ületatud', + 'failure': 'Failure', + 'quota_exceeded': 'Quota Exceeded', 'upstream_failure': 'Upstream Failure', - 'system_logs': 'Süsteemi logid', - 'view_portal': 'Vaata portaali', - 'copy_link': 'Kopeeri link', - 'token_billing': 'Salvestage kaardi andmed', - 'welcome_to_invoice_ninja': 'Tere tulemast Invoice Ninjasse', - 'always': 'Alati', + 'system_logs': 'System Logs', + 'view_portal': 'Näytä Portaali', + 'copy_link': 'Copy Link', + 'token_billing': 'Tallenna korttitiedot', + 'welcome_to_invoice_ninja': 'Welcome to Invoice Ninja', + 'always': 'Always', 'optin': 'Opt-In', 'optout': 'Opt-Out', - 'label': 'Silt', - 'client_number': 'Kliendi Number', - 'auto_convert': 'Automaatne teisendamine', - 'company_name': 'Ettevõtte nimi', - 'reminder1_sent': '1. meeldetuletus saadetud', - 'reminder2_sent': '2. meeldetuletus saadetud', - 'reminder3_sent': '3. meeldetuletus saadetud', - 'reminder_last_sent': 'Viimati saadetud meeldetuletus', - 'pdf_page_info': 'Lehekülg :praegune :kokku', - 'emailed_invoices': 'Arved edukalt meili teel saadetud', - 'emailed_quotes': 'Hinnapakkumised edukalt meili teel saadetud', - 'emailed_credits': 'Ettemakse on meili teel edukalt saadetud', - 'gateway': 'Lüüs', - 'view_in_stripe': 'Waata Stripe\'is', - 'rows_per_page': 'Ridu lehekülje kohta', - 'hours': 'Tundi', - 'statement': 'Aruanne', - 'taxes': 'Maksud', + 'label': 'Label', + 'client_number': 'asiakas numero', + 'auto_convert': 'Auto Convert', + 'company_name': 'yritys nimi', + 'reminder1_sent': 'Reminder 1 Sent', + 'reminder2_sent': 'Reminder 2 Sent', + 'reminder3_sent': 'Reminder 3 Sent', + 'reminder_last_sent': 'Reminder Last Sent', + 'pdf_page_info': 'Page :current of :total', + 'emailed_invoices': 'Laskut lähetettiin onnistuneesti sähköpostilla.', + 'emailed_quotes': 'Tarjoukset lähetettiin onnistuneesti sähköpostilla.', + 'emailed_credits': 'Successfully emailed credits', + 'gateway': 'Maksunvälittäjä', + 'view_in_stripe': 'View in Stripe', + 'rows_per_page': 'Rows Per Page', + 'hours': 'Tuntia', + 'statement': 'tiliote', + 'taxes': 'Verot', 'surcharge': 'Surcharge', - 'apply_payment': 'Rakenda makse', - 'apply_credit': 'Kasuta ettemaksu', - 'apply': 'Rakenda', - 'unapplied': 'Rakendamata', - 'select_label': 'Vali Silt', - 'custom_labels': 'Kohandatud sildid', - 'record_type': 'Kirje tüüp', - 'record_name': 'Kirje nimi', - 'file_type': 'Faili tüüp', - 'height': 'Kõrgus', - 'width': 'Laius', - 'to': 'Kellele', + 'apply_payment': 'Apply Payment', + 'apply_credit': 'Hae hyvitystä', + 'apply': 'Käytä', + 'unapplied': 'Unapplied', + 'select_label': 'Valitse kenttä', + 'custom_labels': 'Mukautetut kentät', + 'record_type': 'Record Type', + 'record_name': 'Record Name', + 'file_type': 'File Type', + 'height': 'Height', + 'width': 'Width', + 'to': 'Vastaanottaja', 'health_check': 'Health Check', - 'payment_type_id': 'Makse Tüüp', - 'last_login_at': 'Viimane sisselogimine', + 'payment_type_id': 'Maksun tyyppi', + 'last_login_at': 'Last Login At', 'company_key': 'Company Key', 'storefront': 'Storefront', - 'storefront_help': 'Lubage kolmandate osapoolte rakendustel arveid luua', - 'client_created': 'Klient loodud', + 'storefront_help': 'Enable third-party apps to create invoices', + 'client_created': 'Client Created', 'online_payment_email': 'Online Payment Email', 'manual_payment_email': 'Manual Payment Email', - 'completed': 'Lõpetatud', - 'gross': 'Bruto', - 'net_amount': 'Neto kogus', - 'net_balance': 'Neto jääk', - 'client_settings': 'Kliendi seaded', - 'selected_invoices': 'Valitud arved', - 'selected_payments': 'Valitud maksed', - 'selected_quotes': 'Valitud hinnapakkumised', - 'selected_tasks': 'Valitud ülesanded', - 'selected_expenses': 'Valitud kulud', - 'upcoming_invoices': 'Eesseisvad arved', - 'past_due_invoices': 'Tähtaja ületanud arved', - 'recent_payments': 'Hiljutised Maksed', - 'upcoming_quotes': 'Eesseisvad Pakkumused', - 'expired_quotes': 'Aegunud hinnapakkumised', - 'create_client': 'Loo Klient', - 'create_invoice': 'Loo Arve', - 'create_quote': 'Loo Pakkumus', + 'completed': 'Completed', + 'gross': 'Gross', + 'net_amount': 'Net Amount', + 'net_balance': 'Net Balance', + 'client_settings': 'Client Settings', + 'selected_invoices': 'Selected Invoices', + 'selected_payments': 'Selected Payments', + 'selected_quotes': 'Valitut tarjoukset', + 'selected_tasks': 'Selected Tasks', + 'selected_expenses': 'Selected Expenses', + 'upcoming_invoices': 'Erääntyvät laskut', + 'past_due_invoices': 'Past Due Invoices', + 'recent_payments': 'Viimeisimmät maksut', + 'upcoming_quotes': 'Tulevat tarjoukset', + 'expired_quotes': 'Vanhentuneet tarjoukset', + 'create_client': 'luo asiakas', + 'create_invoice': 'Luo lasku', + 'create_quote': 'Luo tarjous', 'create_payment': 'Create Payment', - 'create_vendor': 'Loo hankija', - 'update_quote': 'Värskenda hinnapakkumist', - 'delete_quote': 'Kustuta Pakkumus', - 'update_invoice': 'Uuenda arvet', - 'delete_invoice': 'Kustuta Arve', - 'update_client': 'Uuenda klienti', - 'delete_client': 'Kustuta Klient', - 'delete_payment': 'Kustuta Makse', - 'update_vendor': 'Värskenda tarnijat', - 'delete_vendor': 'Kustuta tarnija', - 'create_expense': 'Loo kulu', - 'update_expense': 'Värskenda kulusid', - 'delete_expense': 'Kustuta kulud', - 'create_task': 'Loo Ülesanne', - 'update_task': 'Värskenda ülesannet', - 'delete_task': 'Kustuta Ülesanne', - 'approve_quote': 'Kinnita pakkumine', + 'create_vendor': 'Luo kauppias', + 'update_quote': 'Päivitä tarjous', + 'delete_quote': 'Poista tarjous', + 'update_invoice': 'Update Invoice', + 'delete_invoice': 'Poista lasku', + 'update_client': 'Update Client', + 'delete_client': 'Poista asiakas', + 'delete_payment': 'Poista maksu', + 'update_vendor': 'Päivitä kauppias', + 'delete_vendor': 'Poista kauppias', + 'create_expense': 'Create Expense', + 'update_expense': 'Update Expense', + 'delete_expense': 'Poista kulu', + 'create_task': 'Luo tehtävä', + 'update_task': 'Update Task', + 'delete_task': 'Poista tehtävä', + 'approve_quote': 'Hyväksy tarjous', 'off': 'Off', - 'when_paid': 'Kui makstud', - 'expires_on': 'Aegub', - 'free': 'Tasuta', - 'plan': 'Pakett', - 'show_sidebar': 'Kuva külgriba', - 'hide_sidebar': 'Peida külgriba', + 'when_paid': 'When Paid', + 'expires_on': 'Expires On', + 'free': 'Ilmainen', + 'plan': 'Plan', + 'show_sidebar': 'Show Sidebar', + 'hide_sidebar': 'Hide Sidebar', 'event_type': 'Event Type', - 'target_url': 'Sihtmärk', - 'copy': 'Kopeeri', - 'must_be_online': - 'Pärast Interneti ühenduse loomist taaskäivitage rakendus', + 'target_url': 'Target', + 'copy': 'Copy', + 'must_be_online': 'Please restart the app once connected to the internet', 'crons_not_enabled': 'The crons need to be enabled', 'api_webhooks': 'API Webhooks', 'search_webhooks': 'Search :count Webhooks', @@ -18463,1282 +18659,1303 @@ mixin LocalizationsProvider on LocaleCodeAware { 'deleted_webhooks': 'Successfully deleted :value webhooks', 'removed_webhooks': 'Successfully removed :value webhooks', 'restored_webhooks': 'Successfully restored :value webhooks', - 'api_tokens': 'API Tokenid', + 'api_tokens': 'API-salasanat', 'api_docs': 'API Docs', - 'search_tokens': 'Otsi :kogus token', - 'search_token': 'Otsi 1 Token', + 'search_tokens': 'Search :count Tokens', + 'search_token': 'Search 1 Token', 'token': 'Token', - 'tokens': 'Tokenid', - 'new_token': 'Uus Token', - 'edit_token': 'Redigeeri Tokenit', - 'created_token': 'Token edukalt loodud', - 'updated_token': 'Token edukalt värskendatud', - 'archived_token': 'Tokeni arhiveerimine õnnestus', - 'deleted_token': 'Token edukalt kustutatud', - 'removed_token': 'Token on edukalt eemaldatud', - 'restored_token': 'Token edukalt taastatud', - 'archived_tokens': ':value tokenit edukalt arhiveeritud', - 'deleted_tokens': ':value tokenit edukalt kustutatud', - 'restored_tokens': ':value tokenit edukalt taastatud', - 'client_registration': 'Kliendi registreerimine', + 'tokens': 'Tokenit', + 'new_token': 'New Token', + 'edit_token': 'Muokkaa tokenia', + 'created_token': 'Token luotu onnistuneesti', + 'updated_token': 'Token päivitetty onnistuneesti', + 'archived_token': 'Token arkistoitu onnistuneesti', + 'deleted_token': 'Token poistettu onnistuneesti', + 'removed_token': 'Successfully removed token', + 'restored_token': 'Successfully restored token', + 'archived_tokens': 'Successfully archived :value tokens', + 'deleted_tokens': 'Successfully deleted :value tokens', + 'restored_tokens': 'Successfully restored :value tokens', + 'client_registration': 'Client Registration', 'client_registration_help': - 'Võimaldab klientidel end portaalis registreerida', - 'customize_and_preview': 'Kohanda ja eelvaade', - 'email_invoice': 'Saada Arve', - 'email_quote': 'Hinnapakkumine e-posti', + 'Enable clients to self register in the portal', + 'customize_and_preview': 'Kustomoi ja esikatsele', + 'email_invoice': 'Lähetä lasku sähköpostitse', + 'email_quote': 'Lähetä tarjous sähköpostitse', 'email_credit': 'Email Credit', - 'email_payment': 'Email Payment', - 'client_email_not_set': 'Kliendil pole e-posti aadressi määratud', - 'ledger': 'Pearaamat', - 'view_pdf': 'Vaata PDF-i', - 'all_records': 'Kõik kirjed', - 'owned_by_user': 'Kasutaja omanduses', - 'credit_remaining': 'Järelejäänud ettemakse', - 'contact_name': 'Kontaktisiku nimi', - 'use_default': 'Kasuta vaikeseadet', - 'reminder_endless': 'Lõputud meeldetuletused', - 'number_of_days': 'Päevade arv', - 'configure_payment_terms': 'Seadistage maksetingimused', - 'payment_term': 'Maksetingimus', - 'new_payment_term': 'Uus maksetingimus', - 'edit_payment_term': 'Muuda maksetähtaega', - 'created_payment_term': 'Maksetingimus edukalt loodud', - 'updated_payment_term': 'Maksetingimus edukalt uuendatud', - 'archived_payment_term': 'Maksetingimus edukalt arhiveeritud', - 'deleted_payment_term': 'Maksetingimus edukalt kustutatud', - 'removed_payment_term': 'Maksetingimus edukalt eemaldatud', - 'restored_payment_term': 'Maksetingimus edukalt taastatud', - 'archived_payment_terms': ':value maksetingimused edukalt arhiveeritud', - 'deleted_payment_terms': ':value maksetingimused edukalt kustutatud', - 'restored_payment_terms': ':value maksetingimused edukalt taastatud', - 'email_sign_in': 'Logige sisse e-postiga', - 'change': 'Muuda', - 'change_to_mobile_layout': 'Kas muuta mobiilipaigutust?', - 'change_to_desktop_layout': 'Kas muuta töölaua paigutust?', - 'send_from_gmail': 'Saada Gmailist', + 'email_payment': 'Email maksu', + 'client_email_not_set': 'Client does not have an email address set', + 'ledger': 'Ledger', + 'view_pdf': 'Katso PDF', + 'all_records': 'All records', + 'owned_by_user': 'Owned by user', + 'credit_remaining': 'Credit Remaining', + 'contact_name': 'Yhteyshenkilön nimi', + 'use_default': 'Käytä oletusarvoa', + 'reminder_endless': 'Endless Reminders', + 'number_of_days': 'Number of days', + 'configure_payment_terms': 'Configure Payment Terms', + 'payment_term': 'Maksuehdot', + 'new_payment_term': 'Uudet maksuehdot', + 'edit_payment_term': 'Muokkaa maksuaikaa', + 'created_payment_term': 'onnistuneesti luotu maksu ehto', + 'updated_payment_term': 'onnistuneesti päivitetty maksu ehto', + 'archived_payment_term': 'onnistuneesti arkistoitu maksu ehto', + 'deleted_payment_term': 'Maksuehto poistettiin onnistuneesti', + 'removed_payment_term': 'Maksuehto poistettiin onnistuneesti', + 'restored_payment_term': 'Maksuehto palautettiin onnistuneesti', + 'archived_payment_terms': 'Successfully archived :value payment terms', + 'deleted_payment_terms': 'Successfully deleted :value payment terms', + 'restored_payment_terms': 'Successfully restored :value payment terms', + 'email_sign_in': 'Sign in with email', + 'change': 'Vaihda', + 'change_to_mobile_layout': 'Vaihda mobiilinäkymään?', + 'change_to_desktop_layout': 'Vaihda työpöytänäkymään?', + 'send_from_gmail': 'Lähetä Gmailista', 'reversed': 'Reversed', - 'cancelled': 'Tühistatud', - 'credit_amount': 'Krediidi summa', - 'quote_amount': 'Pakkumise summa', + 'cancelled': 'Peruutettu', + 'credit_amount': 'Luoton määrä', + 'quote_amount': 'Tarjouksen summa', 'hosted': 'Hosted', 'selfhosted': 'Self-Hosted', 'exclusive': 'Exclusive', 'inclusive': 'Inclusive', - 'hide_menu': 'Peida menüü', - 'show_menu': 'Kuva menüü', - 'partially_refunded': 'Osaliselt tagastatud', - 'search_documents': 'Otsi dokumente', - 'search_designs': 'Otsi disaine', - 'search_invoices': 'Otsi arveid', - 'search_clients': 'Otsi kliente', - 'search_products': 'Otsi tooteid', - 'search_quotes': 'Otsi hinnapakkumisi', - 'search_credits': 'Otsi ettemakseid', - 'search_vendors': 'Otsi tarnijaid', - 'search_users': 'Otsi kasutajaid', - 'search_tax_rates': 'Otsi maksumäärasid', - 'search_tasks': 'Otsi ülesandeid', - 'search_settings': 'Otsige seadeid', - 'search_projects': 'Otsi projekte', - 'search_expenses': 'Otsi kulusid', - 'search_payments': 'Otsi makseid', - 'search_groups': 'Otsi gruppe', - 'search_company': 'Otsi ettevõtet', - 'search_document': 'Otsi 1 dokumenti', - 'search_design': 'Otsi 1 Disain', - 'search_invoice': 'Otsi 1 Arve', - 'search_client': 'Otsi 1 klienti', - 'search_product': 'Otsi 1 toodet', - 'search_quote': 'Otsi 1 hinnapakkumist', - 'search_credit': 'Otsi 1 ettemakset', - 'search_vendor': 'Otsi 1 tarnijat', - 'search_user': 'Otsi 1 kasutajat', - 'search_tax_rate': 'Otsi 1 Maksumäär', + 'hide_menu': 'Piilota valikko', + 'show_menu': 'Näytä valikko', + 'partially_refunded': 'Osittain hyvitetty', + 'search_documents': 'Etsi asiakirjoista', + 'search_designs': 'Search Designs', + 'search_invoices': 'Etsi laskuja', + 'search_clients': 'Etsi asiakkaita', + 'search_products': 'Etsi tuotteita', + 'search_quotes': 'Hae tarjouksia', + 'search_credits': 'Etsi luotoista', + 'search_vendors': 'Hae kauppiaita', + 'search_users': 'Etsi käyttäjiä', + 'search_tax_rates': 'Etsi verokanta', + 'search_tasks': 'Etsi tehtäviä', + 'search_settings': 'Etsi asetuksia', + 'search_projects': 'Etsi projekteja', + 'search_expenses': 'Etsi kuluja', + 'search_payments': 'Etsi maksuja', + 'search_groups': 'Etsi ryhmiä', + 'search_company': 'Etsi yritys', + 'search_document': 'Search 1 Document', + 'search_design': 'Search 1 Design', + 'search_invoice': 'Search 1 Invoice', + 'search_client': 'Search 1 Client', + 'search_product': 'Search 1 Product', + 'search_quote': 'Hae 1 tarjous', + 'search_credit': 'Search 1 Credit', + 'search_vendor': 'Hae 1 kauppias', + 'search_user': 'Search 1 User', + 'search_tax_rate': 'Search 1 Tax Rate', 'search_task': 'Search 1 Tasks', - 'search_project': 'Otsi 1 projekti', - 'search_expense': 'Otsi 1 kulu', - 'search_payment': 'Otsi 1 Makset', - 'search_group': 'Otsi 1 rühmast', - 'refund_payment': 'Tagasimakse', - 'cancelled_invoice': 'Arve tühistamine õnnestus', - 'cancelled_invoices': 'Arvete tühistamine õnnestus', - 'reversed_invoice': 'Arve tühistati edukalt', - 'reversed_invoices': 'Arved tühistati edukalt', - 'reverse': 'Tühista', - 'full_name': 'Täisnimi', - 'city_state_postal': 'City/State/Postal', - 'postal_city_state': 'Postal/City/State', - 'custom1': 'Esimene Kohandatud', - 'custom2': 'Teine Kohandatud', - 'custom3': 'Third Custom', - 'custom4': 'Fourth Custom', - 'optional': 'Valikuline', - 'license': 'Litsents', - 'purge_data': 'Puhasta Andmed', - 'purge_successful': 'Successfully purged company data', + 'search_project': 'Search 1 Project', + 'search_expense': 'Search 1 Expense', + 'search_payment': 'Search 1 Payment', + 'search_group': 'Search 1 Group', + 'refund_payment': 'Hyvitysmaksu', + 'cancelled_invoice': 'Successfully cancelled invoice', + 'cancelled_invoices': 'Successfully cancelled invoices', + 'reversed_invoice': 'Successfully reversed invoice', + 'reversed_invoices': 'Successfully reversed invoices', + 'reverse': 'Reverse', + 'full_name': 'Full nimi', + 'city_state_postal': 'Kaupunki/Alue/Postitoimipaikka', + 'postal_city_state': 'Postal/kaupunki/State', + 'custom1': 'ensimmäinen muokattu', + 'custom2': 'toinen muokattu', + 'custom3': 'Kolmas mukautettu', + 'custom4': 'Neljäs mukautettu', + 'optional': 'Valinnainen', + 'license': 'Lisenssi', + 'purge_data': 'Purge Data', + 'purge_successful': 'onnistuneesti purged yritys data', 'purge_data_message': - 'Hoiatus: see kustutab teie andmed jäädavalt, tagasi võtta ei saa.', - 'invoice_balance': 'Arve saldo', - 'age_group_0': '0 - 30 Päeva', - 'age_group_30': '30 - 60 Päeva', - 'age_group_60': '60 - 90 Päeva', - 'age_group_90': '90 - 120 Päeva', - 'age_group_120': '120+ Päeva', - 'refresh': 'Värskenda', - 'saved_design': 'Kujundus salvestati edukalt', - 'client_details': 'Kliendi üksikasjad', - 'company_address': 'Ettevõtte aadress', - 'invoice_details': 'Arve Üksikasjad', - 'quote_details': 'Hinnapakkumise üksikasjad', - 'credit_details': 'Ettemaksu üksikasjad', - 'product_columns': 'Toote veerud', - 'task_columns': 'Ülesande veerud', - 'add_field': 'Lisa väli', - 'all_events': 'Kõik sündmused', - 'permissions': 'Õigused', - 'none': 'Mitte ühtegi', - 'owned': 'Owned', - 'payment_success': 'Makse õnnestumine', - 'payment_failure': 'Makse ebaõnnestumine', - 'invoice_sent': ':count arve saadetud', - 'quote_sent': 'Hinnapakkumine on saadetud', - 'credit_sent': 'Ettemakse on saadetud', - 'invoice_viewed': 'Arvet on vaadatud', - 'quote_viewed': 'Hinnapakkumist on vaadatud', - 'credit_viewed': 'Ettemakset on vaadatud', - 'quote_approved': 'Hinnapakkumine heaks kiidetud', - 'receive_all_notifications': 'Saa kõik teated', - 'purchase_license': 'Purchase License', - 'apply_license': 'Rakenda litsents', - 'cancel_account': 'Kustuta Konto', + 'Warning: tämä will pysyvästi erase sinun data, there is no undo.', + 'invoice_balance': 'Laskun tila', + 'age_group_0': '0 - 30 päivää', + 'age_group_30': '30 - 60 päivää', + 'age_group_60': '60 - 90 päivää', + 'age_group_90': '90 - 120 päivää', + 'age_group_120': '120+ päivää', + 'refresh': 'Refresh', + 'saved_design': 'Muotoilu tallennettiin onnistuneesti', + 'client_details': 'Asiakkaan tiedot', + 'company_address': 'Yrityksen osoite', + 'invoice_details': 'Laskun tiedot', + 'quote_details': 'Tarjouksen tiedot', + 'credit_details': 'Hyvityksen tiedot', + 'product_columns': 'Tuotesarake', + 'task_columns': 'Tehtäväsarake', + 'add_field': 'Lisää kenttä', + 'all_events': 'Kaikki tapahtumat', + 'permissions': 'Oikeudet', + 'none': 'None', + 'owned': 'Omistettu', + 'payment_success': 'Maksu onnistui', + 'payment_failure': 'Maksu epäonnistui', + 'invoice_sent': ':count lasku lähetetty', + 'quote_sent': 'Tarjous lähetetty', + 'credit_sent': 'Hyvitys lähetettiin', + 'invoice_viewed': 'Lasku katsottiin', + 'quote_viewed': 'Tarjous luettu', + 'credit_viewed': 'Hyvitys katsottiin', + 'quote_approved': 'Tarjous hyväksytty', + 'receive_all_notifications': 'Vastaanota kaikki ilmoitukset', + 'purchase_license': 'Osta lisenssi', + 'apply_license': 'Käytä lisenssi', + 'cancel_account': 'Poista tili', 'cancel_account_message': - 'Hoiatus: See kustutab jäädavalt teie konto, ennistamis võimalus puudub.', - 'delete_company': 'Kustuta Ettevõte', + 'Varoitus: Tämä poistaa tilisi pysyvästi. Tietoja ei pysty palauttamaan.', + 'delete_company': 'Poista yritys', 'delete_company_message': - 'Hoiatus: see kustutab teie ettevõtte jäädavalt ja seda ei saa tagasi võtta.', - 'enabled_modules': 'Lubatud moodulid', - 'converted_quote': 'Hinnapakkumine on edukalt teisendatud', + 'Warning: tämä will pysyvästi poista sinun yritys, there is no undo.', + 'enabled_modules': 'Enabled Modules', + 'converted_quote': 'Tarjous on onnistuneesti muunnettu', 'credit_design': 'Credit Design', - 'includes': 'Sisaldab', - 'header': 'Päis', - 'load_design': 'Lae Kujundus', + 'includes': 'Includes', + 'header': 'Ylätunniste', + 'load_design': 'Load malli', 'css_framework': 'CSS Framework', - 'custom_designs': 'Kohandatud kujundused', - 'designs': 'Kujundus', - 'new_design': 'Uus kujundus', - 'edit_design': 'Redigeeri kujundust', - 'created_design': 'Kujundus on edukalt loodud', - 'updated_design': 'Kujundus on edukalt uuendatud', - 'archived_design': 'Kujundus on edukalt arhiveeritud', - 'deleted_design': 'Kujundus on edukalt kustutatud', - 'removed_design': 'Kujundus on edukalt eemaldatud', - 'restored_design': 'Kujundus on edukalt taastatud', - 'archived_designs': ':value kujundust edukalt arhiveeritud', - 'deleted_designs': ':value kujundust edukalt kustutatud', - 'restored_designs': ':value kujundust edukalt taastatud', - 'proposals': 'Pakkumised', - 'tickets': 'Piletid', - 'recurring_quotes': 'Perioodilised Pakkumised', - 'recurring_tasks': 'Korduvad ülesanded', - 'account_management': 'Konto Haldus', - 'credit_date': 'Krediidi kuupäev', - 'credit': 'Krediit', - 'credits': 'Krediidid', - 'new_credit': 'Sisesta krediit', - 'edit_credit': 'Redigeeri ettemaksu', - 'created_credit': 'Ettemaksu loomine õnnestus', - 'updated_credit': 'Ettemakse uuendamine õnnestus', - 'archived_credit': 'Ettemaksu arhiveerimine õnnestus', - 'deleted_credit': 'Ettemaksu kustutamine õnnestus', - 'removed_credit': 'Ettemaksu eemaldamine õnnestus', - 'restored_credit': 'Ettemakse taastamine õnnestus', - 'archived_credits': ':kogus ettemakset on edukalt arhiveeritud', - 'deleted_credits': ':kogus ettemakset on edukalt kustutatud', - 'restored_credits': ':value ettemakset edukalt taastatud', - 'current_version': 'Praegune versioon', - 'latest_version': 'Uusim versioon', - 'update_now': 'Uuendage kohe', - 'a_new_version_is_available': 'Saadaval on veebirakenduse uus versioon', - 'update_available': 'Uuendus saadaval', - 'app_updated': 'Uuendus edukalt lõpule viidud', - 'learn_more': 'Rohkem teavet', - 'integrations': 'Integrations', - 'tracking_id': 'Jälgimise ID', + 'custom_designs': 'Custom Designs', + 'designs': 'Designs', + 'new_design': 'New Design', + 'edit_design': 'Edit Design', + 'created_design': 'Successfully created design', + 'updated_design': 'Successfully updated design', + 'archived_design': 'Successfully archived design', + 'deleted_design': 'Successfully deleted design', + 'removed_design': 'Successfully removed design', + 'restored_design': 'Successfully restored design', + 'archived_designs': 'Successfully archived :value designs', + 'deleted_designs': 'Successfully deleted :value designs', + 'restored_designs': 'Successfully restored :value designs', + 'proposals': 'Ehdotukset', + 'tickets': 'Tickets', + 'recurring_quotes': 'Toistuvat tarjoukset', + 'recurring_tasks': 'Recurring Tasks', + 'account_management': 'Käyttäjätilin hallinta', + 'credit_date': 'Luoton päivämäärä', + 'credit': 'Luotto', + 'credits': 'Luotot', + 'new_credit': 'Uusi luotto', + 'edit_credit': 'Muokkaa hyvitystä', + 'created_credit': 'Luottolasku luotiin onnistuneesti', + 'updated_credit': 'Hyvitys päivitettiin onnistuneesti', + 'archived_credit': 'Luottolasku arkistoitiin onnistuneesti', + 'deleted_credit': 'Luottolasku poistettiin onnistuneesti', + 'removed_credit': 'Successfully removed credit', + 'restored_credit': 'Luotto palautettu onnistuneesti', + 'archived_credits': ':count hyvitys(tä) arkistoitiin onnistuneesti', + 'deleted_credits': ':count luotto(a) poistettu onnistuneesti', + 'restored_credits': 'Palautettiin onnistuneesti :value luotolle', + 'current_version': 'Nykyinen versio', + 'latest_version': 'Latest Version', + 'update_now': 'Päivitä nyt', + 'a_new_version_is_available': 'A new version of the web app is available', + 'update_available': 'Update Available', + 'app_updated': 'Update successfully completed', + 'learn_more': 'Lue lisää', + 'integrations': 'Integraatiot', + 'tracking_id': 'Seurantatunnus', 'slack_webhook_url': 'Slack Webhook URL', - 'credit_footer': 'Credit Footer', - 'credit_terms': 'Ettemaksu tingimused', - 'new_company': 'Uus Ettevõte', - 'added_company': 'Ettevõte on edukalt lisatud', - 'company1': 'Kohandatud ettevõte 1', - 'company2': 'Kohandatud ettevõte 2', - 'company3': 'Kohandatud ettevõte 3', - 'company4': 'Kohandatud ettevõte 4', - 'product1': 'Kohandatud toode 1', - 'product2': 'Kohandatud toode 2', - 'product3': 'Kohandatud toode 3', - 'product4': 'Kohandatud toode 4', - 'client1': 'Kohandatud klient 1', - 'client2': 'Kohandatud klient 2', - 'client3': 'Kohandatud klient 3', - 'client4': 'Kohandatud klient 4', - 'contact1': 'Kohandatud kontakt 1', - 'contact2': 'Kohandatud kontakt 2', - 'contact3': 'Kohandatud kontakt 3', - 'contact4': 'Kohandatud kontakt 4', - 'task1': 'Kohandatud ülesanne 1', - 'task2': 'Kohandatud ülesanne 2', - 'task3': 'Kohandatud ülesanne 3', - 'task4': 'Kohandatud ülesanne 4', - 'project1': 'Kohandatud projekt 1', - 'project2': 'Kohandatud projekt 2', - 'project3': 'Kohandatud projekt 3', - 'project4': 'Kohandatud projekt 4', - 'expense1': 'Kohandatud kulu 1', - 'expense2': 'Kohandatud kulu 2', - 'expense3': 'Kohandatud kulu 3', - 'expense4': 'Kohandatud kulu 4', - 'vendor1': 'Kohandatud tarnija 1', - 'vendor2': 'Kohandatud tarnija 2', - 'vendor3': 'Kohandatud tarnija 3', - 'vendor4': 'Kohandatud tarnija 4', - 'invoice1': 'Kohandatud arve 1', - 'invoice2': 'Kohandatud arve 2', - 'invoice3': 'Kohandatud arve 3', - 'invoice4': 'Kohandatud arve 4', - 'payment1': 'Kohandatud makse 1', - 'payment2': 'Kohandatud makse 2', - 'payment3': 'Kohandatud makse 3', - 'payment4': 'Kohandatud makse 4', - 'surcharge1': 'Kohandatud lisatasu 1', - 'surcharge2': 'Kohandatud lisatasu 2', - 'surcharge3': 'Kohandatud lisatasu 3', - 'surcharge4': 'Kohandatud lisatasu 4', - 'group1': 'Kohandatud rühm 1', - 'group2': 'Kohandatud rühm 2', - 'group3': 'Kohandatud rühm 3', - 'group4': 'Kohandatud rühm 4', - 'reset': 'Lähtesta', - 'number': 'Number', - 'export': 'Eksport', - 'chart': 'Diagramm', - 'count': 'Kogus', - 'totals': 'Kokkuvõtted', - 'blank': 'Tühi', - 'day': 'Päev', - 'month': 'Kuu', - 'year': 'Aasta', + 'credit_footer': 'Luotto alatunniste', + 'credit_terms': 'Luoton ehdot', + 'new_company': 'Uusi yritys', + 'added_company': 'Yritys lisättiin onnistuneesti', + 'company1': 'Mukautettu Yritys 1', + 'company2': 'Mukautettu Yritys 2', + 'company3': 'Mukautettu Yritys 3', + 'company4': 'Mukautettu Yritys 4', + 'product1': 'Mukautettu Tuote 1', + 'product2': 'Mukautettu Tuote 2', + 'product3': 'Mukautettu Tuote 3', + 'product4': 'Mukautettu Tuote 4', + 'client1': 'Mukautettu Asiakas 1', + 'client2': 'Mukautettu Asiakas 2', + 'client3': 'Mukautettu Asiakas 3', + 'client4': 'Mukautettu Asiakas 4', + 'contact1': 'Mukautettu Yhteystieto 1', + 'contact2': 'Mukautettu Yhteystieto 2', + 'contact3': 'Mukautettu Yhteystieto 3', + 'contact4': 'Mukautettu Yhteystieto 4', + 'task1': 'Mukautettu Tehtävä 1', + 'task2': 'Mukautettu Tehtävä 2', + 'task3': 'Mukautettu Tehtävä 3', + 'task4': 'Mukautettu Tehtävä 4', + 'project1': 'Mukautettu Projekti 1', + 'project2': 'Mukautettu Projekti 2', + 'project3': 'Mukautettu Projekti 3', + 'project4': 'Mukautettu Projekti 4', + 'expense1': 'Mukautettu Kulu 1', + 'expense2': 'Mukautettu Kulu 2', + 'expense3': 'Mukautettu Kulu 3', + 'expense4': 'Mukautettu Kulu 4', + 'vendor1': 'Mukautettu Myyjä 1', + 'vendor2': 'Mukautettu Myyjä 2', + 'vendor3': 'Mukautettu Myyjä 3', + 'vendor4': 'Mukautettu Myyjä 4', + 'invoice1': 'Mukautettu Lasku 1', + 'invoice2': 'Mukautettu Lasku 2', + 'invoice3': 'Mukautettu Lasku 3', + 'invoice4': 'Mukautettu Lasku 4', + 'payment1': 'Mukautettu Maksu 1', + 'payment2': 'Mukautettu Maksu 2', + 'payment3': 'Mukautettu Maksu 3', + 'payment4': 'Mukautettu Maksu 4', + 'surcharge1': 'Mukautettu Lisämaksu 1', + 'surcharge2': 'Mukautettu Lisämaksu 2', + 'surcharge3': 'Mukautettu Lisämaksu 3', + 'surcharge4': 'Mukautettu Lisämaksu 4', + 'group1': 'Mukautettu Ryhmä 1', + 'group2': 'Mukautettu Ryhmä 2', + 'group3': 'Mukautettu Ryhmä 3', + 'group4': 'Mukautettu Ryhmä 4', + 'reset': 'Nollaa', + 'number': 'Numero', + 'export': 'Vienti', + 'chart': 'Kaavio', + 'count': 'Luku', + 'totals': 'Yhteensä', + 'blank': 'Tyhjä', + 'day': 'Päivä', + 'month': 'Kuukausi', + 'year': 'Vuosi', 'subgroup': 'Subgroup', - 'is_active': 'On Aktiivne', - 'group_by': 'Grupeeri', - 'credit_balance': 'Kreediidi saldo', - 'contact_last_login': 'Kontakti viimane sisselogimine', - 'contact_full_name': 'Kontakti täisnimi', - 'contact_phone': 'Kontakt Telefon', - 'contact_custom_value1': 'Kontakti kohandatud väärtus 1', - 'contact_custom_value2': 'Kontakti kohandatud väärtus 2', - 'contact_custom_value3': 'Kontakti kohandatud väärtus 3', - 'contact_custom_value4': 'Kontakti kohandatud väärtus 4', - 'shipping_address1': 'Shipping Street', - 'shipping_address2': 'Shipping Apt/Suite', - 'shipping_city': 'Shipping City', - 'shipping_state': 'Shipping State/Province', - 'shipping_postal_code': 'Saatmise postiindeks', - 'shipping_country': 'Tarneriik', - 'billing_address1': 'Arvelduse tänav', - 'billing_address2': 'Arvelduse korter/sviit', - 'billing_city': 'Arvelduse linn', - 'billing_state': 'Arvelduse maakond', - 'billing_postal_code': 'Billing Postal Code', - 'billing_country': 'Arveldusriik', - 'client_id': 'Kliendi ID', - 'assigned_to': 'Määratud', - 'created_by': 'Loonud :name', - 'assigned_to_id': 'Määratud Id\'le', - 'created_by_id': 'Loodud Id poolt', - 'add_column': 'Lisa veerg', - 'edit_columns': 'Muuda veerge', - 'columns': 'Tulbad', + 'is_active': 'Aktiivinen', + 'group_by': 'Niputa', + 'credit_balance': 'Luoton saldo', + 'contact_last_login': 'Kontaktin viimeinen kirjautuminen', + 'contact_full_name': 'Kontaktin koko nimi', + 'contact_phone': 'kontakti puhelin', + 'contact_custom_value1': 'Kontakti Mukautettu Arvo 1', + 'contact_custom_value2': 'Kontakti Mukautettu Arvo 2', + 'contact_custom_value3': 'Kontakti Mukautettu Arvo 3', + 'contact_custom_value4': 'Kontakti Mukautettu Arvo 4', + 'shipping_address1': 'Toimitus: Katu', + 'shipping_address2': 'Toimitus: Asunto/huoneisto', + 'shipping_city': 'Toimitus: Kaupunki', + 'shipping_state': 'Toimitus: Maakunta', + 'shipping_postal_code': 'Toimitus: Postinumero', + 'shipping_country': 'Toimitus: Maa', + 'billing_address1': 'Laskutus: Katu', + 'billing_address2': 'Laskutus: Asunto/huoneisto', + 'billing_city': 'Laskutus: Kaupunki', + 'billing_state': 'Laskutus: Maakunta', + 'billing_postal_code': 'Laskutus: Postinumero', + 'billing_country': 'Laskutus: Maa', + 'client_id': 'Asiakkaan tunniste', + 'assigned_to': 'Assigned', + 'created_by': 'luotu by :name', + 'assigned_to_id': 'Liitetty tunnukseen(Id)', + 'created_by_id': 'Luonut (Id)', + 'add_column': 'Lisää Sarake', + 'edit_columns': 'Muokkaa Saraketta', + 'columns': 'Columns', 'aging': 'Aging', - 'profit_and_loss': 'Kasum ja Kahjum', - 'reports': 'Raportid', - 'report': 'Raport', - 'add_company': 'Lisa Ettevõte', - 'unpaid_invoice': 'Tasutama Arve', - 'paid_invoice': 'Tasutud Arve', - 'unapproved_quote': 'Kinnitamata Pakkumus', - 'help': 'Abi', - 'refund': 'Tagasimakse', - 'refund_date': 'Tagastamise kuupäev', - 'filtered_by': 'Filtreeritud', - 'contact_email': 'Kontakt e-posti aadress', - 'multiselect': 'Mitmikvalimine', - 'entity_state': 'Maakond', - 'verify_password': 'Kinnita parool', - 'applied': 'Rakendatud', - 'include_recent_errors': 'Kaasake hiljutised vead logidest', + 'profit_and_loss': 'Profit ja Loss', + 'reports': 'Raportit', + 'report': 'Raportti', + 'add_company': 'Lisää yritys', + 'unpaid_invoice': 'Maksamatonl lasku', + 'paid_invoice': 'Paid Lasku', + 'unapproved_quote': 'Hyväksymätön tarjous', + 'help': 'Ohje', + 'refund': 'Hyvitys', + 'refund_date': 'Maksunpalautuspäivä', + 'filtered_by': 'Filtered by', + 'contact_email': 'Sähköpostiosoite', + 'multiselect': 'Monivalinta', + 'entity_state': 'Osavaltio', + 'verify_password': 'Vahvista salasana', + 'applied': 'Haettu', + 'include_recent_errors': 'Sisällytä viimeiset virheet lokiin', 'your_message_has_been_received': - 'Saime teie sõnumi kätte ja proovime kiiresti vastata.', - 'message': 'Sõnum', - 'from': 'Kellet', - 'show_product_details': 'Kuva toote üksikasjad', + 'Olemme vastaanottaneet viestisi ja pyrimme vastaamaan siihen pikaisesti.', + 'message': 'Viesti', + 'from': 'Lähettäjä', + 'show_product_details': 'Näytä tuotteen tiedot', 'show_product_details_help': - 'Lisage toote rippmenüüsse kirjeldus ja maksumus', - 'pdf_min_requirements': 'PDF-i renderdaja nõuab versiooni :versioon', - 'adjust_fee_percent': 'Reguleerige viivise protsenti', - 'adjust_fee_percent_help': 'Viivise arvestamiseks kohandage protsenti', - 'configure_settings': 'Configure Settings', - 'support_forum': 'Tugifoorum', - 'about': 'About', - 'documentation': 'Dokumentatsioon', - 'contact_us': 'Võta Ühendust', - 'subtotal': 'Kokku', - 'line_total': 'Summa', - 'item': 'Kirje', + 'Sisällytä lisätieto ja hinta tuotteen alasvetovalikkoon', + 'pdf_min_requirements': 'PDF sivun muokkaaja vaatii :version', + 'adjust_fee_percent': 'Säädä kuluprosenttia', + 'adjust_fee_percent_help': 'Adjust percent tili palkkio', + 'configure_settings': 'Muokkaa asetuksia', + 'support_forum': 'support forum', + 'about': 'Tietoja', + 'documentation': 'Dokumentaatio', + 'contact_us': 'Ota meihin yhteyttä', + 'subtotal': 'Välisumma', + 'line_total': 'Rivin summa', + 'item': 'Tuote', 'credit_email': 'Credit Email', - 'iframe_url': 'Koduleht', - 'domain_url': 'Domeeni URL', - 'password_is_too_short': 'Parool on liiga lühike', - 'password_is_too_easy': 'Parool peab sisaldama suurtähti ja numbrit', - 'client_portal_tasks': 'Kliendiportaali ülesanded', - 'client_portal_dashboard': 'Client Portal Dashboard', - 'please_enter_a_value': 'Palun sisestage väärtus', - 'deleted_logo': 'Logo kustutamine õnnestus', - 'yes': 'Jah', + 'iframe_url': 'Verkkosivu', + 'domain_url': 'Domain URL', + 'password_is_too_short': 'salasana on liian lyhyt', + 'password_is_too_easy': 'Salasanan pitää sisältää iso kirjain ja numero', + 'client_portal_tasks': 'Asiakas portaalin tehtävät', + 'client_portal_dashboard': 'Asiakas portaalin etusivu', + 'please_enter_a_value': 'Aseta arvo', + 'deleted_logo': 'Logo poistettiin onnistuneesti', + 'yes': 'Kyllä', 'no': 'Ei', - 'generate_number': 'Loo number', - 'when_saved': 'Kui salvestatud', - 'when_sent': 'Kui saadetud', - 'select_company': 'Valige ettevõte', - 'float': 'Float', - 'collapse': 'Ahenda', - 'show_or_hide': 'Näita/Peida', - 'menu_sidebar': 'Menüü Külgriba', - 'history_sidebar': 'Ajaloo külgriba', - 'tablet': 'Tahvelarvuti', - 'mobile': 'Mobiil', + 'generate_number': 'Luo numero', + 'when_saved': 'Milloin tallennettu', + 'when_sent': 'Milloin lähetetty', + 'select_company': 'Valitse yritys', + 'float': 'Kelluva', + 'collapse': 'Pienennä', + 'show_or_hide': 'Näytä/piilota', + 'menu_sidebar': 'Valikon sivupalkki', + 'history_sidebar': 'Historia sivupalkki', + 'tablet': 'Tablet', + 'mobile': 'Mobile', 'desktop': 'Desktop', - 'layout': 'Paigutus', - 'view': 'Vaata', - 'module': 'Moodul', - 'first_custom': 'Esimene kohandatud', - 'second_custom': 'Teine kohandatud', - 'third_custom': 'Kolmas kohandatud', - 'show_cost': 'Näita maksumust', - 'show_product_cost': 'Näita toote maksumust', - 'show_cost_help': 'Lisaväärtuse/kasumi jälgimiseks kuvage tootekulu väli', - 'show_product_quantity': 'Näita toote kogust', + 'layout': 'Ulkoasu', + 'view': 'Näytä', + 'module': 'Moduuli', + 'first_custom': 'Ensim. muokattu', + 'second_custom': 'Toinen muokattu', + 'third_custom': 'Kolmas muokattu', + 'show_cost': 'Näytä kustannus', + 'show_product_cost': 'Show Product Cost', + 'show_cost_help': 'Näytä tuotteen kulukenttä seurataksesi katetta', + 'show_product_quantity': 'Näytä tuotteen määrä', 'show_product_quantity_help': - 'Kuvage toote koguse väli, muidu vaikimisi üks', - 'show_invoice_quantity': 'Näita arve kogust', + 'Näytä tuotteen määräkenttä, muutoin oletus 1', + 'show_invoice_quantity': 'Näytä Laskun määrät', 'show_invoice_quantity_help': - 'Kuvage reaüksuse koguse väli, muul juhul vaikimisi üks', + 'Näytä rivien määräkenttä, muutoin oletus 1', 'show_product_discount': 'Show Product Discount', 'show_product_discount_help': 'Display a line item discount field', - 'default_quantity': 'Vaikimisi kogus', - 'default_quantity_help': 'Määrake rea artikli koguseks automaatselt üks', - 'one_tax_rate': 'Üks maksumäär', - 'two_tax_rates': 'Kaks maksumäära', - 'three_tax_rates': 'Kolm maksumäära', - 'default_tax_rate': 'Vaikimisi maksumäär', - 'user': 'Kasutaja', - 'invoice_tax': 'Arve maks', - 'line_item_tax': 'Rea artikli maks', - 'inclusive_taxes': 'Kaasa arvatud maksud', - 'invoice_tax_rates': 'Arve maksumäärad', - 'item_tax_rates': 'Kauba maksumäärad', - 'no_client_selected': 'Valige klient', - 'configure_rates': 'Määrake määrad', + 'default_quantity': 'Oletus määrä', + 'default_quantity_help': 'Aseta rivimäärä oletuksena 1', + 'one_tax_rate': 'Ensimmäinen veroluokka', + 'two_tax_rates': 'Toinen veroluokka', + 'three_tax_rates': 'Kolmas veroluokka', + 'default_tax_rate': 'Oletus veroluokka', + 'user': 'Käyttäjä', + 'invoice_tax': 'Laskun vero', + 'line_item_tax': 'Line Item Tax', + 'inclusive_taxes': 'Inclusive Taxes', + 'invoice_tax_rates': 'Invoice Tax Rates', + 'item_tax_rates': 'Item Tax Rates', + 'no_client_selected': 'Valitse asiakas', + 'configure_rates': 'Määritä kurssit', 'configure_gateways': 'Configure Gateways', - 'tax_settings': 'Maksu Seaded', - 'tax_settings_rates': 'Maksumäärad', - 'accent_color': 'Aktsentvärv', + 'tax_settings': 'Veroasetukset', + 'tax_settings_rates': 'Veroluokat', + 'accent_color': 'Nouseva väri', 'switch': 'Switch', - 'comma_sparated_list': 'Komaga eraldatud loend', - 'options': 'Valikud', - 'single_line_text': 'Üherealine tekst', - 'multi_line_text': 'Mitmerealine tekst', - 'dropdown': 'Rippmenüü', - 'field_type': 'Välja tüüp', - 'recover_password_email_sent': 'Parooli taastamise meil on saadetud', - 'submit': 'Sisesta', - 'recover_password': 'Taasta oma parool', - 'late_fees': 'Late Fees', - 'credit_number': 'Credit Number', - 'payment_number': 'Makse number', - 'late_fee_amount': 'Viivise summa', - 'late_fee_percent': 'Viivise protsent', - 'schedule': 'Schedule', - 'before_due_date': 'Enne tähtaega', - 'after_due_date': 'Pärast tähtaega', - 'after_invoice_date': 'Pärast arve kuupäeva', - 'days': 'Päeva', - 'invoice_email': 'Arve E-kiri', - 'payment_email': 'Makse E-kiri', - 'partial_payment': 'Osaline makse', - 'payment_partial': 'Partial Payment', - 'partial_payment_email': 'Partial Payment Email', - 'quote_email': 'Pakkumuse E-kiri', - 'endless_reminder': 'Lõputu Meeldetuletus', - 'filtered_by_user': 'Filtreeritud kasutaja järgi', - 'administrator': 'Administraator', + 'comma_sparated_list': 'pilkku eroteltu lista', + 'options': 'Valinnat', + 'single_line_text': 'Single-line text', + 'multi_line_text': 'Multi-line text', + 'dropdown': 'Alasvetovalikko', + 'field_type': 'Kentän tyyppi', + 'recover_password_email_sent': + 'Salasanan palautussähköposti on lähetetty.', + 'submit': 'Submit', + 'recover_password': 'Palauta salasana', + 'late_fees': 'Viivästysmaksut', + 'credit_number': 'luotto numero', + 'payment_number': 'maksu numero', + 'late_fee_amount': 'Late palkkio määrä', + 'late_fee_percent': 'Late palkkio Percent', + 'schedule': 'Aikataulu', + 'before_due_date': 'Ennen eräpäivää', + 'after_due_date': 'Eräpäivän jälkeen', + 'after_invoice_date': 'Laskun päiväyksen jälkeen', + 'days': 'Päivää', + 'invoice_email': 'Laskusähköposti', + 'payment_email': 'Maksusähköposti', + 'partial_payment': 'Osittainen maksu', + 'payment_partial': 'Osittainen maksu', + 'partial_payment_email': 'Osittaisen maksun sähköpostiosoite', + 'quote_email': 'Tarjoussähköposti', + 'endless_reminder': 'Endless muistutus', + 'filtered_by_user': 'Filtered by User', + 'administrator': 'Ylläpitäjä', 'administrator_help': - 'Luba kasutajal hallata kasutajaid, muuta seadeid ja muuta kõiki kirjeid', - 'user_management': 'Kasutaja Haldus', - 'users': 'Kasutajad', - 'new_user': 'Uus Kasutaja', - 'edit_user': 'Muuda Kasutajat', - 'created_user': 'Kasutaja loomine õnnestus', - 'updated_user': 'Kasutaja värskendamine õnnestus', - 'archived_user': 'Kasutaja arhiveerimine õnnestus', - 'deleted_user': 'Kasutaja edukalt kustutatud', - 'removed_user': 'Kasutaja eemaldamine õnnestus', - 'restored_user': 'Kasutaja taastamine õnnestus', - 'archived_users': ':value kasutaja arhiveerimine õnnestus', - 'deleted_users': ':value kasutaja kustutamine õnnestus', - 'removed_users': ':value kasutaja eemaldamine õnnestus', - 'restored_users': ':value kasutaja taastamine õnnestus', - 'general_settings': 'Üldised Seaded', - 'invoice_options': 'Arve Valikud', - 'hide_paid_to_date': 'Peida Tasutud Väli', + 'Allow käyttäjä manage users, change asetus ja modify kaikki records', + 'user_management': 'Käyttäjänhallinta', + 'users': 'Käyttäjät', + 'new_user': 'Uusi käyttäjä', + 'edit_user': 'Muokkaa käyttäjä', + 'created_user': 'Onnistuneesti luotu käyttäjä', + 'updated_user': 'Käyttäjä on päivitetty onnistuneesti', + 'archived_user': 'Käyttäjä arkistoitu onnistuneesti', + 'deleted_user': 'Käyttäjä on poistettu onnistuneesti', + 'removed_user': 'Onnistuneesti poistettu käyttäjä', + 'restored_user': 'Käyttäjä palautettu onnistuneesti', + 'archived_users': 'Successfully archived :value users', + 'deleted_users': 'Successfully deleted :value users', + 'removed_users': 'Successfully removed :value users', + 'restored_users': 'Successfully restored :value users', + 'general_settings': 'Yleiset asetukset', + 'invoice_options': 'Laskun valinnat', + 'hide_paid_to_date': 'Piilota \"Maksettu tähän asti\"', 'hide_paid_to_date_help': - 'Ainult näita \"Tasutud\" välja arvel, kui makse on loodud.', - 'invoice_embed_documents': 'Manusta dokumendid', - 'invoice_embed_documents_help': 'Lisage arvele lisatud pildid.', - 'all_pages_header': 'Näita Päist', - 'all_pages_footer': 'Näita Jalust', - 'first_page': 'Esimene lehekülg', - 'all_pages': 'Kõik leheküljed', - 'last_page': 'Viimane lehekülg', - 'primary_font': 'Esmane font', - 'secondary_font': 'Sekundaarne font', - 'primary_color': 'Põhi värv', - 'secondary_color': 'Sekundaarne värv', - 'page_size': 'Lehekülje suurus', - 'font_size': 'Fondi suurus', - 'quote_design': 'Pakkumuse Kujundus', - 'invoice_fields': 'Arve Väljad', - 'product_fields': 'Toote Väljad', - 'invoice_terms': 'Arve Tingimused', - 'invoice_footer': 'Arve Jalus', - 'quote_terms': 'Hinnapakkumise tingimused', - 'quote_footer': 'Pakkumuse Jalus', - 'auto_email_invoice': 'Automaatne meil', + 'Näytä \"Maksettava päivämäärään mennessä\" kenttä laskuillasi vain maksetuilla laskuilla.', + 'invoice_embed_documents': 'Embed Documents', + 'invoice_embed_documents_help': 'Sisällytä liitetyt kuvat laskuun.', + 'all_pages_header': 'näytä Header on', + 'all_pages_footer': 'Näytä alatunniste', + 'first_page': 'ensimmäinen page', + 'all_pages': 'All pages', + 'last_page': 'viime page', + 'primary_font': 'Ensisijainen kirjasin', + 'secondary_font': 'toissijainen kirjasin', + 'primary_color': 'Pääväri', + 'secondary_color': 'Apuväri', + 'page_size': 'Sivukoko', + 'font_size': 'Fontin koko', + 'quote_design': 'Tarjouksen muotoilu', + 'invoice_fields': 'Laskun kentät', + 'product_fields': 'Tuote kentät', + 'invoice_terms': 'Laskun ehdot', + 'invoice_footer': 'Laskun alatunniste', + 'quote_terms': 'Tarjouksen ehdot', + 'quote_footer': 'Tarjouksen alatunniste', + 'auto_email_invoice': 'automaattinen Email', 'auto_email_invoice_help': - 'Saatke korduv arve automatselt meiliga nende loomisel.', - 'auto_archive_invoice': 'Automaatne arhiveerimine', + 'automaattisesti sähköposti toistuva laskut when they on luotu.', + 'auto_archive_invoice': 'automaattinen Arkistoi', 'auto_archive_invoice_help': - 'Arhiivige automaatselt arved, kui need on tasutud.', - 'auto_archive_quote': 'Automaatne arhiveerimine', + 'automaattisesti archive laskut when they on paid.', + 'auto_archive_quote': 'automaattinen Arkistoi', 'auto_archive_quote_help': - 'Arhiivi hinnapakkumised automaatselt pärast nende teisendamist.', - 'auto_convert_quote': 'Automaatne teisendamine', + 'Arkistoi tarjoukset automaattisesti kun ne on muunnettu laskuiksi.', + 'auto_convert_quote': 'Automaattinen muunnos', 'auto_convert_quote_help': - 'Konverteerige hinnapakkumine automaatselt arveks, kui klient on selle heaks kiitnud.', - 'workflow_settings': 'Töövoo Seaded', - 'freq_daily': 'Igapäevane', - 'freq_weekly': 'Iganädalane', - 'freq_two_weeks': 'Kaks nädalat', - 'freq_four_weeks': 'Neli nädalat', - 'freq_monthly': 'Igakuine', - 'freq_two_months': 'Kaks kuud', - 'freq_three_months': 'Kvartaalne', - 'freq_four_months': 'Neli kuud', - 'freq_six_months': 'Poolaastane', - 'freq_annually': 'Aastane', - 'freq_two_years': 'Kaks aastat', - 'freq_three_years': 'Kolm aastat', - 'never': 'Ei iial', - 'company': 'Ettevõte', - 'generated_numbers': 'Genereeritud Numbrid', - 'charge_taxes': 'Tasuda makse', - 'next_reset': 'Järgmine lähtestamine', - 'reset_counter': 'Lähtestage loendur', - 'recurring_prefix': 'Recurring Prefix', - 'number_padding': 'Number Padding', + 'Muunna tarjous automaattisesti laskuksi, kun asiakas on hyväksynyt tarjouksen.', + 'workflow_settings': 'Workflow asetukset', + 'freq_daily': 'päivittäin', + 'freq_weekly': 'viikoittain', + 'freq_two_weeks': 'Kaksi viikkoa', + 'freq_four_weeks': 'neljä viikkoa', + 'freq_monthly': 'Kuukausittain', + 'freq_two_months': 'Kaksi kuukautta', + 'freq_three_months': 'kolme kuukautta', + 'freq_four_months': 'neljä kuukautta', + 'freq_six_months': 'Six kuukautta', + 'freq_annually': 'Vuosittain', + 'freq_two_years': 'Kaksi vuotta', + 'freq_three_years': '3 vuotta', + 'never': 'Ei koskaan', + 'company': 'yritys', + 'generated_numbers': 'Generated Numbers', + 'charge_taxes': 'Veloita veroa', + 'next_reset': 'Next Reset', + 'reset_counter': 'Reset Counter', + 'recurring_prefix': 'toistuva etuliite', + 'number_padding': 'numero Padding', 'general': 'General', - 'surcharge_field': 'Lisatasu väli', - 'company_field': 'Ettevõtte Väljad', - 'company_value': 'Ettevõtte väärtus', - 'credit_field': 'Ettemakse väli', - 'invoice_field': 'Arve Väljad', - 'invoice_surcharge': 'Arve Lisatasu', - 'client_field': 'Kliendi Väljad', - 'product_field': 'Toote Väljad', - 'payment_field': 'Makse väli', - 'contact_field': 'Kontakti Väli', - 'vendor_field': 'Tarnija väli', - 'expense_field': 'Kulude väli', - 'project_field': 'Projekti väli', - 'task_field': 'Ülesande Väli', - 'group_field': 'Rühma väli', - 'number_counter': 'Numbri loendur', - 'prefix': 'Prefiks', - 'number_pattern': 'Numbri muster', - 'messages': 'Sõnumid', - 'custom_css': 'Kohandatud CSS', - 'custom_javascript': 'Kohandatud JavaScript', - 'signature_on_pdf': 'Näita PDFis', - 'signature_on_pdf_help': 'Näita kliendi allkirja arve/pakkumuse PDFis.', - 'show_accept_invoice_terms': 'Arve Tingimuste Märkeruut', + 'surcharge_field': 'Surcharge kenttä', + 'company_field': 'yritys kenttä', + 'company_value': 'yritys Value', + 'credit_field': 'luotto kenttä', + 'invoice_field': 'Lasku kenttä', + 'invoice_surcharge': 'Lasku Surcharge', + 'client_field': 'asiakas kenttä', + 'product_field': 'Tuote kenttä', + 'payment_field': 'maksu kenttä', + 'contact_field': 'kontakti kenttä', + 'vendor_field': 'Kauppias kenttä', + 'expense_field': 'kulu kenttä', + 'project_field': 'Projekti kenttä', + 'task_field': 'Tehtävä kenttä', + 'group_field': 'ryhmä kenttä', + 'number_counter': 'numero Counter', + 'prefix': 'Etuliite', + 'number_pattern': 'numero Pattern', + 'messages': 'Viestit', + 'custom_css': 'Mukautettu CSS', + 'custom_javascript': 'Muokautettu JavaScript', + 'signature_on_pdf': 'näytä on PDF', + 'signature_on_pdf_help': + 'Näytä asiakkaan allekirjoitus lasku-/tarjous-PDF:ssä.', + 'show_accept_invoice_terms': 'Laskun ehdot valintaruutu', 'show_accept_invoice_terms_help': - 'Nõua kliendilt kinnitust, et ta nõustub arve tingimustega.', - 'show_accept_quote_terms': 'Pakkumuse Tingimuste Märkeruut', + 'Vaadi asiakasta vahvistamaan, että hän hyväksyy laskun ehdot.', + 'show_accept_quote_terms': 'Tarjouksen ehdot valintaruutu', 'show_accept_quote_terms_help': - 'Nõua kliendilt kinnitust, et ta nõustub hinnapakkumise tingimustega.', - 'require_invoice_signature': 'Arve Allkiri', - 'require_invoice_signature_help': 'Nõua kliendi allkirja', - 'require_quote_signature': 'Pakkumuse Allkiri', - 'enable_portal_password': 'Salasõnaga Kaitstud Arved', + 'Vaadi asiakasta vahvistamaan, että hän hyväksyy tarjouksen ehdot.', + 'require_invoice_signature': 'Laskun allekirjoitus', + 'require_invoice_signature_help': + 'Vaadi asiakasta täyttämään allekirjoitus.', + 'require_quote_signature': 'Tarjouksen allekirjoitus', + 'enable_portal_password': 'salasana suojaa laskut', 'enable_portal_password_help': - 'Võimaldab määrata igale kontaktile salasõna. Kui salasõna on määratud siis nõutakse kontaktilt enne arve nägemist salasõna.', - 'authorization': 'Autoriseerimine', - 'subdomain': 'Alamdomeen', - 'domain': 'Domeen', - 'portal_mode': 'Portaali režiim', - 'email_signature': 'Lugupidamisega.', + 'Mahdollistaa, että voit antaa salasanan jokaiselle yhteyshenkilölle. Jos salasana on asetettu, yhteyshenkilön tulee kirjautua sen avulla sisään voidakseen tarkastella laskuja.', + 'authorization': 'Valtuutus', + 'subdomain': 'Alidomain', + 'domain': 'Domain', + 'portal_mode': 'Portal Mode', + 'email_signature': 'Ystävällisesti,', 'enable_email_markup_help': - 'Muutke oma klientidel teile maksmine lihtsamaks, lisades oma meilidele schema.org-i märgistuse.', - 'plain': 'Lihtne', - 'light': 'Hele', - 'dark': 'Tume', - 'email_design': 'E-kirja Kujundus', - 'attach_pdf': 'Lisage PDF', - 'attach_documents': 'Lisage dokumendid', - 'attach_ubl': 'Kinnitage UBL', - 'email_style': 'Meili stiil', - 'enable_email_markup': 'Luba märgistus', - 'reply_to_email': 'Vastus meilile', + 'Tee asiakkaillesi helpommaksi maksaa laskusi ottamalla käyttöön schema.org -merkintä sähköposteissasi.', + 'plain': 'Yksinkertainen', + 'light': 'Vaalea', + 'dark': 'Tumma', + 'email_design': 'Sähköpostin muotoilu', + 'attach_pdf': 'Liitä PDF', + 'attach_documents': 'Liitä asiakirjoja', + 'attach_ubl': 'Attach UBL', + 'email_style': 'Email Style', + 'enable_email_markup': 'Ota käyttöön merkintä', + 'reply_to_email': 'Reply-To Email', 'reply_to_name': 'Reply-To Name', 'bcc_email': 'BCC Email', 'processed': 'Processed', - 'credit_card': 'Krediitkaart', - 'bank_transfer': 'Pangaülekanne', - 'priority': 'Prioriteet', - 'fee_amount': 'Viivise summa', - 'fee_percent': 'Viivise protsent', - 'fee_cap': 'Fee Cap', - 'limits_and_fees': 'Limits/Fees', - 'enable_min': 'Luba min', - 'enable_max': 'Luba max', + 'credit_card': 'Luottokortti', + 'bank_transfer': 'Pankkisiirto', + 'priority': 'Priority', + 'fee_amount': 'palkkio määrä', + 'fee_percent': 'Palkkio prosentti', + 'fee_cap': 'palkkio Cap', + 'limits_and_fees': 'Limits/palkkiot', + 'enable_min': 'Ota käyttöön min', + 'enable_max': 'Ota käyttöön max', 'min_limit': 'Min: :min', 'max_limit': 'Max: :max', 'min': 'Min', 'max': 'Max', - 'accepted_card_logos': 'Accepted Card Logos', - 'credentials': 'Credentials', - 'update_address': 'Värskenda aadressi', - 'update_address_help': - 'Värskendage kliendi aadressi esitatud üksikasjadega', - 'rate': 'Määr', - 'tax_rate': 'Maksumäär', - 'new_tax_rate': 'Uus Maksumäär', - 'edit_tax_rate': 'Muuda maksumäära', - 'created_tax_rate': 'Maksumäär on edukalt loodud', - 'updated_tax_rate': 'Maksumäära värskendamine õnnestus', - 'archived_tax_rate': 'Maksumäära arhiivimine õnnestus', - 'deleted_tax_rate': 'Maksumäär kustutati edukalt', - 'restored_tax_rate': 'Maksumäär taastati edukalt', - 'archived_tax_rates': ':value maksumäärad edukalt arhiveeritud', - 'deleted_tax_rates': ':value maksumäärad edukalt kustutatud', - 'restored_tax_rates': ':value maksumäärad edukalt taastatud', - 'fill_products': 'Automaatselt täidetavad tooted', + 'accepted_card_logos': 'Accepted kortti Logos', + 'credentials': 'Tunnukset', + 'update_address': 'Päivitä osoite', + 'update_address_help': 'Päivitä asiakkaan osoite annetuilla tiedoilla', + 'rate': 'Kanta', + 'tax_rate': 'Verokanta', + 'new_tax_rate': 'Uusi veromäärä', + 'edit_tax_rate': 'Muokkaa verokantaa', + 'created_tax_rate': 'Verokanta luotu onnistuneesti', + 'updated_tax_rate': 'Verokanta päivitetty onnistuneesti', + 'archived_tax_rate': 'Verokanta arkistoitu onnistuneesti', + 'deleted_tax_rate': 'Verokanta onnistuneesti poistettu', + 'restored_tax_rate': 'Verokanta onnistuneesti palautettu', + 'archived_tax_rates': 'Successfully archived :value tax rates', + 'deleted_tax_rates': 'Successfully deleted :value tax rates', + 'restored_tax_rates': 'Successfully restored :value tax rates', + 'fill_products': 'Lisää automaattisesti tuotteita', 'fill_products_help': - 'Toote valimine täidab automaatselt kirjelduse ja maksumuse', - 'update_products': 'Toodete automaatne värskendamine', + 'Tuotteen valinta täyttää kuvauksen ja hinnan automaattisesti', + 'update_products': 'Päivitä automaattisesti tuotteet', 'update_products_help': - 'Arve värskendamine toimub automaatselt värskendage tootekogu', - 'convert_products': 'Konverteeri tooteid', + 'Laskun päivittäminen päivittää tuotetietokannan automaattisesti', + 'convert_products': 'Convert tuotteet', 'convert_products_help': - 'Konverteerige toodete hinnad automaatselt kliendi valuutasse', - 'fees': 'Fees', - 'limits': 'Limiidid', - 'provider': 'Pakkuja', - 'company_gateway': 'Payment Gateway', - 'company_gateways': 'Payment Gateways', - 'new_company_gateway': 'New Gateway', - 'edit_company_gateway': 'Edit Gateway', - 'created_company_gateway': 'Successfully created gateway', - 'updated_company_gateway': 'Successfully updated gateway', - 'archived_company_gateway': 'Successfully archived gateway', - 'deleted_company_gateway': 'Successfully deleted gateway', - 'restored_company_gateway': 'Successfully restored gateway', + 'Muunna automaattisesti tuotehinnat asiakkaan valuuttaan', + 'fees': 'palkkiot', + 'limits': 'Limits', + 'provider': 'Tarjoaja', + 'company_gateway': 'maksu Gateway', + 'company_gateways': 'maksu Gateways', + 'new_company_gateway': 'uusi Gateway', + 'edit_company_gateway': 'muokkaa Gateway', + 'created_company_gateway': 'onnistuneesti luotu gateway', + 'updated_company_gateway': 'onnistuneesti päivitetty gateway', + 'archived_company_gateway': 'onnistuneesti arkistoitu gateway', + 'deleted_company_gateway': 'onnistuneesti poistettu gateway', + 'restored_company_gateway': 'onnistuneesti palautettu gateway', 'archived_company_gateways': 'Successfully archived :value gateways', 'deleted_company_gateways': 'Successfully deleted :value gateways', 'restored_company_gateways': 'Successfully restored :value gateways', - 'continue_editing': 'Jätka redigeerimist', - 'discard_changes': 'Loobu muudatustest', - 'default_value': 'Vaikeväärtus', - 'disabled': 'Keelatud', - 'currency_format': 'Valuuta vorming', - 'first_day_of_the_week': 'Nädala esimene päev', - 'first_month_of_the_year': 'Aasta esimene kuu', - 'sunday': 'pühapäev', - 'monday': 'esmaspäev', - 'tuesday': 'teisipäev', - 'wednesday': 'kolmapäev', - 'thursday': 'neljapäev', - 'friday': 'reede', - 'saturday': 'laupäev', - 'january': 'jaanuar', - 'february': 'veebruar', - 'march': 'märts', - 'april': 'aprill', - 'may': 'mai', - 'june': 'juuni', - 'july': 'juuli', - 'august': 'august', - 'september': 'september', - 'october': 'oktoober', - 'november': 'november', - 'december': 'detsember', - 'symbol': 'Sümbol', - 'ocde': 'Kood', - 'date_format': 'Kuupäevavorming', - 'datetime_format': 'Kuupäeva ja kellaaja vorming', - 'military_time': '24-tunnine Aeg', - 'military_time_help': '24 Hour Display', - 'send_reminders': 'Saatke meeldetuletusi', - 'timezone': 'Ajavöönd', - 'filtered_by_project': 'Filtreeritud projekti järgi', - 'filtered_by_group': 'Filtreeritud grupi järgi', - 'filtered_by_invoice': 'Filtreeritud arve järgi', - 'filtered_by_client': 'Filtreeritud kliendi järgi', - 'filtered_by_vendor': 'Filtreeritud tarnija järgi', - 'group_settings': 'Grupi seaded', - 'group': 'Grupp', - 'groups': 'Grupid', - 'new_group': 'Uus grupp', - 'edit_group': 'Redigeeri gruppi', - 'created_group': 'Grupi loomine õnnestus', - 'updated_group': 'Grupi uuendamine õnnestus', - 'archived_groups': ':value rühma edukalt arhiveeritud', - 'deleted_groups': ':value rühma edukalt kustutatud', + 'continue_editing': 'Jatka muokkausta', + 'discard_changes': 'Discard Changes', + 'default_value': 'Oletus arvo', + 'disabled': 'Pois käytöstä', + 'currency_format': 'Valuutan muoto', + 'first_day_of_the_week': 'Viikon ensimmäinen päivä', + 'first_month_of_the_year': 'Vuoden ensimmäinen kuukausi', + 'sunday': 'sunnuntai', + 'monday': 'Maanantai', + 'tuesday': 'Tiistai', + 'wednesday': 'Keskiviikko', + 'thursday': 'Torstai', + 'friday': 'Perjantai', + 'saturday': 'Lauantai', + 'january': 'Tammikuu', + 'february': 'Helmikuu', + 'march': 'Maaliskuu', + 'april': 'Huhtikuu', + 'may': 'Toukokuu', + 'june': 'Kesäkuu', + 'july': 'Heinäkuu', + 'august': 'Elokuu', + 'september': 'Syyskuu', + 'october': 'Lokakuu', + 'november': 'Marraskuu', + 'december': 'Joulukuu', + 'symbol': 'Symboli', + 'ocde': 'Koodi', + 'date_format': 'Päivämäärän muoto', + 'datetime_format': 'Päivä-Aika esitysmuoto', + 'military_time': '24 tunnin aika', + 'military_time_help': 'Näytä 24 tunnin aikamuoto', + 'send_reminders': 'lähetä muistutukset', + 'timezone': 'Aikavyöhyke', + 'filtered_by_project': 'Filtered by Project', + 'filtered_by_group': 'Filtered by ryhmä', + 'filtered_by_invoice': 'Filtered by Lasku', + 'filtered_by_client': 'Filtered by asiakas', + 'filtered_by_vendor': 'Suodatettu: Kauppias', + 'group_settings': 'ryhmä asetukset', + 'group': 'ryhmä', + 'groups': 'ryhmät', + 'new_group': 'uusi ryhmä', + 'edit_group': 'muokkaa ryhmä', + 'created_group': 'onnistuneesti luotu ryhmä', + 'updated_group': 'onnistuneesti päivitetty ryhmä', + 'archived_groups': 'Successfully archived :value groups', + 'deleted_groups': 'Successfully deleted :value groups', 'restored_groups': 'Successfully restored :value groups', - 'archived_group': 'Grupi arhiveerimine õnnestus', - 'deleted_group': 'Grupi kustutamine õnnestus', - 'restored_group': 'Grupi taastamine õnnestus', - 'upload_logo': 'Laadige logo üles', - 'uploaded_logo': 'Logo üleslaadimine õnnestus', + 'archived_group': 'onnistuneesti arkistoitu ryhmä', + 'deleted_group': 'onnistuneesti poistettu ryhmä', + 'restored_group': 'onnistuneesti palautettu ryhmä', + 'upload_logo': 'Lataa Logo', + 'uploaded_logo': 'Logo onnistuneesti ladattu palvelimelle', 'logo': 'Logo', - 'saved_settings': 'Seadete salvestamine õnnestus', - 'product_settings': 'Toote Seaded', - 'device_settings': 'Seadme sätted', - 'defaults': 'Vaikimisi', - 'basic_settings': 'Elementaarsed Seaded', - 'advanced_settings': 'Täpsemad Seaded', - 'company_details': 'Ettevõtte Andmed', - 'user_details': 'Kasutaja Üksikasjad', - 'localization': 'Lokalisatsioon', - 'online_payments': 'Võrgumaksed', - 'tax_rates': 'Maksumäärad', - 'notifications': 'Teated', - 'import_export': 'Import | Eksport', - 'custom_fields': 'Kohandatud Väljad', - 'invoice_design': 'Arve Kujundus', - 'buy_now_buttons': 'Osta Kohe Nupp', - 'email_settings': 'E-posti Seaded', - 'templates_and_reminders': 'Mallid ja meeldetuletused', - 'credit_cards_and_banks': 'Krediitkaardid ja pangad', - 'data_visualizations': 'Andmete visualiseerimised', - 'price': 'Hind', - 'email_sign_up': 'Meili registreerumine', - 'google_sign_up': 'Google\'i registreerumine', - 'thank_you_for_your_purchase': 'Täname teid ostu eest!', + 'saved_settings': 'onnistuneesti saved asetus', + 'product_settings': 'Tuoteasetukset', + 'device_settings': 'Device asetukset', + 'defaults': 'Oletusasetukset', + 'basic_settings': 'Perusasetukset', + 'advanced_settings': 'Lisääasetuksia', + 'company_details': 'Yrityksen tiedot', + 'user_details': 'Käyttäjätiedot', + 'localization': 'Lokalisointi', + 'online_payments': 'Online maksut', + 'tax_rates': 'Verokannat', + 'notifications': 'Sähköposti-ilmoitukset', + 'import_export': 'Tuonti | Vienti', + 'custom_fields': 'Mukautetut kentät', + 'invoice_design': 'Laskun muotoilu', + 'buy_now_buttons': 'Osta nyt napit', + 'email_settings': 'Sähköpostin asetukset', + 'templates_and_reminders': 'Pohjat ja muistutukset', + 'credit_cards_and_banks': 'luotto Cards & Banks', + 'data_visualizations': 'Datan visualisaatiot', + 'price': 'Hinta', + 'email_sign_up': 'Email Sign Up', + 'google_sign_up': 'Google Sign Up', + 'thank_you_for_your_purchase': 'kiitos you sinun purchase!', 'redeem': 'Redeem', - 'back': 'Tagasi', - 'past_purchases': 'Varasemad ostud', - 'annual_subscription': 'Aastane tellimus', + 'back': 'Back', + 'past_purchases': 'Past Purchases', + 'annual_subscription': 'Annual tilaus', 'pro_plan': 'Pro Plan', 'enterprise_plan': 'Enterprise Plan', - 'count_users': ':kogus kasutajaid', - 'upgrade': 'Uuendage', - 'please_enter_a_first_name': 'Palun sisestage eesnimi', - 'please_enter_a_last_name': 'Palun sisestage perekonnanimi', + 'count_users': ':count käyttäjää', + 'upgrade': 'Upgrade', + 'please_enter_a_first_name': 'Anna etunimi', + 'please_enter_a_last_name': 'Anna sukunimi', 'please_agree_to_terms_and_privacy': - 'Konto loomiseks nõustuge teenusetingimuste ja privaatsuspoliitikaga.', - 'i_agree_to_the': 'ma nõustun', - 'terms_of_service': 'Teenuse Tingimused', - 'privacy_policy': 'Privaatsuspoliitika', - 'sign_up': 'Registreeru', - 'account_login': 'Konto sisselogimine', - 'view_website': 'Vaata veebisaiti', - 'create_account': 'Loo konto', + 'Ole hyvä ja hyväksy palveluehtomme sekä tietosuojakäytäntömme luodaksesi käyttäjätilin.', + 'i_agree_to_the': 'Hyväksyn', + 'terms_of_service': 'Käyttöehdot', + 'privacy_policy': 'Privacy Policy', + 'sign_up': 'Rekisteröidy', + 'account_login': 'Tiliin kirjautuminen', + 'view_website': 'Näytä verkkosivu', + 'create_account': 'Luo käyttäjätili', 'email_login': 'Email Login', - 'create_new': 'Loo Uus', - 'no_record_selected': 'Kirjet pole valitud', - 'error_unsaved_changes': 'Palun salvestage või tühistage oma muudatused', - 'download': 'Lae alla', - 'requires_an_enterprise_plan': 'Requires an enterprise plan', - 'take_picture': 'Tee pilt', - 'upload_file': 'Lae fail üles', - 'document': 'Dokument', - 'documents': 'Dokumendid', - 'new_document': 'Uus dokument', - 'edit_document': 'Redigeeri dokumenti', - 'uploaded_document': 'Dokument edukalt üles laetud', - 'updated_document': 'Dokument edukalt uuendatud', - 'archived_document': 'Dokument edukalt arhiveeritud', - 'deleted_document': 'Dokument edukalt kustutatud', - 'restored_document': 'Dokument edukalt taastatud', - 'archived_documents': ':value dokumenti edukalt arhiveeritud', - 'deleted_documents': ':value dokumenti edukalt kustutatud', + 'create_new': 'luo uusi', + 'no_record_selected': 'ei record selected', + 'error_unsaved_changes': 'save tai peruuta sinun muutokset', + 'download': 'Lataa', + 'requires_an_enterprise_plan': 'Requires enterprise plan', + 'take_picture': 'Ota kuva', + 'upload_file': 'Lataa tiedosto palvelimelle', + 'document': 'Document', + 'documents': 'Asiakirjat', + 'new_document': 'Uusi asiakirja', + 'edit_document': 'Muokkaa asiakirjaa', + 'uploaded_document': 'onnistuneesti lähetetty dokumentti', + 'updated_document': 'onnistuneesti päivitetty dokumentti', + 'archived_document': 'onnistuneesti arkistoitu dokumentti', + 'deleted_document': 'onnistuneesti poistettu dokumentti', + 'restored_document': 'onnistuneesti palautettu dokumentti', + 'archived_documents': 'Successfully archived :value documents', + 'deleted_documents': 'Successfully deleted :value documents', 'restored_documents': 'Successfully restored :value documents', - 'no_history': 'Ajalugu pole', - 'expense_date': 'Kulu kuupäev', - 'pending': 'Ootel', - 'expense_status_1': 'Logitud', - 'expense_status_2': 'Ootel', + 'no_history': 'ei History', + 'expense_date': 'Kulun päivämäärä', + 'pending': 'Odottaa vastausta', + 'expense_status_1': 'Logged', + 'expense_status_2': 'Pending', 'expense_status_3': 'Invoiced', - 'converted': 'Teisendatud', - 'add_documents_to_invoice': 'Lisage arvele dokumendid', - 'exchange_rate': 'Vahetuskurss', - 'convert_currency': 'Konverteeri valuutat', - 'mark_paid': 'Märgi makstuks', - 'category': 'Kategooria', - 'address': 'Aadress', - 'new_vendor': 'Uus Tarnija', - 'created_vendor': 'Tarnija loomine õnnestus', - 'updated_vendor': 'Tarnija värskendamine õnnestus', - 'archived_vendor': 'Tarnija arhiivimine õnnestus', - 'deleted_vendor': 'Tarnija edukalt kustutatud', - 'restored_vendor': 'Tarnija edukalt taastatud', - 'archived_vendors': ':kogus tarnijaid on edukalt arhiveeritud', - 'deleted_vendors': ':kogus tarnijad on edukalt kustutatud', - 'restored_vendors': ':value tarnijat edukalt taastatud', - 'new_expense': 'Sisestage kulu', - 'created_expense': 'Kulu on edukalt loodud', - 'updated_expense': 'Kulu edukalt uuendatud', - 'archived_expense': 'Kulu edukalt arhiveeritud', - 'deleted_expense': 'Kulu edukalt kustutatud', - 'restored_expense': 'Kulud edukalt taastatud', - 'archived_expenses': 'Kulud edukalt arhiveeritud', - 'deleted_expenses': 'Kulud edukalt kustutatud', - 'restored_expenses': ':value kulu edukalt taastatud', - 'copy_shipping': 'Copy Shipping', - 'copy_billing': 'Copy Billing', - 'design': 'Kujundus', - 'failed_to_find_record': 'Kirjet ei leitud', - 'invoiced': 'Arve esitatud', - 'logged': 'Logitud', - 'running': 'Running', - 'resume': 'Jätka', - 'task_errors': 'Parandage kõik kattuvad ajad', - 'start': 'Käivita', - 'stop': 'Peata', - 'started_task': 'Ülesanne edukalt käivitatud', - 'stopped_task': 'Ülesanne edukalt peatatud', - 'resumed_task': 'Ülesanne edukalt jätkatud', - 'now': 'Nüüd', - 'auto_start_tasks': 'Ülesannete automaatne käivitamine', - 'timer': 'Taimer', - 'manual': 'Manuaal', - 'budgeted': 'Eelarvestatud', - 'start_time': 'Algusaeg', - 'end_time': 'Lõpuaeg', - 'date': 'Kuupäev', - 'times': 'Ajad', - 'duration': 'Kestvus', - 'new_task': 'Uus Ülesanne', - 'created_task': 'Ülesanne edukalt loodud', - 'updated_task': 'Ülesanne edukalt uuendatud', - 'archived_task': 'Ülesanne edukalt arhiveeritud', - 'deleted_task': 'Ülesanne edukalt kustutatud', - 'restored_task': 'Ülesanne edukalt taastatud', - 'archived_tasks': ':count ülesannet edukalt arhiveeritud.', - 'deleted_tasks': ':count ülesannet edukalt kustutatud', - 'restored_tasks': ':value ülesannet edukalt taastatud', - 'please_enter_a_name': 'Palun sisesta nimi', - 'budgeted_hours': 'Eelarvestatud tunnid', - 'created_project': 'Projekt edukalt loodud', - 'updated_project': 'Projekt edukalt uuendatud', - 'archived_project': 'Projekt edukalt arhiveeritud', - 'deleted_project': 'Projekt edukalt kustutatud', - 'restored_project': 'Projekt edukalt taastatud', - 'archived_projects': ':count projekti edukalt arhiveeritud', - 'deleted_projects': ':count projekti edukalt kustutatud', - 'restored_projects': ':value projekti edukalt taastatud', - 'new_project': 'Uus Projekt', - 'thank_you_for_using_our_app': 'Täname, et kasutasite meie rakendust!', - 'if_you_like_it': 'Kui teile meeldib, palun', - 'click_here': 'klõpsake siin', - 'click_here_capital': 'Kliki siia', - 'to_rate_it': 'et seda hinnata.', - 'average': 'Keskmine', - 'unapproved': 'Kinnitamata', - 'authenticate_to_change_setting': 'Seadete muutmiseks autentige', - 'locked': 'Lukustatud', - 'authenticate': 'Autentimine', - 'please_authenticate': 'Palun autentige', - 'biometric_authentication': 'Biomeetriline autentimine', - 'footer': 'Jalus', - 'compare': 'Võrdlema', - 'hosted_login': 'Hosted Login', - 'selfhost_login': 'Selfhost Login', - 'google_sign_in': 'Logige sisse Google\'iga', - 'today': 'Täna', - 'custom_range': 'Kohandatud Vahemik', - 'date_range': 'Kuupäevavahemik', - 'current': 'Praegune', - 'previous': 'Eelmine', - 'current_period': 'Praegune periood', - 'comparison_period': 'Võrdlusperiood', - 'previous_period': 'Eelmine periood', - 'previous_year': 'Eelmine aasta', - 'compare_to': 'Võrdlema', - 'last7_days': 'Viimased 7 päeva', - 'last_week': 'Eelmine nädal', - 'last30_days': 'Viimased 30 päeva', - 'this_month': 'See Kuu', - 'last_month': 'Eelmine Kuu', - 'this_year': 'See Aasta', - 'last_year': 'Eelmine Aasta', - 'custom': 'Kohandatud', - 'clone_to_invoice': 'Klooni arveks', - 'clone_to_quote': 'Klooni hinnapakkumiseks', - 'clone_to_credit': 'Clone to Credit', - 'view_invoice': 'Vaata Arvet', - 'convert': 'Teisenda', - 'more': 'Rohkem', - 'edit_client': 'Muuda Klienti', - 'edit_product': 'Muuda Toodet', - 'edit_invoice': 'Muuda Arvet', - 'edit_quote': 'Muuda Pakkumust', - 'edit_payment': 'Muuda Makset', - 'edit_task': 'Muuda Ülesannet', - 'edit_expense': 'Muuda kulusid', - 'edit_vendor': 'Muuda Tarnijat', - 'edit_project': 'Muuda Projekti', - 'edit_recurring_quote': 'Redigeeri korduv pakkumist', - 'billing_address': 'Arve aadress', - 'shipping_address': 'Kohaletoimetamise aadress', - 'total_revenue': 'Kogutulu', - 'average_invoice': 'Keskmine Arve', - 'outstanding': 'Väljapaistev', - 'invoices_sent': ':count arvet saadetud', - 'active_clients': 'aktiivsed kliendid', - 'close': 'Sulge', - 'email': 'E-post', - 'password': 'Salasõna', - 'url': 'URL', - 'secret': 'Secret', - 'name': 'Nimi', - 'logout': 'Logi Välja', - 'login': 'Logi Sisse', - 'filter': 'Filter', - 'sort': 'Sorteeri', - 'search': 'Otsi', - 'active': 'Aktiivne', - 'archived': 'Arhiveeritud', - 'deleted': 'Kustutatud', - 'dashboard': 'Töölaud', - 'archive': 'Arhiiv', - 'delete': 'Kustuta', - 'restore': 'Taasta', - 'refresh_complete': 'Värskendus on lõpetatud', - 'please_enter_your_email': 'Palun sisesta oma e-maili aadress', - 'please_enter_your_password': 'Sisesta oma parool', - 'please_enter_your_url': 'Sisesta oma URL', - 'please_enter_a_product_key': 'Sisesta Toote kood', - 'ascending': 'Kasvav', - 'descending': 'Kahanev', - 'save': 'Salvesta', - 'an_error_occurred': 'Ilmnes viga', - 'paid_to_date': 'Tasutud', - 'balance_due': 'Kokku tasuda', - 'balance': 'Saldo', - 'overview': 'Ülevaade', - 'details': 'Üksikasjad', - 'phone': 'Telefon', - 'website': 'Kodulehekülg', - 'vat_number': 'KMKR Number', - 'id_number': 'Registrikood', - 'create': 'Loo', - 'copied_to_clipboard': 'Kopeeritud :väärtus lõikelauale', - 'error': 'Viga', - 'could_not_launch': 'Ei saanud käivitada', - 'contacts': 'Kontaktid', - 'additional': 'Lisaks', - 'first_name': 'Eesnimi', - 'last_name': 'Perekonnanimi', - 'add_contact': 'Lisa kontakt', - 'are_you_sure': 'Oled kindel?', - 'cancel': 'Katkesta', - 'ok': 'Ok', - 'remove': 'Eemalda', - 'email_is_invalid': 'E-post on kehtetu', - 'product': 'Toode', - 'products': 'Tooted', - 'new_product': 'Uus Toode', - 'created_product': 'Toote loomine õnnestus', - 'updated_product': 'Toote värskendamine õnnestus', - 'archived_product': 'Toote arhiveerimine õnnestus', - 'deleted_product': 'Toode edukalt kustutatud', - 'restored_product': 'Toode edukalt taastatud', - 'archived_products': ':kogus tooted edukalt arhiveeritud', - 'deleted_products': ':count toodet edukalt kustutatud', - 'restored_products': ':value toodet edukalt taastatud', - 'product_key': 'Toode', - 'notes': 'Märkmed', - 'cost': 'Hind', - 'client': 'Klient', - 'clients': 'Kliendid', - 'new_client': 'Uus Klient', - 'created_client': 'Klient edukalt loodud', - 'updated_client': 'Kliendi värskendamine õnnestus', - 'archived_client': 'Kliendi arhiivimine õnnestus', - 'archived_clients': ':kogus klienti on edukalt arhiveeritud', - 'deleted_client': 'Kliendi kustutamine õnnestus', - 'deleted_clients': ':kogus klienti on edukalt kustutatud', - 'restored_client': 'Kliendi taastamine õnnestus', - 'restored_clients': ':value klienti edukalt taastatud', - 'address1': 'Tänav', - 'address2': 'Maja/Korter', - 'city': 'Linn', - 'state': 'Maakond', - 'postal_code': 'Sihtnumber', - 'country': 'Riik', - 'invoice': 'Arve', - 'invoices': 'Arved', - 'new_invoice': 'Uus Arve', - 'created_invoice': 'Arve edukalt loodud', - 'updated_invoice': 'Arve edukalt uuendatud', - 'archived_invoice': 'Arve edukalt arhiveeritud', - 'deleted_invoice': 'Arve edukalt kustutatud', - 'restored_invoice': 'Arve edukalt taastatud', - 'archived_invoices': ':count arvet edukalt arhiveeritud', - 'deleted_invoices': ':count arvet edukalt kustutatud', - 'restored_invoices': ':value arvet edukalt taastatud', - 'emailed_invoice': 'Arve edukalt saadetud', - 'emailed_payment': 'Successfully emailed payment', - 'amount': 'Summa', - 'invoice_number': 'Arve Number', - 'invoice_date': 'Arve Kuupäev', - 'discount': 'Allahindlus', - 'po_number': 'PO Number', - 'terms': 'Tingimused', - 'public_notes': 'Avalikud Märkmed', - 'private_notes': 'Privaat Märkmed', - 'frequency': 'Sagedus', - 'start_date': 'Alguskuupäev', - 'end_date': 'Lõppkuupäev', - 'quote_number': 'Pakkumuse Number', - 'quote_date': 'Pakkumuse Kuupäev', - 'valid_until': 'Kehtib Kuni', - 'items': 'Üksused', - 'partial_deposit': 'Osaline/tagatis', - 'description': 'Kirjeldus', - 'unit_cost': 'Ühiku Hind', - 'quantity': 'Kogus', - 'add_item': 'Lisa üksus', - 'contact': 'Kontakt', - 'work_phone': 'Telefon', - 'total_amount': 'Kogu summa', - 'pdf': 'PDF', - 'due_date': 'Maksetähtaeg', - 'partial_due_date': 'Partial Due Date', - 'status': 'Staatus', - 'invoice_status_id': 'Arve staatus', - 'quote_status': 'Pakkumise olek', - 'click_plus_to_add_item': 'Üksuse lisamiseks klõpsake +', - 'click_plus_to_add_time': 'Aja lisamiseks klõpsake +', - 'count_selected': ':count selected', - 'total': 'Kokku', - 'percent': 'Protsent', - 'edit': 'Muuda', - 'dismiss': 'Dismiss', - 'please_select_a_date': 'Palun valige kuupäev', - 'please_select_a_client': 'Palun valige klient', - 'please_select_an_invoice': 'Palun valige arve', - 'task_rate': 'Ülesande Määr', - 'settings': 'Seaded', - 'language': 'Keel', - 'currency': 'Valuuta', - 'created_at': 'Loomise kuupäev', - 'created_on': 'Loodud', - 'updated_at': 'Uuendatud', - 'tax': 'Maks', - 'please_enter_an_invoice_number': 'Palun sisestage arve number', - 'please_enter_a_quote_number': 'Palun sisestage hinnapakkumise number', - 'past_due': 'Üle Tähtaja', - 'draft': 'Mustand', - 'sent': 'Saadetud', - 'viewed': 'Vaadatud', - 'approved': 'Kinnitatud', - 'partial': 'Osaline/tagatisraha', - 'paid': 'Makstud', - 'mark_sent': 'Märgi saadetuks', - 'marked_invoice_as_sent': 'Arve märgiti edukalt saadetuks', - 'marked_invoice_as_paid': 'Arve märgiti saadetuks', - 'marked_invoices_as_sent': 'Arved märgiti saadetuks', - 'marked_invoices_as_paid': 'Arved märgiti saadetuks', - 'done': 'Valmis', - 'please_enter_a_client_or_contact_name': - 'Sisestage kliendi või kontaktisiku nimi', - 'dark_mode': 'Tume Režiim', - 'restart_app_to_apply_change': - 'Muudatuse rakendamiseks taaskäivitage rakendus', - 'refresh_data': 'Värskenda andmeid', - 'blank_contact': 'Tühi kontakt', - 'activity': 'Tegevus', - 'no_records_found': 'Kirjeid ei leitud', - 'clone': 'Klooni', - 'loading': 'Laen', - 'industry': 'Tööstus', - 'size': 'Suurus', - 'payment_terms': 'Maksetingimused', - 'payment_date': 'Makse kuupäev', - 'payment_status': 'Makse staatus', - 'payment_status_1': 'Ootel', - 'payment_status_2': 'Tühistatud', - 'payment_status_3': 'Ebaõnnestunud', - 'payment_status_4': 'Lõpetatud', - 'payment_status_5': 'Osaliselt tagastatud', - 'payment_status_6': 'Tagastatud', - 'payment_status_-1': 'Rakendamata', - 'payment_status_-2': 'Partially Unapplied', - 'net': 'Net', - 'client_portal': 'Kliendi Portaal', - 'show_tasks': 'Näita ülesandeid', - 'email_reminders': 'Meili meeldetuletused', - 'enabled': 'Lubatud', - 'recipients': 'Saajad', - 'initial_email': 'Esmane E-kiri', - 'first_reminder': 'Esimene Meeldetuletus', - 'second_reminder': 'Teine Meeldetuletus', - 'third_reminder': 'Kolmas Meeldetuletus', - 'reminder1': 'Esimene meeldetuletus', - 'reminder2': 'Teine meeldetuletus', - 'reminder3': 'Kolmas meeldetuletus', - 'template': 'Mall', - 'send': 'Saada', - 'subject': 'Teema', - 'body': 'Sisu', - 'send_email': 'Saada E-kiri', - 'email_receipt': 'Saada kliendile maksekviitung', - 'auto_billing': 'Automaatne arveldamine', - 'button': 'Nupp', - 'preview': 'Eelvaade', - 'customize': 'Kohanda', - 'history': 'Ajalugu', - 'payment': 'Makse', - 'payments': 'Maksed', - 'refunded': 'Tagastatud', - 'payment_type': 'Makse tüüp', - 'transaction_reference': 'Tehingu Viide', - 'enter_payment': 'Sisesta Makse', - 'new_payment': 'Sisesta Makse', - 'created_payment': 'Makse loomine õnnestus', - 'updated_payment': 'Makse värskendamine õnnestus', - 'archived_payment': 'Makse arhiivimine õnnestus', - 'deleted_payment': 'Makse kustutamine õnnestus', - 'restored_payment': 'Makse taastamine õnnestus', - 'archived_payments': ':kogus makset on edukalt arhiveeritud', - 'deleted_payments': ':kogus makset on edukalt kustutatud', - 'restored_payments': ':value makset edukalt taastatud', - 'quote': 'Pakkumus', - 'quotes': 'Pakkumused', - 'new_quote': 'Uus Pakkumus', - 'created_quote': 'Hinnapakkumise loomine õnnestus', - 'updated_quote': 'Hinnapakkumine edukalt värskendatud', - 'archived_quote': 'Hinnapakkumine edukalt arhiivitud', - 'deleted_quote': 'Hinnapakkmuise kustutamine õnnestus', - 'restored_quote': 'Hinnapakkumise taastamine õnnestus', - 'archived_quotes': ':kogus hinnapakkumisi on edukalt arhiveeritud', - 'deleted_quotes': ':kogus hinnapakkumisi on edukalt kustutatud', - 'restored_quotes': ':value hinnapakkumist edukalt taastatud', - 'expense': 'Kulu', - 'expenses': 'Kulud', - 'vendor': 'Tarnija', - 'vendors': 'Tarnijad', - 'task': 'Ülesanne', - 'tasks': 'Ülesanded', - 'project': 'Projekt', - 'projects': 'Projektid', - 'activity_1': ':user lõi kliendi :client', - 'activity_2': ':user arhiveeris kliendi :client', - 'activity_3': ':user kustutas kliendi :client', - 'activity_4': ':user lõi arve :invoice', - 'activity_5': ':user uuendas arvet :invoice', - 'activity_6': - ':kasutaja saatis arve :arve e-postiga :kliendile :kontaktile', - 'activity_7': ':kontakt on vaadatud arvet :arve :klient', - 'activity_8': ':user arhiveeris arve :invoice', - 'activity_9': ':user kustutas arve :invoice', - 'activity_10': - ':contact entered payment :payment for :payment_amount on invoice :invoice for :client', - 'activity_11': ':kasutaja uuendas makset :makse', - 'activity_12': ':kasutaja arhiveeris makse :makse', - 'activity_13': ':kasutaja kustutas makse :makse', - 'activity_14': ':kasutaja sisestas :ettemakse', - 'activity_15': ':kasutaja värskendas :ettemakse ettemakset', - 'activity_16': ':kasutaja arhiveeris :ettemakse ettemakse', - 'activity_17': ':kasutaja kustutas :ettemakse ettemakse', - 'activity_18': ':kasutaja lõi hinnapkkumise :hinnapakkumine', - 'activity_19': ':kasutaja uuendas hinnapakkumist :hinnapakkumine', - 'activity_20': - ':kasutaja saatis meiliga hinnapakkumise :hinnapakkumine :kliendile :kontaktile', - 'activity_21': ':kontakt vaatas hinnapakkumist :hinnapakkumine', - 'activity_22': ':kasutaja arhiveeris hinnapakkumise :hinnapakkumine', - 'activity_23': ':kasutaja kustutas hinnapakkumise :hinnapakkumine', - 'activity_24': ':kasutaja taastas hinnapakkumise :hinnapakkumine', - 'activity_25': ':kasutaja taastas arve :arve', - 'activity_26': ':kasutaja taastas kliendi :klient', - 'activity_27': ':kasutaja taastas makse :makse', - 'activity_28': ':kasutaja taastas ettemakse :ettemakse', - 'activity_29': - ':kontakt kinnitas hinnapakkumise :hinnapkkumine :kliendile', - 'activity_30': ':kasutaja lõi tarnija :tarnija', - 'activity_31': ':kasutaja arhiveeris tarnija :tarnija', - 'activity_32': ':kasutaja kustutas tarnija :tarnija', - 'activity_33': ':kasutaja taastas tarnija :tarnija', - 'activity_34': ':kasutaja lõi kulu :kulu', - 'activity_35': ':kasutaja arhiveeris kulu :kulu', - 'activity_36': ':kasutaja kustutas kulu :kulu', - 'activity_37': ':kasutaja taastas kulu :kulu', - 'activity_39': ':kasutaja tühistas :makse_summa makse :makse', - 'activity_40': - ':user refunded :adjustment of a :payment_amount payment :payment', - 'activity_41': ':makse_summa makse (:makse) ebaõnnestus', - 'activity_42': ':user lõi ülesande :task', - 'activity_43': ':user uuendas ülesannet :task', - 'activity_44': ':user arhiveeris ülesande :task', - 'activity_45': ':user kustutas ülesande :task', - 'activity_46': ':user taastas ülesande :task', - 'activity_47': ':kasutaja uuendas kulu :kulu', - 'activity_48': ':kasutaja uuendas piletit :pilet', - 'activity_49': ':kasutaja sulges pileti :pilet', - 'activity_50': ':kasutaja ühendas pileti :pilet', - 'activity_51': ':kasutaja jagas pileti :pilet', - 'activity_52': ':kontakt avas pileti :pilet', - 'activity_53': ':kontakt taasavas pileti :pilet', - 'activity_54': ':kasutaja taasavas pileti :pilet', - 'activity_55': ':contact vastas piletile :pilet', - 'activity_56': ':kasutaja vaatas piletit :pilet', - 'activity_57': 'Süsteem ei suutnud arvet :arve meiliga saata', - 'activity_58': ':kasutaja tühistas arve :arve', - 'activity_59': ':kasutaja tühistas arve :arve', - 'activity_60': ':kontakt vaatas hinnapakkumist :hinnapakkumine', - 'activity_61': ':kasutaja uuendas klienti :klient', - 'activity_62': ':kasutaja uuendas tarnijat :tarnija', - 'activity_63': - ':kasutaja saatis e-kirjaga esimese meeldetuletuse arve kohta :arve aadressile :kontakt', - 'activity_64': - ':kasutaja saatis e-kirjaga teise meeldetuletuse arve kohta :arve aadressile :kontakt', - 'activity_65': - ':kasutaja saatis e-kirjaga kolmanda meeldetuletuse arve kohta :arve aadressile :kontakt', - 'activity_66': - ':user emailed endless reminder for invoice :invoice to :contact', - 'activity_80': ':user created subscription :subscription', - 'activity_81': ':user updated subscription :subscription', - 'activity_82': ':user archived subscription :subscription', - 'activity_83': ':user deleted subscription :subscription', - 'activity_84': ':user restored subscription :subscription', - 'one_time_password': 'Ühekordne parool', - 'emailed_quote': 'Hinnapakkumise saatmine õnnestus', - 'emailed_credit': 'Ettemaks saadeti meili teel', - 'marked_quote_as_sent': 'Hinnapakkumine märgiti saadetuks', - 'marked_credit_as_sent': 'Ettemaks märgiti edukalt saadetuks', - 'expired': 'Kehtetu', - 'all': 'Kõik', - 'select': 'Vali', - 'long_press_multiselect': 'Long-press Multiselect', - 'custom_value1': 'Kohandatud Väärtus', - 'custom_value2': 'Kohandatud Väärtus', - 'custom_value3': 'Kohandatud väärtus 3', - 'custom_value4': 'Kohandatud väärtus 4', - 'email_style_custom': 'Kohandatud e-posti stiil', - 'custom_message_dashboard': 'Custom Dashboard Message', - 'custom_message_unpaid_invoice': 'Kohandatud tasumata arve teade', - 'custom_message_paid_invoice': 'Kohandatud tasutud arve teade', - 'custom_message_unapproved_quote': - 'Kohandatud kinnitamata hinnapakkumise teade', - 'lock_invoices': 'Lock Invoices', - 'translations': 'Tõlked', - 'task_number_pattern': 'Ülesande numbri muster', - 'task_number_counter': 'Ülesande numbri loendur', - 'expense_number_pattern': 'Kulude numbri muster', - 'expense_number_counter': 'Kulude numbri loendur', - 'vendor_number_pattern': 'Tarnija numbri muster', - 'vendor_number_counter': 'Tarnija numbri loendur', - 'ticket_number_pattern': 'Pileti numbri muster', - 'ticket_number_counter': 'Pileti numbri loendur', - 'payment_number_pattern': 'Makse numbri muster', - 'payment_number_counter': 'Makse numbri loendur', - 'invoice_number_pattern': 'Arve numbri muster', - 'invoice_number_counter': 'Arve Numbri Loendur', - 'quote_number_pattern': 'Hinnapakkumise numbri muster', - 'quote_number_counter': 'Hinnapakkumise numbriloendur', - 'client_number_pattern': 'Ettemaksu numbri muster', - 'client_number_counter': 'Ettemaksu numbri loendur', - 'credit_number_pattern': 'Ettemaksu numbri muster', - 'credit_number_counter': 'Ettemaksu numbri loendur', - 'reset_counter_date': 'Reset Counter Date', - 'counter_padding': 'Counter Padding', - 'shared_invoice_quote_counter': 'Shared Invoice Quote Counter', - 'default_tax_name_1': 'Vaikimisi maksunimi 1', - 'default_tax_rate_1': 'Vaikimisi maksumäär 1', - 'default_tax_name_2': 'Vaikimisi maksunimi 2', - 'default_tax_rate_2': 'Vaikimisi maksumäär 2', - 'default_tax_name_3': 'Vaikimisi maksunimi 3', - 'default_tax_rate_3': 'Vaikimisi maksumäär 3', - 'email_subject_invoice': 'Email Invoice Subject', - 'email_subject_quote': 'Email Quote Subject', + 'converted': 'Muunnettu', + 'add_documents_to_invoice': 'Lisää asiakirjoja laskuun', + 'exchange_rate': 'Exchange Rate', + 'convert_currency': 'Muunna valuutta', + 'mark_paid': 'Merkitse maksetuksi', + 'category': 'Kategoria', + 'address': 'Osoite', + 'new_vendor': 'Uusi kauppias', + 'created_vendor': 'Kauppias luotin onnistuneesti', + 'updated_vendor': 'Kauppias on päivitetty onnistuneesti', + 'archived_vendor': 'Kauppias on arkistoitu onnistuneesti', + 'deleted_vendor': 'Kauppias on poistettu onnistuneesti', + 'restored_vendor': 'Onnistuneesti palautettu kauppias', + 'archived_vendors': ':count kauppias(ta) arkistoitu onnistuneesti', + 'deleted_vendors': ':count kauppias(ta) poistettu onnistuneesti', + 'restored_vendors': 'Successfully restored :value vendors', + 'new_expense': 'Lisää kulu', + 'created_expense': 'onnistuneesti luotu kulu', + 'updated_expense': 'onnistuneesti päivitetty kulu', + 'archived_expense': 'Kulu arkistoitu onnistuneesti', + 'deleted_expense': 'Kulu poistettu onnistuneesti', + 'restored_expense': 'onnistuneesti palautettu kulu', + 'archived_expenses': 'onnistuneesti arkistoitu kulut', + 'deleted_expenses': 'onnistuneesti poistettu kulut', + 'restored_expenses': 'Successfully restored :value expenses', + 'copy_shipping': 'Kopioi toimitus', + 'copy_billing': 'Kopioi laskutus', + 'design': 'malli', + 'failed_to_find_record': 'Failed find record', + 'invoiced': 'Laskutettu', + 'logged': 'Kirjattu', + 'running': 'Käynnissä', + 'resume': 'Jatka', + 'task_errors': 'Ole hyvä ja korjaa päällekäiset ajat', + 'start': 'Aloitus', + 'stop': 'Lopetus', + 'started_task': 'Onnistuneesti aloitettu tehtävä', + 'stopped_task': 'Tehtävä lopetettu onnistuneesti', + 'resumed_task': 'Onnistuneesti jatkettu tehtävää', + 'now': 'Nyt', + 'auto_start_tasks': 'Automaattinen tehtävien aloitus', + 'timer': 'Ajastin', + 'manual': 'Manuaalinen', + 'budgeted': 'Budjetoitu', + 'start_time': 'Aloitusaika', + 'end_time': 'Lopetusaika', + 'date': 'Päivämäärä', + 'times': 'Ajat', + 'duration': 'Kesto', + 'new_task': 'Uusi tehtävä', + 'created_task': 'Tehtävä luotu onnistuneesti', + 'updated_task': 'Tehtävä päivitetty onnistuneesti', + 'archived_task': 'Tehtävä arkistoitu onnistuneesti', + 'deleted_task': 'Tehtävä poistettu onnistuneesti', + 'restored_task': 'Tehtävä palautettu onnistuneesti', + 'archived_tasks': ':count tehtävää arkistoitu onnistuneesti', + 'deleted_tasks': ':count tehtävää poistettu onnistuneesti', + 'restored_tasks': 'Successfully restored :value tasks', + 'please_enter_a_name': 'Ole hyvä ja anna nimi', + 'budgeted_hours': 'Budjetoidut työtunnit', + 'created_project': 'Onnistuneesti luotu projekti', + 'updated_project': 'Onnistuneesti päivitetty projekti', + 'archived_project': 'Onnistuneesti arkistoitu projekti', + 'deleted_project': 'Projekti poistettu onnistuneesti', + 'restored_project': 'Onnistuneesti palautettu projekti', + 'archived_projects': 'Onnistuneesti arkistoitu :count projekti(a)', + 'deleted_projects': 'Onnistuneesti poistettu :count projekti(a)', + 'restored_projects': 'Successfully restored :value projects', + 'new_project': 'Uusi projekti', + 'thank_you_for_using_our_app': 'kiitos you using our app!', + 'if_you_like_it': 'If you like it please', + 'click_here': 'klikkaa tästä', + 'click_here_capital': 'Klikkaa tästä', + 'to_rate_it': 'rate it.', + 'average': 'Keskiarvo', + 'unapproved': 'Hyväksymättömät', + 'authenticate_to_change_setting': 'authenticate change this asetus', + 'locked': 'Locked', + 'authenticate': 'Authenticate', + 'please_authenticate': 'authenticate', + 'biometric_authentication': 'Biometric Authentication', + 'footer': 'Alatunniste', + 'compare': 'Compare', + 'hosted_login': 'Hosted Login', + 'selfhost_login': 'Selfhost Login', + 'google_sign_in': 'Sign in with Google', + 'today': 'tänään', + 'custom_range': 'muokattu Range', + 'date_range': 'Päivämääräväli', + 'current': 'nykyinen', + 'previous': 'Previous', + 'current_period': 'nykyinen kausi', + 'comparison_period': 'Comparison kausi', + 'previous_period': 'Previous kausi', + 'previous_year': 'Previous Year', + 'compare_to': 'Compare', + 'last7_days': 'viime 7 päivää', + 'last_week': 'viime viikko', + 'last30_days': 'viime 30 päivää', + 'this_month': 'tämä kuukausi', + 'last_month': 'viime kuukausi', + 'this_year': 'tämä Year', + 'last_year': 'viime Year', + 'custom': 'Mukautettu', + 'clone_to_invoice': 'kloonaa Lasku', + 'clone_to_quote': 'Kopioi tarjous', + 'clone_to_credit': 'Clone to Credit', + 'view_invoice': 'Katso lasku', + 'convert': 'Convert', + 'more': 'Lisää', + 'edit_client': 'Muokkaa asiakas', + 'edit_product': 'Muokkaa tuote', + 'edit_invoice': 'Muokkaa laskua', + 'edit_quote': 'Muokkaa tarjousta', + 'edit_payment': 'Muokkaa maksua', + 'edit_task': 'Muokkaa tehtävä', + 'edit_expense': 'muokkaa kulu', + 'edit_vendor': 'Muokkaa kauppiasta', + 'edit_project': 'Muokkaa projektia', + 'edit_recurring_quote': 'Muokkaa toistuvaa tarjousta', + 'billing_address': 'Laskutusosoite', + 'shipping_address': 'Toimitusosoite', + 'total_revenue': 'Kokonaistulot', + 'average_invoice': 'Laskujen keskiarvo', + 'outstanding': 'Maksamattomat laskut', + 'invoices_sent': ':count laskua lähetetty', + 'active_clients': 'Aktiiviset asiakkaat', + 'close': 'Sulje', + 'email': 'Sähköposti', + 'password': 'Salasana', + 'url': 'URL', + 'secret': 'Secret', + 'name': 'Nimi', + 'logout': 'Kirjaudu ulos', + 'login': 'Kirjaudu sisään', + 'filter': 'Suodata', + 'sort': 'Sort', + 'search': 'Etsi', + 'active': 'Aktiivinen', + 'archived': 'Arkistoitu', + 'deleted': 'Poistettu', + 'dashboard': 'Hallintapaneeli', + 'archive': 'Arkisto', + 'delete': 'Poista', + 'restore': 'Palauta', + 'refresh_complete': 'Refresh Complete', + 'please_enter_your_email': 'Anna sähköpostiosoitteesi', + 'please_enter_your_password': 'Anna salasanasi', + 'please_enter_your_url': 'Anna sinun URL-osoitteesi', + 'please_enter_a_product_key': 'Anna tuoteavain', + 'ascending': 'Ascending', + 'descending': 'Descending', + 'save': 'Tallenna', + 'an_error_occurred': 'virhe occurred', + 'paid_to_date': 'Maksettu tähän mennessä', + 'balance_due': 'Avoin lasku', + 'balance': 'Saldo', + 'overview': 'Yleiskatsaus', + 'details': 'Tiedot', + 'phone': 'Puhelin', + 'website': 'Kotisivu', + 'vat_number': 'ALV-numero', + 'id_number': 'Asiakasnumero', + 'create': 'Luo', + 'copied_to_clipboard': 'Copied :arvo clipboard', + 'error': 'Virhe', + 'could_not_launch': 'Could not launch', + 'contacts': 'Yhteystiedot', + 'additional': 'Lisäksi', + 'first_name': 'Etunimi', + 'last_name': 'Sukunimi', + 'add_contact': 'Lisää yhteystieto', + 'are_you_sure': 'Oletko varma?', + 'cancel': 'Peruuta', + 'ok': 'Ok', + 'remove': 'Remove', + 'email_is_invalid': 'Email is invalid', + 'product': 'Tuote', + 'products': 'Tuotteet', + 'new_product': 'Uusi tuote', + 'created_product': 'Tuote on luotu onnistuneesti', + 'updated_product': 'Tuote on päivitetty onnistuneesti', + 'archived_product': 'Tuote on arkistoitu onnistuneesti', + 'deleted_product': 'onnistuneesti poistettu tuote', + 'restored_product': 'onnistuneesti palautettu tuote', + 'archived_products': 'onnistuneesti arkistoitu :count tuotteet', + 'deleted_products': 'onnistuneesti poistettu :count tuotteet', + 'restored_products': 'Successfully restored :value products', + 'product_key': 'Tuote', + 'notes': 'Viestit', + 'cost': 'Hinta', + 'client': 'Asiakas', + 'clients': 'Asiakkaat', + 'new_client': 'Uusi asiakas', + 'created_client': 'Luotin onnistuneesti asiakas', + 'updated_client': 'Asiakas on päivitetty onnistuneesti', + 'archived_client': 'Asiakas on arkistoitu onnistuneesti', + 'archived_clients': ':count asiakas(ta) arkistoitu onnistuneesti', + 'deleted_client': 'Asiakas on poistettu onnistuneesti', + 'deleted_clients': ':count asiakas(ta) poistettu onnistuneesti', + 'restored_client': 'Asiakas palautettu onnistuneesti', + 'restored_clients': 'Successfully restored :value clients', + 'address1': 'Katu', + 'address2': 'Asunto', + 'city': 'Kaupunki', + 'state': 'Lääni', + 'postal_code': 'Postinumero', + 'country': 'Maa', + 'invoice': 'Lasku', + 'invoices': 'Laskut', + 'new_invoice': 'Uusi lasku', + 'created_invoice': 'Lasku luotiin onnistuneesti', + 'updated_invoice': 'Lasku päivitettiin onnistuneesti', + 'archived_invoice': 'Lasku arkistoitiin onnistuneesti', + 'deleted_invoice': 'Lasku poistettiin onnistuneesti', + 'restored_invoice': 'Lasku palautettu onnistuneesti', + 'archived_invoices': ':count asiakas(ta) arkistoitu onnistuneesti', + 'deleted_invoices': ':count laskua poistettiin onnistuneesti', + 'restored_invoices': 'Successfully restored :value invoices', + 'emailed_invoice': 'Lasku lähetettiin onnistuneesti', + 'emailed_payment': 'onnistuneesti emailed maksu', + 'amount': 'Määrä', + 'invoice_number': 'Laskun numero', + 'invoice_date': 'Laskun päivämäärä', + 'discount': 'Alennus', + 'po_number': 'Tilaus numero', + 'terms': 'Ehdot', + 'public_notes': 'Julkiset muistiinpanot', + 'private_notes': 'Yksityiset muistiinpanot', + 'frequency': 'Kuinka usein', + 'start_date': 'Alkamispäivämäärä', + 'end_date': 'Loppupäivämäärä', + 'quote_number': 'Tarjous numero', + 'quote_date': 'Tarjouksen päivämäärä', + 'valid_until': 'Voimassa', + 'items': 'Items', + 'partial_deposit': 'Partial/Deposit', + 'description': 'Kuvaus', + 'unit_cost': 'Kappalehinta', + 'quantity': 'Määrä', + 'add_item': 'Lisää nimike', + 'contact': 'Yhteyshenkilö', + 'work_phone': 'Puhelin', + 'total_amount': 'yhteensä määrä', + 'pdf': 'PDF', + 'due_date': 'Eräpäivä', + 'partial_due_date': 'Partial eräpäivä', + 'status': 'Tila', + 'invoice_status_id': 'Lasku tila', + 'quote_status': 'Tarjouksen tila', + 'click_plus_to_add_item': 'Napsauta + lisätäksesi nimikkeen', + 'click_plus_to_add_time': 'Napsauta + lisätäksesi ajan', + 'count_selected': ':count selected', + 'total': 'Loppusumma', + 'percent': 'Prosentti', + 'edit': 'Muokkaa', + 'dismiss': 'Dismiss', + 'please_select_a_date': 'valitse päivämäärä', + 'please_select_a_client': 'valitse asiakas', + 'please_select_an_invoice': 'valitse lasku', + 'task_rate': 'Tehtävän luokitus', + 'settings': 'Asetukset', + 'language': 'Kieli', + 'currency': 'Valuutta', + 'created_at': 'Luotu', + 'created_on': 'Created On', + 'updated_at': 'päivitetty', + 'tax': 'Vero', + 'please_enter_an_invoice_number': 'Ayötä laskunumero', + 'please_enter_a_quote_number': 'Ole hyvä ja anna tarjouksen numero', + 'past_due': 'Past Due', + 'draft': 'Luonnos', + 'sent': 'Lähetetty', + 'viewed': 'Nähty', + 'approved': 'Hyväksytty', + 'partial': 'Osittainen/Talletus', + 'paid': 'Maksettu', + 'mark_sent': 'Merkitse lähetetyksi', + 'marked_invoice_as_sent': 'Onnistuneesti merkitty lasku lähetetyksi', + 'marked_invoice_as_paid': 'Lasku merkittiin lähetetyksi onnistuneesti', + 'marked_invoices_as_sent': 'Laskut merkittiin lähetetyksi onnistuneesti', + 'marked_invoices_as_paid': 'Laskut merkittiin lähetetyksi onnistuneesti', + 'done': 'Valmis', + 'please_enter_a_client_or_contact_name': + 'Anna asiakkaan tai yhteyshenkilön nimi', + 'dark_mode': 'Tumma tila', + 'restart_app_to_apply_change': + 'Uudelleenkäynnistä sovellus ottaaksesi muutoksen käyttöön', + 'refresh_data': 'Refresh Data', + 'blank_contact': 'Blank kontakti', + 'activity': 'Toiminta', + 'no_records_found': 'ei records found', + 'clone': 'Kopioi', + 'loading': 'Loading', + 'industry': 'Toimiala', + 'size': 'Koko', + 'payment_terms': 'Maksuehdot', + 'payment_date': 'Maksun päivämäärä', + 'payment_status': 'maksu tila', + 'payment_status_1': 'Pending', + 'payment_status_2': 'Voided', + 'payment_status_3': 'Failed', + 'payment_status_4': 'Completed', + 'payment_status_5': 'Partially Refunded', + 'payment_status_6': 'Refunded', + 'payment_status_-1': 'Unapplied', + 'payment_status_-2': 'Partially Unapplied', + 'net': 'Net', + 'client_portal': 'Asiakasportaali', + 'show_tasks': 'Näytä tehtävät', + 'email_reminders': 'Email muistutukset', + 'enabled': 'Enabled', + 'recipients': 'Recipients', + 'initial_email': 'Initial Email', + 'first_reminder': 'Ensimmäinen muistutus', + 'second_reminder': 'Toinen muistutus', + 'third_reminder': 'Kolmas muistutus', + 'reminder1': 'ensimmäinen muistutus', + 'reminder2': 'toinen muistutus', + 'reminder3': 'Third muistutus', + 'template': 'Malli', + 'send': 'lähetä', + 'subject': 'Otsikko', + 'body': 'Sisältö', + 'send_email': 'Lähetä sähköposti', + 'email_receipt': 'Lähetä maksukuitti sähköpostilla asiakkaalle', + 'auto_billing': 'Automaattinen laskutus', + 'button': 'Button', + 'preview': 'Esikatselu', + 'customize': 'Mukauta', + 'history': 'Historia', + 'payment': 'Maksu', + 'payments': 'Maksut', + 'refunded': 'Refunded', + 'payment_type': 'Maksutyyppi', + 'transaction_reference': 'Tapahtuman viite', + 'enter_payment': 'Kirjaa maksu', + 'new_payment': 'Uusi maksutapahtuma', + 'created_payment': 'Maksu on luotu onnistuneesti', + 'updated_payment': 'Maksu päivitetty onnistuneesti', + 'archived_payment': 'Maksu on arkistoitu onnistuneesti', + 'deleted_payment': 'Maksu on poistettu onnistuneesti', + 'restored_payment': 'Maksu palautettu onnistuneesti', + 'archived_payments': ':count maksu(a) arkistoitu onnistuneesti', + 'deleted_payments': ':count maksu(a) poistettu onnistuneesti', + 'restored_payments': 'Successfully restored :value payments', + 'quote': 'Tarjous', + 'quotes': 'Tarjoukset', + 'new_quote': 'Uusi tarjous', + 'created_quote': 'Tarjous on luotu onnistuneesti', + 'updated_quote': 'Tarjous on päivitetty onnistuneesti', + 'archived_quote': 'Tarjous on arkistoitu onnistuneesti', + 'deleted_quote': 'Tarjous on poistettu onnistuneesti', + 'restored_quote': 'Tarjous palautettu onnistuneesti', + 'archived_quotes': ':count tarjous(ta) arkistoitu onnistuneesti', + 'deleted_quotes': ':count tarjous(ta) poistettu onnistuneesti', + 'restored_quotes': 'Successfully restored :value quotes', + 'expense': 'Kulu', + 'expenses': 'Kulut', + 'vendor': 'Kauppias', + 'vendors': 'Kauppiaat', + 'task': 'Tehtävä', + 'tasks': 'Tehtävät', + 'project': 'Projekti', + 'projects': 'Projektit', + 'activity_1': ':käyttäjä loi asiakkaan :client', + 'activity_2': ':käyttäjä arkistoi asiakkaan :client', + 'activity_3': ':käyttäjä poisti asiakkaan :client', + 'activity_4': ':käyttäjä loi laskun :invoice', + 'activity_5': ':käyttäjä päivitti laskun :invoice', + 'activity_6': ':käyttäjä emailed lasku :lasku for :asiakas :kontakti', + 'activity_7': ':kontakti katsoi lasku :lasku for :asiakas', + 'activity_8': ':käyttäjä arkistoi laskun :invoice', + 'activity_9': ':käyttäjä poisti laskun :invoice', + 'activity_10': + ':kontakti entered maksu :maksu for :payment_amount on lasku :lasku for :asiakas', + 'activity_11': ':käyttäjä päivitti maksun :maksu', + 'activity_12': ':käyttäjä arkistoi maksun :maksu', + 'activity_13': ':käyttäjä poisti maksun :maksu', + 'activity_14': ':käyttäjä syötti :luotto hyvityksen', + 'activity_15': ':käyttäjä päivitti :luotto hyvityksen', + 'activity_16': ':käyttäjä arkistoi :luotto hyvityksen', + 'activity_17': ':käyttäjä poisti :luotto hyvityksen', + 'activity_18': ':user loi tarjouksen :quote', + 'activity_19': ':user päivitti tarjouksen :quote', + 'activity_20': + ':user lähetti sähköpostitse tarjouksen :quote asiakkaan :client yhteyshenkilölle :contact', + 'activity_21': ':contact luki tarjouksen :quote', + 'activity_22': ':user arkistoi tarjouksen :quote', + 'activity_23': ':user poisti tarjouksen :quote', + 'activity_24': ':user palautti tarjouksen :quote', + 'activity_25': ':käyttäjä palautti laskun :invoice', + 'activity_26': ':käyttäjä palautti asiakkaan :client', + 'activity_27': ':käyttäjä palautti maksun :maksu', + 'activity_28': ':käyttäjä palautti hyvityksen :luotto', + 'activity_29': ':contact hyväksyi tarjouksen :quote asiakkaalle :client', + 'activity_30': ':käyttäjä loi kauppiaan :vendor', + 'activity_31': ':käyttäjä arkistoi kauppiaan :vendor', + 'activity_32': ':käyttäjä poisti kauppiaan :vendor', + 'activity_33': ':käyttäjä palautti kauppiaan :vendor', + 'activity_34': ':käyttäjä loi kulun :kulu', + 'activity_35': ':käyttäjä arkistoi kulun :kulu', + 'activity_36': ':käyttäjä poisti kulun :kulu', + 'activity_37': ':käyttäjä palautti kulun :kulu', + 'activity_39': ':käyttäjä perui :payment_amount maksun :maksu', + 'activity_40': + ':käyttäjä refunded :adjustment a :payment_amount maksu :maksu', + 'activity_41': ':payment_amount maksu (:maksu) failed', + 'activity_42': ':käyttäjä loi tehtävän :tehtävä', + 'activity_43': ':käyttäjä päivitti tehtävän :tehtävä', + 'activity_44': ':käyttäjä arkistoi tehtävän :tehtävä', + 'activity_45': ':käyttäjä poisti tehtävän :tehtävä', + 'activity_46': ':käyttäjä palautti tehtävän :tehtävä', + 'activity_47': ':käyttäjä päivitti kulun :kulu', + 'activity_48': ':käyttäjä päivitti tehtävän :tiketti', + 'activity_49': ':käyttäjä sulki tiketin :tiketti', + 'activity_50': ':käyttäjä mergesi tiketin :tiketti', + 'activity_51': ':käyttäjä jakoi tiketin :tiketti', + 'activity_52': ':kontakti avasi tiketin :tiketti', + 'activity_53': ':kontakti reopened tiketti :tiketti', + 'activity_54': ':käyttäjä reopened tiketti :tiketti', + 'activity_55': ':kontakti vastasi tiketti :tiketti', + 'activity_56': ':käyttäjä katsoi tiketti :tiketti', + 'activity_57': 'System failed to email invoice :invoice', + 'activity_58': ':user reversed invoice :invoice', + 'activity_59': ':user cancelled invoice :invoice', + 'activity_60': ':contact viewed quote :quote', + 'activity_61': ':user updated client :client', + 'activity_62': ':user updated vendor :vendor', + 'activity_63': + ':user emailed first reminder for invoice :invoice to :contact', + 'activity_64': + ':user emailed second reminder for invoice :invoice to :contact', + 'activity_65': + ':user emailed third reminder for invoice :invoice to :contact', + 'activity_66': + ':user emailed endless reminder for invoice :invoice to :contact', + 'activity_80': ':user created subscription :subscription', + 'activity_81': ':user updated subscription :subscription', + 'activity_82': ':user archived subscription :subscription', + 'activity_83': ':user deleted subscription :subscription', + 'activity_84': ':user restored subscription :subscription', + 'one_time_password': 'Kertakäyttöinen salasana', + 'emailed_quote': 'Tarjous on lähetetty onnistuneesti', + 'emailed_credit': 'Successfully emailed credit', + 'marked_quote_as_sent': 'Tarjous on onnistuneesti merkitty lähetetyksi', + 'marked_credit_as_sent': 'Successfully marked credit as sent', + 'expired': 'Vanhentunut', + 'all': 'Kaikki', + 'select': 'Valitse', + 'long_press_multiselect': 'Long-press Multiselect', + 'custom_value1': 'muokattu Value', + 'custom_value2': 'Mukautettu arvo', + 'custom_value3': 'Muokattu arvo 3', + 'custom_value4': 'Muokattu arvo 4', + 'email_style_custom': 'Muokattu email tyyli', + 'custom_message_dashboard': 'Muokattu Etusivu viesti', + 'custom_message_unpaid_invoice': 'Muokattu Avoin Lasku viesti', + 'custom_message_paid_invoice': 'Muokattu Maksettu Lasku viesti', + 'custom_message_unapproved_quote': 'Oma Hyväksymätön tarjous -viesti', + 'lock_invoices': 'Lock Invoices', + 'translations': 'Käännökset', + 'task_number_pattern': 'Task Number Pattern', + 'task_number_counter': 'Task Number Counter', + 'expense_number_pattern': 'Expense Number Pattern', + 'expense_number_counter': 'Expense Number Counter', + 'vendor_number_pattern': 'Vendor Number Pattern', + 'vendor_number_counter': 'Kauppiaan numerolaskuri', + 'ticket_number_pattern': 'Ticket Number Pattern', + 'ticket_number_counter': 'Ticket Number Counter', + 'payment_number_pattern': 'Payment Number Pattern', + 'payment_number_counter': 'Payment Number Counter', + 'invoice_number_pattern': 'Invoice Number Pattern', + 'invoice_number_counter': 'Laskun järjestysnumero', + 'quote_number_pattern': 'Tarjouksen numeroinnin kuvio', + 'quote_number_counter': 'Tarjouksen järjestysnumero', + 'client_number_pattern': 'Credit Number Pattern', + 'client_number_counter': 'Credit Number Counter', + 'credit_number_pattern': 'Credit Number Pattern', + 'credit_number_counter': 'Credit Number Counter', + 'reset_counter_date': 'Reset Counter Date', + 'counter_padding': 'Counter Padding', + 'shared_invoice_quote_counter': 'Jaettu lasku tarjous laskuri', + 'default_tax_name_1': 'Default Tax Name 1', + 'default_tax_rate_1': 'Default Tax Rate 1', + 'default_tax_name_2': 'Default Tax Name 2', + 'default_tax_rate_2': 'Default Tax Rate 2', + 'default_tax_name_3': 'Default Tax Name 3', + 'default_tax_rate_3': 'Default Tax Rate 3', + 'email_subject_invoice': 'Email Invoice Subject', + 'email_subject_quote': 'Tarjoussähköpostin otsikko', 'email_subject_payment': 'Email Payment Subject', 'email_subject_payment_partial': 'Email Partial Payment Subject', - 'show_table': 'Kuva tabel', - 'show_list': 'Näita loendit', - 'client_city': 'Kliendi linn', - 'client_state': 'Kliendi maakond', - 'client_country': 'Kliendi riik', - 'client_is_active': 'Klient on aktiivne', - 'client_balance': 'Kliendi saldo', - 'client_address1': 'Kliendi tänav', - 'client_address2': 'Kliendi korter/sviit', + 'show_table': 'Show Table', + 'show_list': 'Show List', + 'client_city': 'Client City', + 'client_state': 'Client State', + 'client_country': 'Client Country', + 'client_is_active': 'Client is Active', + 'client_balance': 'Client Balance', + 'client_address1': 'Client Street', + 'client_address2': 'Client Apt/Suite', 'vendor_address1': 'Vendor Street', 'vendor_address2': 'Vendor Apt/Suite', 'client_shipping_address1': 'Client Shipping Street', 'client_shipping_address2': 'Client Shipping Apt/Suite', - 'type': 'Tüüp', - 'invoice_amount': 'Arve summa', - 'invoice_due_date': 'Tähtaeg', - 'tax_rate1': 'Maksumäär 1', - 'tax_rate2': 'Maksumäär 2', - 'tax_rate3': 'Maksumäär 3', - 'auto_bill': 'Auto Bill', + 'type': 'Tyyppi', + 'invoice_amount': 'Lasku määrä', + 'invoice_due_date': 'Eräpäivä', + 'tax_rate1': 'Tax Rate 1', + 'tax_rate2': 'Tax Rate 2', + 'tax_rate3': 'Tax Rate 3', + 'auto_bill': 'Automaattinen laskutus', 'archived_at': 'Archived At', 'has_expenses': 'Has Expenses', - 'custom_taxes1': 'Kohandatud maksud 1', - 'custom_taxes2': 'Kohandatud maksud 2', - 'custom_taxes3': 'Kohandatud maksud 3', - 'custom_taxes4': 'Kohandatud maksud 4', - 'custom_surcharge1': 'Kohandatud lisatasu 1', - 'custom_surcharge2': 'Kohandatud lisatasu 2', - 'custom_surcharge3': 'Kohandatud lisatasu 3', - 'custom_surcharge4': 'Kohandatud lisatasu 4', - 'is_deleted': 'On kustutatud', - 'vendor_city': 'Tarnija linn', - 'vendor_state': 'Tarnija maakond', - 'vendor_country': 'Tarnija riik', - 'is_approved': 'On heaks kiidetud', - 'tax_name': 'Maksu Nimi', - 'tax_amount': 'Maksud kokku', - 'tax_paid': 'Makstud maksud', - 'payment_amount': 'Makse summa', - 'age': 'Vanus', - 'is_running': 'Is Running', - 'time_log': 'Time Log', - 'bank_id': 'Pank', - 'expense_category_id': 'Kulukategooria ID', - 'expense_category': 'Kulu kategooria', - 'invoice_currency_id': 'Arve valuuta ID', - 'tax_name1': 'Maksu nimi 1', - 'tax_name2': 'Maksu nimi 2', - 'tax_name3': 'Maksu nimi 3', - 'transaction_id': 'Tehingu ID', - 'status_color_theme': 'Oleku värviteema', - 'load_color_theme': 'Laadige värviteema', - }, - 'fi': { + 'custom_taxes1': 'Mukautettu Vero 1', + 'custom_taxes2': 'Mukautettu Vero 2', + 'custom_taxes3': 'Mukautettu Vero 3', + 'custom_taxes4': 'Mukautettu Vero 4', + 'custom_surcharge1': 'Mukautettu Lisämaksu 1', + 'custom_surcharge2': 'Mukautettu Lisämaksu 2', + 'custom_surcharge3': 'Mukautettu Lisämaksu 3', + 'custom_surcharge4': 'Mukautettu Lisämaksu 4', + 'is_deleted': 'On poistettu', + 'vendor_city': 'Kauppiaan kaupunki', + 'vendor_state': 'Kauppiaan alue', + 'vendor_country': 'Kauppiaan maa', + 'is_approved': 'On hyväksytty', + 'tax_name': 'veronimi', + 'tax_amount': 'vero määrä', + 'tax_paid': 'vero Paid', + 'payment_amount': 'Maksun määrä', + 'age': 'Age', + 'is_running': 'Is Running', + 'time_log': 'Aikaloki', + 'bank_id': 'Pankki', + 'expense_category_id': 'Expense Category ID', + 'expense_category': 'Kulujen kategoria', + 'invoice_currency_id': 'Invoice Currency ID', + 'tax_name1': 'Veron nimi 1', + 'tax_name2': 'Veron nimi 2', + 'tax_name3': 'Tax Name 3', + 'transaction_id': 'Transaction ID', + 'status_color_theme': 'Status Color Theme', + 'load_color_theme': 'Load Color Theme', + }, + 'fr': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'Le frais pour une facture de :amount serait de :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Accepter', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -19754,7 +19971,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'convert_to': 'Convert To', 'client_currency': 'Client Currency', 'company_currency': 'Company Currency', - 'purged_client': 'onnistuneesti purged asiakas', + 'purged_client': 'Client purgé avec succès', 'custom_emails_disabled_help': 'To prevent spam we require upgrading to a paid account to customize the email', 'upgrade_to_add_company': 'Upgrade your plan to add companies', @@ -19790,7 +20007,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'giropay': 'GiroPay', 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', - 'set_password': 'Aseta salasana', + 'set_password': 'Définir le mot de passe', 'recommend_desktop': 'We recommend using the desktop app for the best performance', 'recommend_mobile': @@ -19798,7 +20015,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', - 'acss': 'Esihyväksy debit korttimaksut', + 'acss': 'Pre-authorized debit payments', 'becs': 'BECS Direct Debit', 'bulk_download': 'Download', 'persist_data_help': @@ -19812,15 +20029,15 @@ mixin LocalizationsProvider on LocaleCodeAware { 'registration': 'Registration', 'unauthorized_stripe_warning': 'Please authorize Stripe to accept online payments.', - 'view_expense': 'Näytä kulu # :kulu', - 'view_statement': 'Näytä Tiliote', - 'sepa': 'SEPA-maksu', + 'view_expense': 'Voir la dépense # :expense', + 'view_statement': 'Voir le relevé', + 'sepa': 'Prélèvement automatique/domiciliation SEPA', 'ideal': 'iDEAL', 'przelewy24': 'Przelewy24', 'eps': 'EPS', 'fpx': 'FPX', 'update_all_records': 'Update all records', - 'system': 'Järjestelmä', + 'system': 'Système', 'set_default_company': 'Set Default Company', 'updated_company': 'Successfully updated company', 'kbc': 'KBC', @@ -19836,18 +20053,18 @@ mixin LocalizationsProvider on LocaleCodeAware { 'bulk_email_invoice': 'Email Invoice', 'bulk_email_quote': 'Email Quote', 'bulk_email_credit': 'Email Credit', - 'from_name': 'From nimi', - 'clone_to_expense': 'Kopioi kuluksi', - 'recurring_expense': 'toistuva kulu', - 'recurring_expenses': 'toistuva kulut', - 'new_recurring_expense': 'uusi toistuva kulu', - 'edit_recurring_expense': 'muokkaa toistuva kulu', - 'created_recurring_expense': 'onnistuneesti luotu toistuva kulu', - 'updated_recurring_expense': 'onnistuneesti päivitetty toistuva kulu', - 'archived_recurring_expense': 'onnistuneesti arkistoitu toistuva kulu', - 'deleted_recurring_expense': 'Projekti poistettu onnistuneesti', + 'from_name': 'Nom expéditeur', + 'clone_to_expense': 'Clone to expense', + 'recurring_expense': 'Dépense récurrente', + 'recurring_expenses': 'Dépenses récurrentes', + 'new_recurring_expense': 'Nouvelle dépense récurrente', + 'edit_recurring_expense': 'Éditer la dépense récurrente', + 'created_recurring_expense': 'Dépense récurrente créée avec succès', + 'updated_recurring_expense': 'Dépense récurrente mise à jour avec succès', + 'archived_recurring_expense': 'Dépense récurrente archivée avec succès', + 'deleted_recurring_expense': 'Projet supprimé avec succès', 'removed_recurring_expense': 'Successfully removed recurring expense', - 'restored_recurring_expense': 'onnistuneesti palautettu toistuva kulu', + 'restored_recurring_expense': 'Dépense récurrente restaurée avec succès', 'search_recurring_expense': 'Search Recurring Expense', 'search_recurring_expenses': 'Search Recurring Expenses', 'last_sent_date': 'Last Sent Date', @@ -19869,7 +20086,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'expense_tax_help': 'Item tax rates are disabled', 'enable_markdown': 'Enable Markdown', 'enable_markdown_help': 'Convert markdown to HTML on the PDF', - 'user_guide': 'User Guide', + 'user_guide': 'Guide de l\'utilisateur', 'add_second_contact': 'Add Second Contact', 'previous_page': 'Previous Page', 'next_page': 'Next Page', @@ -19887,7 +20104,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Table Alternate Row Background Color', 'invoice_header_background_color': 'Invoice Header Background Color', 'invoice_header_font_color': 'Invoice Header Font Color', - 'net_subtotal': 'Netto', + 'net_subtotal': 'Net', 'review_app': 'Review App', 'check_status': 'Check Status', 'free_trial': 'Free Trial', @@ -19903,7 +20120,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'subdomain_guide': 'The subdomain is used in the client portal to personalize links to match your brand. ie, https://your-brand.invoicing.co', 'send_time': 'Send Time', - 'import_data': 'Tuo tietoja', + 'import_data': 'Importer des données', 'import_settings': 'Import Settings', 'json_file_missing': 'Please provide the JSON file', 'json_option_missing': 'Please select to import the settings and/or data', @@ -19944,25 +20161,24 @@ mixin LocalizationsProvider on LocaleCodeAware { 'credit_created': 'Credit Created', 'pro': 'Pro', 'enterprise': 'Enterprise', - 'last_updated': 'viime päivitetty', + 'last_updated': 'Dernière mise à jour', 'invoice_item': 'Invoice Item', 'quote_item': 'Quote Item', - 'contact_first_name': 'kontakti ensimmäinen nimi', - 'contact_last_name': 'kontakti viime nimi', + 'contact_first_name': 'Prénom du contact', + 'contact_last_name': 'Nom du contact', 'order': 'Order', - 'unassigned': 'Kohdistamaton', - 'partial_value': - 'Täytyy olla suurempi kuin nolla ja vähemmän kuin kaikki yhteensä', + 'unassigned': 'Non assigné', + 'partial_value': 'Doit être supérieur à zéro et inférieur au total', 'search_kanban': 'Search Kanban', 'search_kanbans': 'Search Kanban', 'kanban': 'Kanban', - 'enable': 'Ota käyttöön', + 'enable': 'Activé(e)', 'move_top': 'Move Top', 'move_up': 'Move Up', 'move_down': 'Move Down', 'move_bottom': 'Move Bottom', 'subdomain_help': - 'Aseta alidomain tai näytä lasku omalla verkkosivullasi.', + 'Définissez un sous-domaine ou affichez la facture sur votre propre site web.', 'body_variable_missing': 'Error: the custom email must include a :body variable', 'add_body_variable_message': 'Make sure to include a :body variable', @@ -20000,7 +20216,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'refund_period': 'Refund Period', 'webhook_configuration': 'Webhook Configuration', 'purchase_page': 'Purchase Page', - 'security': 'Security', + 'security': 'Sécurité', 'email_bounced': 'Email Bounced', 'email_spam_complaint': 'Spam Complaint', 'email_delivery': 'Email Delivery', @@ -20011,12 +20227,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'pdf_success': 'PDF Success', 'modified': 'Modified', 'subscription': 'Subscription', - 'subscriptions': 'Subscriptions', + 'subscriptions': 'Abonnements', 'new_subscription': 'New Subscription', - 'edit_subscription': 'muokkaa tilaus', - 'created_subscription': 'onnistuneesti luotu tilaus', - 'updated_subscription': 'onnistuneesti päivitetty tilaus', - 'archived_subscription': 'onnistuneesti arkistoitu tilaus', + 'edit_subscription': 'Éditer l\'abonnement', + 'created_subscription': 'Abonnement créé avec succès', + 'updated_subscription': 'Abonnement mis à jour avec succès', + 'archived_subscription': 'Abonnement archivé avec succès', 'deleted_subscription': 'Successfully deleted subscription', 'removed_subscription': 'Successfully removed subscription', 'restored_subscription': 'Successfully restored subscription', @@ -20043,24 +20259,25 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Warning: Changing your phone number will disable 2FA', 'help_translate': 'Help Translate', 'please_select_a_country': 'Please select a country', - 'resend_invite': 'Resend Invitation', + 'resend_invite': 'Renvoyer une invitation', 'disabled_two_factor': 'Successfully disabled 2FA', 'connected_google': 'Successfully connected account', 'disconnected_google': 'Successfully disconnected account', 'delivered': 'Delivered', - 'bounced': 'Bounced', + 'bounced': 'Rebondi', 'spam': 'Spam', 'view_docs': 'View Docs', 'enter_phone_to_enable_two_factor': 'Please provide a mobile phone number to enable two factor authentication', 'send_sms': 'Send SMS', 'sms_code': 'SMS Code', - 'two_factor_setup_help': 'Scan bar koodi a :link compatible app.', + 'two_factor_setup_help': + 'Scannez le code à barres avec une application compatible :link', 'enabled_two_factor': - 'Kaksivaiheinen tunnistautuminen otettu onnistuneesti käyttöön', + 'Authentification à deux facteurs activée avec succès', 'connect_google': 'Connect Google', 'disconnect_google': 'Disconnect Google', - 'enable_two_factor': 'Kaksivaiheinen tunnistautuminen', + 'enable_two_factor': 'Authentification à 2 facteurs', 'disable_two_factor': 'Disable Two Factor', 'require_password_with_social_login': 'Require Password with Social Login', @@ -20073,7 +20290,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'security_settings': 'Security Settings', 'resend_email': 'Resend Email', 'confirm_your_email_address': 'Please confirm your email address', - 'refunded_payment': 'Hyvitetty maksu', + 'refunded_payment': 'Paiement remboursé', 'partially_unapplied': 'Partially Unapplied', 'select_a_gmail_user': 'Please select a user authenticated with Gmail', 'list_long_press': 'List Long Press', @@ -20084,25 +20301,25 @@ mixin LocalizationsProvider on LocaleCodeAware { 'counter_pattern_error': 'To use :client_counter please add either :client_number or :client_id_number to prevent conflicts', 'this_quarter': 'This Quarter', - 'last_quarter': 'viime Quarter', + 'last_quarter': 'Dernier trimestre', 'to_update_run': 'To update run', - 'convert_to_invoice': 'Muuta laskuksi', + 'convert_to_invoice': 'Convertir en facture', 'registration_url': 'Registration URL', - 'invoice_project': 'Lasku projekti', - 'invoice_task': 'Laskuta tehtävä', - 'invoice_expense': 'Lasku kulu', + 'invoice_project': 'Facturer le projet', + 'invoice_task': 'Facturer la tâche', + 'invoice_expense': 'Facturer la dépense', 'search_payment_term': 'Search 1 Payment Term', 'search_payment_terms': 'Search :count Payment Terms', 'save_and_preview': 'Save and Preview', 'save_and_email': 'Save and Email', - 'supported_events': 'Tuetut tapahtumat', - 'converted_amount': 'Converted määrä', + 'supported_events': 'Supported Events', + 'converted_amount': 'Montant converti', 'converted_balance': 'Converted Balance', 'converted_paid_to_date': 'Converted Paid to Date', 'converted_credit_balance': 'Converted Credit Balance', 'converted_total': 'Converted Total', 'is_sent': 'Is Sent', - 'default_documents': 'oletus Documents', + 'default_documents': 'Documents par défaut', 'document_upload': 'Document Upload', 'document_upload_help': 'Enable clients to upload documents', 'expense_total': 'Expense Total', @@ -20114,7 +20331,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'after_taxes': 'After Taxes', 'color': 'Color', 'show': 'Show', - 'hide': 'Piilota', + 'hide': 'Cacher', 'empty_columns': 'Empty Columns', 'debug_mode_is_enabled': 'Debug mode is enabled', 'debug_mode_is_enabled_help': @@ -20128,14 +20345,14 @@ mixin LocalizationsProvider on LocaleCodeAware { 'duplicate_column_mapping': 'Duplicate column mapping', 'uses_inclusive_taxes': 'Uses Inclusive Taxes', 'is_amount_discount': 'Is Amount Discount', - 'column': 'Sarake', - 'sample': 'Otos', + 'column': 'Colonne', + 'sample': 'Exemple', 'map_to': 'Map To', - 'import': 'Tuo', + 'import': 'Importer', 'first_row_as_column_names': 'Use first row as column names', - 'select_file': 'ystävällisesti valitsee tiedosto', + 'select_file': 'Veuillez sélectionner un fichier', 'no_file_selected': 'No File Selected', - 'csv_file': 'CSV tiedosto', + 'csv_file': 'Sélectionner un fichier CSV', 'csv': 'CSV', 'freshbooks': 'FreshBooks', 'invoice2go': 'Invoice2go', @@ -20148,7 +20365,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'html_mode': 'HTML Mode', 'html_mode_help': 'Preview updates faster but is less accurate', 'view_licenses': 'View Licenses', - 'webhook_url': 'Webhook URL', + 'webhook_url': 'URL Webhook', 'fullscreen_editor': 'Fullscreen Editor', 'sidebar_editor': 'Sidebar Editor', 'please_type_to_confirm': 'Please type \":value\" to confirm', @@ -20157,36 +20374,36 @@ mixin LocalizationsProvider on LocaleCodeAware { 'clone_to': 'Clone To', 'clone_to_other': 'Clone to Other', 'labels': 'Labels', - 'add_custom': 'Lisää mukautettu', + 'add_custom': 'Add Custom', 'payment_tax': 'Payment Tax', - 'unpaid': 'Maksamaton', + 'unpaid': 'Non payé', 'white_label': 'White Label', - 'delivery_note': 'Delivery Huom', + 'delivery_note': 'Bon de livraison', 'sent_invoices_are_locked': 'Sent invoices are locked', 'paid_invoices_are_locked': 'Paid invoices are locked', 'source_code': 'Source Code', 'app_platforms': 'App Platforms', 'invoice_late': 'Invoice Late', 'quote_expired': 'Quote Expired', - 'partial_due': 'Partial Due', - 'invoice_total': 'Maksettava', - 'quote_total': 'Tarjouksen loppusumma', - 'credit_total': 'luotto yhteensä', + 'partial_due': 'Solde partiel', + 'invoice_total': 'Montant total', + 'quote_total': 'Montant du devis', + 'credit_total': 'Total Crédit', 'recurring_invoice_total': 'Invoice Total', 'actions': 'Actions', 'expense_number': 'Expense Number', 'task_number': 'Task Number', 'project_number': 'Project Number', 'project_name': 'Project Name', - 'warning': 'Varoitus', + 'warning': 'Avertissement', 'view_settings': 'View Settings', 'company_disabled_warning': 'Warning: this company has not yet been activated', 'late_invoice': 'Late Invoice', 'expired_quote': 'Expired Quote', 'remind_invoice': 'Remind Invoice', - 'cvv': 'CVV', - 'client_name': 'Asiakkaan nimi', + 'cvv': 'Cryptogramme visuel', + 'client_name': 'Nom du client', 'client_phone': 'Client Phone', 'required_fields': 'Required Fields', 'calculated_rate': 'Calculated Rate', @@ -20198,7 +20415,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'new_task_status': 'New Task Status', 'edit_task_status': 'Edit Task Status', 'created_task_status': 'Successfully created task status', - 'updated_task_status': 'Onnistuneesti päivitetty tehtävän tila', + 'updated_task_status': 'Statut de tâche mis à jour avec succès', 'archived_task_status': 'Successfully archived task status', 'deleted_task_status': 'Successfully deleted task status', 'removed_task_status': 'Successfully removed task status', @@ -20212,24 +20429,25 @@ mixin LocalizationsProvider on LocaleCodeAware { 'show_tasks_table_help': 'Always show the tasks section when creating invoices', 'invoice_task_timelog': 'Invoice Task Timelog', - 'invoice_task_timelog_help': 'Lisää aikatieto laskun tuoteriville', + 'invoice_task_timelog_help': 'Add time details to the invoice line items', 'invoice_task_datelog': 'Invoice Task Datelog', 'invoice_task_datelog_help': 'Add date details to the invoice line items', 'auto_start_tasks_help': 'Start tasks before saving', 'configure_statuses': 'Configure Statuses', 'task_settings': 'Task Settings', 'configure_categories': 'Configure Categories', - 'expense_categories': 'kulu kategoriat', - 'new_expense_category': 'uusi kulu kategoria', + 'expense_categories': 'catégories de dépense', + 'new_expense_category': 'Nouvelle catégorie de dépense', 'edit_expense_category': 'Edit Expense Category', - 'created_expense_category': 'onnistuneesti luotu kulukategoria', - 'updated_expense_category': 'onnistuneesti päivitetty kulukategoria', - 'archived_expense_category': 'onnistuneesti arkistoitu kulu kategoria', - 'deleted_expense_category': 'onnistuneesti poistettu category', + 'created_expense_category': 'Catégorie de dépense créée avec succès', + 'updated_expense_category': + 'Catégorie de dépense mise à jour avec succès', + 'archived_expense_category': 'Catégorie de dépense archivée avec succès', + 'deleted_expense_category': 'La catégorie a été supprimée avec succès', 'removed_expense_category': 'Successfully removed expense category', - 'restored_expense_category': 'onnistuneesti palautettu kulukategoria', + 'restored_expense_category': 'Catégorie de dépense restaurée avec succès', 'archived_expense_categories': - 'onnistuneesti arkistoitu :count kulu kategoria', + ':count catégorie(s) de dépense archivée(s) avec succès', 'deleted_expense_categories': 'Successfully deleted expense :value categories', 'restored_expense_categories': @@ -20245,7 +20463,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'force_update_help': 'You are running the latest version but there may be pending fixes available.', 'mark_paid_help': 'Track the expense has been paid', - 'should_be_invoiced': 'Pitäisi laskuttaa', + 'should_be_invoiced': 'Devrait être facturé', 'should_be_invoiced_help': 'Enable the expense to be invoiced', 'add_documents_to_invoice_help': 'Make the documents visible', 'convert_currency_help': 'Set an exchange rate', @@ -20271,26 +20489,26 @@ mixin LocalizationsProvider on LocaleCodeAware { 'resumed_recurring_invoice': 'Successfully resumed recurring invoice', 'gateway_refund': 'Gateway Refund', 'gateway_refund_help': 'Process the refund with the payment gateway', - 'due_date_days': 'Eräpäivä', + 'due_date_days': 'Due Date', 'paused': 'Paused', - 'mark_active': 'Merkitse aktiiviseksi', + 'mark_active': 'Marquer comme actif', 'day_count': 'Day :count', 'first_day_of_the_month': 'First Day of the Month', 'last_day_of_the_month': 'Last Day of the Month', 'use_payment_terms': 'Use Payment Terms', - 'endless': 'Päättymätön', + 'endless': 'Endless', 'next_send_date': 'Next Send Date', - 'remaining_cycles': 'Jäljellä olevia kertoja', - 'recurring_invoice': 'Toistuva lasku', - 'recurring_invoices': 'Toistuvat laskut', - 'new_recurring_invoice': 'Uusi toistuva lasku', - 'edit_recurring_invoice': 'muokkaa toistuva Lasku', + 'remaining_cycles': 'Remaining Cycles', + 'recurring_invoice': 'Facture récurrente', + 'recurring_invoices': 'Factures récurrentes', + 'new_recurring_invoice': 'Nouvelle facture récurrente', + 'edit_recurring_invoice': 'Editer facture récurrente', 'created_recurring_invoice': 'Successfully created recurring invoice', 'updated_recurring_invoice': 'Successfully updated recurring invoice', - 'archived_recurring_invoice': 'Toistuva lasku arkistoitu onnistuneesti', - 'deleted_recurring_invoice': 'Toistuva lasku poistettu onnistuneesti', + 'archived_recurring_invoice': 'Facture récurrente archivée avec succès', + 'deleted_recurring_invoice': 'Facture récurrente supprimée avec succès', 'removed_recurring_invoice': 'Successfully removed recurring invoice', - 'restored_recurring_invoice': 'Toistuva lasku palautettu onnistuneesti', + 'restored_recurring_invoice': 'Facture récurrente restaurée avec succès', 'archived_recurring_invoices': 'Successfully archived recurring :value invoices', 'deleted_recurring_invoices': @@ -20303,14 +20521,14 @@ mixin LocalizationsProvider on LocaleCodeAware { 'auto_bill_on': 'Auto Bill On', 'minimum_under_payment_amount': 'Minimum Under Payment Amount', 'profit': 'Profit', - 'line_item': 'Line Item', + 'line_item': 'Ligne d\'article', 'allow_over_payment': 'Allow Over Payment', 'allow_over_payment_help': 'Support paying extra to accept tips', 'allow_under_payment': 'Allow Under Payment', 'allow_under_payment_help': 'Support paying at minimum the partial/deposit amount', 'test_mode': 'Test Mode', - 'opened': 'Opened', + 'opened': 'Ouvert(e)', 'payment_reconciliation_failure': 'Reconciliation Failure', 'payment_reconciliation_success': 'Reconciliation Success', 'gateway_success': 'Gateway Success', @@ -20322,46 +20540,46 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quota_exceeded': 'Quota Exceeded', 'upstream_failure': 'Upstream Failure', 'system_logs': 'System Logs', - 'view_portal': 'Näytä Portaali', + 'view_portal': 'Voir le portail', 'copy_link': 'Copy Link', - 'token_billing': 'Tallenna korttitiedot', + 'token_billing': 'Enregister les détails de paiement', 'welcome_to_invoice_ninja': 'Welcome to Invoice Ninja', - 'always': 'Always', + 'always': 'Toujours', 'optin': 'Opt-In', 'optout': 'Opt-Out', - 'label': 'Label', - 'client_number': 'asiakas numero', + 'label': 'Intitulé', + 'client_number': 'Numéro de client', 'auto_convert': 'Auto Convert', - 'company_name': 'yritys nimi', + 'company_name': 'Nom de l\'entreprise', 'reminder1_sent': 'Reminder 1 Sent', 'reminder2_sent': 'Reminder 2 Sent', 'reminder3_sent': 'Reminder 3 Sent', 'reminder_last_sent': 'Reminder Last Sent', 'pdf_page_info': 'Page :current of :total', - 'emailed_invoices': 'Laskut lähetettiin onnistuneesti sähköpostilla.', - 'emailed_quotes': 'Tarjoukset lähetettiin onnistuneesti sähköpostilla.', + 'emailed_invoices': 'Les factures ont été envoyées par email avec succès', + 'emailed_quotes': 'Les offres ont été envoyées par courriel avec succès', 'emailed_credits': 'Successfully emailed credits', - 'gateway': 'Maksunvälittäjä', + 'gateway': 'Passerelle', 'view_in_stripe': 'View in Stripe', 'rows_per_page': 'Rows Per Page', - 'hours': 'Tuntia', - 'statement': 'tiliote', - 'taxes': 'Verot', - 'surcharge': 'Surcharge', + 'hours': 'Heures', + 'statement': 'Relevé', + 'taxes': 'Taxes', + 'surcharge': 'Majoration', 'apply_payment': 'Apply Payment', - 'apply_credit': 'Hae hyvitystä', - 'apply': 'Käytä', + 'apply_credit': 'Appliquer crédit', + 'apply': 'Appliquer', 'unapplied': 'Unapplied', - 'select_label': 'Valitse kenttä', - 'custom_labels': 'Mukautetut kentät', + 'select_label': 'Sélection intitulé', + 'custom_labels': 'Custom Labels', 'record_type': 'Record Type', 'record_name': 'Record Name', 'file_type': 'File Type', 'height': 'Height', 'width': 'Width', - 'to': 'Vastaanottaja', + 'to': 'À', 'health_check': 'Health Check', - 'payment_type_id': 'Maksun tyyppi', + 'payment_type_id': 'Type de paiement', 'last_login_at': 'Last Login At', 'company_key': 'Company Key', 'storefront': 'Storefront', @@ -20376,44 +20594,44 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_settings': 'Client Settings', 'selected_invoices': 'Selected Invoices', 'selected_payments': 'Selected Payments', - 'selected_quotes': 'Valitut tarjoukset', + 'selected_quotes': 'Selected Quotes', 'selected_tasks': 'Selected Tasks', 'selected_expenses': 'Selected Expenses', - 'upcoming_invoices': 'Erääntyvät laskut', + 'upcoming_invoices': 'Factures à venir', 'past_due_invoices': 'Past Due Invoices', - 'recent_payments': 'Viimeisimmät maksut', - 'upcoming_quotes': 'Tulevat tarjoukset', - 'expired_quotes': 'Vanhentuneet tarjoukset', - 'create_client': 'luo asiakas', - 'create_invoice': 'Luo lasku', - 'create_quote': 'Luo tarjous', + 'recent_payments': 'Paiements récents', + 'upcoming_quotes': 'Devis à venir', + 'expired_quotes': 'Devis expirés', + 'create_client': 'Créer un client', + 'create_invoice': 'Créer une facture', + 'create_quote': 'Créer un devis', 'create_payment': 'Create Payment', - 'create_vendor': 'Luo kauppias', - 'update_quote': 'Päivitä tarjous', - 'delete_quote': 'Poista tarjous', + 'create_vendor': 'Créer un fournisseur', + 'update_quote': 'Update Quote', + 'delete_quote': 'Supprimer ce devis', 'update_invoice': 'Update Invoice', - 'delete_invoice': 'Poista lasku', + 'delete_invoice': 'Supprimer la facture', 'update_client': 'Update Client', - 'delete_client': 'Poista asiakas', - 'delete_payment': 'Poista maksu', - 'update_vendor': 'Päivitä kauppias', - 'delete_vendor': 'Poista kauppias', + 'delete_client': 'Supprimer ce client', + 'delete_payment': 'Supprimer ce paiement', + 'update_vendor': 'Update Vendor', + 'delete_vendor': 'Supprimer ce fournisseur', 'create_expense': 'Create Expense', 'update_expense': 'Update Expense', - 'delete_expense': 'Poista kulu', - 'create_task': 'Luo tehtävä', + 'delete_expense': 'Supprimer la dépense', + 'create_task': 'Créer une tâche', 'update_task': 'Update Task', - 'delete_task': 'Poista tehtävä', - 'approve_quote': 'Hyväksy tarjous', - 'off': 'Off', + 'delete_task': 'Supprimer la tâche', + 'approve_quote': 'Approve Quote', + 'off': 'Fermé', 'when_paid': 'When Paid', 'expires_on': 'Expires On', - 'free': 'Ilmainen', + 'free': 'Gratuit', 'plan': 'Plan', 'show_sidebar': 'Show Sidebar', 'hide_sidebar': 'Hide Sidebar', 'event_type': 'Event Type', - 'target_url': 'Target', + 'target_url': 'Cible', 'copy': 'Copy', 'must_be_online': 'Please restart the app once connected to the internet', 'crons_not_enabled': 'The crons need to be enabled', @@ -20434,18 +20652,18 @@ mixin LocalizationsProvider on LocaleCodeAware { 'deleted_webhooks': 'Successfully deleted :value webhooks', 'removed_webhooks': 'Successfully removed :value webhooks', 'restored_webhooks': 'Successfully restored :value webhooks', - 'api_tokens': 'API-salasanat', + 'api_tokens': 'Jetons d\'API', 'api_docs': 'API Docs', 'search_tokens': 'Search :count Tokens', 'search_token': 'Search 1 Token', - 'token': 'Token', - 'tokens': 'Tokenit', + 'token': 'Jeton', + 'tokens': 'Jetons', 'new_token': 'New Token', - 'edit_token': 'Muokkaa tokenia', - 'created_token': 'Token luotu onnistuneesti', - 'updated_token': 'Token päivitetty onnistuneesti', - 'archived_token': 'Token arkistoitu onnistuneesti', - 'deleted_token': 'Token poistettu onnistuneesti', + 'edit_token': 'Éditer ce jeton', + 'created_token': 'Jeton créé avec succès', + 'updated_token': 'Jeton mis à jour avec succès', + 'archived_token': 'Jeton archivé avec succès', + 'deleted_token': 'Jeton supprimé avec succès', 'removed_token': 'Successfully removed token', 'restored_token': 'Successfully restored token', 'archived_tokens': 'Successfully archived :value tokens', @@ -20454,75 +20672,75 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_registration': 'Client Registration', 'client_registration_help': 'Enable clients to self register in the portal', - 'customize_and_preview': 'Kustomoi ja esikatsele', - 'email_invoice': 'Lähetä lasku sähköpostitse', - 'email_quote': 'Lähetä tarjous sähköpostitse', + 'customize_and_preview': 'Customize & Preview', + 'email_invoice': 'Envoyer la facture par courriel', + 'email_quote': 'Envoyer ce devis par courriel', 'email_credit': 'Email Credit', - 'email_payment': 'Email maksu', + 'email_payment': 'Reçu du paiement par courriel', 'client_email_not_set': 'Client does not have an email address set', 'ledger': 'Ledger', - 'view_pdf': 'Katso PDF', + 'view_pdf': 'View PDF', 'all_records': 'All records', 'owned_by_user': 'Owned by user', 'credit_remaining': 'Credit Remaining', - 'contact_name': 'Yhteyshenkilön nimi', - 'use_default': 'Käytä oletusarvoa', + 'contact_name': 'Nom du contact', + 'use_default': 'Use default', 'reminder_endless': 'Endless Reminders', 'number_of_days': 'Number of days', 'configure_payment_terms': 'Configure Payment Terms', - 'payment_term': 'Maksuehdot', - 'new_payment_term': 'Uudet maksuehdot', - 'edit_payment_term': 'Muokkaa maksuaikaa', - 'created_payment_term': 'onnistuneesti luotu maksu ehto', - 'updated_payment_term': 'onnistuneesti päivitetty maksu ehto', - 'archived_payment_term': 'onnistuneesti arkistoitu maksu ehto', - 'deleted_payment_term': 'Maksuehto poistettiin onnistuneesti', - 'removed_payment_term': 'Maksuehto poistettiin onnistuneesti', - 'restored_payment_term': 'Maksuehto palautettiin onnistuneesti', + 'payment_term': 'Payment Term', + 'new_payment_term': 'New Payment Term', + 'edit_payment_term': 'Éditer la condition de paiement', + 'created_payment_term': 'Conditions de paiement créées avec succès', + 'updated_payment_term': 'Conditions de paiement mises à jour avec succès', + 'archived_payment_term': 'Conditions de paiement archivées avec succès', + 'deleted_payment_term': 'Successfully deleted payment term', + 'removed_payment_term': 'Successfully removed payment term', + 'restored_payment_term': 'Successfully restored payment term', 'archived_payment_terms': 'Successfully archived :value payment terms', 'deleted_payment_terms': 'Successfully deleted :value payment terms', 'restored_payment_terms': 'Successfully restored :value payment terms', 'email_sign_in': 'Sign in with email', - 'change': 'Vaihda', - 'change_to_mobile_layout': 'Vaihda mobiilinäkymään?', - 'change_to_desktop_layout': 'Vaihda työpöytänäkymään?', - 'send_from_gmail': 'Lähetä Gmailista', + 'change': 'Change', + 'change_to_mobile_layout': 'Change to the mobile layout?', + 'change_to_desktop_layout': 'Change to the desktop layout?', + 'send_from_gmail': 'Send from Gmail', 'reversed': 'Reversed', - 'cancelled': 'Peruutettu', - 'credit_amount': 'Luoton määrä', - 'quote_amount': 'Tarjouksen summa', + 'cancelled': 'Cancelled', + 'credit_amount': 'Montant du crédit', + 'quote_amount': 'Quote Amount', 'hosted': 'Hosted', 'selfhosted': 'Self-Hosted', - 'exclusive': 'Exclusive', - 'inclusive': 'Inclusive', - 'hide_menu': 'Piilota valikko', - 'show_menu': 'Näytä valikko', - 'partially_refunded': 'Osittain hyvitetty', - 'search_documents': 'Etsi asiakirjoista', + 'exclusive': 'Exclusif', + 'inclusive': 'Inclusif', + 'hide_menu': 'Hide Menu', + 'show_menu': 'Show Menu', + 'partially_refunded': 'Partially Refunded', + 'search_documents': 'Search Documents', 'search_designs': 'Search Designs', - 'search_invoices': 'Etsi laskuja', - 'search_clients': 'Etsi asiakkaita', - 'search_products': 'Etsi tuotteita', - 'search_quotes': 'Hae tarjouksia', - 'search_credits': 'Etsi luotoista', - 'search_vendors': 'Hae kauppiaita', - 'search_users': 'Etsi käyttäjiä', - 'search_tax_rates': 'Etsi verokanta', - 'search_tasks': 'Etsi tehtäviä', - 'search_settings': 'Etsi asetuksia', - 'search_projects': 'Etsi projekteja', - 'search_expenses': 'Etsi kuluja', - 'search_payments': 'Etsi maksuja', - 'search_groups': 'Etsi ryhmiä', - 'search_company': 'Etsi yritys', + 'search_invoices': 'Search Invoices', + 'search_clients': 'Search Clients', + 'search_products': 'Search Products', + 'search_quotes': 'Search Quotes', + 'search_credits': 'Search Credits', + 'search_vendors': 'Search Vendors', + 'search_users': 'Search Users', + 'search_tax_rates': 'Search Tax Rates', + 'search_tasks': 'Search Tasks', + 'search_settings': 'Search Settings', + 'search_projects': 'Search Projects', + 'search_expenses': 'Search Expenses', + 'search_payments': 'Search Payments', + 'search_groups': 'Search Groups', + 'search_company': 'Search Company', 'search_document': 'Search 1 Document', 'search_design': 'Search 1 Design', 'search_invoice': 'Search 1 Invoice', 'search_client': 'Search 1 Client', 'search_product': 'Search 1 Product', - 'search_quote': 'Hae 1 tarjous', + 'search_quote': 'Search 1 Quote', 'search_credit': 'Search 1 Credit', - 'search_vendor': 'Hae 1 kauppias', + 'search_vendor': 'Search 1 Vendor', 'search_user': 'Search 1 User', 'search_tax_rate': 'Search 1 Tax Rate', 'search_task': 'Search 1 Tasks', @@ -20530,1062 +20748,1071 @@ mixin LocalizationsProvider on LocaleCodeAware { 'search_expense': 'Search 1 Expense', 'search_payment': 'Search 1 Payment', 'search_group': 'Search 1 Group', - 'refund_payment': 'Hyvitysmaksu', + 'refund_payment': 'Remboursement du paiement', 'cancelled_invoice': 'Successfully cancelled invoice', 'cancelled_invoices': 'Successfully cancelled invoices', 'reversed_invoice': 'Successfully reversed invoice', 'reversed_invoices': 'Successfully reversed invoices', 'reverse': 'Reverse', - 'full_name': 'Full nimi', - 'city_state_postal': 'Kaupunki/Alue/Postitoimipaikka', - 'postal_city_state': 'Postal/kaupunki/State', - 'custom1': 'ensimmäinen muokattu', - 'custom2': 'toinen muokattu', - 'custom3': 'Kolmas mukautettu', - 'custom4': 'Neljäs mukautettu', - 'optional': 'Valinnainen', - 'license': 'Lisenssi', - 'purge_data': 'Purge Data', - 'purge_successful': 'onnistuneesti purged yritys data', + 'full_name': 'Nom complet', + 'city_state_postal': 'Ville/ Province (Département)/ CP', + 'postal_city_state': 'Ville/Province (Département)/Code postal', + 'custom1': 'Personnalisé1', + 'custom2': 'Personnalisé2', + 'custom3': 'Third Custom', + 'custom4': 'Fourth Custom', + 'optional': 'Optionnel', + 'license': 'Licence', + 'purge_data': 'Purger les données', + 'purge_successful': + 'Les données de l\'entreprise ont été purgées avec succès', 'purge_data_message': - 'Warning: tämä will pysyvästi erase sinun data, there is no undo.', - 'invoice_balance': 'Laskun tila', - 'age_group_0': '0 - 30 päivää', - 'age_group_30': '30 - 60 päivää', - 'age_group_60': '60 - 90 päivää', - 'age_group_90': '90 - 120 päivää', - 'age_group_120': '120+ päivää', - 'refresh': 'Refresh', - 'saved_design': 'Muotoilu tallennettiin onnistuneesti', - 'client_details': 'Asiakkaan tiedot', - 'company_address': 'Yrityksen osoite', - 'invoice_details': 'Laskun tiedot', - 'quote_details': 'Tarjouksen tiedot', - 'credit_details': 'Hyvityksen tiedot', - 'product_columns': 'Tuotesarake', - 'task_columns': 'Tehtäväsarake', - 'add_field': 'Lisää kenttä', - 'all_events': 'Kaikki tapahtumat', - 'permissions': 'Oikeudet', - 'none': 'None', - 'owned': 'Omistettu', - 'payment_success': 'Maksu onnistui', - 'payment_failure': 'Maksu epäonnistui', - 'invoice_sent': ':count lasku lähetetty', - 'quote_sent': 'Tarjous lähetetty', - 'credit_sent': 'Hyvitys lähetettiin', - 'invoice_viewed': 'Lasku katsottiin', - 'quote_viewed': 'Tarjous luettu', - 'credit_viewed': 'Hyvitys katsottiin', - 'quote_approved': 'Tarjous hyväksytty', - 'receive_all_notifications': 'Vastaanota kaikki ilmoitukset', - 'purchase_license': 'Osta lisenssi', - 'apply_license': 'Käytä lisenssi', - 'cancel_account': 'Poista tili', - 'cancel_account_message': - 'Varoitus: Tämä poistaa tilisi pysyvästi. Tietoja ei pysty palauttamaan.', - 'delete_company': 'Poista yritys', - 'delete_company_message': - 'Warning: tämä will pysyvästi poista sinun yritys, there is no undo.', - 'enabled_modules': 'Enabled Modules', - 'converted_quote': 'Tarjous on onnistuneesti muunnettu', - 'credit_design': 'Credit Design', - 'includes': 'Includes', - 'header': 'Ylätunniste', - 'load_design': 'Load malli', - 'css_framework': 'CSS Framework', - 'custom_designs': 'Custom Designs', - 'designs': 'Designs', - 'new_design': 'New Design', - 'edit_design': 'Edit Design', - 'created_design': 'Successfully created design', - 'updated_design': 'Successfully updated design', - 'archived_design': 'Successfully archived design', - 'deleted_design': 'Successfully deleted design', - 'removed_design': 'Successfully removed design', - 'restored_design': 'Successfully restored design', - 'archived_designs': 'Successfully archived :value designs', - 'deleted_designs': 'Successfully deleted :value designs', - 'restored_designs': 'Successfully restored :value designs', - 'proposals': 'Ehdotukset', - 'tickets': 'Tickets', - 'recurring_quotes': 'Toistuvat tarjoukset', + 'Attention : Cette action va supprimer vos données et est irréversible', + 'invoice_balance': 'Invoice Balance', + 'age_group_0': '0 - 30 jours', + 'age_group_30': '30 -60 jours', + 'age_group_60': '60 - 90 jours', + 'age_group_90': '90 - 120 jours', + 'age_group_120': '120+ jours', + 'refresh': 'Rafraîchir', + 'saved_design': 'Successfully saved design', + 'client_details': 'Client Details', + 'company_address': 'Company Address', + 'invoice_details': 'Détails de la facture', + 'quote_details': 'Quote Details', + 'credit_details': 'Credit Details', + 'product_columns': 'Product Columns', + 'task_columns': 'Task Columns', + 'add_field': 'Add Field', + 'all_events': 'All Events', + 'permissions': 'Permissions', + 'none': 'Aucun(e)', + 'owned': 'Owned', + 'payment_success': 'Payment Success', + 'payment_failure': 'Payment Failure', + 'invoice_sent': ':count facture envoyée', + 'quote_sent': 'Quote Sent', + 'credit_sent': 'Credit Sent', + 'invoice_viewed': 'Invoice Viewed', + 'quote_viewed': 'Quote Viewed', + 'credit_viewed': 'Credit Viewed', + 'quote_approved': 'Quote Approved', + 'receive_all_notifications': 'Receive All Notifications', + 'purchase_license': 'Purchase License', + 'apply_license': 'Activer la licence', + 'cancel_account': 'Supprimer le compte', + 'cancel_account_message': + 'Attention : Ceci va supprimer définitivement votre compte, il n\'y a pas d\'annulation possible.', + 'delete_company': 'Supprimer la société', + 'delete_company_message': + 'Attention : Ceci supprimera définitivement votre société, il n\'y a pas d\'annulation.', + 'enabled_modules': 'Enabled Modules', + 'converted_quote': 'Successfully converted quote', + 'credit_design': 'Credit Design', + 'includes': 'Includes', + 'header': 'En-tête', + 'load_design': 'Charger un modèle', + 'css_framework': 'CSS Framework', + 'custom_designs': 'Custom Designs', + 'designs': 'Designs', + 'new_design': 'New Design', + 'edit_design': 'Edit Design', + 'created_design': 'Successfully created design', + 'updated_design': 'Successfully updated design', + 'archived_design': 'Successfully archived design', + 'deleted_design': 'Successfully deleted design', + 'removed_design': 'Successfully removed design', + 'restored_design': 'Successfully restored design', + 'archived_designs': 'Successfully archived :value designs', + 'deleted_designs': 'Successfully deleted :value designs', + 'restored_designs': 'Successfully restored :value designs', + 'proposals': 'Propositions', + 'tickets': 'Tickets', + 'recurring_quotes': 'Devis récurrent', 'recurring_tasks': 'Recurring Tasks', - 'account_management': 'Käyttäjätilin hallinta', - 'credit_date': 'Luoton päivämäärä', - 'credit': 'Luotto', - 'credits': 'Luotot', - 'new_credit': 'Uusi luotto', - 'edit_credit': 'Muokkaa hyvitystä', - 'created_credit': 'Luottolasku luotiin onnistuneesti', - 'updated_credit': 'Hyvitys päivitettiin onnistuneesti', - 'archived_credit': 'Luottolasku arkistoitiin onnistuneesti', - 'deleted_credit': 'Luottolasku poistettiin onnistuneesti', + 'account_management': 'Gestion des comptes', + 'credit_date': 'Date d\'avoir', + 'credit': 'Crédit', + 'credits': 'Crédits', + 'new_credit': 'Entrer un crédit', + 'edit_credit': 'Éditer le crédit', + 'created_credit': 'Crédit créé avec succès', + 'updated_credit': 'Le crédit a été mis à jour avec succès', + 'archived_credit': 'Crédit archivé avec succès', + 'deleted_credit': 'Crédit supprimé avec succès', 'removed_credit': 'Successfully removed credit', - 'restored_credit': 'Luotto palautettu onnistuneesti', - 'archived_credits': ':count hyvitys(tä) arkistoitiin onnistuneesti', - 'deleted_credits': ':count luotto(a) poistettu onnistuneesti', - 'restored_credits': 'Palautettiin onnistuneesti :value luotolle', - 'current_version': 'Nykyinen versio', + 'restored_credit': 'Crédit restauré avec succès', + 'archived_credits': ':count crédits archivés avec succès', + 'deleted_credits': ':count crédits supprimés avec succès', + 'restored_credits': 'Successfully restored :value credits', + 'current_version': 'Version actuelle', 'latest_version': 'Latest Version', - 'update_now': 'Päivitä nyt', + 'update_now': 'Update Now', 'a_new_version_is_available': 'A new version of the web app is available', 'update_available': 'Update Available', 'app_updated': 'Update successfully completed', - 'learn_more': 'Lue lisää', - 'integrations': 'Integraatiot', - 'tracking_id': 'Seurantatunnus', + 'learn_more': 'En savoir plus', + 'integrations': 'Integrations', + 'tracking_id': 'Tracking Id', 'slack_webhook_url': 'Slack Webhook URL', - 'credit_footer': 'Luotto alatunniste', - 'credit_terms': 'Luoton ehdot', - 'new_company': 'Uusi yritys', - 'added_company': 'Yritys lisättiin onnistuneesti', - 'company1': 'Mukautettu Yritys 1', - 'company2': 'Mukautettu Yritys 2', - 'company3': 'Mukautettu Yritys 3', - 'company4': 'Mukautettu Yritys 4', - 'product1': 'Mukautettu Tuote 1', - 'product2': 'Mukautettu Tuote 2', - 'product3': 'Mukautettu Tuote 3', - 'product4': 'Mukautettu Tuote 4', - 'client1': 'Mukautettu Asiakas 1', - 'client2': 'Mukautettu Asiakas 2', - 'client3': 'Mukautettu Asiakas 3', - 'client4': 'Mukautettu Asiakas 4', - 'contact1': 'Mukautettu Yhteystieto 1', - 'contact2': 'Mukautettu Yhteystieto 2', - 'contact3': 'Mukautettu Yhteystieto 3', - 'contact4': 'Mukautettu Yhteystieto 4', - 'task1': 'Mukautettu Tehtävä 1', - 'task2': 'Mukautettu Tehtävä 2', - 'task3': 'Mukautettu Tehtävä 3', - 'task4': 'Mukautettu Tehtävä 4', - 'project1': 'Mukautettu Projekti 1', - 'project2': 'Mukautettu Projekti 2', - 'project3': 'Mukautettu Projekti 3', - 'project4': 'Mukautettu Projekti 4', - 'expense1': 'Mukautettu Kulu 1', - 'expense2': 'Mukautettu Kulu 2', - 'expense3': 'Mukautettu Kulu 3', - 'expense4': 'Mukautettu Kulu 4', - 'vendor1': 'Mukautettu Myyjä 1', - 'vendor2': 'Mukautettu Myyjä 2', - 'vendor3': 'Mukautettu Myyjä 3', - 'vendor4': 'Mukautettu Myyjä 4', - 'invoice1': 'Mukautettu Lasku 1', - 'invoice2': 'Mukautettu Lasku 2', - 'invoice3': 'Mukautettu Lasku 3', - 'invoice4': 'Mukautettu Lasku 4', - 'payment1': 'Mukautettu Maksu 1', - 'payment2': 'Mukautettu Maksu 2', - 'payment3': 'Mukautettu Maksu 3', - 'payment4': 'Mukautettu Maksu 4', - 'surcharge1': 'Mukautettu Lisämaksu 1', - 'surcharge2': 'Mukautettu Lisämaksu 2', - 'surcharge3': 'Mukautettu Lisämaksu 3', - 'surcharge4': 'Mukautettu Lisämaksu 4', - 'group1': 'Mukautettu Ryhmä 1', - 'group2': 'Mukautettu Ryhmä 2', - 'group3': 'Mukautettu Ryhmä 3', - 'group4': 'Mukautettu Ryhmä 4', - 'reset': 'Nollaa', - 'number': 'Numero', - 'export': 'Vienti', - 'chart': 'Kaavio', - 'count': 'Luku', - 'totals': 'Yhteensä', - 'blank': 'Tyhjä', - 'day': 'Päivä', - 'month': 'Kuukausi', - 'year': 'Vuosi', - 'subgroup': 'Subgroup', - 'is_active': 'Aktiivinen', - 'group_by': 'Niputa', - 'credit_balance': 'Luoton saldo', - 'contact_last_login': 'Kontaktin viimeinen kirjautuminen', - 'contact_full_name': 'Kontaktin koko nimi', - 'contact_phone': 'kontakti puhelin', - 'contact_custom_value1': 'Kontakti Mukautettu Arvo 1', - 'contact_custom_value2': 'Kontakti Mukautettu Arvo 2', - 'contact_custom_value3': 'Kontakti Mukautettu Arvo 3', - 'contact_custom_value4': 'Kontakti Mukautettu Arvo 4', - 'shipping_address1': 'Toimitus: Katu', - 'shipping_address2': 'Toimitus: Asunto/huoneisto', - 'shipping_city': 'Toimitus: Kaupunki', - 'shipping_state': 'Toimitus: Maakunta', - 'shipping_postal_code': 'Toimitus: Postinumero', - 'shipping_country': 'Toimitus: Maa', - 'billing_address1': 'Laskutus: Katu', - 'billing_address2': 'Laskutus: Asunto/huoneisto', - 'billing_city': 'Laskutus: Kaupunki', - 'billing_state': 'Laskutus: Maakunta', - 'billing_postal_code': 'Laskutus: Postinumero', - 'billing_country': 'Laskutus: Maa', - 'client_id': 'Asiakkaan tunniste', - 'assigned_to': 'Assigned', - 'created_by': 'luotu by :name', - 'assigned_to_id': 'Liitetty tunnukseen(Id)', - 'created_by_id': 'Luonut (Id)', - 'add_column': 'Lisää Sarake', - 'edit_columns': 'Muokkaa Saraketta', - 'columns': 'Columns', - 'aging': 'Aging', - 'profit_and_loss': 'Profit ja Loss', - 'reports': 'Raportit', - 'report': 'Raportti', - 'add_company': 'Lisää yritys', - 'unpaid_invoice': 'Maksamatonl lasku', - 'paid_invoice': 'Paid Lasku', - 'unapproved_quote': 'Hyväksymätön tarjous', - 'help': 'Ohje', - 'refund': 'Hyvitys', - 'refund_date': 'Maksunpalautuspäivä', - 'filtered_by': 'Filtered by', - 'contact_email': 'Sähköpostiosoite', - 'multiselect': 'Monivalinta', - 'entity_state': 'Osavaltio', - 'verify_password': 'Vahvista salasana', - 'applied': 'Haettu', - 'include_recent_errors': 'Sisällytä viimeiset virheet lokiin', + 'credit_footer': 'Credit Footer', + 'credit_terms': 'Credit Terms', + 'new_company': 'Nouveau compte', + 'added_company': 'L\'entreprise a été ajoutée', + 'company1': 'Champ personnalisé Entreprise 1', + 'company2': 'Champ personnalisé Entreprise 2', + 'company3': 'Champ personnalisé Entreprise 3', + 'company4': 'Champ personnalisé Entreprise 4', + 'product1': 'Champ personnalisé Produit 1', + 'product2': 'Champ personnalisé Produit 2', + 'product3': 'Champ personnalisé Produit 3', + 'product4': 'Champ personnalisé Produit 4', + 'client1': 'Champ personnalisé Client 1', + 'client2': 'Client personnalisé 2', + 'client3': 'Client personnalisé 3', + 'client4': 'Client personnalisé 4', + 'contact1': 'Champ personnalisé Contact 1', + 'contact2': 'Champ personnalisé Contact 2', + 'contact3': 'Champ personnalisé Contact 3', + 'contact4': 'Champ personnalisé Contact 4', + 'task1': 'Champ personnalisé Tâche 1', + 'task2': 'Champ personnalisé Tâche 2', + 'task3': 'Champ personnalisé Tâche 3', + 'task4': 'Champ personnalisé Tâche 4', + 'project1': 'Champ personnalisé Projet 1', + 'project2': 'Champ personnalisé Projet 2', + 'project3': 'Champ personnalisé Projet 3', + 'project4': 'Champ personnalisé Projet 4', + 'expense1': 'Champ personnalisé Dépense 1', + 'expense2': 'Champ personnalisé Dépense 2', + 'expense3': 'Champ personnalisé Dépense 3', + 'expense4': 'Champ personnalisé Dépense 4', + 'vendor1': 'Fournisseur personnalisé 1', + 'vendor2': 'Fournisseur personnalisé 2', + 'vendor3': 'Fournisseur personnalisé 3', + 'vendor4': 'Fournisseur personnalisé 4', + 'invoice1': 'Champ personnalisé Facture 1', + 'invoice2': 'Champ personnalisé Facture 2', + 'invoice3': 'Champ personnalisé Facture 3', + 'invoice4': 'Champ personnalisé Facture 4', + 'payment1': 'Champ personnalisé Paiement 1', + 'payment2': 'Champ personnalisé Paiement 2', + 'payment3': 'Champ personnalisé Paiement 3', + 'payment4': 'Champ personnalisé Paiement 4', + 'surcharge1': 'Autre frais 1', + 'surcharge2': 'Autre frais 2', + 'surcharge3': 'Autre frais 3', + 'surcharge4': 'Autre frais 4', + 'group1': 'Champ personnalisé Groupe 1', + 'group2': 'Champ personnalisé Groupe 2', + 'group3': 'Champ personnalisé Groupe 3', + 'group4': 'Champ personnalisé Groupe 4', + 'reset': 'Remettre à zéro', + 'number': 'Nombre', + 'export': 'Exporter', + 'chart': 'Graphique', + 'count': 'Compte', + 'totals': 'Totaux', + 'blank': 'Vide', + 'day': 'Jour', + 'month': 'Mois', + 'year': 'Année', + 'subgroup': 'Sous-groupe', + 'is_active': 'Actif', + 'group_by': 'Grouper par', + 'credit_balance': 'Solde du crédit', + 'contact_last_login': 'Dernière connexion du contact', + 'contact_full_name': 'Nom du contact', + 'contact_phone': 'Téléphone du contact', + 'contact_custom_value1': 'Valeur champ personnalisé Contact 1', + 'contact_custom_value2': 'Valeur champ personnalisé Contact 2', + 'contact_custom_value3': 'Valeur champ personnalisé Contact 3', + 'contact_custom_value4': 'Valeur champ personnalisé Contact 4', + 'shipping_address1': 'Rue', + 'shipping_address2': 'Appt/Bâtiment', + 'shipping_city': 'Ville', + 'shipping_state': 'Région/Département', + 'shipping_postal_code': 'Code postal', + 'shipping_country': 'Pays', + 'billing_address1': 'Rue', + 'billing_address2': 'Appt/Bâtiment', + 'billing_city': 'Ville', + 'billing_state': 'Région/Département', + 'billing_postal_code': 'Code postal', + 'billing_country': 'Pays', + 'client_id': 'ID du client', + 'assigned_to': 'Assigné à', + 'created_by': 'Créé par :name', + 'assigned_to_id': 'Assigné à ID', + 'created_by_id': 'Créé par ID', + 'add_column': 'Ajouter une colonne', + 'edit_columns': 'Éditer les colonnes', + 'columns': 'Colonnes', + 'aging': 'Vieillissement', + 'profit_and_loss': 'Profits et Pertes', + 'reports': 'Rapports', + 'report': 'Rapport', + 'add_company': 'Ajouter compte', + 'unpaid_invoice': 'Facture impayée', + 'paid_invoice': 'Facture payée', + 'unapproved_quote': 'Devis non-approuvé', + 'help': 'Aide', + 'refund': 'Remboursement', + 'refund_date': 'Date du remboursement', + 'filtered_by': 'Filtré par', + 'contact_email': 'Courriel du contact', + 'multiselect': 'Sélection multiple', + 'entity_state': 'État', + 'verify_password': 'Vérifier le mot de passe', + 'applied': 'Publié', + 'include_recent_errors': 'Contient les erreurs récentes des journaux', 'your_message_has_been_received': - 'Olemme vastaanottaneet viestisi ja pyrimme vastaamaan siihen pikaisesti.', - 'message': 'Viesti', - 'from': 'Lähettäjä', - 'show_product_details': 'Näytä tuotteen tiedot', + 'Nous avons reçu votre message et répondrons dans les meilleurs délais', + 'message': 'Message', + 'from': 'De', + 'show_product_details': 'Voir les détails du produit', 'show_product_details_help': - 'Sisällytä lisätieto ja hinta tuotteen alasvetovalikkoon', - 'pdf_min_requirements': 'PDF sivun muokkaaja vaatii :version', - 'adjust_fee_percent': 'Säädä kuluprosenttia', - 'adjust_fee_percent_help': 'Adjust percent tili palkkio', - 'configure_settings': 'Muokkaa asetuksia', - 'support_forum': 'support forum', - 'about': 'Tietoja', - 'documentation': 'Dokumentaatio', - 'contact_us': 'Ota meihin yhteyttä', - 'subtotal': 'Välisumma', - 'line_total': 'Rivin summa', - 'item': 'Tuote', - 'credit_email': 'Credit Email', - 'iframe_url': 'Verkkosivu', - 'domain_url': 'Domain URL', - 'password_is_too_short': 'salasana on liian lyhyt', - 'password_is_too_easy': 'Salasanan pitää sisältää iso kirjain ja numero', - 'client_portal_tasks': 'Asiakas portaalin tehtävät', - 'client_portal_dashboard': 'Asiakas portaalin etusivu', - 'please_enter_a_value': 'Aseta arvo', - 'deleted_logo': 'Logo poistettiin onnistuneesti', - 'yes': 'Kyllä', - 'no': 'Ei', - 'generate_number': 'Luo numero', - 'when_saved': 'Milloin tallennettu', - 'when_sent': 'Milloin lähetetty', - 'select_company': 'Valitse yritys', - 'float': 'Kelluva', - 'collapse': 'Pienennä', - 'show_or_hide': 'Näytä/piilota', - 'menu_sidebar': 'Valikon sivupalkki', - 'history_sidebar': 'Historia sivupalkki', - 'tablet': 'Tablet', + 'Veuillez inclure la description et le coût dans la liste déroulante du produit', + 'pdf_min_requirements': + 'Le générateur de PDF nécessite la version :version', + 'adjust_fee_percent': 'Ajuster le pourcentage de frais', + 'adjust_fee_percent_help': 'Ajuster le frais de pourcentage au compte', + 'configure_settings': 'Modifier les paramètres', + 'support_forum': 'forum de support', + 'about': 'À propos', + 'documentation': 'Documentation', + 'contact_us': 'Nous joindre', + 'subtotal': 'Sous-total', + 'line_total': 'Total', + 'item': 'Article', + 'credit_email': 'Courriel de crédit', + 'iframe_url': 'Site internet', + 'domain_url': 'URL du domaine', + 'password_is_too_short': 'Mot de passe trop court', + 'password_is_too_easy': + 'Le mot de passe doit comporter au moins une majuscule et un nombre', + 'client_portal_tasks': 'Tâche du portail client', + 'client_portal_dashboard': 'Tableau de bord du portail client', + 'please_enter_a_value': 'Saisissez une valeur', + 'deleted_logo': 'Le logo a été supprimé', + 'yes': 'Oui', + 'no': 'Non', + 'generate_number': 'Générer un nombre', + 'when_saved': 'Lors de la sauvegarde', + 'when_sent': 'Lors de l\'envoi', + 'select_company': 'Sélectionner une entreprise', + 'float': 'Flottant', + 'collapse': 'Réduire', + 'show_or_hide': 'Afficher/cacher', + 'menu_sidebar': 'Barre latérale du menu', + 'history_sidebar': 'Historique latéral', + 'tablet': 'Tablette', 'mobile': 'Mobile', - 'desktop': 'Desktop', - 'layout': 'Ulkoasu', - 'view': 'Näytä', - 'module': 'Moduuli', - 'first_custom': 'Ensim. muokattu', - 'second_custom': 'Toinen muokattu', - 'third_custom': 'Kolmas muokattu', - 'show_cost': 'Näytä kustannus', + 'desktop': 'Bureau', + 'layout': 'Présentation', + 'view': 'Voir', + 'module': 'Module', + 'first_custom': 'Premier personnalisé', + 'second_custom': 'Second personnalisé', + 'third_custom': 'Troisième personnalisé', + 'show_cost': 'Voir le coût', 'show_product_cost': 'Show Product Cost', - 'show_cost_help': 'Näytä tuotteen kulukenttä seurataksesi katetta', - 'show_product_quantity': 'Näytä tuotteen määrä', + 'show_cost_help': + 'Afficher un champ coût du produit pour suivre la marge', + 'show_product_quantity': 'Voir la quantité du produit', 'show_product_quantity_help': - 'Näytä tuotteen määräkenttä, muutoin oletus 1', - 'show_invoice_quantity': 'Näytä Laskun määrät', + 'Afficher un champ de quantité du produit, sinon en choisir un par défaut', + 'show_invoice_quantity': 'Voir la quantité sur la facture', 'show_invoice_quantity_help': - 'Näytä rivien määräkenttä, muutoin oletus 1', + 'Afficher un champ de quantité pour la position, sinon en choisir un par défaut', 'show_product_discount': 'Show Product Discount', 'show_product_discount_help': 'Display a line item discount field', - 'default_quantity': 'Oletus määrä', - 'default_quantity_help': 'Aseta rivimäärä oletuksena 1', - 'one_tax_rate': 'Ensimmäinen veroluokka', - 'two_tax_rates': 'Toinen veroluokka', - 'three_tax_rates': 'Kolmas veroluokka', - 'default_tax_rate': 'Oletus veroluokka', - 'user': 'Käyttäjä', - 'invoice_tax': 'Laskun vero', - 'line_item_tax': 'Line Item Tax', - 'inclusive_taxes': 'Inclusive Taxes', - 'invoice_tax_rates': 'Invoice Tax Rates', - 'item_tax_rates': 'Item Tax Rates', - 'no_client_selected': 'Valitse asiakas', - 'configure_rates': 'Määritä kurssit', + 'default_quantity': 'Quantité par défaut', + 'default_quantity_help': + 'Mettre automatiquement la quantité de la position à un', + 'one_tax_rate': 'Un taux de taxe', + 'two_tax_rates': 'Deux taux de taxe', + 'three_tax_rates': 'Trois taux de taxe', + 'default_tax_rate': 'Taux de taxe par défaut', + 'user': 'Utilisateur', + 'invoice_tax': 'Taxe de la facture', + 'line_item_tax': 'Taxe de la position', + 'inclusive_taxes': 'Taxes incluses', + 'invoice_tax_rates': 'Taux de taxe de la facture', + 'item_tax_rates': 'Taux de taxe de la position', + 'no_client_selected': 'Veuillez sélectionner un client', + 'configure_rates': 'Configurer les taux', 'configure_gateways': 'Configure Gateways', - 'tax_settings': 'Veroasetukset', - 'tax_settings_rates': 'Veroluokat', - 'accent_color': 'Nouseva väri', - 'switch': 'Switch', - 'comma_sparated_list': 'pilkku eroteltu lista', - 'options': 'Valinnat', - 'single_line_text': 'Single-line text', - 'multi_line_text': 'Multi-line text', - 'dropdown': 'Alasvetovalikko', - 'field_type': 'Kentän tyyppi', + 'tax_settings': 'Réglages des taxes', + 'tax_settings_rates': 'Taux de taxes', + 'accent_color': 'Couleur de mise en évidence', + 'switch': 'Changer', + 'comma_sparated_list': 'Liste séparée par des virgules', + 'options': 'Options', + 'single_line_text': 'Texte sur une ligne', + 'multi_line_text': 'Texte multi-lignes', + 'dropdown': 'Liste déroulante', + 'field_type': 'Type du champ', 'recover_password_email_sent': - 'Salasanan palautussähköposti on lähetetty.', - 'submit': 'Submit', - 'recover_password': 'Palauta salasana', - 'late_fees': 'Viivästysmaksut', - 'credit_number': 'luotto numero', - 'payment_number': 'maksu numero', - 'late_fee_amount': 'Late palkkio määrä', - 'late_fee_percent': 'Late palkkio Percent', - 'schedule': 'Aikataulu', - 'before_due_date': 'Ennen eräpäivää', - 'after_due_date': 'Eräpäivän jälkeen', - 'after_invoice_date': 'Laskun päiväyksen jälkeen', - 'days': 'Päivää', - 'invoice_email': 'Laskusähköposti', - 'payment_email': 'Maksusähköposti', - 'partial_payment': 'Osittainen maksu', - 'payment_partial': 'Osittainen maksu', - 'partial_payment_email': 'Osittaisen maksun sähköpostiosoite', - 'quote_email': 'Tarjoussähköposti', - 'endless_reminder': 'Endless muistutus', - 'filtered_by_user': 'Filtered by User', - 'administrator': 'Ylläpitäjä', - 'administrator_help': - 'Allow käyttäjä manage users, change asetus ja modify kaikki records', - 'user_management': 'Käyttäjänhallinta', - 'users': 'Käyttäjät', - 'new_user': 'Uusi käyttäjä', - 'edit_user': 'Muokkaa käyttäjä', - 'created_user': 'Onnistuneesti luotu käyttäjä', - 'updated_user': 'Käyttäjä on päivitetty onnistuneesti', - 'archived_user': 'Käyttäjä arkistoitu onnistuneesti', - 'deleted_user': 'Käyttäjä on poistettu onnistuneesti', - 'removed_user': 'Onnistuneesti poistettu käyttäjä', - 'restored_user': 'Käyttäjä palautettu onnistuneesti', - 'archived_users': 'Successfully archived :value users', - 'deleted_users': 'Successfully deleted :value users', - 'removed_users': 'Successfully removed :value users', + 'Un courriel de récupération du mot de passe a été envoyé', + 'submit': 'Envoyer', + 'recover_password': 'Récupérer votre mot de passe', + 'late_fees': 'Frais de retard', + 'credit_number': 'Numéro d\'avoir', + 'payment_number': 'Numéro de paiement', + 'late_fee_amount': 'Montant de pénalité de retard', + 'late_fee_percent': 'Pourcentage de pénalité de retard', + 'schedule': 'Planification', + 'before_due_date': 'Avant la date d\'échéance', + 'after_due_date': 'Après la date d\'échéance', + 'after_invoice_date': 'Après la date de facturation', + 'days': 'Jours', + 'invoice_email': 'Courriel de facture', + 'payment_email': 'Courriel de paiement', + 'partial_payment': 'Partial Payment', + 'payment_partial': 'Partial Payment', + 'partial_payment_email': 'Partial Payment Email', + 'quote_email': 'Courriel de devis', + 'endless_reminder': 'Rappel sans fin', + 'filtered_by_user': 'Filtré par utilisateur', + 'administrator': 'Administrateur', + 'administrator_help': + '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', + 'edit_user': 'Éditer l\'utilisateur', + 'created_user': 'Utilisateur créé avec succès avec succès', + 'updated_user': 'Utilisateur mis à jour avec succès', + 'archived_user': 'Utilisateur archivé avec succès', + 'deleted_user': 'Utilisateur supprimé avec succès', + 'removed_user': 'L\'utilisateur a été supprimé', + 'restored_user': 'Commande restaurée avec succès', + 'archived_users': 'Successfully archived :value users', + 'deleted_users': 'Successfully deleted :value users', + 'removed_users': 'Successfully removed :value users', 'restored_users': 'Successfully restored :value users', - 'general_settings': 'Yleiset asetukset', - 'invoice_options': 'Laskun valinnat', - 'hide_paid_to_date': 'Piilota \"Maksettu tähän asti\"', + 'general_settings': 'Paramètres généraux', + 'invoice_options': 'Options de facturation', + 'hide_paid_to_date': 'Masquer \"Payé à ce jour\"', 'hide_paid_to_date_help': - 'Näytä \"Maksettava päivämäärään mennessä\" kenttä laskuillasi vain maksetuilla laskuilla.', - 'invoice_embed_documents': 'Embed Documents', - 'invoice_embed_documents_help': 'Sisällytä liitetyt kuvat laskuun.', - 'all_pages_header': 'näytä Header on', - 'all_pages_footer': 'Näytä alatunniste', - 'first_page': 'ensimmäinen page', - 'all_pages': 'All pages', - 'last_page': 'viime page', - 'primary_font': 'Ensisijainen kirjasin', - 'secondary_font': 'toissijainen kirjasin', - 'primary_color': 'Pääväri', - 'secondary_color': 'Apuväri', - 'page_size': 'Sivukoko', - 'font_size': 'Fontin koko', - 'quote_design': 'Tarjouksen muotoilu', - 'invoice_fields': 'Laskun kentät', - 'product_fields': 'Tuote kentät', - 'invoice_terms': 'Laskun ehdot', - 'invoice_footer': 'Laskun alatunniste', - 'quote_terms': 'Tarjouksen ehdot', - 'quote_footer': 'Tarjouksen alatunniste', - 'auto_email_invoice': 'automaattinen Email', + '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.', + 'all_pages_header': 'Voir les en-têtes sur', + 'all_pages_footer': 'Voir les pieds de page sur', + 'first_page': 'Première page', + 'all_pages': 'Toutes les pages', + 'last_page': 'Dernière page', + 'primary_font': 'Police principale', + 'secondary_font': 'Police secondaire', + 'primary_color': 'Couleur principale', + 'secondary_color': 'Couleur secondaire', + 'page_size': 'Taille de Page', + 'font_size': 'Taille de police', + 'quote_design': 'Mise en page des Devis', + 'invoice_fields': 'Champs de facture', + 'product_fields': 'Champs de produit', + 'invoice_terms': 'Conditions de facturation', + 'invoice_footer': 'Pied de facture', + 'quote_terms': 'Conditions des devis', + 'quote_footer': 'Pied de page des devis', + 'auto_email_invoice': 'Envoyer automatiquement par courriel', 'auto_email_invoice_help': - 'automaattisesti sähköposti toistuva laskut when they on luotu.', - 'auto_archive_invoice': 'automaattinen Arkistoi', + 'Envoyer automatiquement par courriel les factures récurrentes lorsqu\'elles sont créés.', + 'auto_archive_invoice': 'Archiver automatiquement', 'auto_archive_invoice_help': - 'automaattisesti archive laskut when they on paid.', - 'auto_archive_quote': 'automaattinen Arkistoi', + 'Archiver automatiquement les factures lorsqu\'elles sont payées.', + 'auto_archive_quote': 'Archiver automatiquement', 'auto_archive_quote_help': - 'Arkistoi tarjoukset automaattisesti kun ne on muunnettu laskuiksi.', - 'auto_convert_quote': 'Automaattinen muunnos', + 'Archiver automatiquement les devis lorsqu\'ils sont convertis.', + 'auto_convert_quote': 'Convertir automatiquement', 'auto_convert_quote_help': - 'Muunna tarjous automaattisesti laskuksi, kun asiakas on hyväksynyt tarjouksen.', - 'workflow_settings': 'Workflow asetukset', - 'freq_daily': 'päivittäin', - 'freq_weekly': 'viikoittain', - 'freq_two_weeks': 'Kaksi viikkoa', - 'freq_four_weeks': 'neljä viikkoa', - 'freq_monthly': 'Kuukausittain', - 'freq_two_months': 'Kaksi kuukautta', - 'freq_three_months': 'kolme kuukautta', - 'freq_four_months': 'neljä kuukautta', - 'freq_six_months': 'Six kuukautta', - 'freq_annually': 'Vuosittain', - 'freq_two_years': 'Kaksi vuotta', - 'freq_three_years': '3 vuotta', - 'never': 'Ei koskaan', - 'company': 'yritys', - 'generated_numbers': 'Generated Numbers', - 'charge_taxes': 'Veloita veroa', - 'next_reset': 'Next Reset', - 'reset_counter': 'Reset Counter', - 'recurring_prefix': 'toistuva etuliite', - 'number_padding': 'numero Padding', - 'general': 'General', - 'surcharge_field': 'Surcharge kenttä', - 'company_field': 'yritys kenttä', - 'company_value': 'yritys Value', - 'credit_field': 'luotto kenttä', - 'invoice_field': 'Lasku kenttä', - 'invoice_surcharge': 'Lasku Surcharge', - 'client_field': 'asiakas kenttä', - 'product_field': 'Tuote kenttä', - 'payment_field': 'maksu kenttä', - 'contact_field': 'kontakti kenttä', - 'vendor_field': 'Kauppias kenttä', - 'expense_field': 'kulu kenttä', - 'project_field': 'Projekti kenttä', - 'task_field': 'Tehtävä kenttä', - 'group_field': 'ryhmä kenttä', - 'number_counter': 'numero Counter', - 'prefix': 'Etuliite', - 'number_pattern': 'numero Pattern', - 'messages': 'Viestit', - 'custom_css': 'Mukautettu CSS', - 'custom_javascript': 'Muokautettu JavaScript', - 'signature_on_pdf': 'näytä on PDF', + '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', + 'freq_two_weeks': 'Deux semaines', + 'freq_four_weeks': 'Quatre semaines', + 'freq_monthly': 'Mensuelle', + 'freq_two_months': 'Deux mois', + 'freq_three_months': 'Trimestrielle', + 'freq_four_months': 'Quatre mois', + 'freq_six_months': 'Six mois', + 'freq_annually': 'Annuelle', + 'freq_two_years': 'Deux ans', + 'freq_three_years': 'Trois ans', + 'never': 'Jamais', + 'company': 'Entreprise', + 'generated_numbers': 'Numéros générés', + 'charge_taxes': 'Taxe supplémentaire', + 'next_reset': 'Prochaine remise à zéro', + 'reset_counter': 'Remettre le compteur à zéro', + 'recurring_prefix': 'Préfixe récurrent', + 'number_padding': 'Marge interne du nombre', + 'general': 'Général', + 'surcharge_field': 'Champ Surcharge', + 'company_field': 'Champ d\'entreprise', + 'company_value': 'Valeur de compagnie', + 'credit_field': 'Champ de Crédit', + 'invoice_field': 'Champ de facture', + 'invoice_surcharge': 'Majoration de facture', + 'client_field': 'Champ de client', + 'product_field': 'Champ de produit', + 'payment_field': 'Champ de Paiement', + 'contact_field': 'Champ de contact', + 'vendor_field': 'Champ de fournisseur', + 'expense_field': 'Champ de dépense', + 'project_field': 'Champ de projet', + 'task_field': 'Champ de tâche', + 'group_field': 'Champ de Groupe', + 'number_counter': 'Compteur de nombre', + 'prefix': 'Préfixe', + 'number_pattern': 'Modèle de nombre', + 'messages': 'Messages', + 'custom_css': 'CSS personnalisé', + 'custom_javascript': 'JavaScript personnalisé', + 'signature_on_pdf': 'Afficher sur le PDF', 'signature_on_pdf_help': - 'Näytä asiakkaan allekirjoitus lasku-/tarjous-PDF:ssä.', - 'show_accept_invoice_terms': 'Laskun ehdot valintaruutu', + 'Afficher la signature du client sur la facture / le devis PDF.', + 'show_accept_invoice_terms': + 'Case à cocher pour les conditions de facturation', 'show_accept_invoice_terms_help': - 'Vaadi asiakasta vahvistamaan, että hän hyväksyy laskun ehdot.', - 'show_accept_quote_terms': 'Tarjouksen ehdot valintaruutu', + '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': - 'Vaadi asiakasta vahvistamaan, että hän hyväksyy tarjouksen ehdot.', - 'require_invoice_signature': 'Laskun allekirjoitus', - 'require_invoice_signature_help': - 'Vaadi asiakasta täyttämään allekirjoitus.', - 'require_quote_signature': 'Tarjouksen allekirjoitus', - 'enable_portal_password': 'salasana suojaa laskut', + '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': - 'Mahdollistaa, että voit antaa salasanan jokaiselle yhteyshenkilölle. Jos salasana on asetettu, yhteyshenkilön tulee kirjautua sen avulla sisään voidakseen tarkastella laskuja.', - 'authorization': 'Valtuutus', - 'subdomain': 'Alidomain', - 'domain': 'Domain', - 'portal_mode': 'Portal Mode', - 'email_signature': 'Ystävällisesti,', + '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.', + 'authorization': 'Autorisation', + 'subdomain': 'Sous-domaine', + 'domain': 'Domaine', + 'portal_mode': 'Mode portail', + 'email_signature': 'Cordialement,', 'enable_email_markup_help': - 'Tee asiakkaillesi helpommaksi maksaa laskusi ottamalla käyttöön schema.org -merkintä sähköposteissasi.', - 'plain': 'Yksinkertainen', - 'light': 'Vaalea', - 'dark': 'Tumma', - 'email_design': 'Sähköpostin muotoilu', - 'attach_pdf': 'Liitä PDF', - 'attach_documents': 'Liitä asiakirjoja', - 'attach_ubl': 'Attach UBL', - 'email_style': 'Email Style', - 'enable_email_markup': 'Ota käyttöön merkintä', - 'reply_to_email': 'Reply-To Email', + 'Rendez le règlement de vos clients plus facile en ajoutant les markup schema.org à vos courriels.', + 'plain': 'Brut', + 'light': 'Clair', + 'dark': 'Sombre', + 'email_design': 'Modèle de courriel', + 'attach_pdf': 'Joindre PDF', + 'attach_documents': 'Joindre les Documents', + 'attach_ubl': 'Joindre UBL', + 'email_style': 'Style d\'email', + 'enable_email_markup': 'Activer le balisage', + 'reply_to_email': 'Adresse de réponse', 'reply_to_name': 'Reply-To Name', - 'bcc_email': 'BCC Email', - 'processed': 'Processed', - 'credit_card': 'Luottokortti', - 'bank_transfer': 'Pankkisiirto', - 'priority': 'Priority', - 'fee_amount': 'palkkio määrä', - 'fee_percent': 'Palkkio prosentti', - 'fee_cap': 'palkkio Cap', - 'limits_and_fees': 'Limits/palkkiot', - 'enable_min': 'Ota käyttöön min', - 'enable_max': 'Ota käyttöön max', + 'bcc_email': 'Courriel CCI', + 'processed': 'Traité', + 'credit_card': 'Carte de Crédit', + 'bank_transfer': 'Virement bancaire', + 'priority': 'Prioritée', + 'fee_amount': 'Montant des frais', + 'fee_percent': 'Pourcentage des frais', + 'fee_cap': 'Limite des frais', + 'limits_and_fees': 'Limites/Frais', + 'enable_min': 'Activer min', + 'enable_max': 'Activer max', 'min_limit': 'Min: :min', 'max_limit': 'Max: :max', 'min': 'Min', 'max': 'Max', - 'accepted_card_logos': 'Accepted kortti Logos', - 'credentials': 'Tunnukset', - 'update_address': 'Päivitä osoite', - 'update_address_help': 'Päivitä asiakkaan osoite annetuilla tiedoilla', - 'rate': 'Kanta', - 'tax_rate': 'Verokanta', - 'new_tax_rate': 'Uusi veromäärä', - 'edit_tax_rate': 'Muokkaa verokantaa', - 'created_tax_rate': 'Verokanta luotu onnistuneesti', - 'updated_tax_rate': 'Verokanta päivitetty onnistuneesti', - 'archived_tax_rate': 'Verokanta arkistoitu onnistuneesti', - 'deleted_tax_rate': 'Verokanta onnistuneesti poistettu', - 'restored_tax_rate': 'Verokanta onnistuneesti palautettu', + 'accepted_card_logos': 'Logos des cartes acceptées', + 'credentials': 'Identifiants', + 'update_address': 'Mettre à jour l\'adresse', + 'update_address_help': + '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', + 'edit_tax_rate': 'Éditer le taux de taxe', + 'created_tax_rate': 'Taux de taxe créé avec succès', + 'updated_tax_rate': 'Taux de taxe mis à jour avec succès', + 'archived_tax_rate': 'Taux de taxe archivé avec succès', + 'deleted_tax_rate': 'Le taux de taxe a été supprimé avec succès', + 'restored_tax_rate': 'Le taux de taxe a été restauré avec succès', 'archived_tax_rates': 'Successfully archived :value tax rates', 'deleted_tax_rates': 'Successfully deleted :value tax rates', 'restored_tax_rates': 'Successfully restored :value tax rates', - 'fill_products': 'Lisää automaattisesti tuotteita', + 'fill_products': 'Remplissage auto des produits', 'fill_products_help': - 'Tuotteen valinta täyttää kuvauksen ja hinnan automaattisesti', - 'update_products': 'Päivitä automaattisesti tuotteet', + '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': - 'Laskun päivittäminen päivittää tuotetietokannan automaattisesti', - 'convert_products': 'Convert tuotteet', + 'La mise à jour d\'une facture entraîne la mise à jour des produits', + 'convert_products': 'Convertir les produits', 'convert_products_help': - 'Muunna automaattisesti tuotehinnat asiakkaan valuuttaan', - 'fees': 'palkkiot', - 'limits': 'Limits', - 'provider': 'Tarjoaja', - 'company_gateway': 'maksu Gateway', - 'company_gateways': 'maksu Gateways', - 'new_company_gateway': 'uusi Gateway', - 'edit_company_gateway': 'muokkaa Gateway', - 'created_company_gateway': 'onnistuneesti luotu gateway', - 'updated_company_gateway': 'onnistuneesti päivitetty gateway', - 'archived_company_gateway': 'onnistuneesti arkistoitu gateway', - 'deleted_company_gateway': 'onnistuneesti poistettu gateway', - 'restored_company_gateway': 'onnistuneesti palautettu gateway', + 'Convertir automatiquement les prix des produits dans la devise du client', + 'fees': 'Frais', + 'limits': 'Limites', + 'provider': 'Fournisseur', + 'company_gateway': 'Passerelle de paiement', + 'company_gateways': 'Passerelles de paiements', + 'new_company_gateway': 'Nouvelle passerelle', + 'edit_company_gateway': 'Éditer la passerelle', + 'created_company_gateway': 'La passerelle a été créée avec succès', + 'updated_company_gateway': 'La passerelle a été mise à jour avec succès', + 'archived_company_gateway': 'La passerelle a été archivée avec succès', + 'deleted_company_gateway': 'La passerelle a été supprimée avec succès', + 'restored_company_gateway': 'La passerelle a été restaurée avec succès', 'archived_company_gateways': 'Successfully archived :value gateways', 'deleted_company_gateways': 'Successfully deleted :value gateways', 'restored_company_gateways': 'Successfully restored :value gateways', - 'continue_editing': 'Jatka muokkausta', - 'discard_changes': 'Discard Changes', - 'default_value': 'Oletus arvo', - 'disabled': 'Pois käytöstä', - 'currency_format': 'Valuutan muoto', - 'first_day_of_the_week': 'Viikon ensimmäinen päivä', - 'first_month_of_the_year': 'Vuoden ensimmäinen kuukausi', - 'sunday': 'sunnuntai', - 'monday': 'Maanantai', - 'tuesday': 'Tiistai', - 'wednesday': 'Keskiviikko', - 'thursday': 'Torstai', - 'friday': 'Perjantai', - 'saturday': 'Lauantai', - 'january': 'Tammikuu', - 'february': 'Helmikuu', - 'march': 'Maaliskuu', - 'april': 'Huhtikuu', - 'may': 'Toukokuu', - 'june': 'Kesäkuu', - 'july': 'Heinäkuu', - 'august': 'Elokuu', - 'september': 'Syyskuu', - 'october': 'Lokakuu', - 'november': 'Marraskuu', - 'december': 'Joulukuu', - 'symbol': 'Symboli', - 'ocde': 'Koodi', - 'date_format': 'Päivämäärän muoto', - 'datetime_format': 'Päivä-Aika esitysmuoto', - 'military_time': '24 tunnin aika', - 'military_time_help': 'Näytä 24 tunnin aikamuoto', - 'send_reminders': 'lähetä muistutukset', - 'timezone': 'Aikavyöhyke', + 'continue_editing': 'Continuer l\'édition', + 'discard_changes': 'Ignorer les modifications', + 'default_value': 'Valeur Par Défaut', + 'disabled': 'Désactivé', + 'currency_format': 'Format de devise', + 'first_day_of_the_week': 'Premier Jour de la Semaine', + 'first_month_of_the_year': 'Premier mois de l\'Année', + 'sunday': 'Dimanche', + 'monday': 'Lundi', + 'tuesday': 'Mardi', + 'wednesday': 'Mercredi', + 'thursday': 'Jeudi', + 'friday': 'Vendredi', + 'saturday': 'Samedi', + 'january': 'Janvier', + 'february': 'Février', + 'march': 'Mars', + 'april': 'Avril', + 'may': 'Mai', + 'june': 'Juin', + 'july': 'Juillet', + 'august': 'Août', + 'september': 'Septembre', + 'october': 'Octobre', + 'november': 'Novembre', + 'december': 'Décembre', + 'symbol': 'Symbole', + 'ocde': 'Code', + 'date_format': 'Format de la date', + 'datetime_format': 'Format date/heure', + 'military_time': '24H', + 'military_time_help': 'Affichage sur 24h', + 'send_reminders': 'Envoyer des rappels', + 'timezone': 'Fuseau horaire', 'filtered_by_project': 'Filtered by Project', - 'filtered_by_group': 'Filtered by ryhmä', - 'filtered_by_invoice': 'Filtered by Lasku', - 'filtered_by_client': 'Filtered by asiakas', - 'filtered_by_vendor': 'Suodatettu: Kauppias', - 'group_settings': 'ryhmä asetukset', - 'group': 'ryhmä', - 'groups': 'ryhmät', - 'new_group': 'uusi ryhmä', - 'edit_group': 'muokkaa ryhmä', - 'created_group': 'onnistuneesti luotu ryhmä', - 'updated_group': 'onnistuneesti päivitetty ryhmä', + 'filtered_by_group': 'Filtrer par groupe', + 'filtered_by_invoice': 'Filtré par Facture', + 'filtered_by_client': 'Filtré par Client', + 'filtered_by_vendor': 'Filtré par Vendeur', + 'group_settings': 'Paramètres de groupe', + 'group': 'Groupe', + 'groups': 'Groupes', + 'new_group': 'Nouveau Groupe', + 'edit_group': 'Éditer le groupe', + 'created_group': 'Le groupe a été créé avec succès', + 'updated_group': 'Le groupe a été mis à jour avec succès', 'archived_groups': 'Successfully archived :value groups', 'deleted_groups': 'Successfully deleted :value groups', 'restored_groups': 'Successfully restored :value groups', - 'archived_group': 'onnistuneesti arkistoitu ryhmä', - 'deleted_group': 'onnistuneesti poistettu ryhmä', - 'restored_group': 'onnistuneesti palautettu ryhmä', - 'upload_logo': 'Lataa Logo', - 'uploaded_logo': 'Logo onnistuneesti ladattu palvelimelle', + 'archived_group': 'Le groupe a été archivé avec succès', + 'deleted_group': 'Le groupe a été supprimé avec succès', + 'restored_group': 'Le groupe a été restauré avec succès', + 'upload_logo': 'Envoyer le logo', + 'uploaded_logo': 'Le logo a été envoyé avec succès', 'logo': 'Logo', - 'saved_settings': 'onnistuneesti saved asetus', - 'product_settings': 'Tuoteasetukset', - 'device_settings': 'Device asetukset', - 'defaults': 'Oletusasetukset', - 'basic_settings': 'Perusasetukset', - 'advanced_settings': 'Lisääasetuksia', - 'company_details': 'Yrityksen tiedot', - 'user_details': 'Käyttäjätiedot', - 'localization': 'Lokalisointi', - 'online_payments': 'Online maksut', - 'tax_rates': 'Verokannat', - 'notifications': 'Sähköposti-ilmoitukset', - 'import_export': 'Tuonti | Vienti', - 'custom_fields': 'Mukautetut kentät', - 'invoice_design': 'Laskun muotoilu', - 'buy_now_buttons': 'Osta nyt napit', - 'email_settings': 'Sähköpostin asetukset', - 'templates_and_reminders': 'Pohjat ja muistutukset', - 'credit_cards_and_banks': 'luotto Cards & Banks', - 'data_visualizations': 'Datan visualisaatiot', - 'price': 'Hinta', - 'email_sign_up': 'Email Sign Up', - 'google_sign_up': 'Google Sign Up', - 'thank_you_for_your_purchase': 'kiitos you sinun purchase!', - 'redeem': 'Redeem', - 'back': 'Back', - 'past_purchases': 'Past Purchases', - 'annual_subscription': 'Annual tilaus', + 'saved_settings': 'Les paramètres ont été sauvegardés avec succès', + 'product_settings': 'Réglages du produit', + 'device_settings': 'Paramètres de l\'appareil', + 'defaults': 'Valeurs par défaut', + 'basic_settings': 'Paramètres de base', + 'advanced_settings': 'Paramètres avancés', + 'company_details': 'Informations sur l’entreprise', + 'user_details': 'Utilisateur', + 'localization': 'Localisation', + 'online_payments': 'Paiements en ligne', + 'tax_rates': 'Taux de taxe', + 'notifications': 'Notifications', + 'import_export': 'Importer/Exporter', + 'custom_fields': 'Champs personnalisés', + 'invoice_design': 'Modèle de facture', + 'buy_now_buttons': 'Boutons Achetez maintenant', + 'email_settings': 'Paramètres de courriel', + 'templates_and_reminders': 'Modèles & Rappels', + 'credit_cards_and_banks': 'Cartes de crédit et banques', + 'data_visualizations': 'Visualisation des données', + 'price': 'Prix', + 'email_sign_up': 'Inscription par email', + 'google_sign_up': 'Inscription avec Google', + 'thank_you_for_your_purchase': 'Merci pour votre achat !', + 'redeem': 'Rembourser', + 'back': 'Retour', + 'past_purchases': 'Achats antérieurs', + 'annual_subscription': 'Abonnement annuel', 'pro_plan': 'Pro Plan', 'enterprise_plan': 'Enterprise Plan', - 'count_users': ':count käyttäjää', - 'upgrade': 'Upgrade', - 'please_enter_a_first_name': 'Anna etunimi', - 'please_enter_a_last_name': 'Anna sukunimi', + 'count_users': ':count utilisateur(s)', + 'upgrade': 'Mettre à niveau', + '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': - 'Ole hyvä ja hyväksy palveluehtomme sekä tietosuojakäytäntömme luodaksesi käyttäjätilin.', - 'i_agree_to_the': 'Hyväksyn', - 'terms_of_service': 'Käyttöehdot', - 'privacy_policy': 'Privacy Policy', - 'sign_up': 'Rekisteröidy', - 'account_login': 'Tiliin kirjautuminen', - 'view_website': 'Näytä verkkosivu', - 'create_account': 'Luo käyttäjätili', - 'email_login': 'Email Login', - 'create_new': 'luo uusi', - 'no_record_selected': 'ei record selected', - 'error_unsaved_changes': 'save tai peruuta sinun muutokset', - 'download': 'Lataa', - 'requires_an_enterprise_plan': 'Requires enterprise plan', - 'take_picture': 'Ota kuva', - 'upload_file': 'Lataa tiedosto palvelimelle', - 'document': 'Document', - 'documents': 'Asiakirjat', - 'new_document': 'Uusi asiakirja', - 'edit_document': 'Muokkaa asiakirjaa', - 'uploaded_document': 'onnistuneesti lähetetty dokumentti', - 'updated_document': 'onnistuneesti päivitetty dokumentti', - 'archived_document': 'onnistuneesti arkistoitu dokumentti', - 'deleted_document': 'onnistuneesti poistettu dokumentti', - 'restored_document': 'onnistuneesti palautettu dokumentti', + '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': 'Conditions d\'utilisation', + 'privacy_policy': 'Politique de confidentialité', + 'sign_up': 'S’enregistrer', + 'account_login': 'Connexion à votre compte', + 'view_website': 'Voir le site Web', + 'create_account': 'Créer un compte', + 'email_login': 'Email de connexion', + 'create_new': 'Créer', + 'no_record_selected': 'Aucun enregistrement sélectionné', + 'error_unsaved_changes': + 'Veuillez enregistrer ou annuler vos modifications', + 'download': 'Télécharger', + 'requires_an_enterprise_plan': 'Χρειάζεται πλάνο επιχείρησης', + 'take_picture': 'Φωτογραφίσετε', + 'upload_file': 'Envoyer un fichier', + 'document': 'Document', + 'documents': 'Documents', + 'new_document': 'Νέο Έγγραφο', + 'edit_document': 'Εκδώσετε Έγγραφο', + 'uploaded_document': 'Le document a été envoyé avec succès', + 'updated_document': 'Document mis à jour avec succès', + 'archived_document': 'Document archivé avec succès', + 'deleted_document': 'Le document a été supprimé avec succès', + 'restored_document': 'Le document a été restauré avec succès', 'archived_documents': 'Successfully archived :value documents', 'deleted_documents': 'Successfully deleted :value documents', 'restored_documents': 'Successfully restored :value documents', - 'no_history': 'ei History', - 'expense_date': 'Kulun päivämäärä', - 'pending': 'Odottaa vastausta', - 'expense_status_1': 'Logged', - 'expense_status_2': 'Pending', - 'expense_status_3': 'Invoiced', - 'converted': 'Muunnettu', - 'add_documents_to_invoice': 'Lisää asiakirjoja laskuun', - 'exchange_rate': 'Exchange Rate', - 'convert_currency': 'Muunna valuutta', - 'mark_paid': 'Merkitse maksetuksi', - 'category': 'Kategoria', - 'address': 'Osoite', - 'new_vendor': 'Uusi kauppias', - 'created_vendor': 'Kauppias luotin onnistuneesti', - 'updated_vendor': 'Kauppias on päivitetty onnistuneesti', - 'archived_vendor': 'Kauppias on arkistoitu onnistuneesti', - 'deleted_vendor': 'Kauppias on poistettu onnistuneesti', - 'restored_vendor': 'Onnistuneesti palautettu kauppias', - 'archived_vendors': ':count kauppias(ta) arkistoitu onnistuneesti', - 'deleted_vendors': ':count kauppias(ta) poistettu onnistuneesti', + 'no_history': 'Κανένα Ιστορικό', + 'expense_date': 'Date de la dépense', + 'pending': 'En attente', + 'expense_status_1': 'Σύνδεση', + 'expense_status_2': 'Σε εκκρεμότητα', + 'expense_status_3': 'Με τιμολόγιο', + 'converted': 'Converti', + 'add_documents_to_invoice': 'Ajouter un document à la facture', + 'exchange_rate': 'Taux de change', + 'convert_currency': 'Convertir la devise', + 'mark_paid': 'Marquer comme payé', + 'category': 'Catégorie', + 'address': 'Adresse', + 'new_vendor': 'Nouveau fournisseur', + 'created_vendor': 'Fournisseur créé avec succès', + 'updated_vendor': 'Founisseur mis à jour avec succès', + 'archived_vendor': 'Fournisseur archivé avec succès', + 'deleted_vendor': 'Fournisseur supprimé avec succès', + 'restored_vendor': 'Fournisseur restauré avec succès', + 'archived_vendors': ':count fournisseurs archivés avec succès', + 'deleted_vendors': ':count fournisseurs supprimés avec succès', 'restored_vendors': 'Successfully restored :value vendors', - 'new_expense': 'Lisää kulu', - 'created_expense': 'onnistuneesti luotu kulu', - 'updated_expense': 'onnistuneesti päivitetty kulu', - 'archived_expense': 'Kulu arkistoitu onnistuneesti', - 'deleted_expense': 'Kulu poistettu onnistuneesti', - 'restored_expense': 'onnistuneesti palautettu kulu', - 'archived_expenses': 'onnistuneesti arkistoitu kulut', - 'deleted_expenses': 'onnistuneesti poistettu kulut', + 'new_expense': 'Saisir une dépense', + 'created_expense': 'Dépense créée avec succès', + 'updated_expense': 'Dépense mise à jour avec succès', + 'archived_expense': 'Dépense archivée avec succès', + 'deleted_expense': 'Dépense supprimée avec succès', + 'restored_expense': 'Dépense restaurée avec succès', + 'archived_expenses': 'Dépenses archivées avec succès', + 'deleted_expenses': 'Dépenses supprimées avec succès', 'restored_expenses': 'Successfully restored :value expenses', - 'copy_shipping': 'Kopioi toimitus', - 'copy_billing': 'Kopioi laskutus', - 'design': 'malli', - 'failed_to_find_record': 'Failed find record', - 'invoiced': 'Laskutettu', - 'logged': 'Kirjattu', - 'running': 'Käynnissä', - 'resume': 'Jatka', - 'task_errors': 'Ole hyvä ja korjaa päällekäiset ajat', - 'start': 'Aloitus', - 'stop': 'Lopetus', - 'started_task': 'Onnistuneesti aloitettu tehtävä', - 'stopped_task': 'Tehtävä lopetettu onnistuneesti', - 'resumed_task': 'Onnistuneesti jatkettu tehtävää', - 'now': 'Nyt', - 'auto_start_tasks': 'Automaattinen tehtävien aloitus', - 'timer': 'Ajastin', - 'manual': 'Manuaalinen', - 'budgeted': 'Budjetoitu', - 'start_time': 'Aloitusaika', - 'end_time': 'Lopetusaika', - 'date': 'Päivämäärä', - 'times': 'Ajat', - 'duration': 'Kesto', - 'new_task': 'Uusi tehtävä', - 'created_task': 'Tehtävä luotu onnistuneesti', - 'updated_task': 'Tehtävä päivitetty onnistuneesti', - 'archived_task': 'Tehtävä arkistoitu onnistuneesti', - 'deleted_task': 'Tehtävä poistettu onnistuneesti', - 'restored_task': 'Tehtävä palautettu onnistuneesti', - 'archived_tasks': ':count tehtävää arkistoitu onnistuneesti', - 'deleted_tasks': ':count tehtävää poistettu onnistuneesti', + 'copy_shipping': 'Copier expédition', + 'copy_billing': 'Copier facturation', + 'design': 'Design', + 'failed_to_find_record': 'Élément non trouvé', + 'invoiced': 'Facturé', + 'logged': 'Enregistré', + 'running': 'En cours', + 'resume': 'Reprendre', + 'task_errors': 'Merci de corriger les horaires conflictuels', + 'start': 'Début', + 'stop': 'Fin', + 'started_task': 'Tâche démarrée avec succès', + 'stopped_task': 'Tâche stoppée avec succès', + 'resumed_task': 'Tâche relancée avec succès', + 'now': 'Maintenant', + 'auto_start_tasks': 'Démarrer automatiquement les tâches', + 'timer': 'Compteur', + 'manual': 'Manuel', + 'budgeted': 'Budgétisé', + 'start_time': 'Début', + 'end_time': 'Heure de fin', + 'date': 'Date', + 'times': 'Horaires', + 'duration': 'Durée', + 'new_task': 'Nouvelle tâche', + 'created_task': 'Tâche créée avec succès', + 'updated_task': 'Tâche mise à jour avec succès', + 'archived_task': 'Tâche archivée avec succès', + 'deleted_task': 'Tâche supprimée avec succès', + 'restored_task': 'Tâche restaurée avec succès', + 'archived_tasks': ':count tâches archivées avec succès', + 'deleted_tasks': ':count tâches supprimées avec succès', 'restored_tasks': 'Successfully restored :value tasks', - 'please_enter_a_name': 'Ole hyvä ja anna nimi', - 'budgeted_hours': 'Budjetoidut työtunnit', - 'created_project': 'Onnistuneesti luotu projekti', - 'updated_project': 'Onnistuneesti päivitetty projekti', - 'archived_project': 'Onnistuneesti arkistoitu projekti', - 'deleted_project': 'Projekti poistettu onnistuneesti', - 'restored_project': 'Onnistuneesti palautettu projekti', - 'archived_projects': 'Onnistuneesti arkistoitu :count projekti(a)', - 'deleted_projects': 'Onnistuneesti poistettu :count projekti(a)', + 'please_enter_a_name': 'Veuillez entrer un nom', + 'budgeted_hours': 'Heures budgétées', + 'created_project': 'Le projet a été créé avec succès', + 'updated_project': 'Le projet a été mis à jour avec succès', + 'archived_project': 'Le projet a été archivé avec succès', + 'deleted_project': 'Le projet a été supprimé avec succès', + 'restored_project': 'Le projet a été rétabli avec succès', + 'archived_projects': ':count projet(s) a (ont) été archivé(s)', + 'deleted_projects': + ':count projet(s) a (ont) été supprimé(s) avec succès', 'restored_projects': 'Successfully restored :value projects', - 'new_project': 'Uusi projekti', - 'thank_you_for_using_our_app': 'kiitos you using our app!', - 'if_you_like_it': 'If you like it please', - 'click_here': 'klikkaa tästä', - 'click_here_capital': 'Klikkaa tästä', - 'to_rate_it': 'rate it.', - 'average': 'Keskiarvo', - 'unapproved': 'Hyväksymättömät', - 'authenticate_to_change_setting': 'authenticate change this asetus', - 'locked': 'Locked', - 'authenticate': 'Authenticate', - 'please_authenticate': 'authenticate', - 'biometric_authentication': 'Biometric Authentication', - 'footer': 'Alatunniste', - 'compare': 'Compare', - 'hosted_login': 'Hosted Login', - 'selfhost_login': 'Selfhost Login', + 'new_project': 'Nouveau projet', + 'thank_you_for_using_our_app': 'Merci d\'utiliser notre app !', + 'if_you_like_it': 'Si vous appréciez, merci de', + 'click_here': 'cliquer ici', + 'click_here_capital': 'Cliquer ici', + 'to_rate_it': 'pour évaluer notre app.', + 'average': 'Moyenne', + 'unapproved': 'Non approuvé', + 'authenticate_to_change_setting': + 'Veuillez vous connecter pour changer ce paramètre', + 'locked': 'Verrouillé', + 'authenticate': 'Connexion', + 'please_authenticate': 'Veuillez vous connecter', + 'biometric_authentication': 'Connexion biométrique', + 'footer': 'Pied de page', + 'compare': 'Comparer', + 'hosted_login': 'Authentification Hosted', + 'selfhost_login': 'Authentification Selfhost', 'google_sign_in': 'Sign in with Google', - 'today': 'tänään', - 'custom_range': 'muokattu Range', - 'date_range': 'Päivämääräväli', - 'current': 'nykyinen', - 'previous': 'Previous', - 'current_period': 'nykyinen kausi', - 'comparison_period': 'Comparison kausi', - 'previous_period': 'Previous kausi', - 'previous_year': 'Previous Year', - 'compare_to': 'Compare', - 'last7_days': 'viime 7 päivää', - 'last_week': 'viime viikko', - 'last30_days': 'viime 30 päivää', - 'this_month': 'tämä kuukausi', - 'last_month': 'viime kuukausi', - 'this_year': 'tämä Year', - 'last_year': 'viime Year', - 'custom': 'Mukautettu', - 'clone_to_invoice': 'kloonaa Lasku', - 'clone_to_quote': 'Kopioi tarjous', + 'today': 'Aujourd\'hui', + 'custom_range': 'Intervalle personnalisé', + 'date_range': 'Intervalle de dates', + 'current': 'Actuel', + 'previous': 'Précédent', + 'current_period': 'Période actuelle', + 'comparison_period': 'Comparaison de période', + 'previous_period': 'Période précédente', + 'previous_year': 'Année précédente', + 'compare_to': 'Comparer à', + 'last7_days': '7 derniers jours', + 'last_week': 'Semaine dernière', + 'last30_days': '30 derniers jours', + 'this_month': 'Mois en cours', + 'last_month': 'Mois dernier', + 'this_year': 'Cette année', + 'last_year': 'Dernière année', + 'custom': 'Personnalisé', + 'clone_to_invoice': 'Dupliquer la facture', + 'clone_to_quote': 'Dupliquer en devis', 'clone_to_credit': 'Clone to Credit', - 'view_invoice': 'Katso lasku', - 'convert': 'Convert', - 'more': 'Lisää', - 'edit_client': 'Muokkaa asiakas', - 'edit_product': 'Muokkaa tuote', - 'edit_invoice': 'Muokkaa laskua', - 'edit_quote': 'Muokkaa tarjousta', - 'edit_payment': 'Muokkaa maksua', - 'edit_task': 'Muokkaa tehtävä', - 'edit_expense': 'muokkaa kulu', - 'edit_vendor': 'Muokkaa kauppiasta', - 'edit_project': 'Muokkaa projektia', - 'edit_recurring_quote': 'Muokkaa toistuvaa tarjousta', - 'billing_address': 'Laskutusosoite', - 'shipping_address': 'Toimitusosoite', - 'total_revenue': 'Kokonaistulot', - 'average_invoice': 'Laskujen keskiarvo', - 'outstanding': 'Maksamattomat laskut', - 'invoices_sent': ':count laskua lähetetty', - 'active_clients': 'Aktiiviset asiakkaat', - 'close': 'Sulje', - 'email': 'Sähköposti', - 'password': 'Salasana', + 'view_invoice': 'Voir la facture', + 'convert': 'Convertir', + 'more': 'Plus', + 'edit_client': 'Modifier ce client', + 'edit_product': 'Éditer ce produit', + 'edit_invoice': 'Modifier la facture', + 'edit_quote': 'Éditer ce devis', + 'edit_payment': 'Éditer le paiement', + 'edit_task': 'Éditer la tâche', + 'edit_expense': 'Éditer la dépensee', + 'edit_vendor': 'Éditer le fournisseur', + 'edit_project': 'Editer le projet', + 'edit_recurring_quote': 'Editer devis récurrent', + 'billing_address': 'Adresse de facturation', + 'shipping_address': 'Adresse de Livraison', + 'total_revenue': 'Revenu total', + 'average_invoice': 'Facture moyenne', + 'outstanding': 'Impayé', + 'invoices_sent': ':count factures envoyées', + 'active_clients': 'clients actifs', + 'close': 'Fermer', + 'email': 'Courriel', + 'password': 'Mot de passe', 'url': 'URL', - 'secret': 'Secret', - 'name': 'Nimi', - 'logout': 'Kirjaudu ulos', - 'login': 'Kirjaudu sisään', - 'filter': 'Suodata', - 'sort': 'Sort', - 'search': 'Etsi', - 'active': 'Aktiivinen', - 'archived': 'Arkistoitu', - 'deleted': 'Poistettu', - 'dashboard': 'Hallintapaneeli', - 'archive': 'Arkisto', - 'delete': 'Poista', - 'restore': 'Palauta', - 'refresh_complete': 'Refresh Complete', - 'please_enter_your_email': 'Anna sähköpostiosoitteesi', - 'please_enter_your_password': 'Anna salasanasi', - 'please_enter_your_url': 'Anna sinun URL-osoitteesi', - 'please_enter_a_product_key': 'Anna tuoteavain', - 'ascending': 'Ascending', - 'descending': 'Descending', - 'save': 'Tallenna', - 'an_error_occurred': 'virhe occurred', - 'paid_to_date': 'Maksettu tähän mennessä', - 'balance_due': 'Avoin lasku', - 'balance': 'Saldo', - 'overview': 'Yleiskatsaus', - 'details': 'Tiedot', - 'phone': 'Puhelin', - 'website': 'Kotisivu', - 'vat_number': 'ALV-numero', - 'id_number': 'Asiakasnumero', - 'create': 'Luo', - 'copied_to_clipboard': 'Copied :arvo clipboard', - 'error': 'Virhe', - 'could_not_launch': 'Could not launch', - 'contacts': 'Yhteystiedot', - 'additional': 'Lisäksi', - 'first_name': 'Etunimi', - 'last_name': 'Sukunimi', - 'add_contact': 'Lisää yhteystieto', - 'are_you_sure': 'Oletko varma?', - 'cancel': 'Peruuta', + 'secret': 'Clé secrète', + 'name': 'Nom', + 'logout': 'Se déconnecter', + 'login': 'Connexion', + 'filter': 'Filtrer', + 'sort': 'Trier', + 'search': 'Rechercher', + 'active': 'Actif', + 'archived': 'Archivé', + 'deleted': 'Supprimé', + 'dashboard': 'Tableau de bord', + 'archive': 'Archiver', + 'delete': 'Supprimer', + 'restore': 'Restaurer', + 'refresh_complete': 'Rafraichissement terminé', + 'please_enter_your_email': 'Entrez votre adresse e-mail', + 'please_enter_your_password': 'Entez votre mot de passe', + 'please_enter_your_url': 'Entrez votre URL', + 'please_enter_a_product_key': 'Entrez la clé produit', + 'ascending': 'Ascendant', + 'descending': 'Descendant', + 'save': 'Sauvegarder', + 'an_error_occurred': 'Une erreur s\'est produite', + 'paid_to_date': 'Payé à ce jour', + 'balance_due': 'Montant dû', + 'balance': 'Solde', + 'overview': 'Vue d\'ensemble', + 'details': 'Détails', + 'phone': 'Téléphone', + 'website': 'Site Web', + 'vat_number': 'Numéro de TVA', + 'id_number': 'Numéro ID', + 'create': 'Créer', + 'copied_to_clipboard': ':value a été copié au presse-papier', + 'error': 'Erreur', + 'could_not_launch': 'Lancement impossible', + 'contacts': 'Informations de contact', + 'additional': 'Additionnel', + 'first_name': 'Prénom', + 'last_name': 'Nom', + 'add_contact': 'Ajouter un contact', + 'are_you_sure': 'Voulez-vous vraiment effectuer cette action ?', + 'cancel': 'Annuler', 'ok': 'Ok', - 'remove': 'Remove', - 'email_is_invalid': 'Email is invalid', - 'product': 'Tuote', - 'products': 'Tuotteet', - 'new_product': 'Uusi tuote', - 'created_product': 'Tuote on luotu onnistuneesti', - 'updated_product': 'Tuote on päivitetty onnistuneesti', - 'archived_product': 'Tuote on arkistoitu onnistuneesti', - 'deleted_product': 'onnistuneesti poistettu tuote', - 'restored_product': 'onnistuneesti palautettu tuote', - 'archived_products': 'onnistuneesti arkistoitu :count tuotteet', - 'deleted_products': 'onnistuneesti poistettu :count tuotteet', + 'remove': 'Supprimer', + 'email_is_invalid': 'L\'adresse de courriel n\'est pas correcte', + 'product': 'Produit', + 'products': 'Produits', + 'new_product': 'Nouvel article', + 'created_product': 'Produit créé avec succès', + 'updated_product': 'Produit mis à jour avec succès', + 'archived_product': 'Produit archivé avec succès', + 'deleted_product': 'Le produit a été supprimé avec succès', + 'restored_product': 'Le produit a été rétabli avec succès', + 'archived_products': ':count produits archivés avec succès', + 'deleted_products': ':count produit(s) supprimé(s) avec succès', 'restored_products': 'Successfully restored :value products', - 'product_key': 'Tuote', - 'notes': 'Viestit', - 'cost': 'Hinta', - 'client': 'Asiakas', - 'clients': 'Asiakkaat', - 'new_client': 'Uusi asiakas', - 'created_client': 'Luotin onnistuneesti asiakas', - 'updated_client': 'Asiakas on päivitetty onnistuneesti', - 'archived_client': 'Asiakas on arkistoitu onnistuneesti', - 'archived_clients': ':count asiakas(ta) arkistoitu onnistuneesti', - 'deleted_client': 'Asiakas on poistettu onnistuneesti', - 'deleted_clients': ':count asiakas(ta) poistettu onnistuneesti', - 'restored_client': 'Asiakas palautettu onnistuneesti', + 'product_key': 'Produit', + 'notes': 'Notes', + 'cost': 'Coût', + 'client': 'Client', + 'clients': 'Clients', + 'new_client': 'Nouveau client', + 'created_client': 'Client créé avec succès', + 'updated_client': 'Client modifié avec succès', + 'archived_client': 'Client archivé avec succès', + 'archived_clients': ':count clients archivés avec succès', + 'deleted_client': 'Client supprimé avec succès', + 'deleted_clients': ':count clients supprimés avec succès', + 'restored_client': 'Client restauré avec succès', 'restored_clients': 'Successfully restored :value clients', - 'address1': 'Katu', - 'address2': 'Asunto', - 'city': 'Kaupunki', - 'state': 'Lääni', - 'postal_code': 'Postinumero', - 'country': 'Maa', - 'invoice': 'Lasku', - 'invoices': 'Laskut', - 'new_invoice': 'Uusi lasku', - 'created_invoice': 'Lasku luotiin onnistuneesti', - 'updated_invoice': 'Lasku päivitettiin onnistuneesti', - 'archived_invoice': 'Lasku arkistoitiin onnistuneesti', - 'deleted_invoice': 'Lasku poistettiin onnistuneesti', - 'restored_invoice': 'Lasku palautettu onnistuneesti', - 'archived_invoices': ':count asiakas(ta) arkistoitu onnistuneesti', - 'deleted_invoices': ':count laskua poistettiin onnistuneesti', + 'address1': 'Rue', + 'address2': 'Appt/Bâtiment', + 'city': 'Ville', + 'state': 'Région/Département', + 'postal_code': 'Code postal', + 'country': 'Pays', + 'invoice': 'Facture', + 'invoices': 'Factures', + 'new_invoice': 'Nouvelle facture', + 'created_invoice': 'Facture créée avec succès', + 'updated_invoice': 'Facture modifiée avec succès', + 'archived_invoice': 'Facture archivée avec succès', + 'deleted_invoice': 'Facture supprimée avec succès', + 'restored_invoice': 'Facture restaurée avec succès', + 'archived_invoices': ':count factures archivées avec succès', + 'deleted_invoices': ':count factures supprimées avec succès', 'restored_invoices': 'Successfully restored :value invoices', - 'emailed_invoice': 'Lasku lähetettiin onnistuneesti', - 'emailed_payment': 'onnistuneesti emailed maksu', - 'amount': 'Määrä', - 'invoice_number': 'Laskun numero', - 'invoice_date': 'Laskun päivämäärä', - 'discount': 'Alennus', - 'po_number': 'Tilaus numero', - 'terms': 'Ehdot', - 'public_notes': 'Julkiset muistiinpanot', - 'private_notes': 'Yksityiset muistiinpanot', - 'frequency': 'Kuinka usein', - 'start_date': 'Alkamispäivämäärä', - 'end_date': 'Loppupäivämäärä', - 'quote_number': 'Tarjous numero', - 'quote_date': 'Tarjouksen päivämäärä', - 'valid_until': 'Voimassa', - 'items': 'Items', - 'partial_deposit': 'Partial/Deposit', - 'description': 'Kuvaus', - 'unit_cost': 'Kappalehinta', - 'quantity': 'Määrä', - 'add_item': 'Lisää nimike', - 'contact': 'Yhteyshenkilö', - 'work_phone': 'Puhelin', - 'total_amount': 'yhteensä määrä', - 'pdf': 'PDF', - 'due_date': 'Eräpäivä', - 'partial_due_date': 'Partial eräpäivä', - 'status': 'Tila', - 'invoice_status_id': 'Lasku tila', - 'quote_status': 'Tarjouksen tila', - 'click_plus_to_add_item': 'Napsauta + lisätäksesi nimikkeen', - 'click_plus_to_add_time': 'Napsauta + lisätäksesi ajan', - 'count_selected': ':count selected', - 'total': 'Loppusumma', - 'percent': 'Prosentti', - 'edit': 'Muokkaa', - 'dismiss': 'Dismiss', - 'please_select_a_date': 'valitse päivämäärä', - 'please_select_a_client': 'valitse asiakas', - 'please_select_an_invoice': 'valitse lasku', - 'task_rate': 'Tehtävän luokitus', - 'settings': 'Asetukset', - 'language': 'Kieli', - 'currency': 'Valuutta', - 'created_at': 'Luotu', - 'created_on': 'Created On', - 'updated_at': 'päivitetty', - 'tax': 'Vero', - 'please_enter_an_invoice_number': 'Ayötä laskunumero', - 'please_enter_a_quote_number': 'Ole hyvä ja anna tarjouksen numero', - 'past_due': 'Past Due', - 'draft': 'Luonnos', - 'sent': 'Lähetetty', - 'viewed': 'Nähty', - 'approved': 'Hyväksytty', - 'partial': 'Osittainen/Talletus', - 'paid': 'Maksettu', - 'mark_sent': 'Merkitse lähetetyksi', - 'marked_invoice_as_sent': 'Onnistuneesti merkitty lasku lähetetyksi', - 'marked_invoice_as_paid': 'Lasku merkittiin lähetetyksi onnistuneesti', - 'marked_invoices_as_sent': 'Laskut merkittiin lähetetyksi onnistuneesti', - 'marked_invoices_as_paid': 'Laskut merkittiin lähetetyksi onnistuneesti', - 'done': 'Valmis', + 'emailed_invoice': 'Facture envoyée par courriel avec succès', + 'emailed_payment': 'Paiement envoyé par email avec succès', + 'amount': 'Montant', + 'invoice_number': 'Numéro de facture', + 'invoice_date': 'Date de facture', + 'discount': 'Remise', + 'po_number': 'N° de Bon de Commande', + 'terms': 'Conditions', + 'public_notes': 'Note publique', + 'private_notes': 'Notes personnelles', + 'frequency': 'Fréquence', + 'start_date': 'Date de début', + 'end_date': 'Date de fin', + 'quote_number': 'Devis numéro', + 'quote_date': 'Date du devis', + 'valid_until': 'Valide jusqu\'au', + 'items': 'Articles', + 'partial_deposit': 'Depot Partial', + 'description': 'Description', + 'unit_cost': 'Coût unitaire', + 'quantity': 'Quantité', + 'add_item': 'Ajouter Article', + 'contact': 'Contact', + 'work_phone': 'Téléphone', + 'total_amount': 'Montant Total', + 'pdf': 'Fichier PDF', + 'due_date': 'Date d\'échéance', + 'partial_due_date': 'Paiement partiel', + 'status': 'Statut', + 'invoice_status_id': 'Etat de Facture', + 'quote_status': 'État du devis', + 'click_plus_to_add_item': 'Cliquer pour ajouter un article (objet)', + 'click_plus_to_add_time': 'Cliquez sur + pour ajouter du temps', + 'count_selected': 'nombre selectionne', + 'total': 'Total', + 'percent': 'Pourcent', + 'edit': 'Éditer', + 'dismiss': 'Quitter', + 'please_select_a_date': 'Sélectionnez une date', + 'please_select_a_client': 'Sélectionnez un client', + 'please_select_an_invoice': 'Sélectionnez une facture', + 'task_rate': 'Taux de tâche', + 'settings': 'Paramètres', + 'language': 'Langue', + 'currency': 'Devise', + 'created_at': 'Date de création', + 'created_on': 'Created On', + 'updated_at': 'Mis à jour', + 'tax': 'Taxe', + 'please_enter_an_invoice_number': 'Sélectionnez un numéro de facture', + 'please_enter_a_quote_number': 'Sélectionner un numéro de devis', + 'past_due': 'En retard', + 'draft': 'Brouillon', + 'sent': 'Envoyé', + 'viewed': 'Vu', + 'approved': 'Approuvé', + 'partial': 'Partiel/dépôt', + 'paid': 'Payé', + 'mark_sent': 'Marquer comme envoyé', + 'marked_invoice_as_sent': 'Facture marquee comme envoyee avec succes', + 'marked_invoice_as_paid': 'Facture marquée comme envoyée', + 'marked_invoices_as_sent': 'Les factures ont été marquées envoyées', + 'marked_invoices_as_paid': 'Factures marquées comme envoyées', + 'done': 'Terminé', 'please_enter_a_client_or_contact_name': - 'Anna asiakkaan tai yhteyshenkilön nimi', - 'dark_mode': 'Tumma tila', + 'Veuillez introduire un nom de client', + 'dark_mode': 'Mode sombre', 'restart_app_to_apply_change': - 'Uudelleenkäynnistä sovellus ottaaksesi muutoksen käyttöön', - 'refresh_data': 'Refresh Data', - 'blank_contact': 'Blank kontakti', - 'activity': 'Toiminta', - 'no_records_found': 'ei records found', - 'clone': 'Kopioi', - 'loading': 'Loading', - 'industry': 'Toimiala', - 'size': 'Koko', - 'payment_terms': 'Maksuehdot', - 'payment_date': 'Maksun päivämäärä', - 'payment_status': 'maksu tila', - 'payment_status_1': 'Pending', - 'payment_status_2': 'Voided', - 'payment_status_3': 'Failed', - 'payment_status_4': 'Completed', - 'payment_status_5': 'Partially Refunded', - 'payment_status_6': 'Refunded', + 'Recommencer k\'app pour introduire l\'app change', + 'refresh_data': 'Rafraîchir les données', + 'blank_contact': 'Details pour contacter la Banque', + 'activity': 'Activité', + 'no_records_found': 'Pas d\'archives trouves', + 'clone': 'Dupliquer', + 'loading': 'Chargement', + 'industry': 'Champ', + 'size': 'Taille', + 'payment_terms': 'Conditions de paiement', + 'payment_date': 'Date du paiement', + 'payment_status': 'État du paiement', + 'payment_status_1': 'En attente', + 'payment_status_2': 'Annulé', + 'payment_status_3': 'Échoué', + 'payment_status_4': 'Complété', + 'payment_status_5': 'Partiellement remboursé', + 'payment_status_6': 'Remboursement', 'payment_status_-1': 'Unapplied', 'payment_status_-2': 'Partially Unapplied', 'net': 'Net', - 'client_portal': 'Asiakasportaali', - 'show_tasks': 'Näytä tehtävät', - 'email_reminders': 'Email muistutukset', - 'enabled': 'Enabled', - 'recipients': 'Recipients', - 'initial_email': 'Initial Email', - 'first_reminder': 'Ensimmäinen muistutus', - 'second_reminder': 'Toinen muistutus', - 'third_reminder': 'Kolmas muistutus', - 'reminder1': 'ensimmäinen muistutus', - 'reminder2': 'toinen muistutus', - 'reminder3': 'Third muistutus', - 'template': 'Malli', - 'send': 'lähetä', - 'subject': 'Otsikko', - 'body': 'Sisältö', - 'send_email': 'Lähetä sähköposti', - 'email_receipt': 'Lähetä maksukuitti sähköpostilla asiakkaalle', - 'auto_billing': 'Automaattinen laskutus', - 'button': 'Button', - 'preview': 'Esikatselu', - 'customize': 'Mukauta', - 'history': 'Historia', - 'payment': 'Maksu', - 'payments': 'Maksut', - 'refunded': 'Refunded', - 'payment_type': 'Maksutyyppi', - 'transaction_reference': 'Tapahtuman viite', - 'enter_payment': 'Kirjaa maksu', - 'new_payment': 'Uusi maksutapahtuma', - 'created_payment': 'Maksu on luotu onnistuneesti', - 'updated_payment': 'Maksu päivitetty onnistuneesti', - 'archived_payment': 'Maksu on arkistoitu onnistuneesti', - 'deleted_payment': 'Maksu on poistettu onnistuneesti', - 'restored_payment': 'Maksu palautettu onnistuneesti', - 'archived_payments': ':count maksu(a) arkistoitu onnistuneesti', - 'deleted_payments': ':count maksu(a) poistettu onnistuneesti', + 'client_portal': 'Portail client', + 'show_tasks': 'Afficher des taches', + 'email_reminders': 'Messages de rappel par courriel', + 'enabled': 'Activé', + 'recipients': 'Destinataires', + 'initial_email': 'Courriel initial', + 'first_reminder': 'Premier rappel', + 'second_reminder': 'Second rappel', + 'third_reminder': 'Troisième rappel', + 'reminder1': 'Premier Message de Rappel', + 'reminder2': 'Deuxieme Message de Rappel', + 'reminder3': 'Troisieme Message de Rappel', + 'template': 'Modèle', + 'send': 'Envoyer', + 'subject': 'Sujet', + 'body': 'Corps', + 'send_email': 'Envoyer courriel', + 'email_receipt': 'Envoyer le reçu par courriel au client', + 'auto_billing': 'Debit Automatique', + 'button': 'Bouton', + 'preview': 'Prévisualisation', + 'customize': 'Personnaliser', + 'history': 'Historique', + 'payment': 'Paiement', + 'payments': 'Paiements', + 'refunded': 'Remboursé', + 'payment_type': 'Type de paiement', + 'transaction_reference': 'Référence transaction', + 'enter_payment': 'Saisissez un paiement', + 'new_payment': 'Entrer un paiement', + 'created_payment': 'Paiement créé avec succès', + 'updated_payment': 'Paiement mis à jour avec succès', + 'archived_payment': 'Paiement archivé avec succès', + 'deleted_payment': 'Paiement supprimé avec succès', + 'restored_payment': 'Paiement restauré avec succès', + 'archived_payments': ':count paiement archivés avec succès', + 'deleted_payments': ':count paiements supprimés avec succès', 'restored_payments': 'Successfully restored :value payments', - 'quote': 'Tarjous', - 'quotes': 'Tarjoukset', - 'new_quote': 'Uusi tarjous', - 'created_quote': 'Tarjous on luotu onnistuneesti', - 'updated_quote': 'Tarjous on päivitetty onnistuneesti', - 'archived_quote': 'Tarjous on arkistoitu onnistuneesti', - 'deleted_quote': 'Tarjous on poistettu onnistuneesti', - 'restored_quote': 'Tarjous palautettu onnistuneesti', - 'archived_quotes': ':count tarjous(ta) arkistoitu onnistuneesti', - 'deleted_quotes': ':count tarjous(ta) poistettu onnistuneesti', + 'quote': 'Devis', + 'quotes': 'Devis', + 'new_quote': 'Nouveau devis', + 'created_quote': 'Devis créé avec succès', + 'updated_quote': 'Devis mis à jour avec succès', + 'archived_quote': 'Devis archivé avec succès', + 'deleted_quote': 'Devis supprimé avec succès', + 'restored_quote': 'Devis restauré avec succès', + 'archived_quotes': ':count devis archivés avec succès', + 'deleted_quotes': ':count devis supprimés avec succès', 'restored_quotes': 'Successfully restored :value quotes', - 'expense': 'Kulu', - 'expenses': 'Kulut', - 'vendor': 'Kauppias', - 'vendors': 'Kauppiaat', - 'task': 'Tehtävä', - 'tasks': 'Tehtävät', - 'project': 'Projekti', - 'projects': 'Projektit', - 'activity_1': ':käyttäjä loi asiakkaan :client', - 'activity_2': ':käyttäjä arkistoi asiakkaan :client', - 'activity_3': ':käyttäjä poisti asiakkaan :client', - 'activity_4': ':käyttäjä loi laskun :invoice', - 'activity_5': ':käyttäjä päivitti laskun :invoice', - 'activity_6': ':käyttäjä emailed lasku :lasku for :asiakas :kontakti', - 'activity_7': ':kontakti katsoi lasku :lasku for :asiakas', - 'activity_8': ':käyttäjä arkistoi laskun :invoice', - 'activity_9': ':käyttäjä poisti laskun :invoice', + 'expense': 'Dépense', + 'expenses': 'Dépenses', + 'vendor': 'Fournisseur', + 'vendors': 'Fournisseurs', + 'task': 'Tâche', + 'tasks': 'Tâches', + 'project': 'Projet', + 'projects': 'Projets', + 'activity_1': ':user a créé le client :client', + 'activity_2': ':user a archivé le client :client', + 'activity_3': ':user a supprimé le client :client', + 'activity_4': ':user a créé la facture :invoice', + 'activity_5': ':user a mis à jour la facture :invoice', + 'activity_6': ':user a mailé la facture :invoice pour :client à :contact', + 'activity_7': ':contact a vu la facture :invoice pour :client', + 'activity_8': ':user a archivé la facture :invoice', + 'activity_9': ':user a supprimé la facture :invoice', 'activity_10': - ':kontakti entered maksu :maksu for :payment_amount on lasku :lasku for :asiakas', - 'activity_11': ':käyttäjä päivitti maksun :maksu', - 'activity_12': ':käyttäjä arkistoi maksun :maksu', - 'activity_13': ':käyttäjä poisti maksun :maksu', - 'activity_14': ':käyttäjä syötti :luotto hyvityksen', - 'activity_15': ':käyttäjä päivitti :luotto hyvityksen', - 'activity_16': ':käyttäjä arkistoi :luotto hyvityksen', - 'activity_17': ':käyttäjä poisti :luotto hyvityksen', - 'activity_18': ':user loi tarjouksen :quote', - 'activity_19': ':user päivitti tarjouksen :quote', - 'activity_20': - ':user lähetti sähköpostitse tarjouksen :quote asiakkaan :client yhteyshenkilölle :contact', - 'activity_21': ':contact luki tarjouksen :quote', - 'activity_22': ':user arkistoi tarjouksen :quote', - 'activity_23': ':user poisti tarjouksen :quote', - 'activity_24': ':user palautti tarjouksen :quote', - 'activity_25': ':käyttäjä palautti laskun :invoice', - 'activity_26': ':käyttäjä palautti asiakkaan :client', - 'activity_27': ':käyttäjä palautti maksun :maksu', - 'activity_28': ':käyttäjä palautti hyvityksen :luotto', - 'activity_29': ':contact hyväksyi tarjouksen :quote asiakkaalle :client', - 'activity_30': ':käyttäjä loi kauppiaan :vendor', - 'activity_31': ':käyttäjä arkistoi kauppiaan :vendor', - 'activity_32': ':käyttäjä poisti kauppiaan :vendor', - 'activity_33': ':käyttäjä palautti kauppiaan :vendor', - 'activity_34': ':käyttäjä loi kulun :kulu', - 'activity_35': ':käyttäjä arkistoi kulun :kulu', - 'activity_36': ':käyttäjä poisti kulun :kulu', - 'activity_37': ':käyttäjä palautti kulun :kulu', - 'activity_39': ':käyttäjä perui :payment_amount maksun :maksu', + ':contact a saisi un paiement :payment concernant :invoice pour :client', + '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', + 'activity_14': ':user a entré le crédit :credit', + 'activity_15': ':user a mis à jour le crédit :credit', + 'activity_16': ':user a archivé le crédit :credit', + 'activity_17': ':user a supprimé le crédit :credit', + 'activity_18': ':user a créé le devis :quote', + 'activity_19': ':user a mis à jour le devis :quote', + 'activity_20': ':user a mailé un devis :quote pour :client à :contact', + 'activity_21': ':contact a lu le devis :quote', + 'activity_22': ':user a archivé le devis :quote', + 'activity_23': ':user a supprimé le devis :quote', + 'activity_24': ':user a restauré le devis :quote', + 'activity_25': ':user a restauré la facture :invoice', + 'activity_26': ':user a restauré le client :client', + 'activity_27': ':user a restauré le paiement :payment', + 'activity_28': ':user a restauré le crédit :credit', + 'activity_29': ':contact a approuvé le devis :quote pour :client', + 'activity_30': ':user a créé le fournisseur :vendor', + 'activity_31': ':user a archivé le fournisseur :vendor', + 'activity_32': ':user a supprimé le fournisseur :vendor', + 'activity_33': ':user a restauré le fournisseur :vendor', + 'activity_34': ':user a créé la dépense :expense', + 'activity_35': ':user a archivé la dépense :expense', + 'activity_36': ':user a supprimé la dépense :expense', + 'activity_37': ':user a restauré la dépense :expense', + 'activity_39': ':user a annulé un paiement de :payment_amount (:payment)', 'activity_40': - ':käyttäjä refunded :adjustment a :payment_amount maksu :maksu', - 'activity_41': ':payment_amount maksu (:maksu) failed', - 'activity_42': ':käyttäjä loi tehtävän :tehtävä', - 'activity_43': ':käyttäjä päivitti tehtävän :tehtävä', - 'activity_44': ':käyttäjä arkistoi tehtävän :tehtävä', - 'activity_45': ':käyttäjä poisti tehtävän :tehtävä', - 'activity_46': ':käyttäjä palautti tehtävän :tehtävä', - 'activity_47': ':käyttäjä päivitti kulun :kulu', - 'activity_48': ':käyttäjä päivitti tehtävän :tiketti', - 'activity_49': ':käyttäjä sulki tiketin :tiketti', - 'activity_50': ':käyttäjä mergesi tiketin :tiketti', - 'activity_51': ':käyttäjä jakoi tiketin :tiketti', - 'activity_52': ':kontakti avasi tiketin :tiketti', - 'activity_53': ':kontakti reopened tiketti :tiketti', - 'activity_54': ':käyttäjä reopened tiketti :tiketti', - 'activity_55': ':kontakti vastasi tiketti :tiketti', - 'activity_56': ':käyttäjä katsoi tiketti :tiketti', - 'activity_57': 'System failed to email invoice :invoice', + ':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', + 'activity_44': ':user a archivé la tâche :task', + 'activity_45': ':user a supprimé la tâche :task', + 'activity_46': ':user a restauré la tâche :task', + 'activity_47': ':user a mis à jour la dépense :expense', + 'activity_48': ':user a mis à jour le ticket :ticket', + 'activity_49': ':user a fermé le ticket :ticket', + 'activity_50': ':user a fusionner le ticket :ticket', + 'activity_51': ':user a divisé le :ticket', + 'activity_52': ':contact a ouvert le ticket :ticket', + 'activity_53': ':contact a ré-ouvert le ticket :ticket', + 'activity_54': ':user a ré-ouvert le ticket :ticket', + 'activity_55': ':contact a répondu au ticket :ticket', + 'activity_56': ':user a visualisé le ticket :ticket', + 'activity_57': 'La facture :invoice n\'a pu être envoyée', 'activity_58': ':user reversed invoice :invoice', 'activity_59': ':user cancelled invoice :invoice', 'activity_60': ':contact viewed quote :quote', @@ -21604,112 +21831,137 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_82': ':user archived subscription :subscription', 'activity_83': ':user deleted subscription :subscription', 'activity_84': ':user restored subscription :subscription', - 'one_time_password': 'Kertakäyttöinen salasana', - 'emailed_quote': 'Tarjous on lähetetty onnistuneesti', + 'one_time_password': 'Mot de passe à usage unique', + 'emailed_quote': 'Devis envoyé par courriel avec succès', 'emailed_credit': 'Successfully emailed credit', - 'marked_quote_as_sent': 'Tarjous on onnistuneesti merkitty lähetetyksi', + 'marked_quote_as_sent': 'Le devis sélectionné a été envoyé avec succès', 'marked_credit_as_sent': 'Successfully marked credit as sent', - 'expired': 'Vanhentunut', - 'all': 'Kaikki', - 'select': 'Valitse', - 'long_press_multiselect': 'Long-press Multiselect', - 'custom_value1': 'muokattu Value', - 'custom_value2': 'Mukautettu arvo', - 'custom_value3': 'Muokattu arvo 3', - 'custom_value4': 'Muokattu arvo 4', - 'email_style_custom': 'Muokattu email tyyli', - 'custom_message_dashboard': 'Muokattu Etusivu viesti', - 'custom_message_unpaid_invoice': 'Muokattu Avoin Lasku viesti', - 'custom_message_paid_invoice': 'Muokattu Maksettu Lasku viesti', - 'custom_message_unapproved_quote': 'Oma Hyväksymätön tarjous -viesti', + 'expired': 'Expiré', + 'all': 'Tous', + 'select': 'Sélectionner', + 'long_press_multiselect': 'Multisélection par pression longue', + 'custom_value1': 'Valeur Personnalisée 1', + 'custom_value2': 'Valeur Personnalisée 2', + 'custom_value3': 'Valeur personnalisée 3', + 'custom_value4': 'Valeur personnalisée 4', + 'email_style_custom': 'Style de courriel personnalisé', + 'custom_message_dashboard': 'Message personnalisé du tableau de bord', + 'custom_message_unpaid_invoice': + 'Message personnalisé pour une facture impayée', + 'custom_message_paid_invoice': + 'Message personnalisé pour un paiement de facture', + 'custom_message_unapproved_quote': + 'Message personnalisé pour un devis refusé', 'lock_invoices': 'Lock Invoices', - 'translations': 'Käännökset', - 'task_number_pattern': 'Task Number Pattern', - 'task_number_counter': 'Task Number Counter', - 'expense_number_pattern': 'Expense Number Pattern', - 'expense_number_counter': 'Expense Number Counter', - 'vendor_number_pattern': 'Vendor Number Pattern', - 'vendor_number_counter': 'Kauppiaan numerolaskuri', - 'ticket_number_pattern': 'Ticket Number Pattern', - 'ticket_number_counter': 'Ticket Number Counter', - 'payment_number_pattern': 'Payment Number Pattern', - 'payment_number_counter': 'Payment Number Counter', - 'invoice_number_pattern': 'Invoice Number Pattern', - 'invoice_number_counter': 'Laskun järjestysnumero', - 'quote_number_pattern': 'Tarjouksen numeroinnin kuvio', - 'quote_number_counter': 'Tarjouksen järjestysnumero', - 'client_number_pattern': 'Credit Number Pattern', - 'client_number_counter': 'Credit Number Counter', - 'credit_number_pattern': 'Credit Number Pattern', - 'credit_number_counter': 'Credit Number Counter', - 'reset_counter_date': 'Reset Counter Date', + 'translations': 'Traductions', + 'task_number_pattern': 'Modèle de numéro de tâche', + 'task_number_counter': 'Modèle de compteur de tâche', + 'expense_number_pattern': 'Modèle de numéro de dépense', + 'expense_number_counter': 'Modèle de compteur de dépense', + 'vendor_number_pattern': 'Modèle de numéro de fournisseur', + 'vendor_number_counter': 'Modèle de compteur de fournisseur', + 'ticket_number_pattern': 'Modèle de numéro de ticket', + 'ticket_number_counter': 'Modèle de compteur de ticket', + 'payment_number_pattern': 'Modèle de numéro de paiement', + 'payment_number_counter': 'Modèle de compteur de paiement', + 'invoice_number_pattern': 'Modèle de numéro de facture', + 'invoice_number_counter': 'Compteur du numéro de facture', + 'quote_number_pattern': 'Modèle de numéro de devis', + 'quote_number_counter': 'Compteur du numéro de devis', + 'client_number_pattern': 'Modèle de numéro de crédit', + 'client_number_counter': 'Modèle de compteur de crédit', + 'credit_number_pattern': 'Modèle de numéro de crédit', + 'credit_number_counter': 'Modèle de compteur de crédit', + 'reset_counter_date': 'Remise à zéro du compteur de date', 'counter_padding': 'Counter Padding', - 'shared_invoice_quote_counter': 'Jaettu lasku tarjous laskuri', - 'default_tax_name_1': 'Default Tax Name 1', - 'default_tax_rate_1': 'Default Tax Rate 1', - 'default_tax_name_2': 'Default Tax Name 2', - 'default_tax_rate_2': 'Default Tax Rate 2', - 'default_tax_name_3': 'Default Tax Name 3', - 'default_tax_rate_3': 'Default Tax Rate 3', - 'email_subject_invoice': 'Email Invoice Subject', - 'email_subject_quote': 'Tarjoussähköpostin otsikko', - 'email_subject_payment': 'Email Payment Subject', + 'shared_invoice_quote_counter': 'Shared Invoice Quote Counter', + 'default_tax_name_1': 'Nom par défaut de la taxe 1', + 'default_tax_rate_1': 'Taux par défaut de la taxe 1', + 'default_tax_name_2': 'Nom par défaut de la taxe 2', + 'default_tax_rate_2': 'Taux par défaut de la taxe 2', + 'default_tax_name_3': 'Nom par défaut de la taxe 3', + 'default_tax_rate_3': 'Taux par défaut de la taxe 3', + 'email_subject_invoice': 'Sujet du courriel de la facture', + 'email_subject_quote': 'Sujet du courriel du devis', + 'email_subject_payment': 'Sujet du courriel du paiement', 'email_subject_payment_partial': 'Email Partial Payment Subject', 'show_table': 'Show Table', 'show_list': 'Show List', - 'client_city': 'Client City', - 'client_state': 'Client State', - 'client_country': 'Client Country', - 'client_is_active': 'Client is Active', - 'client_balance': 'Client Balance', + 'client_city': 'Ville du client', + 'client_state': 'Région du client', + 'client_country': 'Pays du client', + 'client_is_active': 'Le client est actif', + 'client_balance': 'Solde du client', 'client_address1': 'Client Street', 'client_address2': 'Client Apt/Suite', 'vendor_address1': 'Vendor Street', 'vendor_address2': 'Vendor Apt/Suite', 'client_shipping_address1': 'Client Shipping Street', 'client_shipping_address2': 'Client Shipping Apt/Suite', - 'type': 'Tyyppi', - 'invoice_amount': 'Lasku määrä', - 'invoice_due_date': 'Eräpäivä', - 'tax_rate1': 'Tax Rate 1', - 'tax_rate2': 'Tax Rate 2', - 'tax_rate3': 'Tax Rate 3', - 'auto_bill': 'Automaattinen laskutus', - 'archived_at': 'Archived At', - 'has_expenses': 'Has Expenses', - 'custom_taxes1': 'Mukautettu Vero 1', - 'custom_taxes2': 'Mukautettu Vero 2', - 'custom_taxes3': 'Mukautettu Vero 3', - 'custom_taxes4': 'Mukautettu Vero 4', - 'custom_surcharge1': 'Mukautettu Lisämaksu 1', - 'custom_surcharge2': 'Mukautettu Lisämaksu 2', - 'custom_surcharge3': 'Mukautettu Lisämaksu 3', - 'custom_surcharge4': 'Mukautettu Lisämaksu 4', - 'is_deleted': 'On poistettu', - 'vendor_city': 'Kauppiaan kaupunki', - 'vendor_state': 'Kauppiaan alue', - 'vendor_country': 'Kauppiaan maa', - 'is_approved': 'On hyväksytty', - 'tax_name': 'veronimi', - 'tax_amount': 'vero määrä', - 'tax_paid': 'vero Paid', - 'payment_amount': 'Maksun määrä', - 'age': 'Age', + 'type': 'Type', + 'invoice_amount': 'Montant de la facture', + 'invoice_due_date': 'Date limite', + 'tax_rate1': 'Taux de taxe 1', + 'tax_rate2': 'Taux de taxe 2', + 'tax_rate3': 'Taux de taxe 3', + 'auto_bill': 'Facturation automatique', + 'archived_at': 'Archivé le', + 'has_expenses': 'Dépenses en cours', + 'custom_taxes1': 'Autres taxes 1', + 'custom_taxes2': 'Autres taxes 2', + 'custom_taxes3': 'Autres taxes 3', + 'custom_taxes4': 'Autres taxes 4', + 'custom_surcharge1': 'Autre frais 1', + 'custom_surcharge2': 'Autre frais 2', + 'custom_surcharge3': 'Autre frais 3', + 'custom_surcharge4': 'Autre frais 4', + 'is_deleted': 'Supprimé', + 'vendor_city': 'Ville du fournisseur', + 'vendor_state': 'Région du fournisseur', + 'vendor_country': 'Pays du fournisseur', + 'is_approved': 'Is Approved', + 'tax_name': 'Nom de la taxe', + 'tax_amount': 'Montant de la taxe', + 'tax_paid': 'Taxe payée', + 'payment_amount': 'Montant du paiement', + 'age': 'Ancienneté', 'is_running': 'Is Running', - 'time_log': 'Aikaloki', - 'bank_id': 'Pankki', + 'time_log': 'Journal de temps', + 'bank_id': 'Banque', 'expense_category_id': 'Expense Category ID', - 'expense_category': 'Kulujen kategoria', + 'expense_category': 'Catégorie de dépense', 'invoice_currency_id': 'Invoice Currency ID', - 'tax_name1': 'Veron nimi 1', - 'tax_name2': 'Veron nimi 2', + 'tax_name1': 'Tax Name 1', + 'tax_name2': 'Tax Name 2', 'tax_name3': 'Tax Name 3', 'transaction_id': 'Transaction ID', 'status_color_theme': 'Status Color Theme', 'load_color_theme': 'Load Color Theme', }, - 'fr': { - 'client_shipping_state': 'Client Shipping State', + 'fr_CA': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'Les frais pour une facture de :amount serait :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Approuver', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', + 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', 'client_shipping_country': 'Client Shipping Country', @@ -21724,7 +21976,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'convert_to': 'Convert To', 'client_currency': 'Client Currency', 'company_currency': 'Company Currency', - 'purged_client': 'Client purgé avec succès', + 'purged_client': 'Le client a été purgé avec succès', 'custom_emails_disabled_help': 'To prevent spam we require upgrading to a paid account to customize the email', 'upgrade_to_add_company': 'Upgrade your plan to add companies', @@ -21760,7 +22012,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'giropay': 'GiroPay', 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', - 'set_password': 'Définir le mot de passe', + 'set_password': 'Nouveau mot de passe', 'recommend_desktop': 'We recommend using the desktop app for the best performance', 'recommend_mobile': @@ -21783,8 +22035,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'unauthorized_stripe_warning': 'Please authorize Stripe to accept online payments.', 'view_expense': 'Voir la dépense # :expense', - 'view_statement': 'Voir le relevé', - 'sepa': 'Prélèvement automatique/domiciliation SEPA', + 'view_statement': 'Visualiser le relevé', + 'sepa': 'SEPA Débit direct', 'ideal': 'iDEAL', 'przelewy24': 'Przelewy24', 'eps': 'EPS', @@ -21806,18 +22058,22 @@ mixin LocalizationsProvider on LocaleCodeAware { 'bulk_email_invoice': 'Email Invoice', 'bulk_email_quote': 'Email Quote', 'bulk_email_credit': 'Email Credit', - 'from_name': 'Nom expéditeur', + 'from_name': 'Nom de', 'clone_to_expense': 'Clone to expense', 'recurring_expense': 'Dépense récurrente', 'recurring_expenses': 'Dépenses récurrentes', 'new_recurring_expense': 'Nouvelle dépense récurrente', 'edit_recurring_expense': 'Éditer la dépense récurrente', - 'created_recurring_expense': 'Dépense récurrente créée avec succès', - 'updated_recurring_expense': 'Dépense récurrente mise à jour avec succès', - 'archived_recurring_expense': 'Dépense récurrente archivée avec succès', - 'deleted_recurring_expense': 'Projet supprimé avec succès', + 'created_recurring_expense': + 'La dépense récurrente a été créée avec succès', + 'updated_recurring_expense': + 'La dépense récurrente a été mise à jour avec succès', + 'archived_recurring_expense': + 'La dépense récurrente a été archivée avec succès', + 'deleted_recurring_expense': 'Le projet a été supprimé avec succès', 'removed_recurring_expense': 'Successfully removed recurring expense', - 'restored_recurring_expense': 'Dépense récurrente restaurée avec succès', + 'restored_recurring_expense': + 'La dépense récurrente a été restaurée avec succès', 'search_recurring_expense': 'Search Recurring Expense', 'search_recurring_expenses': 'Search Recurring Expenses', 'last_sent_date': 'Last Sent Date', @@ -21873,7 +22129,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'subdomain_guide': 'The subdomain is used in the client portal to personalize links to match your brand. ie, https://your-brand.invoicing.co', 'send_time': 'Send Time', - 'import_data': 'Importer des données', + 'import_data': 'Importer les données', 'import_settings': 'Import Settings', 'json_file_missing': 'Please provide the JSON file', 'json_option_missing': 'Please select to import the settings and/or data', @@ -21895,11 +22151,15 @@ mixin LocalizationsProvider on LocaleCodeAware { 'step_2_authorize': 'Step 2: Authorize', 'account_id': 'Account ID', 'migration_not_yet_completed': 'The migration has not yet completed', - 'activity_100': ':user created recurring invoice :recurring_invoice', - 'activity_101': ':user updated recurring invoice :recurring_invoice', - 'activity_102': ':user archived recurring invoice :recurring_invoice', - 'activity_103': ':user deleted recurring invoice :recurring_invoice', - 'activity_104': ':user restored recurring invoice :recurring_invoice', + 'activity_100': ':user a créé une facture récurrente :recurring_invoice', + 'activity_101': + ':user a mis à jour une facture récurrente :recurring_invoice', + 'activity_102': + ':user a archivé une facture récurrente :recurring_invoice', + 'activity_103': + ':user a supprimé une facture récurrente :recurring_invoice', + 'activity_104': + ':user a restauré une facture récurrente :recurring_invoice', 'show_task_end_date': 'Show Task End Date', 'show_task_end_date_help': 'Enable specifying the task end date', 'gateway_setup': 'Gateway Setup', @@ -21921,17 +22181,17 @@ mixin LocalizationsProvider on LocaleCodeAware { 'contact_last_name': 'Nom du contact', 'order': 'Order', 'unassigned': 'Non assigné', - 'partial_value': 'Doit être supérieur à zéro et inférieur au total', + 'partial_value': 'Doit être plus grand que zéro et moins que le total', 'search_kanban': 'Search Kanban', 'search_kanbans': 'Search Kanban', 'kanban': 'Kanban', - 'enable': 'Activé(e)', + 'enable': 'Autoriser', 'move_top': 'Move Top', 'move_up': 'Move Up', 'move_down': 'Move Down', 'move_bottom': 'Move Bottom', 'subdomain_help': - 'Définissez un sous-domaine ou affichez la facture sur votre propre site web.', + 'Définissez le sous-domaine ou affichez la facture sur votre site web.', 'body_variable_missing': 'Error: the custom email must include a :body variable', 'add_body_variable_message': 'Make sure to include a :body variable', @@ -21956,7 +22216,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'header_key': 'Header Key', 'header_value': 'Header Value', 'recurring_products': 'Recurring Products', - 'promo_code': 'Promo code', + 'promo_code': 'Code promo', 'promo_discount': 'Promo Discount', 'allow_cancellation': 'Allow Cancellation', 'per_seat_enabled': 'Per Seat Enabled', @@ -21979,692 +22239,731 @@ mixin LocalizationsProvider on LocaleCodeAware { 'pdf_failed': 'PDF Failed', 'pdf_success': 'PDF Success', 'modified': 'Modified', - 'subscription': 'Subscription', + 'subscription': 'Abonnement', 'subscriptions': 'Abonnements', - 'new_subscription': 'New Subscription', + 'new_subscription': 'Nouvel abonnement', 'edit_subscription': 'Éditer l\'abonnement', 'created_subscription': 'Abonnement créé avec succès', 'updated_subscription': 'Abonnement mis à jour avec succès', 'archived_subscription': 'Abonnement archivé avec succès', - 'deleted_subscription': 'Successfully deleted subscription', - 'removed_subscription': 'Successfully removed subscription', - 'restored_subscription': 'Successfully restored subscription', - 'search_subscription': 'Search 1 Subscription', - 'search_subscriptions': 'Search :count Subscriptions', - 'subdomain_is_not_available': 'Subdomain is not available', - 'connect_gmail': 'Connect Gmail', - 'disconnect_gmail': 'Disconnect Gmail', - 'connected_gmail': 'Successfully connected Gmail', - 'disconnected_gmail': 'Successfully disconnected Gmail', + 'deleted_subscription': 'L\'abonnement a été supprimé avec succès', + 'removed_subscription': 'L\'abonnement a été retiré avec succès', + 'restored_subscription': 'L\'abonnement a été restauré avec succès', + 'search_subscription': 'Recherche de 1 abonnement', + 'search_subscriptions': 'Recherche :count abonnements', + 'subdomain_is_not_available': 'Le sous-domaine n\'est pas disponible', + 'connect_gmail': 'Connectez Gmail', + 'disconnect_gmail': 'Déconnecter Gmail', + 'connected_gmail': 'Gmail a été connecté avec succès', + 'disconnected_gmail': 'Gmail a été déconnecté avec succès', 'update_fail_help': - 'Changes to the codebase may be blocking the update, you can run this command to discard the changes:', - 'client_id_number': 'Client ID Number', - 'count_minutes': ':count Minutes', - 'password_timeout': 'Password Timeout', - 'shared_invoice_credit_counter': 'Shared Invoice/Credit Counter', - 'use_last_email': 'Use last email', - 'activate_company': 'Activate Company', + 'Les modifications apportées au code de base peuvent bloquer la mise à jour, vous pouvez exécuter cette commande pour annuler les modifications:', + 'client_id_number': 'Numéro d\'identification du client', + 'count_minutes': ':count minutes', + 'password_timeout': 'Délai d\'expiration du mot de passe', + 'shared_invoice_credit_counter': + 'Compteur partagé pour les factures et les crédits', + 'use_last_email': 'Utiliser le dernier e-mail', + 'activate_company': 'Activer la société', 'activate_company_help': - 'Enable emails, recurring invoices and notifications', - 'an_error_occurred_try_again': 'An error occurred, please try again', - 'please_first_set_a_password': 'Please first set a password', + 'Activez les courriels, les factures récurrentes et les notifications', + 'an_error_occurred_try_again': + 'Une erreur s\'est produite, veuillez réessayer', + 'please_first_set_a_password': + 'Veuillez d\'abord définir un mot de passe', 'changing_phone_disables_two_factor': - 'Warning: Changing your phone number will disable 2FA', - 'help_translate': 'Help Translate', - 'please_select_a_country': 'Please select a country', - 'resend_invite': 'Renvoyer une invitation', - 'disabled_two_factor': 'Successfully disabled 2FA', - 'connected_google': 'Successfully connected account', - 'disconnected_google': 'Successfully disconnected account', - 'delivered': 'Delivered', - 'bounced': 'Rebondi', - 'spam': 'Spam', - 'view_docs': 'View Docs', + 'Attention: modifier votre numéro de téléphone désactivera l\'authentification à deux facteurs (A2F)', + 'help_translate': 'Aide à la traduction', + 'please_select_a_country': 'Veuillez sélectionner un pays', + 'resend_invite': 'Renvoyer l\'invitation', + 'disabled_two_factor': + 'L\'authentification à deux facteurs (A2F) a été désactivée avec succès', + 'connected_google': 'Le compte a été connecté avec succès', + 'disconnected_google': 'Le comte a été déconnecté avec succès', + 'delivered': 'Livré', + 'bounced': 'Rejetés', + 'spam': 'Pourriel', + 'view_docs': 'Afficher la documentation', 'enter_phone_to_enable_two_factor': - 'Please provide a mobile phone number to enable two factor authentication', - 'send_sms': 'Send SMS', - 'sms_code': 'SMS Code', + 'Veuillez fournir un numéro de téléphone mobile pour activer l\'authentification à deux facteurs', + 'send_sms': 'Envoyer un SMS', + 'sms_code': 'Code SMS', 'two_factor_setup_help': - 'Scannez le code à barres avec une application compatible :link', + 'Scannez le code barre avec une :link app compatible.', 'enabled_two_factor': - 'Authentification à deux facteurs activée avec succès', - 'connect_google': 'Connect Google', - 'disconnect_google': 'Disconnect Google', - 'enable_two_factor': 'Authentification à 2 facteurs', - 'disable_two_factor': 'Disable Two Factor', + 'Vous avez activé authentification à deux facteurs avec succès.', + 'connect_google': 'Connectez Google', + 'disconnect_google': 'Déconnecter Google', + 'enable_two_factor': 'Authentification à deux facteurs', + 'disable_two_factor': 'Désactiver l\'authentification à deux facteurs', 'require_password_with_social_login': - 'Require Password with Social Login', - 'stay_logged_in': 'Stay Logged In', - 'session_about_to_expire': 'Warning: Your session is about to expire', - 'count_hours': ':count Hours', - 'count_day': '1 Day', - 'count_days': ':count Days', - 'web_session_timeout': 'Web Session Timeout', - 'security_settings': 'Security Settings', - 'resend_email': 'Resend Email', - 'confirm_your_email_address': 'Please confirm your email address', + 'Requiert un mot de passe avec une connexion de réseau social', + 'stay_logged_in': 'Restez connecté', + 'session_about_to_expire': + 'Avertissement: Votre session va expirer bientôt', + 'count_hours': ':count heures', + 'count_day': '1 jour', + 'count_days': ':count jours', + 'web_session_timeout': 'Expiration de la session web', + 'security_settings': 'Paramètres de sécurité', + 'resend_email': 'Renvoyer le courriel', + 'confirm_your_email_address': 'Veuillez confirmer votre adresse courriel', 'refunded_payment': 'Paiement remboursé', - 'partially_unapplied': 'Partially Unapplied', - 'select_a_gmail_user': 'Please select a user authenticated with Gmail', - 'list_long_press': 'List Long Press', - 'show_actions': 'Show Actions', - 'start_multiselect': 'Start Multiselect', + 'partially_unapplied': 'Partiellement non-appliquée', + 'select_a_gmail_user': + 'Veuillez sélectionner un utilisateur authentifié avec Gmail', + 'list_long_press': 'Longue pression pour liste', + 'show_actions': 'Afficher les actions', + 'start_multiselect': 'Démarrer la multisélection', 'email_sent_to_confirm_email': - 'An email has been sent to confirm the email address', + 'Un courriel a été envoyé pour confirmer l\'adresse courriel', 'counter_pattern_error': - 'To use :client_counter please add either :client_number or :client_id_number to prevent conflicts', - 'this_quarter': 'This Quarter', + 'Pour utiliser :client_counter veuillez ajouter soit :client_number ou :client_id_number pour éviter les conflits', + 'this_quarter': 'Ce trimestre', 'last_quarter': 'Dernier trimestre', - 'to_update_run': 'To update run', + 'to_update_run': 'Pour mettre à jour l\'exécution', 'convert_to_invoice': 'Convertir en facture', - 'registration_url': 'Registration URL', + 'registration_url': 'URL d\'enregistrement', 'invoice_project': 'Facturer le projet', 'invoice_task': 'Facturer la tâche', - 'invoice_expense': 'Facturer la dépense', - 'search_payment_term': 'Search 1 Payment Term', - 'search_payment_terms': 'Search :count Payment Terms', - 'save_and_preview': 'Save and Preview', - 'save_and_email': 'Save and Email', - 'supported_events': 'Supported Events', + 'invoice_expense': 'Facture de dépense', + 'search_payment_term': 'Rechercher 1 délai de paiement', + 'search_payment_terms': 'Rechercher :count délais de paiement', + 'save_and_preview': 'Enregistrer et prévisualiser', + 'save_and_email': 'Enregistrer et envoyer par courriel', + 'supported_events': 'Événements pris en charge', 'converted_amount': 'Montant converti', - 'converted_balance': 'Converted Balance', - 'converted_paid_to_date': 'Converted Paid to Date', - 'converted_credit_balance': 'Converted Credit Balance', - 'converted_total': 'Converted Total', - 'is_sent': 'Is Sent', + 'converted_balance': 'Solde converti', + 'converted_paid_to_date': 'Payé à ce jour converti', + 'converted_credit_balance': 'Solde de crédit converti', + 'converted_total': 'Total converti', + 'is_sent': 'Est Envoyé', 'default_documents': 'Documents par défaut', - 'document_upload': 'Document Upload', - 'document_upload_help': 'Enable clients to upload documents', - 'expense_total': 'Expense Total', - 'enter_taxes': 'Enter Taxes', - 'by_rate': 'By Rate', - 'by_amount': 'By Amount', - 'enter_amount': 'Enter Amount', - 'before_taxes': 'Before Taxes', - 'after_taxes': 'After Taxes', - 'color': 'Color', - 'show': 'Show', + 'document_upload': 'Téléversement de document', + 'document_upload_help': + 'Autoriser les clients à téléverser des documents', + 'expense_total': 'Total des dépenses', + 'enter_taxes': 'Saisir les taxes', + 'by_rate': 'Par taux', + 'by_amount': 'Par montant', + 'enter_amount': 'Entrer le montant', + 'before_taxes': 'Avant taxes', + 'after_taxes': 'Après taxes', + 'color': 'Couleur', + 'show': 'Voir', 'hide': 'Cacher', - 'empty_columns': 'Empty Columns', - 'debug_mode_is_enabled': 'Debug mode is enabled', + 'empty_columns': 'Colonnes vides', + 'debug_mode_is_enabled': 'Mode debug activé', 'debug_mode_is_enabled_help': - 'Warning: it is intended for use on local machines, it can leak credentials. Click to learn more.', - 'running_tasks': 'Running Tasks', - 'recent_tasks': 'Recent Tasks', - 'recent_expenses': 'Recent Expenses', - 'upcoming_expenses': 'Upcoming Expenses', - 'update_app': 'Update App', - 'started_import': 'Successfully started import', - 'duplicate_column_mapping': 'Duplicate column mapping', - 'uses_inclusive_taxes': 'Uses Inclusive Taxes', - 'is_amount_discount': 'Is Amount Discount', + 'Avertissement: Pour usage local seulement. Fuites de données possible. En savoir plus.', + 'running_tasks': 'Tâches en cours', + 'recent_tasks': 'Tâches récentes', + 'recent_expenses': 'Dépenses récentes', + 'upcoming_expenses': 'Dépenses à venir', + 'update_app': 'Mettre à jour l\'App', + 'started_import': 'L\'importation a démarré avec succès', + 'duplicate_column_mapping': 'Dupliquer le mappage de colonnes', + 'uses_inclusive_taxes': 'Utiliser taxes incluses', + 'is_amount_discount': 'Est Montant rabais', 'column': 'Colonne', 'sample': 'Exemple', - 'map_to': 'Map To', + 'map_to': 'Mapper vers', 'import': 'Importer', - 'first_row_as_column_names': 'Use first row as column names', + 'first_row_as_column_names': + 'Utiliser première rangée comme noms de colonnes', 'select_file': 'Veuillez sélectionner un fichier', - 'no_file_selected': 'No File Selected', - 'csv_file': 'Sélectionner un fichier CSV', + 'no_file_selected': 'Aucun fichier sélectionné', + 'csv_file': 'Fichier CSV', 'csv': 'CSV', 'freshbooks': 'FreshBooks', 'invoice2go': 'Invoice2go', 'invoicely': 'Invoicely', 'waveaccounting': 'Wave Accounting', 'zoho': 'Zoho', - 'accounting': 'Accounting', - 'required_files_missing': 'Please provide all CSVs.', - 'import_type': 'Import Type', + 'accounting': 'Comptabilité', + 'required_files_missing': 'Veuillez fournir tous les CSV.', + 'import_type': 'Type d\'importation', 'html_mode': 'HTML Mode', 'html_mode_help': 'Preview updates faster but is less accurate', - 'view_licenses': 'View Licenses', + 'view_licenses': 'Voir les licences', 'webhook_url': 'URL Webhook', - 'fullscreen_editor': 'Fullscreen Editor', - 'sidebar_editor': 'Sidebar Editor', - 'please_type_to_confirm': 'Please type \":value\" to confirm', - 'purge': 'Purge', + 'fullscreen_editor': 'Éditeur plein écran', + 'sidebar_editor': 'Éditeur de barre latérale', + 'please_type_to_confirm': 'Veuillez saisir \":value\" pour confirmer', + 'purge': 'Purger', 'service': 'Service', - 'clone_to': 'Clone To', - 'clone_to_other': 'Clone to Other', - 'labels': 'Labels', - 'add_custom': 'Add Custom', - 'payment_tax': 'Payment Tax', - 'unpaid': 'Non payé', - 'white_label': 'White Label', - 'delivery_note': 'Bon de livraison', - 'sent_invoices_are_locked': 'Sent invoices are locked', - 'paid_invoices_are_locked': 'Paid invoices are locked', - 'source_code': 'Source Code', - 'app_platforms': 'App Platforms', - 'invoice_late': 'Invoice Late', - 'quote_expired': 'Quote Expired', - 'partial_due': 'Solde partiel', + 'clone_to': 'Cloner vers', + 'clone_to_other': 'Cloner vers Autre', + 'labels': 'Étiquettes', + 'add_custom': 'Ajout personnalisé', + 'payment_tax': 'Paiement de taxe', + 'unpaid': 'Impayé', + 'white_label': 'Sans marque', + 'delivery_note': 'Note de livraison', + 'sent_invoices_are_locked': 'Les factures envoyées sont verrouillées', + 'paid_invoices_are_locked': 'Les factures payées sont verrouillées', + 'source_code': 'Code source', + 'app_platforms': 'Plateformes d\'app', + 'invoice_late': 'facture en retard', + 'quote_expired': 'Soumission expirée', + 'partial_due': 'Montant partiel dû', 'invoice_total': 'Montant total', - 'quote_total': 'Montant du devis', - 'credit_total': 'Total Crédit', - 'recurring_invoice_total': 'Invoice Total', + 'quote_total': 'Total de la soumission', + 'credit_total': 'Total du crédit', + 'recurring_invoice_total': 'Total de facture', 'actions': 'Actions', - 'expense_number': 'Expense Number', - 'task_number': 'Task Number', - 'project_number': 'Project Number', - 'project_name': 'Project Name', + 'expense_number': 'Numéro de dépense', + 'task_number': 'Numéro de tâche', + 'project_number': 'Numéro de projet', + 'project_name': 'Nom du projet', 'warning': 'Avertissement', - 'view_settings': 'View Settings', + 'view_settings': 'Voir les paramètres', 'company_disabled_warning': - 'Warning: this company has not yet been activated', - 'late_invoice': 'Late Invoice', - 'expired_quote': 'Expired Quote', - 'remind_invoice': 'Remind Invoice', - 'cvv': 'Cryptogramme visuel', + 'Avertissement: Cette entreprise n\'a pas encore été activée', + 'late_invoice': 'Facture en retard', + 'expired_quote': 'Soumission expirée', + 'remind_invoice': 'Rappeler la facture', + 'cvv': 'CVV', 'client_name': 'Nom du client', - 'client_phone': 'Client Phone', - 'required_fields': 'Required Fields', - 'calculated_rate': 'Calculated Rate', - 'default_task_rate': 'Default Task Rate', - 'clear_cache': 'Clear Cache', - 'sort_order': 'Sort Order', - 'task_status': 'Status', - 'task_statuses': 'Task Statuses', - 'new_task_status': 'New Task Status', - 'edit_task_status': 'Edit Task Status', - 'created_task_status': 'Successfully created task status', - 'updated_task_status': 'Statut de tâche mis à jour avec succès', - 'archived_task_status': 'Successfully archived task status', - 'deleted_task_status': 'Successfully deleted task status', - 'removed_task_status': 'Successfully removed task status', - 'restored_task_status': 'Successfully restored task status', - 'archived_task_statuses': 'Successfully archived :value task statuses', - 'deleted_task_statuses': 'Successfully deleted :value task statuses', - 'restored_task_statuses': 'Successfully restored :value task statuses', - 'search_task_status': 'Search 1 Task Status', - 'search_task_statuses': 'Search :count Task Statuses', - 'show_tasks_table': 'Show Tasks Table', + 'client_phone': 'Téléphone du client', + 'required_fields': 'Champs requis', + 'calculated_rate': 'Taux calculé', + 'default_task_rate': 'Taux de tâche par défaut', + 'clear_cache': 'Vider le cache', + 'sort_order': 'Ordre de tri', + 'task_status': 'État', + 'task_statuses': 'États de tâche', + 'new_task_status': 'Nouvel état de tâche', + 'edit_task_status': 'Édition de l\'état de tâche', + 'created_task_status': 'L\'état de tâche a été créé avec succès', + 'updated_task_status': + 'Le statut de la tâche a été mis à jour avec succès', + 'archived_task_status': 'L\'état de tâche a été archivé avec succès', + 'deleted_task_status': 'L\'état de tâche a été supprimé avec succès', + 'removed_task_status': 'L\'état de tâche a été retiré avec succès', + 'restored_task_status': 'L\'état de tâche a été restauré avec succès', + 'archived_task_statuses': + 'Les :value états de tâche ont été archivés succès', + 'deleted_task_statuses': + 'Les :value états de tâche ont été supprimés avec succès', + 'restored_task_statuses': + 'Les :value états de tâche ont été restaurés avec succès', + 'search_task_status': 'Recherche 1 état de tâche', + 'search_task_statuses': 'Recherche :count états de tâche', + 'show_tasks_table': 'Afficher le tableau des tâches', 'show_tasks_table_help': - 'Always show the tasks section when creating invoices', - 'invoice_task_timelog': 'Invoice Task Timelog', - 'invoice_task_timelog_help': 'Add time details to the invoice line items', - 'invoice_task_datelog': 'Invoice Task Datelog', - 'invoice_task_datelog_help': 'Add date details to the invoice line items', - 'auto_start_tasks_help': 'Start tasks before saving', - 'configure_statuses': 'Configure Statuses', - 'task_settings': 'Task Settings', - 'configure_categories': 'Configure Categories', - 'expense_categories': 'catégories de dépense', + 'Toujours afficher la section des tâches lors de la création de factures', + 'invoice_task_timelog': 'Facturer le journal du temps des tâches', + 'invoice_task_timelog_help': + 'Ajouter les détails de temps aux lignes d\'articles des factures', + 'invoice_task_datelog': 'Facturer le journal des dates des tâches', + 'invoice_task_datelog_help': + 'Ajouter les détails de date aux lignes d\'articles des factures', + 'auto_start_tasks_help': 'Démarrer les tâches avant de sauvegarder', + 'configure_statuses': 'Configurer les états', + 'task_settings': 'Paramètres des tâches', + 'configure_categories': 'Configurer les catégories', + 'expense_categories': 'Catégories de dépense', 'new_expense_category': 'Nouvelle catégorie de dépense', - 'edit_expense_category': 'Edit Expense Category', - 'created_expense_category': 'Catégorie de dépense créée avec succès', + 'edit_expense_category': 'Éditer la catégorie Dépense', + 'created_expense_category': + 'La catégorie de dépense a été créé avec succès', 'updated_expense_category': - 'Catégorie de dépense mise à jour avec succès', - 'archived_expense_category': 'Catégorie de dépense archivée avec succès', + 'La catégorie de dépense a été mise à jour avec succès', + 'archived_expense_category': + 'La catégorie de dépense a été archivée avec succès', 'deleted_expense_category': 'La catégorie a été supprimée avec succès', - 'removed_expense_category': 'Successfully removed expense category', - 'restored_expense_category': 'Catégorie de dépense restaurée avec succès', + 'removed_expense_category': + 'La catégorie de dépense a été retirée avec succès', + 'restored_expense_category': + 'La catégorie de dépense a été rétablie avec succès', 'archived_expense_categories': - ':count catégorie(s) de dépense archivée(s) avec succès', + ':count catégories de dépense ont été archivées avec succès', 'deleted_expense_categories': - 'Successfully deleted expense :value categories', + 'Les :value catégories de dépense ont été supprimées avec succès', 'restored_expense_categories': - 'Successfully restored expense :value categories', - 'search_expense_category': 'Search 1 Expense Category', - 'search_expense_categories': 'Search :count Expense Categories', - 'use_available_credits': 'Use Available Credits', - 'show_option': 'Show Option', + 'Les :value catégories de dépense ont été restaurées avec succès', + 'search_expense_category': 'Recherche 1 catégorie de dépense', + 'search_expense_categories': 'Recherche :count catégorie de dépense', + 'use_available_credits': 'Utiliser les crédits disponibles', + 'show_option': 'Afficher les options', 'negative_payment_error': - 'The credit amount cannot exceed the payment amount', - 'view_changes': 'View Changes', - 'force_update': 'Force Update', + 'Le montant du crédit ne peut pas excéder le montant du paiement', + 'view_changes': 'Visualiser les changements', + 'force_update': 'Forcer la mise à jour', 'force_update_help': - 'You are running the latest version but there may be pending fixes available.', - 'mark_paid_help': 'Track the expense has been paid', - 'should_be_invoiced': 'Devrait être facturé', - 'should_be_invoiced_help': 'Enable the expense to be invoiced', - 'add_documents_to_invoice_help': 'Make the documents visible', - 'convert_currency_help': 'Set an exchange rate', - 'expense_settings': 'Expense Settings', - 'clone_to_recurring': 'Clone to Recurring', + 'Vous êtes sur la dernière version, mais il peut y avoir encore quelques mises à jour en cours', + 'mark_paid_help': 'Suivez les dépenses qui ont été payées', + 'should_be_invoiced': 'Devrait être facturée', + 'should_be_invoiced_help': 'Activer la facturation de la dépense', + 'add_documents_to_invoice_help': 'Rend visibles les documents', + 'convert_currency_help': 'Définir un taux d\'échange', + 'expense_settings': 'Paramètres des dépenses', + 'clone_to_recurring': 'Cloner en récurrence', 'crypto': 'Crypto', 'paypal': 'PayPal', 'alipay': 'Alipay', 'sofort': 'Sofort', - 'apple_pay': 'Apple/Google Pay', - 'user_field': 'User Field', + 'apple_pay': 'Apple / Google Pay', + 'user_field': 'Champs utilisateur', 'variables': 'Variables', - 'show_password': 'Show Password', - 'hide_password': 'Hide Password', - 'copy_error': 'Copy Error', - 'capture_card': 'Capture Card', - 'auto_bill_enabled': 'Auto Bill Enabled', - 'total_taxes': 'Total Taxes', - 'line_taxes': 'Line Taxes', - 'total_fields': 'Total Fields', - 'stopped_recurring_invoice': 'Successfully stopped recurring invoice', - 'started_recurring_invoice': 'Successfully started recurring invoice', - 'resumed_recurring_invoice': 'Successfully resumed recurring invoice', - 'gateway_refund': 'Gateway Refund', - 'gateway_refund_help': 'Process the refund with the payment gateway', - 'due_date_days': 'Due Date', - 'paused': 'Paused', - 'mark_active': 'Marquer comme actif', - 'day_count': 'Day :count', - 'first_day_of_the_month': 'First Day of the Month', - 'last_day_of_the_month': 'Last Day of the Month', - 'use_payment_terms': 'Use Payment Terms', - 'endless': 'Endless', - 'next_send_date': 'Next Send Date', - 'remaining_cycles': 'Remaining Cycles', - 'recurring_invoice': 'Facture récurrente', - 'recurring_invoices': 'Factures récurrentes', - 'new_recurring_invoice': 'Nouvelle facture récurrente', - 'edit_recurring_invoice': 'Editer facture récurrente', - 'created_recurring_invoice': 'Successfully created recurring invoice', - 'updated_recurring_invoice': 'Successfully updated recurring invoice', - 'archived_recurring_invoice': 'Facture récurrente archivée avec succès', - 'deleted_recurring_invoice': 'Facture récurrente supprimée avec succès', - 'removed_recurring_invoice': 'Successfully removed recurring invoice', - 'restored_recurring_invoice': 'Facture récurrente restaurée avec succès', - 'archived_recurring_invoices': - 'Successfully archived recurring :value invoices', - 'deleted_recurring_invoices': - 'Successfully deleted recurring :value invoices', + 'show_password': 'Afficher le mot de passe', + 'hide_password': 'Masquer le mot de passe', + 'copy_error': 'Erreur de copie', + 'capture_card': 'Carte saisie', + 'auto_bill_enabled': 'Autofacturation activée', + 'total_taxes': 'Taxes totales', + 'line_taxes': 'Taxes par ligne', + 'total_fields': 'Champs des totaux', + 'stopped_recurring_invoice': + 'La facture récurrente a été arrêtée avec succès', + 'started_recurring_invoice': + 'La facture récurrente a été démarrée avec succès', + 'resumed_recurring_invoice': + 'La facture récurrente a été reprise avec succès', + 'gateway_refund': 'Remboursement de passerelle', + 'gateway_refund_help': + 'Procéder au remboursement avec la passerelle de paiement', + 'due_date_days': 'Date d\'échéance', + 'paused': 'En pause', + 'mark_active': 'Cocher actif', + 'day_count': 'Jour :count', + 'first_day_of_the_month': 'Premier jour du mois', + 'last_day_of_the_month': 'Dernier jour du mois', + 'use_payment_terms': 'Utiliser les délais de paiement', + 'endless': 'Sans fin', + 'next_send_date': 'Prochaine date d\'envoi', + 'remaining_cycles': 'Cycles restants', + 'recurring_invoice': 'Facture récurrente', + 'recurring_invoices': 'Factures récurrentes', + 'new_recurring_invoice': 'Nouvelle facture récurrente', + 'edit_recurring_invoice': 'Éditer la facture récurrente', + 'created_recurring_invoice': + 'La facture récurrente a été créée avec succès', + 'updated_recurring_invoice': + 'La facture récurrente a été mise à jour avec succès', + 'archived_recurring_invoice': + 'La facture récurrente a été archivée avec succès', + 'deleted_recurring_invoice': + 'La facture récurrente a été supprimée avec succès', + 'removed_recurring_invoice': + 'La facture récurrente a été retirée avec succès', + 'restored_recurring_invoice': + 'La facture récurrente a été restaurée avec succès', + 'archived_recurring_invoices': + 'Les :value factures récurrentes ont été archivées avec succès', + 'deleted_recurring_invoices': + 'Les :value factures récurrentes ont été supprimées avec succès', 'restored_recurring_invoices': - 'Successfully restored recurring :value invoices', - 'search_recurring_invoice': 'Search 1 Recurring Invoice', - 'search_recurring_invoices': 'Search :count Recurring Invoices', - 'send_date': 'Send Date', - 'auto_bill_on': 'Auto Bill On', - 'minimum_under_payment_amount': 'Minimum Under Payment Amount', + 'Les :value factures récurrentes ont été restaurées avec succès', + 'search_recurring_invoice': 'Recherche 1 facture récurrente', + 'search_recurring_invoices': 'Recherche :count factures récurrentes', + 'send_date': 'Date d\'envoi', + 'auto_bill_on': 'Autofacturer le', + 'minimum_under_payment_amount': 'Montant minimum de sous-paiement', 'profit': 'Profit', 'line_item': 'Ligne d\'article', - 'allow_over_payment': 'Allow Over Payment', - 'allow_over_payment_help': 'Support paying extra to accept tips', - 'allow_under_payment': 'Allow Under Payment', + 'allow_over_payment': 'Accepter Sur-paiement', + 'allow_over_payment_help': + 'Accepter paiement supplémentaire pour pourboire', + 'allow_under_payment': 'Accepter Sous-paiement', 'allow_under_payment_help': - 'Support paying at minimum the partial/deposit amount', - 'test_mode': 'Test Mode', - 'opened': 'Ouvert(e)', - 'payment_reconciliation_failure': 'Reconciliation Failure', - 'payment_reconciliation_success': 'Reconciliation Success', - 'gateway_success': 'Gateway Success', - 'gateway_failure': 'Gateway Failure', - 'gateway_error': 'Gateway Error', - 'email_send': 'Email Send', - 'email_retry_queue': 'Email Retry Queue', - 'failure': 'Failure', - 'quota_exceeded': 'Quota Exceeded', - 'upstream_failure': 'Upstream Failure', - 'system_logs': 'System Logs', + 'Accepter paiement au minimum le montant partiel/dépôt', + 'test_mode': 'Mode test', + 'opened': 'Ouverts', + 'payment_reconciliation_failure': 'Conciliation non réussie', + 'payment_reconciliation_success': 'Conciliation réussie', + 'gateway_success': 'Passerelle réussie', + 'gateway_failure': 'Échec de passerelle', + 'gateway_error': 'Erreur de passerelle', + 'email_send': 'Envoi de courriel', + 'email_retry_queue': 'File d\'envoi de courriel', + 'failure': 'Échec', + 'quota_exceeded': 'Quota dépassé', + 'upstream_failure': 'Échec en amont', + 'system_logs': 'Journaux système', 'view_portal': 'Voir le portail', - 'copy_link': 'Copy Link', - 'token_billing': 'Enregister les détails de paiement', - 'welcome_to_invoice_ninja': 'Welcome to Invoice Ninja', + 'copy_link': 'Copier le lien', + 'token_billing': 'Sauvegarder les informations de carte de crédit', + 'welcome_to_invoice_ninja': 'Bienvenue dans Invoice Ninja', 'always': 'Toujours', - 'optin': 'Opt-In', - 'optout': 'Opt-Out', - 'label': 'Intitulé', + 'optin': 'Adhésion', + 'optout': 'Désadhésion', + 'label': 'Libellé', 'client_number': 'Numéro de client', - 'auto_convert': 'Auto Convert', + 'auto_convert': 'Conversion automatique', 'company_name': 'Nom de l\'entreprise', - 'reminder1_sent': 'Reminder 1 Sent', - 'reminder2_sent': 'Reminder 2 Sent', - 'reminder3_sent': 'Reminder 3 Sent', - 'reminder_last_sent': 'Reminder Last Sent', - 'pdf_page_info': 'Page :current of :total', - 'emailed_invoices': 'Les factures ont été envoyées par email avec succès', - 'emailed_quotes': 'Les offres ont été envoyées par courriel avec succès', - 'emailed_credits': 'Successfully emailed credits', + 'reminder1_sent': 'Rappel 1 envoyé', + 'reminder2_sent': 'Rappel 2 envoyé', + 'reminder3_sent': 'Rappel 3 envoyé', + 'reminder_last_sent': 'Dernier envoi de rappel', + 'pdf_page_info': 'Page :current de :total', + 'emailed_invoices': + 'Les factures ont été envoyées par courriel avec succès', + 'emailed_quotes': + 'Les soumissions ont été envoyées par courriel avec succès', + 'emailed_credits': 'Les crédits ont été envoyés par courriel avec succès', 'gateway': 'Passerelle', - 'view_in_stripe': 'View in Stripe', - 'rows_per_page': 'Rows Per Page', + 'view_in_stripe': 'Voir dans Stripe', + 'rows_per_page': 'Rangées par page', 'hours': 'Heures', 'statement': 'Relevé', 'taxes': 'Taxes', - 'surcharge': 'Majoration', - 'apply_payment': 'Apply Payment', - 'apply_credit': 'Appliquer crédit', + 'surcharge': 'surcharge', + 'apply_payment': 'Appliquer le paiement', + 'apply_credit': 'Appliquer le crédit', 'apply': 'Appliquer', - 'unapplied': 'Unapplied', - 'select_label': 'Sélection intitulé', - 'custom_labels': 'Custom Labels', - 'record_type': 'Record Type', - 'record_name': 'Record Name', - 'file_type': 'File Type', - 'height': 'Height', - 'width': 'Width', - 'to': 'À', - 'health_check': 'Health Check', + 'unapplied': 'Non appliqué', + 'select_label': 'Sélectionnez le libellé', + 'custom_labels': 'Étiquettes personnalisées', + 'record_type': 'Type d\'enregistrement', + 'record_name': 'Non d\'enregistrement', + 'file_type': 'Type de fichier', + 'height': 'Hauteur', + 'width': 'Largeur', + 'to': 'à', + 'health_check': 'État de santé', 'payment_type_id': 'Type de paiement', - 'last_login_at': 'Last Login At', - 'company_key': 'Company Key', - 'storefront': 'Storefront', - 'storefront_help': 'Enable third-party apps to create invoices', - 'client_created': 'Client Created', - 'online_payment_email': 'Online Payment Email', - 'manual_payment_email': 'Manual Payment Email', - 'completed': 'Completed', - 'gross': 'Gross', - 'net_amount': 'Net Amount', - 'net_balance': 'Net Balance', - 'client_settings': 'Client Settings', - 'selected_invoices': 'Selected Invoices', - 'selected_payments': 'Selected Payments', - 'selected_quotes': 'Selected Quotes', - 'selected_tasks': 'Selected Tasks', - 'selected_expenses': 'Selected Expenses', + 'last_login_at': 'Dernière connexion à', + 'company_key': 'Clé d\'entreprise', + 'storefront': 'Vitrine', + 'storefront_help': + 'Activer les applications externes à créer des factures', + 'client_created': 'Client créé', + 'online_payment_email': 'Courriel de paiement en ligne', + 'manual_payment_email': 'Courriel de paiement manuel', + 'completed': 'Complété', + 'gross': 'Brut', + 'net_amount': 'Montant net', + 'net_balance': 'Solde net', + 'client_settings': 'Paramètres clients', + 'selected_invoices': 'Factures sélectionnées', + 'selected_payments': 'Paiements sélectionnés', + 'selected_quotes': 'Soumissions sélectionnées', + 'selected_tasks': 'Tâches sélectionnées', + 'selected_expenses': 'Dépenses sélectionnées', 'upcoming_invoices': 'Factures à venir', - 'past_due_invoices': 'Past Due Invoices', - 'recent_payments': 'Paiements récents', - 'upcoming_quotes': 'Devis à venir', - 'expired_quotes': 'Devis expirés', + 'past_due_invoices': 'Factures impayées', + 'recent_payments': 'Paiements reçus', + 'upcoming_quotes': 'Soumissions à venir', + 'expired_quotes': 'Soumissions expirées', 'create_client': 'Créer un client', 'create_invoice': 'Créer une facture', - 'create_quote': 'Créer un devis', - 'create_payment': 'Create Payment', + 'create_quote': 'Créer une soumission', + 'create_payment': 'Créer un paiement', 'create_vendor': 'Créer un fournisseur', - 'update_quote': 'Update Quote', - 'delete_quote': 'Supprimer ce devis', - 'update_invoice': 'Update Invoice', + 'update_quote': 'Mettre à jour la soumission', + 'delete_quote': 'Supprimer la soumission', + 'update_invoice': 'Mettre à jour la facture', 'delete_invoice': 'Supprimer la facture', - 'update_client': 'Update Client', + 'update_client': 'Mettre à jour le client', 'delete_client': 'Supprimer ce client', 'delete_payment': 'Supprimer ce paiement', - 'update_vendor': 'Update Vendor', - 'delete_vendor': 'Supprimer ce fournisseur', - 'create_expense': 'Create Expense', - 'update_expense': 'Update Expense', + 'update_vendor': 'Mettre à jour le fournisseur', + 'delete_vendor': 'Supprimer le fournisseur', + 'create_expense': 'Créer une dépense', + 'update_expense': 'Mettre à jour la dépense', 'delete_expense': 'Supprimer la dépense', - 'create_task': 'Créer une tâche', - 'update_task': 'Update Task', - 'delete_task': 'Supprimer la tâche', - 'approve_quote': 'Approve Quote', + 'create_task': 'Créer une Tâche', + 'update_task': 'Mettre à jour la tâche', + 'delete_task': 'Supprimer la Tâche', + 'approve_quote': 'Approuver la tâche', 'off': 'Fermé', - 'when_paid': 'When Paid', - 'expires_on': 'Expires On', + 'when_paid': 'Lors du paiement', + 'expires_on': 'Expiration le', 'free': 'Gratuit', 'plan': 'Plan', - 'show_sidebar': 'Show Sidebar', - 'hide_sidebar': 'Hide Sidebar', - 'event_type': 'Event Type', + 'show_sidebar': 'Afficher la barre latérale', + 'hide_sidebar': 'Masquer la barre latérale', + 'event_type': 'Type d\'événement', 'target_url': 'Cible', - 'copy': 'Copy', - 'must_be_online': 'Please restart the app once connected to the internet', - 'crons_not_enabled': 'The crons need to be enabled', + 'copy': 'Copier', + 'must_be_online': + 'Veuillez redémarrer l\'application lorsque vous serez connecté à internet', + 'crons_not_enabled': 'Les crons doivent être activés', 'api_webhooks': 'API Webhooks', - 'search_webhooks': 'Search :count Webhooks', - 'search_webhook': 'Search 1 Webhook', + 'search_webhooks': 'Recherche de :count Webhooks', + 'search_webhook': 'Recherche de 1 Webhook', 'webhook': 'Webhook', 'webhooks': 'Webhooks', - 'new_webhook': 'New Webhook', - 'edit_webhook': 'Edit Webhook', - 'created_webhook': 'Successfully created webhook', - 'updated_webhook': 'Successfully updated webhook', - 'archived_webhook': 'Successfully archived webhook', - 'deleted_webhook': 'Successfully deleted webhook', - 'removed_webhook': 'Successfully removed webhook', - 'restored_webhook': 'Successfully restored webhook', - 'archived_webhooks': 'Successfully archived :value webhooks', - 'deleted_webhooks': 'Successfully deleted :value webhooks', - 'removed_webhooks': 'Successfully removed :value webhooks', - 'restored_webhooks': 'Successfully restored :value webhooks', - 'api_tokens': 'Jetons d\'API', - 'api_docs': 'API Docs', - 'search_tokens': 'Search :count Tokens', - 'search_token': 'Search 1 Token', + 'new_webhook': 'Nouveau Webhook', + 'edit_webhook': 'Éditer le Webhook', + 'created_webhook': 'Le webhook a été créé avec succès', + 'updated_webhook': 'Le webhook a été mis à jour avec succès', + 'archived_webhook': 'Le webhook a été archivé avec succès', + 'deleted_webhook': 'Le webhook a été supprimé avec succès', + 'removed_webhook': 'Le webhook a été retiré avec succès', + 'restored_webhook': 'Le webhook a été restauré avec succès', + 'archived_webhooks': 'Les :value webhooks ont été archivés avec succès', + 'deleted_webhooks': 'Les :value webhooks ont été supprimés avec succès', + 'removed_webhooks': 'Les :value webhooks ont été retirés avec succès', + 'restored_webhooks': 'Les :value webhooks ont été restaurés avec succès', + 'api_tokens': 'Jetons API', + 'api_docs': 'Docs API', + 'search_tokens': 'Recherche de :count jetons', + 'search_token': 'Recherche de 1 jeton', 'token': 'Jeton', 'tokens': 'Jetons', - 'new_token': 'New Token', - 'edit_token': 'Éditer ce jeton', - 'created_token': 'Jeton créé avec succès', - 'updated_token': 'Jeton mis à jour avec succès', - 'archived_token': 'Jeton archivé avec succès', - 'deleted_token': 'Jeton supprimé avec succès', - 'removed_token': 'Successfully removed token', - 'restored_token': 'Successfully restored token', - 'archived_tokens': 'Successfully archived :value tokens', - 'deleted_tokens': 'Successfully deleted :value tokens', - 'restored_tokens': 'Successfully restored :value tokens', - 'client_registration': 'Client Registration', + 'new_token': 'Nouveau jeton', + 'edit_token': 'Éditer le jeton', + 'created_token': 'Le jeton a été créé avec succès', + 'updated_token': 'Le jeton a été mis à jour avec succès', + 'archived_token': 'Le jeton a été archivé avec succès', + 'deleted_token': 'Le jeton a été supprimé avec succès', + 'removed_token': 'Le jeton a été retiré avec succès', + 'restored_token': 'Le jeton a été restauré avec succès', + 'archived_tokens': 'Les :value jetons ont été archivés avec succès', + 'deleted_tokens': 'Les :value jetons ont été supprimés avec succès', + 'restored_tokens': 'Les :value jetons ont été restaurés avec succès', + 'client_registration': 'Enregistrement d\'un client', 'client_registration_help': - 'Enable clients to self register in the portal', - 'customize_and_preview': 'Customize & Preview', + 'Autoriser le client à s\'inscrire sur le portail', + 'customize_and_preview': 'Personnaliser et prévisualiser', 'email_invoice': 'Envoyer la facture par courriel', - 'email_quote': 'Envoyer ce devis par courriel', - 'email_credit': 'Email Credit', - 'email_payment': 'Reçu du paiement par courriel', - 'client_email_not_set': 'Client does not have an email address set', - 'ledger': 'Ledger', - 'view_pdf': 'View PDF', - 'all_records': 'All records', - 'owned_by_user': 'Owned by user', - 'credit_remaining': 'Credit Remaining', + 'email_quote': 'Envoyer la soumission par courriel', + 'email_credit': 'Crédit par courriel', + 'email_payment': 'Courriel de paiement', + 'client_email_not_set': 'Le client n\'a pas d\'adresse courriel définie', + 'ledger': 'Grand livre', + 'view_pdf': 'Voir PDF', + 'all_records': 'Tous les enregistrements', + 'owned_by_user': 'Propriété de l\'utilisateur', + 'credit_remaining': 'Crédit restant', 'contact_name': 'Nom du contact', - 'use_default': 'Use default', - 'reminder_endless': 'Endless Reminders', - 'number_of_days': 'Number of days', - 'configure_payment_terms': 'Configure Payment Terms', - 'payment_term': 'Payment Term', - 'new_payment_term': 'New Payment Term', - 'edit_payment_term': 'Éditer la condition de paiement', - 'created_payment_term': 'Conditions de paiement créées avec succès', - 'updated_payment_term': 'Conditions de paiement mises à jour avec succès', - 'archived_payment_term': 'Conditions de paiement archivées avec succès', - 'deleted_payment_term': 'Successfully deleted payment term', - 'removed_payment_term': 'Successfully removed payment term', - 'restored_payment_term': 'Successfully restored payment term', - 'archived_payment_terms': 'Successfully archived :value payment terms', - 'deleted_payment_terms': 'Successfully deleted :value payment terms', - 'restored_payment_terms': 'Successfully restored :value payment terms', - 'email_sign_in': 'Sign in with email', - 'change': 'Change', - 'change_to_mobile_layout': 'Change to the mobile layout?', - 'change_to_desktop_layout': 'Change to the desktop layout?', - 'send_from_gmail': 'Send from Gmail', - 'reversed': 'Reversed', - 'cancelled': 'Cancelled', + 'use_default': 'Utiliser la valeur par défaut', + 'reminder_endless': 'Rappels infinis', + 'number_of_days': 'Nombre de jours', + 'configure_payment_terms': 'Configuration des délais de paiements', + 'payment_term': 'Délai de paiement', + 'new_payment_term': 'Nouveau délai de paiement', + 'edit_payment_term': 'Modifier le délai de paiement', + 'created_payment_term': 'Le délai de paiement a été cré avec succès', + 'updated_payment_term': + 'Le délai de paiement a été mis à jour avec succès', + 'archived_payment_term': 'Le délai de paiement a été archivé avec succès', + 'deleted_payment_term': 'Le délai de paiement a été supprimé avec succès', + 'removed_payment_term': 'Le délai de paiement a été retiré avec succès', + 'restored_payment_term': + 'Le délai de paiement a été restauré avec succès', + 'archived_payment_terms': + 'Les :value délais de paiement ont été archivés avec succès', + 'deleted_payment_terms': + 'Les :value délais de paiement ont été supprimés avec succès', + 'restored_payment_terms': + 'Les :value délais de paiement ont été restaurés avec succès', + 'email_sign_in': 'Connexion par courriel', + 'change': 'Basculer', + 'change_to_mobile_layout': 'Basculer vers l\'affichage mobile', + 'change_to_desktop_layout': 'Basculer vers l\'affichage ordinateur', + 'send_from_gmail': 'Envoyer avec Gmail', + 'reversed': 'Inversé', + 'cancelled': 'Annulé', 'credit_amount': 'Montant du crédit', - 'quote_amount': 'Quote Amount', - 'hosted': 'Hosted', - 'selfhosted': 'Self-Hosted', + 'quote_amount': 'Montant de la soumission', + 'hosted': 'Hébergé', + 'selfhosted': 'Auto-hébergé', 'exclusive': 'Exclusif', 'inclusive': 'Inclusif', - 'hide_menu': 'Hide Menu', - 'show_menu': 'Show Menu', - 'partially_refunded': 'Partially Refunded', - 'search_documents': 'Search Documents', - 'search_designs': 'Search Designs', - 'search_invoices': 'Search Invoices', - 'search_clients': 'Search Clients', - 'search_products': 'Search Products', - 'search_quotes': 'Search Quotes', - 'search_credits': 'Search Credits', - 'search_vendors': 'Search Vendors', - 'search_users': 'Search Users', - 'search_tax_rates': 'Search Tax Rates', - 'search_tasks': 'Search Tasks', - 'search_settings': 'Search Settings', - 'search_projects': 'Search Projects', - 'search_expenses': 'Search Expenses', - 'search_payments': 'Search Payments', - 'search_groups': 'Search Groups', - 'search_company': 'Search Company', - 'search_document': 'Search 1 Document', - 'search_design': 'Search 1 Design', - 'search_invoice': 'Search 1 Invoice', - 'search_client': 'Search 1 Client', - 'search_product': 'Search 1 Product', - 'search_quote': 'Search 1 Quote', - 'search_credit': 'Search 1 Credit', - 'search_vendor': 'Search 1 Vendor', - 'search_user': 'Search 1 User', - 'search_tax_rate': 'Search 1 Tax Rate', - 'search_task': 'Search 1 Tasks', - 'search_project': 'Search 1 Project', - 'search_expense': 'Search 1 Expense', - 'search_payment': 'Search 1 Payment', - 'search_group': 'Search 1 Group', - 'refund_payment': 'Remboursement du paiement', - 'cancelled_invoice': 'Successfully cancelled invoice', - 'cancelled_invoices': 'Successfully cancelled invoices', - 'reversed_invoice': 'Successfully reversed invoice', - 'reversed_invoices': 'Successfully reversed invoices', - 'reverse': 'Reverse', + 'hide_menu': 'Masquer le menu', + 'show_menu': 'Afficher le menu', + 'partially_refunded': 'Partiellement remboursé', + 'search_documents': 'Recherche de documents', + 'search_designs': 'Recherche de designs', + 'search_invoices': 'Recherche de factures', + 'search_clients': 'Recherche de clients', + 'search_products': 'Recherche de produits', + 'search_quotes': 'Recherche de soumissions', + 'search_credits': 'Recherche de crédits', + 'search_vendors': 'Recherche de fournisseurs', + 'search_users': 'Recherche d\'utilisateurs', + 'search_tax_rates': 'Recherche de taux de taxe', + 'search_tasks': 'Recherche de tâches', + 'search_settings': 'Recherche de paramètres', + 'search_projects': 'Recherche de projets', + 'search_expenses': 'Recherche de dépenses', + 'search_payments': 'Recherche de paiements', + 'search_groups': 'Recherche de groupes', + 'search_company': 'Recherche d\'entreprises', + 'search_document': 'Recherche de 1 document', + 'search_design': 'Recherche de 1 design', + 'search_invoice': 'Recherche de 1 facture', + 'search_client': 'Recherche de 1 client', + 'search_product': 'Recherche de 1 produit', + 'search_quote': 'Recherche de 1 soumission', + 'search_credit': 'Recherche de 1 crédit', + 'search_vendor': 'Recherche de 1 entreprise', + 'search_user': 'Recherche de 1 utilisateur', + 'search_tax_rate': 'Recherche de 1 taux de taxe', + 'search_task': 'Recherche de 1 tâche', + 'search_project': 'Recherche de 1 projet', + 'search_expense': 'Recherche de 1 dépense', + 'search_payment': 'Recherche de 1 paiement', + 'search_group': 'Recherche de 1 groupe', + 'refund_payment': 'Remboursement', + 'cancelled_invoice': 'La facture a été annulée avec succès', + 'cancelled_invoices': 'Les factures ont été annulées avec succès', + 'reversed_invoice': 'La facture a été inversée avec succès', + 'reversed_invoices': 'Les factures ont été inversées avec succès', + 'reverse': 'Inverse', 'full_name': 'Nom complet', - 'city_state_postal': 'Ville/ Province (Département)/ CP', - 'postal_city_state': 'Ville/Province (Département)/Code postal', - 'custom1': 'Personnalisé1', - 'custom2': 'Personnalisé2', - 'custom3': 'Third Custom', - 'custom4': 'Fourth Custom', + 'city_state_postal': 'Ville/Prov/CP', + 'postal_city_state': 'Ville/Province/Code postal', + 'custom1': 'Personnalisation 1', + 'custom2': 'Personnalisation 2', + 'custom3': 'Troisième personnalisé', + 'custom4': 'Quatrième personnalisée', 'optional': 'Optionnel', 'license': 'Licence', 'purge_data': 'Purger les données', 'purge_successful': - 'Les données de l\'entreprise ont été purgées avec succès', + 'Toutes les données de l\'entreprise ont été purgées avec succès', 'purge_data_message': - 'Attention : Cette action va supprimer vos données et est irréversible', - 'invoice_balance': 'Invoice Balance', + 'Avertissement: Cette action est irréversible et va supprimer vos données de façon définitive.', + 'invoice_balance': 'Solde de facture', 'age_group_0': '0 - 30 jours', - 'age_group_30': '30 -60 jours', + 'age_group_30': '30 - 60 jours', 'age_group_60': '60 - 90 jours', 'age_group_90': '90 - 120 jours', 'age_group_120': '120+ jours', - 'refresh': 'Rafraîchir', - 'saved_design': 'Successfully saved design', - 'client_details': 'Client Details', - 'company_address': 'Company Address', - 'invoice_details': 'Détails de la facture', - 'quote_details': 'Quote Details', - 'credit_details': 'Credit Details', - 'product_columns': 'Product Columns', - 'task_columns': 'Task Columns', - 'add_field': 'Add Field', - 'all_events': 'All Events', + 'refresh': 'Actualiser', + 'saved_design': 'Le modèle a été sauvegardé avec succès', + 'client_details': 'Informations du client', + 'company_address': 'Adresse de l\'entreprise', + 'invoice_details': 'Détails de facture', + 'quote_details': 'Informations de la soumission', + 'credit_details': 'Informations de crédit', + 'product_columns': 'Colonnes produit', + 'task_columns': 'Colonnes tâches', + 'add_field': 'Ajouter un champ', + 'all_events': 'Ajouter un événement', 'permissions': 'Permissions', - 'none': 'Aucun(e)', - 'owned': 'Owned', - 'payment_success': 'Payment Success', - 'payment_failure': 'Payment Failure', + 'none': 'Aucun', + 'owned': 'Propriétaire', + 'payment_success': 'Paiement réussi', + 'payment_failure': 'Le paiement a échoué', 'invoice_sent': ':count facture envoyée', - 'quote_sent': 'Quote Sent', - 'credit_sent': 'Credit Sent', - 'invoice_viewed': 'Invoice Viewed', - 'quote_viewed': 'Quote Viewed', - 'credit_viewed': 'Credit Viewed', - 'quote_approved': 'Quote Approved', - 'receive_all_notifications': 'Receive All Notifications', - 'purchase_license': 'Purchase License', + 'quote_sent': 'Soumission envoyée', + 'credit_sent': 'Crédit envoyé', + 'invoice_viewed': 'Facture visualisée', + 'quote_viewed': 'Soumission visualisée', + 'credit_viewed': 'Crédit visualisé', + 'quote_approved': 'Soumission approuvée', + 'receive_all_notifications': 'Recevoir toutes les notifications', + 'purchase_license': 'Acheter une licence', 'apply_license': 'Activer la licence', 'cancel_account': 'Supprimer le compte', 'cancel_account_message': - 'Attention : Ceci va supprimer définitivement votre compte, il n\'y a pas d\'annulation possible.', - 'delete_company': 'Supprimer la société', + 'Avertissement: cette action est irréversible et supprimera votre compte de façon définitive.', + 'delete_company': 'Supprimer l\'entreprise', 'delete_company_message': - 'Attention : Ceci supprimera définitivement votre société, il n\'y a pas d\'annulation.', - 'enabled_modules': 'Enabled Modules', - 'converted_quote': 'Successfully converted quote', - 'credit_design': 'Credit Design', - 'includes': 'Includes', + 'Avertissement: Cette entreprise sera définitivement supprimée.', + 'enabled_modules': 'Modules activés', + 'converted_quote': 'La soumission a été convertie avec succès', + 'credit_design': 'Design de crédit', + 'includes': 'Inclusions', 'header': 'En-tête', - 'load_design': 'Charger un modèle', - 'css_framework': 'CSS Framework', - 'custom_designs': 'Custom Designs', + 'load_design': 'Charger le design', + 'css_framework': 'Framework CSS', + 'custom_designs': 'Designs personnalisés', 'designs': 'Designs', - 'new_design': 'New Design', - 'edit_design': 'Edit Design', - 'created_design': 'Successfully created design', - 'updated_design': 'Successfully updated design', - 'archived_design': 'Successfully archived design', - 'deleted_design': 'Successfully deleted design', - 'removed_design': 'Successfully removed design', - 'restored_design': 'Successfully restored design', - 'archived_designs': 'Successfully archived :value designs', - 'deleted_designs': 'Successfully deleted :value designs', - 'restored_designs': 'Successfully restored :value designs', + 'new_design': 'Nouveau design', + 'edit_design': 'Éditer le design', + 'created_design': 'Le modèle a été créé avec succès', + 'updated_design': 'Le modèle a été mis à jour avec succès', + 'archived_design': 'Le modèle a été archivé avec succès', + 'deleted_design': 'Le modèle a été supprimé avec succès', + 'removed_design': 'Le modèle a été retiré avec succès', + 'restored_design': 'Le modèle a été restauré avec succès', + 'archived_designs': 'Les :value modèles ont été archivés avec succès', + 'deleted_designs': 'Les :value modèles ont été supprimés avec succès', + 'restored_designs': 'Les :value modèles ont été restaurés avec succès', 'proposals': 'Propositions', - 'tickets': 'Tickets', - 'recurring_quotes': 'Devis récurrent', - 'recurring_tasks': 'Recurring Tasks', - 'account_management': 'Gestion des comptes', - 'credit_date': 'Date d\'avoir', + 'tickets': 'Billets', + 'recurring_quotes': 'Soumissions récurrentes', + 'recurring_tasks': 'Tâches récurrentes', + 'account_management': 'Gestion du compte', + 'credit_date': 'Date du crédit', 'credit': 'Crédit', 'credits': 'Crédits', - 'new_credit': 'Entrer un crédit', + 'new_credit': 'Inscrire un crédit', 'edit_credit': 'Éditer le crédit', - 'created_credit': 'Crédit créé avec succès', + 'created_credit': 'Le crédit a été créé avec succès', 'updated_credit': 'Le crédit a été mis à jour avec succès', - 'archived_credit': 'Crédit archivé avec succès', - 'deleted_credit': 'Crédit supprimé avec succès', - 'removed_credit': 'Successfully removed credit', - 'restored_credit': 'Crédit restauré avec succès', - 'archived_credits': ':count crédits archivés avec succès', - 'deleted_credits': ':count crédits supprimés avec succès', - 'restored_credits': 'Successfully restored :value credits', - 'current_version': 'Version actuelle', - 'latest_version': 'Latest Version', - 'update_now': 'Update Now', - 'a_new_version_is_available': 'A new version of the web app is available', - 'update_available': 'Update Available', - 'app_updated': 'Update successfully completed', + 'archived_credit': 'Le crédit a été archivé avec succès', + 'deleted_credit': 'Le crédit a été supprimé avec succès', + 'removed_credit': 'Le crédit a été retiré avec succès', + 'restored_credit': 'Le crédit a été restauré avec succès', + 'archived_credits': ':count crédits ont archivés avec succès', + 'deleted_credits': ':count crédits ont été supprimés avec succès', + 'restored_credits': 'Les :value crédits ont été restaurés avec succès', + 'current_version': 'Version courante', + 'latest_version': 'Dernière version', + 'update_now': 'Mettre à jour', + 'a_new_version_is_available': + 'Une nouvelle version de l\'application web est disponible', + 'update_available': 'Mise à jour disponible', + 'app_updated': 'La mise à jour a été complétée avec succès', 'learn_more': 'En savoir plus', - 'integrations': 'Integrations', - 'tracking_id': 'Tracking Id', - 'slack_webhook_url': 'Slack Webhook URL', - 'credit_footer': 'Credit Footer', - 'credit_terms': 'Credit Terms', - 'new_company': 'Nouveau compte', - 'added_company': 'L\'entreprise a été ajoutée', - 'company1': 'Champ personnalisé Entreprise 1', - 'company2': 'Champ personnalisé Entreprise 2', - 'company3': 'Champ personnalisé Entreprise 3', - 'company4': 'Champ personnalisé Entreprise 4', - 'product1': 'Champ personnalisé Produit 1', - 'product2': 'Champ personnalisé Produit 2', - 'product3': 'Champ personnalisé Produit 3', - 'product4': 'Champ personnalisé Produit 4', - 'client1': 'Champ personnalisé Client 1', + 'integrations': 'Intégrations', + 'tracking_id': 'ID de suivi', + 'slack_webhook_url': 'URL du Webhook Slack', + 'credit_footer': 'Pied de page pour crédit', + 'credit_terms': 'Conditions d\'utilisation pour crédit', + 'new_company': 'Nouvelle entreprise', + 'added_company': 'L\'entreprise a été ajoutée avec succès', + 'company1': 'Entreprise personnalisée 1', + 'company2': 'Entreprise personnalisée 2', + 'company3': 'Entreprise personnalisée 3', + 'company4': 'Entreprise personnalisée 4', + 'product1': 'Produit personnalisé 1', + 'product2': 'Produit personnalisé 2', + 'product3': 'Produit personnalisé 3', + 'product4': 'Produit personnalisé 4', + 'client1': 'Client personnalisé 1', 'client2': 'Client personnalisé 2', 'client3': 'Client personnalisé 3', 'client4': 'Client personnalisé 4', - 'contact1': 'Champ personnalisé Contact 1', - 'contact2': 'Champ personnalisé Contact 2', - 'contact3': 'Champ personnalisé Contact 3', - 'contact4': 'Champ personnalisé Contact 4', - 'task1': 'Champ personnalisé Tâche 1', - 'task2': 'Champ personnalisé Tâche 2', - 'task3': 'Champ personnalisé Tâche 3', - 'task4': 'Champ personnalisé Tâche 4', - 'project1': 'Champ personnalisé Projet 1', - 'project2': 'Champ personnalisé Projet 2', - 'project3': 'Champ personnalisé Projet 3', - 'project4': 'Champ personnalisé Projet 4', - 'expense1': 'Champ personnalisé Dépense 1', - 'expense2': 'Champ personnalisé Dépense 2', - 'expense3': 'Champ personnalisé Dépense 3', - 'expense4': 'Champ personnalisé Dépense 4', + 'contact1': 'Contact personnalisé 1', + 'contact2': 'Contact personnalisé 2', + 'contact3': 'Contact personnalisé 3', + 'contact4': 'Contact personnalisé 4', + 'task1': 'Tâche personnalisée 1', + 'task2': 'Tâche personnalisée 2', + 'task3': 'Tâche personnalisée 3', + 'task4': 'Tâche personnalisée 4', + 'project1': 'Projet personnalisé 1', + 'project2': 'Projet personnalisé 2', + 'project3': 'Projet personnalisé 3', + 'project4': 'Projet personnalisé 4', + 'expense1': 'Dépense personnalisée 1', + 'expense2': 'Dépense personnalisée 2', + 'expense3': 'Dépense personnalisée 3', + 'expense4': 'Dépense personnalisée 4', 'vendor1': 'Fournisseur personnalisé 1', 'vendor2': 'Fournisseur personnalisé 2', 'vendor3': 'Fournisseur personnalisé 3', 'vendor4': 'Fournisseur personnalisé 4', - 'invoice1': 'Champ personnalisé Facture 1', - 'invoice2': 'Champ personnalisé Facture 2', - 'invoice3': 'Champ personnalisé Facture 3', - 'invoice4': 'Champ personnalisé Facture 4', - 'payment1': 'Champ personnalisé Paiement 1', - 'payment2': 'Champ personnalisé Paiement 2', - 'payment3': 'Champ personnalisé Paiement 3', - 'payment4': 'Champ personnalisé Paiement 4', - 'surcharge1': 'Autre frais 1', - 'surcharge2': 'Autre frais 2', - 'surcharge3': 'Autre frais 3', - 'surcharge4': 'Autre frais 4', - 'group1': 'Champ personnalisé Groupe 1', - 'group2': 'Champ personnalisé Groupe 2', - 'group3': 'Champ personnalisé Groupe 3', - 'group4': 'Champ personnalisé Groupe 4', - 'reset': 'Remettre à zéro', - 'number': 'Nombre', + 'invoice1': 'Facture personnalisée 1', + 'invoice2': 'Facture personnalisée 2', + 'invoice3': 'Facture personnalisée 3', + 'invoice4': 'Facture personnalisée 4', + 'payment1': 'Paiement personnalisé 1', + 'payment2': 'Facture personnalisée 2', + 'payment3': 'Facture personnalisée 3', + 'payment4': 'Facture personnalisée 4', + 'surcharge1': 'Surcharge personnalisée 1', + 'surcharge2': 'Surcharge personnalisée 2', + 'surcharge3': 'Surcharge personnalisée 3', + 'surcharge4': 'Surcharge personnalisée 4', + 'group1': 'Groupe personnalisé 1', + 'group2': 'Groupe personnalisé 2', + 'group3': 'Groupe personnalisé 3', + 'group4': 'Groupe personnalisé 4', + 'reset': 'Remise à zéro', + 'number': 'Numéro', 'export': 'Exporter', 'chart': 'Graphique', - 'count': 'Compte', + 'count': 'Compteur', 'totals': 'Totaux', 'blank': 'Vide', 'day': 'Jour', @@ -22675,251 +22974,252 @@ mixin LocalizationsProvider on LocaleCodeAware { 'group_by': 'Grouper par', 'credit_balance': 'Solde du crédit', 'contact_last_login': 'Dernière connexion du contact', - 'contact_full_name': 'Nom du contact', + 'contact_full_name': 'Nom complet du contact', 'contact_phone': 'Téléphone du contact', - 'contact_custom_value1': 'Valeur champ personnalisé Contact 1', - 'contact_custom_value2': 'Valeur champ personnalisé Contact 2', - 'contact_custom_value3': 'Valeur champ personnalisé Contact 3', - 'contact_custom_value4': 'Valeur champ personnalisé Contact 4', - 'shipping_address1': 'Rue', - 'shipping_address2': 'Appt/Bâtiment', - 'shipping_city': 'Ville', - 'shipping_state': 'Région/Département', - 'shipping_postal_code': 'Code postal', - 'shipping_country': 'Pays', - 'billing_address1': 'Rue', - 'billing_address2': 'Appt/Bâtiment', - 'billing_city': 'Ville', - 'billing_state': 'Région/Département', - 'billing_postal_code': 'Code postal', - 'billing_country': 'Pays', + 'contact_custom_value1': 'Valeur personnalisée du contact 1', + 'contact_custom_value2': 'Valeur personnalisée du contact 2', + 'contact_custom_value3': 'Valeur personnalisée du contact 3', + 'contact_custom_value4': 'Valeur personnalisée du contact 4', + 'shipping_address1': 'Rue de livraison', + 'shipping_address2': 'App. de livraison', + 'shipping_city': 'Ville de livraison', + 'shipping_state': 'Province de livraison', + 'shipping_postal_code': 'Code postal de livraison', + 'shipping_country': 'Pays de livraison', + 'billing_address1': 'Rue de facturation', + 'billing_address2': 'App. de facturation', + 'billing_city': 'Ville de facturation', + 'billing_state': 'Province de facturation', + 'billing_postal_code': 'Code postal de facturation', + 'billing_country': 'Pays de facturation', 'client_id': 'ID du client', 'assigned_to': 'Assigné à', 'created_by': 'Créé par :name', 'assigned_to_id': 'Assigné à ID', 'created_by_id': 'Créé par ID', - 'add_column': 'Ajouter une colonne', - 'edit_columns': 'Éditer les colonnes', + 'add_column': 'Ajouter colonne', + 'edit_columns': 'Éditer colonne', 'columns': 'Colonnes', - 'aging': 'Vieillissement', - 'profit_and_loss': 'Profits et Pertes', + 'aging': 'Impayés', + 'profit_and_loss': 'Profit et perte', 'reports': 'Rapports', 'report': 'Rapport', - 'add_company': 'Ajouter compte', + 'add_company': 'Ajouter une entreprise', 'unpaid_invoice': 'Facture impayée', 'paid_invoice': 'Facture payée', - 'unapproved_quote': 'Devis non-approuvé', + 'unapproved_quote': 'Soumission non approuvée', 'help': 'Aide', - 'refund': 'Remboursement', - 'refund_date': 'Date du remboursement', - 'filtered_by': 'Filtré par', + 'refund': 'Rembousement', + 'refund_date': 'Date de remboursement', + 'filtered_by': 'Filtrée par', 'contact_email': 'Courriel du contact', 'multiselect': 'Sélection multiple', - 'entity_state': 'État', + 'entity_state': 'Statut', 'verify_password': 'Vérifier le mot de passe', - 'applied': 'Publié', - 'include_recent_errors': 'Contient les erreurs récentes des journaux', + 'applied': 'Appliqué', + 'include_recent_errors': + 'Inclut les erreurs récentes des journaux système', 'your_message_has_been_received': - 'Nous avons reçu votre message et répondrons dans les meilleurs délais', + 'Nous avons reçu votre message et vous répondrons rapidement.', 'message': 'Message', 'from': 'De', - 'show_product_details': 'Voir les détails du produit', + 'show_product_details': 'Afficher les détails du produit', 'show_product_details_help': 'Veuillez inclure la description et le coût dans la liste déroulante du produit', - 'pdf_min_requirements': - 'Le générateur de PDF nécessite la version :version', + 'pdf_min_requirements': 'Le moteur de rendu PDF nécessite :version', 'adjust_fee_percent': 'Ajuster le pourcentage de frais', 'adjust_fee_percent_help': 'Ajuster le frais de pourcentage au compte', - 'configure_settings': 'Modifier les paramètres', - 'support_forum': 'forum de support', + 'configure_settings': 'Configurer les paramètres', + 'support_forum': 'Forum de support', 'about': 'À propos', 'documentation': 'Documentation', 'contact_us': 'Nous joindre', 'subtotal': 'Sous-total', 'line_total': 'Total', 'item': 'Article', - 'credit_email': 'Courriel de crédit', - 'iframe_url': 'Site internet', - 'domain_url': 'URL du domaine', - 'password_is_too_short': 'Mot de passe trop court', + 'credit_email': 'Courriel pour le crédit', + 'iframe_url': 'Site web', + 'domain_url': 'URL de domaine', + 'password_is_too_short': 'Le mot de passe est trop court', 'password_is_too_easy': - 'Le mot de passe doit comporter au moins une majuscule et un nombre', - 'client_portal_tasks': 'Tâche du portail client', + 'Le mot de passe doit contenir une majuscule et un nombre', + 'client_portal_tasks': 'Tâches du portail client', 'client_portal_dashboard': 'Tableau de bord du portail client', - 'please_enter_a_value': 'Saisissez une valeur', - 'deleted_logo': 'Le logo a été supprimé', + 'please_enter_a_value': 'Veuillez saisir une valeur', + 'deleted_logo': 'Le logo a été supprimé avec succès', 'yes': 'Oui', 'no': 'Non', 'generate_number': 'Générer un nombre', 'when_saved': 'Lors de la sauvegarde', 'when_sent': 'Lors de l\'envoi', - 'select_company': 'Sélectionner une entreprise', + 'select_company': 'Sélectionnez une entreprise', 'float': 'Flottant', 'collapse': 'Réduire', - 'show_or_hide': 'Afficher/cacher', - 'menu_sidebar': 'Barre latérale du menu', + 'show_or_hide': 'Afficher / masquer', + 'menu_sidebar': 'Menu latéral', 'history_sidebar': 'Historique latéral', 'tablet': 'Tablette', 'mobile': 'Mobile', - 'desktop': 'Bureau', - 'layout': 'Présentation', - 'view': 'Voir', + 'desktop': 'Fixe', + 'layout': 'Affichage', + 'view': 'Visualiser', 'module': 'Module', 'first_custom': 'Premier personnalisé', 'second_custom': 'Second personnalisé', - 'third_custom': 'Troisième personnalisé', - 'show_cost': 'Voir le coût', - 'show_product_cost': 'Show Product Cost', + 'third_custom': 'Troisième latéral', + 'show_cost': 'Afficher le coût', + 'show_product_cost': 'Afficher le montant du produit', 'show_cost_help': - 'Afficher un champ coût du produit pour suivre la marge', - 'show_product_quantity': 'Voir la quantité du produit', + 'Afficher un champ de coût du produit pour suivre le profit', + 'show_product_quantity': 'Afficher la quantité de produit', 'show_product_quantity_help': - 'Afficher un champ de quantité du produit, sinon en choisir un par défaut', - 'show_invoice_quantity': 'Voir la quantité sur la facture', + 'Afficher un champ Quantité de produit. 1 par défaut.', + 'show_invoice_quantity': 'Afficher la quantité de facture', 'show_invoice_quantity_help': - 'Afficher un champ de quantité pour la position, sinon en choisir un par défaut', - 'show_product_discount': 'Show Product Discount', - 'show_product_discount_help': 'Display a line item discount field', + 'Afficher un champ Quantité d\'article par ligne. 1 par défaut.', + 'show_product_discount': 'Afficher le rabais de produit', + 'show_product_discount_help': + 'Afficher un champ rabais de ligne d\'article', 'default_quantity': 'Quantité par défaut', 'default_quantity_help': - 'Mettre automatiquement la quantité de la position à un', + 'Définit automatiquement la quantité d\'article par ligne à 1.', 'one_tax_rate': 'Un taux de taxe', 'two_tax_rates': 'Deux taux de taxe', - 'three_tax_rates': 'Trois taux de taxe', + 'three_tax_rates': 'Trois taux de taxes', 'default_tax_rate': 'Taux de taxe par défaut', 'user': 'Utilisateur', - 'invoice_tax': 'Taxe de la facture', - 'line_item_tax': 'Taxe de la position', + 'invoice_tax': 'Taxe de facture', + 'line_item_tax': 'Taxe d\'article par ligne', 'inclusive_taxes': 'Taxes incluses', - 'invoice_tax_rates': 'Taux de taxe de la facture', - 'item_tax_rates': 'Taux de taxe de la position', + 'invoice_tax_rates': 'Taux de taxe de facture', + 'item_tax_rates': 'Taux de taxe par article', 'no_client_selected': 'Veuillez sélectionner un client', - 'configure_rates': 'Configurer les taux', - 'configure_gateways': 'Configure Gateways', - 'tax_settings': 'Réglages des taxes', - 'tax_settings_rates': 'Taux de taxes', + 'configure_rates': 'Configuration des taux', + 'configure_gateways': 'Configurer les passerelles', + 'tax_settings': 'Paramètres des taxes', + 'tax_settings_rates': 'Taux de taxe', 'accent_color': 'Couleur de mise en évidence', 'switch': 'Changer', - 'comma_sparated_list': 'Liste séparée par des virgules', + 'comma_sparated_list': 'Liste séparée par virgule', 'options': 'Options', - 'single_line_text': 'Texte sur une ligne', - 'multi_line_text': 'Texte multi-lignes', + 'single_line_text': 'Ligne de texte simple', + 'multi_line_text': 'Multiligne de texte', 'dropdown': 'Liste déroulante', - 'field_type': 'Type du champ', + 'field_type': 'Type de champ', 'recover_password_email_sent': - 'Un courriel de récupération du mot de passe a été envoyé', + 'Un courriel a été envoyé pour la récupération du mot de passe', 'submit': 'Envoyer', - 'recover_password': 'Récupérer votre mot de passe', + 'recover_password': 'Récupérez votre mot de passe', 'late_fees': 'Frais de retard', - 'credit_number': 'Numéro d\'avoir', + 'credit_number': 'Numéro de crédit', 'payment_number': 'Numéro de paiement', - 'late_fee_amount': 'Montant de pénalité de retard', - 'late_fee_percent': 'Pourcentage de pénalité de retard', - 'schedule': 'Planification', - 'before_due_date': 'Avant la date d\'échéance', - 'after_due_date': 'Après la date d\'échéance', + 'late_fee_amount': 'Frais de retard', + 'late_fee_percent': 'Pourcentage de frais de retard', + 'schedule': 'Calendrier', + 'before_due_date': 'Avant l\'échéance', + 'after_due_date': 'Après l\'échéance', 'after_invoice_date': 'Après la date de facturation', 'days': 'Jours', - 'invoice_email': 'Courriel de facture', + 'invoice_email': 'Courriel de facturation', 'payment_email': 'Courriel de paiement', - 'partial_payment': 'Partial Payment', - 'payment_partial': 'Partial Payment', - 'partial_payment_email': 'Partial Payment Email', - 'quote_email': 'Courriel de devis', - 'endless_reminder': 'Rappel sans fin', + 'partial_payment': 'Paiement partiel', + 'payment_partial': 'Paiement partiel', + 'partial_payment_email': 'Courriel du paiement partiel', + 'quote_email': 'Courriel de soumission', + 'endless_reminder': 'Rappel perpétuel', 'filtered_by_user': 'Filtré par utilisateur', 'administrator': 'Administrateur', 'administrator_help': - 'Permettre à l\'utilisateur de gérer les utilisateurs, modifier les paramètres et de modifier 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', 'edit_user': 'Éditer l\'utilisateur', - 'created_user': 'Utilisateur créé avec succès avec succès', - 'updated_user': 'Utilisateur mis à jour avec succès', - 'archived_user': 'Utilisateur archivé avec succès', - 'deleted_user': 'Utilisateur supprimé avec succès', - 'removed_user': 'L\'utilisateur a été supprimé', - 'restored_user': 'Commande restaurée avec succès', - 'archived_users': 'Successfully archived :value users', - 'deleted_users': 'Successfully deleted :value users', - 'removed_users': 'Successfully removed :value users', - 'restored_users': 'Successfully restored :value users', + 'created_user': 'L\'utilisateur a été créé avec succès', + 'updated_user': 'L\'utilisateur a été mis à jour avec succès', + 'archived_user': 'L\'utilisateur a été archivé avec succès', + 'deleted_user': 'L\'utilisateur a été supprimé avec succès', + 'removed_user': 'L\'utilisateur a été retiré avec succès', + 'restored_user': 'L\'utilisateur a été restauré avec succès', + 'archived_users': 'Les :value utilisateurs ont été archivés avec succès', + 'deleted_users': 'Les :value utilisateurs ont été supprimés avec succès', + 'removed_users': 'Les :value utilisateurs ont été retirés avec succès', + 'restored_users': 'Les :value utilisateurs ont été restaurés avec succès', 'general_settings': 'Paramètres généraux', - 'invoice_options': 'Options de facturation', + 'invoice_options': 'Options de facture', '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 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 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', - 'all_pages': 'Toutes les pages', - 'last_page': 'Dernière page', - 'primary_font': 'Police principale', - 'secondary_font': 'Police secondaire', + 'Inclure les images jointes dans la facture.', + 'all_pages_header': 'Afficher l\'en-tête sur', + 'all_pages_footer': 'Afficher le pied de page sur', + 'first_page': 'première page', + 'all_pages': 'toutes les pages', + 'last_page': 'dernière page', + 'primary_font': 'Fonte principale', + 'secondary_font': 'Fonte secondaire', 'primary_color': 'Couleur principale', 'secondary_color': 'Couleur secondaire', - 'page_size': 'Taille de Page', + 'page_size': 'Taille de page', 'font_size': 'Taille de police', - 'quote_design': 'Mise en page des Devis', + 'quote_design': 'Design de soumission', 'invoice_fields': 'Champs de facture', - 'product_fields': 'Champs de produit', + 'product_fields': 'Champs produit', 'invoice_terms': 'Conditions de facturation', 'invoice_footer': 'Pied de facture', - 'quote_terms': 'Conditions des devis', - 'quote_footer': 'Pied de page des devis', - 'auto_email_invoice': 'Envoyer automatiquement par courriel', + 'quote_terms': 'Conditions de soumission', + 'quote_footer': 'Pied de soumission par défaut', + 'auto_email_invoice': 'Envoi automatique', 'auto_email_invoice_help': - 'Envoyer automatiquement par courriel les factures récurrentes lorsqu\'elles sont créés.', - 'auto_archive_invoice': 'Archiver automatiquement', + 'Envoi automatiquement les factures récurrentes lorsqu\'elles sont créées.', + 'auto_archive_invoice': 'Autoarchivage', 'auto_archive_invoice_help': - 'Archiver automatiquement les factures lorsqu\'elles sont payées.', - 'auto_archive_quote': 'Archiver automatiquement', + 'Archive automatiquement les soumissions lorsqu\'elles sont converties.', + 'auto_archive_quote': 'Autoarchivage', 'auto_archive_quote_help': - 'Archiver automatiquement les devis lorsqu\'ils sont convertis.', - 'auto_convert_quote': 'Convertir automatiquement', + 'Archive automatiquement les soumissions lorsqu\'elles sont converties.', + 'auto_convert_quote': 'Autoconversion', 'auto_convert_quote_help': - 'Convertir automatiquement un devis en facture dès qu\'il est approuvé par le client.', + 'Convertir automatiquement une soumission en facture lorsque le client l\'accepte.', 'workflow_settings': 'Paramètres de flux de travail', - 'freq_daily': 'Quotidien', + 'freq_daily': 'Quotidienne', 'freq_weekly': 'Hebdomadaire', - 'freq_two_weeks': 'Deux semaines', - 'freq_four_weeks': 'Quatre semaines', + 'freq_two_weeks': 'Aux deux semaines', + 'freq_four_weeks': 'Aux quatre semaines', 'freq_monthly': 'Mensuelle', 'freq_two_months': 'Deux mois', 'freq_three_months': 'Trimestrielle', - 'freq_four_months': 'Quatre mois', - 'freq_six_months': 'Six mois', + 'freq_four_months': '4 mois', + 'freq_six_months': 'Semestrielle', 'freq_annually': 'Annuelle', 'freq_two_years': 'Deux ans', 'freq_three_years': 'Trois ans', 'never': 'Jamais', 'company': 'Entreprise', - 'generated_numbers': 'Numéros générés', - 'charge_taxes': 'Taxe supplémentaire', + 'generated_numbers': 'Nombres générés', + 'charge_taxes': 'Facturer les taxes', 'next_reset': 'Prochaine remise à zéro', - 'reset_counter': 'Remettre le compteur à zéro', + 'reset_counter': 'Remettre à zéro le compteur', 'recurring_prefix': 'Préfixe récurrent', 'number_padding': 'Marge interne du nombre', 'general': 'Général', 'surcharge_field': 'Champ Surcharge', - 'company_field': 'Champ d\'entreprise', + 'company_field': 'Champ Entreprise', 'company_value': 'Valeur de compagnie', - 'credit_field': 'Champ de Crédit', - 'invoice_field': 'Champ de facture', - 'invoice_surcharge': 'Majoration de facture', - 'client_field': 'Champ de client', - 'product_field': 'Champ de produit', - 'payment_field': 'Champ de Paiement', - 'contact_field': 'Champ de contact', - 'vendor_field': 'Champ de fournisseur', - 'expense_field': 'Champ de dépense', - 'project_field': 'Champ de projet', - 'task_field': 'Champ de tâche', - 'group_field': 'Champ de Groupe', + 'credit_field': 'Champ Crédit', + 'invoice_field': 'Champ Facture', + 'invoice_surcharge': 'Surcharge de facture', + 'client_field': 'Champ Client', + 'product_field': 'Champ Produit', + 'payment_field': 'Champ Paiement', + 'contact_field': 'Champ Contact', + 'vendor_field': 'Champ Fournisseur', + 'expense_field': 'Champ Dépense', + 'project_field': 'Champ Projet', + 'task_field': 'Champ Tâche', + 'group_field': 'Champ Groupe', 'number_counter': 'Compteur de nombre', 'prefix': 'Préfixe', 'number_pattern': 'Modèle de nombre', @@ -22928,47 +23228,48 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_javascript': 'JavaScript personnalisé', '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/soumission PDF.', 'show_accept_invoice_terms': 'Case à cocher pour les conditions de facturation', 'show_accept_invoice_terms_help': - 'Exiger que le client confirme qu\'il accepte les conditions de facturation', - 'show_accept_quote_terms': 'Case à cocher pour les conditions d\'offre', + 'Requiert du client qu\'il confirme et accepte les conditions de facturation', + 'show_accept_quote_terms': + 'Case à cocher pour les conditions de soumssion', 'show_accept_quote_terms_help': - 'Exiger que le client confirme qu\'il accepte les conditions de l\'offre', + 'Requiert du client qu\'il confirme et accepte les conditions de soumission', 'require_invoice_signature': 'Signature de facture', - 'require_invoice_signature_help': 'Exiger que le client signe', - 'require_quote_signature': 'Signature de l\'offre', + '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': - '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.', + '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.', 'authorization': 'Autorisation', - 'subdomain': 'Sous-domaine', + 'subdomain': 'sous-domaine', 'domain': 'Domaine', 'portal_mode': 'Mode portail', 'email_signature': 'Cordialement,', 'enable_email_markup_help': - 'Rendez le règlement de vos clients plus facile en ajoutant les markup schema.org à vos courriels.', - 'plain': 'Brut', + 'rendez le paiement plus facile à vos client en ajoutant à vos courriel, le marquage de schema.org.', + 'plain': 'Ordinaire', 'light': 'Clair', - 'dark': 'Sombre', + 'dark': 'Foncé', 'email_design': 'Modèle de courriel', - 'attach_pdf': 'Joindre PDF', - 'attach_documents': 'Joindre les Documents', + 'attach_pdf': 'Joindre un PDF', + 'attach_documents': 'Joindre un document', 'attach_ubl': 'Joindre UBL', - 'email_style': 'Style d\'email', - 'enable_email_markup': 'Activer le balisage', - 'reply_to_email': 'Adresse de réponse', - 'reply_to_name': 'Reply-To Name', + 'email_style': 'Style de courriel', + 'enable_email_markup': 'Autoriser le marquage', + 'reply_to_email': 'Courriel de réponse', + 'reply_to_name': 'Nom de Répondre À', 'bcc_email': 'Courriel CCI', 'processed': 'Traité', - 'credit_card': 'Carte de Crédit', + 'credit_card': 'Carte de crédit', 'bank_transfer': 'Virement bancaire', - 'priority': 'Prioritée', + 'priority': 'Priorité', 'fee_amount': 'Montant des frais', 'fee_percent': 'Pourcentage des frais', 'fee_cap': 'Limite des frais', - 'limits_and_fees': 'Limites/Frais', + 'limits_and_fees': 'Limites / frais', 'enable_min': 'Activer min', 'enable_max': 'Activer max', 'min_limit': 'Min: :min', @@ -22977,35 +23278,38 @@ mixin LocalizationsProvider on LocaleCodeAware { 'max': 'Max', 'accepted_card_logos': 'Logos des cartes acceptées', 'credentials': 'Identifiants', - 'update_address': 'Mettre à jour l\'adresse', + 'update_address': 'Mise à jour de l\'adresse', 'update_address_help': - 'Mettre à jour l\'adresse du client avec les détails fournis', + 'Met à jour l\'adresse du client avec les informations fournies', 'rate': 'Taux', 'tax_rate': 'Taux de taxe', 'new_tax_rate': 'Nouveau taux de taxe', 'edit_tax_rate': 'Éditer le taux de taxe', - 'created_tax_rate': 'Taux de taxe créé avec succès', - 'updated_tax_rate': 'Taux de taxe mis à jour avec succès', - 'archived_tax_rate': 'Taux de taxe archivé avec succès', + 'created_tax_rate': 'Le taux de taxe a été créé avec succès', + 'updated_tax_rate': 'Le taux de taxe a été mis à jour avec succès', + 'archived_tax_rate': 'Le taux de taxe a été archivé avec succès', 'deleted_tax_rate': 'Le taux de taxe a été supprimé avec succès', 'restored_tax_rate': 'Le taux de taxe a été restauré avec succès', - 'archived_tax_rates': 'Successfully archived :value tax rates', - 'deleted_tax_rates': 'Successfully deleted :value tax rates', - 'restored_tax_rates': 'Successfully restored :value tax rates', - 'fill_products': 'Remplissage auto des produits', + 'archived_tax_rates': + 'Les :value taux de taxes ont été archivés avec succès', + 'deleted_tax_rates': + 'Les :value taux de taxes ont été supprimés avec succès', + 'restored_tax_rates': + 'Les :value taux de taxes ont été restaurés avec succès', + 'fill_products': 'Remplissage automatique des produits', 'fill_products_help': - 'La sélection d’un produit entrainera la MAJ de la description et du prix', - 'update_products': 'Mise à jour auto des produits', + 'La sélection d\'un produit entrainera la mise à jour de la description et du prix', + 'update_products': 'Mise à jour automatique des produits', 'update_products_help': '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 le prix des produits dans la devise du client', 'fees': 'Frais', 'limits': 'Limites', 'provider': 'Fournisseur', 'company_gateway': 'Passerelle de paiement', - 'company_gateways': 'Passerelles de paiements', + 'company_gateways': 'Passerelles de paiement', 'new_company_gateway': 'Nouvelle passerelle', 'edit_company_gateway': 'Éditer la passerelle', 'created_company_gateway': 'La passerelle a été créée avec succès', @@ -23013,16 +23317,19 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_company_gateway': 'La passerelle a été archivée avec succès', 'deleted_company_gateway': 'La passerelle a été supprimée avec succès', 'restored_company_gateway': 'La passerelle a été restaurée avec succès', - 'archived_company_gateways': 'Successfully archived :value gateways', - 'deleted_company_gateways': 'Successfully deleted :value gateways', - 'restored_company_gateways': 'Successfully restored :value gateways', - 'continue_editing': 'Continuer l\'édition', - 'discard_changes': 'Ignorer les modifications', - 'default_value': 'Valeur Par Défaut', + 'archived_company_gateways': + 'Les :value passerelles ont été archivées avec succès', + 'deleted_company_gateways': + 'Les :value passerelles ont été supprimées avec succès', + 'restored_company_gateways': + 'Les :value passerelles ont été restaurées avec succès', + 'continue_editing': 'Continuez l\'édition', + 'discard_changes': 'Annuler les changements', + 'default_value': 'Valeur par défaut', 'disabled': 'Désactivé', 'currency_format': 'Format de devise', - 'first_day_of_the_week': 'Premier Jour de la Semaine', - 'first_month_of_the_year': 'Premier mois de l\'Année', + 'first_day_of_the_week': 'Premier jour de la semaine', + 'first_month_of_the_year': 'Premier mois de l\'année', 'sunday': 'Dimanche', 'monday': 'Lundi', 'tuesday': 'Mardi', @@ -23044,178 +23351,179 @@ mixin LocalizationsProvider on LocaleCodeAware { 'december': 'Décembre', 'symbol': 'Symbole', 'ocde': 'Code', - 'date_format': 'Format de la date', + 'date_format': 'Format de date', 'datetime_format': 'Format date/heure', - 'military_time': '24H', - 'military_time_help': 'Affichage sur 24h', + 'military_time': 'Format d\'heure 24 h', + 'military_time_help': 'Affichage 24h', 'send_reminders': 'Envoyer des rappels', 'timezone': 'Fuseau horaire', - 'filtered_by_project': 'Filtered by Project', + 'filtered_by_project': 'Filtrer par projet', 'filtered_by_group': 'Filtrer par groupe', - 'filtered_by_invoice': 'Filtré par Facture', - 'filtered_by_client': 'Filtré par Client', - 'filtered_by_vendor': 'Filtré par Vendeur', - 'group_settings': 'Paramètres de groupe', + 'filtered_by_invoice': 'Filtrer par facture', + 'filtered_by_client': 'Filtrer par client', + 'filtered_by_vendor': 'Filtrer par fournisseur', + 'group_settings': 'Paramètres des groupes', 'group': 'Groupe', 'groups': 'Groupes', - 'new_group': 'Nouveau Groupe', + 'new_group': 'Nouveau groupe', 'edit_group': 'Éditer le groupe', 'created_group': 'Le groupe a été créé avec succès', 'updated_group': 'Le groupe a été mis à jour avec succès', - 'archived_groups': 'Successfully archived :value groups', - 'deleted_groups': 'Successfully deleted :value groups', - 'restored_groups': 'Successfully restored :value groups', + 'archived_groups': 'Les :value groupes ont été archivés avec succès', + 'deleted_groups': 'Les :value groupes ont été supprimés avec succès', + 'restored_groups': 'Les :value groupes ont été restaurés avec succès', 'archived_group': 'Le groupe a été archivé avec succès', 'deleted_group': 'Le groupe a été supprimé avec succès', 'restored_group': 'Le groupe a été restauré avec succès', - 'upload_logo': 'Envoyer le logo', - 'uploaded_logo': 'Le logo a été envoyé avec succès', + 'upload_logo': 'Téléverser le logo', + 'uploaded_logo': 'Le logo a été téléversé avec succès', 'logo': 'Logo', 'saved_settings': 'Les paramètres ont été sauvegardés avec succès', - 'product_settings': 'Réglages du produit', + 'product_settings': 'Paramètres des produits', 'device_settings': 'Paramètres de l\'appareil', - 'defaults': 'Valeurs par défaut', + 'defaults': 'Par défaut', 'basic_settings': 'Paramètres de base', 'advanced_settings': 'Paramètres avancés', - 'company_details': 'Informations sur l’entreprise', - 'user_details': 'Utilisateur', - 'localization': 'Localisation', + 'company_details': 'Informations sur l\'entreprise', + 'user_details': 'Profil utilisateur', + 'localization': 'Paramètres régionaux', 'online_payments': 'Paiements en ligne', 'tax_rates': 'Taux de taxe', 'notifications': 'Notifications', - 'import_export': 'Importer/Exporter', + 'import_export': 'Importer / Exporter', 'custom_fields': 'Champs personnalisés', - 'invoice_design': 'Modèle de facture', + 'invoice_design': 'Modèles de factures', 'buy_now_buttons': 'Boutons Achetez maintenant', 'email_settings': 'Paramètres de courriel', - 'templates_and_reminders': 'Modèles & Rappels', + 'templates_and_reminders': 'Modèles et rappels', 'credit_cards_and_banks': 'Cartes de crédit et banques', 'data_visualizations': 'Visualisation des données', 'price': 'Prix', - 'email_sign_up': 'Inscription par email', + 'email_sign_up': 'Inscription par courriel', 'google_sign_up': 'Inscription avec Google', - 'thank_you_for_your_purchase': 'Merci pour votre achat !', + 'thank_you_for_your_purchase': 'Merci de votre achat!', 'redeem': 'Rembourser', 'back': 'Retour', - 'past_purchases': 'Achats antérieurs', + 'past_purchases': 'Achats précédents', 'annual_subscription': 'Abonnement annuel', - 'pro_plan': 'Pro Plan', - 'enterprise_plan': 'Enterprise Plan', - 'count_users': ':count utilisateur(s)', + 'pro_plan': 'Plan Pro', + 'enterprise_plan': 'Plan Entreprise', + 'count_users': ':count utilisateurs', 'upgrade': 'Mettre à niveau', - 'please_enter_a_first_name': 'Veuillez entrer un prénom', - 'please_enter_a_last_name': 'Veuillez entrer un nom', + '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': - 'Veuillez accepter les conditions d\'utilisation et la politique de confidentialité pour créer un compte.', - 'i_agree_to_the': 'J\'accepte les', + 'Vous devez accepter les conditions et la politique de confidentialité pour créer un compte.', + 'i_agree_to_the': 'J\'accepte', 'terms_of_service': 'Conditions d\'utilisation', 'privacy_policy': 'Politique de confidentialité', - 'sign_up': 'S’enregistrer', - 'account_login': 'Connexion à votre compte', - 'view_website': 'Voir le site Web', + 'sign_up': 'Inscription', + 'account_login': 'Connexion', + 'view_website': 'Visiter le site web', 'create_account': 'Créer un compte', - 'email_login': 'Email de connexion', + 'email_login': 'Courriel de connexion', 'create_new': 'Créer', 'no_record_selected': 'Aucun enregistrement sélectionné', 'error_unsaved_changes': - 'Veuillez enregistrer ou annuler vos modifications', + 'Veuillez sauvegarder ou annuler vos modifications', 'download': 'Télécharger', - 'requires_an_enterprise_plan': 'Χρειάζεται πλάνο επιχείρησης', - 'take_picture': 'Φωτογραφίσετε', - 'upload_file': 'Envoyer un fichier', - 'document': 'Document', + 'requires_an_enterprise_plan': 'Le plan Entreprise est requis', + 'take_picture': 'Prendre un photo', + 'upload_file': 'Téléverser un fichier', + 'document': 'Justificatifs', 'documents': 'Documents', - 'new_document': 'Νέο Έγγραφο', - 'edit_document': 'Εκδώσετε Έγγραφο', - 'uploaded_document': 'Le document a été envoyé avec succès', - 'updated_document': 'Document mis à jour avec succès', - 'archived_document': 'Document archivé avec succès', + 'new_document': 'Nouveau document', + 'edit_document': 'Éditer un document', + 'uploaded_document': 'Le document a été téléversé avec succès', + 'updated_document': 'Le document a été mis à jour avec succès', + 'archived_document': 'Le document a été archivé avec succès', 'deleted_document': 'Le document a été supprimé avec succès', 'restored_document': 'Le document a été restauré avec succès', - 'archived_documents': 'Successfully archived :value documents', - 'deleted_documents': 'Successfully deleted :value documents', - 'restored_documents': 'Successfully restored :value documents', - 'no_history': 'Κανένα Ιστορικό', + 'archived_documents': 'Les :value documents ont été archivés avec succès', + 'deleted_documents': 'Les :value documents ont été supprimés avec succès', + 'restored_documents': + 'Les :value documents ont été restaurés avec succès', + 'no_history': 'Aucun historique', 'expense_date': 'Date de la dépense', 'pending': 'En attente', - 'expense_status_1': 'Σύνδεση', - 'expense_status_2': 'Σε εκκρεμότητα', - 'expense_status_3': 'Με τιμολόγιο', - 'converted': 'Converti', - 'add_documents_to_invoice': 'Ajouter un document à la facture', + 'expense_status_1': 'Connecté', + 'expense_status_2': 'En attente', + 'expense_status_3': 'Facturé', + 'converted': 'Convertie', + 'add_documents_to_invoice': 'Ajouter des documents aux factures', 'exchange_rate': 'Taux de change', - 'convert_currency': 'Convertir la devise', - 'mark_paid': 'Marquer comme payé', + 'convert_currency': 'Conversion de devise', + 'mark_paid': 'Marquer payée', 'category': 'Catégorie', 'address': 'Adresse', 'new_vendor': 'Nouveau fournisseur', - 'created_vendor': 'Fournisseur créé avec succès', - 'updated_vendor': 'Founisseur mis à jour avec succès', - 'archived_vendor': 'Fournisseur archivé avec succès', - 'deleted_vendor': 'Fournisseur supprimé avec succès', - 'restored_vendor': 'Fournisseur restauré avec succès', - 'archived_vendors': ':count fournisseurs archivés avec succès', - 'deleted_vendors': ':count fournisseurs supprimés avec succès', - 'restored_vendors': 'Successfully restored :value vendors', - 'new_expense': 'Saisir une dépense', - 'created_expense': 'Dépense créée avec succès', - 'updated_expense': 'Dépense mise à jour avec succès', - 'archived_expense': 'Dépense archivée avec succès', - 'deleted_expense': 'Dépense supprimée avec succès', - 'restored_expense': 'Dépense restaurée avec succès', - 'archived_expenses': 'Dépenses archivées avec succès', - 'deleted_expenses': 'Dépenses supprimées avec succès', - 'restored_expenses': 'Successfully restored :value expenses', - 'copy_shipping': 'Copier expédition', + 'created_vendor': 'Le fournisseur a été créé avec succès', + 'updated_vendor': 'Le fournisseur a été mis à jour avec succès', + 'archived_vendor': 'Le fournisseur a été archivé avec succès', + 'deleted_vendor': 'Le fournisseur a été supprimé avec succès', + 'restored_vendor': 'Le fournisseur a été restauré avec succès', + 'archived_vendors': ':count fournisseurs ont été archivés avec succès', + 'deleted_vendors': ':count fournisseurs ont été supprimés avec succès', + 'restored_vendors': + 'Les :value fournisseurs ont été restaurés avec succès', + 'new_expense': 'Entrer une dépense', + 'created_expense': 'La dépense a été créée avec succès', + 'updated_expense': 'La dépense a été mise à jour avec succès', + 'archived_expense': 'La dépense a été archivée avec succès', + 'deleted_expense': 'La dépense a été supprimée avec succès', + 'restored_expense': 'La dépense a été restaurée avec succès', + 'archived_expenses': 'Les dépenses ont été archivées avec succès', + 'deleted_expenses': 'Les dépenses ont été supprimées avec succès', + 'restored_expenses': 'Les :value dépenses ont été restaurées avec succès', + 'copy_shipping': 'Copier livraison', 'copy_billing': 'Copier facturation', - 'design': 'Design', - 'failed_to_find_record': 'Élément non trouvé', - 'invoiced': 'Facturé', - 'logged': 'Enregistré', + 'design': 'Conception', + 'failed_to_find_record': 'Enregistrement introuvable', + 'invoiced': 'Facturée', + 'logged': 'Enregistrée', 'running': 'En cours', - 'resume': 'Reprendre', - 'task_errors': 'Merci de corriger les horaires conflictuels', - 'start': 'Début', - 'stop': 'Fin', - 'started_task': 'Tâche démarrée avec succès', - 'stopped_task': 'Tâche stoppée avec succès', - 'resumed_task': 'Tâche relancée avec succès', + 'resume': 'Continuer', + 'task_errors': 'Veuillez corriger les plages de temps qui se chevauchent', + 'start': 'Démarrer', + 'stop': 'Arrêter', + 'started_task': 'La tâche a démaré avec succès', + 'stopped_task': 'La tâche a été arrêtée avec succès', + 'resumed_task': 'La tâche a été reprise avec succès', 'now': 'Maintenant', - 'auto_start_tasks': 'Démarrer automatiquement les tâches', - 'timer': 'Compteur', + 'auto_start_tasks': 'Démarrage de tâches automatique', + 'timer': 'Minuteur', 'manual': 'Manuel', - 'budgeted': 'Budgétisé', - 'start_time': 'Début', - 'end_time': 'Heure de fin', + 'budgeted': 'Budgété', + 'start_time': 'Démarrée à', + 'end_time': 'Arrêtée à', 'date': 'Date', - 'times': 'Horaires', + 'times': 'Temps', 'duration': 'Durée', 'new_task': 'Nouvelle tâche', - 'created_task': 'Tâche créée avec succès', - 'updated_task': 'Tâche mise à jour avec succès', - 'archived_task': 'Tâche archivée avec succès', - 'deleted_task': 'Tâche supprimée avec succès', - 'restored_task': 'Tâche restaurée avec succès', - 'archived_tasks': ':count tâches archivées avec succès', - 'deleted_tasks': ':count tâches supprimées avec succès', - 'restored_tasks': 'Successfully restored :value tasks', + 'created_task': 'La tâche a été créée avec succès', + 'updated_task': 'La tâche a été modifiée avec succès', + 'archived_task': 'La tâche a été archivée avec succès', + 'deleted_task': 'La tâche a été supprimée avec succès', + 'restored_task': 'La tâche a été restaurée avec succès', + 'archived_tasks': ':count tâches ont été archivées avec succès', + 'deleted_tasks': ':count tâches ont été supprimées avec succès', + 'restored_tasks': 'Les :value tâches ont été restaurées avec succès', 'please_enter_a_name': 'Veuillez entrer un nom', 'budgeted_hours': 'Heures budgétées', 'created_project': 'Le projet a été créé avec succès', 'updated_project': 'Le projet a été mis à jour avec succès', 'archived_project': 'Le projet a été archivé avec succès', 'deleted_project': 'Le projet a été supprimé avec succès', - 'restored_project': 'Le projet a été rétabli avec succès', - 'archived_projects': ':count projet(s) a (ont) été archivé(s)', - 'deleted_projects': - ':count projet(s) a (ont) été supprimé(s) avec succès', - 'restored_projects': 'Successfully restored :value projects', + 'restored_project': 'Le projet a été restauré avec succès', + 'archived_projects': ':count projets ont été archivés avec succès', + 'deleted_projects': ':count projets ont été supprimés avec succès', + 'restored_projects': 'Les :value projets ont été restaurés avec succès', 'new_project': 'Nouveau projet', - 'thank_you_for_using_our_app': 'Merci d\'utiliser notre app !', + 'thank_you_for_using_our_app': 'Merci d\'utiliser notre app!', 'if_you_like_it': 'Si vous appréciez, merci de', - 'click_here': 'cliquer ici', - 'click_here_capital': 'Cliquer ici', - 'to_rate_it': 'pour évaluer notre app.', + 'click_here': 'cliquez ici', + 'click_here_capital': 'Cliquez ici', + 'to_rate_it': 'pour l\'évaluer.', 'average': 'Moyenne', 'unapproved': 'Non approuvé', 'authenticate_to_change_setting': @@ -23226,57 +23534,57 @@ mixin LocalizationsProvider on LocaleCodeAware { 'biometric_authentication': 'Connexion biométrique', 'footer': 'Pied de page', 'compare': 'Comparer', - 'hosted_login': 'Authentification Hosted', - 'selfhost_login': 'Authentification Selfhost', - 'google_sign_in': 'Sign in with Google', + 'hosted_login': 'Connexion hébergée', + 'selfhost_login': 'Connexion autohébergée', + 'google_sign_in': 'Connexion avec Google', 'today': 'Aujourd\'hui', - 'custom_range': 'Intervalle personnalisé', + 'custom_range': 'Personnalisé', 'date_range': 'Intervalle de dates', - 'current': 'Actuel', + 'current': 'En cours', 'previous': 'Précédent', - 'current_period': 'Période actuelle', - 'comparison_period': 'Comparaison de période', + 'current_period': 'Période en cours', + 'comparison_period': 'Période de comparaison', 'previous_period': 'Période précédente', 'previous_year': 'Année précédente', 'compare_to': 'Comparer à', 'last7_days': '7 derniers jours', - 'last_week': 'Semaine dernière', + 'last_week': 'Dernière semaine', 'last30_days': '30 derniers jours', 'this_month': 'Mois en cours', 'last_month': 'Mois dernier', 'this_year': 'Cette année', 'last_year': 'Dernière année', 'custom': 'Personnalisé', - 'clone_to_invoice': 'Dupliquer la facture', - 'clone_to_quote': 'Dupliquer en devis', - 'clone_to_credit': 'Clone to Credit', + 'clone_to_invoice': 'Cloner en facture', + 'clone_to_quote': 'Cloner en soumission', + 'clone_to_credit': 'Cloner au crédit', 'view_invoice': 'Voir la facture', 'convert': 'Convertir', 'more': 'Plus', - 'edit_client': 'Modifier ce client', - 'edit_product': 'Éditer ce produit', + 'edit_client': 'Modifier le client', + 'edit_product': 'Modifier le produit', 'edit_invoice': 'Modifier la facture', - 'edit_quote': 'Éditer ce devis', - 'edit_payment': 'Éditer le paiement', + 'edit_quote': 'Modifier la soumission', + 'edit_payment': 'Modifier le paiement', 'edit_task': 'Éditer la tâche', - 'edit_expense': 'Éditer la dépensee', + 'edit_expense': 'Éditer la dépense', 'edit_vendor': 'Éditer le fournisseur', - 'edit_project': 'Editer le projet', - 'edit_recurring_quote': 'Editer devis récurrent', + 'edit_project': 'Éditer le projet', + 'edit_recurring_quote': 'Éditer la soumission récurrente', 'billing_address': 'Adresse de facturation', - 'shipping_address': 'Adresse de Livraison', + 'shipping_address': 'Adresse de livraison', 'total_revenue': 'Revenu total', 'average_invoice': 'Facture moyenne', - 'outstanding': 'Impayé', + 'outstanding': 'Impayées', 'invoices_sent': ':count factures envoyées', 'active_clients': 'clients actifs', 'close': 'Fermer', 'email': 'Courriel', 'password': 'Mot de passe', 'url': 'URL', - 'secret': 'Clé secrète', + 'secret': 'Secret', 'name': 'Nom', - 'logout': 'Se déconnecter', + 'logout': 'Déconnexion', 'login': 'Connexion', 'filter': 'Filtrer', 'sort': 'Trier', @@ -23288,218 +23596,223 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archive': 'Archiver', 'delete': 'Supprimer', 'restore': 'Restaurer', - 'refresh_complete': 'Rafraichissement terminé', - 'please_enter_your_email': 'Entrez votre adresse e-mail', - 'please_enter_your_password': 'Entez votre mot de passe', - 'please_enter_your_url': 'Entrez votre URL', - 'please_enter_a_product_key': 'Entrez la clé produit', + 'refresh_complete': 'Actualisation complétée', + 'please_enter_your_email': 'Veuillez saisir votre courriel', + 'please_enter_your_password': 'Veuillez saisir votre mot de passe', + 'please_enter_your_url': 'Veuillez saisir votre URL', + 'please_enter_a_product_key': 'Veuillez saisir la clé de produit', 'ascending': 'Ascendant', 'descending': 'Descendant', 'save': 'Sauvegarder', - 'an_error_occurred': 'Une erreur s\'est produite', + 'an_error_occurred': 'Il y a eu une erreur', 'paid_to_date': 'Payé à ce jour', - 'balance_due': 'Montant dû', + 'balance_due': 'Solde dû', 'balance': 'Solde', - 'overview': 'Vue d\'ensemble', + 'overview': 'Survol', 'details': 'Détails', 'phone': 'Téléphone', - 'website': 'Site Web', - 'vat_number': 'Numéro de TVA', - 'id_number': 'Numéro ID', + 'website': 'Site web', + 'vat_number': 'N° de taxe', + 'id_number': 'N° d\'entreprise', 'create': 'Créer', 'copied_to_clipboard': ':value a été copié au presse-papier', 'error': 'Erreur', 'could_not_launch': 'Lancement impossible', - 'contacts': 'Informations de contact', + 'contacts': 'Contacts', 'additional': 'Additionnel', 'first_name': 'Prénom', 'last_name': 'Nom', 'add_contact': 'Ajouter un contact', - 'are_you_sure': 'Voulez-vous vraiment effectuer cette action ?', + 'are_you_sure': 'Voulez-vous vraiment effectuer cette action?', 'cancel': 'Annuler', 'ok': 'Ok', - 'remove': 'Supprimer', - 'email_is_invalid': 'L\'adresse de courriel n\'est pas correcte', + 'remove': 'Retirer', + 'email_is_invalid': 'Le courriel est invalide', 'product': 'Produit', 'products': 'Produits', - 'new_product': 'Nouvel article', - 'created_product': 'Produit créé avec succès', - 'updated_product': 'Produit mis à jour avec succès', - 'archived_product': 'Produit archivé avec succès', + 'new_product': 'Nouveau produit', + 'created_product': 'Le produit a été créé avec succès', + 'updated_product': 'Le produit a été mis à jour avec succès', + 'archived_product': 'Le produit a été archivé avec succès', 'deleted_product': 'Le produit a été supprimé avec succès', - 'restored_product': 'Le produit a été rétabli avec succès', + 'restored_product': 'Le produit a été restauré avec succès', 'archived_products': ':count produits archivés avec succès', - 'deleted_products': ':count produit(s) supprimé(s) avec succès', - 'restored_products': 'Successfully restored :value products', + 'deleted_products': ':count produits ont été supprimés avec succès', + 'restored_products': 'Les :value produits ont été restaurés avec succès', 'product_key': 'Produit', 'notes': 'Notes', 'cost': 'Coût', 'client': 'Client', 'clients': 'Clients', 'new_client': 'Nouveau client', - 'created_client': 'Client créé avec succès', - 'updated_client': 'Client modifié avec succès', - 'archived_client': 'Client archivé avec succès', + 'created_client': 'Le client a été créé avec succès', + 'updated_client': 'Le client a été modifié avec succès', + 'archived_client': 'Le client a été archivé avec succès', 'archived_clients': ':count clients archivés avec succès', - 'deleted_client': 'Client supprimé avec succès', - 'deleted_clients': ':count clients supprimés avec succès', - 'restored_client': 'Client restauré avec succès', - 'restored_clients': 'Successfully restored :value clients', + 'deleted_client': 'Le client a été supprimé avec succès', + 'deleted_clients': ':count clients ont été supprimés avec succès', + 'restored_client': 'Le client a été restauré avec succès', + 'restored_clients': 'Les :value clients ont été restaurés avec succès', 'address1': 'Rue', - 'address2': 'Appt/Bâtiment', + 'address2': 'Appartement / bureau', 'city': 'Ville', - 'state': 'Région/Département', + 'state': 'État / province', 'postal_code': 'Code postal', 'country': 'Pays', 'invoice': 'Facture', 'invoices': 'Factures', 'new_invoice': 'Nouvelle facture', - 'created_invoice': 'Facture créée avec succès', - 'updated_invoice': 'Facture modifiée avec succès', - 'archived_invoice': 'Facture archivée avec succès', - 'deleted_invoice': 'Facture supprimée avec succès', - 'restored_invoice': 'Facture restaurée avec succès', - 'archived_invoices': ':count factures archivées avec succès', + 'created_invoice': 'La facture a été créée avec succès', + 'updated_invoice': 'La facture a été modifiée avec succès', + 'archived_invoice': 'La facture a été archivée avec succès', + 'deleted_invoice': 'La facture a été supprimée avec succès', + 'restored_invoice': 'La facture a été restaurée avec succès', + 'archived_invoices': ':count factures ont été archivées avec succès', 'deleted_invoices': ':count factures supprimées avec succès', - 'restored_invoices': 'Successfully restored :value invoices', - 'emailed_invoice': 'Facture envoyée par courriel avec succès', - 'emailed_payment': 'Paiement envoyé par email avec succès', + 'restored_invoices': 'Les :value factures ont été restaurées avec succès', + 'emailed_invoice': 'La facture a été envoyée par courriel avec succès', + 'emailed_payment': 'Le paiement a été envoyé par courriel avec succès', 'amount': 'Montant', - 'invoice_number': 'Numéro de facture', - 'invoice_date': 'Date de facture', - 'discount': 'Remise', - 'po_number': 'N° de Bon de Commande', - 'terms': 'Conditions', - 'public_notes': 'Note publique', + 'invoice_number': 'N° de facture', + 'invoice_date': 'Date de facturation', + 'discount': 'Escompte', + 'po_number': 'N° de bon de commande', + 'terms': 'Modalités', + 'public_notes': 'Notes publiques', 'private_notes': 'Notes personnelles', 'frequency': 'Fréquence', 'start_date': 'Date de début', 'end_date': 'Date de fin', - 'quote_number': 'Devis numéro', - 'quote_date': 'Date du devis', + 'quote_number': 'N° de soumission', + 'quote_date': 'Date de soumission', 'valid_until': 'Valide jusqu\'au', 'items': 'Articles', - 'partial_deposit': 'Depot Partial', + 'partial_deposit': 'Partiel / dépôt', 'description': 'Description', 'unit_cost': 'Coût unitaire', 'quantity': 'Quantité', - 'add_item': 'Ajouter Article', + 'add_item': 'Ajouter un article', 'contact': 'Contact', 'work_phone': 'Téléphone', - 'total_amount': 'Montant Total', - 'pdf': 'Fichier PDF', - 'due_date': 'Date d\'échéance', - 'partial_due_date': 'Paiement partiel', + 'total_amount': 'Montant total', + 'pdf': 'PDF', + 'due_date': 'Échéance', + 'partial_due_date': 'Date d\'échéance du paiement partiel', 'status': 'Statut', - 'invoice_status_id': 'Etat de Facture', - 'quote_status': 'État du devis', - 'click_plus_to_add_item': 'Cliquer pour ajouter un article (objet)', + 'invoice_status_id': 'État de la facture', + 'quote_status': 'État de la soumission', + 'click_plus_to_add_item': 'Cliquez + pour ajouter un article', 'click_plus_to_add_time': 'Cliquez sur + pour ajouter du temps', - 'count_selected': 'nombre selectionne', + 'count_selected': ':count sélectionnés', 'total': 'Total', 'percent': 'Pourcent', - 'edit': 'Éditer', - 'dismiss': 'Quitter', - 'please_select_a_date': 'Sélectionnez une date', - 'please_select_a_client': 'Sélectionnez un client', - 'please_select_an_invoice': 'Sélectionnez une facture', - 'task_rate': 'Taux de tâche', + 'edit': 'Modifier', + 'dismiss': 'Annuler', + 'please_select_a_date': 'Veuillez saisir une date', + 'please_select_a_client': 'Veuillez sélectionner un client', + 'please_select_an_invoice': 'Veuillez sélectionner une facture', + 'task_rate': 'Taux de tâche', 'settings': 'Paramètres', 'language': 'Langue', 'currency': 'Devise', - 'created_at': 'Date de création', - 'created_on': 'Created On', + 'created_at': 'Créé le', + 'created_on': 'Créé le', 'updated_at': 'Mis à jour', 'tax': 'Taxe', - 'please_enter_an_invoice_number': 'Sélectionnez un numéro de facture', - 'please_enter_a_quote_number': 'Sélectionner un numéro de devis', - 'past_due': 'En retard', + 'please_enter_an_invoice_number': 'Veuillez saisir un numéro de facture', + 'please_enter_a_quote_number': 'Veuillez saisir un numéro de soumission', + 'past_due': 'En souffrance', 'draft': 'Brouillon', 'sent': 'Envoyé', - 'viewed': 'Vu', - 'approved': 'Approuvé', - 'partial': 'Partiel/dépôt', + 'viewed': 'Vue', + 'approved': 'Approuvée', + 'partial': 'Partiel / dépôt', 'paid': 'Payé', 'mark_sent': 'Marquer comme envoyé', - 'marked_invoice_as_sent': 'Facture marquee comme envoyee avec succes', - 'marked_invoice_as_paid': 'Facture marquée comme envoyée', - 'marked_invoices_as_sent': 'Les factures ont été marquées envoyées', - 'marked_invoices_as_paid': 'Factures marquées comme envoyées', - 'done': 'Terminé', + 'marked_invoice_as_sent': + 'La facture a été marquée comme envoyée avec succès', + 'marked_invoice_as_paid': + 'La facture a été marquée comme envoyée avec succès', + 'marked_invoices_as_sent': + 'Les factures ont été marquées comme envoyées avec succès', + 'marked_invoices_as_paid': + 'Les factures ont été marquées comme envoyées avec succès', + 'done': 'Valider', 'please_enter_a_client_or_contact_name': - 'Veuillez introduire un nom de client', - 'dark_mode': 'Mode sombre', + 'Veuillez saisir un nom de client ou de contact', + 'dark_mode': 'Mode foncé', 'restart_app_to_apply_change': - 'Recommencer k\'app pour introduire l\'app change', - 'refresh_data': 'Rafraîchir les données', - 'blank_contact': 'Details pour contacter la Banque', + 'Redémarrez l\'app pour mettre à jour les changements', + 'refresh_data': 'Actualiser les données', + 'blank_contact': 'Contact vide', 'activity': 'Activité', - 'no_records_found': 'Pas d\'archives trouves', + 'no_records_found': 'Aucun enregistrement trouvé', 'clone': 'Dupliquer', 'loading': 'Chargement', - 'industry': 'Champ', + 'industry': 'Entreprise', 'size': 'Taille', - 'payment_terms': 'Conditions de paiement', + 'payment_terms': 'Délais de paiement', 'payment_date': 'Date du paiement', 'payment_status': 'État du paiement', - 'payment_status_1': 'En attente', - 'payment_status_2': 'Annulé', - 'payment_status_3': 'Échoué', - 'payment_status_4': 'Complété', - 'payment_status_5': 'Partiellement remboursé', - 'payment_status_6': 'Remboursement', - 'payment_status_-1': 'Unapplied', - 'payment_status_-2': 'Partially Unapplied', + 'payment_status_1': 'Em attente', + 'payment_status_2': 'Annulée', + 'payment_status_3': 'Échouée', + 'payment_status_4': 'Complétée', + 'payment_status_5': 'Partiellement remboursée', + 'payment_status_6': 'Remboursée', + 'payment_status_-1': 'Non appliqué', + 'payment_status_-2': 'Partiellement non-appliquée', 'net': 'Net', 'client_portal': 'Portail client', - 'show_tasks': 'Afficher des taches', - 'email_reminders': 'Messages de rappel par courriel', + 'show_tasks': 'Afficher les tâches', + 'email_reminders': 'Courriel de rappel', 'enabled': 'Activé', - 'recipients': 'Destinataires', + 'recipients': 'destinataires', 'initial_email': 'Courriel initial', - 'first_reminder': 'Premier rappel', - 'second_reminder': 'Second rappel', - 'third_reminder': 'Troisième rappel', - 'reminder1': 'Premier Message de Rappel', - 'reminder2': 'Deuxieme Message de Rappel', - 'reminder3': 'Troisieme Message de Rappel', + 'first_reminder': '1er rappel', + 'second_reminder': '2e rappel', + 'third_reminder': '3e rappel', + 'reminder1': 'Premier rappel', + 'reminder2': 'Deuxième rappel', + 'reminder3': 'Troisième rappel', 'template': 'Modèle', 'send': 'Envoyer', 'subject': 'Sujet', 'body': 'Corps', - 'send_email': 'Envoyer courriel', - 'email_receipt': 'Envoyer le reçu par courriel au client', - 'auto_billing': 'Debit Automatique', + 'send_email': 'Envoyer un courriel', + 'email_receipt': 'Envoyer le reçu de paiement par courriel au client', + 'auto_billing': 'Facturation automatique', 'button': 'Bouton', - 'preview': 'Prévisualisation', - 'customize': 'Personnaliser', + 'preview': 'PRÉVISUALISATION', + 'customize': 'Personnalisation', 'history': 'Historique', 'payment': 'Paiement', 'payments': 'Paiements', - 'refunded': 'Remboursé', + 'refunded': 'Remboursée', 'payment_type': 'Type de paiement', - 'transaction_reference': 'Référence transaction', - 'enter_payment': 'Saisissez un paiement', - 'new_payment': 'Entrer un paiement', - 'created_payment': 'Paiement créé avec succès', - 'updated_payment': 'Paiement mis à jour avec succès', - 'archived_payment': 'Paiement archivé avec succès', - 'deleted_payment': 'Paiement supprimé avec succès', - 'restored_payment': 'Paiement restauré avec succès', - 'archived_payments': ':count paiement archivés avec succès', - 'deleted_payments': ':count paiements supprimés avec succès', - 'restored_payments': 'Successfully restored :value payments', - 'quote': 'Devis', - 'quotes': 'Devis', - 'new_quote': 'Nouveau devis', - 'created_quote': 'Devis créé avec succès', - 'updated_quote': 'Devis mis à jour avec succès', - 'archived_quote': 'Devis archivé avec succès', - 'deleted_quote': 'Devis supprimé avec succès', - 'restored_quote': 'Devis restauré avec succès', - 'archived_quotes': ':count devis archivés avec succès', - 'deleted_quotes': ':count devis supprimés avec succès', - 'restored_quotes': 'Successfully restored :value quotes', + 'transaction_reference': 'N° de référence', + 'enter_payment': 'Inscrire un paiement', + 'new_payment': 'Inscrire un paiement', + 'created_payment': 'Le paiement a été créé avec succès', + 'updated_payment': 'Le paiement a été mis à jour avec succès', + 'archived_payment': 'Le paiement a été archivé avec succès', + 'deleted_payment': 'Le paiement a été supprimé avec succès', + 'restored_payment': 'Le paiement a été restauré avec succès', + 'archived_payments': ':count paiements ont été archivés avec succès', + 'deleted_payments': ':count paiements ont été supprimés avec succès', + 'restored_payments': 'Les :value paiements ont été restaurés avec succès', + 'quote': 'Soumission', + 'quotes': 'Soumissions', + 'new_quote': 'Nouvelle soumission', + 'created_quote': 'La soumission a été créée avec succès', + 'updated_quote': 'La soumission a été mise à jour avec succès', + 'archived_quote': 'La soumission a été archivée avec succès', + 'deleted_quote': 'La soumission a été supprimée avec succès', + 'restored_quote': 'La soumission a été restaurée avec succès', + 'archived_quotes': ':count soumissions ont été archivées avec succès', + 'deleted_quotes': ':count soumissions ont été supprimées avec succès', + 'restored_quotes': + 'Les :value soumissions ont été restaurées avec succès', 'expense': 'Dépense', 'expenses': 'Dépenses', 'vendor': 'Fournisseur', @@ -23513,31 +23826,33 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_3': ':user a supprimé le client :client', 'activity_4': ':user a créé la facture :invoice', 'activity_5': ':user a mis à jour la facture :invoice', - 'activity_6': ':user a mailé la facture :invoice pour :client à :contact', - 'activity_7': ':contact a vu la facture :invoice pour :client', + 'activity_6': + ':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 un paiement :payment concernant :invoice pour :client', - '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', - 'activity_14': ':user a entré le crédit :credit', + ':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', + 'activity_14': ':user a saisi le crédit :credit', 'activity_15': ':user a mis à jour le crédit :credit', 'activity_16': ':user a archivé le crédit :credit', 'activity_17': ':user a supprimé le crédit :credit', - 'activity_18': ':user a créé le devis :quote', - 'activity_19': ':user a mis à jour le devis :quote', - 'activity_20': ':user a mailé un devis :quote pour :client à :contact', - 'activity_21': ':contact a lu le devis :quote', - 'activity_22': ':user a archivé le devis :quote', - 'activity_23': ':user a supprimé le devis :quote', - 'activity_24': ':user a restauré le devis :quote', + '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', + 'activity_21': ':contact a visualisé la soumission :quote', + 'activity_22': ':user a archivé la soumission :quote', + 'activity_23': ':user a supprimé la soumission :quote', + 'activity_24': ':user a restauré la soumission :quote', 'activity_25': ':user a restauré la facture :invoice', 'activity_26': ':user a restauré le client :client', 'activity_27': ':user a restauré le paiement :payment', 'activity_28': ':user a restauré le crédit :credit', - 'activity_29': ':contact a approuvé le devis :quote pour :client', + 'activity_29': ':contact a approuvé la soumission :quote pour :client', 'activity_30': ':user a créé le fournisseur :vendor', 'activity_31': ':user a archivé le fournisseur :vendor', 'activity_32': ':user a supprimé le fournisseur :vendor', @@ -23546,9 +23861,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_35': ':user a archivé la dépense :expense', 'activity_36': ':user a supprimé la dépense :expense', 'activity_37': ':user a restauré la dépense :expense', - 'activity_39': ':user a annulé un paiement de :payment_amount (:payment)', + 'activity_39': ':user a annulé un paiement :payment de :payment_amount', 'activity_40': - ':user a remboursé :adjustment d\'un paiement de :payment_amount (:payment)', + ':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', @@ -23556,142 +23871,168 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_45': ':user a supprimé la tâche :task', 'activity_46': ':user a restauré la tâche :task', 'activity_47': ':user a mis à jour la dépense :expense', - 'activity_48': ':user a mis à jour le ticket :ticket', - 'activity_49': ':user a fermé le ticket :ticket', - 'activity_50': ':user a fusionner le ticket :ticket', - 'activity_51': ':user a divisé le :ticket', - 'activity_52': ':contact a ouvert le ticket :ticket', - 'activity_53': ':contact a ré-ouvert le ticket :ticket', - 'activity_54': ':user a ré-ouvert le ticket :ticket', - 'activity_55': ':contact a répondu au ticket :ticket', - 'activity_56': ':user a visualisé le ticket :ticket', - 'activity_57': 'La facture :invoice n\'a pu être envoyée', - 'activity_58': ':user reversed invoice :invoice', - 'activity_59': ':user cancelled invoice :invoice', - 'activity_60': ':contact viewed quote :quote', - 'activity_61': ':user updated client :client', - 'activity_62': ':user updated vendor :vendor', + 'activity_48': ':user a mis à jour le billet :ticket', + 'activity_49': ':user a fermé le billet :ticket', + 'activity_50': ':user a fusionné le billet :ticket', + 'activity_51': ':user a scindé le billet :ticket', + 'activity_52': ':contact a ouvert le billet :ticket', + 'activity_53': ':contact a réouvert le billet :ticket', + 'activity_54': ':user a réouvert le billet :ticket', + 'activity_55': ':contact a répondu au billet :ticket', + 'activity_56': ':user a vu le billet :ticket', + 'activity_57': + 'Le système n\'a pas pu envoyer le courriel de la facture :invoice', + 'activity_58': ':user a inversé la facture :invoice', + 'activity_59': ':user a annulé la facture :invoice', + 'activity_60': ':contact a vu la soumission :quote', + 'activity_61': ':user a mis à jour le client :client', + 'activity_62': ':user a mis à jour le fournisseur :vendor', 'activity_63': - ':user emailed first reminder for invoice :invoice to :contact', + ':user a envoyé le premier rappel pour la facture :invoice de :contact', 'activity_64': - ':user emailed second reminder for invoice :invoice to :contact', + ':user a envoyé le deuxième rappel pour la facture :invoice de :contact', 'activity_65': - ':user emailed third reminder for invoice :invoice to :contact', + ':user a envoyé le troisième rappel pour la facture :invoice de :contact', 'activity_66': - ':user emailed endless reminder for invoice :invoice to :contact', - 'activity_80': ':user created subscription :subscription', - 'activity_81': ':user updated subscription :subscription', - 'activity_82': ':user archived subscription :subscription', - 'activity_83': ':user deleted subscription :subscription', - 'activity_84': ':user restored subscription :subscription', + ':user a envoyé un rappel sans fin pour la facture :invoice de :contact', + 'activity_80': ':user a créé l\'abonnement :subscription', + 'activity_81': ':user a mis à jour l\'abonnement :subscription', + 'activity_82': ':user a archivé l\'abonnement :subscription', + 'activity_83': ':user a supprimé l\'abonnement :subscription', + 'activity_84': ':user a restauré l\'abonnement :subscription', 'one_time_password': 'Mot de passe à usage unique', - 'emailed_quote': 'Devis envoyé par courriel avec succès', - 'emailed_credit': 'Successfully emailed credit', - 'marked_quote_as_sent': 'Le devis sélectionné a été envoyé avec succès', - 'marked_credit_as_sent': 'Successfully marked credit as sent', + 'emailed_quote': 'La soumission a été envoyée avec succès', + 'emailed_credit': 'Le crédit a envoyé par courriel avec succès', + 'marked_quote_as_sent': + 'La soumission a été marquée comme envoyée avec succès', + 'marked_credit_as_sent': + 'Le crédit a été marqué comme envoyé avec succès', 'expired': 'Expiré', 'all': 'Tous', 'select': 'Sélectionner', 'long_press_multiselect': 'Multisélection par pression longue', - 'custom_value1': 'Valeur Personnalisée 1', - 'custom_value2': 'Valeur Personnalisée 2', + 'custom_value1': 'Valeur par défaut', + 'custom_value2': 'Valeur par défaut', 'custom_value3': 'Valeur personnalisée 3', 'custom_value4': 'Valeur personnalisée 4', 'email_style_custom': 'Style de courriel personnalisé', 'custom_message_dashboard': 'Message personnalisé du tableau de bord', 'custom_message_unpaid_invoice': - 'Message personnalisé pour une facture impayée', - 'custom_message_paid_invoice': - 'Message personnalisé pour un paiement de facture', + 'Message personnalisé pour facture impayée', + 'custom_message_paid_invoice': 'Message personnalisé pour facture payée', 'custom_message_unapproved_quote': - 'Message personnalisé pour un devis refusé', - 'lock_invoices': 'Lock Invoices', + 'Message personnalisé pour soumission non approuvée', + 'lock_invoices': 'Verrouiller les factures', 'translations': 'Traductions', - 'task_number_pattern': 'Modèle de numéro de tâche', - 'task_number_counter': 'Modèle de compteur de tâche', - 'expense_number_pattern': 'Modèle de numéro de dépense', - 'expense_number_counter': 'Modèle de compteur de dépense', - 'vendor_number_pattern': 'Modèle de numéro de fournisseur', - 'vendor_number_counter': 'Modèle de compteur de fournisseur', - 'ticket_number_pattern': 'Modèle de numéro de ticket', - 'ticket_number_counter': 'Modèle de compteur de ticket', - 'payment_number_pattern': 'Modèle de numéro de paiement', - 'payment_number_counter': 'Modèle de compteur de paiement', - 'invoice_number_pattern': 'Modèle de numéro de facture', + 'task_number_pattern': 'Modèle du numéro de tâche', + 'task_number_counter': 'Compteur du numéro de tâche', + 'expense_number_pattern': 'Modèle du numéro de dépense', + 'expense_number_counter': 'Compteur du numéro de dépense', + 'vendor_number_pattern': 'Modèle du numéro de fournisseur', + 'vendor_number_counter': 'Compteur du numéro de fournisseur', + 'ticket_number_pattern': 'Modèle du numéro de billet', + 'ticket_number_counter': 'Compteur du numéro de billet', + 'payment_number_pattern': 'Modèle du numéro de paiement', + 'payment_number_counter': 'Compteur du numéro de paiement', + 'invoice_number_pattern': 'Modèle du numéro de facture', 'invoice_number_counter': 'Compteur du numéro de facture', - 'quote_number_pattern': 'Modèle de numéro de devis', - 'quote_number_counter': 'Compteur du numéro de devis', - 'client_number_pattern': 'Modèle de numéro de crédit', - 'client_number_counter': 'Modèle de compteur de crédit', - 'credit_number_pattern': 'Modèle de numéro de crédit', - 'credit_number_counter': 'Modèle de compteur de crédit', + 'quote_number_pattern': 'Modèle du numéro de soumission', + 'quote_number_counter': 'Compteur du numéro de soumission', + 'client_number_pattern': 'Modèle du numéro de crédit', + 'client_number_counter': 'Compteur du numéro de crédit', + 'credit_number_pattern': 'Modèle du numéro de crédit', + 'credit_number_counter': 'Compteur du numéro de crédit', 'reset_counter_date': 'Remise à zéro du compteur de date', - 'counter_padding': 'Counter Padding', - 'shared_invoice_quote_counter': 'Shared Invoice Quote Counter', - 'default_tax_name_1': 'Nom par défaut de la taxe 1', - 'default_tax_rate_1': 'Taux par défaut de la taxe 1', - 'default_tax_name_2': 'Nom par défaut de la taxe 2', - 'default_tax_rate_2': 'Taux par défaut de la taxe 2', - 'default_tax_name_3': 'Nom par défaut de la taxe 3', - 'default_tax_rate_3': 'Taux par défaut de la taxe 3', - 'email_subject_invoice': 'Sujet du courriel de la facture', - 'email_subject_quote': 'Sujet du courriel du devis', - 'email_subject_payment': 'Sujet du courriel du paiement', - 'email_subject_payment_partial': 'Email Partial Payment Subject', - 'show_table': 'Show Table', - 'show_list': 'Show List', + 'counter_padding': 'Espacement du compteur', + 'shared_invoice_quote_counter': + 'Compteur partagé pour les factures et les soumissions', + 'default_tax_name_1': 'Nom de taxe par défaut 1', + 'default_tax_rate_1': 'Taux de taxe par défaut 1', + 'default_tax_name_2': 'Nom de taxe par défaut 2', + 'default_tax_rate_2': 'Taux de taxe par défaut 2', + 'default_tax_name_3': 'Nom de taxe par défaut 3', + 'default_tax_rate_3': 'Taux de taxe par défaut 3', + 'email_subject_invoice': 'Objet du courriel de facture', + 'email_subject_quote': 'Objet du courriel de soumission', + 'email_subject_payment': 'Objet du courriel de paiement', + 'email_subject_payment_partial': 'Sujet du courriel de paiement partiel', + 'show_table': 'Affiche la table', + 'show_list': 'Afficher la liste', 'client_city': 'Ville du client', - 'client_state': 'Région du client', + 'client_state': 'Province du client', 'client_country': 'Pays du client', - 'client_is_active': 'Le client est actif', + 'client_is_active': 'Client actif', 'client_balance': 'Solde du client', - 'client_address1': 'Client Street', - 'client_address2': 'Client Apt/Suite', - 'vendor_address1': 'Vendor Street', - 'vendor_address2': 'Vendor Apt/Suite', - 'client_shipping_address1': 'Client Shipping Street', - 'client_shipping_address2': 'Client Shipping Apt/Suite', + 'client_address1': 'Rue du clients', + 'client_address2': 'App / bureau du client', + 'vendor_address1': 'Rue du fournisseur', + 'vendor_address2': 'App du fournisseur', + 'client_shipping_address1': 'Rue d\'expédition', + 'client_shipping_address2': 'App / bureau d\'expédition du client', 'type': 'Type', 'invoice_amount': 'Montant de la facture', - 'invoice_due_date': 'Date limite', + 'invoice_due_date': 'Échéance', 'tax_rate1': 'Taux de taxe 1', 'tax_rate2': 'Taux de taxe 2', 'tax_rate3': 'Taux de taxe 3', 'auto_bill': 'Facturation automatique', - 'archived_at': 'Archivé le', - 'has_expenses': 'Dépenses en cours', - 'custom_taxes1': 'Autres taxes 1', - 'custom_taxes2': 'Autres taxes 2', - 'custom_taxes3': 'Autres taxes 3', - 'custom_taxes4': 'Autres taxes 4', - 'custom_surcharge1': 'Autre frais 1', - 'custom_surcharge2': 'Autre frais 2', - 'custom_surcharge3': 'Autre frais 3', - 'custom_surcharge4': 'Autre frais 4', - 'is_deleted': 'Supprimé', + 'archived_at': 'Archivé à', + 'has_expenses': 'A Dépenses', + 'custom_taxes1': 'Taxes personnalisées 1', + 'custom_taxes2': 'Taxes personnalisées 2', + 'custom_taxes3': 'Taxes personnalisées 3', + 'custom_taxes4': 'Taxes personnalisées 4', + 'custom_surcharge1': 'Surcharge personnalisée 1', + 'custom_surcharge2': 'Surcharge personnalisée 2', + 'custom_surcharge3': 'Surcharge personnalisée 3', + 'custom_surcharge4': 'Surcharge personnalisée 4', + 'is_deleted': 'Est supprimé', 'vendor_city': 'Ville du fournisseur', - 'vendor_state': 'Région du fournisseur', + 'vendor_state': 'Province du fournisseur', 'vendor_country': 'Pays du fournisseur', - 'is_approved': 'Is Approved', + 'is_approved': 'Est approuvé', 'tax_name': 'Nom de la taxe', - 'tax_amount': 'Montant de la taxe', + 'tax_amount': 'Montant de taxe', 'tax_paid': 'Taxe payée', 'payment_amount': 'Montant du paiement', - 'age': 'Ancienneté', - 'is_running': 'Is Running', + 'age': 'Âge', + 'is_running': 'En cours', 'time_log': 'Journal de temps', 'bank_id': 'Banque', - 'expense_category_id': 'Expense Category ID', + 'expense_category_id': 'ID de catégorie de dépense', 'expense_category': 'Catégorie de dépense', - 'invoice_currency_id': 'Invoice Currency ID', - 'tax_name1': 'Tax Name 1', - 'tax_name2': 'Tax Name 2', - 'tax_name3': 'Tax Name 3', - 'transaction_id': 'Transaction ID', + 'invoice_currency_id': 'ID de la devise de facturation', + 'tax_name1': 'Nom de la taxe 1', + 'tax_name2': 'Nom de la taxe 2', + 'tax_name3': 'Nom de taxe 3', + 'transaction_id': 'ID de transaction', 'status_color_theme': 'Status Color Theme', 'load_color_theme': 'Load Color Theme', }, - 'fr_CA': { + 'de': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': + 'Die Gebühren für eine Rechnung über :amount  würden :total betragen.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Angebot annehmen', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -23707,238 +24048,258 @@ mixin LocalizationsProvider on LocaleCodeAware { 'convert_to': 'Convert To', 'client_currency': 'Client Currency', 'company_currency': 'Company Currency', - 'purged_client': 'Le client a été purgé avec succès', + 'purged_client': 'Kunde erfolgreich bereinigt', 'custom_emails_disabled_help': 'To prevent spam we require upgrading to a paid account to customize the email', 'upgrade_to_add_company': 'Upgrade your plan to add companies', 'file_saved_in_downloads_folder': 'The file has been saved in the downloads folder', 'small': 'Small', - 'marked_credit_as_paid': 'Successfully marked credit as paid', - 'marked_credits_as_paid': 'Successfully marked credits as paid', - 'wait_for_loading': 'Data loading - please wait for it to complete', - 'wait_for_saving': 'Data saving - please wait for it to complete', + 'marked_credit_as_paid': 'Guthaben erfolgreich als bezahlt markiert', + 'marked_credits_as_paid': 'Erfolgreich Kredite als bezahlt markiert', + 'wait_for_loading': + 'Daten werden geladen - bitte warten Sie, bis der Vorgang abgeschlossen ist', + 'wait_for_saving': + 'Datenspeicherung - bitte warten Sie, bis der Vorgang abgeschlossen ist', 'html_preview_warning': - 'Note: changes made here are only previewed, they must be applied in the tabs above to be saved', - 'remaining': 'Remaining', - 'invoice_paid': 'Invoice Paid', - 'activity_120': ':user created recurring expense :recurring_expense', - 'activity_121': ':user updated recurring expense :recurring_expense', - 'activity_122': ':user archived recurring expense :recurring_expense', - 'activity_123': ':user deleted recurring expense :recurring_expense', - 'activity_124': ':user restored recurring expense :recurring_expense', + 'Hinweis: Die hier vorgenommenen Änderungen werden nur in der Vorschau angezeigt, sie müssen in den obigen Registerkarten angewendet werden, um gespeichert zu werden.', + 'remaining': 'Verbleibende', + 'invoice_paid': 'Rechnung bezahlt', + 'activity_120': + ':user erstellte wiederkehrende Ausgabe :recurring_expense', + 'activity_121': + ':user aktualisiert wiederkehrende Ausgabe :recurring_expense', + 'activity_122': + ':user archivierte wiederkehrende Ausgabe :recurring_expense', + 'activity_123': ':user löschte wiederkehrende Ausgabe :recurring_expense', + 'activity_124': + ':user stellte wiederkehrende Ausgabe :recurring_expense wieder her', 'normal': 'Normal', - 'large': 'Large', - 'extra_large': 'Extra Large', - 'show_pdf_preview': 'Show PDF Preview', - 'show_pdf_preview_help': 'Display PDF preview while editing invoices', - 'print_pdf': 'Print PDF', - 'remind_me': 'Remind Me', + 'large': 'Groß', + 'extra_large': 'Extra Groß', + 'show_pdf_preview': 'PDF-Vorschau anzeigen', + 'show_pdf_preview_help': + 'PDF-Vorschau bei der Bearbeitung von Rechnungen anzeigen', + 'print_pdf': 'PDF drucken', + 'remind_me': 'Erinnere mich', 'instant_bank_pay': 'Instant Bank Pay', - 'click_selected': 'Click Selected', - 'hide_preview': 'Hide Preview', - 'edit_record': 'Edit Record', + 'click_selected': 'Ausgewähltes anklicken', + 'hide_preview': 'Vorschau ausblenden', + 'edit_record': 'Datensatz bearbeiten', 'credit_is_more_than_invoice': - 'The credit amount can not be more than the invoice amount', + 'Der Kreditbetrag kann nicht höher sein als der Rechnungsbetrag', 'giropay': 'GiroPay', - 'direct_debit': 'Direct Debit', - 'please_set_a_password': 'Please set an account password', - 'set_password': 'Nouveau mot de passe', + 'direct_debit': 'Lastschriftverfahren', + 'please_set_a_password': 'Bitte legen Sie ein Kontopasswort fest', + 'set_password': 'Passwort festlegen', 'recommend_desktop': - 'We recommend using the desktop app for the best performance', + 'Wir empfehlen, die Desktop-Anwendung zu verwenden, um die beste Leistung zu erzielen.', 'recommend_mobile': - 'We recommend using the mobile app for the best performance', - 'disconnected_gateway': 'Successfully disconnected gateway', - 'disconnect': 'Disconnect', - 'add_to_invoices': 'Add to Invoices', - 'acss': 'Pre-authorized debit payments', - 'becs': 'BECS Direct Debit', - 'bulk_download': 'Download', + 'Wir empfehlen die Verwendung der mobilen App, um die beste Leistung zu erzielen.', + 'disconnected_gateway': 'Gateway erfolgreich getrennt', + 'disconnect': 'Trennen', + 'add_to_invoices': 'Zu Rechnungen hinzufügen', + 'acss': 'Vorautorisierte Lastschriftzahlungen', + 'becs': 'BECS-Lastschriftverfahren', + 'bulk_download': 'Herunterladen', 'persist_data_help': - 'Save data locally to enable the app to start faster, disabling may improve performance in large accounts', - 'persist_ui': 'Persist UI', + 'Daten lokal speichern, damit die Anwendung schneller starten kann. (Deaktivierung kann die Leistung bei großen Konten verbessern)', + 'persist_ui': 'Benutzeroberfläche beibehalten', 'persist_ui_help': - 'Save UI state locally to enable the app to start at the last location, disabling may improve performance', - 'client_postal_code': 'Client Postal Code', - 'client_vat_number': 'Client VAT Number', + 'UI-Status lokal speichern, damit die Anwendung an der letzten Position startet (Deaktivierung kann die Leistung verbessern)', + 'client_postal_code': 'Postleitzahl des Kunden', + 'client_vat_number': 'Umsatzsteuer-Identifikationsnummer des Kunden', 'has_tasks': 'Has Tasks', 'registration': 'Registration', 'unauthorized_stripe_warning': - 'Please authorize Stripe to accept online payments.', - 'view_expense': 'Voir la dépense # :expense', - 'view_statement': 'Visualiser le relevé', - 'sepa': 'SEPA Débit direct', + 'Bitte autorisieren Sie Stripe zur Annahme von Online-Zahlungen.', + 'view_expense': 'Ausgabe # :expense ansehen', + 'view_statement': 'Zeige Bericht', + 'sepa': 'SEPA-Lastschrift', 'ideal': 'iDEAL', 'przelewy24': 'Przelewy24', 'eps': 'EPS', 'fpx': 'FPX', - 'update_all_records': 'Update all records', - 'system': 'Système', - 'set_default_company': 'Set Default Company', - 'updated_company': 'Successfully updated company', + 'update_all_records': 'Alle Datensätze aktualisieren', + 'system': 'System', + 'set_default_company': 'Standardunternehmen festlegen', + 'updated_company': 'Unternehmen wurde erfolgreich aktualisiert', 'kbc': 'KBC', 'bancontact': 'Bancontact', - 'why_are_you_leaving': 'Help us improve by telling us why (optional)', + 'why_are_you_leaving': + 'Helfen Sie uns, uns zu verbessern, indem Sie uns sagen, warum (optional)', 'webhook_success': 'Webhook Success', - 'error_cross_client_tasks': 'Tasks must all belong to the same client', + 'error_cross_client_tasks': + 'Die Aufgaben müssen alle zum selben Kunden gehören', 'error_cross_client_expenses': - 'Expenses must all belong to the same client', + 'Die Ausgaben müssen alle zu demselben Kunden gehören', 'app': 'App', - 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Gross line total', + 'for_best_performance': + 'Für die beste Leistung laden Sie die App herunter :app', + 'gross_line_total': 'Bruttozeile gesamt', 'bulk_email_invoice': 'Email Invoice', 'bulk_email_quote': 'Email Quote', 'bulk_email_credit': 'Email Credit', - 'from_name': 'Nom de', - 'clone_to_expense': 'Clone to expense', - 'recurring_expense': 'Dépense récurrente', - 'recurring_expenses': 'Dépenses récurrentes', - 'new_recurring_expense': 'Nouvelle dépense récurrente', - 'edit_recurring_expense': 'Éditer la dépense récurrente', - 'created_recurring_expense': - 'La dépense récurrente a été créée avec succès', - 'updated_recurring_expense': - 'La dépense récurrente a été mise à jour avec succès', - 'archived_recurring_expense': - 'La dépense récurrente a été archivée avec succès', - 'deleted_recurring_expense': 'Le projet a été supprimé avec succès', - 'removed_recurring_expense': 'Successfully removed recurring expense', + 'from_name': 'Absendername', + 'clone_to_expense': 'Klonen zu Ausgabe', + 'recurring_expense': 'Wiederkehrende Ausgabe', + 'recurring_expenses': 'Wiederkehrende Ausgaben', + 'new_recurring_expense': 'Wiederkehrende Ausgabe eingeben', + 'edit_recurring_expense': 'Wiederkehrende Ausgabe bearbeiten', + 'created_recurring_expense': 'Wiederkehrende Ausgabe wurde erstellt', + 'updated_recurring_expense': 'Wiederkehrende Ausgabe wurde aktualisiert', + 'archived_recurring_expense': 'Wiederkehrende Ausgabe wurde archiviert', + 'deleted_recurring_expense': 'Projekt wurde gelöscht', + 'removed_recurring_expense': + 'Erfolgreich wiederkehrende Ausgaben entfernt', 'restored_recurring_expense': - 'La dépense récurrente a été restaurée avec succès', - 'search_recurring_expense': 'Search Recurring Expense', - 'search_recurring_expenses': 'Search Recurring Expenses', - 'last_sent_date': 'Last Sent Date', - 'include_drafts': 'Include Drafts', - 'include_drafts_help': 'Include draft records in reports', - 'is_invoiced': 'Is Invoiced', + 'Wiederkehrende Ausgabe wurde wiederhergestellt', + 'search_recurring_expense': 'Wiederkehrende Ausgaben suchen', + 'search_recurring_expenses': 'Wiederkehrende Ausgaben suchen', + 'last_sent_date': 'Datum des letzten Versands', + 'include_drafts': 'Entwürfe einschließen', + 'include_drafts_help': + 'Entwürfe von Aufzeichnungen in Berichte einbeziehen', + 'is_invoiced': 'Ist in Rechnung gestellt', 'change_plan': 'Change Plan', - 'persist_data': 'Persist Data', - 'customer_count': 'Customer Count', - 'verify_customers': 'Verify Customers', + 'persist_data': 'Daten aufbewahren', + 'customer_count': 'Kundenzahl', + 'verify_customers': 'Kunden überprüfen', 'google_analytics': 'Google Analytics', 'google_analytics_tracking_id': 'Google Analytics Tracking ID', 'decimal_comma': 'Decimal Comma', - 'use_comma_as_decimal_place': 'Use comma as decimal place in forms', + 'use_comma_as_decimal_place': + 'Komma als Dezimalstelle in Formularen verwenden', 'select_method': 'Select Method', 'select_platform': 'Select Platform', 'use_web_app_to_connect_gmail': - 'Please use the web app to connect to Gmail', - 'expense_tax_help': 'Item tax rates are disabled', + 'Bitte verwenden Sie die Web-App, um sich mit Gmail zu verbinden', + 'expense_tax_help': 'Postensteuersätze sind deaktiviert', 'enable_markdown': 'Enable Markdown', - 'enable_markdown_help': 'Convert markdown to HTML on the PDF', - 'user_guide': 'Guide de l\'utilisateur', - 'add_second_contact': 'Add Second Contact', - 'previous_page': 'Previous Page', - 'next_page': 'Next Page', - 'export_colors': 'Export Colors', - 'import_colors': 'Import Colors', - 'clear_all': 'Clear All', - 'contrast': 'Contrast', - 'custom_colors': 'Custom Colors', - 'colors': 'Colors', - 'sidebar_active_background_color': 'Sidebar Active Background Color', - 'sidebar_active_font_color': 'Sidebar Active Font Color', - 'sidebar_inactive_background_color': 'Sidebar Inactive Background Color', - 'sidebar_inactive_font_color': 'Sidebar Inactive Font Color', + 'enable_markdown_help': + 'Konvertierung von Markdown in HTML in der PDF-Datei', + 'user_guide': 'Nutzer-Anleitung', + 'add_second_contact': 'Zweiten Kontakt hinzufügen', + 'previous_page': 'Vorherige Seite', + 'next_page': 'Nächste Seite', + 'export_colors': 'Farben exportieren', + 'import_colors': 'Farben importieren', + 'clear_all': 'Alle löschen', + 'contrast': 'Kontrast', + 'custom_colors': 'Eigene Farben', + 'colors': 'Farben', + 'sidebar_active_background_color': + 'Aktive Hintergrundfarbe der Seitenleiste', + 'sidebar_active_font_color': 'Schriftfarbe der aktiven Seitenleiste', + 'sidebar_inactive_background_color': + 'Seitenleiste Inaktive Hintergrundfarbe', + 'sidebar_inactive_font_color': 'Seitenleiste Inaktiv Schriftfarbe', 'table_alternate_row_background_color': - 'Table Alternate Row Background Color', - 'invoice_header_background_color': 'Invoice Header Background Color', - 'invoice_header_font_color': 'Invoice Header Font Color', - 'net_subtotal': 'Net', - 'review_app': 'Review App', - 'check_status': 'Check Status', - 'free_trial': 'Free Trial', + 'Tabelle alternierende Zeilenhintergrundfarbe', + 'invoice_header_background_color': + 'Hintergrundfarbe der Rechnungskopfzeile', + 'invoice_header_font_color': 'Schriftfarbe der Rechnungskopfzeile', + 'net_subtotal': 'Netto', + 'review_app': 'App bewerten', + 'check_status': 'Status prüfen', + 'free_trial': 'Kostenlose Testversion', 'free_trial_ends_in_days': - 'The Pro plan trial ends in :count days, click to upgrade.', + 'Die Testversion des Pro-Plans endet in :count Tagen, klicken Sie zum Upgrade.', 'free_trial_ends_today': - 'Today is the last day of the Pro plan trial, click to upgrade.', - 'change_email': 'Change Email', + 'Heute ist der letzte Tag des Pro-Tarifs, klicken Sie zum Upgrade.', + 'change_email': 'E-Mail ändern', 'client_portal_domain_hint': - 'Optionally configure a separate client portal domain', - 'tasks_shown_in_portal': 'Tasks Shown in Portal', - 'uninvoiced': 'Uninvoiced', + 'Konfigurieren Sie optional eine separate Kunden-Portal-Domäne', + 'tasks_shown_in_portal': 'Im Portal angezeigte Aufgaben', + 'uninvoiced': 'Nicht in Rechnung gestellt', 'subdomain_guide': - 'The subdomain is used in the client portal to personalize links to match your brand. ie, https://your-brand.invoicing.co', - 'send_time': 'Send Time', - 'import_data': 'Importer les données', - 'import_settings': 'Import Settings', - 'json_file_missing': 'Please provide the JSON file', - 'json_option_missing': 'Please select to import the settings and/or data', + 'Die Subdomain wird im Kundenportal verwendet, um Links zu personalisieren, die Ihrer Marke entsprechen. z.B. https://your-brand.invoicing.co', + 'send_time': 'Sendezeit', + 'import_data': 'Importiere Daten', + 'import_settings': 'Einstellungen importieren', + 'json_file_missing': 'Bitte stellen Sie die JSON-Datei zur Verfügung', + 'json_option_missing': + 'Bitte wählen Sie, um die Einstellungen und/oder Daten zu importieren', 'json': 'JSON', - 'no_payment_types_enabled': 'No payment types enabled', - 'wait_for_data': 'Please wait for the data to finish loading', - 'net_total': 'Net Total', - 'has_taxes': 'Has Taxes', - 'import_customers': 'Import Customers', + 'no_payment_types_enabled': 'Keine Zahlungsarten aktiviert', + 'wait_for_data': + 'Bitte warten Sie, bis die Daten vollständig geladen sind', + 'net_total': 'Netto Gesamt', + 'has_taxes': 'enthält Steuern', + 'import_customers': 'Kunden importieren', 'imported_customers': 'Successfully started importing customers', - 'login_success': 'Successful Login', - 'login_failure': 'Failed Login', + 'login_success': 'Erfolgreiche Anmeldung', + 'login_failure': 'Anmeldung fehlgeschlagen', 'exported_data': - 'Once the file is ready you\"ll receive an email with a download link', - 'include_deleted_clients': 'Include Deleted Clients', - 'include_deleted_clients_help': - 'Load records belonging to deleted clients', - 'step_1_sign_in': 'Step 1: Sign In', - 'step_2_authorize': 'Step 2: Authorize', + 'Sobald die Datei fertig ist, erhalten Sie eine E-Mail mit einem Download-Link.', + 'include_deleted_clients': 'Gelöschte Kunden einbeziehen', + 'include_deleted_clients_help': 'Datensätze von gelöschten Kunden laden', + 'step_1_sign_in': 'Schritt 1: Registrieren', + 'step_2_authorize': 'Schritt 2: autorisieren', 'account_id': 'Account ID', - 'migration_not_yet_completed': 'The migration has not yet completed', - 'activity_100': ':user a créé une facture récurrente :recurring_invoice', + 'migration_not_yet_completed': + 'Die Migration ist noch nicht abgeschlossen', + 'activity_100': + ':user hat die wiederkehrende Rechnung :recurring_invoice erstellt.', 'activity_101': - ':user a mis à jour une facture récurrente :recurring_invoice', + ':user hat die wiederkehrende Rechnung :recurring_invoice aktuallisiert', 'activity_102': - ':user a archivé une facture récurrente :recurring_invoice', + ':user hat die wiederkehrende Rechnung :recurring_invoice archiviert', 'activity_103': - ':user a supprimé une facture récurrente :recurring_invoice', + ':user hat die wiederkehrende Rechnung :recurring_invoice gelöscht.', 'activity_104': - ':user a restauré une facture récurrente :recurring_invoice', - 'show_task_end_date': 'Show Task End Date', - 'show_task_end_date_help': 'Enable specifying the task end date', - 'gateway_setup': 'Gateway Setup', - 'preview_sidebar': 'Preview Sidebar', + ':user hat die wiederkehrende Rechnung :recurring_invoice wiederhergestellt.', + 'show_task_end_date': 'Ende der Aufgabe anzeigen', + 'show_task_end_date_help': + 'Aktivieren Sie die Angabe des Enddatums der Aufgabe', + 'gateway_setup': 'Gateway-Einstellungen', + 'preview_sidebar': 'Vorschau der Seitenleiste', 'years_data_shown': 'Years Data Shown', - 'ended_all_sessions': 'Successfully ended all sessions', - 'end_all_sessions': 'End All Sessions', + 'ended_all_sessions': 'alle Sitzungen erfolgreich beendet', + 'end_all_sessions': 'Alle Sitzungen beenden', 'count_session': '1 Session', 'count_sessions': ':count Sessions', - 'invoice_created': 'Invoice Created', - 'quote_created': 'Quote Created', - 'credit_created': 'Credit Created', + 'invoice_created': 'Rechnung erstellt', + 'quote_created': 'Angebot erstellt', + 'credit_created': 'Gutschrift erstellt', 'pro': 'Pro', 'enterprise': 'Enterprise', - 'last_updated': 'Dernière mise à jour', + 'last_updated': 'Zuletzt aktualisiert', 'invoice_item': 'Invoice Item', 'quote_item': 'Quote Item', - 'contact_first_name': 'Prénom du contact', - 'contact_last_name': 'Nom du contact', + 'contact_first_name': 'Kontakt Vorname', + 'contact_last_name': 'Kontakt Nachname', 'order': 'Order', - 'unassigned': 'Non assigné', - 'partial_value': 'Doit être plus grand que zéro et moins que le total', + 'unassigned': 'Nicht zugewiesen', + 'partial_value': + 'Muss grösser als Null und kleiner als der Gesamtbetrag sein', 'search_kanban': 'Search Kanban', 'search_kanbans': 'Search Kanban', 'kanban': 'Kanban', - 'enable': 'Autoriser', - 'move_top': 'Move Top', - 'move_up': 'Move Up', + 'enable': 'Aktivieren', + 'move_top': 'Nach oben bewegen', + 'move_up': 'Nach unten bewegen', 'move_down': 'Move Down', 'move_bottom': 'Move Bottom', 'subdomain_help': - 'Définissez le sous-domaine ou affichez la facture sur votre site web.', + 'Passen Sie die Rechnungslink-Subdomäne an oder stellen Sie die Rechnung auf Ihrer eigenen Webseite zur Verfügung.', 'body_variable_missing': - 'Error: the custom email must include a :body variable', - 'add_body_variable_message': 'Make sure to include a :body variable', + 'Fehler: das benutzerdefinierte E-Mail Template muss die :body Variable beinhalten', + 'add_body_variable_message': + 'bitte stelle sicher das die :body Variable eingefügt ist', 'view_date_formats': 'View Date Formats', 'is_viewed': 'Is Viewed', 'letter': 'Letter', 'legal': 'Legal', - 'page_layout': 'Page Layout', - 'portrait': 'Portrait', - 'landscape': 'Landscape', + 'page_layout': 'Seiten Layout', + 'portrait': 'Hochformat', + 'landscape': 'Querformat', 'owner_upgrade_to_paid_plan': - 'The account owner can upgrade to a paid plan to enable the advanced advanced settings', + 'Der Kontoinhaber kann auf einen kostenpflichtigen Plan upgraden, um die erweiterten erweiterten Einstellungen zu aktivieren', 'upgrade_to_paid_plan': - 'Upgrade to a paid plan to enable the advanced settings', - 'invoice_payment_terms': 'Invoice Payment Terms', - 'quote_valid_until': 'Quote Valid Until', + 'Führen Sie ein Upgrade auf einen kostenpflichtigen Plan durch, um die erweiterten Einstellungen zu aktivieren', + 'invoice_payment_terms': 'Zahlungsbedingungen für Rechnungen', + 'quote_valid_until': 'Angebot gültig bis', 'no_headers': 'No Headers', 'add_header': 'Add Header', 'remove_header': 'Remove Header', @@ -23947,7 +24308,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'header_key': 'Header Key', 'header_value': 'Header Value', 'recurring_products': 'Recurring Products', - 'promo_code': 'Code promo', + 'promo_code': 'Gutscheincode', 'promo_discount': 'Promo Discount', 'allow_cancellation': 'Allow Cancellation', 'per_seat_enabled': 'Per Seat Enabled', @@ -23960,1787 +24321,1786 @@ mixin LocalizationsProvider on LocaleCodeAware { 'refund_period': 'Refund Period', 'webhook_configuration': 'Webhook Configuration', 'purchase_page': 'Purchase Page', - 'security': 'Sécurité', - 'email_bounced': 'Email Bounced', + 'security': 'Sicherheit', + 'email_bounced': 'E-Mail zurückgesendet', 'email_spam_complaint': 'Spam Complaint', - 'email_delivery': 'Email Delivery', + 'email_delivery': 'E-Mail-Zustellung', 'webhook_response': 'Webhook Response', 'pdf_response': 'PDF Response', - 'authentication_failure': 'Authentication Failure', - 'pdf_failed': 'PDF Failed', - 'pdf_success': 'PDF Success', - 'modified': 'Modified', + 'authentication_failure': 'Authentifizierungsfehler', + 'pdf_failed': 'PDF fehgeschlagen', + 'pdf_success': 'PDF erfolgreich', + 'modified': 'geändert', 'subscription': 'Abonnement', 'subscriptions': 'Abonnements', - 'new_subscription': 'Nouvel abonnement', - 'edit_subscription': 'Éditer l\'abonnement', - 'created_subscription': 'Abonnement créé avec succès', - 'updated_subscription': 'Abonnement mis à jour avec succès', - 'archived_subscription': 'Abonnement archivé avec succès', - 'deleted_subscription': 'L\'abonnement a été supprimé avec succès', - 'removed_subscription': 'L\'abonnement a été retiré avec succès', - 'restored_subscription': 'L\'abonnement a été restauré avec succès', - 'search_subscription': 'Recherche de 1 abonnement', - 'search_subscriptions': 'Recherche :count abonnements', - 'subdomain_is_not_available': 'Le sous-domaine n\'est pas disponible', - 'connect_gmail': 'Connectez Gmail', - 'disconnect_gmail': 'Déconnecter Gmail', - 'connected_gmail': 'Gmail a été connecté avec succès', - 'disconnected_gmail': 'Gmail a été déconnecté avec succès', + 'new_subscription': 'Neues Abonnement', + 'edit_subscription': 'Abonnement bearbeiten', + 'created_subscription': 'Abonnement erfolgreich erstellt', + 'updated_subscription': 'Abonnement erfolgreich aktualisiert', + 'archived_subscription': 'Abonnement erfolgreich archiviert', + 'deleted_subscription': 'Abonnement gelöscht', + 'removed_subscription': 'Abonnement entfernt', + 'restored_subscription': 'Abonnement wiederhergestellt', + 'search_subscription': 'Suchen Sie 1 Abonnement', + 'search_subscriptions': ':count Abonnements durchsuchen', + 'subdomain_is_not_available': 'Subdomain ist nicht verfügbar', + 'connect_gmail': 'Mit Gmail verbinden', + 'disconnect_gmail': 'von Gmail trennen', + 'connected_gmail': 'Mit Gmail erfolgreich verbunden', + 'disconnected_gmail': 'Von Gmail erfolgreich getrennt', 'update_fail_help': - 'Les modifications apportées au code de base peuvent bloquer la mise à jour, vous pouvez exécuter cette commande pour annuler les modifications:', - 'client_id_number': 'Numéro d\'identification du client', - 'count_minutes': ':count minutes', - 'password_timeout': 'Délai d\'expiration du mot de passe', - 'shared_invoice_credit_counter': - 'Compteur partagé pour les factures et les crédits', - 'use_last_email': 'Utiliser le dernier e-mail', - 'activate_company': 'Activer la société', + 'Änderungen an der Codebasis können das Update blockieren, Sie können diesen Befehl ausführen, um die Änderungen zu verwerfen:', + 'client_id_number': 'Kundennummer', + 'count_minutes': ':count Minuten', + 'password_timeout': 'Passwort Timeout', + 'shared_invoice_credit_counter': 'gemeinsamer Rechnungs- / Kreditzähler', + 'use_last_email': 'Vorherige E-Mail benutzen', + 'activate_company': 'Unternehmen aktivieren', 'activate_company_help': - 'Activez les courriels, les factures récurrentes et les notifications', + 'Aktivieren sie Email, wiederkehrende Rechnungen und Benachrichtigungen', 'an_error_occurred_try_again': - 'Une erreur s\'est produite, veuillez réessayer', - 'please_first_set_a_password': - 'Veuillez d\'abord définir un mot de passe', + 'Ein Fehler ist aufgetreten, bitte versuchen Sie es erneut.', + 'please_first_set_a_password': 'Bitte vergeben Sie zuerst ein Passwort.', 'changing_phone_disables_two_factor': - 'Attention: modifier votre numéro de téléphone désactivera l\'authentification à deux facteurs (A2F)', - 'help_translate': 'Aide à la traduction', - 'please_select_a_country': 'Veuillez sélectionner un pays', - 'resend_invite': 'Renvoyer l\'invitation', - 'disabled_two_factor': - 'L\'authentification à deux facteurs (A2F) a été désactivée avec succès', - 'connected_google': 'Le compte a été connecté avec succès', - 'disconnected_google': 'Le comte a été déconnecté avec succès', - 'delivered': 'Livré', - 'bounced': 'Rejetés', - 'spam': 'Pourriel', - 'view_docs': 'Afficher la documentation', + 'Achtung: Das Ändern deiner Telefonnummer wird die Zwei-Faktor-Authentifizierung deaktivieren', + 'help_translate': 'Hilf mit beim Übersetzen', + 'please_select_a_country': 'Bitte wählen Sie ein Land', + 'resend_invite': 'Einladung erneut versenden', + 'disabled_two_factor': '2FA erfolgreich deaktiviert', + 'connected_google': 'Konto erfolgreich verbunden.', + 'disconnected_google': 'Konto erfolgreich getrennt.', + 'delivered': 'zugestellt', + 'bounced': 'Abpraller', + 'spam': 'Spam', + 'view_docs': 'Dokumentation ansehen.', 'enter_phone_to_enable_two_factor': - 'Veuillez fournir un numéro de téléphone mobile pour activer l\'authentification à deux facteurs', - 'send_sms': 'Envoyer un SMS', - 'sms_code': 'Code SMS', - 'two_factor_setup_help': - 'Scannez le code barre avec une :link app compatible.', + 'Bitte gib eine Handynummer an, um die Zwei-Faktor-Authentifizierung zu aktivieren', + 'send_sms': 'SMS senden', + 'sms_code': 'SMS-Code', + 'two_factor_setup_help': 'Barcode mit :link kompatibler App scannen.', 'enabled_two_factor': - 'Vous avez activé authentification à deux facteurs avec succès.', - 'connect_google': 'Connectez Google', - 'disconnect_google': 'Déconnecter Google', - 'enable_two_factor': 'Authentification à deux facteurs', - 'disable_two_factor': 'Désactiver l\'authentification à deux facteurs', + 'Zwei-Faktor-Authentifizierung erfolgreich aktiviert', + 'connect_google': 'Google-Konto verbinden', + 'disconnect_google': 'Google-Konto entfernen', + 'enable_two_factor': 'Zwei-Faktor-Authentifizierung', + 'disable_two_factor': 'Zwei-Faktor-Authentifizierung deaktivieren', 'require_password_with_social_login': - 'Requiert un mot de passe avec une connexion de réseau social', - 'stay_logged_in': 'Restez connecté', - 'session_about_to_expire': - 'Avertissement: Votre session va expirer bientôt', - 'count_hours': ':count heures', - 'count_day': '1 jour', - 'count_days': ':count jours', - 'web_session_timeout': 'Expiration de la session web', - 'security_settings': 'Paramètres de sécurité', - 'resend_email': 'Renvoyer le courriel', - 'confirm_your_email_address': 'Veuillez confirmer votre adresse courriel', - 'refunded_payment': 'Paiement remboursé', - 'partially_unapplied': 'Partiellement non-appliquée', + 'Password mit Verknüpfung zu Sozialmedia notwendig', + 'stay_logged_in': 'Eingeloggt bleiben', + 'session_about_to_expire': 'Warnung: Ihre Sitzung läuft bald ab', + 'count_hours': ':count Stunden', + 'count_day': '1 Tag', + 'count_days': ':count Tage', + 'web_session_timeout': 'Web-Sitzungs-Timeout', + 'security_settings': 'Sicherheitseinstellungen', + 'resend_email': 'Bestätigungsemail erneut versenden', + 'confirm_your_email_address': 'Bitte bestätigen Sie Ihre E-Mail-Adresse', + 'refunded_payment': 'Zahlung erstattet', + 'partially_unapplied': 'Teilweise unangewandt', 'select_a_gmail_user': - 'Veuillez sélectionner un utilisateur authentifié avec Gmail', - 'list_long_press': 'Longue pression pour liste', - 'show_actions': 'Afficher les actions', - 'start_multiselect': 'Démarrer la multisélection', + 'Bitte wählen Sie einen mit Gmail authentifizierten Benutzer', + 'list_long_press': 'Liste Langes Drücken', + 'show_actions': 'Zeige Aktionen', + 'start_multiselect': 'Mehrfachauswahl', 'email_sent_to_confirm_email': - 'Un courriel a été envoyé pour confirmer l\'adresse courriel', + 'Eine E-Mail wurde versandt um Ihre E-Mail-Adresse zu bestätigen.', 'counter_pattern_error': - 'Pour utiliser :client_counter veuillez ajouter soit :client_number ou :client_id_number pour éviter les conflits', - 'this_quarter': 'Ce trimestre', - 'last_quarter': 'Dernier trimestre', - 'to_update_run': 'Pour mettre à jour l\'exécution', - 'convert_to_invoice': 'Convertir en facture', - 'registration_url': 'URL d\'enregistrement', - 'invoice_project': 'Facturer le projet', - 'invoice_task': 'Facturer la tâche', - 'invoice_expense': 'Facture de dépense', - 'search_payment_term': 'Rechercher 1 délai de paiement', - 'search_payment_terms': 'Rechercher :count délais de paiement', - 'save_and_preview': 'Enregistrer et prévisualiser', - 'save_and_email': 'Enregistrer et envoyer par courriel', - 'supported_events': 'Événements pris en charge', - 'converted_amount': 'Montant converti', - 'converted_balance': 'Solde converti', - 'converted_paid_to_date': 'Payé à ce jour converti', - 'converted_credit_balance': 'Solde de crédit converti', - 'converted_total': 'Total converti', - 'is_sent': 'Est Envoyé', - 'default_documents': 'Documents par défaut', - 'document_upload': 'Téléversement de document', - 'document_upload_help': - 'Autoriser les clients à téléverser des documents', - 'expense_total': 'Total des dépenses', - 'enter_taxes': 'Saisir les taxes', - 'by_rate': 'Par taux', - 'by_amount': 'Par montant', - 'enter_amount': 'Entrer le montant', - 'before_taxes': 'Avant taxes', - 'after_taxes': 'Après taxes', - 'color': 'Couleur', - 'show': 'Voir', - 'hide': 'Cacher', - 'empty_columns': 'Colonnes vides', - 'debug_mode_is_enabled': 'Mode debug activé', + 'Um :client_counter zu verwenden, fügen Sie bitte entweder :client_number oder :client_id_number hinzu, um Konflikte zu vermeiden', + 'this_quarter': 'Dieses Quartal', + 'last_quarter': 'Letztes Quartal', + 'to_update_run': 'Zum Änderungslauf', + 'convert_to_invoice': 'In Rechnung umwandeln', + 'registration_url': 'Registrierungs-URL', + 'invoice_project': 'Projekt berechnen', + 'invoice_task': 'Aufgabe in Rechnung stellen', + 'invoice_expense': 'Ausgabe abrechnen', + 'search_payment_term': 'Suche 1 Zahlungsbedingung', + 'search_payment_terms': 'Suche :count Zahlungsbedingungen', + 'save_and_preview': 'Speichern und Vorschau anzeigen', + 'save_and_email': 'Speichern und verschicken', + 'supported_events': 'Unterstützte Ereignisse', + 'converted_amount': 'Umgerechneter Betrag', + 'converted_balance': 'Guthabenstand', + 'converted_paid_to_date': 'Umgewandelt Bezahlt bis Datum', + 'converted_credit_balance': 'Umgerechneter Guthabenbetrag', + 'converted_total': 'Umgerechnet Total', + 'is_sent': 'Gesendet', + 'default_documents': 'Standard-Dokumente', + 'document_upload': 'Dokument hochladen', + 'document_upload_help': 'Erlaube Kunden Dokumente hochzuladen', + 'expense_total': 'Ausgabensumme', + 'enter_taxes': 'Steuersätze eingeben', + 'by_rate': 'Nach Satz', + 'by_amount': 'Nach Betrag', + 'enter_amount': 'Betrag eingeben', + 'before_taxes': 'Vor Steuern', + 'after_taxes': 'Nach Steuern', + 'color': 'Farbe', + 'show': 'anzeigen', + 'hide': 'Verbergen', + 'empty_columns': 'Leere Spalten', + 'debug_mode_is_enabled': 'Der Entwicklungsmodus ist aktiviert', 'debug_mode_is_enabled_help': - 'Avertissement: Pour usage local seulement. Fuites de données possible. En savoir plus.', - 'running_tasks': 'Tâches en cours', - 'recent_tasks': 'Tâches récentes', - 'recent_expenses': 'Dépenses récentes', - 'upcoming_expenses': 'Dépenses à venir', - 'update_app': 'Mettre à jour l\'App', - 'started_import': 'L\'importation a démarré avec succès', - 'duplicate_column_mapping': 'Dupliquer le mappage de colonnes', - 'uses_inclusive_taxes': 'Utiliser taxes incluses', - 'is_amount_discount': 'Est Montant rabais', - 'column': 'Colonne', - 'sample': 'Exemple', - 'map_to': 'Mapper vers', - 'import': 'Importer', - 'first_row_as_column_names': - 'Utiliser première rangée comme noms de colonnes', - 'select_file': 'Veuillez sélectionner un fichier', - 'no_file_selected': 'Aucun fichier sélectionné', - 'csv_file': 'Fichier CSV', + 'Warnung: Es ist für die Verwendung auf lokalen Rechnern gedacht und kann Anmeldedaten preisgeben. Klicken Sie, um mehr zu erfahren.', + 'running_tasks': 'Laufende Aufgaben', + 'recent_tasks': 'Kürzliche Aufgaben', + 'recent_expenses': 'Kürzliche Ausgaben', + 'upcoming_expenses': 'Zukünftige Ausgaben', + 'update_app': 'App aktualisieren', + 'started_import': 'Import erfolgreich gestartet', + 'duplicate_column_mapping': 'Dupliziere Spaltenzuordnung', + 'uses_inclusive_taxes': 'Benutzt Inklusive Steuern', + 'is_amount_discount': 'Ist Betrag ermäßigt', + 'column': 'Spalte', + 'sample': 'Beispiel', + 'map_to': 'Zuordnen', + 'import': 'Importieren', + 'first_row_as_column_names': 'Benutze erste Zeile als Spaltenüberschrift', + 'select_file': 'Bitte wählen sie eine Datei', + 'no_file_selected': 'Keine Datei ausgewählt', + 'csv_file': 'Wähle CSV Datei', 'csv': 'CSV', 'freshbooks': 'FreshBooks', 'invoice2go': 'Invoice2go', 'invoicely': 'Invoicely', 'waveaccounting': 'Wave Accounting', 'zoho': 'Zoho', - 'accounting': 'Comptabilité', - 'required_files_missing': 'Veuillez fournir tous les CSV.', - 'import_type': 'Type d\'importation', - 'html_mode': 'HTML Mode', - 'html_mode_help': 'Preview updates faster but is less accurate', - 'view_licenses': 'Voir les licences', - 'webhook_url': 'URL Webhook', - 'fullscreen_editor': 'Éditeur plein écran', - 'sidebar_editor': 'Éditeur de barre latérale', - 'please_type_to_confirm': 'Veuillez saisir \":value\" pour confirmer', - 'purge': 'Purger', - 'service': 'Service', - 'clone_to': 'Cloner vers', - 'clone_to_other': 'Cloner vers Autre', - 'labels': 'Étiquettes', - 'add_custom': 'Ajout personnalisé', - 'payment_tax': 'Paiement de taxe', - 'unpaid': 'Impayé', - 'white_label': 'Sans marque', - 'delivery_note': 'Note de livraison', - 'sent_invoices_are_locked': 'Les factures envoyées sont verrouillées', - 'paid_invoices_are_locked': 'Les factures payées sont verrouillées', - 'source_code': 'Code source', - 'app_platforms': 'Plateformes d\'app', - 'invoice_late': 'facture en retard', - 'quote_expired': 'Soumission expirée', - 'partial_due': 'Montant partiel dû', - 'invoice_total': 'Montant total', - 'quote_total': 'Total de la soumission', - 'credit_total': 'Total du crédit', - 'recurring_invoice_total': 'Total de facture', - 'actions': 'Actions', - 'expense_number': 'Numéro de dépense', - 'task_number': 'Numéro de tâche', - 'project_number': 'Numéro de projet', - 'project_name': 'Nom du projet', - 'warning': 'Avertissement', - 'view_settings': 'Voir les paramètres', + 'accounting': 'Buchhaltung', + 'required_files_missing': 'Bitte geben Sie alle CSV-Dateien an.', + 'import_type': 'Import Typ', + 'html_mode': 'HTML Modus', + 'html_mode_help': + 'Vorschau von Aktualisierungen schneller, aber weniger genau', + 'view_licenses': 'Lizenzen anzeigen', + 'webhook_url': 'Webhook URL', + 'fullscreen_editor': 'Vollbild Editor', + 'sidebar_editor': 'Seitenmenü Editor', + 'please_type_to_confirm': + 'Bitte geben Sie \":value\" zur Bestätigung ein', + 'purge': 'Bereinigen', + 'service': 'Dienst', + 'clone_to': 'Duplizieren zu', + 'clone_to_other': 'Duplizieren zu anderem', + 'labels': 'Beschriftung', + 'add_custom': 'Beschriftung hinzufügen', + 'payment_tax': 'Steuer-Zahlung', + 'unpaid': 'Unbezahlt', + 'white_label': 'White Label', + 'delivery_note': 'Lieferschein', + 'sent_invoices_are_locked': 'Versendete Rechnungen sind gesperrt', + 'paid_invoices_are_locked': 'Bezahlte Rechnungen sind gesperrt', + 'source_code': 'Quellcode', + 'app_platforms': 'Applikations Platform', + 'invoice_late': 'Rechnung in Verzug', + 'quote_expired': 'Angebot abgelaufen', + 'partial_due': 'Anzahlung', + 'invoice_total': 'Rechnungsbetrag', + 'quote_total': 'Angebotssumme', + 'credit_total': 'Gesamtguthaben', + 'recurring_invoice_total': 'Gesamtbetrag', + 'actions': 'Aktionen', + 'expense_number': 'Ausgabennummer', + 'task_number': 'Aufgabennummer', + 'project_number': 'Projektnummer', + 'project_name': 'Projektname', + 'warning': 'Warnung', + 'view_settings': 'Einstellungen anzeigen', 'company_disabled_warning': - 'Avertissement: Cette entreprise n\'a pas encore été activée', - 'late_invoice': 'Facture en retard', - 'expired_quote': 'Soumission expirée', - 'remind_invoice': 'Rappeler la facture', - 'cvv': 'CVV', - 'client_name': 'Nom du client', - 'client_phone': 'Téléphone du client', - 'required_fields': 'Champs requis', - 'calculated_rate': 'Taux calculé', - 'default_task_rate': 'Taux de tâche par défaut', - 'clear_cache': 'Vider le cache', - 'sort_order': 'Ordre de tri', - 'task_status': 'État', - 'task_statuses': 'États de tâche', - 'new_task_status': 'Nouvel état de tâche', - 'edit_task_status': 'Édition de l\'état de tâche', - 'created_task_status': 'L\'état de tâche a été créé avec succès', - 'updated_task_status': - 'Le statut de la tâche a été mis à jour avec succès', - 'archived_task_status': 'L\'état de tâche a été archivé avec succès', - 'deleted_task_status': 'L\'état de tâche a été supprimé avec succès', - 'removed_task_status': 'L\'état de tâche a été retiré avec succès', - 'restored_task_status': 'L\'état de tâche a été restauré avec succès', - 'archived_task_statuses': - 'Les :value états de tâche ont été archivés succès', - 'deleted_task_statuses': - 'Les :value états de tâche ont été supprimés avec succès', + 'Warnung: diese Firma wurde noch nicht aktiviert', + 'late_invoice': 'Rechnung in Verzug', + 'expired_quote': 'Abgelaufenes Angebot', + 'remind_invoice': 'Rechnungserinnerung', + 'cvv': 'Kartenprüfziffer', + 'client_name': 'Kunde', + 'client_phone': 'Kunden Telefon', + 'required_fields': 'Benötigte Felder', + 'calculated_rate': 'Berechneter Satz', + 'default_task_rate': 'Standard-Steuersatz', + 'clear_cache': 'Zwischenspeicher leeren', + 'sort_order': 'Sortierreihenfolge', + 'task_status': 'Status', + 'task_statuses': 'Aufgaben Status', + 'new_task_status': 'Neuer Aufgaben Status', + 'edit_task_status': 'Aufgaben Status bearbeiten', + 'created_task_status': 'Aufgaben Status erfolgreich erstellt', + 'updated_task_status': 'Aufgabenstatus erfolgreich aktualisiert', + 'archived_task_status': 'Aufgaben Status erfolgreich archiviert', + 'deleted_task_status': 'Aufgaben Status erfolgreich gelöscht', + 'removed_task_status': 'Aufgaben Status erfolgreich entfernt', + 'restored_task_status': 'Aufgaben Status erfolgreich wiederhergestellt', + 'archived_task_statuses': ':value Aufgaben Stati erfolgreich archiviert', + 'deleted_task_statuses': ':value Aufgaben Stati erfolgreich gelöscht', 'restored_task_statuses': - 'Les :value états de tâche ont été restaurés avec succès', - 'search_task_status': 'Recherche 1 état de tâche', - 'search_task_statuses': 'Recherche :count états de tâche', - 'show_tasks_table': 'Afficher le tableau des tâches', + ':value Aufgaben Stati erfolgreich wiederhergestellt', + 'search_task_status': 'Suche 1 Aufgaben Status', + 'search_task_statuses': 'Suche :count Aufgaben Status', + 'show_tasks_table': 'Zeige Aufgaben Tabelle', 'show_tasks_table_help': - 'Toujours afficher la section des tâches lors de la création de factures', - 'invoice_task_timelog': 'Facturer le journal du temps des tâches', + 'Beim Erstellen von Rechnungen immer die Aufgabenauswahl anzeigen', + 'invoice_task_timelog': 'Aufgaben Zeiterfassung in Rechnung stellen', 'invoice_task_timelog_help': - 'Ajouter les détails de temps aux lignes d\'articles des factures', - 'invoice_task_datelog': 'Facturer le journal des dates des tâches', + 'Zeitdetails in der Rechnungsposition ausweisen', + 'invoice_task_datelog': 'Aufgabenzeiterfassung in Rechnung stellen', 'invoice_task_datelog_help': - 'Ajouter les détails de date aux lignes d\'articles des factures', - 'auto_start_tasks_help': 'Démarrer les tâches avant de sauvegarder', - 'configure_statuses': 'Configurer les états', - 'task_settings': 'Paramètres des tâches', - 'configure_categories': 'Configurer les catégories', - 'expense_categories': 'Catégories de dépense', - 'new_expense_category': 'Nouvelle catégorie de dépense', - 'edit_expense_category': 'Éditer la catégorie Dépense', - 'created_expense_category': - 'La catégorie de dépense a été créé avec succès', - 'updated_expense_category': - 'La catégorie de dépense a été mise à jour avec succès', - 'archived_expense_category': - 'La catégorie de dépense a été archivée avec succès', - 'deleted_expense_category': 'La catégorie a été supprimée avec succès', - 'removed_expense_category': - 'La catégorie de dépense a été retirée avec succès', + 'Datumsdetails zu den Rechnungsposten hinzufügen', + 'auto_start_tasks_help': 'Beginne Aufgabe vor dem Speichern', + 'configure_statuses': 'Stati bearbeiten', + 'task_settings': 'Aufgaben Einstellungen', + 'configure_categories': 'Kategorien bearbeiten', + 'expense_categories': 'Ausgabenkategorien', + 'new_expense_category': 'Neue Ausgabenkategorie', + 'edit_expense_category': 'Ausgaben Kategorie bearbeiten', + 'created_expense_category': 'Ausgabenkategorie erfolgreich erstellt', + 'updated_expense_category': 'Ausgabenkategorie erfolgreich aktualisiert', + 'archived_expense_category': 'Ausgabenkategorie erfolgreich archiviert', + 'deleted_expense_category': 'Kategorie erfolgreich gelöscht', + 'removed_expense_category': 'Ausgaben Kategorie erfolgreich entfernt', 'restored_expense_category': - 'La catégorie de dépense a été rétablie avec succès', + 'Ausgabenkategorie erfolgreich wiederhergestellt', 'archived_expense_categories': - ':count catégories de dépense ont été archivées avec succès', + ':count Ausgabenkategorien erfolgreich archiviert', 'deleted_expense_categories': - 'Les :value catégories de dépense ont été supprimées avec succès', + ':value Ausgabenkategorien erfolgreich gelöscht', 'restored_expense_categories': - 'Les :value catégories de dépense ont été restaurées avec succès', - 'search_expense_category': 'Recherche 1 catégorie de dépense', - 'search_expense_categories': 'Recherche :count catégorie de dépense', - 'use_available_credits': 'Utiliser les crédits disponibles', - 'show_option': 'Afficher les options', + ':value Ausgabenkategorien erfolgreich wiederhergestellt', + 'search_expense_category': 'Suche 1 Ausgabenkategorie', + 'search_expense_categories': 'Suche :count Ausgabenkategorie', + 'use_available_credits': 'Verfügbares Guthaben verwenden', + 'show_option': 'Zeige Option', 'negative_payment_error': - 'Le montant du crédit ne peut pas excéder le montant du paiement', - 'view_changes': 'Visualiser les changements', - 'force_update': 'Forcer la mise à jour', + 'Der Guthabenbetrag darf den Zahlungsbetrag nicht übersteigen', + 'view_changes': 'Änderungen anzeigen', + 'force_update': 'Aktualisierungen erzwingen', 'force_update_help': - 'Vous êtes sur la dernière version, mais il peut y avoir encore quelques mises à jour en cours', - 'mark_paid_help': 'Suivez les dépenses qui ont été payées', - 'should_be_invoiced': 'Devrait être facturée', - 'should_be_invoiced_help': 'Activer la facturation de la dépense', - 'add_documents_to_invoice_help': 'Rend visibles les documents', - 'convert_currency_help': 'Définir un taux d\'échange', - 'expense_settings': 'Paramètres des dépenses', - 'clone_to_recurring': 'Cloner en récurrence', - 'crypto': 'Crypto', + 'Du benutzt die aktuellste Version, aber es stehen noch ausstehende Fehlerbehebungen zur Verfügung', + 'mark_paid_help': 'Verfolge ob Ausgabe bezahlt wurde', + 'should_be_invoiced': 'Sollte in Rechnung gestellt werden', + 'should_be_invoiced_help': + 'Ermögliche diese Ausgabe in Rechnung zu stellen', + 'add_documents_to_invoice_help': 'Dokumente sichtbar machen', + 'convert_currency_help': 'Wechselkurs setzen', + 'expense_settings': 'Ausgaben Einstellungen', + 'clone_to_recurring': 'Duplizieren zu Widerkehrend', + 'crypto': 'Verschlüsselung', 'paypal': 'PayPal', 'alipay': 'Alipay', - 'sofort': 'Sofort', - 'apple_pay': 'Apple / Google Pay', - 'user_field': 'Champs utilisateur', - 'variables': 'Variables', - 'show_password': 'Afficher le mot de passe', - 'hide_password': 'Masquer le mot de passe', - 'copy_error': 'Erreur de copie', - 'capture_card': 'Carte saisie', - 'auto_bill_enabled': 'Autofacturation activée', - 'total_taxes': 'Taxes totales', - 'line_taxes': 'Taxes par ligne', - 'total_fields': 'Champs des totaux', + 'sofort': 'SOFORT-Überweisung', + 'apple_pay': 'Apple/Google Pay', + 'user_field': 'Benutzer Feld', + 'variables': 'Variablen', + 'show_password': 'Zeige Passwort', + 'hide_password': 'Verstecke Passwort', + 'copy_error': 'Kopier Fehler', + 'capture_card': 'Zahlungsmittel für die weitere Verwendung speichern', + 'auto_bill_enabled': 'Automatische Rechnungsstellung aktivieren', + 'total_taxes': 'Gesamt Steuern', + 'line_taxes': 'Belegposition Steuer', + 'total_fields': 'Gesamt Felder', 'stopped_recurring_invoice': - 'La facture récurrente a été arrêtée avec succès', + 'Wiederkehrende Rechnung erfolgreich gestoppt', 'started_recurring_invoice': - 'La facture récurrente a été démarrée avec succès', + 'Wiederkehrende Rechnung erfolgreich gestartet', 'resumed_recurring_invoice': - 'La facture récurrente a été reprise avec succès', - 'gateway_refund': 'Remboursement de passerelle', + 'Wiederkehrende Rechnung erfolgreich fortgesetzt', + 'gateway_refund': 'Zahlungsanbieter Rückerstattung', 'gateway_refund_help': - 'Procéder au remboursement avec la passerelle de paiement', - 'due_date_days': 'Date d\'échéance', - 'paused': 'En pause', - 'mark_active': 'Cocher actif', - 'day_count': 'Jour :count', - 'first_day_of_the_month': 'Premier jour du mois', - 'last_day_of_the_month': 'Dernier jour du mois', - 'use_payment_terms': 'Utiliser les délais de paiement', - 'endless': 'Sans fin', - 'next_send_date': 'Prochaine date d\'envoi', - 'remaining_cycles': 'Cycles restants', - 'recurring_invoice': 'Facture récurrente', - 'recurring_invoices': 'Factures récurrentes', - 'new_recurring_invoice': 'Nouvelle facture récurrente', - 'edit_recurring_invoice': 'Éditer la facture récurrente', + 'Bearbeite die Rückerstattung über den Zahlungsanbieter', + 'due_date_days': 'Fälligkeitsdatum', + 'paused': 'Pausiert', + 'mark_active': 'Markiere aktiv', + 'day_count': 'Tag :count', + 'first_day_of_the_month': 'Erster Tag des Monats', + 'last_day_of_the_month': 'Letzter Tag des Monats', + 'use_payment_terms': 'Benutze Zahlungsbedingung', + 'endless': 'Endlos', + 'next_send_date': 'Nächstes Versanddatum', + 'remaining_cycles': 'Verbleibende Durchgänge', + 'recurring_invoice': 'Wiederkehrende Rechnung', + 'recurring_invoices': 'Wiederkehrende Rechnungen', + 'new_recurring_invoice': 'Neue wiederkehrende Rechnung', + 'edit_recurring_invoice': 'Bearbeite wiederkehrende Rechnung', 'created_recurring_invoice': - 'La facture récurrente a été créée avec succès', + 'Wiederkehrende Rechnung erfolgreich erstellt', 'updated_recurring_invoice': - 'La facture récurrente a été mise à jour avec succès', + 'Wiederkehrende Rechnung erfolgreich aktualisiert', 'archived_recurring_invoice': - 'La facture récurrente a été archivée avec succès', + 'Wiederkehrende Rechnung erfolgreich archiviert', 'deleted_recurring_invoice': - 'La facture récurrente a été supprimée avec succès', + 'Wiederkehrende Rechnung erfolgreich gelöscht', 'removed_recurring_invoice': - 'La facture récurrente a été retirée avec succès', + 'Wiederkehrende Rechnung erfolgreich entfernt', 'restored_recurring_invoice': - 'La facture récurrente a été restaurée avec succès', + 'Wiederkehrende Rechnung erfolgreich wiederhergestellt', 'archived_recurring_invoices': - 'Les :value factures récurrentes ont été archivées avec succès', + ':value Wiederkehrende Rechnung erfolgreich archiviert', 'deleted_recurring_invoices': - 'Les :value factures récurrentes ont été supprimées avec succès', + ':value Wiederkehrende Rechnungen erfolgreich gelöscht', 'restored_recurring_invoices': - 'Les :value factures récurrentes ont été restaurées avec succès', - 'search_recurring_invoice': 'Recherche 1 facture récurrente', - 'search_recurring_invoices': 'Recherche :count factures récurrentes', - 'send_date': 'Date d\'envoi', - 'auto_bill_on': 'Autofacturer le', - 'minimum_under_payment_amount': 'Montant minimum de sous-paiement', + ':value Wiederkehrende Rechnungen erfolgreich wiederhergestellt', + 'search_recurring_invoice': 'Suche 1 wiederkehrende Rechnung', + 'search_recurring_invoices': 'Suche :count Wiederkehrende Rechnungen', + 'send_date': 'Versanddatum', + 'auto_bill_on': 'Automatische Rechnungsstellung zum', + 'minimum_under_payment_amount': 'Minimaler Unterzahlungsbetrag', 'profit': 'Profit', - 'line_item': 'Ligne d\'article', - 'allow_over_payment': 'Accepter Sur-paiement', + 'line_item': 'Posten', + 'allow_over_payment': 'Überzahlung zulassen', 'allow_over_payment_help': - 'Accepter paiement supplémentaire pour pourboire', - 'allow_under_payment': 'Accepter Sous-paiement', - 'allow_under_payment_help': - 'Accepter paiement au minimum le montant partiel/dépôt', - 'test_mode': 'Mode test', - 'opened': 'Ouverts', - 'payment_reconciliation_failure': 'Conciliation non réussie', - 'payment_reconciliation_success': 'Conciliation réussie', - 'gateway_success': 'Passerelle réussie', - 'gateway_failure': 'Échec de passerelle', - 'gateway_error': 'Erreur de passerelle', - 'email_send': 'Envoi de courriel', - 'email_retry_queue': 'File d\'envoi de courriel', - 'failure': 'Échec', - 'quota_exceeded': 'Quota dépassé', - 'upstream_failure': 'Échec en amont', - 'system_logs': 'Journaux système', - 'view_portal': 'Voir le portail', - 'copy_link': 'Copier le lien', - 'token_billing': 'Sauvegarder les informations de carte de crédit', - 'welcome_to_invoice_ninja': 'Bienvenue dans Invoice Ninja', - 'always': 'Toujours', - 'optin': 'Adhésion', - 'optout': 'Désadhésion', - 'label': 'Libellé', - 'client_number': 'Numéro de client', - 'auto_convert': 'Conversion automatique', - 'company_name': 'Nom de l\'entreprise', - 'reminder1_sent': 'Rappel 1 envoyé', - 'reminder2_sent': 'Rappel 2 envoyé', - 'reminder3_sent': 'Rappel 3 envoyé', - 'reminder_last_sent': 'Dernier envoi de rappel', - 'pdf_page_info': 'Page :current de :total', - 'emailed_invoices': - 'Les factures ont été envoyées par courriel avec succès', - 'emailed_quotes': - 'Les soumissions ont été envoyées par courriel avec succès', - 'emailed_credits': 'Les crédits ont été envoyés par courriel avec succès', - 'gateway': 'Passerelle', - 'view_in_stripe': 'Voir dans Stripe', - 'rows_per_page': 'Rangées par page', - 'hours': 'Heures', - 'statement': 'Relevé', - 'taxes': 'Taxes', - 'surcharge': 'surcharge', - 'apply_payment': 'Appliquer le paiement', - 'apply_credit': 'Appliquer le crédit', - 'apply': 'Appliquer', - 'unapplied': 'Non appliqué', - 'select_label': 'Sélectionnez le libellé', - 'custom_labels': 'Étiquettes personnalisées', - 'record_type': 'Type d\'enregistrement', - 'record_name': 'Non d\'enregistrement', - 'file_type': 'Type de fichier', - 'height': 'Hauteur', - 'width': 'Largeur', - 'to': 'à', - 'health_check': 'État de santé', - 'payment_type_id': 'Type de paiement', - 'last_login_at': 'Dernière connexion à', - 'company_key': 'Clé d\'entreprise', - 'storefront': 'Vitrine', + 'Überzahlungen zulassen, beispielsweise Trinkgelder', + 'allow_under_payment': 'Unterzahlung zulassen', + 'allow_under_payment_help': 'Teilzahlungen zulassen', + 'test_mode': 'Test Modus', + 'opened': 'Geöffnet', + 'payment_reconciliation_failure': 'Fehler bei Kontenabstimmung', + 'payment_reconciliation_success': 'Kontenabstimmung erfolgreich', + 'gateway_success': 'Zahlungsanbieter erfolgreich', + 'gateway_failure': 'Zahlungsanbieter Fehler', + 'gateway_error': 'Zahlungsanbieter Fehler', + 'email_send': 'E-Mail gesendet', + 'email_retry_queue': 'E-Mail Wiederholungswarteschlange', + 'failure': 'Fehler', + 'quota_exceeded': 'Quota erreicht', + 'upstream_failure': 'Upstream Fehler', + 'system_logs': 'System-Log', + 'view_portal': 'Portal anzeigen', + 'copy_link': 'Link kopieren', + 'token_billing': 'Kreditkarte merken', + 'welcome_to_invoice_ninja': 'Willkommen bei Invoice Ninja', + 'always': 'Immer', + 'optin': 'Anmelden', + 'optout': 'Abmelden', + 'label': 'Label', + 'client_number': 'Kundennummer', + 'auto_convert': 'Automatisch konvertieren', + 'company_name': 'Firmenname', + 'reminder1_sent': 'Erste Erinnerung verschickt', + 'reminder2_sent': 'Zweite Erinnerung verschickt', + 'reminder3_sent': 'Dritte Erinnerung verschickt', + 'reminder_last_sent': 'Letzte Erinnerung verschickt', + 'pdf_page_info': 'Seite :current von :total', + 'emailed_invoices': 'Rechnungen erfolgreich versendet', + 'emailed_quotes': 'Angebote erfolgreich versendet', + 'emailed_credits': 'Guthaben erfolgreich per E-Mail versendet', + 'gateway': 'Provider', + 'view_in_stripe': 'In Stripe anzeigen', + 'rows_per_page': 'Einträge pro Seite', + 'hours': 'Stunden', + 'statement': 'Bericht', + 'taxes': 'Steuern', + 'surcharge': 'Gebühr', + 'apply_payment': 'Zahlungen anwenden', + 'apply_credit': 'Guthaben anwenden', + 'apply': 'Anwenden', + 'unapplied': 'unangewendet', + 'select_label': 'Bezeichnung wählen', + 'custom_labels': 'Eigene Beschriftungen', + 'record_type': 'Eintragstyp', + 'record_name': 'Eintragsname', + 'file_type': 'Dateityp', + 'height': 'Höhe', + 'width': 'Breite', + 'to': 'An', + 'health_check': 'Systemprüfung', + 'payment_type_id': 'Zahlungsart', + 'last_login_at': 'Letzter Login', + 'company_key': 'Firmen Schlüssel', + 'storefront': 'Storefront', 'storefront_help': - 'Activer les applications externes à créer des factures', - 'client_created': 'Client créé', - 'online_payment_email': 'Courriel de paiement en ligne', - 'manual_payment_email': 'Courriel de paiement manuel', - 'completed': 'Complété', - 'gross': 'Brut', - 'net_amount': 'Montant net', - 'net_balance': 'Solde net', - 'client_settings': 'Paramètres clients', - 'selected_invoices': 'Factures sélectionnées', - 'selected_payments': 'Paiements sélectionnés', - 'selected_quotes': 'Soumissions sélectionnées', - 'selected_tasks': 'Tâches sélectionnées', - 'selected_expenses': 'Dépenses sélectionnées', - 'upcoming_invoices': 'Factures à venir', - 'past_due_invoices': 'Factures impayées', - 'recent_payments': 'Paiements reçus', - 'upcoming_quotes': 'Soumissions à venir', - 'expired_quotes': 'Soumissions expirées', - 'create_client': 'Créer un client', - 'create_invoice': 'Créer une facture', - 'create_quote': 'Créer une soumission', - 'create_payment': 'Créer un paiement', - 'create_vendor': 'Créer un fournisseur', - 'update_quote': 'Mettre à jour la soumission', - 'delete_quote': 'Supprimer la soumission', - 'update_invoice': 'Mettre à jour la facture', - 'delete_invoice': 'Supprimer la facture', - 'update_client': 'Mettre à jour le client', - 'delete_client': 'Supprimer ce client', - 'delete_payment': 'Supprimer ce paiement', - 'update_vendor': 'Mettre à jour le fournisseur', - 'delete_vendor': 'Supprimer le fournisseur', - 'create_expense': 'Créer une dépense', - 'update_expense': 'Mettre à jour la dépense', - 'delete_expense': 'Supprimer la dépense', - 'create_task': 'Créer une Tâche', - 'update_task': 'Mettre à jour la tâche', - 'delete_task': 'Supprimer la Tâche', - 'approve_quote': 'Approuver la tâche', - 'off': 'Fermé', - 'when_paid': 'Lors du paiement', - 'expires_on': 'Expiration le', - 'free': 'Gratuit', + 'Drittanbieter Applikationen erlauben Rechnungen zu erstellen', + 'client_created': 'Kunde wurde erstellt', + 'online_payment_email': 'Online-Zahlung E-Mail Adresse', + 'manual_payment_email': 'manuelle Zahlung E-Mail Adresse', + 'completed': 'Abgeschlossen', + 'gross': 'Gesamtbetrag', + 'net_amount': 'Netto Betrag', + 'net_balance': 'Netto Betrag', + 'client_settings': 'Kundeneinstellungen', + 'selected_invoices': 'Ausgewählte Rechnungen', + 'selected_payments': 'Ausgewählte Zahlungen', + 'selected_quotes': 'Ausgewählte Angebote', + 'selected_tasks': 'Ausgewählte Aufgaben', + 'selected_expenses': 'Ausgewählte Ausgaben', + 'upcoming_invoices': 'Ausstehende Rechnungen', + 'past_due_invoices': 'Überfällige Rechnungen', + 'recent_payments': 'Kürzliche Zahlungen', + 'upcoming_quotes': 'Ausstehende Angebote', + 'expired_quotes': 'Abgelaufene Angebote', + 'create_client': 'Kunden erstellen', + 'create_invoice': 'Rechnung erstellen', + 'create_quote': 'Angebot erstellen', + 'create_payment': 'Zahlung erstellen', + 'create_vendor': 'Lieferanten erstellen', + 'update_quote': 'Angebot aktualisieren', + 'delete_quote': 'Angebot löschen', + 'update_invoice': 'Rechnung aktualisieren', + 'delete_invoice': 'Rechnung löschen', + 'update_client': 'Kunde aktualisieren', + 'delete_client': 'Kunde löschen', + 'delete_payment': 'Zahlung löschen', + 'update_vendor': 'Lieferant aktualisieren', + 'delete_vendor': 'Lieferant Löschen', + 'create_expense': 'Ausgabe erstellen', + 'update_expense': 'Ausgabe aktualisieren', + 'delete_expense': 'Ausgabe Löschen', + 'create_task': 'Aufgabe erstellen', + 'update_task': 'Aufgabe aktualisieren', + 'delete_task': 'Aufgabe löschen', + 'approve_quote': 'Angebot annehmen', + 'off': 'Aus', + 'when_paid': 'Bei Zahlung', + 'expires_on': 'Gültig bis', + 'free': 'Kostenlos', 'plan': 'Plan', - 'show_sidebar': 'Afficher la barre latérale', - 'hide_sidebar': 'Masquer la barre latérale', - 'event_type': 'Type d\'événement', - 'target_url': 'Cible', - 'copy': 'Copier', + 'show_sidebar': 'Zeige Seitenmenü', + 'hide_sidebar': 'Verstecke Seitenmenu', + 'event_type': 'Ereignistyp', + 'target_url': 'Ziel', + 'copy': 'kopieren', 'must_be_online': - 'Veuillez redémarrer l\'application lorsque vous serez connecté à internet', - 'crons_not_enabled': 'Les crons doivent être activés', + 'Bitte starten Sie die App sobald Sie mit dem Internet verbunden sind', + 'crons_not_enabled': 'Die Crons müssen aktiviert werden', 'api_webhooks': 'API Webhooks', - 'search_webhooks': 'Recherche de :count Webhooks', - 'search_webhook': 'Recherche de 1 Webhook', + 'search_webhooks': 'Suche :count Webhooks', + 'search_webhook': 'Suche 1 Webhook', 'webhook': 'Webhook', 'webhooks': 'Webhooks', - 'new_webhook': 'Nouveau Webhook', - 'edit_webhook': 'Éditer le Webhook', - 'created_webhook': 'Le webhook a été créé avec succès', - 'updated_webhook': 'Le webhook a été mis à jour avec succès', - 'archived_webhook': 'Le webhook a été archivé avec succès', - 'deleted_webhook': 'Le webhook a été supprimé avec succès', - 'removed_webhook': 'Le webhook a été retiré avec succès', - 'restored_webhook': 'Le webhook a été restauré avec succès', - 'archived_webhooks': 'Les :value webhooks ont été archivés avec succès', - 'deleted_webhooks': 'Les :value webhooks ont été supprimés avec succès', - 'removed_webhooks': 'Les :value webhooks ont été retirés avec succès', - 'restored_webhooks': 'Les :value webhooks ont été restaurés avec succès', - 'api_tokens': 'Jetons API', - 'api_docs': 'Docs API', - 'search_tokens': 'Recherche de :count jetons', - 'search_token': 'Recherche de 1 jeton', - 'token': 'Jeton', - 'tokens': 'Jetons', - 'new_token': 'Nouveau jeton', - 'edit_token': 'Éditer le jeton', - 'created_token': 'Le jeton a été créé avec succès', - 'updated_token': 'Le jeton a été mis à jour avec succès', - 'archived_token': 'Le jeton a été archivé avec succès', - 'deleted_token': 'Le jeton a été supprimé avec succès', - 'removed_token': 'Le jeton a été retiré avec succès', - 'restored_token': 'Le jeton a été restauré avec succès', - 'archived_tokens': 'Les :value jetons ont été archivés avec succès', - 'deleted_tokens': 'Les :value jetons ont été supprimés avec succès', - 'restored_tokens': 'Les :value jetons ont été restaurés avec succès', - 'client_registration': 'Enregistrement d\'un client', + 'new_webhook': 'Neuer Webhook', + 'edit_webhook': 'Webhook bearbeiten', + 'created_webhook': 'Webhook erfolgreich erstellt', + 'updated_webhook': 'Webhook erfolgreich aktualisiert', + 'archived_webhook': 'Webhook erfolgreich archiviert', + 'deleted_webhook': 'Webhook erfolgreich gelöscht', + 'removed_webhook': 'Webhook erfolgreich entfernt', + 'restored_webhook': 'Webhook erfolgreich wiederhergestellt', + 'archived_webhooks': ':value Webhooks erfolgreich archiviert', + 'deleted_webhooks': ':value Webhooks erfolgreich gelöscht', + 'removed_webhooks': ':value Webhooks erfolgreich entfernt', + 'restored_webhooks': ':value Webhooks erfolgreich wiederhergestellt', + 'api_tokens': 'API Token', + 'api_docs': 'API Doku', + 'search_tokens': 'Suche :count Token', + 'search_token': 'Suche 1 Token', + 'token': 'Token', + 'tokens': 'Token', + 'new_token': 'Neues Token', + 'edit_token': 'Token bearbeiten', + 'created_token': 'Token erfolgreich erstellt', + 'updated_token': 'Token erfolgreich aktualisiert', + 'archived_token': 'Token erfolgreich archiviert', + 'deleted_token': 'Token erfolgreich gelöscht', + 'removed_token': 'Token erfolgreich entfernt', + 'restored_token': 'Token erfolgreich wiederhergestellt', + 'archived_tokens': ':count Token erfolgreich archiviert', + 'deleted_tokens': ':count Token erfolgreich gelöscht', + 'restored_tokens': ':value Token erfolgreich wiederhergestellt', + 'client_registration': 'Kunden Registration', 'client_registration_help': - 'Autoriser le client à s\'inscrire sur le portail', - 'customize_and_preview': 'Personnaliser et prévisualiser', - 'email_invoice': 'Envoyer la facture par courriel', - 'email_quote': 'Envoyer la soumission par courriel', - 'email_credit': 'Crédit par courriel', - 'email_payment': 'Courriel de paiement', - 'client_email_not_set': 'Le client n\'a pas d\'adresse courriel définie', - 'ledger': 'Grand livre', - 'view_pdf': 'Voir PDF', - 'all_records': 'Tous les enregistrements', - 'owned_by_user': 'Propriété de l\'utilisateur', - 'credit_remaining': 'Crédit restant', - 'contact_name': 'Nom du contact', - 'use_default': 'Utiliser la valeur par défaut', - 'reminder_endless': 'Rappels infinis', - 'number_of_days': 'Nombre de jours', - 'configure_payment_terms': 'Configuration des délais de paiements', - 'payment_term': 'Délai de paiement', - 'new_payment_term': 'Nouveau délai de paiement', - 'edit_payment_term': 'Modifier le délai de paiement', - 'created_payment_term': 'Le délai de paiement a été cré avec succès', - 'updated_payment_term': - 'Le délai de paiement a été mis à jour avec succès', - 'archived_payment_term': 'Le délai de paiement a été archivé avec succès', - 'deleted_payment_term': 'Le délai de paiement a été supprimé avec succès', - 'removed_payment_term': 'Le délai de paiement a été retiré avec succès', + 'Den Kunden ermöglichen, sich selbst im Portal zu registrieren.', + 'customize_and_preview': 'Anpassung und Vorschau', + 'email_invoice': 'Rechnung versenden', + 'email_quote': 'Angebot per E-Mail senden', + 'email_credit': 'Guthaben per E-Mail versenden', + 'email_payment': 'Sende Zahlungs eMail', + 'client_email_not_set': + 'Es wurde noch keine E-Mail Adresse beim Kunden eingetragen.', + 'ledger': 'Hauptbuch', + 'view_pdf': 'Zeige PDF', + 'all_records': 'Alle Einträge', + 'owned_by_user': 'Eigentümer', + 'credit_remaining': 'Verbleibendes Guthaben', + 'contact_name': 'Name des Kontakts', + 'use_default': 'Benutze Standardwert', + 'reminder_endless': 'Endlose Reminder', + 'number_of_days': 'Anzahl Tage', + 'configure_payment_terms': 'Zahlungsbedingungen bearbeiten', + 'payment_term': 'Zahlungsbedingung', + 'new_payment_term': 'Neue Zahlungsbedingung', + 'edit_payment_term': 'Bearbeite Zahlungsbedingungen', + 'created_payment_term': 'Zahlungsbedingung erfolgreich erstellt', + 'updated_payment_term': 'Zahlungsbedingung erfolgreich aktualisiert', + 'archived_payment_term': 'Zahlungsbedingung erfolgreich archiviert', + 'deleted_payment_term': 'Zahlungsbedingung erfolgreich gelöscht', + 'removed_payment_term': 'Zahlungsbedingung erfolgreich entfernt', 'restored_payment_term': - 'Le délai de paiement a été restauré avec succès', + 'Zahlungsbedingungen erfolgreich wiederhergestellt', 'archived_payment_terms': - 'Les :value délais de paiement ont été archivés avec succès', + ':value Zahlungsbedingungen erfolgreich archiviert', 'deleted_payment_terms': - 'Les :value délais de paiement ont été supprimés avec succès', + ':value Zahlungsbedingungen erfolgreich gelöscht', 'restored_payment_terms': - 'Les :value délais de paiement ont été restaurés avec succès', - 'email_sign_in': 'Connexion par courriel', - 'change': 'Basculer', - 'change_to_mobile_layout': 'Basculer vers l\'affichage mobile', - 'change_to_desktop_layout': 'Basculer vers l\'affichage ordinateur', - 'send_from_gmail': 'Envoyer avec Gmail', - 'reversed': 'Inversé', - 'cancelled': 'Annulé', - 'credit_amount': 'Montant du crédit', - 'quote_amount': 'Montant de la soumission', - 'hosted': 'Hébergé', - 'selfhosted': 'Auto-hébergé', - 'exclusive': 'Exclusif', - 'inclusive': 'Inclusif', - 'hide_menu': 'Masquer le menu', - 'show_menu': 'Afficher le menu', - 'partially_refunded': 'Partiellement remboursé', - 'search_documents': 'Recherche de documents', - 'search_designs': 'Recherche de designs', - 'search_invoices': 'Recherche de factures', - 'search_clients': 'Recherche de clients', - 'search_products': 'Recherche de produits', - 'search_quotes': 'Recherche de soumissions', - 'search_credits': 'Recherche de crédits', - 'search_vendors': 'Recherche de fournisseurs', - 'search_users': 'Recherche d\'utilisateurs', - 'search_tax_rates': 'Recherche de taux de taxe', - 'search_tasks': 'Recherche de tâches', - 'search_settings': 'Recherche de paramètres', - 'search_projects': 'Recherche de projets', - 'search_expenses': 'Recherche de dépenses', - 'search_payments': 'Recherche de paiements', - 'search_groups': 'Recherche de groupes', - 'search_company': 'Recherche d\'entreprises', - 'search_document': 'Recherche de 1 document', - 'search_design': 'Recherche de 1 design', - 'search_invoice': 'Recherche de 1 facture', - 'search_client': 'Recherche de 1 client', - 'search_product': 'Recherche de 1 produit', - 'search_quote': 'Recherche de 1 soumission', - 'search_credit': 'Recherche de 1 crédit', - 'search_vendor': 'Recherche de 1 entreprise', - 'search_user': 'Recherche de 1 utilisateur', - 'search_tax_rate': 'Recherche de 1 taux de taxe', - 'search_task': 'Recherche de 1 tâche', - 'search_project': 'Recherche de 1 projet', - 'search_expense': 'Recherche de 1 dépense', - 'search_payment': 'Recherche de 1 paiement', - 'search_group': 'Recherche de 1 groupe', - 'refund_payment': 'Remboursement', - 'cancelled_invoice': 'La facture a été annulée avec succès', - 'cancelled_invoices': 'Les factures ont été annulées avec succès', - 'reversed_invoice': 'La facture a été inversée avec succès', - 'reversed_invoices': 'Les factures ont été inversées avec succès', - 'reverse': 'Inverse', - 'full_name': 'Nom complet', - 'city_state_postal': 'Ville/Prov/CP', - 'postal_city_state': 'Ville/Province/Code postal', - 'custom1': 'Personnalisation 1', - 'custom2': 'Personnalisation 2', - 'custom3': 'Troisième personnalisé', - 'custom4': 'Quatrième personnalisée', - 'optional': 'Optionnel', - 'license': 'Licence', - 'purge_data': 'Purger les données', - 'purge_successful': - 'Toutes les données de l\'entreprise ont été purgées avec succès', + ':value Zahlungsbedingungen erfolgreich wiederhergestellt', + 'email_sign_in': 'Mit E-Mail anmelden', + 'change': 'Ändern', + 'change_to_mobile_layout': 'Möchten Sie zur mobilen Ansicht wechseln?', + 'change_to_desktop_layout': 'Möchten Sie zur Desktopansicht wechseln?', + 'send_from_gmail': 'Mit Gmail versenden', + 'reversed': 'Umgekehrt', + 'cancelled': 'Storniert', + 'credit_amount': 'Guthabenbetrag', + 'quote_amount': 'Angebotsbetrag', + 'hosted': 'Gehostet', + 'selfhosted': 'Selbstgehostet', + 'exclusive': 'Exklusive', + 'inclusive': 'Inklusive', + 'hide_menu': 'Menü ausblenden', + 'show_menu': 'Menü einblenden', + 'partially_refunded': 'Teilweise erstattet', + 'search_documents': 'Suche nach Dokumenten', + 'search_designs': 'Suche nach Designs', + 'search_invoices': 'Suche Rechnungen', + 'search_clients': 'Suche Kunden', + 'search_products': 'Suche Produkte', + 'search_quotes': 'Suche Angebote', + 'search_credits': 'Suche Guthaben', + 'search_vendors': 'Suche Lieferanten', + 'search_users': 'Suche Benutzer', + 'search_tax_rates': 'Suche Steuersatz', + 'search_tasks': 'Suche Aufgaben', + 'search_settings': 'Suche Einstellungen', + 'search_projects': 'Suche nach Projekten', + 'search_expenses': 'Suche Ausgaben', + 'search_payments': 'Suche Zahlungen', + 'search_groups': 'Suche nach Gruppen', + 'search_company': 'Suche Firma', + 'search_document': 'Suche 1 Dokument', + 'search_design': 'Suche 1 Design', + 'search_invoice': 'Suche 1 Angebot', + 'search_client': 'Suche 1 Kunden', + 'search_product': 'Suche 1 Produkt', + 'search_quote': 'Suche 1 Angebot', + 'search_credit': 'Suche 1 Guthaben', + 'search_vendor': 'Suche 1 Hersteller', + 'search_user': 'Suche 1 Benutzer', + 'search_tax_rate': 'Suche 1 Steuersatz', + 'search_task': 'Suche 1 Aufgabe', + 'search_project': 'Suche 1 Projekt', + 'search_expense': 'Suche 1 Ausgabe', + 'search_payment': 'Suche 1 Zahlung', + 'search_group': 'Suche 1 Gruppen', + 'refund_payment': 'Zahlung erstatten', + 'cancelled_invoice': 'Rechnung erfolgreich storniert', + 'cancelled_invoices': 'Rechnungen erfolgreich storniert', + 'reversed_invoice': 'Rechnung erfolgreich zurückgebucht', + 'reversed_invoices': 'Rechnungen erfolgreich zurückgebucht', + 'reverse': 'Rückbuchung', + 'full_name': 'Voller Name', + 'city_state_postal': 'Stadt / Bundesland / PLZ', + 'postal_city_state': 'Plz/Stadt/Staat', + 'custom1': 'Benutzerdefiniert 1', + 'custom2': 'Benutzerdefiniert 2', + 'custom3': 'Benutzerdefiniert 3', + 'custom4': 'Benutzerdefiniert 3', + 'optional': 'optional', + 'license': 'Lizenz', + 'purge_data': 'Daten säubern', + 'purge_successful': 'Die Kontodaten wurden erfolgreich gelöscht', 'purge_data_message': - 'Avertissement: Cette action est irréversible et va supprimer vos données de façon définitive.', - 'invoice_balance': 'Solde de facture', - 'age_group_0': '0 - 30 jours', - 'age_group_30': '30 - 60 jours', - 'age_group_60': '60 - 90 jours', - 'age_group_90': '90 - 120 jours', - 'age_group_120': '120+ jours', - 'refresh': 'Actualiser', - 'saved_design': 'Le modèle a été sauvegardé avec succès', - 'client_details': 'Informations du client', - 'company_address': 'Adresse de l\'entreprise', - 'invoice_details': 'Détails de facture', - 'quote_details': 'Informations de la soumission', - 'credit_details': 'Informations de crédit', - 'product_columns': 'Colonnes produit', - 'task_columns': 'Colonnes tâches', - 'add_field': 'Ajouter un champ', - 'all_events': 'Ajouter un événement', - 'permissions': 'Permissions', - 'none': 'Aucun', - 'owned': 'Propriétaire', - 'payment_success': 'Paiement réussi', - 'payment_failure': 'Le paiement a échoué', - 'invoice_sent': ':count facture envoyée', - 'quote_sent': 'Soumission envoyée', - 'credit_sent': 'Crédit envoyé', - 'invoice_viewed': 'Facture visualisée', - 'quote_viewed': 'Soumission visualisée', - 'credit_viewed': 'Crédit visualisé', - 'quote_approved': 'Soumission approuvée', - 'receive_all_notifications': 'Recevoir toutes les notifications', - 'purchase_license': 'Acheter une licence', - 'apply_license': 'Activer la licence', - 'cancel_account': 'Supprimer le compte', + 'Achtung: Alle Daten werden vollständig gelöscht. Dieser Vorgang kann nicht rückgängig gemacht werden.', + 'invoice_balance': 'Rechnungssaldo', + 'age_group_0': '0 - 30 Tage', + 'age_group_30': '30 - 60 Tage', + 'age_group_60': '60 - 90 Tage', + 'age_group_90': '90 - 120 Tage', + 'age_group_120': '120+ Tage', + 'refresh': 'Aktualisieren', + 'saved_design': 'Design erfolgreich gespeichert', + 'client_details': 'Kundeninformationen', + 'company_address': 'Firmenadresse', + 'invoice_details': 'Rechnungsdetails', + 'quote_details': 'Kostenvoranschlag-Details', + 'credit_details': 'Gutschrift Details', + 'product_columns': 'Produktspalten', + 'task_columns': 'Aufgabenspalten', + 'add_field': 'Feld hinzufügen', + 'all_events': 'Alle Ereignisse', + 'permissions': 'Berechtigungen', + 'none': 'Nichts', + 'owned': 'Eigentümer', + 'payment_success': 'Bezahlung erfolgreich', + 'payment_failure': 'Bezahlung fehlgeschlagen', + 'invoice_sent': ':count Rechnung versendet', + 'quote_sent': 'Kostenvoranschlag versendet', + 'credit_sent': 'Guthaben gesendet', + 'invoice_viewed': 'Rechnung angesehen', + 'quote_viewed': 'Kostenvoranschlag angesehen', + 'credit_viewed': 'Guthaben angesehen', + 'quote_approved': 'Kostenvoranschlag angenommen', + 'receive_all_notifications': 'Empfange alle Benachrichtigungen', + 'purchase_license': 'Lizenz kaufen', + 'apply_license': 'Lizenz anwenden', + 'cancel_account': 'Konto kündigen', 'cancel_account_message': - 'Avertissement: cette action est irréversible et supprimera votre compte de façon définitive.', - 'delete_company': 'Supprimer l\'entreprise', + 'Warnung: Diese Aktion wird dein Konto unwiderruflich löschen.', + 'delete_company': 'Firma löschen', 'delete_company_message': - 'Avertissement: Cette entreprise sera définitivement supprimée.', - 'enabled_modules': 'Modules activés', - 'converted_quote': 'La soumission a été convertie avec succès', - 'credit_design': 'Design de crédit', - 'includes': 'Inclusions', - 'header': 'En-tête', - 'load_design': 'Charger le design', - 'css_framework': 'Framework CSS', - 'custom_designs': 'Designs personnalisés', + 'Achtung: Dadurch wird Ihre Firma unwiderruflich gelöscht. Es gibt kein Zurück.', + 'enabled_modules': 'Module aktivieren', + 'converted_quote': 'Angebot erfolgreichen konvertiert', + 'credit_design': 'Guthaben Design', + 'includes': 'Beinhaltet', + 'header': 'Kopf', + 'load_design': 'Designvorlage laden', + 'css_framework': 'CSS-Framework', + 'custom_designs': 'Benutzerdefinierte Designs', 'designs': 'Designs', - 'new_design': 'Nouveau design', - 'edit_design': 'Éditer le design', - 'created_design': 'Le modèle a été créé avec succès', - 'updated_design': 'Le modèle a été mis à jour avec succès', - 'archived_design': 'Le modèle a été archivé avec succès', - 'deleted_design': 'Le modèle a été supprimé avec succès', - 'removed_design': 'Le modèle a été retiré avec succès', - 'restored_design': 'Le modèle a été restauré avec succès', - 'archived_designs': 'Les :value modèles ont été archivés avec succès', - 'deleted_designs': 'Les :value modèles ont été supprimés avec succès', - 'restored_designs': 'Les :value modèles ont été restaurés avec succès', - 'proposals': 'Propositions', - 'tickets': 'Billets', - 'recurring_quotes': 'Soumissions récurrentes', - 'recurring_tasks': 'Tâches récurrentes', - 'account_management': 'Gestion du compte', - 'credit_date': 'Date du crédit', - 'credit': 'Crédit', - 'credits': 'Crédits', - 'new_credit': 'Inscrire un crédit', - 'edit_credit': 'Éditer le crédit', - 'created_credit': 'Le crédit a été créé avec succès', - 'updated_credit': 'Le crédit a été mis à jour avec succès', - 'archived_credit': 'Le crédit a été archivé avec succès', - 'deleted_credit': 'Le crédit a été supprimé avec succès', - 'removed_credit': 'Le crédit a été retiré avec succès', - 'restored_credit': 'Le crédit a été restauré avec succès', - 'archived_credits': ':count crédits ont archivés avec succès', - 'deleted_credits': ':count crédits ont été supprimés avec succès', - 'restored_credits': 'Les :value crédits ont été restaurés avec succès', - 'current_version': 'Version courante', - 'latest_version': 'Dernière version', - 'update_now': 'Mettre à jour', + 'new_design': 'Neues Design', + 'edit_design': 'Design bearbeiten', + 'created_design': 'Design erfolgreich erstellt', + 'updated_design': 'Design erfolgreich aktualisiert', + 'archived_design': 'Design erfolgreich archiviert', + 'deleted_design': 'Design erfolgreich gelöscht', + 'removed_design': 'Design erfolgreich entfernt', + 'restored_design': 'Design erfolgreich wiederhergestellt', + 'archived_designs': ':value Designs erfolgreich archiviert', + 'deleted_designs': ':value Designs erfolgreich gelöscht', + 'restored_designs': ':value Designs erfolgreich wiederhergestellt', + 'proposals': 'Vorschläge', + 'tickets': 'Tickets', + 'recurring_quotes': 'Wiederkehrende Angebote', + 'recurring_tasks': 'Wiederkehrende Aufgabe', + 'account_management': 'Kontoverwaltung', + 'credit_date': 'Guthabendatum', + 'credit': 'Gutschrift', + 'credits': 'Guthaben', + 'new_credit': 'Guthaben eingeben', + 'edit_credit': 'Saldo bearbeiten', + 'created_credit': 'Guthaben erfolgreich erstellt', + 'updated_credit': 'Saldo erfolgreich aktualisiert', + 'archived_credit': 'Guthaben erfolgreich archiviert', + 'deleted_credit': 'Guthaben erfolgreich gelöscht', + 'removed_credit': 'Guthaben erfolgreich entfernt', + 'restored_credit': 'Guthaben erfolgreich wiederhergestellt', + 'archived_credits': ':count Guthaben erfolgreich archiviert', + 'deleted_credits': ':count Guthaben erfolgreich gelöscht', + 'restored_credits': ':value Guthaben erfolgreich archiviert', + 'current_version': 'Aktuelle Version', + 'latest_version': 'Neueste Version', + 'update_now': 'Jetzt aktualisieren', 'a_new_version_is_available': - 'Une nouvelle version de l\'application web est disponible', - 'update_available': 'Mise à jour disponible', - 'app_updated': 'La mise à jour a été complétée avec succès', - 'learn_more': 'En savoir plus', - 'integrations': 'Intégrations', - 'tracking_id': 'ID de suivi', - 'slack_webhook_url': 'URL du Webhook Slack', - 'credit_footer': 'Pied de page pour crédit', - 'credit_terms': 'Conditions d\'utilisation pour crédit', - 'new_company': 'Nouvelle entreprise', - 'added_company': 'L\'entreprise a été ajoutée avec succès', - 'company1': 'Entreprise personnalisée 1', - 'company2': 'Entreprise personnalisée 2', - 'company3': 'Entreprise personnalisée 3', - 'company4': 'Entreprise personnalisée 4', - 'product1': 'Produit personnalisé 1', - 'product2': 'Produit personnalisé 2', - 'product3': 'Produit personnalisé 3', - 'product4': 'Produit personnalisé 4', - 'client1': 'Client personnalisé 1', - 'client2': 'Client personnalisé 2', - 'client3': 'Client personnalisé 3', - 'client4': 'Client personnalisé 4', - 'contact1': 'Contact personnalisé 1', - 'contact2': 'Contact personnalisé 2', - 'contact3': 'Contact personnalisé 3', - 'contact4': 'Contact personnalisé 4', - 'task1': 'Tâche personnalisée 1', - 'task2': 'Tâche personnalisée 2', - 'task3': 'Tâche personnalisée 3', - 'task4': 'Tâche personnalisée 4', - 'project1': 'Projet personnalisé 1', - 'project2': 'Projet personnalisé 2', - 'project3': 'Projet personnalisé 3', - 'project4': 'Projet personnalisé 4', - 'expense1': 'Dépense personnalisée 1', - 'expense2': 'Dépense personnalisée 2', - 'expense3': 'Dépense personnalisée 3', - 'expense4': 'Dépense personnalisée 4', - 'vendor1': 'Fournisseur personnalisé 1', - 'vendor2': 'Fournisseur personnalisé 2', - 'vendor3': 'Fournisseur personnalisé 3', - 'vendor4': 'Fournisseur personnalisé 4', - 'invoice1': 'Facture personnalisée 1', - 'invoice2': 'Facture personnalisée 2', - 'invoice3': 'Facture personnalisée 3', - 'invoice4': 'Facture personnalisée 4', - 'payment1': 'Paiement personnalisé 1', - 'payment2': 'Facture personnalisée 2', - 'payment3': 'Facture personnalisée 3', - 'payment4': 'Facture personnalisée 4', - 'surcharge1': 'Surcharge personnalisée 1', - 'surcharge2': 'Surcharge personnalisée 2', - 'surcharge3': 'Surcharge personnalisée 3', - 'surcharge4': 'Surcharge personnalisée 4', - 'group1': 'Groupe personnalisé 1', - 'group2': 'Groupe personnalisé 2', - 'group3': 'Groupe personnalisé 3', - 'group4': 'Groupe personnalisé 4', - 'reset': 'Remise à zéro', - 'number': 'Numéro', - 'export': 'Exporter', - 'chart': 'Graphique', - 'count': 'Compteur', - 'totals': 'Totaux', - 'blank': 'Vide', - 'day': 'Jour', - 'month': 'Mois', - 'year': 'Année', - 'subgroup': 'Sous-groupe', - 'is_active': 'Actif', - 'group_by': 'Grouper par', - 'credit_balance': 'Solde du crédit', - 'contact_last_login': 'Dernière connexion du contact', - 'contact_full_name': 'Nom complet du contact', - 'contact_phone': 'Téléphone du contact', - 'contact_custom_value1': 'Valeur personnalisée du contact 1', - 'contact_custom_value2': 'Valeur personnalisée du contact 2', - 'contact_custom_value3': 'Valeur personnalisée du contact 3', - 'contact_custom_value4': 'Valeur personnalisée du contact 4', - 'shipping_address1': 'Rue de livraison', - 'shipping_address2': 'App. de livraison', - 'shipping_city': 'Ville de livraison', - 'shipping_state': 'Province de livraison', - 'shipping_postal_code': 'Code postal de livraison', - 'shipping_country': 'Pays de livraison', - 'billing_address1': 'Rue de facturation', - 'billing_address2': 'App. de facturation', - 'billing_city': 'Ville de facturation', - 'billing_state': 'Province de facturation', - 'billing_postal_code': 'Code postal de facturation', - 'billing_country': 'Pays de facturation', - 'client_id': 'ID du client', - 'assigned_to': 'Assigné à', - 'created_by': 'Créé par :name', - 'assigned_to_id': 'Assigné à ID', - 'created_by_id': 'Créé par ID', - 'add_column': 'Ajouter colonne', - 'edit_columns': 'Éditer colonne', - 'columns': 'Colonnes', - 'aging': 'Impayés', - 'profit_and_loss': 'Profit et perte', - 'reports': 'Rapports', - 'report': 'Rapport', - 'add_company': 'Ajouter une entreprise', - 'unpaid_invoice': 'Facture impayée', - 'paid_invoice': 'Facture payée', - 'unapproved_quote': 'Soumission non approuvée', - 'help': 'Aide', - 'refund': 'Rembousement', - 'refund_date': 'Date de remboursement', - 'filtered_by': 'Filtrée par', - 'contact_email': 'Courriel du contact', - 'multiselect': 'Sélection multiple', - 'entity_state': 'Statut', - 'verify_password': 'Vérifier le mot de passe', - 'applied': 'Appliqué', - 'include_recent_errors': - 'Inclut les erreurs récentes des journaux système', - 'your_message_has_been_received': - 'Nous avons reçu votre message et vous répondrons rapidement.', - 'message': 'Message', - 'from': 'De', - 'show_product_details': 'Afficher les détails du produit', - 'show_product_details_help': - 'Veuillez inclure la description et le coût dans la liste déroulante du produit', - 'pdf_min_requirements': 'Le moteur de rendu PDF nécessite :version', - 'adjust_fee_percent': 'Ajuster le pourcentage de frais', - 'adjust_fee_percent_help': 'Ajuster le frais de pourcentage au compte', - 'configure_settings': 'Configurer les paramètres', - 'support_forum': 'Forum de support', - 'about': 'À propos', - 'documentation': 'Documentation', - 'contact_us': 'Nous joindre', - 'subtotal': 'Sous-total', - 'line_total': 'Total', - 'item': 'Article', - 'credit_email': 'Courriel pour le crédit', - 'iframe_url': 'Site web', - 'domain_url': 'URL de domaine', - 'password_is_too_short': 'Le mot de passe est trop court', - 'password_is_too_easy': - 'Le mot de passe doit contenir une majuscule et un nombre', - 'client_portal_tasks': 'Tâches du portail client', - 'client_portal_dashboard': 'Tableau de bord du portail client', - 'please_enter_a_value': 'Veuillez saisir une valeur', - 'deleted_logo': 'Le logo a été supprimé avec succès', - 'yes': 'Oui', - 'no': 'Non', - 'generate_number': 'Générer un nombre', - 'when_saved': 'Lors de la sauvegarde', - 'when_sent': 'Lors de l\'envoi', - 'select_company': 'Sélectionnez une entreprise', - 'float': 'Flottant', - 'collapse': 'Réduire', - 'show_or_hide': 'Afficher / masquer', - 'menu_sidebar': 'Menu latéral', - 'history_sidebar': 'Historique latéral', - 'tablet': 'Tablette', - 'mobile': 'Mobile', - 'desktop': 'Fixe', - 'layout': 'Affichage', - 'view': 'Visualiser', - 'module': 'Module', - 'first_custom': 'Premier personnalisé', - 'second_custom': 'Second personnalisé', - 'third_custom': 'Troisième latéral', - 'show_cost': 'Afficher le coût', - 'show_product_cost': 'Afficher le montant du produit', - 'show_cost_help': - 'Afficher un champ de coût du produit pour suivre le profit', - 'show_product_quantity': 'Afficher la quantité de produit', - 'show_product_quantity_help': - 'Afficher un champ Quantité de produit. 1 par défaut.', - 'show_invoice_quantity': 'Afficher la quantité de facture', + 'Eine neue Version der Webapp ist verfügbar.', + 'update_available': 'Update verfügbar', + 'app_updated': 'Update erfolgreich', + 'learn_more': 'Mehr erfahren', + 'integrations': 'Integrationen', + 'tracking_id': 'Sendungsnummer', + 'slack_webhook_url': 'Slack-Webhook-URL', + 'credit_footer': 'Guthaben-Fußzeile', + 'credit_terms': 'Gutschrift Bedingungen', + 'new_company': 'Neues Konto', + 'added_company': 'Erfolgreich Firma hinzugefügt', + 'company1': 'Benutzerdefinierte Firma 1', + 'company2': 'Benutzerdefinierte Firma 2', + 'company3': 'Benutzerdefinierte Firma 3', + 'company4': 'Benutzerdefinierte Firma 4', + 'product1': 'Benutzerdefiniertes Produkt 1', + 'product2': 'Benutzerdefiniertes Produkt 2', + 'product3': 'Benutzerdefiniertes Produkt 3', + 'product4': 'Benutzerdefiniertes Produkt 4', + 'client1': 'Benutzerdefinierter Kunde 1', + 'client2': 'Benutzerdefinierter Kunde 2', + 'client3': 'Benutzerdefinierter Kunde 3', + 'client4': 'Benutzerdefinierter Kunde 4', + 'contact1': 'Benutzerdefinierter Kontakt 1', + 'contact2': 'Benutzerdefinierter Kontakt 2', + 'contact3': 'Benutzerdefinierter Kontakt 3', + 'contact4': 'Benutzerdefinierter Kontakt 4', + 'task1': 'Benutzerdefinierte Aufgabe 1', + 'task2': 'Benutzerdefinierte Aufgabe 2', + 'task3': 'Benutzerdefinierte Aufgabe 3', + 'task4': 'Benutzerdefinierte Aufgabe 4', + 'project1': 'Benutzerdefiniertes Projekt 1', + 'project2': 'Benutzerdefiniertes Projekt 2', + 'project3': 'Benutzerdefiniertes Projekt 3', + 'project4': 'Benutzerdefiniertes Projekt 4', + 'expense1': 'Benutzerdefinierte Ausgabe 1', + 'expense2': 'Benutzerdefinierte Ausgabe 2', + 'expense3': 'Benutzerdefinierte Ausgabe 3', + 'expense4': 'Benutzerdefinierte Ausgabe 4', + 'vendor1': 'Benutzerdefinierter Lieferant 1', + 'vendor2': 'Benutzerdefinierter Lieferant 2', + 'vendor3': 'Benutzerdefinierter Lieferant 3', + 'vendor4': 'Benutzerdefinierter Lieferant 4', + 'invoice1': 'Benutzerdefinierte Rechnung 1', + 'invoice2': 'Benutzerdefinierte Rechnung 2', + 'invoice3': 'Benutzerdefinierte Rechnung 3', + 'invoice4': 'Benutzerdefinierte Rechnung 4', + 'payment1': 'Benutzerdefinierte Zahlung 1', + 'payment2': 'Benutzerdefinierte Zahlung 2', + 'payment3': 'Benutzerdefinierte Zahlung 3', + 'payment4': 'Benutzerdefinierte Zahlung 4', + 'surcharge1': 'Benutzerdefinierter Zuschlag 1', + 'surcharge2': 'Benutzerdefinierter Zuschlag 2', + 'surcharge3': 'Benutzerdefinierter Zuschlag 3', + 'surcharge4': 'Benutzerdefinierter Zuschlag 4', + 'group1': 'Benutzerdefinierte Gruppe 1', + 'group2': 'Benutzerdefinierte Gruppe 2', + 'group3': 'Benutzerdefinierte Gruppe 3', + 'group4': 'Benutzerdefinierte Gruppe 4', + 'reset': 'Zurücksetzen', + 'number': 'Nummer', + 'export': 'Exportieren', + 'chart': 'Diagramm', + 'count': 'Anzahl', + 'totals': 'Summe', + 'blank': 'Leer', + 'day': 'Tag', + 'month': 'Monat', + 'year': 'Jahr', + 'subgroup': 'Untergruppe', + 'is_active': 'Ist aktiv', + 'group_by': 'Gruppieren nach', + 'credit_balance': 'Guthabenstand', + 'contact_last_login': 'Letzter Login des Kontakts', + 'contact_full_name': 'Vollständiger Name des Kontakts', + 'contact_phone': 'Telefonnummer des Kontakts', + 'contact_custom_value1': 'Kontakt Benutzerdefinierter Wert 1', + 'contact_custom_value2': 'Kontakt Benutzerdefinierter Wert 2', + 'contact_custom_value3': 'Kontakt Benutzerdefinierter Wert 3', + 'contact_custom_value4': 'Kontakt Benutzerdefinierter Wert 4', + 'shipping_address1': 'Strasse Versandanschrift', + 'shipping_address2': 'Versand Adresszusatz', + 'shipping_city': 'Stadt Versandanschrift', + 'shipping_state': 'Versand Bundesland', + 'shipping_postal_code': 'Postleitzahl Versandanschrift', + 'shipping_country': 'Lieferungsland', + 'billing_address1': 'Strasse Rechnungsanschrift', + 'billing_address2': 'Rechnung Adresszusatz', + 'billing_city': 'Stadt Rechnungsanschrift', + 'billing_state': 'Rechnung Bundesland', + 'billing_postal_code': 'Postleitzahl Rechnungsanschrift', + 'billing_country': 'Rechnungsland', + 'client_id': 'Kundennummer', + 'assigned_to': 'Zugewiesen an', + 'created_by': 'Erstellt von :name', + 'assigned_to_id': 'Zugewiesen zur ID', + 'created_by_id': 'Erstellt von ID', + 'add_column': 'Spalte hinzufügen', + 'edit_columns': 'Spalten bearbeiten', + 'columns': 'Spalten', + 'aging': 'Versendet', + 'profit_and_loss': 'Gewinn und Verlust', + 'reports': 'Berichte', + 'report': 'Bericht', + 'add_company': 'Konto hinzufügen', + 'unpaid_invoice': 'Unbezahlte Rechnung', + 'paid_invoice': 'Bezahlte Rechnung', + 'unapproved_quote': 'Nicht genehmigtes Angebot', + 'help': 'Hilfe', + 'refund': 'Erstattung', + 'refund_date': 'Erstattungsdatum', + 'filtered_by': 'Gefiltert nach', + 'contact_email': 'E-Mail-Adresse des Kontakts', + 'multiselect': 'Mehrfachauswahl', + 'entity_state': 'Status', + 'verify_password': 'Passwort überprüfen', + 'applied': 'Angewendet', + 'include_recent_errors': 'Kürzliche Fehler aus den Logs einfügen', + 'your_message_has_been_received': + 'Wir haben ihre Nachricht erhalten und bemühen uns schnellstmöglich zu antworten.', + 'message': 'Nachricht', + 'from': 'Von', + 'show_product_details': 'Produktdetails anzeigen', + 'show_product_details_help': + 'Beschreibung und Kosten in die Produkt-Dropdown-Liste einfügen', + 'pdf_min_requirements': 'Der PDF-Renderer benötigt :version', + 'adjust_fee_percent': 'Anpassungszuschlag Prozent', + 'adjust_fee_percent_help': 'Gebühren Prozentsatz an das Konto anpassen', + 'configure_settings': 'Einstellungen bearbeiten', + 'support_forum': 'Support-Forum', + 'about': 'Über', + 'documentation': 'Dokumentation', + 'contact_us': 'Kontaktieren Sie uns', + 'subtotal': 'Zwischensumme', + 'line_total': 'Summe', + 'item': 'Artikel', + 'credit_email': 'Guthaben E-Mail', + 'iframe_url': 'Webseite', + 'domain_url': 'Domain-URL', + 'password_is_too_short': 'Das Passwort ist zu kurz', + 'password_is_too_easy': + 'Das Passwort muss einen Großbuchstaben und eine Nummer enthalten', + 'client_portal_tasks': 'Kundenportal-Aufgaben', + 'client_portal_dashboard': 'Kundenportal-Übersicht', + 'please_enter_a_value': 'Bitte einen Wert eingeben', + 'deleted_logo': 'Logo erfolgreich gelöscht', + 'yes': 'Ja', + 'no': 'Nein', + 'generate_number': 'Nummer generieren', + 'when_saved': 'Wenn gespeichert', + 'when_sent': 'Wenn gesendet', + 'select_company': 'Firma auswählen', + 'float': 'Schwebend', + 'collapse': 'Einklappen', + 'show_or_hide': 'Anzeigen/verstecken', + 'menu_sidebar': 'Menüleiste', + 'history_sidebar': 'Verlaufs-Seitenleiste', + 'tablet': 'Tablet', + 'mobile': 'Mobil', + 'desktop': 'Desktop', + 'layout': 'Layout', + 'view': 'Ansehen', + 'module': 'Modul', + 'first_custom': 'Erste benutzerdefinierte', + 'second_custom': 'Zweite benutzerdefinierte', + 'third_custom': 'Dritte benutzerdefinierte', + 'show_cost': 'Kosten anzeigen', + 'show_product_cost': 'Produktkosten anzeigen', + 'show_cost_help': + 'Feld für Einkaufspreis anzeigen, um Gewinnspanne zu verfolgen', + 'show_product_quantity': 'Produktanzahl anzeigen', + 'show_product_quantity_help': + 'Zeigen ein Mengenangabe Feld, sonst den Standardwert 1', + 'show_invoice_quantity': 'Rechnungsanzahl anzeigen', 'show_invoice_quantity_help': - 'Afficher un champ Quantité d\'article par ligne. 1 par défaut.', - 'show_product_discount': 'Afficher le rabais de produit', - 'show_product_discount_help': - 'Afficher un champ rabais de ligne d\'article', - 'default_quantity': 'Quantité par défaut', + 'Zeige ein Rechnungsposten Anzahlfeld, sonst den Standardwert 1', + 'show_product_discount': 'Produktermäßigung anzeigen', + 'show_product_discount_help': 'Zeige Rabattfeld in Belegposition', + 'default_quantity': 'Standardanzahl', 'default_quantity_help': - 'Définit automatiquement la quantité d\'article par ligne à 1.', - 'one_tax_rate': 'Un taux de taxe', - 'two_tax_rates': 'Deux taux de taxe', - 'three_tax_rates': 'Trois taux de taxes', - 'default_tax_rate': 'Taux de taxe par défaut', - 'user': 'Utilisateur', - 'invoice_tax': 'Taxe de facture', - 'line_item_tax': 'Taxe d\'article par ligne', - 'inclusive_taxes': 'Taxes incluses', - 'invoice_tax_rates': 'Taux de taxe de facture', - 'item_tax_rates': 'Taux de taxe par article', - 'no_client_selected': 'Veuillez sélectionner un client', - 'configure_rates': 'Configuration des taux', - 'configure_gateways': 'Configurer les passerelles', - 'tax_settings': 'Paramètres des taxes', - 'tax_settings_rates': 'Taux de taxe', - 'accent_color': 'Couleur de mise en évidence', - 'switch': 'Changer', - 'comma_sparated_list': 'Liste séparée par virgule', - 'options': 'Options', - 'single_line_text': 'Ligne de texte simple', - 'multi_line_text': 'Multiligne de texte', - 'dropdown': 'Liste déroulante', - 'field_type': 'Type de champ', + 'Setze den Rechnungsposten automatisch auf Anzahl 1', + 'one_tax_rate': 'Ein Steuersatz', + 'two_tax_rates': 'Zwei Steuersätze', + 'three_tax_rates': 'Drei Steuersätze', + 'default_tax_rate': 'Standard-Steuersatz', + 'user': 'Benutzer', + 'invoice_tax': 'Rechnungssteuer', + 'line_item_tax': 'Belegposition Steuer', + 'inclusive_taxes': 'Inklusive Steuern', + 'invoice_tax_rates': 'Rechnungs-Steuersätze', + 'item_tax_rates': 'Element-Steuersätze', + 'no_client_selected': 'Bitte wählen Sie einen Kunden', + 'configure_rates': 'Steuersätze bearbeiten', + 'configure_gateways': 'Zahlungsanbieter bearbeiten', + 'tax_settings': 'Steuer-Einstellungen', + 'tax_settings_rates': 'Steuersätze', + 'accent_color': 'Akzent-Farbe', + 'switch': 'Switch', + 'comma_sparated_list': 'Komma-separierte Liste', + 'options': 'Optionen', + 'single_line_text': 'Einzeiliger Text', + 'multi_line_text': 'Mehrzeiliger Text', + 'dropdown': 'Dropdown', + 'field_type': 'Feldtyp', 'recover_password_email_sent': - 'Un courriel a été envoyé pour la récupération du mot de passe', - 'submit': 'Envoyer', - 'recover_password': 'Récupérez votre mot de passe', - 'late_fees': 'Frais de retard', - 'credit_number': 'Numéro de crédit', - 'payment_number': 'Numéro de paiement', - 'late_fee_amount': 'Frais de retard', - 'late_fee_percent': 'Pourcentage de frais de retard', - 'schedule': 'Calendrier', - 'before_due_date': 'Avant l\'échéance', - 'after_due_date': 'Après l\'échéance', - 'after_invoice_date': 'Après la date de facturation', - 'days': 'Jours', - 'invoice_email': 'Courriel de facturation', - 'payment_email': 'Courriel de paiement', - 'partial_payment': 'Paiement partiel', - 'payment_partial': 'Paiement partiel', - 'partial_payment_email': 'Courriel du paiement partiel', - 'quote_email': 'Courriel de soumission', - 'endless_reminder': 'Rappel perpétuel', - 'filtered_by_user': 'Filtré par utilisateur', - 'administrator': 'Administrateur', + 'Eine Passwort-Wiederherstellungs-Mail wurde versendet', + 'submit': 'Abschicken', + 'recover_password': 'Passwort wiederherstellen', + 'late_fees': 'Verspätungszuschläge', + 'credit_number': 'Gutschriftnummer', + 'payment_number': 'Zahlungsnummer', + 'late_fee_amount': 'Höhe des Verspätungszuschlags', + 'late_fee_percent': 'Verspätungszuschlag Prozent', + 'schedule': 'Zeitgesteuert', + 'before_due_date': 'Vor dem Fälligkeitsdatum', + 'after_due_date': 'Nach dem Fälligkeitsdatum', + 'after_invoice_date': 'Nach dem Rechnungsdatum', + 'days': 'Tage', + 'invoice_email': 'Rechnungsmail', + 'payment_email': 'Zahlungsmail', + 'partial_payment': 'Teilzahlung', + 'payment_partial': 'Teilzahlung', + 'partial_payment_email': 'Teilzahlungsmail', + 'quote_email': 'Angebotsmail', + 'endless_reminder': 'Endlose Erinnnerung', + 'filtered_by_user': 'Gefiltert nach Benutzer', + 'administrator': 'Administrator', 'administrator_help': - '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', - 'edit_user': 'Éditer l\'utilisateur', - 'created_user': 'L\'utilisateur a été créé avec succès', - 'updated_user': 'L\'utilisateur a été mis à jour avec succès', - 'archived_user': 'L\'utilisateur a été archivé avec succès', - 'deleted_user': 'L\'utilisateur a été supprimé avec succès', - 'removed_user': 'L\'utilisateur a été retiré avec succès', - 'restored_user': 'L\'utilisateur a été restauré avec succès', - 'archived_users': 'Les :value utilisateurs ont été archivés avec succès', - 'deleted_users': 'Les :value utilisateurs ont été supprimés avec succès', - 'removed_users': 'Les :value utilisateurs ont été retirés avec succès', - 'restored_users': 'Les :value utilisateurs ont été restaurés avec succès', - 'general_settings': 'Paramètres généraux', - 'invoice_options': 'Options de facture', - 'hide_paid_to_date': 'Masquer \"Payé à ce jour\"', + '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', + 'edit_user': 'Benutzer bearbeiten', + 'created_user': 'Benutzer erfolgreich erstellt', + 'updated_user': 'Benutzer erfolgreich aktualisiert', + 'archived_user': 'Benutzer erfolgreich archiviert', + 'deleted_user': 'Benutzer erfolgreich gelöscht', + 'removed_user': 'Benutzer erfolgreich entfernt', + 'restored_user': 'Benutzer erfolgreich wiederhergestellt', + 'archived_users': ':value Benutzer erfolgreich archiviert', + 'deleted_users': ':value Benutzer erfolgreich gelöscht', + 'removed_users': ':value Benutzer erfolgreich entfernt', + 'restored_users': ':value Benutzer erfolgreich wiederhergestellt', + 'general_settings': 'Allgemeine Einstellungen', + 'invoice_options': 'Rechnungsoptionen', + 'hide_paid_to_date': '\"Bereits gezahlt\" ausblenden', 'hide_paid_to_date_help': - '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', + '\"Bereits gezahlt\" nur anzeigen, wenn eine Zahlung eingegangen ist.', + 'invoice_embed_documents': 'Dokumente einbetten', 'invoice_embed_documents_help': - 'Inclure les images jointes dans la facture.', - 'all_pages_header': 'Afficher l\'en-tête sur', - 'all_pages_footer': 'Afficher le pied de page sur', - 'first_page': 'première page', - 'all_pages': 'toutes les pages', - 'last_page': 'dernière page', - 'primary_font': 'Fonte principale', - 'secondary_font': 'Fonte secondaire', - 'primary_color': 'Couleur principale', - 'secondary_color': 'Couleur secondaire', - 'page_size': 'Taille de page', - 'font_size': 'Taille de police', - 'quote_design': 'Design de soumission', - 'invoice_fields': 'Champs de facture', - 'product_fields': 'Champs produit', - 'invoice_terms': 'Conditions de facturation', - 'invoice_footer': 'Pied de facture', - 'quote_terms': 'Conditions de soumission', - 'quote_footer': 'Pied de soumission par défaut', - 'auto_email_invoice': 'Envoi automatique', + 'Bildanhänge zu den Rechnungen hinzufügen.', + 'all_pages_header': 'Zeige Kopf auf', + 'all_pages_footer': 'Zeige Fußzeilen auf', + 'first_page': 'Erste Seite', + 'all_pages': 'Alle Seiten', + 'last_page': 'Letzte Seite', + 'primary_font': 'Primäre Schriftart', + 'secondary_font': 'Sekundäre Schriftart', + 'primary_color': 'Primäre Farbe', + 'secondary_color': 'Sekundäre Farbe', + 'page_size': 'Seitengröße', + 'font_size': 'Schriftgröße', + 'quote_design': 'Angebots-Layout', + 'invoice_fields': 'Rechnungsfelder', + 'product_fields': 'Produktfelder', + 'invoice_terms': 'Rechnungsbedingungen', + 'invoice_footer': 'Rechnungsfußzeile', + 'quote_terms': 'Angebotsbedingungen', + 'quote_footer': 'Angebots-Fußzeile', + 'auto_email_invoice': 'Automatische Email', 'auto_email_invoice_help': - 'Envoi automatiquement les factures récurrentes lorsqu\'elles sont créées.', - 'auto_archive_invoice': 'Autoarchivage', + 'Senden Sie wiederkehrende Rechnungen automatisch per E-Mail, wenn sie erstellt werden.', + 'auto_archive_invoice': 'Automatisches Archiv', 'auto_archive_invoice_help': - 'Archive automatiquement les soumissions lorsqu\'elles sont converties.', - 'auto_archive_quote': 'Autoarchivage', + 'Archivieren Sie Rechnungen automatisch, wenn sie bezahlt sind.', + 'auto_archive_quote': 'Automatisches Archiv', 'auto_archive_quote_help': - 'Archive automatiquement les soumissions lorsqu\'elles sont converties.', - 'auto_convert_quote': 'Autoconversion', + 'Archivieren Sie Angebote automatisch, wenn sie konvertiert werden.', + 'auto_convert_quote': 'Automatisch konvertieren', 'auto_convert_quote_help': - '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', - 'freq_two_weeks': 'Aux deux semaines', - 'freq_four_weeks': 'Aux quatre semaines', - 'freq_monthly': 'Mensuelle', - 'freq_two_months': 'Deux mois', - 'freq_three_months': 'Trimestrielle', - 'freq_four_months': '4 mois', - 'freq_six_months': 'Semestrielle', - 'freq_annually': 'Annuelle', - 'freq_two_years': 'Deux ans', - 'freq_three_years': 'Trois ans', - 'never': 'Jamais', - 'company': 'Entreprise', - 'generated_numbers': 'Nombres générés', - 'charge_taxes': 'Facturer les taxes', - 'next_reset': 'Prochaine remise à zéro', - 'reset_counter': 'Remettre à zéro le compteur', - 'recurring_prefix': 'Préfixe récurrent', - 'number_padding': 'Marge interne du nombre', - 'general': 'Général', - 'surcharge_field': 'Champ Surcharge', - 'company_field': 'Champ Entreprise', - 'company_value': 'Valeur de compagnie', - 'credit_field': 'Champ Crédit', - 'invoice_field': 'Champ Facture', - 'invoice_surcharge': 'Surcharge de facture', - 'client_field': 'Champ Client', - 'product_field': 'Champ Produit', - 'payment_field': 'Champ Paiement', - 'contact_field': 'Champ Contact', - 'vendor_field': 'Champ Fournisseur', - 'expense_field': 'Champ Dépense', - 'project_field': 'Champ Projet', - 'task_field': 'Champ Tâche', - 'group_field': 'Champ Groupe', - 'number_counter': 'Compteur de nombre', - 'prefix': 'Préfixe', - 'number_pattern': 'Modèle de nombre', - 'messages': 'Messages', - 'custom_css': 'CSS personnalisé', - 'custom_javascript': 'JavaScript personnalisé', - 'signature_on_pdf': 'Afficher sur le PDF', + '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', + 'freq_two_weeks': 'Zweiwöchentlich', + 'freq_four_weeks': 'Vierwöchentlich', + 'freq_monthly': 'Monatlich', + 'freq_two_months': 'Zwei Monate', + 'freq_three_months': 'Dreimonatlich', + 'freq_four_months': 'Vier Monate', + 'freq_six_months': 'Halbjährlich', + 'freq_annually': 'Jährlich', + 'freq_two_years': 'Zwei Jahre', + 'freq_three_years': 'Drei Jahre', + 'never': 'Niemals', + 'company': 'Firma', + 'generated_numbers': 'Generierte Nummern', + 'charge_taxes': 'Steuern erheben', + 'next_reset': 'Nächster Reset', + 'reset_counter': 'Zähler-Reset', + 'recurring_prefix': 'Wiederkehrender Präfix', + 'number_padding': 'Nummernabstand', + 'general': 'Allgemein', + 'surcharge_field': 'Zuschlagsfeld', + 'company_field': 'Firmenfeld', + 'company_value': 'Firmenwert', + 'credit_field': 'Kredit-Feld', + 'invoice_field': 'Rechnungsfeld', + 'invoice_surcharge': 'Rechnungsgebühr', + 'client_field': 'Kundenfeld', + 'product_field': 'Produktfeld', + 'payment_field': 'Zahlungs-Feld', + 'contact_field': 'Kontaktfeld', + 'vendor_field': 'Lieferantenfeld', + 'expense_field': 'Ausgabenfeld', + 'project_field': 'Projektfeld', + 'task_field': 'Aufgabenfeld', + 'group_field': 'Gruppen-Feld', + 'number_counter': 'Nummernzähler', + 'prefix': 'Präfix', + 'number_pattern': 'Nummernschema', + 'messages': 'Nachrichten', + 'custom_css': 'Benutzerdefiniertes CSS', + 'custom_javascript': 'Benutzerdefiniertes JavaScript', + 'signature_on_pdf': 'Auf PDF anzeigen', 'signature_on_pdf_help': - 'Afficher la signature du client sur la facture/soumission PDF.', - 'show_accept_invoice_terms': - 'Case à cocher pour les conditions de facturation', + 'Unterschrift des Kunden auf dem Angebots/Rechnungs PDF anzeigen.', + 'show_accept_invoice_terms': 'Checkbox für Rechnungsbedingungen', 'show_accept_invoice_terms_help': - 'Requiert du client qu\'il confirme et accepte les conditions de facturation', - 'show_accept_quote_terms': - 'Case à cocher pour les conditions de soumssion', + 'Erfordern Sie die Bestätigung der Rechnungsbedingungen durch den Kunden.', + 'show_accept_quote_terms': 'Checkbox für Angebotsbedingungen', 'show_accept_quote_terms_help': - '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', + '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.', + 'require_quote_signature': 'Angebotsunterschrift', + 'enable_portal_password': 'Rechnungen mit Passwort schützen', '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.', - 'authorization': 'Autorisation', - 'subdomain': 'sous-domaine', - 'domain': 'Domaine', - 'portal_mode': 'Mode portail', - 'email_signature': 'Cordialement,', + '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.', + 'authorization': 'Genehmigung', + 'subdomain': 'Subdomäne', + 'domain': 'Domäne', + 'portal_mode': 'Portalmodus', + 'email_signature': 'Mit freundlichen Grüßen,', 'enable_email_markup_help': - 'rendez le paiement plus facile à vos client en ajoutant à vos courriel, le marquage de schema.org.', - 'plain': 'Ordinaire', - 'light': 'Clair', - 'dark': 'Foncé', - 'email_design': 'Modèle de courriel', - 'attach_pdf': 'Joindre un PDF', - 'attach_documents': 'Joindre un document', - 'attach_ubl': 'Joindre UBL', - 'email_style': 'Style de courriel', - 'enable_email_markup': 'Autoriser le marquage', - 'reply_to_email': 'Courriel de réponse', - 'reply_to_name': 'Nom de Répondre À', - 'bcc_email': 'Courriel CCI', - 'processed': 'Traité', - 'credit_card': 'Carte de crédit', - 'bank_transfer': 'Virement bancaire', - 'priority': 'Priorité', - 'fee_amount': 'Montant des frais', - 'fee_percent': 'Pourcentage des frais', - 'fee_cap': 'Limite des frais', - 'limits_and_fees': 'Limites / frais', - 'enable_min': 'Activer min', - 'enable_max': 'Activer max', + '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', + 'email_design': 'E-Mail-Design', + 'attach_pdf': 'PDF anhängen', + 'attach_documents': 'Dokumente anhängen', + 'attach_ubl': 'UBL anhängen', + 'email_style': 'E-Mail-Stil', + 'enable_email_markup': 'Markup erlauben', + 'reply_to_email': 'Antwort-E-Mail-Adresse', + 'reply_to_name': 'Name der Antwortadresse', + 'bcc_email': 'BCC E-Mail', + 'processed': 'Verarbeitet', + 'credit_card': 'Kreditkarte', + 'bank_transfer': 'Überweisung', + 'priority': 'Priorität', + 'fee_amount': 'Zuschlag Betrag', + 'fee_percent': 'Zuschlag Prozent', + 'fee_cap': 'Gebührenobergrenze', + 'limits_and_fees': 'Grenzwerte/Gebühren', + 'enable_min': 'Min aktivieren', + 'enable_max': 'Max aktivieren', 'min_limit': 'Min: :min', 'max_limit': 'Max: :max', 'min': 'Min', 'max': 'Max', - 'accepted_card_logos': 'Logos des cartes acceptées', - 'credentials': 'Identifiants', - 'update_address': 'Mise à jour de l\'adresse', + 'accepted_card_logos': 'Logos der akzeptierten Kreditkarten', + 'credentials': 'Zugangsdaten', + 'update_address': 'Adresse aktualisieren', 'update_address_help': - 'Met à jour l\'adresse du client avec les informations fournies', - 'rate': 'Taux', - 'tax_rate': 'Taux de taxe', - 'new_tax_rate': 'Nouveau taux de taxe', - 'edit_tax_rate': 'Éditer le taux de taxe', - 'created_tax_rate': 'Le taux de taxe a été créé avec succès', - 'updated_tax_rate': 'Le taux de taxe a été mis à jour avec succès', - 'archived_tax_rate': 'Le taux de taxe a été archivé avec succès', - 'deleted_tax_rate': 'Le taux de taxe a été supprimé avec succès', - 'restored_tax_rate': 'Le taux de taxe a été restauré avec succès', - 'archived_tax_rates': - 'Les :value taux de taxes ont été archivés avec succès', - 'deleted_tax_rates': - 'Les :value taux de taxes ont été supprimés avec succès', - 'restored_tax_rates': - 'Les :value taux de taxes ont été restaurés avec succès', - 'fill_products': 'Remplissage automatique des produits', + 'Kundenadresse mit den gemachten Angaben aktualisieren', + 'rate': 'Satz', + 'tax_rate': 'Steuersatz', + 'new_tax_rate': 'Neuer Steuersatz', + 'edit_tax_rate': 'Steuersatz bearbeiten', + 'created_tax_rate': 'Steuersatz erstellt', + 'updated_tax_rate': 'Steuersatz aktualisiert', + 'archived_tax_rate': 'Steuersatz archiviert', + 'deleted_tax_rate': 'Steuersatz erfolgreich gelöscht', + 'restored_tax_rate': 'Steuersatz erfolgreich wiederhergestellt', + 'archived_tax_rates': ':value Steuersätze erfolgreich archiviert', + 'deleted_tax_rates': ':value Steuersätze erfolgreich gelöscht', + 'restored_tax_rates': ':value Steuersätze erfolgreich wiederhergestellt', + 'fill_products': 'Produkte automatisch ausfüllen', 'fill_products_help': - 'La sélection d\'un produit entrainera la mise à jour de la description et du prix', - 'update_products': 'Mise à jour automatique des produits', + 'Beim Auswählen eines Produktes werden automatisch Beschreibung und Kosten ausgefüllt', + 'update_products': 'Produkte automatisch aktualisieren', 'update_products_help': - 'La mise à jour d\'une facture entraîne la mise à jour des produits', - 'convert_products': 'Convertir les produits', + 'Beim Aktualisieren einer Rechnung werden die Produkte automatisch aktualisiert', + 'convert_products': 'Produkte konvertieren', 'convert_products_help': - 'Convertir automatiquement le prix des produits dans la devise du client', - 'fees': 'Frais', - 'limits': 'Limites', - 'provider': 'Fournisseur', - 'company_gateway': 'Passerelle de paiement', - 'company_gateways': 'Passerelles de paiement', - 'new_company_gateway': 'Nouvelle passerelle', - 'edit_company_gateway': 'Éditer la passerelle', - 'created_company_gateway': 'La passerelle a été créée avec succès', - 'updated_company_gateway': 'La passerelle a été mise à jour avec succès', - 'archived_company_gateway': 'La passerelle a été archivée avec succès', - 'deleted_company_gateway': 'La passerelle a été supprimée avec succès', - 'restored_company_gateway': 'La passerelle a été restaurée avec succès', + 'Produktpreise automatisch in die Währung des Kunden konvertieren', + 'fees': 'Gebühren', + 'limits': 'Grenzwerte', + 'provider': 'Anbieter', + 'company_gateway': 'Zahlungs-Gateway', + 'company_gateways': 'Zahlungs-Gateways', + 'new_company_gateway': 'Neues Gateway', + 'edit_company_gateway': 'Gateway bearbeiten', + 'created_company_gateway': 'Gateway erfolgreich erstellt', + 'updated_company_gateway': 'Gateway erfolgreich aktualisiert', + 'archived_company_gateway': 'Gateway erfolgreich archiviert', + 'deleted_company_gateway': 'Gateway erfolgreich gelöscht', + 'restored_company_gateway': 'Gateway erfolgreich wiederhergestellt', 'archived_company_gateways': - 'Les :value passerelles ont été archivées avec succès', + ':value Zahlungsanbieter erfolgreich archiviert', 'deleted_company_gateways': - 'Les :value passerelles ont été supprimées avec succès', + ':value Zahlungsanbieter erfolgreich gelöscht', 'restored_company_gateways': - 'Les :value passerelles ont été restaurées avec succès', - 'continue_editing': 'Continuez l\'édition', - 'discard_changes': 'Annuler les changements', - 'default_value': 'Valeur par défaut', - 'disabled': 'Désactivé', - 'currency_format': 'Format de devise', - 'first_day_of_the_week': 'Premier jour de la semaine', - 'first_month_of_the_year': 'Premier mois de l\'année', - 'sunday': 'Dimanche', - 'monday': 'Lundi', - 'tuesday': 'Mardi', - 'wednesday': 'Mercredi', - 'thursday': 'Jeudi', - 'friday': 'Vendredi', - 'saturday': 'Samedi', - 'january': 'Janvier', - 'february': 'Février', - 'march': 'Mars', - 'april': 'Avril', + ':value Zahlungsanbieter erfolgreich wiederhergestellt', + 'continue_editing': 'Weiterbearbeiten', + 'discard_changes': 'Änderungen verwerfen', + 'default_value': 'Standardwert', + 'disabled': 'Deaktiviert', + 'currency_format': 'Währungsformat', + 'first_day_of_the_week': 'Erster Tag der Woche', + 'first_month_of_the_year': 'Erster Monat des Jahres', + 'sunday': 'Sonntag', + 'monday': 'Montag', + 'tuesday': 'Dienstag', + 'wednesday': 'Mittwoch', + 'thursday': 'Donnerstag', + 'friday': 'Freitag', + 'saturday': 'Samstag', + 'january': 'Januar', + 'february': 'Februar', + 'march': 'März', + 'april': 'April', 'may': 'Mai', - 'june': 'Juin', - 'july': 'Juillet', - 'august': 'Août', - 'september': 'Septembre', - 'october': 'Octobre', - 'november': 'Novembre', - 'december': 'Décembre', - 'symbol': 'Symbole', + 'june': 'Juni', + 'july': 'Juli', + 'august': 'August', + 'september': 'September', + 'october': 'Oktober', + 'november': 'November', + 'december': 'Dezember', + 'symbol': 'Symbol', 'ocde': 'Code', - 'date_format': 'Format de date', - 'datetime_format': 'Format date/heure', - 'military_time': 'Format d\'heure 24 h', - 'military_time_help': 'Affichage 24h', - 'send_reminders': 'Envoyer des rappels', - 'timezone': 'Fuseau horaire', - 'filtered_by_project': 'Filtrer par projet', - 'filtered_by_group': 'Filtrer par groupe', - 'filtered_by_invoice': 'Filtrer par facture', - 'filtered_by_client': 'Filtrer par client', - 'filtered_by_vendor': 'Filtrer par fournisseur', - 'group_settings': 'Paramètres des groupes', - 'group': 'Groupe', - 'groups': 'Groupes', - 'new_group': 'Nouveau groupe', - 'edit_group': 'Éditer le groupe', - 'created_group': 'Le groupe a été créé avec succès', - 'updated_group': 'Le groupe a été mis à jour avec succès', - 'archived_groups': 'Les :value groupes ont été archivés avec succès', - 'deleted_groups': 'Les :value groupes ont été supprimés avec succès', - 'restored_groups': 'Les :value groupes ont été restaurés avec succès', - 'archived_group': 'Le groupe a été archivé avec succès', - 'deleted_group': 'Le groupe a été supprimé avec succès', - 'restored_group': 'Le groupe a été restauré avec succès', - 'upload_logo': 'Téléverser le logo', - 'uploaded_logo': 'Le logo a été téléversé avec succès', + 'date_format': 'Datumsformat', + 'datetime_format': 'Datums-/Zeitformat', + 'military_time': '24-Stunden-Zeit', + 'military_time_help': '24-Stunden-Anzeige', + 'send_reminders': 'Erinnerungen senden', + 'timezone': 'Zeitzone', + 'filtered_by_project': 'Nach Projekt filtern', + 'filtered_by_group': 'Gefiltert nach Gruppe', + 'filtered_by_invoice': 'Gefiltert nach Rechnung', + 'filtered_by_client': 'Gefiltert nach Kunde', + 'filtered_by_vendor': 'Gefiltert nach Lieferant', + 'group_settings': 'Gruppeneinstellungen', + 'group': 'Gruppe', + 'groups': 'Gruppen', + 'new_group': 'Neue Gruppe', + 'edit_group': 'Gruppe bearbeiten', + 'created_group': 'Gruppe erfolgreich erstellt', + 'updated_group': 'Gruppe erfolgreich aktualisiert', + 'archived_groups': ':value Gruppen erfolgreich archiviert', + 'deleted_groups': ':value Gruppen erfolgreich gelöscht', + 'restored_groups': ':value Gruppen erfolgreich wiederhergestellt', + 'archived_group': 'Gruppe erfolgreich archiviert', + 'deleted_group': 'Gruppe erfolgreich gelöscht', + 'restored_group': 'Gruppe erfolgreich wiederhergestellt', + 'upload_logo': 'Logo hochladen', + 'uploaded_logo': 'Logo erfolgreich hochgeladen', 'logo': 'Logo', - 'saved_settings': 'Les paramètres ont été sauvegardés avec succès', - 'product_settings': 'Paramètres des produits', - 'device_settings': 'Paramètres de l\'appareil', - 'defaults': 'Par défaut', - 'basic_settings': 'Paramètres de base', - 'advanced_settings': 'Paramètres avancés', - 'company_details': 'Informations sur l\'entreprise', - 'user_details': 'Profil utilisateur', - 'localization': 'Paramètres régionaux', - 'online_payments': 'Paiements en ligne', - 'tax_rates': 'Taux de taxe', - 'notifications': 'Notifications', - 'import_export': 'Importer / Exporter', - 'custom_fields': 'Champs personnalisés', - 'invoice_design': 'Modèles de factures', - 'buy_now_buttons': 'Boutons Achetez maintenant', - 'email_settings': 'Paramètres de courriel', - 'templates_and_reminders': 'Modèles et rappels', - 'credit_cards_and_banks': 'Cartes de crédit et banques', - 'data_visualizations': 'Visualisation des données', - 'price': 'Prix', - 'email_sign_up': 'Inscription par courriel', - 'google_sign_up': 'Inscription avec Google', - 'thank_you_for_your_purchase': 'Merci de votre achat!', - 'redeem': 'Rembourser', - 'back': 'Retour', - 'past_purchases': 'Achats précédents', - 'annual_subscription': 'Abonnement annuel', - 'pro_plan': 'Plan Pro', - 'enterprise_plan': 'Plan Entreprise', - 'count_users': ':count utilisateurs', - 'upgrade': 'Mettre à niveau', - 'please_enter_a_first_name': 'Veuillez entrer votre prénom', - 'please_enter_a_last_name': 'Veuillez entrer votre nom', + 'saved_settings': 'Einstellungen erfolgreich gespeichert', + 'product_settings': 'Produkt-Einstellungen', + 'device_settings': 'Geräteeinstellungen', + 'defaults': 'Standards', + 'basic_settings': 'Allgemeine Einstellungen', + 'advanced_settings': 'Erweiterte Einstellungen', + 'company_details': 'Firmendaten', + 'user_details': 'Benutzerdaten', + 'localization': 'Lokalisierung', + 'online_payments': 'Online-Zahlungen', + 'tax_rates': 'Steuersätze', + 'notifications': 'Benachrichtigungen', + 'import_export': 'Import/Export', + 'custom_fields': 'Benutzerdefinierte Felder', + 'invoice_design': 'Rechnungsdesign', + 'buy_now_buttons': '\"Kaufe jetzt\"-Buttons', + 'email_settings': 'E-Mail-Einstellungen', + 'templates_and_reminders': 'Vorlagen & Erinnerungen', + 'credit_cards_and_banks': 'Kreditkarten & Banken', + 'data_visualizations': 'Datenvisualisierungen', + 'price': 'Preis', + 'email_sign_up': 'E-Mail-Registrierung', + 'google_sign_up': 'Registrierung via Google', + 'thank_you_for_your_purchase': 'Vielen Dank für Ihren Kauf!', + 'redeem': 'Einlösen', + 'back': 'Zurück', + 'past_purchases': 'Vergangene Käufe', + 'annual_subscription': 'Jahres-Abonnement', + 'pro_plan': 'Pro-Tarif', + 'enterprise_plan': 'Enterprise-Tarif', + 'count_users': ':count Benutzer', + 'upgrade': 'Upgrade', + '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': - 'Vous devez accepter les conditions et la politique de confidentialité pour créer un compte.', - 'i_agree_to_the': 'J\'accepte', - 'terms_of_service': 'Conditions d\'utilisation', - 'privacy_policy': 'Politique de confidentialité', - 'sign_up': 'Inscription', - 'account_login': 'Connexion', - 'view_website': 'Visiter le site web', - 'create_account': 'Créer un compte', - 'email_login': 'Courriel de connexion', - 'create_new': 'Créer', - 'no_record_selected': 'Aucun enregistrement sélectionné', + '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': 'Service-Bedingungen', + 'privacy_policy': 'Datenschutzerklärung', + 'sign_up': 'Anmeldung', + 'account_login': 'Konto Login', + 'view_website': 'Webseite anschauen', + 'create_account': 'Konto erstellen', + 'email_login': 'E-Mail-Anmeldung', + 'create_new': 'Neu...', + 'no_record_selected': 'Kein Eintrag ausgewählt', 'error_unsaved_changes': - 'Veuillez sauvegarder ou annuler vos modifications', - 'download': 'Télécharger', - 'requires_an_enterprise_plan': 'Le plan Entreprise est requis', - 'take_picture': 'Prendre un photo', - 'upload_file': 'Téléverser un fichier', - 'document': 'Justificatifs', - 'documents': 'Documents', - 'new_document': 'Nouveau document', - 'edit_document': 'Éditer un document', - 'uploaded_document': 'Le document a été téléversé avec succès', - 'updated_document': 'Le document a été mis à jour avec succès', - 'archived_document': 'Le document a été archivé avec succès', - 'deleted_document': 'Le document a été supprimé avec succès', - 'restored_document': 'Le document a été restauré avec succès', - 'archived_documents': 'Les :value documents ont été archivés avec succès', - 'deleted_documents': 'Les :value documents ont été supprimés avec succès', - 'restored_documents': - 'Les :value documents ont été restaurés avec succès', - 'no_history': 'Aucun historique', - 'expense_date': 'Date de la dépense', - 'pending': 'En attente', - 'expense_status_1': 'Connecté', - 'expense_status_2': 'En attente', - 'expense_status_3': 'Facturé', - 'converted': 'Convertie', - 'add_documents_to_invoice': 'Ajouter des documents aux factures', - 'exchange_rate': 'Taux de change', - 'convert_currency': 'Conversion de devise', - 'mark_paid': 'Marquer payée', - 'category': 'Catégorie', + 'Bitte speichern oder verwerfen Sie Ihre Änderungen', + 'download': 'Herunterladen', + 'requires_an_enterprise_plan': 'Benötigt einen Enterprise Plan', + 'take_picture': 'Bild aufnehmen', + 'upload_file': 'Datei hochladen', + 'document': 'Dokument', + 'documents': 'Dokumente', + 'new_document': 'Neues Dokument', + 'edit_document': 'Dokument bearbeiten', + 'uploaded_document': 'Dokument erfolgreich hochgeladen', + 'updated_document': 'Dokument erfolgreich aktualisiert', + 'archived_document': 'Dokument erfolgreich archiviert', + 'deleted_document': 'Dokument erfolgreich gelöscht', + 'restored_document': 'Dokument erfolgreich wiederhergestellt', + 'archived_documents': ':value Dokumente erfolgreich archiviert', + 'deleted_documents': ':value Dokumente erfolgreich gelöscht', + 'restored_documents': ':value Dokumente erfolgreich wiederhergestellt', + 'no_history': 'Kein Verlauf', + 'expense_date': 'Ausgabendatum', + 'pending': 'Ausstehend', + 'expense_status_1': 'Aufgezeichnet', + 'expense_status_2': 'Ausstehend', + 'expense_status_3': 'Fakturiert', + 'converted': 'Umgewandelt', + 'add_documents_to_invoice': 'Fügen Sie Dokumente zur Rechnung hinzu', + 'exchange_rate': 'Wechselkurs', + 'convert_currency': 'Währung umrechnen', + 'mark_paid': 'Als bezahlt markieren', + 'category': 'Kategorie', 'address': 'Adresse', - 'new_vendor': 'Nouveau fournisseur', - 'created_vendor': 'Le fournisseur a été créé avec succès', - 'updated_vendor': 'Le fournisseur a été mis à jour avec succès', - 'archived_vendor': 'Le fournisseur a été archivé avec succès', - 'deleted_vendor': 'Le fournisseur a été supprimé avec succès', - 'restored_vendor': 'Le fournisseur a été restauré avec succès', - 'archived_vendors': ':count fournisseurs ont été archivés avec succès', - 'deleted_vendors': ':count fournisseurs ont été supprimés avec succès', - 'restored_vendors': - 'Les :value fournisseurs ont été restaurés avec succès', - 'new_expense': 'Entrer une dépense', - 'created_expense': 'La dépense a été créée avec succès', - 'updated_expense': 'La dépense a été mise à jour avec succès', - 'archived_expense': 'La dépense a été archivée avec succès', - 'deleted_expense': 'La dépense a été supprimée avec succès', - 'restored_expense': 'La dépense a été restaurée avec succès', - 'archived_expenses': 'Les dépenses ont été archivées avec succès', - 'deleted_expenses': 'Les dépenses ont été supprimées avec succès', - 'restored_expenses': 'Les :value dépenses ont été restaurées avec succès', - 'copy_shipping': 'Copier livraison', - 'copy_billing': 'Copier facturation', - 'design': 'Conception', - 'failed_to_find_record': 'Enregistrement introuvable', - 'invoiced': 'Facturée', - 'logged': 'Enregistrée', - 'running': 'En cours', - 'resume': 'Continuer', - 'task_errors': 'Veuillez corriger les plages de temps qui se chevauchent', - 'start': 'Démarrer', - 'stop': 'Arrêter', - 'started_task': 'La tâche a démaré avec succès', - 'stopped_task': 'La tâche a été arrêtée avec succès', - 'resumed_task': 'La tâche a été reprise avec succès', - 'now': 'Maintenant', - 'auto_start_tasks': 'Démarrage de tâches automatique', - 'timer': 'Minuteur', - 'manual': 'Manuel', - 'budgeted': 'Budgété', - 'start_time': 'Démarrée à', - 'end_time': 'Arrêtée à', - 'date': 'Date', - 'times': 'Temps', - 'duration': 'Durée', - 'new_task': 'Nouvelle tâche', - 'created_task': 'La tâche a été créée avec succès', - 'updated_task': 'La tâche a été modifiée avec succès', - 'archived_task': 'La tâche a été archivée avec succès', - 'deleted_task': 'La tâche a été supprimée avec succès', - 'restored_task': 'La tâche a été restaurée avec succès', - 'archived_tasks': ':count tâches ont été archivées avec succès', - 'deleted_tasks': ':count tâches ont été supprimées avec succès', - 'restored_tasks': 'Les :value tâches ont été restaurées avec succès', - 'please_enter_a_name': 'Veuillez entrer un nom', - 'budgeted_hours': 'Heures budgétées', - 'created_project': 'Le projet a été créé avec succès', - 'updated_project': 'Le projet a été mis à jour avec succès', - 'archived_project': 'Le projet a été archivé avec succès', - 'deleted_project': 'Le projet a été supprimé avec succès', - 'restored_project': 'Le projet a été restauré avec succès', - 'archived_projects': ':count projets ont été archivés avec succès', - 'deleted_projects': ':count projets ont été supprimés avec succès', - 'restored_projects': 'Les :value projets ont été restaurés avec succès', - 'new_project': 'Nouveau projet', - 'thank_you_for_using_our_app': 'Merci d\'utiliser notre app!', - 'if_you_like_it': 'Si vous appréciez, merci de', - 'click_here': 'cliquez ici', - 'click_here_capital': 'Cliquez ici', - 'to_rate_it': 'pour l\'évaluer.', - 'average': 'Moyenne', - 'unapproved': 'Non approuvé', + 'new_vendor': 'Neuer Lieferant', + 'created_vendor': 'Lieferant erfolgreich erstellt', + 'updated_vendor': 'Lieferant erfolgreich aktualisiert', + 'archived_vendor': 'Lieferant erfolgreich archiviert', + 'deleted_vendor': 'Lieferant erfolgreich gelöscht', + 'restored_vendor': 'Lieferant erfolgreich wiederhergestellt', + 'archived_vendors': ':count Lieferanten erfolgreich archiviert', + 'deleted_vendors': ':count Lieferanten erfolgreich gelöscht', + 'restored_vendors': ':value Lieferanten erfolgreich wiederhergestellt', + 'new_expense': 'Ausgabe eingeben', + 'created_expense': 'Ausgabe erfolgreich erstellt', + 'updated_expense': 'Ausgabe erfolgreich aktualisiert', + 'archived_expense': 'Ausgabe erfolgreich archiviert', + 'deleted_expense': 'Ausgabe erfolgreich gelöscht', + 'restored_expense': 'Ausgabe erfolgreich wiederhergestellt', + 'archived_expenses': 'Ausgaben erfolgreich archiviert', + 'deleted_expenses': 'Ausgaben erfolgreich gelöscht', + 'restored_expenses': ':value Ausgaben erfolgreich wiederhergestellt', + 'copy_shipping': 'Versand kopieren', + 'copy_billing': 'Zahlung kopieren', + 'design': 'Design', + 'failed_to_find_record': 'Eintrag konnte nicht gefunden werden', + 'invoiced': 'In Rechnung gestellt', + 'logged': 'Protokolliert', + 'running': 'Läuft', + 'resume': 'Fortfahren', + 'task_errors': 'Bitte korrigieren Sie alle überlappenden Zeiten', + 'start': 'Starten', + 'stop': 'Anhalten', + 'started_task': 'Aufgabe erfolgreich gestartet', + 'stopped_task': 'Aufgabe erfolgreich angehalten', + 'resumed_task': 'Aufgabe fortgesetzt', + 'now': 'Jetzt', + 'auto_start_tasks': 'Aufgaben für den automatischen Start', + 'timer': 'Zeitmesser', + 'manual': 'Manuell', + 'budgeted': 'Budgetiert', + 'start_time': 'Startzeit', + 'end_time': 'Endzeit', + 'date': 'Datum', + 'times': 'Zeiten', + 'duration': 'Dauer', + 'new_task': 'Neue Aufgabe', + 'created_task': 'Aufgabe erfolgreich erstellt', + 'updated_task': 'Aufgabe erfolgreich aktualisiert', + 'archived_task': 'Aufgabe erfolgreich archiviert', + 'deleted_task': 'Aufgabe erfolgreich gelöscht', + 'restored_task': 'Aufgabe erfolgreich wiederhergestellt', + 'archived_tasks': ':count Aufgaben wurden erfolgreich archiviert', + 'deleted_tasks': ':count Aufgaben wurden erfolgreich gelöscht', + 'restored_tasks': ':value Aufgaben erfolgreich wiederhergestellt', + 'please_enter_a_name': 'Bitte geben Sie einen Namen ein', + 'budgeted_hours': 'Budgetierte Stunden', + 'created_project': 'Projekt erfolgreich erstellt', + 'updated_project': 'Projekt erfolgreich aktualisiert', + 'archived_project': 'Projekt erfolgreich archiviert', + 'deleted_project': 'Projekt erfolgreich gelöscht', + 'restored_project': 'Projekt erfolgreich wiederhergestellt', + 'archived_projects': 'Erfolgreich :count Projekte archiviert', + 'deleted_projects': 'Erfolgreich :count Projekte gelöscht', + 'restored_projects': ':value Projekte erfolgreich wiederhergestellt', + 'new_project': 'neues Projekt', + 'thank_you_for_using_our_app': 'Vielen Dank, dass Sie unsere App nutzen!', + 'if_you_like_it': 'Wenn es dir gefällt, bitte', + 'click_here': 'hier klicken', + 'click_here_capital': 'Klicke hier', + 'to_rate_it': ', um es zu bewerten.', + 'average': 'Durchschnittlich', + 'unapproved': 'Nicht genehmigt', 'authenticate_to_change_setting': - 'Veuillez vous connecter pour changer ce paramètre', - 'locked': 'Verrouillé', - 'authenticate': 'Connexion', - 'please_authenticate': 'Veuillez vous connecter', - 'biometric_authentication': 'Connexion biométrique', - 'footer': 'Pied de page', - 'compare': 'Comparer', - 'hosted_login': 'Connexion hébergée', - 'selfhost_login': 'Connexion autohébergée', - 'google_sign_in': 'Connexion avec Google', - 'today': 'Aujourd\'hui', - 'custom_range': 'Personnalisé', - 'date_range': 'Intervalle de dates', - 'current': 'En cours', - 'previous': 'Précédent', - 'current_period': 'Période en cours', - 'comparison_period': 'Période de comparaison', - 'previous_period': 'Période précédente', - 'previous_year': 'Année précédente', - 'compare_to': 'Comparer à', - 'last7_days': '7 derniers jours', - 'last_week': 'Dernière semaine', - 'last30_days': '30 derniers jours', - 'this_month': 'Mois en cours', - 'last_month': 'Mois dernier', - 'this_year': 'Cette année', - 'last_year': 'Dernière année', - 'custom': 'Personnalisé', - 'clone_to_invoice': 'Cloner en facture', - 'clone_to_quote': 'Cloner en soumission', - 'clone_to_credit': 'Cloner au crédit', - 'view_invoice': 'Voir la facture', - 'convert': 'Convertir', - 'more': 'Plus', - 'edit_client': 'Modifier le client', - 'edit_product': 'Modifier le produit', - 'edit_invoice': 'Modifier la facture', - 'edit_quote': 'Modifier la soumission', - 'edit_payment': 'Modifier le paiement', - 'edit_task': 'Éditer la tâche', - 'edit_expense': 'Éditer la dépense', - 'edit_vendor': 'Éditer le fournisseur', - 'edit_project': 'Éditer le projet', - 'edit_recurring_quote': 'Éditer la soumission récurrente', - 'billing_address': 'Adresse de facturation', - 'shipping_address': 'Adresse de livraison', - 'total_revenue': 'Revenu total', - 'average_invoice': 'Facture moyenne', - 'outstanding': 'Impayées', - 'invoices_sent': ':count factures envoyées', - 'active_clients': 'clients actifs', - 'close': 'Fermer', - 'email': 'Courriel', - 'password': 'Mot de passe', + 'Bitte authentifizieren Sie sich, um diese Einstellung zu ändern.', + 'locked': 'Gesperrt', + 'authenticate': 'Authentifizieren', + 'please_authenticate': 'Bitte authentifizieren Sie sich', + 'biometric_authentication': 'Biometrische Authentifizierung', + 'footer': 'Fußzeile', + 'compare': 'Vergleiche', + 'hosted_login': 'Hosted Login', + 'selfhost_login': 'Selfhost Login', + 'google_sign_in': 'Anmeldung mit Google', + 'today': 'Heute', + 'custom_range': 'Benutzerdefinierter Bereich', + 'date_range': 'Datumsbereich', + 'current': 'Aktuell', + 'previous': 'Vorherige', + 'current_period': 'Aktuelle Periode', + 'comparison_period': 'Vergleichsperiode', + 'previous_period': 'Vorherige Periode', + 'previous_year': 'Vorjahr', + 'compare_to': 'Vergleiche mit', + 'last7_days': 'Letzte 7 Tage', + 'last_week': 'Letzte Woche', + 'last30_days': 'Letzte 30 Tage', + 'this_month': 'Dieser Monat', + 'last_month': 'Letzter Monat', + 'this_year': 'Dieses Jahr', + 'last_year': 'Letztes Jahr', + 'custom': 'Benutzerdefiniert', + 'clone_to_invoice': 'Klone in Rechnung', + 'clone_to_quote': 'Klone in Angebot', + 'clone_to_credit': 'Duplizieren in Gutschrift', + 'view_invoice': 'Rechnung anschauen', + 'convert': 'Konvertiere', + 'more': 'Mehr', + 'edit_client': 'Kunde bearbeiten', + 'edit_product': 'Produkt bearbeiten', + 'edit_invoice': 'Rechnung bearbeiten', + 'edit_quote': 'Angebot bearbeiten', + 'edit_payment': 'Zahlung bearbeiten', + 'edit_task': 'Aufgabe bearbeiten', + 'edit_expense': 'Ausgabe Bearbeiten', + 'edit_vendor': 'Lieferant Bearbeiten', + 'edit_project': 'Projekt bearbeiten', + 'edit_recurring_quote': 'Bearbeite wiederkehrendes Angebot', + 'billing_address': 'Rechnungsadresse', + 'shipping_address': 'Lieferadresse', + 'total_revenue': 'Gesamteinnahmen', + 'average_invoice': 'Durchschnittlicher Rechnungsbetrag', + 'outstanding': 'Ausstehend', + 'invoices_sent': ':count Rechnungen versendet', + 'active_clients': 'aktive Kunden', + 'close': 'Schließen', + 'email': 'E-Mail', + 'password': 'Passwort', 'url': 'URL', - 'secret': 'Secret', - 'name': 'Nom', - 'logout': 'Déconnexion', - 'login': 'Connexion', - 'filter': 'Filtrer', - 'sort': 'Trier', - 'search': 'Rechercher', - 'active': 'Actif', - 'archived': 'Archivé', - 'deleted': 'Supprimé', - 'dashboard': 'Tableau de bord', - 'archive': 'Archiver', - 'delete': 'Supprimer', - 'restore': 'Restaurer', - 'refresh_complete': 'Actualisation complétée', - 'please_enter_your_email': 'Veuillez saisir votre courriel', - 'please_enter_your_password': 'Veuillez saisir votre mot de passe', - 'please_enter_your_url': 'Veuillez saisir votre URL', - 'please_enter_a_product_key': 'Veuillez saisir la clé de produit', - 'ascending': 'Ascendant', - 'descending': 'Descendant', - 'save': 'Sauvegarder', - 'an_error_occurred': 'Il y a eu une erreur', - 'paid_to_date': 'Payé à ce jour', - 'balance_due': 'Solde dû', - 'balance': 'Solde', - 'overview': 'Survol', - 'details': 'Détails', - 'phone': 'Téléphone', - 'website': 'Site web', - 'vat_number': 'N° de taxe', - 'id_number': 'N° d\'entreprise', - 'create': 'Créer', - 'copied_to_clipboard': ':value a été copié au presse-papier', - 'error': 'Erreur', - 'could_not_launch': 'Lancement impossible', - 'contacts': 'Contacts', - 'additional': 'Additionnel', - 'first_name': 'Prénom', - 'last_name': 'Nom', - 'add_contact': 'Ajouter un contact', - 'are_you_sure': 'Voulez-vous vraiment effectuer cette action?', - 'cancel': 'Annuler', + 'secret': 'Passwort', + 'name': 'Name', + 'logout': 'Abmelden', + 'login': 'Login', + 'filter': 'Filter', + 'sort': 'Sortierung', + 'search': 'Suche', + 'active': 'Aktiv', + 'archived': 'Archiviert', + 'deleted': 'Gelöscht', + 'dashboard': 'Dashboard', + 'archive': 'Archivieren', + 'delete': 'löschen', + 'restore': 'Wiederherstellen', + 'refresh_complete': 'Aktualisieren beendet', + 'please_enter_your_email': 'Bitte geben Sie Ihre E-Mail-Adresse ein', + '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', + 'ascending': 'Aufsteigend', + 'descending': 'Absteigend', + 'save': 'Speichern', + 'an_error_occurred': 'Ein Fehler ist aufgetreten', + 'paid_to_date': 'Bereits gezahlt', + 'balance_due': 'Offener Betrag', + 'balance': 'Saldo', + 'overview': 'Übersicht', + 'details': 'Details', + 'phone': 'Telefon', + 'website': 'Webseite', + 'vat_number': 'USt-IdNr.', + 'id_number': 'Registernummer', + 'create': 'Erstellen', + 'copied_to_clipboard': ':value in die Zwischenablage kopiert', + 'error': 'Fehler', + 'could_not_launch': 'Konnte nicht gestartet werden', + 'contacts': 'Kontakte', + 'additional': 'Zusätzlich', + 'first_name': 'Vorname', + 'last_name': 'Nachname', + 'add_contact': 'Kontakt hinzufügen', + 'are_you_sure': 'Sind Sie sicher?', + 'cancel': 'Stornieren', 'ok': 'Ok', - 'remove': 'Retirer', - 'email_is_invalid': 'Le courriel est invalide', - 'product': 'Produit', - 'products': 'Produits', - 'new_product': 'Nouveau produit', - 'created_product': 'Le produit a été créé avec succès', - 'updated_product': 'Le produit a été mis à jour avec succès', - 'archived_product': 'Le produit a été archivé avec succès', - 'deleted_product': 'Le produit a été supprimé avec succès', - 'restored_product': 'Le produit a été restauré avec succès', - 'archived_products': ':count produits archivés avec succès', - 'deleted_products': ':count produits ont été supprimés avec succès', - 'restored_products': 'Les :value produits ont été restaurés avec succès', - 'product_key': 'Produit', - 'notes': 'Notes', - 'cost': 'Coût', - 'client': 'Client', - 'clients': 'Clients', - 'new_client': 'Nouveau client', - 'created_client': 'Le client a été créé avec succès', - 'updated_client': 'Le client a été modifié avec succès', - 'archived_client': 'Le client a été archivé avec succès', - 'archived_clients': ':count clients archivés avec succès', - 'deleted_client': 'Le client a été supprimé avec succès', - 'deleted_clients': ':count clients ont été supprimés avec succès', - 'restored_client': 'Le client a été restauré avec succès', - 'restored_clients': 'Les :value clients ont été restaurés avec succès', - 'address1': 'Rue', - 'address2': 'Appartement / bureau', - 'city': 'Ville', - 'state': 'État / province', - 'postal_code': 'Code postal', - 'country': 'Pays', - 'invoice': 'Facture', - 'invoices': 'Factures', - 'new_invoice': 'Nouvelle facture', - 'created_invoice': 'La facture a été créée avec succès', - 'updated_invoice': 'La facture a été modifiée avec succès', - 'archived_invoice': 'La facture a été archivée avec succès', - 'deleted_invoice': 'La facture a été supprimée avec succès', - 'restored_invoice': 'La facture a été restaurée avec succès', - 'archived_invoices': ':count factures ont été archivées avec succès', - 'deleted_invoices': ':count factures supprimées avec succès', - 'restored_invoices': 'Les :value factures ont été restaurées avec succès', - 'emailed_invoice': 'La facture a été envoyée par courriel avec succès', - 'emailed_payment': 'Le paiement a été envoyé par courriel avec succès', - 'amount': 'Montant', - 'invoice_number': 'N° de facture', - 'invoice_date': 'Date de facturation', - 'discount': 'Escompte', - 'po_number': 'N° de bon de commande', - 'terms': 'Modalités', - 'public_notes': 'Notes publiques', - 'private_notes': 'Notes personnelles', - 'frequency': 'Fréquence', - 'start_date': 'Date de début', - 'end_date': 'Date de fin', - 'quote_number': 'N° de soumission', - 'quote_date': 'Date de soumission', - 'valid_until': 'Valide jusqu\'au', - 'items': 'Articles', - 'partial_deposit': 'Partiel / dépôt', - 'description': 'Description', - 'unit_cost': 'Coût unitaire', - 'quantity': 'Quantité', - 'add_item': 'Ajouter un article', - 'contact': 'Contact', - 'work_phone': 'Téléphone', - 'total_amount': 'Montant total', + 'remove': 'Entfernen', + 'email_is_invalid': 'E-Mail ist ungültig', + 'product': 'Produkt', + 'products': 'Produkte', + 'new_product': 'Neues Produkt', + 'created_product': 'Produkt erfolgreich erstellt', + 'updated_product': 'Produkt erfolgreich aktualisiert', + 'archived_product': 'Produkt erfolgreich archiviert', + 'deleted_product': 'Produkt erfolgreich gelöscht', + 'restored_product': 'Produkt erfolgreich wiederhergestellt', + 'archived_products': 'Archivierung erfolgreich :Produktzähler', + 'deleted_products': 'Erfolgreich :count Produkte gelöscht', + 'restored_products': ':value Produkte erfolgreich wiederhergestellt', + 'product_key': 'Produkt', + 'notes': 'Notizen', + 'cost': 'Kosten', + 'client': 'Kunde', + 'clients': 'Kunden', + 'new_client': 'Neuer Kunde', + 'created_client': 'Kunde erfolgreich angelegt', + 'updated_client': 'Kunde erfolgreich aktualisiert', + 'archived_client': 'Kunde erfolgreich archiviert', + 'archived_clients': ':count Kunden erfolgreich archiviert', + 'deleted_client': 'Kunde erfolgreich gelöscht', + 'deleted_clients': ':count Kunden erfolgreich gelöscht', + 'restored_client': 'Kunde erfolgreich wiederhergestellt', + 'restored_clients': ':value Kunden erfolgreich wiederhergestellt', + 'address1': 'Straße', + 'address2': 'Adresszusatz', + 'city': 'Stadt', + 'state': 'Bundesland', + 'postal_code': 'Postleitzahl', + 'country': 'Land', + 'invoice': 'Rechnung', + 'invoices': 'Rechnungen', + 'new_invoice': 'Neue Rechnung', + 'created_invoice': 'Rechnung erfolgreich erstellt', + 'updated_invoice': 'Rechnung erfolgreich aktualisiert', + 'archived_invoice': 'Rechnung erfolgreich archiviert', + 'deleted_invoice': 'Rechnung erfolgreich gelöscht', + 'restored_invoice': 'Rechnung erfolgreich wiederhergestellt', + 'archived_invoices': ':count Rechnungen erfolgreich archiviert', + 'deleted_invoices': ':count Rechnungen erfolgreich gelöscht', + 'restored_invoices': ':value Rechnungen erfolgreich wiederhergestellt', + 'emailed_invoice': 'Rechnung erfolgreich versendet', + 'emailed_payment': 'Zahlungs eMail erfolgreich gesendet', + 'amount': 'Betrag', + 'invoice_number': 'Rechnungsnummer', + 'invoice_date': 'Rechnungsdatum', + 'discount': 'Rabatt', + 'po_number': 'Bestellnummer', + 'terms': 'Bedingungen', + 'public_notes': 'Öffentliche Notizen', + 'private_notes': 'Private Notizen', + 'frequency': 'Häufigkeit', + 'start_date': 'Startdatum', + 'end_date': 'Enddatum', + 'quote_number': 'Angebotsnummer', + 'quote_date': 'Angebotsdatum', + 'valid_until': 'Gültig bis', + 'items': 'Element', + 'partial_deposit': 'Teil-/Anzahlung', + 'description': 'Beschreibung', + 'unit_cost': 'Einzelpreis', + 'quantity': 'Menge', + 'add_item': 'Artikel hinzufügen', + 'contact': 'Kontakt', + 'work_phone': 'Telefon', + 'total_amount': 'Gesamtbetrag', 'pdf': 'PDF', - 'due_date': 'Échéance', - 'partial_due_date': 'Date d\'échéance du paiement partiel', - 'status': 'Statut', - 'invoice_status_id': 'État de la facture', - 'quote_status': 'État de la soumission', - 'click_plus_to_add_item': 'Cliquez + pour ajouter un article', - 'click_plus_to_add_time': 'Cliquez sur + pour ajouter du temps', - 'count_selected': ':count sélectionnés', - 'total': 'Total', - 'percent': 'Pourcent', - 'edit': 'Modifier', - 'dismiss': 'Annuler', - 'please_select_a_date': 'Veuillez saisir une date', - 'please_select_a_client': 'Veuillez sélectionner un client', - 'please_select_an_invoice': 'Veuillez sélectionner une facture', - 'task_rate': 'Taux de tâche', - 'settings': 'Paramètres', - 'language': 'Langue', - 'currency': 'Devise', - 'created_at': 'Créé le', - 'created_on': 'Créé le', - 'updated_at': 'Mis à jour', - 'tax': 'Taxe', - 'please_enter_an_invoice_number': 'Veuillez saisir un numéro de facture', - 'please_enter_a_quote_number': 'Veuillez saisir un numéro de soumission', - 'past_due': 'En souffrance', - 'draft': 'Brouillon', - 'sent': 'Envoyé', - 'viewed': 'Vue', - 'approved': 'Approuvée', - 'partial': 'Partiel / dépôt', - 'paid': 'Payé', - 'mark_sent': 'Marquer comme envoyé', - 'marked_invoice_as_sent': - 'La facture a été marquée comme envoyée avec succès', + 'due_date': 'Fälligkeitsdatum', + 'partial_due_date': 'Teilzahlungsziel', + 'status': 'Status', + 'invoice_status_id': 'Rechnungs Status', + 'quote_status': 'Angebotsstatus', + 'click_plus_to_add_item': + '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', + 'percent': 'Prozent', + 'edit': 'Bearbeiten', + 'dismiss': 'Verwerfen', + 'please_select_a_date': 'Bitte wählen Sie ein Datum', + 'please_select_a_client': 'Bitte wählen Sie einen Kunden', + 'please_select_an_invoice': 'Bitte wählen Sie eine Rechnung aus', + 'task_rate': 'Kosten für Tätigkeit', + 'settings': 'Einstellungen', + 'language': 'Sprache', + 'currency': 'Währung', + 'created_at': 'Erstellt am', + 'created_on': 'Erstellt am', + 'updated_at': 'Aktualisiert', + 'tax': 'Steuer', + 'please_enter_an_invoice_number': + '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', + 'sent': 'Versendet', + 'viewed': 'Angesehen', + 'approved': 'Bestätigt', + 'partial': 'Teil-/Anzahlung', + 'paid': 'Bezahlt', + 'mark_sent': 'Als versendet markieren', + 'marked_invoice_as_sent': 'Rechnung erfolgreich als versendet markiert', 'marked_invoice_as_paid': - 'La facture a été marquée comme envoyée avec succès', + 'Die Rechnung wurde erfolgreich als \"versendet\" markiert', 'marked_invoices_as_sent': - 'Les factures ont été marquées comme envoyées avec succès', + 'Erfolgreich Rechnungen als versendet markiert', 'marked_invoices_as_paid': - 'Les factures ont été marquées comme envoyées avec succès', - 'done': 'Valider', + 'Die Rechnung wurde erfolgreich als \"versendet\" markiert', + 'done': 'Erledigt', 'please_enter_a_client_or_contact_name': - 'Veuillez saisir un nom de client ou de contact', - 'dark_mode': 'Mode foncé', + 'Bitte geben Sie einen Kunden- oder Kontaktnamen ein', + 'dark_mode': 'Dunkler Modus', 'restart_app_to_apply_change': - 'Redémarrez l\'app pour mettre à jour les changements', - 'refresh_data': 'Actualiser les données', - 'blank_contact': 'Contact vide', - 'activity': 'Activité', - 'no_records_found': 'Aucun enregistrement trouvé', - 'clone': 'Dupliquer', - 'loading': 'Chargement', - 'industry': 'Entreprise', - 'size': 'Taille', - 'payment_terms': 'Délais de paiement', - 'payment_date': 'Date du paiement', - 'payment_status': 'État du paiement', - 'payment_status_1': 'Em attente', - 'payment_status_2': 'Annulée', - 'payment_status_3': 'Échouée', - 'payment_status_4': 'Complétée', - 'payment_status_5': 'Partiellement remboursée', - 'payment_status_6': 'Remboursée', - 'payment_status_-1': 'Non appliqué', - 'payment_status_-2': 'Partiellement non-appliquée', - 'net': 'Net', - 'client_portal': 'Portail client', - 'show_tasks': 'Afficher les tâches', - 'email_reminders': 'Courriel de rappel', - 'enabled': 'Activé', - 'recipients': 'destinataires', - 'initial_email': 'Courriel initial', - 'first_reminder': '1er rappel', - 'second_reminder': '2e rappel', - 'third_reminder': '3e rappel', - 'reminder1': 'Premier rappel', - 'reminder2': 'Deuxième rappel', - 'reminder3': 'Troisième rappel', - 'template': 'Modèle', - 'send': 'Envoyer', - 'subject': 'Sujet', - 'body': 'Corps', - 'send_email': 'Envoyer un courriel', - 'email_receipt': 'Envoyer le reçu de paiement par courriel au client', - 'auto_billing': 'Facturation automatique', - 'button': 'Bouton', - 'preview': 'PRÉVISUALISATION', - 'customize': 'Personnalisation', - 'history': 'Historique', - 'payment': 'Paiement', - 'payments': 'Paiements', - 'refunded': 'Remboursée', - 'payment_type': 'Type de paiement', - 'transaction_reference': 'N° de référence', - 'enter_payment': 'Inscrire un paiement', - 'new_payment': 'Inscrire un paiement', - 'created_payment': 'Le paiement a été créé avec succès', - 'updated_payment': 'Le paiement a été mis à jour avec succès', - 'archived_payment': 'Le paiement a été archivé avec succès', - 'deleted_payment': 'Le paiement a été supprimé avec succès', - 'restored_payment': 'Le paiement a été restauré avec succès', - 'archived_payments': ':count paiements ont été archivés avec succès', - 'deleted_payments': ':count paiements ont été supprimés avec succès', - 'restored_payments': 'Les :value paiements ont été restaurés avec succès', - 'quote': 'Soumission', - 'quotes': 'Soumissions', - 'new_quote': 'Nouvelle soumission', - 'created_quote': 'La soumission a été créée avec succès', - 'updated_quote': 'La soumission a été mise à jour avec succès', - 'archived_quote': 'La soumission a été archivée avec succès', - 'deleted_quote': 'La soumission a été supprimée avec succès', - 'restored_quote': 'La soumission a été restaurée avec succès', - 'archived_quotes': ':count soumissions ont été archivées avec succès', - 'deleted_quotes': ':count soumissions ont été supprimées avec succès', - 'restored_quotes': - 'Les :value soumissions ont été restaurées avec succès', - 'expense': 'Dépense', - 'expenses': 'Dépenses', - 'vendor': 'Fournisseur', - 'vendors': 'Fournisseurs', - 'task': 'Tâche', - 'tasks': 'Tâches', - 'project': 'Projet', - 'projects': 'Projets', - 'activity_1': ':user a créé le client :client', - 'activity_2': ':user a archivé le client :client', - 'activity_3': ':user a supprimé le client :client', - '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', - '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', - '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', - 'activity_14': ':user a saisi le crédit :credit', - 'activity_15': ':user a mis à jour le crédit :credit', - 'activity_16': ':user a archivé le crédit :credit', - 'activity_17': ':user a supprimé le crédit :credit', - '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', - 'activity_21': ':contact a visualisé la soumission :quote', - 'activity_22': ':user a archivé la soumission :quote', - 'activity_23': ':user a supprimé la soumission :quote', - 'activity_24': ':user a restauré la soumission :quote', - 'activity_25': ':user a restauré la facture :invoice', - 'activity_26': ':user a restauré le client :client', - 'activity_27': ':user a restauré le paiement :payment', - 'activity_28': ':user a restauré le crédit :credit', - 'activity_29': ':contact a approuvé la soumission :quote pour :client', - 'activity_30': ':user a créé le fournisseur :vendor', - 'activity_31': ':user a archivé le fournisseur :vendor', - 'activity_32': ':user a supprimé le fournisseur :vendor', - 'activity_33': ':user a restauré le fournisseur :vendor', - 'activity_34': ':user a créé la dépense :expense', - 'activity_35': ':user a archivé la dépense :expense', - 'activity_36': ':user a supprimé la dépense :expense', - 'activity_37': ':user a restauré la dépense :expense', - 'activity_39': ':user a annulé un paiement :payment de :payment_amount', + 'Starten Sie die App neu, um die Änderung zu übernehmen.', + 'refresh_data': 'Daten aktualisieren', + 'blank_contact': 'Leerer Kontakt', + 'activity': 'Aktivität', + 'no_records_found': 'Kein Einträge gefunden', + 'clone': 'Duplizieren', + 'loading': 'Lädt', + 'industry': 'Kategorie', + 'size': 'Größe', + 'payment_terms': 'Zahlungsbedingungen', + 'payment_date': 'Zahlungsdatum', + 'payment_status': 'Zahlungsstatus', + 'payment_status_1': 'Ausstehend', + 'payment_status_2': 'entwertet', + 'payment_status_3': 'Fehlgeschlagen', + 'payment_status_4': 'Abgeschlossen', + 'payment_status_5': 'Teilweise erstattet', + 'payment_status_6': 'Erstattet', + 'payment_status_-1': 'nicht angewendet', + 'payment_status_-2': 'Teilweise nicht angewendet', + 'net': 'Netto', + 'client_portal': 'Kunden-Portal', + 'show_tasks': 'Aufgaben anzeigen', + 'email_reminders': 'E-Mail Erinnerungen', + 'enabled': 'Aktiviert', + 'recipients': 'Empfänger', + 'initial_email': 'Initiale E-Mail', + 'first_reminder': 'Erste Erinnerung', + 'second_reminder': 'Zweite Erinnerung', + 'third_reminder': 'Dritte Erinnerung', + 'reminder1': 'Erste Erinnerung', + 'reminder2': 'Zweite Erinnerung', + 'reminder3': 'Dritte Erinnerung', + 'template': 'Vorlage', + 'send': 'Senden', + 'subject': 'Betreff', + 'body': 'Inhalt', + 'send_email': 'E-Mail senden', + 'email_receipt': 'Zahlungsbestätigung an Kunden per E-Mail senden', + 'auto_billing': 'Automatische Rechnungsstellung', + 'button': 'Knopf', + 'preview': 'Vorschau', + 'customize': 'Anpassen', + 'history': 'Verlauf', + 'payment': 'Zahlung', + 'payments': 'Zahlungen', + 'refunded': 'Erstattet', + 'payment_type': 'Zahlungsart', + 'transaction_reference': 'Abwicklungsreferenz', + 'enter_payment': 'Zahlung eingeben', + 'new_payment': 'Zahlung eingeben', + 'created_payment': 'Zahlung erfolgreich erstellt', + 'updated_payment': 'Zahlung erfolgreich aktualisiert', + 'archived_payment': 'Zahlung erfolgreich archiviert', + 'deleted_payment': 'Zahlung erfolgreich gelöscht', + 'restored_payment': 'Zahlung erfolgreich wiederhergestellt', + 'archived_payments': ':count Zahlungen erfolgreich archiviert', + 'deleted_payments': ':count Zahlungen erfolgreich gelöscht', + 'restored_payments': ':value Zahlungen erfolgreich wiederhergestellt', + 'quote': 'Angebot', + 'quotes': 'Angebote', + 'new_quote': 'Neues Angebot', + 'created_quote': 'Angebot erfolgreich erstellt', + 'updated_quote': 'Angebot erfolgreich aktualisiert', + 'archived_quote': 'Angebot erfolgreich archiviert', + 'deleted_quote': 'Angebot erfolgreich gelöscht', + 'restored_quote': 'Angebot erfolgreich wiederhergestellt', + 'archived_quotes': ':count Angebote erfolgreich archiviert', + 'deleted_quotes': ':count Angebote erfolgreich gelöscht', + 'restored_quotes': ':value Angebote erfolgreich wiederhergestellt', + 'expense': 'Ausgabe', + 'expenses': 'Ausgaben', + 'vendor': 'Lieferant', + 'vendors': 'Lieferanten', + 'task': 'Aufgabe', + 'tasks': 'Zeiterfassung', + 'project': 'Projekt', + 'projects': 'Projekte', + 'activity_1': ':user erstellte Kunde :client', + 'activity_2': ':user archivierte Kunde :client', + 'activity_3': ':user löschte Kunde :client', + 'activity_4': ':user erstellte Rechnung :invoice', + 'activity_5': ':user aktualisierte Rechnung :invoice', + 'activity_6': ':user mailte Rechnung :invoice für :client an :contact', + 'activity_7': ':contact schaute Rechnung :invoice für :client an', + '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', + 'activity_11': ':user aktualisierte Zahlung :payment', + 'activity_12': ':user archivierte Zahlung :payment', + 'activity_13': ':user löschte Zahlung :payment', + 'activity_14': ':user gab :credit Guthaben ein', + 'activity_15': ':user aktualisierte :credit Guthaben', + 'activity_16': ':user archivierte :credit Guthaben', + 'activity_17': ':user löschte :credit Guthaben', + 'activity_18': ':user erstellte Angebot :quote', + 'activity_19': ':user aktualisierte Angebot :quote', + 'activity_20': ':user mailte Angebot :quote für :client an :contact', + 'activity_21': ':contact schaute Angebot :quote an', + 'activity_22': ':user archivierte Angebot :quote', + 'activity_23': ':user löschte Angebot :quote', + 'activity_24': ':user stellte Angebot :quote wieder her', + 'activity_25': ':user stellte Rechnung :invoice wieder her', + 'activity_26': ':user stellte Kunde :client wieder her', + 'activity_27': ':user stellte Zahlung :payment wieder her', + 'activity_28': ':user stellte Guthaben :credit wieder her', + 'activity_29': ':contact akzeptierte Angebot :quote für :client', + 'activity_30': ':user hat Lieferant :vendor erstellt', + 'activity_31': ':user hat Lieferant :vendor archiviert', + 'activity_32': ':user hat Lieferant :vendor gelöscht', + 'activity_33': ':user hat Lieferant :vendor wiederhergestellt', + 'activity_34': ':user erstellte Ausgabe :expense', + 'activity_35': ':user hat Ausgabe :expense archiviert', + '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', 'activity_40': - ':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', - 'activity_44': ':user a archivé la tâche :task', - 'activity_45': ':user a supprimé la tâche :task', - 'activity_46': ':user a restauré la tâche :task', - 'activity_47': ':user a mis à jour la dépense :expense', - 'activity_48': ':user a mis à jour le billet :ticket', - 'activity_49': ':user a fermé le billet :ticket', - 'activity_50': ':user a fusionné le billet :ticket', - 'activity_51': ':user a scindé le billet :ticket', - 'activity_52': ':contact a ouvert le billet :ticket', - 'activity_53': ':contact a réouvert le billet :ticket', - 'activity_54': ':user a réouvert le billet :ticket', - 'activity_55': ':contact a répondu au billet :ticket', - 'activity_56': ':user a vu le billet :ticket', + ':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', + 'activity_44': ':user hat Aufgabe :task archiviert', + 'activity_45': ':user hat Aufgabe :task gelöscht', + 'activity_46': ':user hat Aufgabe :task wiederhergestellt', + 'activity_47': ':user hat Ausgabe :expense bearbeitet', + 'activity_48': ':user hat Ticket :ticket bearbeitet', + 'activity_49': ':user hat Ticket :ticket geschlossen', + 'activity_50': ':user hat Ticket :ticket zusammengeführt', + 'activity_51': ':user hat Ticket :ticket aufgeteilt', + 'activity_52': ':contact hat Ticket :ticket geöffnet', + 'activity_53': ':contact hat Ticket :ticket wieder geöffnet', + 'activity_54': ':user hat Ticket :ticket wieder geöffnet', + 'activity_55': ':contact hat auf Ticket :ticket geantwortet', + 'activity_56': ':user hat Ticket :ticket angesehen', 'activity_57': - 'Le système n\'a pas pu envoyer le courriel de la facture :invoice', - 'activity_58': ':user a inversé la facture :invoice', - 'activity_59': ':user a annulé la facture :invoice', - 'activity_60': ':contact a vu la soumission :quote', - 'activity_61': ':user a mis à jour le client :client', - 'activity_62': ':user a mis à jour le fournisseur :vendor', + 'Das System konnte die Rechnung :invoice nicht per E-Mail versenden', + 'activity_58': ':user buchte Rechnung :invoice zurück', + 'activity_59': ':user brach Rechnung :invoice ab', + 'activity_60': ':contact schaute Angebot :quote an', + 'activity_61': ':user hat Kunde :client aktualisiert', + 'activity_62': ':user hat Lieferant :vendor aktualisiert', 'activity_63': - ':user a envoyé le premier rappel pour la facture :invoice de :contact', + ':user mailte erste Erinnerung für Rechnung :invoice an :contact', 'activity_64': - ':user a envoyé le deuxième rappel pour la facture :invoice de :contact', + ':user mailte zweite Erinnerung für Rechnung :invoice an :contact', 'activity_65': - ':user a envoyé le troisième rappel pour la facture :invoice de :contact', + ':user mailte dritte Erinnerung für Rechnung :invoice an :contact', 'activity_66': - ':user a envoyé un rappel sans fin pour la facture :invoice de :contact', - 'activity_80': ':user a créé l\'abonnement :subscription', - 'activity_81': ':user a mis à jour l\'abonnement :subscription', - 'activity_82': ':user a archivé l\'abonnement :subscription', - 'activity_83': ':user a supprimé l\'abonnement :subscription', - 'activity_84': ':user a restauré l\'abonnement :subscription', - 'one_time_password': 'Mot de passe à usage unique', - 'emailed_quote': 'La soumission a été envoyée avec succès', - 'emailed_credit': 'Le crédit a envoyé par courriel avec succès', - 'marked_quote_as_sent': - 'La soumission a été marquée comme envoyée avec succès', - 'marked_credit_as_sent': - 'Le crédit a été marqué comme envoyé avec succès', - 'expired': 'Expiré', - 'all': 'Tous', - 'select': 'Sélectionner', - 'long_press_multiselect': 'Multisélection par pression longue', - 'custom_value1': 'Valeur par défaut', - 'custom_value2': 'Valeur par défaut', - 'custom_value3': 'Valeur personnalisée 3', - 'custom_value4': 'Valeur personnalisée 4', - 'email_style_custom': 'Style de courriel personnalisé', - 'custom_message_dashboard': 'Message personnalisé du tableau de bord', + ':user mailte endlose Erinnerung für Rechnung :invoice an :contact', + 'activity_80': ':user hat Abonnement :subscription erstellt', + 'activity_81': ':user hat Abonnement :subscription geändert', + 'activity_82': ':user hat Abonnement :subscription archiviert', + 'activity_83': ':user hat Abonnement :subscription gelöscht', + 'activity_84': ':user hat Abonnement :subscription wiederhergestellt', + 'one_time_password': 'Einmaliges Passwort', + 'emailed_quote': 'Angebot erfolgreich versendet', + 'emailed_credit': 'Guthaben erfolgreich per E-Mail versendet', + 'marked_quote_as_sent': 'Angebot erfolgreich als versendet markiert', + 'marked_credit_as_sent': 'Guthaben erfolgreich als versendet markiert', + 'expired': 'Abgelaufen', + 'all': 'Alle', + 'select': 'Wählen', + 'long_press_multiselect': 'Mehrfachauswahl durch langes Drücken', + 'custom_value1': 'Benutzerdefinierten Wert', + 'custom_value2': 'Benutzerdefinierten Wert', + 'custom_value3': 'Benutzerdefinierter Wert 3', + 'custom_value4': 'Benutzerdefinierter Wert 4', + 'email_style_custom': 'Benutzer definierter E-Mail-Stil', + 'custom_message_dashboard': 'Benutzerdefinierte Dashboard-Nachricht', 'custom_message_unpaid_invoice': - 'Message personnalisé pour facture impayée', - 'custom_message_paid_invoice': 'Message personnalisé pour facture payée', + 'Benutzerdefinierte Nachricht für unbezahlte Rechnung', + 'custom_message_paid_invoice': + 'Benutzerdefinierte Nachricht für bezahlte Rechnung', 'custom_message_unapproved_quote': - 'Message personnalisé pour soumission non approuvée', - 'lock_invoices': 'Verrouiller les factures', - 'translations': 'Traductions', - 'task_number_pattern': 'Modèle du numéro de tâche', - 'task_number_counter': 'Compteur du numéro de tâche', - 'expense_number_pattern': 'Modèle du numéro de dépense', - 'expense_number_counter': 'Compteur du numéro de dépense', - 'vendor_number_pattern': 'Modèle du numéro de fournisseur', - 'vendor_number_counter': 'Compteur du numéro de fournisseur', - 'ticket_number_pattern': 'Modèle du numéro de billet', - 'ticket_number_counter': 'Compteur du numéro de billet', - 'payment_number_pattern': 'Modèle du numéro de paiement', - 'payment_number_counter': 'Compteur du numéro de paiement', - 'invoice_number_pattern': 'Modèle du numéro de facture', - 'invoice_number_counter': 'Compteur du numéro de facture', - 'quote_number_pattern': 'Modèle du numéro de soumission', - 'quote_number_counter': 'Compteur du numéro de soumission', - 'client_number_pattern': 'Modèle du numéro de crédit', - 'client_number_counter': 'Compteur du numéro de crédit', - 'credit_number_pattern': 'Modèle du numéro de crédit', - 'credit_number_counter': 'Compteur du numéro de crédit', - 'reset_counter_date': 'Remise à zéro du compteur de date', - 'counter_padding': 'Espacement du compteur', + 'Benutzerdefinierte Nachricht für nicht genehmigten Kostenvoranschlag', + 'lock_invoices': 'Rechnung sperren', + 'translations': 'Übersetzungen', + 'task_number_pattern': 'Aufgabennummernschema', + 'task_number_counter': 'Aufgabennummernzähler', + 'expense_number_pattern': 'Ausgabennummernschema', + 'expense_number_counter': 'Ausgabennummernzähler', + 'vendor_number_pattern': 'Lieferantennummernschema', + 'vendor_number_counter': 'Lieferantennummernzähler', + 'ticket_number_pattern': 'Ticketnummernschema', + 'ticket_number_counter': 'Ticketnummernzähler', + 'payment_number_pattern': 'Zahlungsnummernschema', + 'payment_number_counter': 'Zahlungsnummernzähler', + 'invoice_number_pattern': 'Rechnungsnummernschema', + 'invoice_number_counter': 'Zähler für Rechnungsnummer', + 'quote_number_pattern': 'Kostenvoranschlags-Nummernschema', + 'quote_number_counter': 'Zähler für Angebotsnummer', + 'client_number_pattern': 'Gutschriftnummernschema', + 'client_number_counter': 'Gutschriftnummernzähler', + 'credit_number_pattern': 'Gutschriftnummernzähler', + 'credit_number_counter': 'Gutschriftnummernzähler', + 'reset_counter_date': 'Zählerdatum zurücksetzen', + 'counter_padding': 'Zähler-Innenabstand', 'shared_invoice_quote_counter': - 'Compteur partagé pour les factures et les soumissions', - 'default_tax_name_1': 'Nom de taxe par défaut 1', - 'default_tax_rate_1': 'Taux de taxe par défaut 1', - 'default_tax_name_2': 'Nom de taxe par défaut 2', - 'default_tax_rate_2': 'Taux de taxe par défaut 2', - 'default_tax_name_3': 'Nom de taxe par défaut 3', - 'default_tax_rate_3': 'Taux de taxe par défaut 3', - 'email_subject_invoice': 'Objet du courriel de facture', - 'email_subject_quote': 'Objet du courriel de soumission', - 'email_subject_payment': 'Objet du courriel de paiement', - 'email_subject_payment_partial': 'Sujet du courriel de paiement partiel', - 'show_table': 'Affiche la table', - 'show_list': 'Afficher la liste', - 'client_city': 'Ville du client', - 'client_state': 'Province du client', - 'client_country': 'Pays du client', - 'client_is_active': 'Client actif', - 'client_balance': 'Solde du client', - 'client_address1': 'Rue du clients', - 'client_address2': 'App / bureau du client', - 'vendor_address1': 'Rue du fournisseur', - 'vendor_address2': 'App du fournisseur', - 'client_shipping_address1': 'Rue d\'expédition', - 'client_shipping_address2': 'App / bureau d\'expédition du client', - 'type': 'Type', - 'invoice_amount': 'Montant de la facture', - 'invoice_due_date': 'Échéance', - 'tax_rate1': 'Taux de taxe 1', - 'tax_rate2': 'Taux de taxe 2', - 'tax_rate3': 'Taux de taxe 3', - 'auto_bill': 'Facturation automatique', - 'archived_at': 'Archivé à', - 'has_expenses': 'A Dépenses', - 'custom_taxes1': 'Taxes personnalisées 1', - 'custom_taxes2': 'Taxes personnalisées 2', - 'custom_taxes3': 'Taxes personnalisées 3', - 'custom_taxes4': 'Taxes personnalisées 4', - 'custom_surcharge1': 'Surcharge personnalisée 1', - 'custom_surcharge2': 'Surcharge personnalisée 2', - 'custom_surcharge3': 'Surcharge personnalisée 3', - 'custom_surcharge4': 'Surcharge personnalisée 4', - 'is_deleted': 'Est supprimé', - 'vendor_city': 'Ville du fournisseur', - 'vendor_state': 'Province du fournisseur', - 'vendor_country': 'Pays du fournisseur', - 'is_approved': 'Est approuvé', - 'tax_name': 'Nom de la taxe', - 'tax_amount': 'Montant de taxe', - 'tax_paid': 'Taxe payée', - 'payment_amount': 'Montant du paiement', - 'age': 'Âge', - 'is_running': 'En cours', - 'time_log': 'Journal de temps', - 'bank_id': 'Banque', - 'expense_category_id': 'ID de catégorie de dépense', - 'expense_category': 'Catégorie de dépense', - 'invoice_currency_id': 'ID de la devise de facturation', - 'tax_name1': 'Nom de la taxe 1', - 'tax_name2': 'Nom de la taxe 2', - 'tax_name3': 'Nom de taxe 3', - 'transaction_id': 'ID de transaction', - 'status_color_theme': 'Status Color Theme', - 'load_color_theme': 'Load Color Theme', + 'Gemeinsamen Nummernzähler für Rechnungen und Angebote verwenden', + 'default_tax_name_1': 'Standard-Steuername 1', + 'default_tax_rate_1': 'Standard-Steuersatz 1', + 'default_tax_name_2': 'Standard-Steuername 2', + 'default_tax_rate_2': 'Standard-Steuersatz 2', + 'default_tax_name_3': 'Standard-Steuername 3', + 'default_tax_rate_3': 'Standard-Steuersatz 3', + 'email_subject_invoice': 'EMail Rechnung Betreff', + 'email_subject_quote': 'EMail Angebot Betreff', + 'email_subject_payment': 'EMail Zahlung Betreff', + 'email_subject_payment_partial': 'EMail Teilzahlung Betreff', + 'show_table': 'Zeige Tabelle', + 'show_list': 'Zeige Liste', + 'client_city': 'Kunden-Stadt', + 'client_state': 'Kunden-Bundesland/Kanton', + 'client_country': 'Kunden-Land', + 'client_is_active': 'Kunde ist aktiv', + 'client_balance': 'Kunden Betrag', + 'client_address1': 'Straße des Kunden', + 'client_address2': 'Adresszusatz', + 'vendor_address1': 'Straße Lieferant', + 'vendor_address2': 'Lieferant Apt/Suite', + 'client_shipping_address1': 'Strasse Kundenlieferanschrift', + 'client_shipping_address2': 'Addresszusatz Kundenlieferadresse', + 'type': 'Typ', + 'invoice_amount': 'Rechnungssumme', + 'invoice_due_date': 'Fälligkeitsdatum', + 'tax_rate1': 'Steuersatz 1', + 'tax_rate2': 'Steuersatz 2', + 'tax_rate3': 'Steuersatz 3', + 'auto_bill': 'Automatische Verrechnung', + 'archived_at': 'Archiviert um', + 'has_expenses': 'Hat Ausgaben', + 'custom_taxes1': 'Benutzerdefinierte Steuern 1', + 'custom_taxes2': 'Benutzerdefinierte Steuern 2', + 'custom_taxes3': 'Benutzerdefinierte Steuern 3', + 'custom_taxes4': 'Benutzerdefinierte Steuern 4', + 'custom_surcharge1': 'Benutzerdefinierter Zuschlag 1', + 'custom_surcharge2': 'Benutzerdefinierter Zuschlag 2', + 'custom_surcharge3': 'Benutzerdefinierter Zuschlag 3', + 'custom_surcharge4': 'Benutzerdefinierter Zuschlag 4', + 'is_deleted': 'ist gelöscht', + 'vendor_city': 'Lieferanten-Stadt', + 'vendor_state': 'Lieferanten-Bundesland/Kanton', + 'vendor_country': 'Lieferanten-Land', + 'is_approved': 'Wurde angenommen', + 'tax_name': 'Steuersatz Name', + 'tax_amount': 'Steuerwert', + 'tax_paid': 'Steuern bezahlt', + 'payment_amount': 'Zahlungsbetrag', + 'age': 'Alter', + 'is_running': 'Läuft derzeit', + 'time_log': 'Zeiten', + 'bank_id': 'Bank', + 'expense_category_id': 'Ausgabenkategorie ID', + 'expense_category': 'Ausgabenkategorie', + 'invoice_currency_id': 'Rechnungs-Währungs-ID', + 'tax_name1': 'Steuersatz Name 1', + 'tax_name2': 'Steuersatz Name 2', + 'tax_name3': 'Steuersatz Name 3', + 'transaction_id': 'Transaktions ID', + 'status_color_theme': 'Status Farbschema', + 'load_color_theme': 'lade Farbschema', }, - 'de': { + 'el': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': + 'Το τέλος για ένα τιμολόγιο ποσού :amount θα είναι :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Αποδοχή', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -25756,258 +26116,235 @@ mixin LocalizationsProvider on LocaleCodeAware { 'convert_to': 'Convert To', 'client_currency': 'Client Currency', 'company_currency': 'Company Currency', - 'purged_client': 'Kunde erfolgreich bereinigt', + 'purged_client': 'Επιτυχής εκκαθάριση πελάτη', 'custom_emails_disabled_help': 'To prevent spam we require upgrading to a paid account to customize the email', 'upgrade_to_add_company': 'Upgrade your plan to add companies', 'file_saved_in_downloads_folder': 'The file has been saved in the downloads folder', 'small': 'Small', - 'marked_credit_as_paid': 'Guthaben erfolgreich als bezahlt markiert', - 'marked_credits_as_paid': 'Erfolgreich Kredite als bezahlt markiert', - 'wait_for_loading': - 'Daten werden geladen - bitte warten Sie, bis der Vorgang abgeschlossen ist', - 'wait_for_saving': - 'Datenspeicherung - bitte warten Sie, bis der Vorgang abgeschlossen ist', + 'marked_credit_as_paid': 'Successfully marked credit as paid', + 'marked_credits_as_paid': 'Successfully marked credits as paid', + 'wait_for_loading': 'Data loading - please wait for it to complete', + 'wait_for_saving': 'Data saving - please wait for it to complete', 'html_preview_warning': - 'Hinweis: Die hier vorgenommenen Änderungen werden nur in der Vorschau angezeigt, sie müssen in den obigen Registerkarten angewendet werden, um gespeichert zu werden.', - 'remaining': 'Verbleibende', - 'invoice_paid': 'Rechnung bezahlt', - 'activity_120': - ':user erstellte wiederkehrende Ausgabe :recurring_expense', - 'activity_121': - ':user aktualisiert wiederkehrende Ausgabe :recurring_expense', - 'activity_122': - ':user archivierte wiederkehrende Ausgabe :recurring_expense', - 'activity_123': ':user löschte wiederkehrende Ausgabe :recurring_expense', - 'activity_124': - ':user stellte wiederkehrende Ausgabe :recurring_expense wieder her', + 'Note: changes made here are only previewed, they must be applied in the tabs above to be saved', + 'remaining': 'Remaining', + 'invoice_paid': 'Invoice Paid', + 'activity_120': ':user created recurring expense :recurring_expense', + 'activity_121': ':user updated recurring expense :recurring_expense', + 'activity_122': ':user archived recurring expense :recurring_expense', + 'activity_123': ':user deleted recurring expense :recurring_expense', + 'activity_124': ':user restored recurring expense :recurring_expense', 'normal': 'Normal', - 'large': 'Groß', - 'extra_large': 'Extra Groß', - 'show_pdf_preview': 'PDF-Vorschau anzeigen', - 'show_pdf_preview_help': - 'PDF-Vorschau bei der Bearbeitung von Rechnungen anzeigen', - 'print_pdf': 'PDF drucken', - 'remind_me': 'Erinnere mich', + 'large': 'Large', + 'extra_large': 'Extra Large', + 'show_pdf_preview': 'Show PDF Preview', + 'show_pdf_preview_help': 'Display PDF preview while editing invoices', + 'print_pdf': 'Print PDF', + 'remind_me': 'Remind Me', 'instant_bank_pay': 'Instant Bank Pay', - 'click_selected': 'Ausgewähltes anklicken', - 'hide_preview': 'Vorschau ausblenden', - 'edit_record': 'Datensatz bearbeiten', + 'click_selected': 'Click Selected', + 'hide_preview': 'Hide Preview', + 'edit_record': 'Edit Record', 'credit_is_more_than_invoice': - 'Der Kreditbetrag kann nicht höher sein als der Rechnungsbetrag', + 'The credit amount can not be more than the invoice amount', 'giropay': 'GiroPay', - 'direct_debit': 'Lastschriftverfahren', - 'please_set_a_password': 'Bitte legen Sie ein Kontopasswort fest', - 'set_password': 'Passwort festlegen', + 'direct_debit': 'Direct Debit', + 'please_set_a_password': 'Please set an account password', + 'set_password': 'Ορισμός Κωδικού Πρόσβασης', 'recommend_desktop': - 'Wir empfehlen, die Desktop-Anwendung zu verwenden, um die beste Leistung zu erzielen.', + 'We recommend using the desktop app for the best performance', 'recommend_mobile': - 'Wir empfehlen die Verwendung der mobilen App, um die beste Leistung zu erzielen.', - 'disconnected_gateway': 'Gateway erfolgreich getrennt', - 'disconnect': 'Trennen', - 'add_to_invoices': 'Zu Rechnungen hinzufügen', - 'acss': 'Vorautorisierte Lastschriftzahlungen', - 'becs': 'BECS-Lastschriftverfahren', - 'bulk_download': 'Herunterladen', + 'We recommend using the mobile app for the best performance', + 'disconnected_gateway': 'Successfully disconnected gateway', + 'disconnect': 'Disconnect', + 'add_to_invoices': 'Add to Invoices', + 'acss': 'Pre-authorized debit payments', + 'becs': 'BECS Direct Debit', + 'bulk_download': 'Download', 'persist_data_help': - 'Daten lokal speichern, damit die Anwendung schneller starten kann. (Deaktivierung kann die Leistung bei großen Konten verbessern)', - 'persist_ui': 'Benutzeroberfläche beibehalten', + 'Save data locally to enable the app to start faster, disabling may improve performance in large accounts', + 'persist_ui': 'Persist UI', 'persist_ui_help': - 'UI-Status lokal speichern, damit die Anwendung an der letzten Position startet (Deaktivierung kann die Leistung verbessern)', - 'client_postal_code': 'Postleitzahl des Kunden', - 'client_vat_number': 'Umsatzsteuer-Identifikationsnummer des Kunden', + 'Save UI state locally to enable the app to start at the last location, disabling may improve performance', + 'client_postal_code': 'Client Postal Code', + 'client_vat_number': 'Client VAT Number', 'has_tasks': 'Has Tasks', 'registration': 'Registration', 'unauthorized_stripe_warning': - 'Bitte autorisieren Sie Stripe zur Annahme von Online-Zahlungen.', - 'view_expense': 'Ausgabe # :expense ansehen', - 'view_statement': 'Zeige Bericht', - 'sepa': 'SEPA-Lastschrift', + 'Please authorize Stripe to accept online payments.', + 'view_expense': 'Εμφάνιση δαπάνης # :expense', + 'view_statement': 'Εμφάνιση Δήλωσης', + 'sepa': 'Απευθείας πίστωση SEPA', 'ideal': 'iDEAL', 'przelewy24': 'Przelewy24', 'eps': 'EPS', 'fpx': 'FPX', - 'update_all_records': 'Alle Datensätze aktualisieren', - 'system': 'System', - 'set_default_company': 'Standardunternehmen festlegen', - 'updated_company': 'Unternehmen wurde erfolgreich aktualisiert', + 'update_all_records': 'Update all records', + 'system': 'Σύστημα', + 'set_default_company': 'Set Default Company', + 'updated_company': 'Successfully updated company', 'kbc': 'KBC', 'bancontact': 'Bancontact', - 'why_are_you_leaving': - 'Helfen Sie uns, uns zu verbessern, indem Sie uns sagen, warum (optional)', + 'why_are_you_leaving': 'Help us improve by telling us why (optional)', 'webhook_success': 'Webhook Success', - 'error_cross_client_tasks': - 'Die Aufgaben müssen alle zum selben Kunden gehören', + 'error_cross_client_tasks': 'Tasks must all belong to the same client', 'error_cross_client_expenses': - 'Die Ausgaben müssen alle zu demselben Kunden gehören', + 'Expenses must all belong to the same client', 'app': 'App', - 'for_best_performance': - 'Für die beste Leistung laden Sie die App herunter :app', - 'gross_line_total': 'Bruttozeile gesamt', + 'for_best_performance': 'For the best performance download the :app app', + 'gross_line_total': 'Gross line total', 'bulk_email_invoice': 'Email Invoice', 'bulk_email_quote': 'Email Quote', 'bulk_email_credit': 'Email Credit', - 'from_name': 'Absendername', - 'clone_to_expense': 'Klonen zu Ausgabe', - 'recurring_expense': 'Wiederkehrende Ausgabe', - 'recurring_expenses': 'Wiederkehrende Ausgaben', - 'new_recurring_expense': 'Wiederkehrende Ausgabe eingeben', - 'edit_recurring_expense': 'Wiederkehrende Ausgabe bearbeiten', - 'created_recurring_expense': 'Wiederkehrende Ausgabe wurde erstellt', - 'updated_recurring_expense': 'Wiederkehrende Ausgabe wurde aktualisiert', - 'archived_recurring_expense': 'Wiederkehrende Ausgabe wurde archiviert', - 'deleted_recurring_expense': 'Projekt wurde gelöscht', - 'removed_recurring_expense': - 'Erfolgreich wiederkehrende Ausgaben entfernt', + 'from_name': 'Από Όνομα', + 'clone_to_expense': 'Clone to expense', + 'recurring_expense': 'Επαναλαμβανόμενη Δαπάνη', + 'recurring_expenses': 'Επαναλαμβανόμενες Δαπάνες', + 'new_recurring_expense': 'Νέα Επαναλαμβανόμενη Δαπάνη', + 'edit_recurring_expense': 'Επεξεργασία Επαναλαμβανόμενης Δαπάνης', + 'created_recurring_expense': + 'Επιτυχής δημιουργία επαναλαμβανόμενης δαπάνης', + 'updated_recurring_expense': + 'Επιτυχής ενημέρωση επαναλαμβανόμενης δαπάνης', + 'archived_recurring_expense': + 'Επιτυχής αρχειοθέτηση επαναλαμβανόμενης δαπάνης', + 'deleted_recurring_expense': 'Επιτυχής διαγραφή project', + 'removed_recurring_expense': 'Successfully removed recurring expense', 'restored_recurring_expense': - 'Wiederkehrende Ausgabe wurde wiederhergestellt', - 'search_recurring_expense': 'Wiederkehrende Ausgaben suchen', - 'search_recurring_expenses': 'Wiederkehrende Ausgaben suchen', - 'last_sent_date': 'Datum des letzten Versands', - 'include_drafts': 'Entwürfe einschließen', - 'include_drafts_help': - 'Entwürfe von Aufzeichnungen in Berichte einbeziehen', - 'is_invoiced': 'Ist in Rechnung gestellt', + 'Επιτυχής επαναφορά επαναλαμβανόμενης δαπάνης', + 'search_recurring_expense': 'Search Recurring Expense', + 'search_recurring_expenses': 'Search Recurring Expenses', + 'last_sent_date': 'Last Sent Date', + 'include_drafts': 'Include Drafts', + 'include_drafts_help': 'Include draft records in reports', + 'is_invoiced': 'Is Invoiced', 'change_plan': 'Change Plan', - 'persist_data': 'Daten aufbewahren', - 'customer_count': 'Kundenzahl', - 'verify_customers': 'Kunden überprüfen', + 'persist_data': 'Persist Data', + 'customer_count': 'Customer Count', + 'verify_customers': 'Verify Customers', 'google_analytics': 'Google Analytics', 'google_analytics_tracking_id': 'Google Analytics Tracking ID', 'decimal_comma': 'Decimal Comma', - 'use_comma_as_decimal_place': - 'Komma als Dezimalstelle in Formularen verwenden', + 'use_comma_as_decimal_place': 'Use comma as decimal place in forms', 'select_method': 'Select Method', 'select_platform': 'Select Platform', 'use_web_app_to_connect_gmail': - 'Bitte verwenden Sie die Web-App, um sich mit Gmail zu verbinden', - 'expense_tax_help': 'Postensteuersätze sind deaktiviert', + 'Please use the web app to connect to Gmail', + 'expense_tax_help': 'Item tax rates are disabled', 'enable_markdown': 'Enable Markdown', - 'enable_markdown_help': - 'Konvertierung von Markdown in HTML in der PDF-Datei', - 'user_guide': 'Nutzer-Anleitung', - 'add_second_contact': 'Zweiten Kontakt hinzufügen', - 'previous_page': 'Vorherige Seite', - 'next_page': 'Nächste Seite', - 'export_colors': 'Farben exportieren', - 'import_colors': 'Farben importieren', - 'clear_all': 'Alle löschen', - 'contrast': 'Kontrast', - 'custom_colors': 'Eigene Farben', - 'colors': 'Farben', - 'sidebar_active_background_color': - 'Aktive Hintergrundfarbe der Seitenleiste', - 'sidebar_active_font_color': 'Schriftfarbe der aktiven Seitenleiste', - 'sidebar_inactive_background_color': - 'Seitenleiste Inaktive Hintergrundfarbe', - 'sidebar_inactive_font_color': 'Seitenleiste Inaktiv Schriftfarbe', + 'enable_markdown_help': 'Convert markdown to HTML on the PDF', + 'user_guide': 'Οδηγός Χρήσης', + 'add_second_contact': 'Add Second Contact', + 'previous_page': 'Previous Page', + 'next_page': 'Next Page', + 'export_colors': 'Export Colors', + 'import_colors': 'Import Colors', + 'clear_all': 'Clear All', + 'contrast': 'Contrast', + 'custom_colors': 'Custom Colors', + 'colors': 'Colors', + 'sidebar_active_background_color': 'Sidebar Active Background Color', + 'sidebar_active_font_color': 'Sidebar Active Font Color', + 'sidebar_inactive_background_color': 'Sidebar Inactive Background Color', + 'sidebar_inactive_font_color': 'Sidebar Inactive Font Color', 'table_alternate_row_background_color': - 'Tabelle alternierende Zeilenhintergrundfarbe', - 'invoice_header_background_color': - 'Hintergrundfarbe der Rechnungskopfzeile', - 'invoice_header_font_color': 'Schriftfarbe der Rechnungskopfzeile', - 'net_subtotal': 'Netto', - 'review_app': 'App bewerten', - 'check_status': 'Status prüfen', - 'free_trial': 'Kostenlose Testversion', + 'Table Alternate Row Background Color', + 'invoice_header_background_color': 'Invoice Header Background Color', + 'invoice_header_font_color': 'Invoice Header Font Color', + 'net_subtotal': 'Καθαρό Σύνολο', + 'review_app': 'Review App', + 'check_status': 'Check Status', + 'free_trial': 'Free Trial', 'free_trial_ends_in_days': - 'Die Testversion des Pro-Plans endet in :count Tagen, klicken Sie zum Upgrade.', + 'The Pro plan trial ends in :count days, click to upgrade.', 'free_trial_ends_today': - 'Heute ist der letzte Tag des Pro-Tarifs, klicken Sie zum Upgrade.', - 'change_email': 'E-Mail ändern', + 'Today is the last day of the Pro plan trial, click to upgrade.', + 'change_email': 'Change Email', 'client_portal_domain_hint': - 'Konfigurieren Sie optional eine separate Kunden-Portal-Domäne', - 'tasks_shown_in_portal': 'Im Portal angezeigte Aufgaben', - 'uninvoiced': 'Nicht in Rechnung gestellt', + 'Optionally configure a separate client portal domain', + 'tasks_shown_in_portal': 'Tasks Shown in Portal', + 'uninvoiced': 'Uninvoiced', 'subdomain_guide': - 'Die Subdomain wird im Kundenportal verwendet, um Links zu personalisieren, die Ihrer Marke entsprechen. z.B. https://your-brand.invoicing.co', - 'send_time': 'Sendezeit', - 'import_data': 'Importiere Daten', - 'import_settings': 'Einstellungen importieren', - 'json_file_missing': 'Bitte stellen Sie die JSON-Datei zur Verfügung', - 'json_option_missing': - 'Bitte wählen Sie, um die Einstellungen und/oder Daten zu importieren', + 'The subdomain is used in the client portal to personalize links to match your brand. ie, https://your-brand.invoicing.co', + 'send_time': 'Send Time', + 'import_data': 'Εισαγωγή Δεδομένων', + 'import_settings': 'Import Settings', + 'json_file_missing': 'Please provide the JSON file', + 'json_option_missing': 'Please select to import the settings and/or data', 'json': 'JSON', - 'no_payment_types_enabled': 'Keine Zahlungsarten aktiviert', - 'wait_for_data': - 'Bitte warten Sie, bis die Daten vollständig geladen sind', - 'net_total': 'Netto Gesamt', - 'has_taxes': 'enthält Steuern', - 'import_customers': 'Kunden importieren', + 'no_payment_types_enabled': 'No payment types enabled', + 'wait_for_data': 'Please wait for the data to finish loading', + 'net_total': 'Net Total', + 'has_taxes': 'Has Taxes', + 'import_customers': 'Import Customers', 'imported_customers': 'Successfully started importing customers', - 'login_success': 'Erfolgreiche Anmeldung', - 'login_failure': 'Anmeldung fehlgeschlagen', + 'login_success': 'Successful Login', + 'login_failure': 'Failed Login', 'exported_data': - 'Sobald die Datei fertig ist, erhalten Sie eine E-Mail mit einem Download-Link.', - 'include_deleted_clients': 'Gelöschte Kunden einbeziehen', - 'include_deleted_clients_help': 'Datensätze von gelöschten Kunden laden', - 'step_1_sign_in': 'Schritt 1: Registrieren', - 'step_2_authorize': 'Schritt 2: autorisieren', + 'Once the file is ready you\"ll receive an email with a download link', + 'include_deleted_clients': 'Include Deleted Clients', + 'include_deleted_clients_help': + 'Load records belonging to deleted clients', + 'step_1_sign_in': 'Step 1: Sign In', + 'step_2_authorize': 'Step 2: Authorize', 'account_id': 'Account ID', - 'migration_not_yet_completed': - 'Die Migration ist noch nicht abgeschlossen', - 'activity_100': - ':user hat die wiederkehrende Rechnung :recurring_invoice erstellt.', - 'activity_101': - ':user hat die wiederkehrende Rechnung :recurring_invoice aktuallisiert', - 'activity_102': - ':user hat die wiederkehrende Rechnung :recurring_invoice archiviert', - 'activity_103': - ':user hat die wiederkehrende Rechnung :recurring_invoice gelöscht.', - 'activity_104': - ':user hat die wiederkehrende Rechnung :recurring_invoice wiederhergestellt.', - 'show_task_end_date': 'Ende der Aufgabe anzeigen', - 'show_task_end_date_help': - 'Aktivieren Sie die Angabe des Enddatums der Aufgabe', - 'gateway_setup': 'Gateway-Einstellungen', - 'preview_sidebar': 'Vorschau der Seitenleiste', + 'migration_not_yet_completed': 'The migration has not yet completed', + 'activity_100': ':user created recurring invoice :recurring_invoice', + 'activity_101': ':user updated recurring invoice :recurring_invoice', + 'activity_102': ':user archived recurring invoice :recurring_invoice', + 'activity_103': ':user deleted recurring invoice :recurring_invoice', + 'activity_104': ':user restored recurring invoice :recurring_invoice', + 'show_task_end_date': 'Show Task End Date', + 'show_task_end_date_help': 'Enable specifying the task end date', + 'gateway_setup': 'Gateway Setup', + 'preview_sidebar': 'Preview Sidebar', 'years_data_shown': 'Years Data Shown', - 'ended_all_sessions': 'alle Sitzungen erfolgreich beendet', - 'end_all_sessions': 'Alle Sitzungen beenden', + 'ended_all_sessions': 'Successfully ended all sessions', + 'end_all_sessions': 'End All Sessions', 'count_session': '1 Session', 'count_sessions': ':count Sessions', - 'invoice_created': 'Rechnung erstellt', - 'quote_created': 'Angebot erstellt', - 'credit_created': 'Gutschrift erstellt', - 'pro': 'Pro', + 'invoice_created': 'Invoice Created', + 'quote_created': 'Quote Created', + 'credit_created': 'Credit Created', + 'pro': 'Επαγγελματική', 'enterprise': 'Enterprise', - 'last_updated': 'Zuletzt aktualisiert', + 'last_updated': 'Τελευταία ενημέρωση', 'invoice_item': 'Invoice Item', 'quote_item': 'Quote Item', - 'contact_first_name': 'Kontakt Vorname', - 'contact_last_name': 'Kontakt Nachname', + 'contact_first_name': 'Όνομα Επαφής', + 'contact_last_name': 'Επώνυμο Επαφής', 'order': 'Order', - 'unassigned': 'Nicht zugewiesen', + 'unassigned': 'Δεν έχει ανατεθεί', 'partial_value': - 'Muss grösser als Null und kleiner als der Gesamtbetrag sein', + 'Πρέπει να είναι μεγαλύτερο του μηδενός και μικρότερο από το σύνολο.', 'search_kanban': 'Search Kanban', 'search_kanbans': 'Search Kanban', 'kanban': 'Kanban', - 'enable': 'Aktivieren', - 'move_top': 'Nach oben bewegen', - 'move_up': 'Nach unten bewegen', + 'enable': 'Ενεργοποίηση', + 'move_top': 'Move Top', + 'move_up': 'Move Up', 'move_down': 'Move Down', 'move_bottom': 'Move Bottom', 'subdomain_help': - 'Passen Sie die Rechnungslink-Subdomäne an oder stellen Sie die Rechnung auf Ihrer eigenen Webseite zur Verfügung.', + 'Ορίστε τον υποτομέα ή εμφάνιστε το τιμολόγιο στη δική σας ιστοσελίδα', 'body_variable_missing': - 'Fehler: das benutzerdefinierte E-Mail Template muss die :body Variable beinhalten', - 'add_body_variable_message': - 'bitte stelle sicher das die :body Variable eingefügt ist', + 'Error: the custom email must include a :body variable', + 'add_body_variable_message': 'Make sure to include a :body variable', 'view_date_formats': 'View Date Formats', 'is_viewed': 'Is Viewed', 'letter': 'Letter', 'legal': 'Legal', - 'page_layout': 'Seiten Layout', - 'portrait': 'Hochformat', - 'landscape': 'Querformat', + 'page_layout': 'Page Layout', + 'portrait': 'Portrait', + 'landscape': 'Landscape', 'owner_upgrade_to_paid_plan': - 'Der Kontoinhaber kann auf einen kostenpflichtigen Plan upgraden, um die erweiterten erweiterten Einstellungen zu aktivieren', + 'The account owner can upgrade to a paid plan to enable the advanced advanced settings', 'upgrade_to_paid_plan': - 'Führen Sie ein Upgrade auf einen kostenpflichtigen Plan durch, um die erweiterten Einstellungen zu aktivieren', - 'invoice_payment_terms': 'Zahlungsbedingungen für Rechnungen', - 'quote_valid_until': 'Angebot gültig bis', + 'Upgrade to a paid plan to enable the advanced settings', + 'invoice_payment_terms': 'Invoice Payment Terms', + 'quote_valid_until': 'Quote Valid Until', 'no_headers': 'No Headers', 'add_header': 'Add Header', 'remove_header': 'Remove Header', @@ -26016,7 +26353,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'header_key': 'Header Key', 'header_value': 'Header Value', 'recurring_products': 'Recurring Products', - 'promo_code': 'Gutscheincode', + 'promo_code': 'Promo code', 'promo_discount': 'Promo Discount', 'allow_cancellation': 'Allow Cancellation', 'per_seat_enabled': 'Per Seat Enabled', @@ -26029,1767 +26366,1789 @@ mixin LocalizationsProvider on LocaleCodeAware { 'refund_period': 'Refund Period', 'webhook_configuration': 'Webhook Configuration', 'purchase_page': 'Purchase Page', - 'security': 'Sicherheit', - 'email_bounced': 'E-Mail zurückgesendet', + 'security': 'Ασφάλεια', + 'email_bounced': 'Email Bounced', 'email_spam_complaint': 'Spam Complaint', - 'email_delivery': 'E-Mail-Zustellung', + 'email_delivery': 'Email Delivery', 'webhook_response': 'Webhook Response', 'pdf_response': 'PDF Response', - 'authentication_failure': 'Authentifizierungsfehler', - 'pdf_failed': 'PDF fehgeschlagen', - 'pdf_success': 'PDF erfolgreich', - 'modified': 'geändert', - 'subscription': 'Abonnement', - 'subscriptions': 'Abonnements', - 'new_subscription': 'Neues Abonnement', - 'edit_subscription': 'Abonnement bearbeiten', - 'created_subscription': 'Abonnement erfolgreich erstellt', - 'updated_subscription': 'Abonnement erfolgreich aktualisiert', - 'archived_subscription': 'Abonnement erfolgreich archiviert', - 'deleted_subscription': 'Abonnement gelöscht', - 'removed_subscription': 'Abonnement entfernt', - 'restored_subscription': 'Abonnement wiederhergestellt', - 'search_subscription': 'Suchen Sie 1 Abonnement', - 'search_subscriptions': ':count Abonnements durchsuchen', - 'subdomain_is_not_available': 'Subdomain ist nicht verfügbar', - 'connect_gmail': 'Mit Gmail verbinden', - 'disconnect_gmail': 'von Gmail trennen', - 'connected_gmail': 'Mit Gmail erfolgreich verbunden', - 'disconnected_gmail': 'Von Gmail erfolgreich getrennt', + 'authentication_failure': 'Authentication Failure', + 'pdf_failed': 'PDF Failed', + 'pdf_success': 'PDF Success', + 'modified': 'Modified', + 'subscription': 'Subscription', + 'subscriptions': 'Εγγραφές', + 'new_subscription': 'New Subscription', + 'edit_subscription': 'Επεξεργασία Συνδρομής', + 'created_subscription': 'Επιτυχής δημιουργία συνδρομής', + 'updated_subscription': 'Επιτυχής ενημέρωση συνδρομής', + 'archived_subscription': 'Επιτυχής αρχειοθέτηση συνδρομής', + 'deleted_subscription': 'Successfully deleted subscription', + 'removed_subscription': 'Successfully removed subscription', + 'restored_subscription': 'Successfully restored subscription', + 'search_subscription': 'Search 1 Subscription', + 'search_subscriptions': 'Search :count Subscriptions', + 'subdomain_is_not_available': 'Subdomain is not available', + 'connect_gmail': 'Connect Gmail', + 'disconnect_gmail': 'Disconnect Gmail', + 'connected_gmail': 'Successfully connected Gmail', + 'disconnected_gmail': 'Successfully disconnected Gmail', 'update_fail_help': - 'Änderungen an der Codebasis können das Update blockieren, Sie können diesen Befehl ausführen, um die Änderungen zu verwerfen:', - 'client_id_number': 'Kundennummer', - 'count_minutes': ':count Minuten', - 'password_timeout': 'Passwort Timeout', - 'shared_invoice_credit_counter': 'gemeinsamer Rechnungs- / Kreditzähler', - 'use_last_email': 'Vorherige E-Mail benutzen', - 'activate_company': 'Unternehmen aktivieren', + 'Changes to the codebase may be blocking the update, you can run this command to discard the changes:', + 'client_id_number': 'Client ID Number', + 'count_minutes': ':count Minutes', + 'password_timeout': 'Password Timeout', + 'shared_invoice_credit_counter': 'Shared Invoice/Credit Counter', + 'use_last_email': 'Use last email', + 'activate_company': 'Activate Company', 'activate_company_help': - 'Aktivieren sie Email, wiederkehrende Rechnungen und Benachrichtigungen', - 'an_error_occurred_try_again': - 'Ein Fehler ist aufgetreten, bitte versuchen Sie es erneut.', - 'please_first_set_a_password': 'Bitte vergeben Sie zuerst ein Passwort.', + 'Enable emails, recurring invoices and notifications', + 'an_error_occurred_try_again': 'An error occurred, please try again', + 'please_first_set_a_password': 'Please first set a password', 'changing_phone_disables_two_factor': - 'Achtung: Das Ändern deiner Telefonnummer wird die Zwei-Faktor-Authentifizierung deaktivieren', - 'help_translate': 'Hilf mit beim Übersetzen', - 'please_select_a_country': 'Bitte wählen Sie ein Land', - 'resend_invite': 'Einladung erneut versenden', - 'disabled_two_factor': '2FA erfolgreich deaktiviert', - 'connected_google': 'Konto erfolgreich verbunden.', - 'disconnected_google': 'Konto erfolgreich getrennt.', - 'delivered': 'zugestellt', - 'bounced': 'Abpraller', + 'Warning: Changing your phone number will disable 2FA', + 'help_translate': 'Help Translate', + 'please_select_a_country': 'Please select a country', + 'resend_invite': 'Επαναποστολή Πρόσκλησης', + 'disabled_two_factor': 'Successfully disabled 2FA', + 'connected_google': 'Successfully connected account', + 'disconnected_google': 'Successfully disconnected account', + 'delivered': 'Delivered', + 'bounced': 'Επεστράφη', 'spam': 'Spam', - 'view_docs': 'Dokumentation ansehen.', + 'view_docs': 'View Docs', 'enter_phone_to_enable_two_factor': - 'Bitte gib eine Handynummer an, um die Zwei-Faktor-Authentifizierung zu aktivieren', - 'send_sms': 'SMS senden', - 'sms_code': 'SMS-Code', - 'two_factor_setup_help': 'Barcode mit :link kompatibler App scannen.', + 'Please provide a mobile phone number to enable two factor authentication', + 'send_sms': 'Send SMS', + 'sms_code': 'SMS Code', + 'two_factor_setup_help': + 'Σκανάρετε το barcode με μία :link συμβατή εφαρμογή.', 'enabled_two_factor': - 'Zwei-Faktor-Authentifizierung erfolgreich aktiviert', - 'connect_google': 'Google-Konto verbinden', - 'disconnect_google': 'Google-Konto entfernen', - 'enable_two_factor': 'Zwei-Faktor-Authentifizierung', - 'disable_two_factor': 'Zwei-Faktor-Authentifizierung deaktivieren', + 'Επιτυχής ενεργοποίηση Αυθεντικοποίησης Δύο Σημείων', + 'connect_google': 'Connect Google', + 'disconnect_google': 'Disconnect Google', + 'enable_two_factor': 'Αυθεντικοποίηση δύο σημείων', + 'disable_two_factor': 'Disable Two Factor', 'require_password_with_social_login': - 'Password mit Verknüpfung zu Sozialmedia notwendig', - 'stay_logged_in': 'Eingeloggt bleiben', - 'session_about_to_expire': 'Warnung: Ihre Sitzung läuft bald ab', - 'count_hours': ':count Stunden', - 'count_day': '1 Tag', - 'count_days': ':count Tage', - 'web_session_timeout': 'Web-Sitzungs-Timeout', - 'security_settings': 'Sicherheitseinstellungen', - 'resend_email': 'Bestätigungsemail erneut versenden', - 'confirm_your_email_address': 'Bitte bestätigen Sie Ihre E-Mail-Adresse', - 'refunded_payment': 'Zahlung erstattet', - 'partially_unapplied': 'Teilweise unangewandt', - 'select_a_gmail_user': - 'Bitte wählen Sie einen mit Gmail authentifizierten Benutzer', - 'list_long_press': 'Liste Langes Drücken', - 'show_actions': 'Zeige Aktionen', - 'start_multiselect': 'Mehrfachauswahl', + 'Require Password with Social Login', + 'stay_logged_in': 'Stay Logged In', + 'session_about_to_expire': 'Warning: Your session is about to expire', + 'count_hours': ':count Hours', + 'count_day': '1 Day', + 'count_days': ':count Days', + 'web_session_timeout': 'Web Session Timeout', + 'security_settings': 'Security Settings', + 'resend_email': 'Resend Email', + 'confirm_your_email_address': 'Please confirm your email address', + 'refunded_payment': 'Επεστραμένη Πληρωμή', + 'partially_unapplied': 'Partially Unapplied', + 'select_a_gmail_user': 'Please select a user authenticated with Gmail', + 'list_long_press': 'List Long Press', + 'show_actions': 'Show Actions', + 'start_multiselect': 'Start Multiselect', 'email_sent_to_confirm_email': - 'Eine E-Mail wurde versandt um Ihre E-Mail-Adresse zu bestätigen.', + 'An email has been sent to confirm the email address', 'counter_pattern_error': - 'Um :client_counter zu verwenden, fügen Sie bitte entweder :client_number oder :client_id_number hinzu, um Konflikte zu vermeiden', - 'this_quarter': 'Dieses Quartal', - 'last_quarter': 'Letztes Quartal', - 'to_update_run': 'Zum Änderungslauf', - 'convert_to_invoice': 'In Rechnung umwandeln', - 'registration_url': 'Registrierungs-URL', - 'invoice_project': 'Projekt berechnen', - 'invoice_task': 'Aufgabe in Rechnung stellen', - 'invoice_expense': 'Ausgabe abrechnen', - 'search_payment_term': 'Suche 1 Zahlungsbedingung', - 'search_payment_terms': 'Suche :count Zahlungsbedingungen', - 'save_and_preview': 'Speichern und Vorschau anzeigen', - 'save_and_email': 'Speichern und verschicken', - 'supported_events': 'Unterstützte Ereignisse', - 'converted_amount': 'Umgerechneter Betrag', - 'converted_balance': 'Guthabenstand', - 'converted_paid_to_date': 'Umgewandelt Bezahlt bis Datum', - 'converted_credit_balance': 'Umgerechneter Guthabenbetrag', - 'converted_total': 'Umgerechnet Total', - 'is_sent': 'Gesendet', - 'default_documents': 'Standard-Dokumente', - 'document_upload': 'Dokument hochladen', - 'document_upload_help': 'Erlaube Kunden Dokumente hochzuladen', - 'expense_total': 'Ausgabensumme', - 'enter_taxes': 'Steuersätze eingeben', - 'by_rate': 'Nach Satz', - 'by_amount': 'Nach Betrag', - 'enter_amount': 'Betrag eingeben', - 'before_taxes': 'Vor Steuern', - 'after_taxes': 'Nach Steuern', - 'color': 'Farbe', - 'show': 'anzeigen', - 'hide': 'Verbergen', - 'empty_columns': 'Leere Spalten', - 'debug_mode_is_enabled': 'Der Entwicklungsmodus ist aktiviert', + 'To use :client_counter please add either :client_number or :client_id_number to prevent conflicts', + 'this_quarter': 'Τρέχον Τετράμηνο', + 'last_quarter': 'Τελευταίο Τετράμηνο', + 'to_update_run': 'Για ενημέρωση εκτελέστε', + 'convert_to_invoice': 'Μετατροπή σε Τιμολόγιο', + 'registration_url': 'URL Εγγραφής', + 'invoice_project': 'Τιμολόγηση Project', + 'invoice_task': 'Τιμολόγηση Εργασίας', + 'invoice_expense': 'Τιμολόγηση Δαπάνης', + 'search_payment_term': 'Αναζήτηση 1 Όρου Πληρωμής', + 'search_payment_terms': 'Αναζήτηση :count Όρων Πληρωμής', + 'save_and_preview': 'Αποθήκευση και Προεπισκόπηση', + 'save_and_email': 'Αποθήκευση και Αποστολή Email', + 'supported_events': 'Υποστηριζόμενα Γεγονότα', + 'converted_amount': 'Μετατρεπόμενο Ποσό', + 'converted_balance': 'Υπόλοιπο από Μετατροπή', + 'converted_paid_to_date': 'Converted Paid to Date', + 'converted_credit_balance': 'Converted Credit Balance', + 'converted_total': 'Converted Total', + 'is_sent': 'Έχει Αποσταλεί', + 'default_documents': 'Προεπιλεγμένα Κείμενα', + 'document_upload': 'Μεταφόρτωση Εγγράφου', + 'document_upload_help': + 'Ενεργοποίησε τη δυνατότητα οι πελάτες να μεταφορτώνουν έγγραφα', + 'expense_total': 'Συνολική Δαπάνη', + 'enter_taxes': 'Εισαγετε Φόρους', + 'by_rate': 'Με Ποσοστό', + 'by_amount': 'Με Ποσό', + 'enter_amount': 'Εισάγετε Ποσό', + 'before_taxes': 'Προ Φόρων', + 'after_taxes': 'Μετά Φόρων', + 'color': 'Χρώμα', + 'show': 'Εμφάνισε', + 'hide': 'Απόκρυψη', + 'empty_columns': 'Κενές Στήλες', + 'debug_mode_is_enabled': + 'Το περιβάλλον αποσφαλμάτωσης έχει ενεργοποιηθεί', 'debug_mode_is_enabled_help': - 'Warnung: Es ist für die Verwendung auf lokalen Rechnern gedacht und kann Anmeldedaten preisgeben. Klicken Sie, um mehr zu erfahren.', - 'running_tasks': 'Laufende Aufgaben', - 'recent_tasks': 'Kürzliche Aufgaben', - 'recent_expenses': 'Kürzliche Ausgaben', - 'upcoming_expenses': 'Zukünftige Ausgaben', - 'update_app': 'App aktualisieren', - 'started_import': 'Import erfolgreich gestartet', - 'duplicate_column_mapping': 'Dupliziere Spaltenzuordnung', - 'uses_inclusive_taxes': 'Benutzt Inklusive Steuern', - 'is_amount_discount': 'Ist Betrag ermäßigt', - 'column': 'Spalte', - 'sample': 'Beispiel', - 'map_to': 'Zuordnen', - 'import': 'Importieren', - 'first_row_as_column_names': 'Benutze erste Zeile als Spaltenüberschrift', - 'select_file': 'Bitte wählen sie eine Datei', - 'no_file_selected': 'Keine Datei ausgewählt', - 'csv_file': 'Wähle CSV Datei', + 'Προειδοποίηση: προορίζεται για χρήση σε τοπικά μηχανήματα, μπορεί να οδηγήσει σε διαρροή κωδικών. Πατήστε για να μάθετε περισσότερα.', + 'running_tasks': 'Εκτελούμενες εργασίες', + 'recent_tasks': 'Πρόσφατες Εργασίες', + 'recent_expenses': 'Πρόσφατες Δαπάνες', + 'upcoming_expenses': 'Επερχόμενες Δαπάνες', + 'update_app': 'Ενημέρωση Εφαρμογής', + 'started_import': 'Επιτυχής έναρξη εισαγωγής', + 'duplicate_column_mapping': 'Κλωνοποίηση αντιστοίχισης στηλών', + 'uses_inclusive_taxes': 'Χρησιμοποιούνται Συμπεριλαμβανόμενοι Φόροι', + 'is_amount_discount': 'Είναι Ποσό Έκπτωσης', + 'column': 'Κολόνα', + 'sample': 'Παράδειγμα', + 'map_to': 'Αντιστοίχιση Σε', + 'import': 'Εισαγωγή', + 'first_row_as_column_names': 'Χρήση της πρώτης σειράς ως ονόματα στηλών', + 'select_file': 'Παρακαλώ επιλέξτε ένα αρχείο', + 'no_file_selected': 'Δεν Επιλέχθηκε Αρχείο', + 'csv_file': 'Αρχείο CSV', 'csv': 'CSV', 'freshbooks': 'FreshBooks', 'invoice2go': 'Invoice2go', 'invoicely': 'Invoicely', 'waveaccounting': 'Wave Accounting', 'zoho': 'Zoho', - 'accounting': 'Buchhaltung', - 'required_files_missing': 'Bitte geben Sie alle CSV-Dateien an.', - 'import_type': 'Import Typ', - 'html_mode': 'HTML Modus', - 'html_mode_help': - 'Vorschau von Aktualisierungen schneller, aber weniger genau', - 'view_licenses': 'Lizenzen anzeigen', - 'webhook_url': 'Webhook URL', - 'fullscreen_editor': 'Vollbild Editor', - 'sidebar_editor': 'Seitenmenü Editor', + 'accounting': 'Accounting', + 'required_files_missing': 'Please provide all CSVs.', + 'import_type': 'Τύπος Εισαγωγής', + 'html_mode': 'HTML Mode', + 'html_mode_help': 'Preview updates faster but is less accurate', + 'view_licenses': 'Εμφάνιση Αδειών Χρήσης', + 'webhook_url': 'Διεύθυνση URL του Webhook', + 'fullscreen_editor': 'Επεξεργαστής Πλήρους Οθόνης', + 'sidebar_editor': 'Επεξεργαστής Πλάγιας Μπάρας', 'please_type_to_confirm': - 'Bitte geben Sie \":value\" zur Bestätigung ein', - 'purge': 'Bereinigen', - 'service': 'Dienst', - 'clone_to': 'Duplizieren zu', - 'clone_to_other': 'Duplizieren zu anderem', - 'labels': 'Beschriftung', - 'add_custom': 'Beschriftung hinzufügen', - 'payment_tax': 'Steuer-Zahlung', - 'unpaid': 'Unbezahlt', - 'white_label': 'White Label', - 'delivery_note': 'Lieferschein', - 'sent_invoices_are_locked': 'Versendete Rechnungen sind gesperrt', - 'paid_invoices_are_locked': 'Bezahlte Rechnungen sind gesperrt', - 'source_code': 'Quellcode', - 'app_platforms': 'Applikations Platform', - 'invoice_late': 'Rechnung in Verzug', - 'quote_expired': 'Angebot abgelaufen', - 'partial_due': 'Anzahlung', - 'invoice_total': 'Rechnungsbetrag', - 'quote_total': 'Angebotssumme', - 'credit_total': 'Gesamtguthaben', - 'recurring_invoice_total': 'Gesamtbetrag', - 'actions': 'Aktionen', - 'expense_number': 'Ausgabennummer', - 'task_number': 'Aufgabennummer', - 'project_number': 'Projektnummer', - 'project_name': 'Projektname', - 'warning': 'Warnung', - 'view_settings': 'Einstellungen anzeigen', + 'Παρακαλούμε πληκρολογήστε \":value\" για επιβεβαίωση', + 'purge': 'Εκκαθάριση', + 'service': 'Υπηρεσία', + 'clone_to': 'Κλωνοποίηση Σε', + 'clone_to_other': 'Κλωνοποίηση σε Άλλο', + 'labels': 'Ετικέτες', + 'add_custom': 'Προσθήκη Προσαρμογής', + 'payment_tax': 'Φόρος Πληρωμής', + 'unpaid': 'Μη εξοφλημένη', + 'white_label': 'Λευκή Ετικέτα', + 'delivery_note': 'Σημείωση Παράδοσης', + 'sent_invoices_are_locked': 'Τα απεσταλμένα τιμολόγια είναι κλειδωμένα', + 'paid_invoices_are_locked': 'Τα εξοφλημένα τιμολόγια είναι κλειδωμένα', + 'source_code': 'Πηγαίος Κώδικας', + 'app_platforms': 'Πλατφόρμες Εφαρμογής', + 'invoice_late': 'Καθυστερημένο Ποσό Τιμολογίου', + 'quote_expired': 'Ληγμένη Προσφορά', + 'partial_due': 'Μερική Πληρωμή', + 'invoice_total': 'Σύνολο Τιμολογίου', + 'quote_total': 'Σύνολο Προσφοράς', + 'credit_total': 'Συνολική Πίστωση', + 'recurring_invoice_total': 'Σύνολο Τιμολογίου', + 'actions': 'Ενέργειες', + 'expense_number': 'Αριθμός Δαπάνης', + 'task_number': 'Αριθμός Εργασίας', + 'project_number': 'Αριθμός Project', + 'project_name': 'Όνομα Project', + 'warning': 'Ειδοποίηση', + 'view_settings': 'Ρυθμίσεις Εμφάνισης', 'company_disabled_warning': - 'Warnung: diese Firma wurde noch nicht aktiviert', - 'late_invoice': 'Rechnung in Verzug', - 'expired_quote': 'Abgelaufenes Angebot', - 'remind_invoice': 'Rechnungserinnerung', - 'cvv': 'Kartenprüfziffer', - 'client_name': 'Kunde', - 'client_phone': 'Kunden Telefon', - 'required_fields': 'Benötigte Felder', - 'calculated_rate': 'Berechneter Satz', - 'default_task_rate': 'Standard-Steuersatz', - 'clear_cache': 'Zwischenspeicher leeren', - 'sort_order': 'Sortierreihenfolge', - 'task_status': 'Status', - 'task_statuses': 'Aufgaben Status', - 'new_task_status': 'Neuer Aufgaben Status', - 'edit_task_status': 'Aufgaben Status bearbeiten', - 'created_task_status': 'Aufgaben Status erfolgreich erstellt', - 'updated_task_status': 'Aufgabenstatus erfolgreich aktualisiert', - 'archived_task_status': 'Aufgaben Status erfolgreich archiviert', - 'deleted_task_status': 'Aufgaben Status erfolgreich gelöscht', - 'removed_task_status': 'Aufgaben Status erfolgreich entfernt', - 'restored_task_status': 'Aufgaben Status erfolgreich wiederhergestellt', - 'archived_task_statuses': ':value Aufgaben Stati erfolgreich archiviert', - 'deleted_task_statuses': ':value Aufgaben Stati erfolgreich gelöscht', - 'restored_task_statuses': - ':value Aufgaben Stati erfolgreich wiederhergestellt', - 'search_task_status': 'Suche 1 Aufgaben Status', - 'search_task_statuses': 'Suche :count Aufgaben Status', - 'show_tasks_table': 'Zeige Aufgaben Tabelle', + 'Προειδοποίηση: Αυτή η εταιρία δεν έχει ενεργοποιηθεί ακόμα', + 'late_invoice': 'Καθυστερημένο Τιμολόγιο', + 'expired_quote': 'Προσφορά που έληξε', + 'remind_invoice': 'Υπενθύμιση Τιμολογίου', + 'cvv': 'CVV', + 'client_name': 'Όνομα Πελάτη', + 'client_phone': 'Τηλέφωνο Πελάτη', + 'required_fields': 'Απαιτούμενα Πεδία', + 'calculated_rate': 'Υπολογιζόμενο Κόστος', + 'default_task_rate': 'Προεπιλεγμένο Κόστος Εργασίας', + 'clear_cache': 'Καθαρισμός Προσωρινής Μνήμης', + 'sort_order': 'Σειρά Ταξινόμησης', + 'task_status': 'Κατάσταση', + 'task_statuses': 'Καταστάσεις Εργασίας', + 'new_task_status': 'Κατάσταση Νέας Εργασίας', + 'edit_task_status': 'Επεξεργασία Κατάστασης Εργασίας', + 'created_task_status': 'Επιτυχής δημιουργία κατάστασης εργασίας', + 'updated_task_status': 'Επιτυχής ενημέρωση κατάστασης εργασίας', + 'archived_task_status': 'Επιτυχής αρχειοθέτηση κατάστασης εργασίας', + 'deleted_task_status': 'Επιτυχής διαγραφή κατάστασης εργασίας', + 'removed_task_status': 'Επιτυχής αφαίρεση κατάστασης εργασίας', + 'restored_task_status': 'Επιτυχής ανάκτηση κατάστασης εργασίας', + 'archived_task_statuses': + 'Επιτυχής αρχειοθέτηση :value καταστάσεων εργασίας', + 'deleted_task_statuses': 'Επιτυχής διαγραφή :value καταστάσεων εργασίας', + 'restored_task_statuses': 'Επιτυχής ανάκτηση :value καταστάσεων εργασίας', + 'search_task_status': 'Αναζήτηση 1 Κατάστασης Εργασίας', + 'search_task_statuses': 'Αναζήτηση :count Καταστάσεων Εργασίας', + 'show_tasks_table': 'Εμφάνιση Πίνακα Εργασιών', 'show_tasks_table_help': - 'Beim Erstellen von Rechnungen immer die Aufgabenauswahl anzeigen', - 'invoice_task_timelog': 'Aufgaben Zeiterfassung in Rechnung stellen', + 'Πάντα να εμφανίζεται το τμήμα των εργασιών όταν δημιουργούνται τιμολόγια', + 'invoice_task_timelog': 'Χρονολόγιο Τιμολόγησης Εργασίας', 'invoice_task_timelog_help': - 'Zeitdetails in der Rechnungsposition ausweisen', - 'invoice_task_datelog': 'Aufgabenzeiterfassung in Rechnung stellen', - 'invoice_task_datelog_help': - 'Datumsdetails zu den Rechnungsposten hinzufügen', - 'auto_start_tasks_help': 'Beginne Aufgabe vor dem Speichern', - 'configure_statuses': 'Stati bearbeiten', - 'task_settings': 'Aufgaben Einstellungen', - 'configure_categories': 'Kategorien bearbeiten', - 'expense_categories': 'Ausgabenkategorien', - 'new_expense_category': 'Neue Ausgabenkategorie', - 'edit_expense_category': 'Ausgaben Kategorie bearbeiten', - 'created_expense_category': 'Ausgabenkategorie erfolgreich erstellt', - 'updated_expense_category': 'Ausgabenkategorie erfolgreich aktualisiert', - 'archived_expense_category': 'Ausgabenkategorie erfolgreich archiviert', - 'deleted_expense_category': 'Kategorie erfolgreich gelöscht', - 'removed_expense_category': 'Ausgaben Kategorie erfolgreich entfernt', - 'restored_expense_category': - 'Ausgabenkategorie erfolgreich wiederhergestellt', + 'Προσθήκη λεπτομεριών χρόνου στις γραμμές των τιμολογίων', + 'invoice_task_datelog': 'Invoice Task Datelog', + 'invoice_task_datelog_help': 'Add date details to the invoice line items', + 'auto_start_tasks_help': 'Έναρξη εργασιών πριν την αποθήκευση', + 'configure_statuses': 'Προσαρμογή Καταστάσεων', + 'task_settings': 'Ρυθμίσεις Εργασίας', + 'configure_categories': 'Προσαρμογή Κατηγοριών', + 'expense_categories': 'Κατηγορίες Δαπάνης', + 'new_expense_category': 'Νέα Κατηγορία Δαπανών', + 'edit_expense_category': 'Επεξεργασία Κατηγορίας Δαπάνης', + 'created_expense_category': 'Επιτυχής δημιουργία κατηγορίας δαπανών', + 'updated_expense_category': 'Επιτυχής ενημέρωση κατηγορίας δαπανών', + 'archived_expense_category': 'Επιτυχής αρχειοθέτηση κατηγορίας δαπανών', + 'deleted_expense_category': 'Επιτυχής διαγραφή κατηγορίας', + 'removed_expense_category': 'Επιτυχής αφαίρεση κατηγορίας δαπάνης', + 'restored_expense_category': 'Επιτυχής επαναφορά κατηγορίας δαπανών', 'archived_expense_categories': - ':count Ausgabenkategorien erfolgreich archiviert', + 'Επιτυχής αρχειοθέτηση :count κατηγορίας δαπανών', 'deleted_expense_categories': - ':value Ausgabenkategorien erfolgreich gelöscht', + 'Επιτυχής διαγραφή δαπάνης :value κατηγοριών', 'restored_expense_categories': - ':value Ausgabenkategorien erfolgreich wiederhergestellt', - 'search_expense_category': 'Suche 1 Ausgabenkategorie', - 'search_expense_categories': 'Suche :count Ausgabenkategorie', - 'use_available_credits': 'Verfügbares Guthaben verwenden', - 'show_option': 'Zeige Option', + 'Επιτυχής επαναφορά δαπάνης :value κατηγοριών', + 'search_expense_category': 'Αναζήτηση 1 Κατηγορίας Δαπάνης', + 'search_expense_categories': 'Αναζήτηση :count Κατηγορίες Δαπανών', + 'use_available_credits': 'Χρήση Διαθέσιμων Πιστώσεων', + 'show_option': 'Εμφάνιση Επιλογής', 'negative_payment_error': - 'Der Guthabenbetrag darf den Zahlungsbetrag nicht übersteigen', - 'view_changes': 'Änderungen anzeigen', - 'force_update': 'Aktualisierungen erzwingen', + 'Το ποσό πίστωσης δεν μπορεί να υπερβαίνει το ποσό πληρωμής', + 'view_changes': 'Προβολή Αλλαγών', + 'force_update': 'Εξαναγκασμένη Ενημέρωση', 'force_update_help': - 'Du benutzt die aktuellste Version, aber es stehen noch ausstehende Fehlerbehebungen zur Verfügung', - 'mark_paid_help': 'Verfolge ob Ausgabe bezahlt wurde', - 'should_be_invoiced': 'Sollte in Rechnung gestellt werden', - 'should_be_invoiced_help': - 'Ermögliche diese Ausgabe in Rechnung zu stellen', - 'add_documents_to_invoice_help': 'Dokumente sichtbar machen', - 'convert_currency_help': 'Wechselkurs setzen', - 'expense_settings': 'Ausgaben Einstellungen', - 'clone_to_recurring': 'Duplizieren zu Widerkehrend', - 'crypto': 'Verschlüsselung', + 'Εκτελείτε την τελευταία έκδοση αλλά μπορεί να υπάρχουν διορθώσεις σε αναμονή.', + 'mark_paid_help': 'Εντοπισμός της δαπάνης που πληρώθηκε', + 'should_be_invoiced': 'Πρέπει να τιμολογηθεί', + 'should_be_invoiced_help': 'Ενεργοποίηση της δαπάνης που θα τιμολογηθεί', + 'add_documents_to_invoice_help': 'Κάνε τα έγγραφα εμφανίσιμα', + 'convert_currency_help': 'Ορισμός Ισοτιμίας Ανταλλαγής', + 'expense_settings': 'Ρυθμίσεις Δαπάνης', + 'clone_to_recurring': 'Κλωνοποίηση σε Επαναλαμβανόμενο', + 'crypto': 'Κρύπτο', 'paypal': 'PayPal', 'alipay': 'Alipay', - 'sofort': 'SOFORT-Überweisung', - 'apple_pay': 'Apple/Google Pay', - 'user_field': 'Benutzer Feld', - 'variables': 'Variablen', - 'show_password': 'Zeige Passwort', - 'hide_password': 'Verstecke Passwort', - 'copy_error': 'Kopier Fehler', - 'capture_card': 'Zahlungsmittel für die weitere Verwendung speichern', - 'auto_bill_enabled': 'Automatische Rechnungsstellung aktivieren', - 'total_taxes': 'Gesamt Steuern', - 'line_taxes': 'Belegposition Steuer', - 'total_fields': 'Gesamt Felder', + 'sofort': 'Sofort', + 'apple_pay': 'Apple/Google Πληρωμή', + 'user_field': 'Πεδίο Χρήστη', + 'variables': 'Μεταβλητές', + 'show_password': 'Εμφάνιση Κωδικού Πρόσβασης', + 'hide_password': 'Απόκρυψη Κωδικού Πρόσβασης', + 'copy_error': 'Σφάλμα Αντιγραγής', + 'capture_card': 'Κάρτα Σύλληψης', + 'auto_bill_enabled': 'Αυτόματη Χρέωση Ενεργοποιήθηκε', + 'total_taxes': 'Συνολικοί Φόροι', + 'line_taxes': 'Φόροι Γραμμής', + 'total_fields': 'Συνολικά Πεδία', 'stopped_recurring_invoice': - 'Wiederkehrende Rechnung erfolgreich gestoppt', + 'Επιτυχής διακοπή επαναλαμβανόμενου τιμολογίου', 'started_recurring_invoice': - 'Wiederkehrende Rechnung erfolgreich gestartet', + 'Επιτυχής έναρξη επαναλαμβανόμενου τιμολογίου', 'resumed_recurring_invoice': - 'Wiederkehrende Rechnung erfolgreich fortgesetzt', - 'gateway_refund': 'Zahlungsanbieter Rückerstattung', + 'Επιτυχής επανεκκίνηση επαναλαμβανόμενου τιμολογίου', + 'gateway_refund': 'Επιστροφή Χρημάτων μέσω Πύλης Πληρωμής (Gateway)', 'gateway_refund_help': - 'Bearbeite die Rückerstattung über den Zahlungsanbieter', - 'due_date_days': 'Fälligkeitsdatum', - 'paused': 'Pausiert', - 'mark_active': 'Markiere aktiv', - 'day_count': 'Tag :count', - 'first_day_of_the_month': 'Erster Tag des Monats', - 'last_day_of_the_month': 'Letzter Tag des Monats', - 'use_payment_terms': 'Benutze Zahlungsbedingung', - 'endless': 'Endlos', - 'next_send_date': 'Nächstes Versanddatum', - 'remaining_cycles': 'Verbleibende Durchgänge', - 'recurring_invoice': 'Wiederkehrende Rechnung', - 'recurring_invoices': 'Wiederkehrende Rechnungen', - 'new_recurring_invoice': 'Neue wiederkehrende Rechnung', - 'edit_recurring_invoice': 'Bearbeite wiederkehrende Rechnung', + 'Εκτελέστε την επιστροφή νρημάτων μέσω Πύλης Πληρωμής (Gateway)', + 'due_date_days': 'Ημερομηνία Ολοκλήρωσης', + 'paused': 'Σε παύση', + 'mark_active': 'Σήμανση ως Ενεργό', + 'day_count': 'Ημέρα :count', + 'first_day_of_the_month': 'Πρώτη Μέρα του Μήνα', + 'last_day_of_the_month': 'Τελευταία Μέρα του Μήνα', + 'use_payment_terms': 'Χρησιμοποίηση Όρων Πληρωμής', + 'endless': 'Συνεχής', + 'next_send_date': 'Επόμενη Ημερομηνία Αποστολής', + 'remaining_cycles': 'Εναπομείναντες Κύκλοι', + 'recurring_invoice': 'Επαναλαμβανόμενο Τιμολόγιο', + 'recurring_invoices': 'Επαναλαμβανόμενα Τιμολόγια', + 'new_recurring_invoice': 'Νέο Επαναλαμβανόμενο Τιμολόγιο', + 'edit_recurring_invoice': 'Επεξεργασία Επαναλαμβανόμενων Τιμολογίων', 'created_recurring_invoice': - 'Wiederkehrende Rechnung erfolgreich erstellt', + 'Επιτυχής δημιουργία επαναλαμβανόμενου τιμολογίου', 'updated_recurring_invoice': - 'Wiederkehrende Rechnung erfolgreich aktualisiert', + 'Επιτυχής ενημέρωση επαναλαμβανόμενου τιμολογίου', 'archived_recurring_invoice': - 'Wiederkehrende Rechnung erfolgreich archiviert', + 'Επιτυχής αρχειοθέτηση επαναλαμβανόμενου τιμολογίου', 'deleted_recurring_invoice': - 'Wiederkehrende Rechnung erfolgreich gelöscht', + 'Επιτυχής διαγραφή επαναλαμβανόμενου τιμολογίου', 'removed_recurring_invoice': - 'Wiederkehrende Rechnung erfolgreich entfernt', + 'Επιτυχής αφαίρεση επαναλαμβανόμενου τιμολογίου', 'restored_recurring_invoice': - 'Wiederkehrende Rechnung erfolgreich wiederhergestellt', + 'Επιτυχής επαναφορά επαναλαμβανόμενου τιμολογίου', 'archived_recurring_invoices': - ':value Wiederkehrende Rechnung erfolgreich archiviert', + 'Επιτυχής αρχειοθέτηση :value επαναλαμβανόμενων τιμολογίων', 'deleted_recurring_invoices': - ':value Wiederkehrende Rechnungen erfolgreich gelöscht', + 'Επιτυχής διαγραφή :value επαναλαμβανόμενων τιμολογίων', 'restored_recurring_invoices': - ':value Wiederkehrende Rechnungen erfolgreich wiederhergestellt', - 'search_recurring_invoice': 'Suche 1 wiederkehrende Rechnung', - 'search_recurring_invoices': 'Suche :count Wiederkehrende Rechnungen', - 'send_date': 'Versanddatum', - 'auto_bill_on': 'Automatische Rechnungsstellung zum', - 'minimum_under_payment_amount': 'Minimaler Unterzahlungsbetrag', - 'profit': 'Profit', - 'line_item': 'Posten', - 'allow_over_payment': 'Überzahlung zulassen', + 'Επιτυχής επαναφορά :value επαναλαμβανόμενων τιμολογίων', + 'search_recurring_invoice': 'Αναζήτηση 1 Επαναλαμβανόμενου Τιμολογίου', + 'search_recurring_invoices': + 'Αναζήτηση :count Επαναλαμβανόμενων Τιμολογίων', + 'send_date': 'Ημερομηνία Αποστολής', + 'auto_bill_on': 'Αυτόματη Χρέωση στις', + 'minimum_under_payment_amount': 'Ελάχιστο Ποσό Υποπληρωμής', + 'profit': 'Κέρδος', + 'line_item': 'Προϊόν Γραμμής', + 'allow_over_payment': 'Επιτρέψτε Υπερπληρωμή', 'allow_over_payment_help': - 'Überzahlungen zulassen, beispielsweise Trinkgelder', - 'allow_under_payment': 'Unterzahlung zulassen', - 'allow_under_payment_help': 'Teilzahlungen zulassen', - 'test_mode': 'Test Modus', - 'opened': 'Geöffnet', - 'payment_reconciliation_failure': 'Fehler bei Kontenabstimmung', - 'payment_reconciliation_success': 'Kontenabstimmung erfolgreich', - 'gateway_success': 'Zahlungsanbieter erfolgreich', - 'gateway_failure': 'Zahlungsanbieter Fehler', - 'gateway_error': 'Zahlungsanbieter Fehler', - 'email_send': 'E-Mail gesendet', - 'email_retry_queue': 'E-Mail Wiederholungswarteschlange', - 'failure': 'Fehler', - 'quota_exceeded': 'Quota erreicht', - 'upstream_failure': 'Upstream Fehler', - 'system_logs': 'System-Log', - 'view_portal': 'Portal anzeigen', - 'copy_link': 'Link kopieren', - 'token_billing': 'Kreditkarte merken', - 'welcome_to_invoice_ninja': 'Willkommen bei Invoice Ninja', - 'always': 'Immer', - 'optin': 'Anmelden', - 'optout': 'Abmelden', - 'label': 'Label', - 'client_number': 'Kundennummer', - 'auto_convert': 'Automatisch konvertieren', - 'company_name': 'Firmenname', - 'reminder1_sent': 'Erste Erinnerung verschickt', - 'reminder2_sent': 'Zweite Erinnerung verschickt', - 'reminder3_sent': 'Dritte Erinnerung verschickt', - 'reminder_last_sent': 'Letzte Erinnerung verschickt', - 'pdf_page_info': 'Seite :current von :total', - 'emailed_invoices': 'Rechnungen erfolgreich versendet', - 'emailed_quotes': 'Angebote erfolgreich versendet', - 'emailed_credits': 'Guthaben erfolgreich per E-Mail versendet', - 'gateway': 'Provider', - 'view_in_stripe': 'In Stripe anzeigen', - 'rows_per_page': 'Einträge pro Seite', - 'hours': 'Stunden', - 'statement': 'Bericht', - 'taxes': 'Steuern', - 'surcharge': 'Gebühr', - 'apply_payment': 'Zahlungen anwenden', - 'apply_credit': 'Guthaben anwenden', - 'apply': 'Anwenden', - 'unapplied': 'unangewendet', - 'select_label': 'Bezeichnung wählen', - 'custom_labels': 'Eigene Beschriftungen', - 'record_type': 'Eintragstyp', - 'record_name': 'Eintragsname', - 'file_type': 'Dateityp', - 'height': 'Höhe', - 'width': 'Breite', - 'to': 'An', - 'health_check': 'Systemprüfung', - 'payment_type_id': 'Zahlungsart', - 'last_login_at': 'Letzter Login', - 'company_key': 'Firmen Schlüssel', - 'storefront': 'Storefront', + 'Υποστήριξη της επιπλεόν πληρωμής για να δέχεστε φιλοδορήματα', + 'allow_under_payment': 'Επιτρέψτε Υποπληρωμή', + 'allow_under_payment_help': + 'Υποστήριξη εξόφλησης κατ\' ελάχιστο του μερικού ποσού', + 'test_mode': 'Περιβάλλον Τεστ', + 'opened': 'Ανοίχθηκε', + 'payment_reconciliation_failure': 'Αποτυχία Συμβιβασμού', + 'payment_reconciliation_success': 'Επιτυχία Συμβιβασμού', + 'gateway_success': 'Επιτυχία Πύλης Πληρωμής', + 'gateway_failure': 'Αποτυχία Πύλης Πληρωμής', + 'gateway_error': 'Σφάλμα Πύλης Πληρωμής', + 'email_send': 'Email απεστάλη', + 'email_retry_queue': 'Ουρά Επαναποστολής Email', + 'failure': 'Αποτυχία', + 'quota_exceeded': 'Υπέρβαση Ορίου', + 'upstream_failure': 'Αποτυχία Ροής', + 'system_logs': 'Αρχείο Καταγραφής Συστήματος', + 'view_portal': 'Προβολή portal', + 'copy_link': 'Αντιγραφή Συνδέσμου', + 'token_billing': 'Αποθήκευση στοιχείων κάρτας', + 'welcome_to_invoice_ninja': 'Καλωσήρθατε στο Invoice Ninja', + 'always': 'Πάντα', + 'optin': 'Συμμετοχή', + 'optout': 'Μη Συμμετοχή', + 'label': 'Ετικέτα', + 'client_number': 'Αριθμός Πελάτη', + 'auto_convert': 'Αυτόματη Μετατροπή', + 'company_name': 'Όνομα Εταιρείας', + 'reminder1_sent': 'Υπενθύμιση 1 Απεστάλη', + 'reminder2_sent': 'Υπενθύμιση 2 Απεστάλη', + 'reminder3_sent': 'Υπενθύμιση 3 Απεστάλη', + 'reminder_last_sent': 'Τελευταία Υπενθύμιση Απεστάλη', + 'pdf_page_info': 'Σελίδα :current από :total', + 'emailed_invoices': 'Επιτυχής αποστολή τιμολογίων', + 'emailed_quotes': 'Επιτυχής αποστολή προσφορών', + 'emailed_credits': 'Επιτυχής αποστολή ΄πιστώσεων με email', + 'gateway': 'Πύλη πληρωμής (Gateway)', + 'view_in_stripe': 'Προβολή στο Stripe', + 'rows_per_page': 'Γραμμές ανά Σελίδα', + 'hours': 'Ώρες', + 'statement': 'Δήλωση', + 'taxes': 'Φόροι', + 'surcharge': 'Επιβάρυνση', + 'apply_payment': 'Πληρωμή', + 'apply_credit': 'Εφαρμογή Πίστωσης', + 'apply': 'Εφαρμογή', + 'unapplied': 'Ανεφάρμοστο', + 'select_label': 'Επιλογή Ετικέτας', + 'custom_labels': 'Προσαρμοσμένες Ετικέτες', + 'record_type': 'Τύπος Εγγραφής', + 'record_name': 'Όνομασία Εγγραφής', + 'file_type': 'Τύπος Αρχείου', + 'height': 'Ύψος', + 'width': 'Πλάτος', + 'to': 'Προς', + 'health_check': 'Έλεγχος Υγείας', + 'payment_type_id': 'Τύπος Πληρωμής', + 'last_login_at': 'Τελευταία Είσοδος στις', + 'company_key': 'Κλειδί Εταιρείας', + 'storefront': 'Βιτρίνα καταστήματος', 'storefront_help': - 'Drittanbieter Applikationen erlauben Rechnungen zu erstellen', - 'client_created': 'Kunde wurde erstellt', - 'online_payment_email': 'Online-Zahlung E-Mail Adresse', - 'manual_payment_email': 'manuelle Zahlung E-Mail Adresse', - 'completed': 'Abgeschlossen', - 'gross': 'Gesamtbetrag', - 'net_amount': 'Netto Betrag', - 'net_balance': 'Netto Betrag', - 'client_settings': 'Kundeneinstellungen', - 'selected_invoices': 'Ausgewählte Rechnungen', - 'selected_payments': 'Ausgewählte Zahlungen', - 'selected_quotes': 'Ausgewählte Angebote', - 'selected_tasks': 'Ausgewählte Aufgaben', - 'selected_expenses': 'Ausgewählte Ausgaben', - 'upcoming_invoices': 'Ausstehende Rechnungen', - 'past_due_invoices': 'Überfällige Rechnungen', - 'recent_payments': 'Kürzliche Zahlungen', - 'upcoming_quotes': 'Ausstehende Angebote', - 'expired_quotes': 'Abgelaufene Angebote', - 'create_client': 'Kunden erstellen', - 'create_invoice': 'Rechnung erstellen', - 'create_quote': 'Angebot erstellen', - 'create_payment': 'Zahlung erstellen', - 'create_vendor': 'Lieferanten erstellen', - 'update_quote': 'Angebot aktualisieren', - 'delete_quote': 'Angebot löschen', - 'update_invoice': 'Rechnung aktualisieren', - 'delete_invoice': 'Rechnung löschen', - 'update_client': 'Kunde aktualisieren', - 'delete_client': 'Kunde löschen', - 'delete_payment': 'Zahlung löschen', - 'update_vendor': 'Lieferant aktualisieren', - 'delete_vendor': 'Lieferant Löschen', - 'create_expense': 'Ausgabe erstellen', - 'update_expense': 'Ausgabe aktualisieren', - 'delete_expense': 'Ausgabe Löschen', - 'create_task': 'Aufgabe erstellen', - 'update_task': 'Aufgabe aktualisieren', - 'delete_task': 'Aufgabe löschen', - 'approve_quote': 'Angebot annehmen', - 'off': 'Aus', - 'when_paid': 'Bei Zahlung', - 'expires_on': 'Gültig bis', - 'free': 'Kostenlos', - 'plan': 'Plan', - 'show_sidebar': 'Zeige Seitenmenü', - 'hide_sidebar': 'Verstecke Seitenmenu', - 'event_type': 'Ereignistyp', - 'target_url': 'Ziel', - 'copy': 'kopieren', - 'must_be_online': - 'Bitte starten Sie die App sobald Sie mit dem Internet verbunden sind', - 'crons_not_enabled': 'Die Crons müssen aktiviert werden', - 'api_webhooks': 'API Webhooks', - 'search_webhooks': 'Suche :count Webhooks', - 'search_webhook': 'Suche 1 Webhook', - 'webhook': 'Webhook', - 'webhooks': 'Webhooks', - 'new_webhook': 'Neuer Webhook', - 'edit_webhook': 'Webhook bearbeiten', - 'created_webhook': 'Webhook erfolgreich erstellt', - 'updated_webhook': 'Webhook erfolgreich aktualisiert', - 'archived_webhook': 'Webhook erfolgreich archiviert', - 'deleted_webhook': 'Webhook erfolgreich gelöscht', - 'removed_webhook': 'Webhook erfolgreich entfernt', - 'restored_webhook': 'Webhook erfolgreich wiederhergestellt', - 'archived_webhooks': ':value Webhooks erfolgreich archiviert', - 'deleted_webhooks': ':value Webhooks erfolgreich gelöscht', - 'removed_webhooks': ':value Webhooks erfolgreich entfernt', - 'restored_webhooks': ':value Webhooks erfolgreich wiederhergestellt', - 'api_tokens': 'API Token', - 'api_docs': 'API Doku', - 'search_tokens': 'Suche :count Token', - 'search_token': 'Suche 1 Token', - 'token': 'Token', - 'tokens': 'Token', - 'new_token': 'Neues Token', - 'edit_token': 'Token bearbeiten', - 'created_token': 'Token erfolgreich erstellt', - 'updated_token': 'Token erfolgreich aktualisiert', - 'archived_token': 'Token erfolgreich archiviert', - 'deleted_token': 'Token erfolgreich gelöscht', - 'removed_token': 'Token erfolgreich entfernt', - 'restored_token': 'Token erfolgreich wiederhergestellt', - 'archived_tokens': ':count Token erfolgreich archiviert', - 'deleted_tokens': ':count Token erfolgreich gelöscht', - 'restored_tokens': ':value Token erfolgreich wiederhergestellt', - 'client_registration': 'Kunden Registration', - 'client_registration_help': - 'Den Kunden ermöglichen, sich selbst im Portal zu registrieren.', - 'customize_and_preview': 'Anpassung und Vorschau', - 'email_invoice': 'Rechnung versenden', - 'email_quote': 'Angebot per E-Mail senden', - 'email_credit': 'Guthaben per E-Mail versenden', - 'email_payment': 'Sende Zahlungs eMail', + 'Ενεργοποίηση εφαρμογών τρίτων για τη δημιουργία τιμολογίων', + 'client_created': 'Πελάτης Δημιουργήθηκε', + 'online_payment_email': 'Email Online Πληρωμών', + 'manual_payment_email': 'Email Χειροκίνητων Πληρωμών', + 'completed': 'Ολοκληρώθηκε', + 'gross': 'Μεικτό', + 'net_amount': 'Καθαρό Ποσό', + 'net_balance': 'Καθαρό Υπόλοιπο', + 'client_settings': 'Ρυθμίσεις Πελάτη', + 'selected_invoices': 'Επιλεγμένα Τιμολόγια', + 'selected_payments': 'Επιλεγμένες Πληρωμές', + 'selected_quotes': 'Επιλεγμένες Προσφορές', + 'selected_tasks': 'Επιλεγμένες Εργασίες', + 'selected_expenses': 'Επιλεγμένες Δαπάνες', + 'upcoming_invoices': 'Προσεχή Τιμολόγια', + 'past_due_invoices': 'Ληγμένα Τιμολόγια', + 'recent_payments': 'Πρόσφατες Πληρωμές', + 'upcoming_quotes': 'Προσεχείς Προσφορές', + 'expired_quotes': 'Προσφορές που έληξαν', + 'create_client': 'Δημιουργία Πελάτη', + 'create_invoice': 'Δημιουργία Τιμολογίου', + 'create_quote': 'Δημιουργία Προσφοράς', + 'create_payment': 'Δημιουργία Πληρωμής', + 'create_vendor': 'Δημιουργία προμηθευτή', + 'update_quote': 'Ενημέρωση Προσφοράς', + 'delete_quote': 'Διαγραφή Προσφοράς', + 'update_invoice': 'Ενημέρωση Τιμολογίου', + 'delete_invoice': 'Διαγραφή Τιμολογίου', + 'update_client': 'Ενημέρωση Πελάτη', + 'delete_client': 'Διαγραφή Πελάτη', + 'delete_payment': 'Διαγραφή Πληρωμής', + 'update_vendor': 'Ενημέρωση Προμηθευτή', + 'delete_vendor': 'Διαγραφή Προμηθευτή', + 'create_expense': 'Δημιουργία Δαπάνης', + 'update_expense': 'Ενημέρωση Δαπάνης', + 'delete_expense': 'Διαγραφή Δαπάνης', + 'create_task': 'Δημιουργία Εργασίας', + 'update_task': 'Ενημέρωση Εργασίας', + 'delete_task': 'Διαγραφή Εργασίας', + 'approve_quote': 'Αποδοχή Προσφοράς', + 'off': 'Κλειστό', + 'when_paid': 'Οταν Πληρωθεί', + 'expires_on': 'Λήγει την', + 'free': 'Δωρεάν', + 'plan': 'Πλάνο', + 'show_sidebar': 'Εμφάνιση Πλευρικής Μπάρας', + 'hide_sidebar': 'Απόκρυψη Πλευρικής Μπάρας', + 'event_type': 'Τύπος Γεγονότος', + 'target_url': 'Στόχος', + 'copy': 'Αντιγραφή', + 'must_be_online': + 'Παρακαλούμε επανεκκινήστε την εφαρμογή μόλις συνδεθείτε στο internet', + 'crons_not_enabled': 'Πρέπει να ενεργοποιήσετε τα crons', + 'api_webhooks': 'API Webhooks', + 'search_webhooks': 'Αναζήτηση :count Webhooks', + 'search_webhook': 'Αναζήτηση 1 Webhook', + 'webhook': 'Webhook', + 'webhooks': 'Webhooks', + 'new_webhook': 'Νέο Webhook', + 'edit_webhook': 'Επεξεργασία Webhook', + 'created_webhook': 'Επιτυχής δημιουργία webhook', + 'updated_webhook': 'Επιτυχής ενημέρωση webhook', + 'archived_webhook': 'Επιτυχής αρχειοθέτηση webhook', + 'deleted_webhook': 'Επιτυχής διαγραφή webhook', + 'removed_webhook': 'Επιτυχής αφαίρεση webhook', + 'restored_webhook': 'Επιτυχής ανάκτηση webhook', + 'archived_webhooks': 'Επιτυχής αρχειοθέτηση :value webhooks', + 'deleted_webhooks': 'Επιτυχής διαγραφή :value webhooks', + 'removed_webhooks': 'Επιτυχής αφαίρεση :value webhooks', + 'restored_webhooks': 'Επιτυχής ανάκτηση :value webhooks', + 'api_tokens': 'Διακριτικά API', + 'api_docs': 'Κείμενα API', + 'search_tokens': 'Αναζήτηση :count Διακριτικών', + 'search_token': 'Αναζήτηση 1 Διακριτικού', + 'token': 'Διακριτικό', + 'tokens': 'Διακριτικά', + 'new_token': 'Νέο Διακριτικό', + 'edit_token': 'Επεξεργασία Διακριτικού', + 'created_token': 'Επιτυχής δημιουργία διακριτικού', + 'updated_token': 'Επιτυχής ενημέρωση διακριτικού', + 'archived_token': 'Επιτυχής αρχειοθέτηση διακριτικού', + 'deleted_token': 'Επιτυχής διαγραφή διακριτικού', + 'removed_token': 'Επιτυχής αφαίρεση διακριτικού', + 'restored_token': 'Επιτυχής ανάκτηση διακριτικού', + 'archived_tokens': 'Επιτυχής αρχειοθέτηση :value διακριτικών', + 'deleted_tokens': 'Επιτυχής διαγραφή :value διακριτικών', + 'restored_tokens': 'Επιτυχής ανάκτηση :value διακριτικών', + 'client_registration': 'Εγγραφή Πελάτη', + 'client_registration_help': + 'Ενεργοποίηση αυτοεγγραφής πελατών στο portal', + 'customize_and_preview': 'Προσαρμογή & Προεπισκόπηση', + 'email_invoice': 'Αποστολή Τιμολογίου με email', + 'email_quote': 'Αποστολή Προσφοράς', + 'email_credit': 'Αποστολή Πίστωσης με email', + 'email_payment': 'Αποστολή πληρωμής με Email', 'client_email_not_set': - 'Es wurde noch keine E-Mail Adresse beim Kunden eingetragen.', - 'ledger': 'Hauptbuch', - 'view_pdf': 'Zeige PDF', - 'all_records': 'Alle Einträge', - 'owned_by_user': 'Eigentümer', - 'credit_remaining': 'Verbleibendes Guthaben', - 'contact_name': 'Name des Kontakts', - 'use_default': 'Benutze Standardwert', - 'reminder_endless': 'Endlose Reminder', - 'number_of_days': 'Anzahl Tage', - 'configure_payment_terms': 'Zahlungsbedingungen bearbeiten', - 'payment_term': 'Zahlungsbedingung', - 'new_payment_term': 'Neue Zahlungsbedingung', - 'edit_payment_term': 'Bearbeite Zahlungsbedingungen', - 'created_payment_term': 'Zahlungsbedingung erfolgreich erstellt', - 'updated_payment_term': 'Zahlungsbedingung erfolgreich aktualisiert', - 'archived_payment_term': 'Zahlungsbedingung erfolgreich archiviert', - 'deleted_payment_term': 'Zahlungsbedingung erfolgreich gelöscht', - 'removed_payment_term': 'Zahlungsbedingung erfolgreich entfernt', - 'restored_payment_term': - 'Zahlungsbedingungen erfolgreich wiederhergestellt', - 'archived_payment_terms': - ':value Zahlungsbedingungen erfolgreich archiviert', - 'deleted_payment_terms': - ':value Zahlungsbedingungen erfolgreich gelöscht', - 'restored_payment_terms': - ':value Zahlungsbedingungen erfolgreich wiederhergestellt', - 'email_sign_in': 'Mit E-Mail anmelden', - 'change': 'Ändern', - 'change_to_mobile_layout': 'Möchten Sie zur mobilen Ansicht wechseln?', - 'change_to_desktop_layout': 'Möchten Sie zur Desktopansicht wechseln?', - 'send_from_gmail': 'Mit Gmail versenden', - 'reversed': 'Umgekehrt', - 'cancelled': 'Storniert', - 'credit_amount': 'Guthabenbetrag', - 'quote_amount': 'Angebotsbetrag', - 'hosted': 'Gehostet', - 'selfhosted': 'Selbstgehostet', - 'exclusive': 'Exklusive', - 'inclusive': 'Inklusive', - 'hide_menu': 'Menü ausblenden', - 'show_menu': 'Menü einblenden', - 'partially_refunded': 'Teilweise erstattet', - 'search_documents': 'Suche nach Dokumenten', - 'search_designs': 'Suche nach Designs', - 'search_invoices': 'Suche Rechnungen', - 'search_clients': 'Suche Kunden', - 'search_products': 'Suche Produkte', - 'search_quotes': 'Suche Angebote', - 'search_credits': 'Suche Guthaben', - 'search_vendors': 'Suche Lieferanten', - 'search_users': 'Suche Benutzer', - 'search_tax_rates': 'Suche Steuersatz', - 'search_tasks': 'Suche Aufgaben', - 'search_settings': 'Suche Einstellungen', - 'search_projects': 'Suche nach Projekten', - 'search_expenses': 'Suche Ausgaben', - 'search_payments': 'Suche Zahlungen', - 'search_groups': 'Suche nach Gruppen', - 'search_company': 'Suche Firma', - 'search_document': 'Suche 1 Dokument', - 'search_design': 'Suche 1 Design', - 'search_invoice': 'Suche 1 Angebot', - 'search_client': 'Suche 1 Kunden', - 'search_product': 'Suche 1 Produkt', - 'search_quote': 'Suche 1 Angebot', - 'search_credit': 'Suche 1 Guthaben', - 'search_vendor': 'Suche 1 Hersteller', - 'search_user': 'Suche 1 Benutzer', - 'search_tax_rate': 'Suche 1 Steuersatz', - 'search_task': 'Suche 1 Aufgabe', - 'search_project': 'Suche 1 Projekt', - 'search_expense': 'Suche 1 Ausgabe', - 'search_payment': 'Suche 1 Zahlung', - 'search_group': 'Suche 1 Gruppen', - 'refund_payment': 'Zahlung erstatten', - 'cancelled_invoice': 'Rechnung erfolgreich storniert', - 'cancelled_invoices': 'Rechnungen erfolgreich storniert', - 'reversed_invoice': 'Rechnung erfolgreich zurückgebucht', - 'reversed_invoices': 'Rechnungen erfolgreich zurückgebucht', - 'reverse': 'Rückbuchung', - 'full_name': 'Voller Name', - 'city_state_postal': 'Stadt / Bundesland / PLZ', - 'postal_city_state': 'Plz/Stadt/Staat', - 'custom1': 'Benutzerdefiniert 1', - 'custom2': 'Benutzerdefiniert 2', - 'custom3': 'Benutzerdefiniert 3', - 'custom4': 'Benutzerdefiniert 3', - 'optional': 'optional', - 'license': 'Lizenz', - 'purge_data': 'Daten säubern', - 'purge_successful': 'Die Kontodaten wurden erfolgreich gelöscht', + 'Ο πελάτης δεν έχει καταχωρημένη μία διεύθυνση email', + 'ledger': 'Καθολικό', + 'view_pdf': 'Προβολή PDF', + 'all_records': 'Όλες οι εγγραφές', + 'owned_by_user': 'Ιδιοκτησία του χρήστη', + 'credit_remaining': 'Υπολειπόμενη Πίστωση', + 'contact_name': 'Όνομα Επαφής', + 'use_default': 'Χρήση προεπιλογής', + 'reminder_endless': 'Συνεχής Υπενθύμιση', + 'number_of_days': 'Αριθμός ημερών', + 'configure_payment_terms': 'Προσαρμογή Όρων Πληρωμής', + 'payment_term': 'Όρος Πληρωμής', + 'new_payment_term': 'Νέος Όρος Πληρωμής', + 'edit_payment_term': 'Επεξεργασία Όρου Πληρωμής', + 'created_payment_term': 'Επιτυχής δημιουργία όρων πληρωμής', + 'updated_payment_term': 'Επιτυχής επικαιροποίηση όρων πληρωμής', + 'archived_payment_term': 'Επιτυχής αποθήκευση όρου πληρωμής', + 'deleted_payment_term': 'Επιτυχής διαγραφή όρου πληρωμής', + 'removed_payment_term': 'Επιτυχής αφαίρεση όρου πληρωμής', + 'restored_payment_term': 'Επιτυχής ανάκτηση όρου πληρωμής', + 'archived_payment_terms': 'Επιτυχής αρχειοθέτηση :value όρων πληρωμής', + 'deleted_payment_terms': 'Επιτυχής διαγραφή :value όρων πληρωμής', + 'restored_payment_terms': 'Επιτυχής ανάκτηση :value όρων πληρωμής', + 'email_sign_in': 'Είσοδος με email', + 'change': 'Αλλαγή', + 'change_to_mobile_layout': 'Αλλαγή σε εμφάνιση κινητής συσκευής;', + 'change_to_desktop_layout': 'Αλλαγή σε εμφάνιση Desktop συσκευής;', + 'send_from_gmail': 'Αποστολή μέσω Gmail', + 'reversed': 'Αντιστράφηκε', + 'cancelled': 'Ακυρωμένη', + 'credit_amount': 'Ποσό Πίστωσης', + 'quote_amount': 'Ποσό Προσφοράς', + 'hosted': 'Φιλοξενούμενη', + 'selfhosted': 'Ιδίας Φιλοξενίας', + 'exclusive': 'Δεν συμπεριλαμβάνεται', + 'inclusive': 'Συμπεριλαμβάνεται', + 'hide_menu': 'Απόκρυψη Μενού', + 'show_menu': 'Εμφάνιση Μενού', + 'partially_refunded': 'Μερική Επιστροφή Χρημάτων', + 'search_documents': 'ΑναζήτησηΕγγράφων', + 'search_designs': 'Αναζήτηση Σχεδίων', + 'search_invoices': 'Αναζήτηση Τιμολογίων', + 'search_clients': 'Αναζήτηση Πελατών', + 'search_products': 'Αναζήτηση Προϊόντων', + 'search_quotes': 'Αναζήτηση Προσφορών', + 'search_credits': 'Αναζήτηση Πιστώσεων', + 'search_vendors': 'Αναζήτηση Προμηθευτών', + 'search_users': 'Αναζήτηση Χρηστών', + 'search_tax_rates': 'Αναζήτηση Ποσοστών Φόρου', + 'search_tasks': 'Αναζήτηση Εργασιών', + 'search_settings': 'Αναζήτηση Ρυθμίσεων', + 'search_projects': 'Αναζήτηση Projects', + 'search_expenses': 'Αναζήτηση Δαπανών', + 'search_payments': 'Αναζήτηση Πληρωμών', + 'search_groups': 'Αναζήτηση Γκρουπ', + 'search_company': 'Αναζήτηση Εταιριών', + 'search_document': 'Αναζήτηση 1 Εγγράφου', + 'search_design': 'Αναζήτηση 1 Σχεδίου', + 'search_invoice': 'Αναζήτηση 1 Τιμολογίου', + 'search_client': 'Αναζήτηση 1 Πελάτη', + 'search_product': 'Αναζήτηση 1 Προϊόντος', + 'search_quote': 'Αναζήτηση 1 Προσφοράς', + 'search_credit': 'Αναζήτηση 1 Πίστωσης', + 'search_vendor': 'Αναζήτηση 1 Προμηθευτή', + 'search_user': 'Αναζήτηση 1 Χρήστη', + 'search_tax_rate': 'Αναζήτηση 1 Ποσοστού Φόρου', + 'search_task': 'Αναζήτηση 1 Εργασίας', + 'search_project': 'Αναζήτηση 1 Project', + 'search_expense': 'Αναζήτηση 1 Δαπάνης', + 'search_payment': 'Αναζήτηση 1 Πληρωμής', + 'search_group': 'Αναζήτηση 1 Γκρουπ', + 'refund_payment': 'Επιστροφή Πληρωμής', + 'cancelled_invoice': 'Επιτυχής ακύρωση τιμολογίου', + 'cancelled_invoices': 'Επιτυχής ακύρωση τιμολογίων', + 'reversed_invoice': 'Επιτυχής αντιστροφή τιμολογίου', + 'reversed_invoices': 'Επιτυχής αντιστροφή τιμολογίων', + 'reverse': 'Αντιστροφή', + 'full_name': 'Πλήρες Όνομα', + 'city_state_postal': 'Πόλη/Νομός/Τ.Κ.', + 'postal_city_state': 'ΤΚ/Πόλη/Περιοχή', + 'custom1': 'Πρώτη Προσαρμογή', + 'custom2': 'Δεύτερη Προσαρμογή', + 'custom3': 'Τρίτη Προσαρμογή', + 'custom4': 'Τέταρτη Προσαρμογή', + 'optional': 'Προαιρετικό', + 'license': 'Άδεια Χρήσης', + 'purge_data': 'Εκκαθάριση Δεδομένων', + 'purge_successful': 'Επιτυχής εκκαθάριση δεδομένων επιχείρησης', 'purge_data_message': - 'Achtung: Alle Daten werden vollständig gelöscht. Dieser Vorgang kann nicht rückgängig gemacht werden.', - 'invoice_balance': 'Rechnungssaldo', - 'age_group_0': '0 - 30 Tage', - 'age_group_30': '30 - 60 Tage', - 'age_group_60': '60 - 90 Tage', - 'age_group_90': '90 - 120 Tage', - 'age_group_120': '120+ Tage', - 'refresh': 'Aktualisieren', - 'saved_design': 'Design erfolgreich gespeichert', - 'client_details': 'Kundeninformationen', - 'company_address': 'Firmenadresse', - 'invoice_details': 'Rechnungsdetails', - 'quote_details': 'Kostenvoranschlag-Details', - 'credit_details': 'Gutschrift Details', - 'product_columns': 'Produktspalten', - 'task_columns': 'Aufgabenspalten', - 'add_field': 'Feld hinzufügen', - 'all_events': 'Alle Ereignisse', - 'permissions': 'Berechtigungen', - 'none': 'Nichts', - 'owned': 'Eigentümer', - 'payment_success': 'Bezahlung erfolgreich', - 'payment_failure': 'Bezahlung fehlgeschlagen', - 'invoice_sent': ':count Rechnung versendet', - 'quote_sent': 'Kostenvoranschlag versendet', - 'credit_sent': 'Guthaben gesendet', - 'invoice_viewed': 'Rechnung angesehen', - 'quote_viewed': 'Kostenvoranschlag angesehen', - 'credit_viewed': 'Guthaben angesehen', - 'quote_approved': 'Kostenvoranschlag angenommen', - 'receive_all_notifications': 'Empfange alle Benachrichtigungen', - 'purchase_license': 'Lizenz kaufen', - 'apply_license': 'Lizenz anwenden', - 'cancel_account': 'Konto kündigen', + 'Προσοχή: Αυτό θα σβήσει όλα σας τα δεδομένα, χωρίς δυνατότητα αναίρεσης.', + 'invoice_balance': 'Ισοζύγιο Τιμολογίων', + 'age_group_0': '0 - 30 Ημέρες', + 'age_group_30': '30 - 60 Ημέρες', + 'age_group_60': '60 - 90 Ημέρες', + 'age_group_90': '90 - 120 Ημέρες', + 'age_group_120': '120+ Ημέρες', + 'refresh': 'Ανανέωση', + 'saved_design': 'Επιτυχής αποθήκευση σχεδιασμού', + 'client_details': 'Λεπτομέρειες Πελάτη', + 'company_address': 'Διεύθυνση Εταιρείας', + 'invoice_details': 'Στοιχεία Τιμολογίου', + 'quote_details': 'Λεπτομέρειες Προσφοράς', + 'credit_details': 'Λεπτομέρειες Πίστωσης', + 'product_columns': 'Στήλες Προϊόντος', + 'task_columns': 'Στήλες Εργασιών', + 'add_field': 'Προσθήκη Πεδίου', + 'all_events': 'Όλα τα Γεγονότα', + 'permissions': 'Δικαιώματα', + 'none': 'Κανένα', + 'owned': 'Κατέχεται', + 'payment_success': 'Επιτυχία Πληρωμής', + 'payment_failure': 'Αποτυχία Πληρωμής', + 'invoice_sent': ':count τιμολόγιο στάλθηκε', + 'quote_sent': 'Προσφορά στάλθηκε', + 'credit_sent': 'Πίστωση στάλθηκε', + 'invoice_viewed': 'Τιμολόγιο εμφανίστηκε', + 'quote_viewed': 'Προσφορά εμφανίστηκε', + 'credit_viewed': 'Πίστωση εμφανίστηκε', + 'quote_approved': 'Προσφορά έγινε αποδεκτή', + 'receive_all_notifications': 'Αποδοχή όλων των Ειδοποιήσεων', + 'purchase_license': 'Προμήθεια Άδειας Χρήσης', + 'apply_license': 'Εφαρμογή Άδειας Χρήσης', + 'cancel_account': 'Διαγραφή Λογαριασμού', 'cancel_account_message': - 'Warnung: Diese Aktion wird dein Konto unwiderruflich löschen.', - 'delete_company': 'Firma löschen', + 'Προσοχή: Αυτό θα σβήσει το λογαριασμό σας, χωρίς δυνατότητα αναίρεσης.', + 'delete_company': 'Διαγραφή Επιχείρησης', 'delete_company_message': - 'Achtung: Dadurch wird Ihre Firma unwiderruflich gelöscht. Es gibt kein Zurück.', - 'enabled_modules': 'Module aktivieren', - 'converted_quote': 'Angebot erfolgreichen konvertiert', - 'credit_design': 'Guthaben Design', - 'includes': 'Beinhaltet', - 'header': 'Kopf', - 'load_design': 'Designvorlage laden', - 'css_framework': 'CSS-Framework', - 'custom_designs': 'Benutzerdefinierte Designs', - 'designs': 'Designs', - 'new_design': 'Neues Design', - 'edit_design': 'Design bearbeiten', - 'created_design': 'Design erfolgreich erstellt', - 'updated_design': 'Design erfolgreich aktualisiert', - 'archived_design': 'Design erfolgreich archiviert', - 'deleted_design': 'Design erfolgreich gelöscht', - 'removed_design': 'Design erfolgreich entfernt', - 'restored_design': 'Design erfolgreich wiederhergestellt', - 'archived_designs': ':value Designs erfolgreich archiviert', - 'deleted_designs': ':value Designs erfolgreich gelöscht', - 'restored_designs': ':value Designs erfolgreich wiederhergestellt', - 'proposals': 'Vorschläge', - 'tickets': 'Tickets', - 'recurring_quotes': 'Wiederkehrende Angebote', - 'recurring_tasks': 'Wiederkehrende Aufgabe', - 'account_management': 'Kontoverwaltung', - 'credit_date': 'Guthabendatum', - 'credit': 'Gutschrift', - 'credits': 'Guthaben', - 'new_credit': 'Guthaben eingeben', - 'edit_credit': 'Saldo bearbeiten', - 'created_credit': 'Guthaben erfolgreich erstellt', - 'updated_credit': 'Saldo erfolgreich aktualisiert', - 'archived_credit': 'Guthaben erfolgreich archiviert', - 'deleted_credit': 'Guthaben erfolgreich gelöscht', - 'removed_credit': 'Guthaben erfolgreich entfernt', - 'restored_credit': 'Guthaben erfolgreich wiederhergestellt', - 'archived_credits': ':count Guthaben erfolgreich archiviert', - 'deleted_credits': ':count Guthaben erfolgreich gelöscht', - 'restored_credits': ':value Guthaben erfolgreich archiviert', - 'current_version': 'Aktuelle Version', - 'latest_version': 'Neueste Version', - 'update_now': 'Jetzt aktualisieren', + 'Προειδοποίηση: Αυτό θα διαγράψει οριστικά την επιχείρηση, χωρίς αναίρεση.', + 'enabled_modules': 'Ενεργοποιημένες Ενότητες', + 'converted_quote': 'Επιτυχής μετατροπή προσφοράς', + 'credit_design': 'Σχεδιασμός Πιστώσεων', + 'includes': 'Περιλαμβανόμενα', + 'header': 'Επικεφαλίδα', + 'load_design': 'Φόρτωση Σχεδιασμού', + 'css_framework': 'CSS Framework', + 'custom_designs': 'Προσαρμοσμένοι Σχέδια', + 'designs': 'Σχέδια', + 'new_design': 'Νέο σχλεδιο', + 'edit_design': 'Επεξεργασία Σχεδίου', + 'created_design': 'Επιτυχής δημιουργία σχεδιασμού', + 'updated_design': 'Επιτυχής ενημέρωση σχεδιασμού', + 'archived_design': 'Επιτυχής αρχειοθέτηση σχεδιασμού', + 'deleted_design': 'Επιτυχής διαγραφή σχεδιασμού', + 'removed_design': 'Επιτυχής αφαίρεση σχεδιασμού', + 'restored_design': 'Επιτυχής ανάκτηση σχεδιασμού', + 'archived_designs': 'Επιτυχής αρχειοθέτηση :value σχεδίων', + 'deleted_designs': 'Επιτυχής διαγραφή :value σχεδίων', + 'restored_designs': 'Επιτυχής ανάκτηση :value σχεδίων', + 'proposals': 'Προτάσεις', + 'tickets': 'Αιτήματα υποστήριξης', + 'recurring_quotes': 'Επαναλαμβανόμενες Προσφορές', + 'recurring_tasks': 'Επαναλαμβανόμενες Εργασίες', + 'account_management': 'Διαχείριση Λογαριασμού', + 'credit_date': 'Ημ/νία Πίστωσης', + 'credit': 'Πίστωση', + 'credits': 'Πιστώσεις', + 'new_credit': 'Εισάγετε Πίστωση', + 'edit_credit': 'Επεξεργασία Πίστωσης', + 'created_credit': 'Επιτυχής δημιουργία πίστωσης', + 'updated_credit': 'Επιτυχής ενημέρωση πίστωσης', + 'archived_credit': 'Επιτυχής αρχειοθέτηση πίστωσης', + 'deleted_credit': 'Επιτυχής διαγραφή πίστωσης', + 'removed_credit': 'Επιτυχής αφίαρεση πίστωσης', + 'restored_credit': 'Επιτυχής ανάκτηση πίστωσης', + 'archived_credits': 'Επιτυχής αρχειοθέτηση :count πιστώσεων', + 'deleted_credits': 'Επιτυχής διαγραφή :count πιστώσεων', + 'restored_credits': 'Επιτυχής ανάκτηση :value πιστώσεων', + 'current_version': 'Τρέχουσα έκδοση', + 'latest_version': 'Τελευταία Έκδοση', + 'update_now': 'Ενημέρωση Τώρα', 'a_new_version_is_available': - 'Eine neue Version der Webapp ist verfügbar.', - 'update_available': 'Update verfügbar', - 'app_updated': 'Update erfolgreich', - 'learn_more': 'Mehr erfahren', - 'integrations': 'Integrationen', - 'tracking_id': 'Sendungsnummer', - 'slack_webhook_url': 'Slack-Webhook-URL', - 'credit_footer': 'Guthaben-Fußzeile', - 'credit_terms': 'Gutschrift Bedingungen', - 'new_company': 'Neues Konto', - 'added_company': 'Erfolgreich Firma hinzugefügt', - 'company1': 'Benutzerdefinierte Firma 1', - 'company2': 'Benutzerdefinierte Firma 2', - 'company3': 'Benutzerdefinierte Firma 3', - 'company4': 'Benutzerdefinierte Firma 4', - 'product1': 'Benutzerdefiniertes Produkt 1', - 'product2': 'Benutzerdefiniertes Produkt 2', - 'product3': 'Benutzerdefiniertes Produkt 3', - 'product4': 'Benutzerdefiniertes Produkt 4', - 'client1': 'Benutzerdefinierter Kunde 1', - 'client2': 'Benutzerdefinierter Kunde 2', - 'client3': 'Benutzerdefinierter Kunde 3', - 'client4': 'Benutzerdefinierter Kunde 4', - 'contact1': 'Benutzerdefinierter Kontakt 1', - 'contact2': 'Benutzerdefinierter Kontakt 2', - 'contact3': 'Benutzerdefinierter Kontakt 3', - 'contact4': 'Benutzerdefinierter Kontakt 4', - 'task1': 'Benutzerdefinierte Aufgabe 1', - 'task2': 'Benutzerdefinierte Aufgabe 2', - 'task3': 'Benutzerdefinierte Aufgabe 3', - 'task4': 'Benutzerdefinierte Aufgabe 4', - 'project1': 'Benutzerdefiniertes Projekt 1', - 'project2': 'Benutzerdefiniertes Projekt 2', - 'project3': 'Benutzerdefiniertes Projekt 3', - 'project4': 'Benutzerdefiniertes Projekt 4', - 'expense1': 'Benutzerdefinierte Ausgabe 1', - 'expense2': 'Benutzerdefinierte Ausgabe 2', - 'expense3': 'Benutzerdefinierte Ausgabe 3', - 'expense4': 'Benutzerdefinierte Ausgabe 4', - 'vendor1': 'Benutzerdefinierter Lieferant 1', - 'vendor2': 'Benutzerdefinierter Lieferant 2', - 'vendor3': 'Benutzerdefinierter Lieferant 3', - 'vendor4': 'Benutzerdefinierter Lieferant 4', - 'invoice1': 'Benutzerdefinierte Rechnung 1', - 'invoice2': 'Benutzerdefinierte Rechnung 2', - 'invoice3': 'Benutzerdefinierte Rechnung 3', - 'invoice4': 'Benutzerdefinierte Rechnung 4', - 'payment1': 'Benutzerdefinierte Zahlung 1', - 'payment2': 'Benutzerdefinierte Zahlung 2', - 'payment3': 'Benutzerdefinierte Zahlung 3', - 'payment4': 'Benutzerdefinierte Zahlung 4', - 'surcharge1': 'Benutzerdefinierter Zuschlag 1', - 'surcharge2': 'Benutzerdefinierter Zuschlag 2', - 'surcharge3': 'Benutzerdefinierter Zuschlag 3', - 'surcharge4': 'Benutzerdefinierter Zuschlag 4', - 'group1': 'Benutzerdefinierte Gruppe 1', - 'group2': 'Benutzerdefinierte Gruppe 2', - 'group3': 'Benutzerdefinierte Gruppe 3', - 'group4': 'Benutzerdefinierte Gruppe 4', - 'reset': 'Zurücksetzen', - 'number': 'Nummer', - 'export': 'Exportieren', - 'chart': 'Diagramm', - 'count': 'Anzahl', - 'totals': 'Summe', - 'blank': 'Leer', - 'day': 'Tag', - 'month': 'Monat', - 'year': 'Jahr', - 'subgroup': 'Untergruppe', - 'is_active': 'Ist aktiv', - 'group_by': 'Gruppieren nach', - 'credit_balance': 'Guthabenstand', - 'contact_last_login': 'Letzter Login des Kontakts', - 'contact_full_name': 'Vollständiger Name des Kontakts', - 'contact_phone': 'Telefonnummer des Kontakts', - 'contact_custom_value1': 'Kontakt Benutzerdefinierter Wert 1', - 'contact_custom_value2': 'Kontakt Benutzerdefinierter Wert 2', - 'contact_custom_value3': 'Kontakt Benutzerdefinierter Wert 3', - 'contact_custom_value4': 'Kontakt Benutzerdefinierter Wert 4', - 'shipping_address1': 'Strasse Versandanschrift', - 'shipping_address2': 'Versand Adresszusatz', - 'shipping_city': 'Stadt Versandanschrift', - 'shipping_state': 'Versand Bundesland', - 'shipping_postal_code': 'Postleitzahl Versandanschrift', - 'shipping_country': 'Lieferungsland', - 'billing_address1': 'Strasse Rechnungsanschrift', - 'billing_address2': 'Rechnung Adresszusatz', - 'billing_city': 'Stadt Rechnungsanschrift', - 'billing_state': 'Rechnung Bundesland', - 'billing_postal_code': 'Postleitzahl Rechnungsanschrift', - 'billing_country': 'Rechnungsland', - 'client_id': 'Kundennummer', - 'assigned_to': 'Zugewiesen an', - 'created_by': 'Erstellt von :name', - 'assigned_to_id': 'Zugewiesen zur ID', - 'created_by_id': 'Erstellt von ID', - 'add_column': 'Spalte hinzufügen', - 'edit_columns': 'Spalten bearbeiten', - 'columns': 'Spalten', - 'aging': 'Versendet', - 'profit_and_loss': 'Gewinn und Verlust', - 'reports': 'Berichte', - 'report': 'Bericht', - 'add_company': 'Konto hinzufügen', - 'unpaid_invoice': 'Unbezahlte Rechnung', - 'paid_invoice': 'Bezahlte Rechnung', - 'unapproved_quote': 'Nicht genehmigtes Angebot', - 'help': 'Hilfe', - 'refund': 'Erstattung', - 'refund_date': 'Erstattungsdatum', - 'filtered_by': 'Gefiltert nach', - 'contact_email': 'E-Mail-Adresse des Kontakts', - 'multiselect': 'Mehrfachauswahl', - 'entity_state': 'Status', - 'verify_password': 'Passwort überprüfen', - 'applied': 'Angewendet', - 'include_recent_errors': 'Kürzliche Fehler aus den Logs einfügen', + 'Υπάρχει διαθέσιμη νεότερη έκδοση της εφαρμογής web', + 'update_available': 'Διαθέσιμη ενημέρωση', + 'app_updated': 'Η ενημέρωση οκοκληρώθηκε με επιτυχία', + 'learn_more': 'Μάθετε περισσότερα', + 'integrations': 'Ενσωματώσεις', + 'tracking_id': 'Κωδικός παρακολούθησης', + 'slack_webhook_url': 'Διεύθυνση URL του Webhook για το Slack', + 'credit_footer': 'Υποσέλιδο Πίστωσης', + 'credit_terms': 'Όροι Πίστωσης', + 'new_company': 'Νέα Εταιρεία', + 'added_company': 'Επιτυχής προσθήκη επιχείρησης', + 'company1': 'Προσαρμοσμένη εταιρεία 1', + 'company2': 'Προσαρμοσμένη εταιρεία 2', + 'company3': 'Προσαρμοσμένη εταιρεία 3', + 'company4': 'Προσαρμοσμένη εταιρεία 4', + 'product1': 'Προσαρμοσμένο Προιόν 1', + 'product2': 'Προσαρμοσμένο Προιόν 2', + 'product3': 'Προσαρμοσμένο Προιόν 3', + 'product4': 'Προσαρμοσμένο Προιόν 4', + 'client1': 'Προσαρμοσμένος Πελάτης 1', + 'client2': 'Προσαρμοσμένος Πελάτης 2', + 'client3': 'Προσαρμοσμένος Πελάτης 3', + 'client4': 'Προσαρμοσμένος Πελάτης 4', + 'contact1': 'Προσαρμοσμένη Επαφή 1', + 'contact2': 'Προσαρμοσμένη Επαφή 2', + 'contact3': 'Προσαρμοσμένη Επαφή 3', + 'contact4': 'Προσαρμοσμένη Επαφή 4', + 'task1': 'Προσαρμοσμένη Εργασία 1', + 'task2': 'Προσαρμοσμένη Εργασία 2', + 'task3': 'Προσαρμοσμένη Εργασία 3', + 'task4': 'Προσαρμοσμένη Εργασία 4', + 'project1': 'Προσαρμοσμένο Εργο 1', + 'project2': 'Προσαρμοσμένο Εργο 2', + 'project3': 'Προσαρμοσμένο Εργο 3', + 'project4': 'Προσαρμοσμένο Εργο 4', + 'expense1': 'Προσαρμοσμένες Δαπάνες 1', + 'expense2': 'Προσαρμοσμένες Δαπάνες 2', + 'expense3': 'Προσαρμοσμένες Δαπάνες 3', + 'expense4': 'Προσαρμοσμένες Δαπάνες 4', + 'vendor1': 'Προσαρμοσμένος Προμηθευτής 1', + 'vendor2': 'Προσαρμοσμένος Προμηθευτής 2', + 'vendor3': 'Προσαρμοσμένος Προμηθευτής 3', + 'vendor4': 'Προσαρμοσμένος Προμηθευτής 4', + 'invoice1': 'Προσαρμοσμένο Τιμολόγιο 1', + 'invoice2': 'Προσαρμοσμένο Τιμολόγιο 2', + 'invoice3': 'Προσαρμοσμένο Τιμολόγιο 3', + 'invoice4': 'Προσαρμοσμένο Τιμολόγιο 4', + 'payment1': 'Προσαρμοσμένη Πληρωμή 1', + 'payment2': 'Προσαρμοσμένη Πληρωμή 2', + 'payment3': 'Προσαρμοσμένη Πληρωμή 3', + 'payment4': 'Προσαρμοσμένη Πληρωμή 4', + 'surcharge1': 'Προσαρμοσμένη Προσαύξηση 1', + 'surcharge2': 'Προσαρμοσμένη Προσαύξηση 2', + 'surcharge3': 'Προσαρμοσμένη Προσαύξηση 3', + 'surcharge4': 'Προσαρμοσμένη Προσαύξηση 4', + 'group1': 'Προσαρμοσένη Ομάδα 1', + 'group2': 'Προσαρμοσένη Ομάδα 2', + 'group3': 'Προσαρμοσένη Ομάδα 3', + 'group4': 'Προσαρμοσένη Ομάδα 4', + 'reset': 'Επαναφορά', + 'number': 'Αριθμός', + 'export': 'Εξαγωγή', + 'chart': 'Διάγραμμα', + 'count': 'Μέτρηση', + 'totals': 'Σύνολα', + 'blank': 'Κενό', + 'day': 'Ημέρα', + 'month': 'Μήνας', + 'year': 'Έτος', + 'subgroup': 'Υποομάδα', + 'is_active': 'Είναι ενεργό', + 'group_by': 'Ομαδοποίηση με', + 'credit_balance': 'Υπόλοιπο Πίστωσης', + 'contact_last_login': 'Τελευταία είσοδος επαφής', + 'contact_full_name': 'Πλήρες ονοματεπώνυμο επαφής', + 'contact_phone': 'Τηλέφωνο Επικοινωνίας', + 'contact_custom_value1': 'Προσαρμοσμένη Τιμή Επαφής 1', + 'contact_custom_value2': 'Προσαρμοσμένη Τιμή Επαφής 2', + 'contact_custom_value3': 'Προσαρμοσμένη Τιμή Επαφής 3', + 'contact_custom_value4': 'Προσαρμοσμένη Τιμή Επαφής 4', + 'shipping_address1': 'Οδός Αποστολής', + 'shipping_address2': 'Διαμέρισμα Αποστολής', + 'shipping_city': 'Πόλη Αποστολής', + 'shipping_state': 'Περιφέρεια Αποστολής', + 'shipping_postal_code': 'Ταχυδρομικός Κώδικας Αποστολής', + 'shipping_country': 'Χώρα Αποστολής', + 'billing_address1': 'Οδός Χρέωσης', + 'billing_address2': 'Διαμέρισμα Χρέωσης', + 'billing_city': 'Πόλη Χρέωσης', + 'billing_state': 'Περιφέρεια Χρέωσης', + 'billing_postal_code': 'Ταχυδρομικός Κωδικός Χρέωσης', + 'billing_country': 'Χώρα Χρέωσης', + 'client_id': 'Id Πελάτη', + 'assigned_to': 'Ανατέθηκε σε', + 'created_by': 'Δημιουργήθηκε από :name', + 'assigned_to_id': 'Ορίστηκε σε Id', + 'created_by_id': 'Δημιουργήθηκε απο Id', + 'add_column': 'Προσθήκη στήλης', + 'edit_columns': 'Επεξεργασία στηλών', + 'columns': 'Στήλες', + 'aging': 'Γήρανση', + 'profit_and_loss': 'Κέρδος και Ζημιά', + 'reports': 'Αναφορές', + 'report': 'Αναφορά', + 'add_company': 'Προσθήκη Εταιρείας', + 'unpaid_invoice': 'Μη Εξοφλημένο Τιμολόγιο', + 'paid_invoice': 'Εξοφλημένο Τιμολόγιο', + 'unapproved_quote': 'Μη Εγκεκριμένη Προσφορά', + 'help': 'Βοήθεια', + 'refund': 'Επιστροφή χρημάτων', + 'refund_date': 'Ημερομηνία επιστροφής χρημάτων', + 'filtered_by': 'Φιλτράρισμα με', + 'contact_email': 'Email Επικοινωνίας', + 'multiselect': 'Πολλαπλή επιλογή', + 'entity_state': 'Κατάσταση', + 'verify_password': 'Επαλήθευση Κωδικού', + 'applied': 'Εγινε εφαρμογή', + 'include_recent_errors': + 'Συμπερίληψη πρόσφατων σφαλμάτων απο αρχεία καταγραφής', 'your_message_has_been_received': - 'Wir haben ihre Nachricht erhalten und bemühen uns schnellstmöglich zu antworten.', - 'message': 'Nachricht', - 'from': 'Von', - 'show_product_details': 'Produktdetails anzeigen', + 'Εχουμε λάβει το μήνυμά σας και θα σας απαντήσουμε σύντομα.', + 'message': 'Μήνυμα', + 'from': 'Από', + 'show_product_details': 'Εμφάνιση Λεπτομερειών Προιόντος', 'show_product_details_help': - 'Beschreibung und Kosten in die Produkt-Dropdown-Liste einfügen', - 'pdf_min_requirements': 'Der PDF-Renderer benötigt :version', - 'adjust_fee_percent': 'Anpassungszuschlag Prozent', - 'adjust_fee_percent_help': 'Gebühren Prozentsatz an das Konto anpassen', - 'configure_settings': 'Einstellungen bearbeiten', - 'support_forum': 'Support-Forum', - 'about': 'Über', - 'documentation': 'Dokumentation', - 'contact_us': 'Kontaktieren Sie uns', - 'subtotal': 'Zwischensumme', - 'line_total': 'Summe', - 'item': 'Artikel', - 'credit_email': 'Guthaben E-Mail', - 'iframe_url': 'Webseite', - 'domain_url': 'Domain-URL', - 'password_is_too_short': 'Das Passwort ist zu kurz', + 'Συμπερίληψη της περιγραφής και κόστους τιμής στη λίστα προιόντος', + 'pdf_min_requirements': 'Ο κωδικοποιητής PDF απαιτεί :version', + 'adjust_fee_percent': 'Προσαρμογή του ποσοστού του τέλους', + 'adjust_fee_percent_help': + 'Τροποποίηση του ποσοστού του λογαριασμού για τέλος', + 'configure_settings': 'Προσαρμογή Ρυθμίσεων', + 'support_forum': 'φόρουμ υποστήριξης', + 'about': 'Περί', + 'documentation': 'Τεκμηρίωση', + 'contact_us': 'Επικοινωνήστε μαζί μας', + 'subtotal': 'Μερικό Σύνολο', + 'line_total': 'Αξία', + 'item': 'Προϊόν', + 'credit_email': 'Πιστωτικό μήνυμα ηλεκτρονικού ταχυδρομείου', + 'iframe_url': 'Ιστοσελίδα', + 'domain_url': 'Σύνδεσμος URL', + 'password_is_too_short': 'Ο κωδικός πρόσβασης είναι πολύ μικρός', 'password_is_too_easy': - 'Das Passwort muss einen Großbuchstaben und eine Nummer enthalten', - 'client_portal_tasks': 'Kundenportal-Aufgaben', - 'client_portal_dashboard': 'Kundenportal-Übersicht', - 'please_enter_a_value': 'Bitte einen Wert eingeben', - 'deleted_logo': 'Logo erfolgreich gelöscht', - 'yes': 'Ja', - 'no': 'Nein', - 'generate_number': 'Nummer generieren', - 'when_saved': 'Wenn gespeichert', - 'when_sent': 'Wenn gesendet', - 'select_company': 'Firma auswählen', - 'float': 'Schwebend', - 'collapse': 'Einklappen', - 'show_or_hide': 'Anzeigen/verstecken', - 'menu_sidebar': 'Menüleiste', - 'history_sidebar': 'Verlaufs-Seitenleiste', - 'tablet': 'Tablet', - 'mobile': 'Mobil', - 'desktop': 'Desktop', - 'layout': 'Layout', - 'view': 'Ansehen', - 'module': 'Modul', - 'first_custom': 'Erste benutzerdefinierte', - 'second_custom': 'Zweite benutzerdefinierte', - 'third_custom': 'Dritte benutzerdefinierte', - 'show_cost': 'Kosten anzeigen', - 'show_product_cost': 'Produktkosten anzeigen', + 'Ο κωδικός πρόσβασης πρέπει να περιέχει ένα κεφαλαίο χαρακτήρα και έναν αριθμό', + 'client_portal_tasks': 'Εργασίες πύλης πελάτη', + 'client_portal_dashboard': 'Πίνακας ελέγχου πύλης πελατών', + 'please_enter_a_value': 'Παρακαλούμε ορίστε μια τιμή', + 'deleted_logo': 'Επιτυχής διαγραφή λογότυπου', + 'yes': 'Ναι', + 'no': 'Όχι', + 'generate_number': 'Δημιουργία Αριθμού', + 'when_saved': 'Οταν αποθηκευτεί', + 'when_sent': 'Οταν αποσταλλεί', + 'select_company': 'Επιλέξτε Εταιρεία', + 'float': 'Float', + 'collapse': 'Συρρίκνωση', + 'show_or_hide': 'Εμφάνιση/απόκρυψη', + 'menu_sidebar': 'Πλευρικό Μενού', + 'history_sidebar': 'Μενού Πλευρικού Ιστορικού', + 'tablet': 'Τάμπλετ', + 'mobile': 'Κινητό', + 'desktop': 'Σταθερός υπολογιστής', + 'layout': 'Εμφάνιση', + 'view': 'Προβολή', + 'module': 'Ενότητα', + 'first_custom': 'Πρώτη Προσαρμογή', + 'second_custom': 'Δεύτερη Προσαρμογή', + 'third_custom': 'Τρίτη Προσαρμογή', + 'show_cost': 'Εμφάνιση Κόστους', + 'show_product_cost': 'Εμφάνιση Κόστους Προιόντος', 'show_cost_help': - 'Feld für Einkaufspreis anzeigen, um Gewinnspanne zu verfolgen', - 'show_product_quantity': 'Produktanzahl anzeigen', + 'Εμφάνιση του πεδίου κόστους προϊόντος για να είναι δυνατή η εύρεση του κέρδους', + 'show_product_quantity': 'Εμφάνισε την Ποσότητα Προϊόντος', 'show_product_quantity_help': - 'Zeigen ein Mengenangabe Feld, sonst den Standardwert 1', - 'show_invoice_quantity': 'Rechnungsanzahl anzeigen', + 'Εμφάνιση του πεδίου ποσότητας προϊόντος, αλλιώς ορισμός σε ένα', + 'show_invoice_quantity': 'Εμφάνισε την Ποσότητα Τιμολογίου', 'show_invoice_quantity_help': - 'Zeige ein Rechnungsposten Anzahlfeld, sonst den Standardwert 1', - 'show_product_discount': 'Produktermäßigung anzeigen', - 'show_product_discount_help': 'Zeige Rabattfeld in Belegposition', - 'default_quantity': 'Standardanzahl', - 'default_quantity_help': - 'Setze den Rechnungsposten automatisch auf Anzahl 1', - 'one_tax_rate': 'Ein Steuersatz', - 'two_tax_rates': 'Zwei Steuersätze', - 'three_tax_rates': 'Drei Steuersätze', - 'default_tax_rate': 'Standard-Steuersatz', - 'user': 'Benutzer', - 'invoice_tax': 'Rechnungssteuer', - 'line_item_tax': 'Belegposition Steuer', - 'inclusive_taxes': 'Inklusive Steuern', - 'invoice_tax_rates': 'Rechnungs-Steuersätze', - 'item_tax_rates': 'Element-Steuersätze', - 'no_client_selected': 'Bitte wählen Sie einen Kunden', - 'configure_rates': 'Steuersätze bearbeiten', - 'configure_gateways': 'Zahlungsanbieter bearbeiten', - 'tax_settings': 'Steuer-Einstellungen', - 'tax_settings_rates': 'Steuersätze', - 'accent_color': 'Akzent-Farbe', - 'switch': 'Switch', - 'comma_sparated_list': 'Komma-separierte Liste', - 'options': 'Optionen', - 'single_line_text': 'Einzeiliger Text', - 'multi_line_text': 'Mehrzeiliger Text', - 'dropdown': 'Dropdown', - 'field_type': 'Feldtyp', + 'Εμφάνιση του πεδίου ποσότητας γραμμής, αλλιώς ορισμός σε ένα', + 'show_product_discount': 'Εμφάνιση Έκπτωσης Προιόντος', + 'show_product_discount_help': 'Εμφάνιση έκπτωσης του πεδίου γραμμής', + 'default_quantity': 'Προεπιλεγμένη Ποσότητα', + 'default_quantity_help': 'Αυτόματος ορισμός της ποσότητας γραμμής σε ένα', + 'one_tax_rate': 'Ένα Ποσοστό Φόρου', + 'two_tax_rates': 'Δύο Ποσοστά Φόρων', + 'three_tax_rates': 'Τρία Ποσοστά Φόρων', + 'default_tax_rate': 'Προεπιλεγμένο Ποσοστό Φόρου', + 'user': 'Χρήστης', + 'invoice_tax': 'Φόρος Τιμολογίου', + 'line_item_tax': 'Ποσοστό Φόρου Γραμμής', + 'inclusive_taxes': 'Συμπεριλαμβανόμενοι Φόροι', + 'invoice_tax_rates': 'Φόροι Τιμολογίου', + 'item_tax_rates': 'Ποσοστά Φόρων Προϊόντος', + 'no_client_selected': 'Παρακαλώ επιλέξτε πελάτη', + 'configure_rates': 'Προσαρμογή ποσοστών', + 'configure_gateways': 'Παραμετροποίηση Πυλών Πληρωμών (Gateways)', + 'tax_settings': 'Ρυθμίσεις Φόρων', + 'tax_settings_rates': 'Ποσοστά Φόρων', + 'accent_color': 'Χρώμα Τονισμού', + 'switch': 'Εναλλαγή', + 'comma_sparated_list': 'Λίστα διαχωριζόμενη με κόμματα', + 'options': 'Επιλογές', + 'single_line_text': 'Κείμενο μονής γραμμής', + 'multi_line_text': 'Κείμενο πολλαπλών γραμμών', + 'dropdown': 'Πτυσώμενο', + 'field_type': 'Τύπος Πεδίου', 'recover_password_email_sent': - 'Eine Passwort-Wiederherstellungs-Mail wurde versendet', - 'submit': 'Abschicken', - 'recover_password': 'Passwort wiederherstellen', - 'late_fees': 'Verspätungszuschläge', - 'credit_number': 'Gutschriftnummer', - 'payment_number': 'Zahlungsnummer', - 'late_fee_amount': 'Höhe des Verspätungszuschlags', - 'late_fee_percent': 'Verspätungszuschlag Prozent', - 'schedule': 'Zeitgesteuert', - 'before_due_date': 'Vor dem Fälligkeitsdatum', - 'after_due_date': 'Nach dem Fälligkeitsdatum', - 'after_invoice_date': 'Nach dem Rechnungsdatum', - 'days': 'Tage', - 'invoice_email': 'Rechnungsmail', - 'payment_email': 'Zahlungsmail', - 'partial_payment': 'Teilzahlung', - 'payment_partial': 'Teilzahlung', - 'partial_payment_email': 'Teilzahlungsmail', - 'quote_email': 'Angebotsmail', - 'endless_reminder': 'Endlose Erinnnerung', - 'filtered_by_user': 'Gefiltert nach Benutzer', - 'administrator': 'Administrator', + 'Ένα email ανάκτησης κωδικού έχει αποσταλεί', + 'submit': 'Υποβολή', + 'recover_password': 'Ανάκτηση του κωδικού πρόσβασής σας', + 'late_fees': 'Καθυστερούμενα Τέλη', + 'credit_number': 'Αριθμός Πίστωσης', + 'payment_number': 'Αριθμός Πληρωμής', + 'late_fee_amount': 'Ποσό Τέλους Καθυστερημένης Εξόφλησης', + 'late_fee_percent': 'Ποσοστό Τέλους Καθυστερημένης Εξόφλησης', + 'schedule': 'Προγραμμάτισε', + 'before_due_date': 'Πριν την ημερομηνία πληρωμής', + 'after_due_date': 'Μετά την ημερομηνία πληρωμής', + 'after_invoice_date': 'Μετά την ημερομηνία τιμολογίου', + 'days': 'Ημέρες', + 'invoice_email': 'Email Τιμολογίων', + 'payment_email': 'Email Πληρωμών', + 'partial_payment': 'Μερική Πληρωμή', + 'payment_partial': 'Μερική Πληρωμή', + 'partial_payment_email': 'Email Μερικής Πληρωμής', + 'quote_email': 'Email Προσφορών', + 'endless_reminder': 'Συνεχής Υπενθύμιση', + 'filtered_by_user': 'Φιλτράρισμα από το Χρήστη', + 'administrator': 'Διαχειριστής', 'administrator_help': - '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', - 'edit_user': 'Benutzer bearbeiten', - 'created_user': 'Benutzer erfolgreich erstellt', - 'updated_user': 'Benutzer erfolgreich aktualisiert', - 'archived_user': 'Benutzer erfolgreich archiviert', - 'deleted_user': 'Benutzer erfolgreich gelöscht', - 'removed_user': 'Benutzer erfolgreich entfernt', - 'restored_user': 'Benutzer erfolgreich wiederhergestellt', - 'archived_users': ':value Benutzer erfolgreich archiviert', - 'deleted_users': ':value Benutzer erfolgreich gelöscht', - 'removed_users': ':value Benutzer erfolgreich entfernt', - 'restored_users': ':value Benutzer erfolgreich wiederhergestellt', - 'general_settings': 'Allgemeine Einstellungen', - 'invoice_options': 'Rechnungsoptionen', - 'hide_paid_to_date': '\"Bereits gezahlt\" ausblenden', + 'Επιτρέψτε στο χρήστη να διαχειρίζεται χρήστες, να αλλάζει ρυθμίσεις και να τροποποιεί όλες τις εγγραφές', + 'user_management': 'Διαχειριση Χρηστών', + 'users': 'Χρήστες', + 'new_user': 'Νέος Χρήστης', + 'edit_user': 'Επεξεργασία Χρήστη', + 'created_user': 'Επιτυχής δημιουργία χρήστη', + 'updated_user': 'Επιτυχής ενημέρωση χρήστη', + 'archived_user': 'Επιτυχής αρχειοθέτηση χρήστη', + 'deleted_user': 'Επιτυχής διαγραφή χρήστη', + 'removed_user': 'Επιτυχής αφαίρεση χρήστη', + 'restored_user': 'Επιτυχής ανάκτηση χρήστη', + 'archived_users': 'Επιτυχής αρχειοθέτηση :value χρηστών', + 'deleted_users': 'Επιτυχής διαγραφή :value χρηστών', + 'removed_users': 'Επιτυχής αφαίρεση :value χρηστών', + 'restored_users': 'Επιτυχής ανάκτηση :value χρηστών', + 'general_settings': 'Γενικές Ρυθμίσεις', + 'invoice_options': 'Επιλογές Τιμολογίου', + 'hide_paid_to_date': 'Απόκρυψη Εξοφλημένου Ποσού', 'hide_paid_to_date_help': - '\"Bereits gezahlt\" nur anzeigen, wenn eine Zahlung eingegangen ist.', - 'invoice_embed_documents': 'Dokumente einbetten', + 'Εμφάνιση πεδίου \"Εξοφλημένο Ποσό\" μόνο στο παραστατικό όταν ληφθεί μια πληρωμή.', + 'invoice_embed_documents': 'Ενσωματωμένα Έγγραφα', 'invoice_embed_documents_help': - 'Bildanhänge zu den Rechnungen hinzufügen.', - 'all_pages_header': 'Zeige Kopf auf', - 'all_pages_footer': 'Zeige Fußzeilen auf', - 'first_page': 'Erste Seite', - 'all_pages': 'Alle Seiten', - 'last_page': 'Letzte Seite', - 'primary_font': 'Primäre Schriftart', - 'secondary_font': 'Sekundäre Schriftart', - 'primary_color': 'Primäre Farbe', - 'secondary_color': 'Sekundäre Farbe', - 'page_size': 'Seitengröße', - 'font_size': 'Schriftgröße', - 'quote_design': 'Angebots-Layout', - 'invoice_fields': 'Rechnungsfelder', - 'product_fields': 'Produktfelder', - 'invoice_terms': 'Rechnungsbedingungen', - 'invoice_footer': 'Rechnungsfußzeile', - 'quote_terms': 'Angebotsbedingungen', - 'quote_footer': 'Angebots-Fußzeile', - 'auto_email_invoice': 'Automatische Email', + 'Συμπεριλάβετε τις συνημμένες εικόνες στο τιμολόγιο', + 'all_pages_header': 'Εμφάνιση Κεφαλίδας', + 'all_pages_footer': 'Εμφάνιση Υποσέλιδου', + 'first_page': 'Πρώτη σελίδα', + 'all_pages': 'Προσθήκη Σελίδας', + 'last_page': 'Τελευταία σελίδα', + 'primary_font': 'Κύρια Γραμματοσειρά', + 'secondary_font': 'Δευτερεύουσα Γραμματοσειρά', + 'primary_color': 'Κύριο Χρώμα', + 'secondary_color': 'Δευτερεύον Χρώμα', + 'page_size': 'Μέγεθος Σελίδας', + 'font_size': 'Μέγεθος Γραμμάτων', + 'quote_design': 'Σχεδιασμός Προσφοράς', + 'invoice_fields': 'Πεδία Τιμολογίου', + 'product_fields': 'Πεδία Προϊόντος', + 'invoice_terms': 'Όροι Τιμολογίου', + 'invoice_footer': 'Υποσέλιδο Τιμολογίου', + 'quote_terms': 'Όροι Προσφοράς', + 'quote_footer': 'Υποσέλιδο Προσφοράς', + 'auto_email_invoice': 'Αυτόματο Email', 'auto_email_invoice_help': - 'Senden Sie wiederkehrende Rechnungen automatisch per E-Mail, wenn sie erstellt werden.', - 'auto_archive_invoice': 'Automatisches Archiv', + 'Αυτόματη αποστολή επαναλαμβανόμενων τιμολογίων με email όταν δημιουργηθούν.', + 'auto_archive_invoice': 'Αυτόματη Αρχειοθέτηση', 'auto_archive_invoice_help': - 'Archivieren Sie Rechnungen automatisch, wenn sie bezahlt sind.', - 'auto_archive_quote': 'Automatisches Archiv', + 'Αυτόματη αρχειοθέτηση τιμολογίων όταν εξοφληθούν.', + 'auto_archive_quote': 'Αυτόματη Αρχειοθέτηση', 'auto_archive_quote_help': - 'Archivieren Sie Angebote automatisch, wenn sie konvertiert werden.', - 'auto_convert_quote': 'Automatisch konvertieren', + 'Αυτόματη αρχειοθέτηση προσφορών όταν μετατραπούν.', + 'auto_convert_quote': 'Αυτόματη Μετατροπή', 'auto_convert_quote_help': - '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', - 'freq_two_weeks': 'Zweiwöchentlich', - 'freq_four_weeks': 'Vierwöchentlich', - 'freq_monthly': 'Monatlich', - 'freq_two_months': 'Zwei Monate', - 'freq_three_months': 'Dreimonatlich', - 'freq_four_months': 'Vier Monate', - 'freq_six_months': 'Halbjährlich', - 'freq_annually': 'Jährlich', - 'freq_two_years': 'Zwei Jahre', - 'freq_three_years': 'Drei Jahre', - 'never': 'Niemals', - 'company': 'Firma', - 'generated_numbers': 'Generierte Nummern', - 'charge_taxes': 'Steuern erheben', - 'next_reset': 'Nächster Reset', - 'reset_counter': 'Zähler-Reset', - 'recurring_prefix': 'Wiederkehrender Präfix', - 'number_padding': 'Nummernabstand', - 'general': 'Allgemein', - 'surcharge_field': 'Zuschlagsfeld', - 'company_field': 'Firmenfeld', - 'company_value': 'Firmenwert', - 'credit_field': 'Kredit-Feld', - 'invoice_field': 'Rechnungsfeld', - 'invoice_surcharge': 'Rechnungsgebühr', - 'client_field': 'Kundenfeld', - 'product_field': 'Produktfeld', - 'payment_field': 'Zahlungs-Feld', - 'contact_field': 'Kontaktfeld', - 'vendor_field': 'Lieferantenfeld', - 'expense_field': 'Ausgabenfeld', - 'project_field': 'Projektfeld', - 'task_field': 'Aufgabenfeld', - 'group_field': 'Gruppen-Feld', - 'number_counter': 'Nummernzähler', - 'prefix': 'Präfix', - 'number_pattern': 'Nummernschema', - 'messages': 'Nachrichten', - 'custom_css': 'Benutzerdefiniertes CSS', - 'custom_javascript': 'Benutzerdefiniertes JavaScript', - 'signature_on_pdf': 'Auf PDF anzeigen', - 'signature_on_pdf_help': - '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.', - 'show_accept_quote_terms': 'Checkbox für Angebotsbedingungen', - 'show_accept_quote_terms_help': - '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.', - 'require_quote_signature': 'Angebotsunterschrift', - 'enable_portal_password': 'Rechnungen mit Passwort schützen', + 'Αυτόματη μετατροπή της προσφοράς σε τιμολόγιο μόλις γίνει αποδεκτή από τον πελάτη.', + 'workflow_settings': 'Ρυθμίσεις Ροής Εργασιών', + 'freq_daily': 'Ημερήσιο', + 'freq_weekly': 'Εβδομάδα', + 'freq_two_weeks': 'Δύο εβδομάδες', + 'freq_four_weeks': 'Τέσσερις εβδομάδες', + 'freq_monthly': 'Μήνας', + 'freq_two_months': 'Δύο μήνες', + 'freq_three_months': 'Τρεις μήνες', + 'freq_four_months': 'Τέσσερις μήνες', + 'freq_six_months': 'Έξι μήνες', + 'freq_annually': 'Έτος', + 'freq_two_years': 'Δύο χρόνια', + 'freq_three_years': 'Τρία Χρόνια', + 'never': 'Ποτέ', + 'company': 'Εταιρεία', + 'generated_numbers': 'Δημιουργημένοι Αριθμοί', + 'charge_taxes': 'Χρέωση φόρων', + 'next_reset': 'Επόμενη επανεκκίνηση', + 'reset_counter': 'Επανεκκίνηση Μετρητή', + 'recurring_prefix': 'Επαναλαμβανόμενο Πρόθεμα', + 'number_padding': 'Περιθώριο Αρίθμησης', + 'general': 'Γενικός', + 'surcharge_field': 'Πεδίο Επιβάρυνσης', + 'company_field': 'Πεδίο Εταιρείας', + 'company_value': 'Αξία Εταιρίας', + 'credit_field': 'Πεδίο Πίστωσης', + 'invoice_field': 'Πεδίο Τιμολογίου', + 'invoice_surcharge': 'Επιβάρυνση Τιμολογίου', + 'client_field': 'Πεδίο Πελάτη', + 'product_field': 'Πεδίο Προϊόντος', + 'payment_field': 'Πεδίο Πληρωμής', + 'contact_field': 'Πεδίο Επαφής', + 'vendor_field': 'Πεδίο Προμηθευτή', + 'expense_field': 'Πεδίο Δαπάνης', + 'project_field': 'Πεδίο Project', + 'task_field': 'Πεδίο Εργασίας', + 'group_field': 'Πεδίο Γκρουπ', + 'number_counter': 'Μετρητής Αρίθμησης', + 'prefix': 'Πρόθεμα', + 'number_pattern': 'Μοτίβο Αρίθμησης', + 'messages': 'Μηνύματα', + 'custom_css': 'Προσαρμοσμένο CSS', + 'custom_javascript': 'Προσαρμοσμένη JavaScript', + 'signature_on_pdf': 'Εμφάνισε στο PDF', + 'signature_on_pdf_help': + 'Εμφάνισε την υπογραφή του πελάτη στο 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': - '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.', - 'authorization': 'Genehmigung', - 'subdomain': 'Subdomäne', - 'domain': 'Domäne', - 'portal_mode': 'Portalmodus', - 'email_signature': 'Mit freundlichen Grüßen,', + 'Επιτρέπει τον καθορισμό κωδικού πρόσβασης για κάθε επαφή. Αν έχει καθοριστεί κωδικός, η επαφή θα υποχρεούται να καταχωρήσει κωδικό πριν την προβολή των τιμολογίων.', + 'authorization': 'Εξουσιοδότηση', + 'subdomain': 'Υποτομέας', + 'domain': 'Domain', + 'portal_mode': 'Περιβάλλον Portal', + 'email_signature': 'Με εκτίμηση,', '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.', - 'plain': 'Einfach', - 'light': 'Hell', - 'dark': 'Dunkel', - 'email_design': 'E-Mail-Design', - 'attach_pdf': 'PDF anhängen', - 'attach_documents': 'Dokumente anhängen', - 'attach_ubl': 'UBL anhängen', - 'email_style': 'E-Mail-Stil', - 'enable_email_markup': 'Markup erlauben', - 'reply_to_email': 'Antwort-E-Mail-Adresse', - 'reply_to_name': 'Name der Antwortadresse', - 'bcc_email': 'BCC E-Mail', - 'processed': 'Verarbeitet', - 'credit_card': 'Kreditkarte', - 'bank_transfer': 'Überweisung', - 'priority': 'Priorität', - 'fee_amount': 'Zuschlag Betrag', - 'fee_percent': 'Zuschlag Prozent', - 'fee_cap': 'Gebührenobergrenze', - 'limits_and_fees': 'Grenzwerte/Gebühren', - 'enable_min': 'Min aktivieren', - 'enable_max': 'Max aktivieren', - 'min_limit': 'Min: :min', - 'max_limit': 'Max: :max', - 'min': 'Min', - 'max': 'Max', - 'accepted_card_logos': 'Logos der akzeptierten Kreditkarten', - 'credentials': 'Zugangsdaten', - 'update_address': 'Adresse aktualisieren', + 'Κάντε τη διαδικασία πληρωμής πιο εύκολη για τους πελάτες σας προσθέτοντας σήμανση από το schema.org στα emails σας.', + 'plain': 'Απλό', + 'light': 'Ανοιχτό', + 'dark': 'Σκούρο', + 'email_design': 'Σχεδίαση Email', + 'attach_pdf': 'Επισύναψε PDF', + 'attach_documents': 'Επισύναψη Εγγράφων', + 'attach_ubl': 'Επισύναψη UBL', + 'email_style': 'Στυλ Email', + 'enable_email_markup': 'Ενεργοποίηση Σημανσης', + 'reply_to_email': 'Email Απάντησης', + 'reply_to_name': 'Reply-To Name', + 'bcc_email': 'Email ιδιαίτερης κοινοποίησης', + 'processed': 'Επεξεργάσθηκε', + 'credit_card': 'Πιστωτική Κάρτα', + 'bank_transfer': 'Τραπεζικό Έμβασμα', + 'priority': 'Προτεραιότητα', + 'fee_amount': 'Ποσό Τέλους', + 'fee_percent': 'Ποσοστό Τέλους', + 'fee_cap': 'Ανώτατο Όριο Τέλους', + 'limits_and_fees': 'Όρια/Τέλη', + 'enable_min': 'Ενεργοποίηση ελάχιστου', + 'enable_max': 'Ενεργοποίηση μέγιστου', + 'min_limit': 'Ελάχιστο: :min', + 'max_limit': 'Μέγιστο: :max', + 'min': 'Ελάχιστο', + 'max': 'Μέγιστο', + 'accepted_card_logos': 'Λογότυπα Αποδεκτών Καρτών', + 'credentials': 'Στοιχεία εισόδου', + 'update_address': 'Ενημέρωση Διεύθυνσης', 'update_address_help': - 'Kundenadresse mit den gemachten Angaben aktualisieren', - 'rate': 'Satz', - 'tax_rate': 'Steuersatz', - 'new_tax_rate': 'Neuer Steuersatz', - 'edit_tax_rate': 'Steuersatz bearbeiten', - 'created_tax_rate': 'Steuersatz erstellt', - 'updated_tax_rate': 'Steuersatz aktualisiert', - 'archived_tax_rate': 'Steuersatz archiviert', - 'deleted_tax_rate': 'Steuersatz erfolgreich gelöscht', - 'restored_tax_rate': 'Steuersatz erfolgreich wiederhergestellt', - 'archived_tax_rates': ':value Steuersätze erfolgreich archiviert', - 'deleted_tax_rates': ':value Steuersätze erfolgreich gelöscht', - 'restored_tax_rates': ':value Steuersätze erfolgreich wiederhergestellt', - 'fill_products': 'Produkte automatisch ausfüllen', + 'Ενημέρωση της διεύθυνσης του πελάτη με τα παρεχόμενα στοιχεία', + 'rate': 'Ποσοστό', + 'tax_rate': 'Ποσοστό Φόρου', + 'new_tax_rate': 'Νέο Ποσοστό Φόρου', + 'edit_tax_rate': 'Επεξεργασία ποσοστού φόρου', + 'created_tax_rate': 'Επιτυχής δημιουργία ποσοστού φόρου', + 'updated_tax_rate': 'Επιτυχής ενημέρωση ποσοστού φόρου', + 'archived_tax_rate': 'Επιτυχής αρχειοθέτηση ποσοστού φόρου', + 'deleted_tax_rate': 'Επιτυχής διαγραφή ποσοστού φόρου', + 'restored_tax_rate': 'Επιτυχής ανάκτηση ποσοστού φόρου', + 'archived_tax_rates': 'Επιτυχής αρχειοθέτηση :value ποσοστών φόρου', + 'deleted_tax_rates': 'Επιτυχής διαγραφή :value ποσοστών φόρου', + 'restored_tax_rates': 'Επιτυχής ανάκτηση :value ποσοστών φόρου', + 'fill_products': 'Αυτόματη συμπλήρωση προϊόντων', 'fill_products_help': - 'Beim Auswählen eines Produktes werden automatisch Beschreibung und Kosten ausgefüllt', - 'update_products': 'Produkte automatisch aktualisieren', + 'Επιλέγοντας ένα προϊόν, αυτόματα θα συμπληρωθεί η περιγραφή και η αξία', + 'update_products': 'Αυτόματη ενημέρωση προϊόντων', 'update_products_help': - 'Beim Aktualisieren einer Rechnung werden die Produkte automatisch aktualisiert', - 'convert_products': 'Produkte konvertieren', + 'Ενημερώνοντας ένα τιμολόγιο, αυτόματα θα ενημερωθεί και η βιβλιοθήκη προϊόντων', + 'convert_products': 'Μετατροπή Τιμών Προϊόντων', 'convert_products_help': - 'Produktpreise automatisch in die Währung des Kunden konvertieren', - 'fees': 'Gebühren', - 'limits': 'Grenzwerte', - 'provider': 'Anbieter', - 'company_gateway': 'Zahlungs-Gateway', - 'company_gateways': 'Zahlungs-Gateways', - 'new_company_gateway': 'Neues Gateway', - 'edit_company_gateway': 'Gateway bearbeiten', - 'created_company_gateway': 'Gateway erfolgreich erstellt', - 'updated_company_gateway': 'Gateway erfolgreich aktualisiert', - 'archived_company_gateway': 'Gateway erfolgreich archiviert', - 'deleted_company_gateway': 'Gateway erfolgreich gelöscht', - 'restored_company_gateway': 'Gateway erfolgreich wiederhergestellt', + 'Αυτόματη μετατροπή τιμών προϊόντων στο νόμισμα συναλλαγών του πελάτη', + 'fees': 'Τέλη', + 'limits': 'Όρια', + 'provider': 'Provider', + 'company_gateway': 'Πύλη Πληρωμών (Gateway)', + 'company_gateways': 'Πύλες Πληρωμών (Gateways)', + 'new_company_gateway': 'Νέα Πύλη πληρωμής (Gateway)', + 'edit_company_gateway': 'Επεξεργασία Πύλης Πληρωμών (Gateway)', + 'created_company_gateway': 'Επιτυχής δημιουργία πύλης πληρωμών (Gateway)', + 'updated_company_gateway': 'Επιτυχής ενημέρωση πύλης πληρωμών (Gateway)', + 'archived_company_gateway': + 'Επιτυχής αρχειοθέτηση πύλης πληρωμών (Gateway)', + 'deleted_company_gateway': 'Επιτυχής διαγραφή πύλης πληρωμών (Gateway)', + 'restored_company_gateway': 'Επιτυχής επαναφορά πύλης πληρωμών (Gateway)', 'archived_company_gateways': - ':value Zahlungsanbieter erfolgreich archiviert', + 'Επιτυχής αρχειοθέτηση :value πυλών πληρωμών (gateways)', 'deleted_company_gateways': - ':value Zahlungsanbieter erfolgreich gelöscht', + 'Επιτυχής διαγραφή :value πυλών πληρωμών (gateways)', 'restored_company_gateways': - ':value Zahlungsanbieter erfolgreich wiederhergestellt', - 'continue_editing': 'Weiterbearbeiten', - 'discard_changes': 'Änderungen verwerfen', - 'default_value': 'Standardwert', - 'disabled': 'Deaktiviert', - 'currency_format': 'Währungsformat', - 'first_day_of_the_week': 'Erster Tag der Woche', - 'first_month_of_the_year': 'Erster Monat des Jahres', - 'sunday': 'Sonntag', - 'monday': 'Montag', - 'tuesday': 'Dienstag', - 'wednesday': 'Mittwoch', - 'thursday': 'Donnerstag', - 'friday': 'Freitag', - 'saturday': 'Samstag', - 'january': 'Januar', - 'february': 'Februar', - 'march': 'März', - 'april': 'April', - 'may': 'Mai', - 'june': 'Juni', - 'july': 'Juli', - 'august': 'August', - 'september': 'September', - 'october': 'Oktober', - 'november': 'November', - 'december': 'Dezember', - 'symbol': 'Symbol', - 'ocde': 'Code', - 'date_format': 'Datumsformat', - 'datetime_format': 'Datums-/Zeitformat', - 'military_time': '24-Stunden-Zeit', - 'military_time_help': '24-Stunden-Anzeige', - 'send_reminders': 'Erinnerungen senden', - 'timezone': 'Zeitzone', - 'filtered_by_project': 'Nach Projekt filtern', - 'filtered_by_group': 'Gefiltert nach Gruppe', - 'filtered_by_invoice': 'Gefiltert nach Rechnung', - 'filtered_by_client': 'Gefiltert nach Kunde', - 'filtered_by_vendor': 'Gefiltert nach Lieferant', - 'group_settings': 'Gruppeneinstellungen', - 'group': 'Gruppe', - 'groups': 'Gruppen', - 'new_group': 'Neue Gruppe', - 'edit_group': 'Gruppe bearbeiten', - 'created_group': 'Gruppe erfolgreich erstellt', - 'updated_group': 'Gruppe erfolgreich aktualisiert', - 'archived_groups': ':value Gruppen erfolgreich archiviert', - 'deleted_groups': ':value Gruppen erfolgreich gelöscht', - 'restored_groups': ':value Gruppen erfolgreich wiederhergestellt', - 'archived_group': 'Gruppe erfolgreich archiviert', - 'deleted_group': 'Gruppe erfolgreich gelöscht', - 'restored_group': 'Gruppe erfolgreich wiederhergestellt', - 'upload_logo': 'Logo hochladen', - 'uploaded_logo': 'Logo erfolgreich hochgeladen', - 'logo': 'Logo', - 'saved_settings': 'Einstellungen erfolgreich gespeichert', - 'product_settings': 'Produkt-Einstellungen', - 'device_settings': 'Geräteeinstellungen', - 'defaults': 'Standards', - 'basic_settings': 'Allgemeine Einstellungen', - 'advanced_settings': 'Erweiterte Einstellungen', - 'company_details': 'Firmendaten', - 'user_details': 'Benutzerdaten', - 'localization': 'Lokalisierung', - 'online_payments': 'Online-Zahlungen', - 'tax_rates': 'Steuersätze', - 'notifications': 'Benachrichtigungen', - 'import_export': 'Import/Export', - 'custom_fields': 'Benutzerdefinierte Felder', - 'invoice_design': 'Rechnungsdesign', - 'buy_now_buttons': '\"Kaufe jetzt\"-Buttons', - 'email_settings': 'E-Mail-Einstellungen', - 'templates_and_reminders': 'Vorlagen & Erinnerungen', - 'credit_cards_and_banks': 'Kreditkarten & Banken', - 'data_visualizations': 'Datenvisualisierungen', - 'price': 'Preis', - 'email_sign_up': 'E-Mail-Registrierung', - 'google_sign_up': 'Registrierung via Google', - 'thank_you_for_your_purchase': 'Vielen Dank für Ihren Kauf!', - 'redeem': 'Einlösen', - 'back': 'Zurück', - 'past_purchases': 'Vergangene Käufe', - 'annual_subscription': 'Jahres-Abonnement', - 'pro_plan': 'Pro-Tarif', - 'enterprise_plan': 'Enterprise-Tarif', - 'count_users': ':count Benutzer', - 'upgrade': 'Upgrade', - 'please_enter_a_first_name': 'Bitte geben Sie einen Vornamen ein', - 'please_enter_a_last_name': 'Bitte geben Sie einen Nachnamen ein', + 'Επιτυχής ανάκτηση :value πυλών πληρωμών (gateways)', + 'continue_editing': 'Συνεχίστε την Επεξεργασία', + 'discard_changes': 'Απόρριψη Αλλαγών', + 'default_value': 'Προεπιλεγμένη τιμή', + 'disabled': 'Απενεργοποιημένο', + 'currency_format': 'Μορφή Νομίσματος', + 'first_day_of_the_week': 'Πρώτη Μέρα της Εβδομάδας', + 'first_month_of_the_year': 'Πρώτος Μήνας του Έτους', + 'sunday': 'Κυριακή', + 'monday': 'Δευτέρα', + 'tuesday': 'Τρίτη', + 'wednesday': 'Τετάρτη', + 'thursday': 'Πέμπτη', + 'friday': 'Παρασκευή', + 'saturday': 'Σάββατο', + 'january': 'Ιανουάριος', + 'february': 'Φεβρουάριος', + 'march': 'Μάρτιος', + 'april': 'Απρίλιος', + 'may': 'Μάιος', + 'june': 'Ιούνιος', + 'july': 'Ιούλιος', + 'august': 'Αύγουστος', + 'september': 'Σεπτέμβριος', + 'october': 'Οκτώβριος', + 'november': 'Νοέμβριος', + 'december': 'Δεκέμβριος', + 'symbol': 'Σύμβολο', + 'ocde': 'Κωδικός', + 'date_format': 'Μορφή Ημερομηνίας', + 'datetime_format': 'Μορφή Ημερομηνίας/Ώρας', + 'military_time': '24ωρη εμφάνιση Ώρας', + 'military_time_help': '24ωρη εμφάνιση Ώρας', + 'send_reminders': 'Αποστολή Υπενθυμίσεων', + 'timezone': 'Ζώνη ώρας', + 'filtered_by_project': 'Φιλτράρισμα ανά Project', + 'filtered_by_group': 'Φιλτράρισμα ανά Γκρουπ', + 'filtered_by_invoice': 'Φιλτράρισμα ανά Τιμολόγιο', + 'filtered_by_client': 'Φιλτράρισμα ανά Πελάτη', + 'filtered_by_vendor': 'Φιλτράρισμα ανά Προμηθευτή', + 'group_settings': 'Ρυθμίσεις Γρουπ', + 'group': 'Ομάδα', + 'groups': 'Γρουπ', + 'new_group': 'Νέο Γκρουπ', + 'edit_group': 'Επεξεργασία Γκρουπ', + 'created_group': 'Επιτυχής δημιουργία γκρουπ', + 'updated_group': 'Επιτυχής ενημέρωση γκρουπ', + 'archived_groups': 'Επιτυχής αρχειοθέτηση :value γκρουπς', + 'deleted_groups': 'Επιτυχής διαγραφή :value γκρουπς', + 'restored_groups': 'Επιτυχής ανάκτηση :value γκρουπς', + 'archived_group': 'Επιτυχής αρχειοθέτηση γκρουπ', + 'deleted_group': 'Επιτυχής διαγραφή γκρουπ', + 'restored_group': 'Επιτυχής ανάκτηση γκρουπ', + 'upload_logo': 'Μεταφόρτωση Λογοτύπου', + 'uploaded_logo': 'Επιτυχής μεταφόρτωση λογοτύπου', + 'logo': 'Λογότυπο', + 'saved_settings': 'Επιτυχής αποθήκευση ρυθμίσεων', + 'product_settings': 'Ρυθμίσεις Προϊόντων', + 'device_settings': 'Ρυθμίσεις Συσκευής', + 'defaults': 'Προεπιλογές', + 'basic_settings': 'Βασικές Ρυθμίσεις', + 'advanced_settings': 'Ρυθμίσεις για Προχωρημένους', + 'company_details': 'Στοιχεία Εταιρείας', + 'user_details': 'Στοιχεία Χρήστη', + 'localization': 'Τοπικές Ρυθμίσεις', + 'online_payments': 'Πληρωμές Online', + 'tax_rates': 'Ποσοστά Φόρων', + 'notifications': 'Ειδοποιήσεις', + 'import_export': 'Εισαγωγή | Εξαγωγή', + 'custom_fields': 'Προσαρμοσμένα Πεδία', + 'invoice_design': 'Σχέδιο Τιμολογίου', + 'buy_now_buttons': 'Κουμπιά Αγορά Τώρα', + 'email_settings': 'Ρυθμίσεις Email', + 'templates_and_reminders': 'Πρότυπα & Υπενθυμίσεις', + 'credit_cards_and_banks': 'Πιστωτικές Κάρτες & Τράπεζες', + 'data_visualizations': 'Απεικονίσεις Δεδομένων', + 'price': 'Τιμή', + 'email_sign_up': 'Εγγραφή μέσω Email', + 'google_sign_up': 'Εγγραφή μέσω Google', + 'thank_you_for_your_purchase': 'Ευχαριστούμε για την αγορά σας!', + 'redeem': 'Εξαργύρωσε', + 'back': 'Πίσω', + 'past_purchases': 'Παρελθόντες Αγορές', + 'annual_subscription': 'Ετη΄σια Συνδρομή', + 'pro_plan': 'Επαγγελματικό Πλάνο', + 'enterprise_plan': 'Εταιρικό Πλάνο', + 'count_users': ':count χρήστες', + 'upgrade': 'Αναβάθμιση', + 'please_enter_a_first_name': 'Παρακαλούμε εισάγετε μικρό όνομα', + 'please_enter_a_last_name': 'Παρακαλούμε εισάγετε επώνυμο', 'please_agree_to_terms_and_privacy': - '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': 'Service-Bedingungen', - 'privacy_policy': 'Datenschutzerklärung', - 'sign_up': 'Anmeldung', - 'account_login': 'Konto Login', - 'view_website': 'Webseite anschauen', - 'create_account': 'Konto erstellen', - 'email_login': 'E-Mail-Anmeldung', - 'create_new': 'Neu...', - 'no_record_selected': 'Kein Eintrag ausgewählt', - 'error_unsaved_changes': - 'Bitte speichern oder verwerfen Sie Ihre Änderungen', - 'download': 'Herunterladen', - 'requires_an_enterprise_plan': 'Benötigt einen Enterprise Plan', - 'take_picture': 'Bild aufnehmen', - 'upload_file': 'Datei hochladen', - 'document': 'Dokument', - 'documents': 'Dokumente', - 'new_document': 'Neues Dokument', - 'edit_document': 'Dokument bearbeiten', - 'uploaded_document': 'Dokument erfolgreich hochgeladen', - 'updated_document': 'Dokument erfolgreich aktualisiert', - 'archived_document': 'Dokument erfolgreich archiviert', - 'deleted_document': 'Dokument erfolgreich gelöscht', - 'restored_document': 'Dokument erfolgreich wiederhergestellt', - 'archived_documents': ':value Dokumente erfolgreich archiviert', - 'deleted_documents': ':value Dokumente erfolgreich gelöscht', - 'restored_documents': ':value Dokumente erfolgreich wiederhergestellt', - 'no_history': 'Kein Verlauf', - 'expense_date': 'Ausgabendatum', - 'pending': 'Ausstehend', - 'expense_status_1': 'Aufgezeichnet', - 'expense_status_2': 'Ausstehend', - 'expense_status_3': 'Fakturiert', - 'converted': 'Umgewandelt', - 'add_documents_to_invoice': 'Fügen Sie Dokumente zur Rechnung hinzu', - 'exchange_rate': 'Wechselkurs', - 'convert_currency': 'Währung umrechnen', - 'mark_paid': 'Als bezahlt markieren', - 'category': 'Kategorie', - 'address': 'Adresse', - 'new_vendor': 'Neuer Lieferant', - 'created_vendor': 'Lieferant erfolgreich erstellt', - 'updated_vendor': 'Lieferant erfolgreich aktualisiert', - 'archived_vendor': 'Lieferant erfolgreich archiviert', - 'deleted_vendor': 'Lieferant erfolgreich gelöscht', - 'restored_vendor': 'Lieferant erfolgreich wiederhergestellt', - 'archived_vendors': ':count Lieferanten erfolgreich archiviert', - 'deleted_vendors': ':count Lieferanten erfolgreich gelöscht', - 'restored_vendors': ':value Lieferanten erfolgreich wiederhergestellt', - 'new_expense': 'Ausgabe eingeben', - 'created_expense': 'Ausgabe erfolgreich erstellt', - 'updated_expense': 'Ausgabe erfolgreich aktualisiert', - 'archived_expense': 'Ausgabe erfolgreich archiviert', - 'deleted_expense': 'Ausgabe erfolgreich gelöscht', - 'restored_expense': 'Ausgabe erfolgreich wiederhergestellt', - 'archived_expenses': 'Ausgaben erfolgreich archiviert', - 'deleted_expenses': 'Ausgaben erfolgreich gelöscht', - 'restored_expenses': ':value Ausgaben erfolgreich wiederhergestellt', - 'copy_shipping': 'Versand kopieren', - 'copy_billing': 'Zahlung kopieren', - 'design': 'Design', - 'failed_to_find_record': 'Eintrag konnte nicht gefunden werden', - 'invoiced': 'In Rechnung gestellt', - 'logged': 'Protokolliert', - 'running': 'Läuft', - 'resume': 'Fortfahren', - 'task_errors': 'Bitte korrigieren Sie alle überlappenden Zeiten', - 'start': 'Starten', - 'stop': 'Anhalten', - 'started_task': 'Aufgabe erfolgreich gestartet', - 'stopped_task': 'Aufgabe erfolgreich angehalten', - 'resumed_task': 'Aufgabe fortgesetzt', - 'now': 'Jetzt', - 'auto_start_tasks': 'Aufgaben für den automatischen Start', - 'timer': 'Zeitmesser', - 'manual': 'Manuell', - 'budgeted': 'Budgetiert', - 'start_time': 'Startzeit', - 'end_time': 'Endzeit', - 'date': 'Datum', - 'times': 'Zeiten', - 'duration': 'Dauer', - 'new_task': 'Neue Aufgabe', - 'created_task': 'Aufgabe erfolgreich erstellt', - 'updated_task': 'Aufgabe erfolgreich aktualisiert', - 'archived_task': 'Aufgabe erfolgreich archiviert', - 'deleted_task': 'Aufgabe erfolgreich gelöscht', - 'restored_task': 'Aufgabe erfolgreich wiederhergestellt', - 'archived_tasks': ':count Aufgaben wurden erfolgreich archiviert', - 'deleted_tasks': ':count Aufgaben wurden erfolgreich gelöscht', - 'restored_tasks': ':value Aufgaben erfolgreich wiederhergestellt', - 'please_enter_a_name': 'Bitte geben Sie einen Namen ein', - 'budgeted_hours': 'Budgetierte Stunden', - 'created_project': 'Projekt erfolgreich erstellt', - 'updated_project': 'Projekt erfolgreich aktualisiert', - 'archived_project': 'Projekt erfolgreich archiviert', - 'deleted_project': 'Projekt erfolgreich gelöscht', - 'restored_project': 'Projekt erfolgreich wiederhergestellt', - 'archived_projects': 'Erfolgreich :count Projekte archiviert', - 'deleted_projects': 'Erfolgreich :count Projekte gelöscht', - 'restored_projects': ':value Projekte erfolgreich wiederhergestellt', - 'new_project': 'neues Projekt', - 'thank_you_for_using_our_app': 'Vielen Dank, dass Sie unsere App nutzen!', - 'if_you_like_it': 'Wenn es dir gefällt, bitte', - 'click_here': 'hier klicken', - 'click_here_capital': 'Klicke hier', - 'to_rate_it': ', um es zu bewerten.', - 'average': 'Durchschnittlich', - 'unapproved': 'Nicht genehmigt', - 'authenticate_to_change_setting': - 'Bitte authentifizieren Sie sich, um diese Einstellung zu ändern.', - 'locked': 'Gesperrt', - 'authenticate': 'Authentifizieren', - 'please_authenticate': 'Bitte authentifizieren Sie sich', - 'biometric_authentication': 'Biometrische Authentifizierung', - 'footer': 'Fußzeile', - 'compare': 'Vergleiche', - 'hosted_login': 'Hosted Login', - 'selfhost_login': 'Selfhost Login', - 'google_sign_in': 'Anmeldung mit Google', - 'today': 'Heute', - 'custom_range': 'Benutzerdefinierter Bereich', - 'date_range': 'Datumsbereich', - 'current': 'Aktuell', - 'previous': 'Vorherige', - 'current_period': 'Aktuelle Periode', - 'comparison_period': 'Vergleichsperiode', - 'previous_period': 'Vorherige Periode', - 'previous_year': 'Vorjahr', - 'compare_to': 'Vergleiche mit', - 'last7_days': 'Letzte 7 Tage', - 'last_week': 'Letzte Woche', - 'last30_days': 'Letzte 30 Tage', - 'this_month': 'Dieser Monat', - 'last_month': 'Letzter Monat', - 'this_year': 'Dieses Jahr', - 'last_year': 'Letztes Jahr', - 'custom': 'Benutzerdefiniert', - 'clone_to_invoice': 'Klone in Rechnung', - 'clone_to_quote': 'Klone in Angebot', - 'clone_to_credit': 'Duplizieren in Gutschrift', - 'view_invoice': 'Rechnung anschauen', - 'convert': 'Konvertiere', - 'more': 'Mehr', - 'edit_client': 'Kunde bearbeiten', - 'edit_product': 'Produkt bearbeiten', - 'edit_invoice': 'Rechnung bearbeiten', - 'edit_quote': 'Angebot bearbeiten', - 'edit_payment': 'Zahlung bearbeiten', - 'edit_task': 'Aufgabe bearbeiten', - 'edit_expense': 'Ausgabe Bearbeiten', - 'edit_vendor': 'Lieferant Bearbeiten', - 'edit_project': 'Projekt bearbeiten', - 'edit_recurring_quote': 'Bearbeite wiederkehrendes Angebot', - 'billing_address': 'Rechnungsadresse', - 'shipping_address': 'Lieferadresse', - 'total_revenue': 'Gesamteinnahmen', - 'average_invoice': 'Durchschnittlicher Rechnungsbetrag', - 'outstanding': 'Ausstehend', - 'invoices_sent': ':count Rechnungen versendet', - 'active_clients': 'aktive Kunden', - 'close': 'Schließen', - 'email': 'E-Mail', - 'password': 'Passwort', + 'Παρακαλούμε συμφωνήστε με τους όρους χρήσης και την πολιτική απορρήτου για να δημιουργήσετε ένα λογαριασμό.', + 'i_agree_to_the': 'Συμφωνώ με το', + 'terms_of_service': 'Όροι της Υπηρεσίας', + 'privacy_policy': 'Πολιτική Απορρήτου', + 'sign_up': 'Εγγραφή', + 'account_login': 'Είσοδος στο Λογαριασμό', + 'view_website': 'Εμφάνιση Ιστοσελίδας', + 'create_account': 'Δημιουργία Λογαριασμού', + 'email_login': 'Είσοδος με Email', + 'create_new': 'Δημιουργία Νέου', + 'no_record_selected': 'Δεν έχουν επιλεγεί πεδία.', + 'error_unsaved_changes': 'Παρακαλούμε σώστε ή ακυρώστε τις αλλαγές σας.', + 'download': 'Κατέβασμα', + 'requires_an_enterprise_plan': 'Απαιτεί ένα επαγγελματικό πλάνο', + 'take_picture': 'Λήψη Φωτογραφίας', + 'upload_file': 'Μεταφόρτωση Αρχείου', + 'document': 'Έγγραφο', + 'documents': 'Έγγραφα', + 'new_document': 'Νέο έγγραφο', + 'edit_document': 'Επεξεργασία Εγγράφου', + 'uploaded_document': 'Επιτυχής μεταφόρτωση αρχείου', + 'updated_document': 'Επιτυχής ενημέρωση αρχείου', + 'archived_document': 'Επιτυχής αρχειοθέτηση αρχείου', + 'deleted_document': 'Επιτυχής διαγραφή αρχείου', + 'restored_document': 'Επιτυχής επαναφορά αρχείου', + 'archived_documents': 'Επιτυχής αρχειοθέτηση :value εγγράφων', + 'deleted_documents': 'Επιτυχής διαγραφή :value εγγράφων', + 'restored_documents': 'Επιτυχής ανάκτηση :value εγγράφων', + 'no_history': 'Δεν υπάρχει ιστορικό', + 'expense_date': 'Ημερομηνία Δαπάνης', + 'pending': 'Εκκρεμής', + 'expense_status_1': 'Καταγεγραμμένο', + 'expense_status_2': 'Σε αναμονή', + 'expense_status_3': 'Τιμολογημένο', + 'converted': 'Μετατράπηκε', + 'add_documents_to_invoice': 'Προσθέστε έγγραφα στο τιμολόγιο', + 'exchange_rate': 'Ισοτιμία Ανταλλαγής', + 'convert_currency': 'Μετατροπή νομίσματος', + 'mark_paid': 'Όρισε ως Πληρωμένα', + 'category': 'Κατηγορία', + 'address': 'Διεύθυνση', + 'new_vendor': 'Νέος Προμηθευτής', + 'created_vendor': 'Επιτυχής δημιουργία προμηθευτή', + 'updated_vendor': 'Επιτυχής ενημέρωση προμηθευτή', + 'archived_vendor': 'Επιτυχής αρχειοθέτηση προμηθευτή', + 'deleted_vendor': 'Επιτυχής διαγραφή προμηθευτή', + 'restored_vendor': 'Ο Προμηθευτής ανακτήθηκε με επιτυχία', + 'archived_vendors': 'Επιτυχής αρχειοθέτηση :count προμηθευτών', + 'deleted_vendors': 'Επιτυχής διαγραφή :count προμηθευτών', + 'restored_vendors': 'Επιτυχής ανάκτηση :value προμηθευτών', + 'new_expense': 'Καταχώρηση Δαπάνης', + 'created_expense': 'Επιτυχής δημιουργία δαπάνης', + 'updated_expense': 'Επιτυχής ενημέρωση δαπάνης', + 'archived_expense': 'Επιτυχής αρχειοθέτηση δαπάνης', + 'deleted_expense': 'Επιτυχής διαγραφή δαπάνης', + 'restored_expense': 'Επιτυχής επαναφορά δαπάνης', + 'archived_expenses': 'Επιτυχής αρχειοθέτηση δαπανών', + 'deleted_expenses': 'Επιτυχής διαγραφή δαπανών', + 'restored_expenses': 'Επιτυχής ανάκτηση :value δαπανών', + 'copy_shipping': 'Αντιγραφή Αποστολής', + 'copy_billing': 'Αντιγραφή Χρέωσης', + 'design': 'Σχεδίαση', + 'failed_to_find_record': 'Αποτυχία ανεύρεσης εγγραφής', + 'invoiced': 'Τιμολογημένα', + 'logged': 'Εισηγμένο', + 'running': 'Εκτελείται', + 'resume': 'Συνέχισε', + 'task_errors': 'Παρακαλώ διορθώστε τυχόν επικαλυπτόμενες ώρες', + 'start': 'Έναρξη', + 'stop': 'Λήξη', + 'started_task': 'Επιτυχής έναρξη εργασίας', + 'stopped_task': 'Επιτυχής διακοπή εργασίας', + 'resumed_task': 'Επιτυχής επανέναρξη εργασίας', + 'now': 'Τώρα', + 'auto_start_tasks': 'Αυτόματη Έναρξη Εργασιών', + 'timer': 'Μετρητής', + 'manual': 'Χειροκίνητο', + 'budgeted': 'Προϋπολογισμένο', + 'start_time': 'Ώρα Έναρξης', + 'end_time': 'Ώρα Λήξης', + 'date': 'Ημερομηνία', + 'times': 'Φορές', + 'duration': 'Διάρκεια', + 'new_task': 'Νέα Εργασία', + 'created_task': 'Επιτυχής δημιουργία εργασίας', + 'updated_task': 'Επιτυχής ενημέρωση εργασίας', + 'archived_task': 'Επιτυχής αρχειοθέτηση εργασίας', + 'deleted_task': 'Επιτυχής διαγραφή εργασίας', + 'restored_task': 'Επιτυχής ανάκτηση εργασίας', + 'archived_tasks': 'Επιτυχής αρχειοθέτηση :count εργασιών', + 'deleted_tasks': 'Επιτυχής διαγραφή :count εργασιών', + 'restored_tasks': 'Επιτυχής ανάκτηση :value εργασιών', + 'please_enter_a_name': 'Παρακαλούμε εισάγετε ένα όνομα', + 'budgeted_hours': 'Χρεώσιμες Ώρες', + 'created_project': 'Επιτυχής δημιουργία project', + 'updated_project': 'Επιτυχής ενημέρωση project', + 'archived_project': 'Επιτυχής αρχειοθέτηση project', + 'deleted_project': 'Επιτυχής διαγραφή project', + 'restored_project': 'Επιτυχής ανάκτηση project', + 'archived_projects': 'Επιτυχής αρχειοθέτηση :count projects', + 'deleted_projects': 'Επιτυχής διαγραφή :count projects', + 'restored_projects': 'Επιτυχής ανάκτηση :value projects', + 'new_project': 'Νέο Project', + 'thank_you_for_using_our_app': + 'Ευχαριστούμε που χρησιμοποιήσατε την εφαρμογή μας!', + 'if_you_like_it': 'Εάν σας αρέσει παρακαλούμε', + 'click_here': 'πατήστε εδώ', + 'click_here_capital': 'Πατήστε εδώ', + 'to_rate_it': 'για να το αξιολογήσετε.', + 'average': 'Μέσος όρος', + 'unapproved': 'Μη εγκεκριμένη', + 'authenticate_to_change_setting': + 'Παρακαλούμε αυθεντικοποιήστε για να αλλάξετε αυτή τη ρύθμιση', + 'locked': 'Κλειδωμένη', + 'authenticate': 'Αυθεντικοποιήστε', + 'please_authenticate': 'Παρακαλούμε αυθεντικοποιήστε', + 'biometric_authentication': 'Βιομετρικη αυθεντικοποίηση', + 'footer': 'Υποσέλιδο', + 'compare': 'Σύγκρινε', + 'hosted_login': 'Εισαγωγή σε φιλοξενούμενη έκδοση', + 'selfhost_login': 'Εισαγωγή σε αυτο-φιλοξενούμενη έκδοση', + 'google_sign_in': 'Είσοδος μέσω Google', + 'today': 'Σήμερα', + 'custom_range': 'Προσαρμοσμένο Εύρος', + 'date_range': 'Εύρος Ημερομηνιών', + 'current': 'Τωρινή', + 'previous': 'Προηγούμενη', + 'current_period': 'Τωρινή Περίοδος', + 'comparison_period': 'Περίοδος Σύγκρισης', + 'previous_period': 'Προηγούμενη Περίοδος', + 'previous_year': 'Προηγούμενος Χρόνος', + 'compare_to': 'Σύγκριση με', + 'last7_days': 'Προηγούμενες 7 ημέρες', + 'last_week': 'Προηγούμενη Εβδομάδα', + 'last30_days': 'Τελευταίες 30 Ημέρες', + 'this_month': 'Αυτός ο Μήνας', + 'last_month': 'Προηγούμενος Μήνας', + 'this_year': 'Τρέχον Χρόνος', + 'last_year': 'Προηγούμενος Χρόνος', + 'custom': 'Προσαρμοσμένο', + 'clone_to_invoice': 'Κλωνοποίηση σε Τιμολόγιο', + 'clone_to_quote': 'Κλωνοποίηση σε Προσφορά', + 'clone_to_credit': 'Κλωνοποίηση σε Πίστωση', + 'view_invoice': 'Προβολή Τιμολογίου', + 'convert': 'Μετατροπή', + 'more': 'Περισσότερα', + 'edit_client': 'Επεξεργασία Πελάτη', + 'edit_product': 'Επεξεργασία Προϊόντος', + 'edit_invoice': 'Επεξεργασία Τιμολογίου', + 'edit_quote': 'Επεξεργασία Προσφοράς', + 'edit_payment': 'Επεξεργασία Πληρωμής', + 'edit_task': 'Επεξεργασία Εργασίας', + 'edit_expense': 'Επεξεργασία Δαπάνης', + 'edit_vendor': 'Επεξεργασία Προμηθευτή', + 'edit_project': 'Επεξεργασία Project', + 'edit_recurring_quote': 'Επεξεργασία Επαναλαμβανόμενων Προσφορών', + 'billing_address': 'Διεύθυνση Τιμολόγησης', + 'shipping_address': 'Διεύθυνση Αποστολής', + 'total_revenue': 'Συνολικά Έσοδα', + 'average_invoice': 'Μέσος Όρος Τιμολογίων', + 'outstanding': 'Εκκρεμή', + 'invoices_sent': ':count τιμολόγια στάλθηκαν', + 'active_clients': 'ενεργοί πελάτες', + 'close': 'Κλείσιμο', + 'email': 'Email', + 'password': 'Κωδικός Πρόσβασης', 'url': 'URL', - 'secret': 'Passwort', - 'name': 'Name', - 'logout': 'Abmelden', - 'login': 'Login', - 'filter': 'Filter', - 'sort': 'Sortierung', - 'search': 'Suche', - 'active': 'Aktiv', - 'archived': 'Archiviert', - 'deleted': 'Gelöscht', - 'dashboard': 'Dashboard', - 'archive': 'Archivieren', - 'delete': 'löschen', - 'restore': 'Wiederherstellen', - 'refresh_complete': 'Aktualisieren beendet', - 'please_enter_your_email': 'Bitte geben Sie Ihre E-Mail-Adresse ein', - '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', - 'ascending': 'Aufsteigend', - 'descending': 'Absteigend', - 'save': 'Speichern', - 'an_error_occurred': 'Ein Fehler ist aufgetreten', - 'paid_to_date': 'Bereits gezahlt', - 'balance_due': 'Offener Betrag', - 'balance': 'Saldo', - 'overview': 'Übersicht', - 'details': 'Details', - 'phone': 'Telefon', - 'website': 'Webseite', - 'vat_number': 'USt-IdNr.', - 'id_number': 'Registernummer', - 'create': 'Erstellen', - 'copied_to_clipboard': ':value in die Zwischenablage kopiert', - 'error': 'Fehler', - 'could_not_launch': 'Konnte nicht gestartet werden', - 'contacts': 'Kontakte', - 'additional': 'Zusätzlich', - 'first_name': 'Vorname', - 'last_name': 'Nachname', - 'add_contact': 'Kontakt hinzufügen', - 'are_you_sure': 'Sind Sie sicher?', - 'cancel': 'Stornieren', + 'secret': 'Κρυφό', + 'name': 'Επωνυμία', + 'logout': 'Αποσύνδεση', + 'login': 'Είσοδος', + 'filter': 'Φίλτρο', + 'sort': 'Ταξινόμηση', + 'search': 'Αναζήτηση', + 'active': 'Ενεργός', + 'archived': 'Αρχειοθετημένο', + 'deleted': 'Διεγραμμένο', + 'dashboard': 'Πίνακας ελέγχου', + 'archive': 'Αρχειοθέτηση', + 'delete': 'Διαγραφή', + 'restore': 'Ανάκτηση', + 'refresh_complete': 'Ανανέωση Ολοκληρώθηκε', + 'please_enter_your_email': 'Παρακαλώ εισάγετε το email σας', + 'please_enter_your_password': + 'Παρακαλώ εισάγετε τον κωδικό πρόσβασής σας', + 'please_enter_your_url': 'Παρακαλώ εισάγετε το URL σας', + 'please_enter_a_product_key': 'Παρακαλώ εισάγετε το κλειδί προϊόντος σας', + 'ascending': 'Αύξουσα σειρά', + 'descending': 'Φθίνουσα σειρά', + 'save': 'Αποθήκευση', + 'an_error_occurred': 'Εμφανίστηκε ένα σφάλμα.', + 'paid_to_date': 'Εξοφλημένο Ποσό', + 'balance_due': 'Ολικό Σύνολο', + 'balance': 'Υπόλοιπο', + 'overview': 'Επισκόπηση', + 'details': 'Στοιχεία', + 'phone': 'Τηλέφωνο', + 'website': 'Ιστοσελίδα', + 'vat_number': 'ΑΦΜ', + 'id_number': 'Αριθμός ID', + 'create': 'Δημιουργία', + 'copied_to_clipboard': 'Αντιγράφτηκε :value στο πρόχειρο', + 'error': 'Σφάλμα', + 'could_not_launch': 'Αδύνατη η εκτέλεση', + 'contacts': 'Επαφές', + 'additional': 'Επιπρόσθετο', + 'first_name': 'Όνομα', + 'last_name': 'Επώνυμο', + 'add_contact': 'Προσθήκη επαφής', + 'are_you_sure': 'Είστε σίγουροι;', + 'cancel': 'Άκυρο', 'ok': 'Ok', - 'remove': 'Entfernen', - 'email_is_invalid': 'E-Mail ist ungültig', - 'product': 'Produkt', - 'products': 'Produkte', - 'new_product': 'Neues Produkt', - 'created_product': 'Produkt erfolgreich erstellt', - 'updated_product': 'Produkt erfolgreich aktualisiert', - 'archived_product': 'Produkt erfolgreich archiviert', - 'deleted_product': 'Produkt erfolgreich gelöscht', - 'restored_product': 'Produkt erfolgreich wiederhergestellt', - 'archived_products': 'Archivierung erfolgreich :Produktzähler', - 'deleted_products': 'Erfolgreich :count Produkte gelöscht', - 'restored_products': ':value Produkte erfolgreich wiederhergestellt', - 'product_key': 'Produkt', - 'notes': 'Notizen', - 'cost': 'Kosten', - 'client': 'Kunde', - 'clients': 'Kunden', - 'new_client': 'Neuer Kunde', - 'created_client': 'Kunde erfolgreich angelegt', - 'updated_client': 'Kunde erfolgreich aktualisiert', - 'archived_client': 'Kunde erfolgreich archiviert', - 'archived_clients': ':count Kunden erfolgreich archiviert', - 'deleted_client': 'Kunde erfolgreich gelöscht', - 'deleted_clients': ':count Kunden erfolgreich gelöscht', - 'restored_client': 'Kunde erfolgreich wiederhergestellt', - 'restored_clients': ':value Kunden erfolgreich wiederhergestellt', - 'address1': 'Straße', - 'address2': 'Adresszusatz', - 'city': 'Stadt', - 'state': 'Bundesland', - 'postal_code': 'Postleitzahl', - 'country': 'Land', - 'invoice': 'Rechnung', - 'invoices': 'Rechnungen', - 'new_invoice': 'Neue Rechnung', - 'created_invoice': 'Rechnung erfolgreich erstellt', - 'updated_invoice': 'Rechnung erfolgreich aktualisiert', - 'archived_invoice': 'Rechnung erfolgreich archiviert', - 'deleted_invoice': 'Rechnung erfolgreich gelöscht', - 'restored_invoice': 'Rechnung erfolgreich wiederhergestellt', - 'archived_invoices': ':count Rechnungen erfolgreich archiviert', - 'deleted_invoices': ':count Rechnungen erfolgreich gelöscht', - 'restored_invoices': ':value Rechnungen erfolgreich wiederhergestellt', - 'emailed_invoice': 'Rechnung erfolgreich versendet', - 'emailed_payment': 'Zahlungs eMail erfolgreich gesendet', - 'amount': 'Betrag', - 'invoice_number': 'Rechnungsnummer', - 'invoice_date': 'Rechnungsdatum', - 'discount': 'Rabatt', - 'po_number': 'Bestellnummer', - 'terms': 'Bedingungen', - 'public_notes': 'Öffentliche Notizen', - 'private_notes': 'Private Notizen', - 'frequency': 'Häufigkeit', - 'start_date': 'Startdatum', - 'end_date': 'Enddatum', - 'quote_number': 'Angebotsnummer', - 'quote_date': 'Angebotsdatum', - 'valid_until': 'Gültig bis', - 'items': 'Element', - 'partial_deposit': 'Teil-/Anzahlung', - 'description': 'Beschreibung', - 'unit_cost': 'Einzelpreis', - 'quantity': 'Menge', - 'add_item': 'Artikel hinzufügen', - 'contact': 'Kontakt', - 'work_phone': 'Telefon', - 'total_amount': 'Gesamtbetrag', + 'remove': 'Διαγραφή', + 'email_is_invalid': 'Το Email είναι εσφαλμένο', + 'product': 'Προϊόν', + 'products': 'Προϊόντα', + 'new_product': 'Νέο Προϊόν', + 'created_product': 'Επιτυχής δημιουργία προϊόντος', + 'updated_product': 'Επιτυχής ενημέρωση προϊόντος', + 'archived_product': 'Επιτυχής αρχειοθέτηση προϊόντος', + 'deleted_product': 'Επιτυχής διαγραφή προϊόντος', + 'restored_product': 'Επιτυχής ανάκτηση προϊόντος', + 'archived_products': 'Επιτυχής αρχειοθέτηση :count προϊόντων', + 'deleted_products': 'Επιτυχής διαγραφή :count προϊόντων', + 'restored_products': 'Επιτυχής ανάκτηση :value προϊόντων', + 'product_key': 'Προϊόν', + 'notes': 'Σημειώσεις', + 'cost': 'Κόστος', + 'client': 'Πελάτης', + 'clients': 'Πελάτες', + 'new_client': 'Νέος Πελάτης', + 'created_client': 'Επιτυχής δημιουργία πελάτη', + 'updated_client': 'Επιτυχής ενημέρωση πελάτη', + 'archived_client': 'Επιτυχής αρχειοθέτηση πελάτη', + 'archived_clients': 'Επιτυχής αρχειοθέτηση :count πελατών', + 'deleted_client': 'Επιτυχής διαγραφή πελάτη', + 'deleted_clients': 'Επιτυχής διαγραφή :count πελατών', + 'restored_client': 'Επιτυχής ανάκτηση πελάτη', + 'restored_clients': 'Επιτυχής ανάκτηση :value πελατών', + 'address1': 'Οδός', + 'address2': 'Διαμέρισμα', + 'city': 'Πόλη', + 'state': 'Νομός', + 'postal_code': 'Ταχ. Κώδικας', + 'country': 'Χώρα', + 'invoice': 'Τιμολόγιο', + 'invoices': 'Τιμολόγια', + 'new_invoice': 'Νέο Τιμολόγιο', + 'created_invoice': 'Επιτυχής δημιουργία τιμολογίου', + 'updated_invoice': 'Επιτυχής ενημέρωση τιμολογίου', + 'archived_invoice': 'Επιτυχής αρχειοθέτηση τιμολογίου', + 'deleted_invoice': 'Επιτυχής διαγραφή τιμολογίου', + 'restored_invoice': 'Επιτυχής ανάκτηση τιμολογίου', + 'archived_invoices': 'Επιτυχής αρχειοθέτηση :count τιμολογίων', + 'deleted_invoices': 'Επιτυχής διαγραφή :count τιμολογίων', + 'restored_invoices': 'Επιτυχής ανάκτηση :value τιμολογίων', + 'emailed_invoice': 'Επιτυχής αποστολή τιμολογίου', + 'emailed_payment': 'Επιτυχής αποστολή πληρωμής με Email', + 'amount': 'Ποσό', + 'invoice_number': 'Αριθμός Τιμολογίου', + 'invoice_date': 'Ημερομηνία Τιμολογίου', + 'discount': 'Έκπτωση', + 'po_number': 'Αριθμός Παραγγελίας', + 'terms': 'Όροι', + 'public_notes': 'Δημόσιες Σημειώσεις', + 'private_notes': 'Προσωπικές Σημειώσεις', + 'frequency': 'Συχνότητα', + 'start_date': 'Ημ/νία Έναρξης', + 'end_date': 'Ημ/νία Λήξης', + 'quote_number': 'Αριθμός', + 'quote_date': 'Ημερομηνία', + 'valid_until': 'Έγκυρο Έως', + 'items': 'Προϊόντα', + 'partial_deposit': 'Μερικό/Κατάθεση', + 'description': 'Περιγραφή', + 'unit_cost': 'Τιμή Μονάδας', + 'quantity': 'Ποσότητα', + 'add_item': 'Προσθήκη Προϊόντος', + 'contact': 'Επαφή', + 'work_phone': 'Τηλέφωνο', + 'total_amount': 'Συνολικό Ποσό', 'pdf': 'PDF', - 'due_date': 'Fälligkeitsdatum', - 'partial_due_date': 'Teilzahlungsziel', - 'status': 'Status', - 'invoice_status_id': 'Rechnungs Status', - 'quote_status': 'Angebotsstatus', - 'click_plus_to_add_item': - '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', - 'percent': 'Prozent', - 'edit': 'Bearbeiten', - 'dismiss': 'Verwerfen', - 'please_select_a_date': 'Bitte wählen Sie ein Datum', - 'please_select_a_client': 'Bitte wählen Sie einen Kunden', - 'please_select_an_invoice': 'Bitte wählen Sie eine Rechnung aus', - 'task_rate': 'Kosten für Tätigkeit', - 'settings': 'Einstellungen', - 'language': 'Sprache', - 'currency': 'Währung', - 'created_at': 'Erstellt am', - 'created_on': 'Erstellt am', - 'updated_at': 'Aktualisiert', - 'tax': 'Steuer', + 'due_date': 'Ημερομηνία Ολοκλήρωσης', + 'partial_due_date': 'Ημερομηνία Μερικής Πληρωμής', + 'status': 'Κατάσταση', + 'invoice_status_id': 'Κατάσταση Τιμολογίου', + 'quote_status': 'Κατάσταση Προσφοράς', + 'click_plus_to_add_item': 'Πιέστε το + για την προσθήκη ενός προϊόντος', + 'click_plus_to_add_time': 'Πιέστε το + για να προσθέσετε χρόνο', + 'count_selected': ':count επιλέχθηκε', + 'total': 'Σύνολο', + 'percent': 'Ποσοστό', + 'edit': 'Επεξεργασία', + 'dismiss': 'Απέρριψε', + 'please_select_a_date': 'Παρακαλώ επιλέξτε ημερομηνία', + 'please_select_a_client': 'Παρακαλώ επιλέξτε πελάτη', + 'please_select_an_invoice': 'Παρακαλώ επιλέξτε ένα τιμολόγιο', + 'task_rate': 'Κόστος Εργασίας', + 'settings': 'Ρυθμίσεις', + 'language': 'Γλώσσα', + 'currency': 'Νόμισμα', + 'created_at': 'Ημ/νία Δημιουργίας', + 'created_on': 'Δημιουργήθηκε στις', + 'updated_at': 'Ενημερώθηκε', + 'tax': 'Φόρος', 'please_enter_an_invoice_number': - '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', - 'sent': 'Versendet', - 'viewed': 'Angesehen', - 'approved': 'Bestätigt', - 'partial': 'Teil-/Anzahlung', - 'paid': 'Bezahlt', - 'mark_sent': 'Als versendet markieren', - 'marked_invoice_as_sent': 'Rechnung erfolgreich als versendet markiert', - 'marked_invoice_as_paid': - 'Die Rechnung wurde erfolgreich als \"versendet\" markiert', - 'marked_invoices_as_sent': - 'Erfolgreich Rechnungen als versendet markiert', - 'marked_invoices_as_paid': - 'Die Rechnung wurde erfolgreich als \"versendet\" markiert', - 'done': 'Erledigt', + 'Παρακαλώ εισάγετε ένα αριθμό τιμολογίου', + 'please_enter_a_quote_number': 'Παρακαλώ εισάγετε ένα αριθμό προσφοράς', + 'past_due': 'Ληγμένα', + 'draft': 'Πρόχειρο', + 'sent': 'Απεσταλμένα', + 'viewed': 'Εμφανισμένα', + 'approved': 'Αποδεκτή', + 'partial': 'Μερικό/Κατάθεση', + 'paid': 'Πληρωμένα', + 'mark_sent': 'Σήμανση ως Απεσταλμένο', + 'marked_invoice_as_sent': 'Επιτυχής ορισμός τιμολογίου ως απεσταλμένο', + 'marked_invoice_as_paid': 'Επιτυχής ορισμός τιμολογίου ως απεσταλμένο', + 'marked_invoices_as_sent': 'Επιτυχής ορισμός τιμολογίων ως απεσταλμένα', + 'marked_invoices_as_paid': 'Επιτυχής ορισμός τιμολογίων ως απεσταλμένα', + 'done': 'Έτοιμο', 'please_enter_a_client_or_contact_name': - 'Bitte geben Sie einen Kunden- oder Kontaktnamen ein', - 'dark_mode': 'Dunkler Modus', + 'Παρακαλώ εισάγετε ένα πελάτη ή το όνομα μίας επαφής', + 'dark_mode': 'Σκοτεινό Περιβάλλον', 'restart_app_to_apply_change': - 'Starten Sie die App neu, um die Änderung zu übernehmen.', - 'refresh_data': 'Daten aktualisieren', - 'blank_contact': 'Leerer Kontakt', - 'activity': 'Aktivität', - 'no_records_found': 'Kein Einträge gefunden', - 'clone': 'Duplizieren', - 'loading': 'Lädt', - 'industry': 'Kategorie', - 'size': 'Größe', - 'payment_terms': 'Zahlungsbedingungen', - 'payment_date': 'Zahlungsdatum', - 'payment_status': 'Zahlungsstatus', - 'payment_status_1': 'Ausstehend', - 'payment_status_2': 'entwertet', - 'payment_status_3': 'Fehlgeschlagen', - 'payment_status_4': 'Abgeschlossen', - 'payment_status_5': 'Teilweise erstattet', - 'payment_status_6': 'Erstattet', - 'payment_status_-1': 'nicht angewendet', - 'payment_status_-2': 'Teilweise nicht angewendet', - 'net': 'Netto', - 'client_portal': 'Kunden-Portal', - 'show_tasks': 'Aufgaben anzeigen', - 'email_reminders': 'E-Mail Erinnerungen', - 'enabled': 'Aktiviert', - 'recipients': 'Empfänger', - 'initial_email': 'Initiale E-Mail', - 'first_reminder': 'Erste Erinnerung', - 'second_reminder': 'Zweite Erinnerung', - 'third_reminder': 'Dritte Erinnerung', - 'reminder1': 'Erste Erinnerung', - 'reminder2': 'Zweite Erinnerung', - 'reminder3': 'Dritte Erinnerung', - 'template': 'Vorlage', - 'send': 'Senden', - 'subject': 'Betreff', - 'body': 'Inhalt', - 'send_email': 'E-Mail senden', - 'email_receipt': 'Zahlungsbestätigung an Kunden per E-Mail senden', - 'auto_billing': 'Automatische Rechnungsstellung', - 'button': 'Knopf', - 'preview': 'Vorschau', - 'customize': 'Anpassen', - 'history': 'Verlauf', - 'payment': 'Zahlung', - 'payments': 'Zahlungen', - 'refunded': 'Erstattet', - 'payment_type': 'Zahlungsart', - 'transaction_reference': 'Abwicklungsreferenz', - 'enter_payment': 'Zahlung eingeben', - 'new_payment': 'Zahlung eingeben', - 'created_payment': 'Zahlung erfolgreich erstellt', - 'updated_payment': 'Zahlung erfolgreich aktualisiert', - 'archived_payment': 'Zahlung erfolgreich archiviert', - 'deleted_payment': 'Zahlung erfolgreich gelöscht', - 'restored_payment': 'Zahlung erfolgreich wiederhergestellt', - 'archived_payments': ':count Zahlungen erfolgreich archiviert', - 'deleted_payments': ':count Zahlungen erfolgreich gelöscht', - 'restored_payments': ':value Zahlungen erfolgreich wiederhergestellt', - 'quote': 'Angebot', - 'quotes': 'Angebote', - 'new_quote': 'Neues Angebot', - 'created_quote': 'Angebot erfolgreich erstellt', - 'updated_quote': 'Angebot erfolgreich aktualisiert', - 'archived_quote': 'Angebot erfolgreich archiviert', - 'deleted_quote': 'Angebot erfolgreich gelöscht', - 'restored_quote': 'Angebot erfolgreich wiederhergestellt', - 'archived_quotes': ':count Angebote erfolgreich archiviert', - 'deleted_quotes': ':count Angebote erfolgreich gelöscht', - 'restored_quotes': ':value Angebote erfolgreich wiederhergestellt', - 'expense': 'Ausgabe', - 'expenses': 'Ausgaben', - 'vendor': 'Lieferant', - 'vendors': 'Lieferanten', - 'task': 'Aufgabe', - 'tasks': 'Zeiterfassung', - 'project': 'Projekt', - 'projects': 'Projekte', - 'activity_1': ':user erstellte Kunde :client', - 'activity_2': ':user archivierte Kunde :client', - 'activity_3': ':user löschte Kunde :client', - 'activity_4': ':user erstellte Rechnung :invoice', - 'activity_5': ':user aktualisierte Rechnung :invoice', - 'activity_6': ':user mailte Rechnung :invoice für :client an :contact', - 'activity_7': ':contact schaute Rechnung :invoice für :client an', - 'activity_8': ':user archivierte Rechnung :invoice', - 'activity_9': ':user löschte Rechnung :invoice', + 'Επανεκκινήστε την εφαρμογή για να εφαρμόσετε την αλλαγή', + 'refresh_data': 'Ανανέωση Δεδομένων', + 'blank_contact': 'Κενή Επαφή', + 'activity': 'Δραστηριότητα', + 'no_records_found': 'Δεν βρέθηκαν εγγραφές', + 'clone': 'Κλωνοποίηση', + 'loading': 'Φόρτωση', + 'industry': 'Βιομηχανία', + 'size': 'Μέγεθος', + 'payment_terms': 'Όροι Πληρωμής', + 'payment_date': 'Ημ/νία Πληρωμής', + 'payment_status': 'Κατάσταση Πληρωμής', + 'payment_status_1': 'Εκκρεμής', + 'payment_status_2': 'Σε λήξη', + 'payment_status_3': 'Απέτυχε', + 'payment_status_4': 'Ολοκληρώθηκε', + 'payment_status_5': 'Μερική επιστροφή χρημάτων', + 'payment_status_6': 'Επιστροφή χρημάτων', + 'payment_status_-1': 'Ανεφάρμοστο', + 'payment_status_-2': 'Partially Unapplied', + 'net': 'Καθαρό', + 'client_portal': 'Portal Πελάτη', + 'show_tasks': 'Εμφάνιση εργασιών', + 'email_reminders': 'Email Υπενθύμίσεις', + 'enabled': 'Ενεργοποίηση', + 'recipients': 'Παραλήπτες', + 'initial_email': 'Αρχικό Email', + 'first_reminder': 'Πρώτη Υπενθύμιση', + 'second_reminder': 'Δεύτερη Υπενθύμιση', + 'third_reminder': 'Τρίτη Υπενθύμιση', + 'reminder1': 'Πρώτη Υπενθύμιση', + 'reminder2': 'Δεύτερη Υπενθύμιση', + 'reminder3': 'Τρίτη Υπενθύμιση', + 'template': 'Πρότυπο', + 'send': 'Αποστολή', + 'subject': 'Θέμα', + 'body': 'Κείμενο', + 'send_email': 'Αποστολή Email', + 'email_receipt': 'Αποστολή απόδειξης πληρωμής στον πελάτη', + 'auto_billing': 'Αυτόματη Χρέωση', + 'button': 'Κουμπί', + 'preview': 'Προεπισκόπηση', + 'customize': 'Προσαρμογή', + 'history': 'Ιστορικό', + 'payment': 'Πληρωμή', + 'payments': 'Πληρωμές', + 'refunded': 'Επιστροφή χρημάτων', + 'payment_type': 'Τύπος Πληρωμής', + 'transaction_reference': 'Κωδικός Συναλλαγής', + 'enter_payment': 'Καταχώρηση πληρωμής', + 'new_payment': 'Εισάγετε πληρωμή', + 'created_payment': 'Επιτυχής δημιουργία πληρωμής', + 'updated_payment': 'Επιτυχής ενημέρωση πληρωμής', + 'archived_payment': 'Επιτυχής αρχειοθέτηση πληρωμής', + 'deleted_payment': 'Επιτυχής διαγραφή πληρωμής', + 'restored_payment': 'Επιτυχής ανάκτηση πληρωμής', + 'archived_payments': 'Επιτυχής αρχειοθέτηση :count πληρωμών', + 'deleted_payments': 'Επιτυχής διαγραφή :count πληρωμών', + 'restored_payments': 'Επιτυχής ανάκτηση :value πληρωμών', + 'quote': 'Προσφορά', + 'quotes': 'Προσφορές', + 'new_quote': 'Νέα Προσφορά', + 'created_quote': 'Επιτυχής δημιουργία προσφοράς', + 'updated_quote': 'Επιτυχής ενημέρωση προσφοράς', + 'archived_quote': 'Επιτυχής αρχειοθέτηση προσφοράς', + 'deleted_quote': 'Επιτυχής διαγραφή προσφοράς', + 'restored_quote': 'Επιτυχής ανάκτηση προσφοράς', + 'archived_quotes': 'Επιτυχής αρχειοθέτηση :count προσφορών', + 'deleted_quotes': 'Επιτυχής διαγραφή :count προσφορών', + 'restored_quotes': 'Επιτυχής ανάκτηση :value προσφορών', + 'expense': 'Δαπάνη', + 'expenses': 'Δαπάνες', + 'vendor': 'Προμηθευτής', + 'vendors': 'Προμηθευτές', + 'task': 'Εργασία', + 'tasks': 'Εργασίες', + 'project': 'Project', + 'projects': 'Projects', + 'activity_1': 'Ο χρήστης :user δημιούργησε τον πελάτη :client', + 'activity_2': 'Ο χρήστης :user αρχειοθέτησε τον πελάτη :client', + 'activity_3': 'Ο χρήστης :user διέγραψε τον πελάτη :client', + 'activity_4': 'Ο χρήστης :user δημιούργησε το τιμολόγιο :invoice', + 'activity_5': 'Ο χρήστης :user ενημέρωσε το τιμολόγιο :invoice', + 'activity_6': + 'Ο χρήστης :user έστειλε με email το τιμολόγιο :invoice για τον πελάτη :client στην επαφή :contact', + 'activity_7': + 'Η επαφή :contact είδε το τιμολόγιο :invoice για τον πελάτη :client', + 'activity_8': 'Ο χρήστης :user αρχειοθέτησε το τιμολόγιο :invoice', + 'activity_9': 'Ο χρήστης :user διέγραψε το τιμολόγιο :invoice', 'activity_10': - ':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', - 'activity_14': ':user gab :credit Guthaben ein', - 'activity_15': ':user aktualisierte :credit Guthaben', - 'activity_16': ':user archivierte :credit Guthaben', - 'activity_17': ':user löschte :credit Guthaben', - 'activity_18': ':user erstellte Angebot :quote', - 'activity_19': ':user aktualisierte Angebot :quote', - 'activity_20': ':user mailte Angebot :quote für :client an :contact', - 'activity_21': ':contact schaute Angebot :quote an', - 'activity_22': ':user archivierte Angebot :quote', - 'activity_23': ':user löschte Angebot :quote', - 'activity_24': ':user stellte Angebot :quote wieder her', - 'activity_25': ':user stellte Rechnung :invoice wieder her', - 'activity_26': ':user stellte Kunde :client wieder her', - 'activity_27': ':user stellte Zahlung :payment wieder her', - 'activity_28': ':user stellte Guthaben :credit wieder her', - 'activity_29': ':contact akzeptierte Angebot :quote für :client', - 'activity_30': ':user hat Lieferant :vendor erstellt', - 'activity_31': ':user hat Lieferant :vendor archiviert', - 'activity_32': ':user hat Lieferant :vendor gelöscht', - 'activity_33': ':user hat Lieferant :vendor wiederhergestellt', - 'activity_34': ':user erstellte Ausgabe :expense', - 'activity_35': ':user hat Ausgabe :expense archiviert', - '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', + 'Η επαφή :contact καταχώρησε την πληρωμή ποσού :payment_amount για το τιμολόγιο :invoice για τον πελάτη :client', + 'activity_11': 'Ο χρήστης :user ενημέρωσε την πληρωμή :payment', + 'activity_12': 'Ο χρήστης :user αρχειοθέτησε την πληρωμή :payment', + 'activity_13': 'Ο χρήστης :user διέγραψε την πληρωμή :payment', + 'activity_14': 'Ο χρήστης :user καταχώρησε την πίστωση :credit', + 'activity_15': 'Ο χρήστης :user ενημέρωσε την πίστωση :credit', + 'activity_16': 'Ο χρήστης :user αρχειοθέτησε την πίστωση :credit', + 'activity_17': 'Ο χρήστης :user διέγραψε την πίστωση :credit', + 'activity_18': 'Ο χρήστης :user δημιουργησε την προσφορά :quote', + 'activity_19': 'Ο χρήστης :user ενημέρωσε την προσφορά :quote', + 'activity_20': + 'Ο χρήστης :user έστειλε με email την προσφορά :quote για τον πελάτη :client στην επαφή :contact', + 'activity_21': 'Η επαφή :contact είδε την προσφορά :quote', + 'activity_22': 'Ο χρήστης :user αρχειοθέτησε την προσφορά :quote', + 'activity_23': 'Ο χρήστης :user διέγραψε την προσφορά :quote', + 'activity_24': 'Ο χρήστης :user επανέφερε την προσφορά :quote', + 'activity_25': 'Ο χρήστης :user επανέφερε το τιμολόγιο :invoice', + 'activity_26': 'Ο χρήστης :user επανέφερε τον πελάτη :client', + 'activity_27': 'Ο χρήστης :user επανέφερε την πληρωμή :payment', + 'activity_28': 'Ο χρήστης :user επανέφερε την πίστωση :credit', + 'activity_29': + 'Η επαφή :contact αποδέχτηκε την προσφορά :quote για τον πελάτη :client', + 'activity_30': 'Ο χρήστης :user δημιούργησε τον προμηθευτή :vendor', + 'activity_31': 'Ο χρήστης :user αρχειοθέτησε τον προμηθευτή :vendor', + 'activity_32': 'Ο χρήστης :user διέγραψε τον προμηθευτή :vendor', + 'activity_33': 'Ο χρήστης :user επανέφερε τον προμηθευτή :vendor', + 'activity_34': 'Ο χρήστης :user δημιούργησε τη δαπάνη :expense', + 'activity_35': 'Ο χρήστης :user αρχειοθέτησε τη δαπάνη :expense', + 'activity_36': 'Ο χρήστης :user διέγραψε τη δαπάνη :expense', + 'activity_37': 'Ο χρήστης :user επανέφερε τη δαπάνη :expense', + 'activity_39': ':user ακύρωσε :payment_amount πληρωμής :payment', 'activity_40': - ':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', - 'activity_44': ':user hat Aufgabe :task archiviert', - 'activity_45': ':user hat Aufgabe :task gelöscht', - 'activity_46': ':user hat Aufgabe :task wiederhergestellt', - 'activity_47': ':user hat Ausgabe :expense bearbeitet', - 'activity_48': ':user hat Ticket :ticket bearbeitet', - 'activity_49': ':user hat Ticket :ticket geschlossen', - 'activity_50': ':user hat Ticket :ticket zusammengeführt', - 'activity_51': ':user hat Ticket :ticket aufgeteilt', - 'activity_52': ':contact hat Ticket :ticket geöffnet', - 'activity_53': ':contact hat Ticket :ticket wieder geöffnet', - 'activity_54': ':user hat Ticket :ticket wieder geöffnet', - 'activity_55': ':contact hat auf Ticket :ticket geantwortet', - 'activity_56': ':user hat Ticket :ticket angesehen', + ':user επέστρεψε :adjustment μιας :payment_amount πληρωμής :payment', + 'activity_41': ':payment_amount πληρωμής (:payment) απέτυχε', + 'activity_42': 'Ο χρήστης :user δημιούργησε την εργασία :task', + 'activity_43': 'Ο χρήστης :user ενημέρωσε την εργασία :task', + 'activity_44': 'Ο χρήστης :user αρχειοθέτησε την εργασία :task', + 'activity_45': 'Ο χρήστης :user διέγραψε την εργασία :task', + 'activity_46': 'Ο χρήστης :user επανέφερε την εργασία :task', + 'activity_47': 'Ο χρήστης :user ενημέρωσε τη δαπάνη :expense', + 'activity_48': 'Ο χρήστης :user ενημέρωσε το αίτημα υποστήριξης :ticket', + 'activity_49': 'Ο χρήστης :user έκλεισε το αίτημα υποστήριξης :ticket', + 'activity_50': 'Ο χρήστης :user συνένωσε το αίτημα υποστήριξης :ticket', + 'activity_51': + 'Ο χρήστης :user διαίρεσε στα δύο το αίτημα υποστήριξης :ticket', + 'activity_52': + 'Η επαφή :contact δημιούργησε το αίτημα υποστήριξης :ticket', + 'activity_53': + 'Η επαφή :contact επαναδημιούργησε το αίτημα υποστήριξης :ticket', + 'activity_54': + 'Ο χρήστης :user επαναδημιούργησε το αίτημα υποστήριξης :ticket', + 'activity_55': 'Η επαφή :contact απάντησε στο αίτημα υποστήριξης :ticket', + 'activity_56': 'Ο χρήστης :user είδε το αίτημα υποστήριξης :ticket', 'activity_57': - 'Das System konnte die Rechnung :invoice nicht per E-Mail versenden', - 'activity_58': ':user buchte Rechnung :invoice zurück', - 'activity_59': ':user brach Rechnung :invoice ab', - 'activity_60': ':contact schaute Angebot :quote an', - 'activity_61': ':user hat Kunde :client aktualisiert', - 'activity_62': ':user hat Lieferant :vendor aktualisiert', + 'Το σύστημα απέτυχε να στείλει με email το τιμολόγιο :invoice', + 'activity_58': 'Ο χρήστης :user αντίστρεψε το τιμολόγιο :invoice', + 'activity_59': 'Ο χρήστης :user ακύρωσε το τιμολόγιο :invoice', + 'activity_60': 'Η επαφή :contact είδε την προσφορά :quote', + 'activity_61': 'Ο χρήστης :user ενημέρωσε τον πελάτη :client', + 'activity_62': 'Ο χρήστης :user ενημέρωσε τον προμηθευτή :vendor', 'activity_63': - ':user mailte erste Erinnerung für Rechnung :invoice an :contact', + 'Ο χρήστης :user έστειλε με email πρώτη ειδοποίηση για το τιμολόγιο :invoice στην επαφή :contact', 'activity_64': - ':user mailte zweite Erinnerung für Rechnung :invoice an :contact', + 'Ο χρήστης :user έστειλε με email δεύτερη ειδοποίηση για το τιμολόγιο :invoice στην επαφή :contact', 'activity_65': - ':user mailte dritte Erinnerung für Rechnung :invoice an :contact', + 'Ο χρήστης :user έστειλε με email τρίτη ειδοποίηση για το τιμολόγιο :invoice στην επαφή :contact', 'activity_66': - ':user mailte endlose Erinnerung für Rechnung :invoice an :contact', - 'activity_80': ':user hat Abonnement :subscription erstellt', - 'activity_81': ':user hat Abonnement :subscription geändert', - 'activity_82': ':user hat Abonnement :subscription archiviert', - 'activity_83': ':user hat Abonnement :subscription gelöscht', - 'activity_84': ':user hat Abonnement :subscription wiederhergestellt', - 'one_time_password': 'Einmaliges Passwort', - 'emailed_quote': 'Angebot erfolgreich versendet', - 'emailed_credit': 'Guthaben erfolgreich per E-Mail versendet', - 'marked_quote_as_sent': 'Angebot erfolgreich als versendet markiert', - 'marked_credit_as_sent': 'Guthaben erfolgreich als versendet markiert', - 'expired': 'Abgelaufen', - 'all': 'Alle', - 'select': 'Wählen', - 'long_press_multiselect': 'Mehrfachauswahl durch langes Drücken', - 'custom_value1': 'Benutzerdefinierten Wert', - 'custom_value2': 'Benutzerdefinierten Wert', - 'custom_value3': 'Benutzerdefinierter Wert 3', - 'custom_value4': 'Benutzerdefinierter Wert 4', - 'email_style_custom': 'Benutzer definierter E-Mail-Stil', - 'custom_message_dashboard': 'Benutzerdefinierte Dashboard-Nachricht', + 'Ο χρήστης :user έστειλε με email ατέρμονη ειδοποίηση για το τιμολόγιο :invoice στην επαφή :contact', + 'activity_80': ':user created subscription :subscription', + 'activity_81': ':user updated subscription :subscription', + 'activity_82': ':user archived subscription :subscription', + 'activity_83': ':user deleted subscription :subscription', + 'activity_84': ':user restored subscription :subscription', + 'one_time_password': 'Κωδικός Πρόσβασης μίας Φοράς', + 'emailed_quote': 'Επιτυχής αποστολή προσφοράς', + 'emailed_credit': 'Επιτυχής αποστολή πίστωσης με email', + 'marked_quote_as_sent': 'Επιτυχής ορισμός προσφοράς ως απεσταλμένη', + 'marked_credit_as_sent': 'Επιτυχής ορισμός πίστωσης ως απεσταλμένη', + 'expired': 'Ληγμένα', + 'all': 'Όλα', + 'select': 'Επιλογή', + 'long_press_multiselect': 'Πολλαπλή επιλογή με Παρατεταμένη πίεση', + 'custom_value1': 'Προσαρμοσμένη Τιμή', + 'custom_value2': 'Προσαρμοσμένη Τιμή', + 'custom_value3': 'Προσαρμοσμένη Τιμή 3', + 'custom_value4': 'Προσαρμοσμένη Τιμή 4', + 'email_style_custom': 'Προσαρμοσμένο Στυλ Email', + 'custom_message_dashboard': 'Προσαρμοσμένο Μήνυμα Πίνακα Διαχείρισης', 'custom_message_unpaid_invoice': - 'Benutzerdefinierte Nachricht für unbezahlte Rechnung', + 'Προσαρμοσμένο Μήνυμα Ανεξόφλητου Τιμολογίου', 'custom_message_paid_invoice': - 'Benutzerdefinierte Nachricht für bezahlte Rechnung', + 'Προσαρμοσμένο Μήνυμα Εξοφλημένου Τιμολογίου', 'custom_message_unapproved_quote': - 'Benutzerdefinierte Nachricht für nicht genehmigten Kostenvoranschlag', - 'lock_invoices': 'Rechnung sperren', - 'translations': 'Übersetzungen', - 'task_number_pattern': 'Aufgabennummernschema', - 'task_number_counter': 'Aufgabennummernzähler', - 'expense_number_pattern': 'Ausgabennummernschema', - 'expense_number_counter': 'Ausgabennummernzähler', - 'vendor_number_pattern': 'Lieferantennummernschema', - 'vendor_number_counter': 'Lieferantennummernzähler', - 'ticket_number_pattern': 'Ticketnummernschema', - 'ticket_number_counter': 'Ticketnummernzähler', - 'payment_number_pattern': 'Zahlungsnummernschema', - 'payment_number_counter': 'Zahlungsnummernzähler', - 'invoice_number_pattern': 'Rechnungsnummernschema', - 'invoice_number_counter': 'Zähler für Rechnungsnummer', - 'quote_number_pattern': 'Kostenvoranschlags-Nummernschema', - 'quote_number_counter': 'Zähler für Angebotsnummer', - 'client_number_pattern': 'Gutschriftnummernschema', - 'client_number_counter': 'Gutschriftnummernzähler', - 'credit_number_pattern': 'Gutschriftnummernzähler', - 'credit_number_counter': 'Gutschriftnummernzähler', - 'reset_counter_date': 'Zählerdatum zurücksetzen', - 'counter_padding': 'Zähler-Innenabstand', + 'Προσαρμοσμένο Μήνυμα Μη Εγκεκριμένη Προσφοράς', + 'lock_invoices': 'Κλείδωμα Τιμολογίων', + 'translations': 'Μεταφράσεις', + 'task_number_pattern': 'Μοτίβο Αρίθμησης Εργασίας', + 'task_number_counter': 'Μετρητής Αρίθμησης Εργασίας', + 'expense_number_pattern': 'Μοτίβο Αρίθμησης Δαπάνης', + 'expense_number_counter': 'Μετρητής Αρίθμησης Δαπάνης', + 'vendor_number_pattern': 'Μοτίβο Αρίθμησης Προμηθευτή', + 'vendor_number_counter': 'Μετρητής Αρίθμησης Προμηθευτή', + 'ticket_number_pattern': 'Μοτίβο Αρίθμησης Αιτήματος Βοήθειας', + 'ticket_number_counter': 'Μετρητής Αρίθμησης Αιτήματος Βοήθειας', + 'payment_number_pattern': 'Μοτίβο Αρίθμησης Πληρωμής', + 'payment_number_counter': 'Μετρητής Αρίθμησης Πληρωμής', + 'invoice_number_pattern': 'Μοτίβο Αρίθμησης Τιμολογίου', + 'invoice_number_counter': 'Αρίθμηση Τιμολογίου', + 'quote_number_pattern': 'Μοτίβο Αρίθμησης Προσφοράς', + 'quote_number_counter': 'Αρίθμηση Προσφοράς', + 'client_number_pattern': 'Μοντέλο αριθμών πιστωτικού', + 'client_number_counter': 'Μετρητής Αριθμών πιστωτικών', + 'credit_number_pattern': 'Μοντέλο πιστωτικού αριθμού', + 'credit_number_counter': 'Μετρητής Αριθμών πιστωτικών', + 'reset_counter_date': 'Μηδενισμός Μετρητή Ημερομηνίας', + 'counter_padding': 'Αντισταθμιστής', 'shared_invoice_quote_counter': - 'Gemeinsamen Nummernzähler für Rechnungen und Angebote verwenden', - 'default_tax_name_1': 'Standard-Steuername 1', - 'default_tax_rate_1': 'Standard-Steuersatz 1', - 'default_tax_name_2': 'Standard-Steuername 2', - 'default_tax_rate_2': 'Standard-Steuersatz 2', - 'default_tax_name_3': 'Standard-Steuername 3', - 'default_tax_rate_3': 'Standard-Steuersatz 3', - 'email_subject_invoice': 'EMail Rechnung Betreff', - 'email_subject_quote': 'EMail Angebot Betreff', - 'email_subject_payment': 'EMail Zahlung Betreff', - 'email_subject_payment_partial': 'EMail Teilzahlung Betreff', - 'show_table': 'Zeige Tabelle', - 'show_list': 'Zeige Liste', - 'client_city': 'Kunden-Stadt', - 'client_state': 'Kunden-Bundesland/Kanton', - 'client_country': 'Kunden-Land', - 'client_is_active': 'Kunde ist aktiv', - 'client_balance': 'Kunden Betrag', - 'client_address1': 'Straße des Kunden', - 'client_address2': 'Adresszusatz', - 'vendor_address1': 'Straße Lieferant', - 'vendor_address2': 'Lieferant Apt/Suite', - 'client_shipping_address1': 'Strasse Kundenlieferanschrift', - 'client_shipping_address2': 'Addresszusatz Kundenlieferadresse', - 'type': 'Typ', - 'invoice_amount': 'Rechnungssumme', - 'invoice_due_date': 'Fälligkeitsdatum', - 'tax_rate1': 'Steuersatz 1', - 'tax_rate2': 'Steuersatz 2', - 'tax_rate3': 'Steuersatz 3', - 'auto_bill': 'Automatische Verrechnung', - 'archived_at': 'Archiviert um', - 'has_expenses': 'Hat Ausgaben', - 'custom_taxes1': 'Benutzerdefinierte Steuern 1', - 'custom_taxes2': 'Benutzerdefinierte Steuern 2', - 'custom_taxes3': 'Benutzerdefinierte Steuern 3', - 'custom_taxes4': 'Benutzerdefinierte Steuern 4', - 'custom_surcharge1': 'Benutzerdefinierter Zuschlag 1', - 'custom_surcharge2': 'Benutzerdefinierter Zuschlag 2', - 'custom_surcharge3': 'Benutzerdefinierter Zuschlag 3', - 'custom_surcharge4': 'Benutzerdefinierter Zuschlag 4', - 'is_deleted': 'ist gelöscht', - 'vendor_city': 'Lieferanten-Stadt', - 'vendor_state': 'Lieferanten-Bundesland/Kanton', - 'vendor_country': 'Lieferanten-Land', - 'is_approved': 'Wurde angenommen', - 'tax_name': 'Steuersatz Name', - 'tax_amount': 'Steuerwert', - 'tax_paid': 'Steuern bezahlt', - 'payment_amount': 'Zahlungsbetrag', - 'age': 'Alter', - 'is_running': 'Läuft derzeit', - 'time_log': 'Zeiten', - 'bank_id': 'Bank', - 'expense_category_id': 'Ausgabenkategorie ID', - 'expense_category': 'Ausgabenkategorie', - 'invoice_currency_id': 'Rechnungs-Währungs-ID', - 'tax_name1': 'Steuersatz Name 1', - 'tax_name2': 'Steuersatz Name 2', - 'tax_name3': 'Steuersatz Name 3', - 'transaction_id': 'Transaktions ID', - 'status_color_theme': 'Status Farbschema', - 'load_color_theme': 'lade Farbschema', + 'Κοινόχρηστο παράθυρο παραγγελίας τιμολογίου', + 'default_tax_name_1': 'Προεπιλεγμένη ονομασία φορολογικού συντελεστή 1', + 'default_tax_rate_1': 'Προεπιλεγμένος φορολογικός συντελεστής 1', + 'default_tax_name_2': 'Προεπιλεγμένη ονομασία φορολογικού συντελεστή 2', + 'default_tax_rate_2': 'Προεπιλεγμένος φορολογικός συντελεστής 2', + 'default_tax_name_3': 'Προεπιλεγμένη ονομασία φορολογικού συντελεστή 3', + 'default_tax_rate_3': 'Προεπιλεγμένος φορολογικός συντελεστής 3', + 'email_subject_invoice': 'Θέμα τιμολογίου με ηλεκτρονικό ταχυδρομείο', + 'email_subject_quote': 'Θέμα ηλεκτρονικού ταχυδρομείου', + 'email_subject_payment': 'Θέμα Πληρωμής με ηλεκτρονικό ταχυδρομείο', + 'email_subject_payment_partial': 'Θέμα Email μερικής πληρωμής', + 'show_table': 'Εμφάνιση Πίνακα', + 'show_list': 'Εμφάνιση Λίστας', + 'client_city': 'Πόλη Πελάτη', + 'client_state': 'Κράτος Πελάτη', + 'client_country': 'Χώρα Πελάτη', + 'client_is_active': 'Ο Πελάτης είναι Ενεργός', + 'client_balance': 'Ισοζύγιο Πελατών', + 'client_address1': 'Οδός Πελάτη', + 'client_address2': 'Διαμέρισμα Πελάτη', + 'vendor_address1': 'Vendor Street', + 'vendor_address2': 'Vendor Apt/Suite', + 'client_shipping_address1': 'Οδός Αποστολής Πελάτη', + 'client_shipping_address2': 'Διαμέρισμα Αποστολής Πελάτη', + 'type': 'Τύπος', + 'invoice_amount': 'Ποσό Τιμολογίου', + 'invoice_due_date': 'Ημερομηνία Ολοκλήρωσης', + 'tax_rate1': 'Φορολογικός Συντελεστής 1', + 'tax_rate2': 'Φορολογικός Συντελεστής 2', + 'tax_rate3': 'Φορολογικός Συντελεστής 3', + 'auto_bill': 'Αυτόματη Χρέωση', + 'archived_at': 'Αρχειοθετήθηκε στις', + 'has_expenses': 'Εχει έξοδα', + 'custom_taxes1': 'Προσαρμοσμένη Φορολόγηση 1', + 'custom_taxes2': 'Προσαρμοσμένη Φορολόγηση 2', + 'custom_taxes3': 'Προσαρμοσμένη Φορολόγηση 3', + 'custom_taxes4': 'Προσαρμοσμένη Φορολόγηση 4', + 'custom_surcharge1': 'Προσαρμοσμένη Προσαύξηση 1', + 'custom_surcharge2': 'Προσαρμοσμένη Προσαύξηση 2', + 'custom_surcharge3': 'Προσαρμοσμένη Προσαύξηση 3', + 'custom_surcharge4': 'Προσαρμοσμένη Προσαύξηση 4', + 'is_deleted': 'Εχει διαγραφεί', + 'vendor_city': 'Πόλη Προμηθευτή', + 'vendor_state': 'Κράτος Προμηθευτή', + 'vendor_country': 'Χώρα Προμηθευτή', + 'is_approved': 'Είναι Αποδεκτή', + 'tax_name': 'Ονομασία Φόρου', + 'tax_amount': 'Ποσό Φόρου', + 'tax_paid': 'Πληρωμένος Φόρος', + 'payment_amount': 'Ποσό Πληρωμής', + 'age': 'Ηλικία', + 'is_running': 'Εκτελείται', + 'time_log': 'Αρχείο Καταγραφής Χρόνου', + 'bank_id': 'Τράπεζα', + 'expense_category_id': 'Κωδικός Κατηγορίας Δαπάνης', + 'expense_category': 'Κατηγορία Δαπάνης', + 'invoice_currency_id': 'Κωδικός Νομίσματος Τιμολογίου', + 'tax_name1': 'Ονομασία Φόρου 1', + 'tax_name2': 'Ονομασία Φόρου 2', + 'tax_name3': 'Ονομασία Φόρου 2', + 'transaction_id': 'Κωδικός Συναλλαγής', + 'status_color_theme': 'Status Color Theme', + 'load_color_theme': 'Load Color Theme', }, - 'el': { - 'client_shipping_state': 'Client Shipping State', - 'client_shipping_city': 'Client Shipping City', - 'client_shipping_postal_code': 'Client Shipping Postal Code', - 'client_shipping_country': 'Client Shipping Country', + 'it': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'La tariffa per una fattura :amount sarebbe :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Approva', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', + 'client_shipping_state': 'Client Shipping State', + 'client_shipping_city': 'Client Shipping City', + 'client_shipping_postal_code': 'Client Shipping Postal Code', + 'client_shipping_country': 'Client Shipping Country', 'load_pdf': 'Load PDF', 'start_free_trial': 'Start Free Trial', 'start_free_trial_message': @@ -27801,7 +28160,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'convert_to': 'Convert To', 'client_currency': 'Client Currency', 'company_currency': 'Company Currency', - 'purged_client': 'Επιτυχής εκκαθάριση πελάτη', + 'purged_client': 'Cliente eliminato con successo', 'custom_emails_disabled_help': 'To prevent spam we require upgrading to a paid account to customize the email', 'upgrade_to_add_company': 'Upgrade your plan to add companies', @@ -27837,7 +28196,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'giropay': 'GiroPay', 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', - 'set_password': 'Ορισμός Κωδικού Πρόσβασης', + 'set_password': 'Imposta Password', 'recommend_desktop': 'We recommend using the desktop app for the best performance', 'recommend_mobile': @@ -27859,15 +28218,15 @@ mixin LocalizationsProvider on LocaleCodeAware { 'registration': 'Registration', 'unauthorized_stripe_warning': 'Please authorize Stripe to accept online payments.', - 'view_expense': 'Εμφάνιση δαπάνης # :expense', - 'view_statement': 'Εμφάνιση Δήλωσης', - 'sepa': 'Απευθείας πίστωση SEPA', + 'view_expense': 'Vedi spesa # :expense', + 'view_statement': 'Estratto Conto', + 'sepa': 'SEPA Direct Debit', 'ideal': 'iDEAL', 'przelewy24': 'Przelewy24', 'eps': 'EPS', 'fpx': 'FPX', 'update_all_records': 'Update all records', - 'system': 'Σύστημα', + 'system': 'System', 'set_default_company': 'Set Default Company', 'updated_company': 'Successfully updated company', 'kbc': 'KBC', @@ -27883,22 +28242,19 @@ mixin LocalizationsProvider on LocaleCodeAware { 'bulk_email_invoice': 'Email Invoice', 'bulk_email_quote': 'Email Quote', 'bulk_email_credit': 'Email Credit', - 'from_name': 'Από Όνομα', + 'from_name': 'Da Nome', 'clone_to_expense': 'Clone to expense', - 'recurring_expense': 'Επαναλαμβανόμενη Δαπάνη', - 'recurring_expenses': 'Επαναλαμβανόμενες Δαπάνες', - 'new_recurring_expense': 'Νέα Επαναλαμβανόμενη Δαπάνη', - 'edit_recurring_expense': 'Επεξεργασία Επαναλαμβανόμενης Δαπάνης', - 'created_recurring_expense': - 'Επιτυχής δημιουργία επαναλαμβανόμενης δαπάνης', - 'updated_recurring_expense': - 'Επιτυχής ενημέρωση επαναλαμβανόμενης δαπάνης', - 'archived_recurring_expense': - 'Επιτυχής αρχειοθέτηση επαναλαμβανόμενης δαπάνης', - 'deleted_recurring_expense': 'Επιτυχής διαγραφή project', + 'recurring_expense': 'Spesa Ricorrente', + 'recurring_expenses': 'Spese Ricorrenti', + 'new_recurring_expense': 'Nuova Spesa Ricorrente', + 'edit_recurring_expense': 'Modifica Spesa Ricorrente', + 'created_recurring_expense': 'Spesa ricorrente creata con successo', + 'updated_recurring_expense': 'Spesa ricorrente aggiornata con successo', + 'archived_recurring_expense': 'Spesa ricorrente archiviata con successo', + 'deleted_recurring_expense': 'Progetto cancellato con sucesso', 'removed_recurring_expense': 'Successfully removed recurring expense', 'restored_recurring_expense': - 'Επιτυχής επαναφορά επαναλαμβανόμενης δαπάνης', + 'Spesa ricorrente riprestinata con successo', 'search_recurring_expense': 'Search Recurring Expense', 'search_recurring_expenses': 'Search Recurring Expenses', 'last_sent_date': 'Last Sent Date', @@ -27920,7 +28276,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'expense_tax_help': 'Item tax rates are disabled', 'enable_markdown': 'Enable Markdown', 'enable_markdown_help': 'Convert markdown to HTML on the PDF', - 'user_guide': 'Οδηγός Χρήσης', + 'user_guide': 'Guida Utente', 'add_second_contact': 'Add Second Contact', 'previous_page': 'Previous Page', 'next_page': 'Next Page', @@ -27938,7 +28294,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Table Alternate Row Background Color', 'invoice_header_background_color': 'Invoice Header Background Color', 'invoice_header_font_color': 'Invoice Header Font Color', - 'net_subtotal': 'Καθαρό Σύνολο', + 'net_subtotal': 'Netto', 'review_app': 'Review App', 'check_status': 'Check Status', 'free_trial': 'Free Trial', @@ -27954,7 +28310,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'subdomain_guide': 'The subdomain is used in the client portal to personalize links to match your brand. ie, https://your-brand.invoicing.co', 'send_time': 'Send Time', - 'import_data': 'Εισαγωγή Δεδομένων', + 'import_data': 'Import Data', 'import_settings': 'Import Settings', 'json_file_missing': 'Please provide the JSON file', 'json_option_missing': 'Please select to import the settings and/or data', @@ -27976,7 +28332,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'step_2_authorize': 'Step 2: Authorize', 'account_id': 'Account ID', 'migration_not_yet_completed': 'The migration has not yet completed', - 'activity_100': ':user created recurring invoice :recurring_invoice', + 'activity_100': + 'fattura ricorrente :recurring_invoice creata dall\'utente :user', 'activity_101': ':user updated recurring invoice :recurring_invoice', 'activity_102': ':user archived recurring invoice :recurring_invoice', 'activity_103': ':user deleted recurring invoice :recurring_invoice', @@ -27993,27 +28350,26 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_created': 'Invoice Created', 'quote_created': 'Quote Created', 'credit_created': 'Credit Created', - 'pro': 'Επαγγελματική', + 'pro': 'Pro', 'enterprise': 'Enterprise', - 'last_updated': 'Τελευταία ενημέρωση', + 'last_updated': 'Ultimo aggiornamento', 'invoice_item': 'Invoice Item', 'quote_item': 'Quote Item', - 'contact_first_name': 'Όνομα Επαφής', - 'contact_last_name': 'Επώνυμο Επαφής', + 'contact_first_name': 'Nome contatto', + 'contact_last_name': 'Cognome contatto', 'order': 'Order', - 'unassigned': 'Δεν έχει ανατεθεί', - 'partial_value': - 'Πρέπει να είναι μεγαλύτερο του μηδενός και μικρότερο από το σύνολο.', + 'unassigned': 'Non assegnato', + 'partial_value': 'Deve essere maggiore di zero ed inferiore al totale', 'search_kanban': 'Search Kanban', 'search_kanbans': 'Search Kanban', 'kanban': 'Kanban', - 'enable': 'Ενεργοποίηση', + 'enable': 'Abilita', 'move_top': 'Move Top', 'move_up': 'Move Up', 'move_down': 'Move Down', 'move_bottom': 'Move Bottom', 'subdomain_help': - 'Ορίστε τον υποτομέα ή εμφάνιστε το τιμολόγιο στη δική σας ιστοσελίδα', + 'Imposta il sottodominio o visualizza la fattura sul tuo sito web.', 'body_variable_missing': 'Error: the custom email must include a :body variable', 'add_body_variable_message': 'Make sure to include a :body variable', @@ -28038,7 +28394,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'header_key': 'Header Key', 'header_value': 'Header Value', 'recurring_products': 'Recurring Products', - 'promo_code': 'Promo code', + 'promo_code': 'Codice Promo', 'promo_discount': 'Promo Discount', 'allow_cancellation': 'Allow Cancellation', 'per_seat_enabled': 'Per Seat Enabled', @@ -28051,7 +28407,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'refund_period': 'Refund Period', 'webhook_configuration': 'Webhook Configuration', 'purchase_page': 'Purchase Page', - 'security': 'Ασφάλεια', + 'security': 'Sicurezza', 'email_bounced': 'Email Bounced', 'email_spam_complaint': 'Spam Complaint', 'email_delivery': 'Email Delivery', @@ -28061,135 +28417,133 @@ mixin LocalizationsProvider on LocaleCodeAware { 'pdf_failed': 'PDF Failed', 'pdf_success': 'PDF Success', 'modified': 'Modified', - 'subscription': 'Subscription', - 'subscriptions': 'Εγγραφές', - 'new_subscription': 'New Subscription', - 'edit_subscription': 'Επεξεργασία Συνδρομής', - 'created_subscription': 'Επιτυχής δημιουργία συνδρομής', - 'updated_subscription': 'Επιτυχής ενημέρωση συνδρομής', - 'archived_subscription': 'Επιτυχής αρχειοθέτηση συνδρομής', + 'subscription': 'Abbonamento', + 'subscriptions': 'Abbonamenti', + 'new_subscription': 'Nuovo Abbonamento', + 'edit_subscription': 'Modifica Abbonamento', + 'created_subscription': 'Abbonamento creato con successo', + 'updated_subscription': 'Abbonamento aggiornato con successo', + 'archived_subscription': 'Abbonamento archiviato con successo', 'deleted_subscription': 'Successfully deleted subscription', 'removed_subscription': 'Successfully removed subscription', 'restored_subscription': 'Successfully restored subscription', - 'search_subscription': 'Search 1 Subscription', - 'search_subscriptions': 'Search :count Subscriptions', - 'subdomain_is_not_available': 'Subdomain is not available', - 'connect_gmail': 'Connect Gmail', - 'disconnect_gmail': 'Disconnect Gmail', + 'search_subscription': 'Cerca 1 abbonamento', + 'search_subscriptions': 'Cerca :count abbonamenti', + 'subdomain_is_not_available': 'Sottodominio non disponibile', + 'connect_gmail': 'Connetti Gmail', + 'disconnect_gmail': 'Disconnetti Gmail', 'connected_gmail': 'Successfully connected Gmail', 'disconnected_gmail': 'Successfully disconnected Gmail', 'update_fail_help': 'Changes to the codebase may be blocking the update, you can run this command to discard the changes:', - 'client_id_number': 'Client ID Number', - 'count_minutes': ':count Minutes', - 'password_timeout': 'Password Timeout', - 'shared_invoice_credit_counter': 'Shared Invoice/Credit Counter', - 'use_last_email': 'Use last email', - 'activate_company': 'Activate Company', + 'client_id_number': 'Numero ID cliente', + 'count_minutes': ':count Minuti', + 'password_timeout': 'Scadenza Password', + 'shared_invoice_credit_counter': + 'Contatore condiviso per fatture/crediti', + 'use_last_email': 'Usa ultima email', + 'activate_company': 'Attiva azienda', 'activate_company_help': - 'Enable emails, recurring invoices and notifications', - 'an_error_occurred_try_again': 'An error occurred, please try again', - 'please_first_set_a_password': 'Please first set a password', + 'Abilitare le e-mail, le fatture ricorrenti e le notifiche', + 'an_error_occurred_try_again': + 'Si è verificato un errore, per favore riprova', + 'please_first_set_a_password': 'Si prega di impostare prima una password', 'changing_phone_disables_two_factor': - 'Warning: Changing your phone number will disable 2FA', - 'help_translate': 'Help Translate', - 'please_select_a_country': 'Please select a country', - 'resend_invite': 'Επαναποστολή Πρόσκλησης', - 'disabled_two_factor': 'Successfully disabled 2FA', + 'Attenzione: Cambiare il numero di telefono disabiliterà l\'autenticazione a due fattori', + 'help_translate': 'Contribuisci alla traduzione', + 'please_select_a_country': 'Selezionare un paese', + 'resend_invite': 'Re-invia invito', + 'disabled_two_factor': 'Disattivato con successo 2FA', 'connected_google': 'Successfully connected account', 'disconnected_google': 'Successfully disconnected account', - 'delivered': 'Delivered', - 'bounced': 'Επεστράφη', + 'delivered': 'Consegnato', + 'bounced': 'Bounced', 'spam': 'Spam', - 'view_docs': 'View Docs', + 'view_docs': 'Vedi documentazione', 'enter_phone_to_enable_two_factor': - 'Please provide a mobile phone number to enable two factor authentication', - 'send_sms': 'Send SMS', - 'sms_code': 'SMS Code', - 'two_factor_setup_help': - 'Σκανάρετε το barcode με μία :link συμβατή εφαρμογή.', - 'enabled_two_factor': - 'Επιτυχής ενεργοποίηση Αυθεντικοποίησης Δύο Σημείων', + 'Si prega di fornire un numero di telefono cellulare per abilitare l\'autenticazione a due fattori', + 'send_sms': 'Invia SMS', + 'sms_code': 'Codice SMS', + 'two_factor_setup_help': 'Scan the bar code with a :link compatible app.', + 'enabled_two_factor': 'Successfully enabled Two-Factor Authentication', 'connect_google': 'Connect Google', 'disconnect_google': 'Disconnect Google', - 'enable_two_factor': 'Αυθεντικοποίηση δύο σημείων', - 'disable_two_factor': 'Disable Two Factor', + 'enable_two_factor': 'Autenticazione a due fattori', + 'disable_two_factor': 'Disabilita 2FA', 'require_password_with_social_login': - 'Require Password with Social Login', - 'stay_logged_in': 'Stay Logged In', - 'session_about_to_expire': 'Warning: Your session is about to expire', - 'count_hours': ':count Hours', - 'count_day': '1 Day', - 'count_days': ':count Days', - 'web_session_timeout': 'Web Session Timeout', - 'security_settings': 'Security Settings', - 'resend_email': 'Resend Email', - 'confirm_your_email_address': 'Please confirm your email address', - 'refunded_payment': 'Επεστραμένη Πληρωμή', + 'Richiedi una password per il login Social', + 'stay_logged_in': 'Rimani autenticato', + 'session_about_to_expire': 'Attenzione: la tua sessione sta per scadere', + 'count_hours': ':count ore', + 'count_day': '1 giorno', + 'count_days': ':count giorni', + 'web_session_timeout': 'Timeout della sessione web', + 'security_settings': 'Impostazioni di Sicurezza', + 'resend_email': 'Reinvia email', + 'confirm_your_email_address': 'Si prega di confermare l\'indirizzo email', + 'refunded_payment': 'Pagamento Rimborsato', 'partially_unapplied': 'Partially Unapplied', 'select_a_gmail_user': 'Please select a user authenticated with Gmail', 'list_long_press': 'List Long Press', - 'show_actions': 'Show Actions', - 'start_multiselect': 'Start Multiselect', + 'show_actions': 'Mostra azioni', + 'start_multiselect': 'Lancia multiselezione', 'email_sent_to_confirm_email': - 'An email has been sent to confirm the email address', + 'Una mail è stata inviata per confermare l\'indirizzo email', 'counter_pattern_error': - 'To use :client_counter please add either :client_number or :client_id_number to prevent conflicts', - 'this_quarter': 'Τρέχον Τετράμηνο', - 'last_quarter': 'Τελευταίο Τετράμηνο', - 'to_update_run': 'Για ενημέρωση εκτελέστε', - 'convert_to_invoice': 'Μετατροπή σε Τιμολόγιο', - 'registration_url': 'URL Εγγραφής', - 'invoice_project': 'Τιμολόγηση Project', - 'invoice_task': 'Τιμολόγηση Εργασίας', - 'invoice_expense': 'Τιμολόγηση Δαπάνης', - 'search_payment_term': 'Αναζήτηση 1 Όρου Πληρωμής', - 'search_payment_terms': 'Αναζήτηση :count Όρων Πληρωμής', - 'save_and_preview': 'Αποθήκευση και Προεπισκόπηση', - 'save_and_email': 'Αποθήκευση και Αποστολή Email', - 'supported_events': 'Υποστηριζόμενα Γεγονότα', - 'converted_amount': 'Μετατρεπόμενο Ποσό', - 'converted_balance': 'Υπόλοιπο από Μετατροπή', + 'Per usare :client_counter aggiungere :client_number o :client_id_number per evitare conflitti', + 'this_quarter': 'This Quarter', + 'last_quarter': 'Last Quarter', + 'to_update_run': 'Per aggiornare esegui', + 'convert_to_invoice': 'Converti a Fattura', + 'registration_url': 'URL di registrazione', + 'invoice_project': 'Fattura progetto', + 'invoice_task': 'Fattura l\'attività', + 'invoice_expense': 'Fattura Spesa', + 'search_payment_term': 'Ricerca 1 Termine di pagamento', + 'search_payment_terms': 'Cerca :count termini di pagamento', + 'save_and_preview': 'Salva e mostra anteprima', + 'save_and_email': 'Salva e invia e-mail', + 'supported_events': 'Supported Events', + 'converted_amount': 'Importo convertito', + 'converted_balance': 'Converted Balance', 'converted_paid_to_date': 'Converted Paid to Date', 'converted_credit_balance': 'Converted Credit Balance', 'converted_total': 'Converted Total', - 'is_sent': 'Έχει Αποσταλεί', - 'default_documents': 'Προεπιλεγμένα Κείμενα', - 'document_upload': 'Μεταφόρτωση Εγγράφου', - 'document_upload_help': - 'Ενεργοποίησε τη δυνατότητα οι πελάτες να μεταφορτώνουν έγγραφα', - 'expense_total': 'Συνολική Δαπάνη', - 'enter_taxes': 'Εισαγετε Φόρους', - 'by_rate': 'Με Ποσοστό', - 'by_amount': 'Με Ποσό', - 'enter_amount': 'Εισάγετε Ποσό', - 'before_taxes': 'Προ Φόρων', - 'after_taxes': 'Μετά Φόρων', - 'color': 'Χρώμα', - 'show': 'Εμφάνισε', - 'hide': 'Απόκρυψη', - 'empty_columns': 'Κενές Στήλες', - 'debug_mode_is_enabled': - 'Το περιβάλλον αποσφαλμάτωσης έχει ενεργοποιηθεί', + 'is_sent': 'È inviato', + 'default_documents': 'Documenti predefiniti', + 'document_upload': 'Caricamento Documenti', + 'document_upload_help': 'Permettere ai clienti di caricare documenti', + 'expense_total': 'Totale Spese', + 'enter_taxes': 'Inserire tasse', + 'by_rate': 'Per prezzo', + 'by_amount': 'Per ammontare', + 'enter_amount': 'Inserire importo', + 'before_taxes': 'Prima delle tasse', + 'after_taxes': 'Dopo le tasse', + 'color': 'Colore', + 'show': 'Mostra', + 'hide': 'Nascondi', + 'empty_columns': 'Colonne vuote', + 'debug_mode_is_enabled': 'Debug mode is enabled', 'debug_mode_is_enabled_help': - 'Προειδοποίηση: προορίζεται για χρήση σε τοπικά μηχανήματα, μπορεί να οδηγήσει σε διαρροή κωδικών. Πατήστε για να μάθετε περισσότερα.', - 'running_tasks': 'Εκτελούμενες εργασίες', - 'recent_tasks': 'Πρόσφατες Εργασίες', - 'recent_expenses': 'Πρόσφατες Δαπάνες', - 'upcoming_expenses': 'Επερχόμενες Δαπάνες', - 'update_app': 'Ενημέρωση Εφαρμογής', - 'started_import': 'Επιτυχής έναρξη εισαγωγής', - 'duplicate_column_mapping': 'Κλωνοποίηση αντιστοίχισης στηλών', - 'uses_inclusive_taxes': 'Χρησιμοποιούνται Συμπεριλαμβανόμενοι Φόροι', - 'is_amount_discount': 'Είναι Ποσό Έκπτωσης', - 'column': 'Κολόνα', - 'sample': 'Παράδειγμα', - 'map_to': 'Αντιστοίχιση Σε', - 'import': 'Εισαγωγή', - 'first_row_as_column_names': 'Χρήση της πρώτης σειράς ως ονόματα στηλών', - 'select_file': 'Παρακαλώ επιλέξτε ένα αρχείο', - 'no_file_selected': 'Δεν Επιλέχθηκε Αρχείο', - 'csv_file': 'Αρχείο CSV', + 'Warning: it is intended for use on local machines, it can leak credentials. Click to learn more.', + 'running_tasks': 'Attività in corso', + 'recent_tasks': 'Attività Recenti', + 'recent_expenses': 'Spese Recenti', + 'upcoming_expenses': 'Spese in arrivo', + 'update_app': 'Aggiorna App', + 'started_import': 'Importazione avviata con successo', + 'duplicate_column_mapping': 'Duplicate column mapping', + 'uses_inclusive_taxes': 'Usa tasse inclusive', + 'is_amount_discount': 'Is Amount Discount', + 'column': 'Colonna', + 'sample': 'Esempio', + 'map_to': 'Map To', + 'import': 'Importa', + 'first_row_as_column_names': 'Use first row as column names', + 'select_file': 'Seleziona un file, per favore', + 'no_file_selected': 'No File Selected', + 'csv_file': 'Seleziona file CSV', 'csv': 'CSV', 'freshbooks': 'FreshBooks', 'invoice2go': 'Invoice2go', @@ -28198,1616 +28552,1618 @@ mixin LocalizationsProvider on LocaleCodeAware { 'zoho': 'Zoho', 'accounting': 'Accounting', 'required_files_missing': 'Please provide all CSVs.', - 'import_type': 'Τύπος Εισαγωγής', + 'import_type': 'Tipo di importazione', 'html_mode': 'HTML Mode', 'html_mode_help': 'Preview updates faster but is less accurate', - 'view_licenses': 'Εμφάνιση Αδειών Χρήσης', - 'webhook_url': 'Διεύθυνση URL του Webhook', - 'fullscreen_editor': 'Επεξεργαστής Πλήρους Οθόνης', - 'sidebar_editor': 'Επεξεργαστής Πλάγιας Μπάρας', - 'please_type_to_confirm': - 'Παρακαλούμε πληκρολογήστε \":value\" για επιβεβαίωση', - 'purge': 'Εκκαθάριση', - 'service': 'Υπηρεσία', - 'clone_to': 'Κλωνοποίηση Σε', - 'clone_to_other': 'Κλωνοποίηση σε Άλλο', - 'labels': 'Ετικέτες', - 'add_custom': 'Προσθήκη Προσαρμογής', - 'payment_tax': 'Φόρος Πληρωμής', - 'unpaid': 'Μη εξοφλημένη', - 'white_label': 'Λευκή Ετικέτα', - 'delivery_note': 'Σημείωση Παράδοσης', - 'sent_invoices_are_locked': 'Τα απεσταλμένα τιμολόγια είναι κλειδωμένα', - 'paid_invoices_are_locked': 'Τα εξοφλημένα τιμολόγια είναι κλειδωμένα', - 'source_code': 'Πηγαίος Κώδικας', - 'app_platforms': 'Πλατφόρμες Εφαρμογής', - 'invoice_late': 'Καθυστερημένο Ποσό Τιμολογίου', - 'quote_expired': 'Ληγμένη Προσφορά', - 'partial_due': 'Μερική Πληρωμή', - 'invoice_total': 'Σύνολο Τιμολογίου', - 'quote_total': 'Σύνολο Προσφοράς', - 'credit_total': 'Συνολική Πίστωση', - 'recurring_invoice_total': 'Σύνολο Τιμολογίου', - 'actions': 'Ενέργειες', - 'expense_number': 'Αριθμός Δαπάνης', - 'task_number': 'Αριθμός Εργασίας', - 'project_number': 'Αριθμός Project', - 'project_name': 'Όνομα Project', - 'warning': 'Ειδοποίηση', - 'view_settings': 'Ρυθμίσεις Εμφάνισης', + 'view_licenses': 'Visualizza le licenze', + 'webhook_url': 'Webhook URL', + 'fullscreen_editor': 'Editor a schermo intero', + 'sidebar_editor': 'Editor barra laterale', + 'please_type_to_confirm': 'Digita \":value\" per confermare', + 'purge': 'Purge', + 'service': 'Servizio', + 'clone_to': 'Clona come', + 'clone_to_other': 'Clona come altro', + 'labels': 'Etichette', + 'add_custom': 'Add Custom', + 'payment_tax': 'Payment Tax', + 'unpaid': 'Non pagata', + 'white_label': 'White Label', + 'delivery_note': 'Nota di consegna', + 'sent_invoices_are_locked': 'Le fatture inviate sono bloccate', + 'paid_invoices_are_locked': 'Le fatture pagate sono bloccate', + 'source_code': 'Codice Sorgente', + 'app_platforms': 'App Platforms', + 'invoice_late': 'Fattura in ritardo', + 'quote_expired': 'Preventivo scaduto', + 'partial_due': 'Da versare (parziale)', + 'invoice_total': 'Totale Fattura', + 'quote_total': 'Totale Preventivo', + 'credit_total': 'Credito Totale', + 'recurring_invoice_total': 'Totale fattura', + 'actions': 'Azioni', + 'expense_number': 'Numero spesa', + 'task_number': 'Numero attività', + 'project_number': 'Numero progetto', + 'project_name': 'Nome progetto', + 'warning': 'Attenzione', + 'view_settings': 'Impostazioni Visualizzazione', 'company_disabled_warning': - 'Προειδοποίηση: Αυτή η εταιρία δεν έχει ενεργοποιηθεί ακόμα', - 'late_invoice': 'Καθυστερημένο Τιμολόγιο', - 'expired_quote': 'Προσφορά που έληξε', - 'remind_invoice': 'Υπενθύμιση Τιμολογίου', + 'Attenzione: questa azienda non è ancora stata attivata', + 'late_invoice': 'Fattura in ritardo', + 'expired_quote': 'Preventivo scaduto', + 'remind_invoice': 'Ricorda fattura', 'cvv': 'CVV', - 'client_name': 'Όνομα Πελάτη', - 'client_phone': 'Τηλέφωνο Πελάτη', - 'required_fields': 'Απαιτούμενα Πεδία', - 'calculated_rate': 'Υπολογιζόμενο Κόστος', - 'default_task_rate': 'Προεπιλεγμένο Κόστος Εργασίας', - 'clear_cache': 'Καθαρισμός Προσωρινής Μνήμης', - 'sort_order': 'Σειρά Ταξινόμησης', - 'task_status': 'Κατάσταση', - 'task_statuses': 'Καταστάσεις Εργασίας', - 'new_task_status': 'Κατάσταση Νέας Εργασίας', - 'edit_task_status': 'Επεξεργασία Κατάστασης Εργασίας', - 'created_task_status': 'Επιτυχής δημιουργία κατάστασης εργασίας', - 'updated_task_status': 'Επιτυχής ενημέρωση κατάστασης εργασίας', - 'archived_task_status': 'Επιτυχής αρχειοθέτηση κατάστασης εργασίας', - 'deleted_task_status': 'Επιτυχής διαγραφή κατάστασης εργασίας', - 'removed_task_status': 'Επιτυχής αφαίρεση κατάστασης εργασίας', - 'restored_task_status': 'Επιτυχής ανάκτηση κατάστασης εργασίας', - 'archived_task_statuses': - 'Επιτυχής αρχειοθέτηση :value καταστάσεων εργασίας', - 'deleted_task_statuses': 'Επιτυχής διαγραφή :value καταστάσεων εργασίας', - 'restored_task_statuses': 'Επιτυχής ανάκτηση :value καταστάσεων εργασίας', - 'search_task_status': 'Αναζήτηση 1 Κατάστασης Εργασίας', - 'search_task_statuses': 'Αναζήτηση :count Καταστάσεων Εργασίας', - 'show_tasks_table': 'Εμφάνιση Πίνακα Εργασιών', + 'client_name': 'Nome Cliente', + 'client_phone': 'Telefono cliente', + 'required_fields': 'Campi richiesti', + 'calculated_rate': 'Calculated Rate', + 'default_task_rate': 'Prezzo di attività predefinito', + 'clear_cache': 'Pulisci cache', + 'sort_order': 'Ordinamento', + 'task_status': 'Stato', + 'task_statuses': 'Stati attività', + 'new_task_status': 'Nuovo stato attività', + 'edit_task_status': 'Modifica stato attività', + 'created_task_status': 'Stato attività creato con successo', + 'updated_task_status': 'Stato dell\'attività aggiornato con successo', + 'archived_task_status': 'Stato attività archiviato con successo', + 'deleted_task_status': 'Stato attività cancellato con successo', + 'removed_task_status': 'Stato attività rimosso con successo', + 'restored_task_status': 'Stato attività ripristinato con successo', + 'archived_task_statuses': ':value stati attività archiviati con successo', + 'deleted_task_statuses': ':value stati attività cancellati con successo', + 'restored_task_statuses': + ':value stati attività ripristinati con successo', + 'search_task_status': 'Cerca 1 stato attività', + 'search_task_statuses': 'Cerca :count stati attività', + 'show_tasks_table': 'Mostra tabella attività', 'show_tasks_table_help': - 'Πάντα να εμφανίζεται το τμήμα των εργασιών όταν δημιουργούνται τιμολόγια', - 'invoice_task_timelog': 'Χρονολόγιο Τιμολόγησης Εργασίας', + 'Mostra sempre la sezione delle attività quando si creano le fatture', + 'invoice_task_timelog': 'Timelog delle attività di fatturazione', 'invoice_task_timelog_help': - 'Προσθήκη λεπτομεριών χρόνου στις γραμμές των τιμολογίων', - 'invoice_task_datelog': 'Invoice Task Datelog', - 'invoice_task_datelog_help': 'Add date details to the invoice line items', - 'auto_start_tasks_help': 'Έναρξη εργασιών πριν την αποθήκευση', - 'configure_statuses': 'Προσαρμογή Καταστάσεων', - 'task_settings': 'Ρυθμίσεις Εργασίας', - 'configure_categories': 'Προσαρμογή Κατηγοριών', - 'expense_categories': 'Κατηγορίες Δαπάνης', - 'new_expense_category': 'Νέα Κατηγορία Δαπανών', - 'edit_expense_category': 'Επεξεργασία Κατηγορίας Δαπάνης', - 'created_expense_category': 'Επιτυχής δημιουργία κατηγορίας δαπανών', - 'updated_expense_category': 'Επιτυχής ενημέρωση κατηγορίας δαπανών', - 'archived_expense_category': 'Επιτυχής αρχειοθέτηση κατηγορίας δαπανών', - 'deleted_expense_category': 'Επιτυχής διαγραφή κατηγορίας', - 'removed_expense_category': 'Επιτυχής αφαίρεση κατηγορίας δαπάνης', - 'restored_expense_category': 'Επιτυχής επαναφορά κατηγορίας δαπανών', + 'Aggiungere i dettagli sull\'orario alle voci della fattura', + 'invoice_task_datelog': 'Datelog delle attività di fatturazione', + 'invoice_task_datelog_help': + 'Aggiungi i dettagli della data alle voci della fattura', + 'auto_start_tasks_help': 'Avvia le attività prima di salvare', + 'configure_statuses': 'Configura gli stati', + 'task_settings': 'Impostazioni attività', + 'configure_categories': 'Configura Categorie', + 'expense_categories': 'Categorie di Spesa', + 'new_expense_category': 'Nuova Categoria di Spesa', + 'edit_expense_category': 'Modifica Categoria di Spesa', + 'created_expense_category': 'Categoria spese creata con successo', + 'updated_expense_category': 'Categoria spese aggiornata con successo', + 'archived_expense_category': 'Categoria spese archiviata con successo', + 'deleted_expense_category': 'Categoria eliminata con successo', + 'removed_expense_category': 'Categoria di spesa rimossa con successo', + 'restored_expense_category': 'Categoria spese ripristinata con successo', 'archived_expense_categories': - 'Επιτυχής αρχειοθέτηση :count κατηγορίας δαπανών', + 'Archiviato con successo :count categorie di spesa', 'deleted_expense_categories': - 'Επιτυχής διαγραφή δαπάνης :value κατηγοριών', + 'Eliminate con successo :value categorie di spesa', 'restored_expense_categories': - 'Επιτυχής επαναφορά δαπάνης :value κατηγοριών', - 'search_expense_category': 'Αναζήτηση 1 Κατηγορίας Δαπάνης', - 'search_expense_categories': 'Αναζήτηση :count Κατηγορίες Δαπανών', - 'use_available_credits': 'Χρήση Διαθέσιμων Πιστώσεων', - 'show_option': 'Εμφάνιση Επιλογής', + 'Ripristinate con successo :value categorie di spesa', + 'search_expense_category': 'Cerca 1 categoria di spesa', + 'search_expense_categories': 'Cerca :count categorie di spesa', + 'use_available_credits': 'Use Available Credits', + 'show_option': 'Mostra opzione', 'negative_payment_error': - 'Το ποσό πίστωσης δεν μπορεί να υπερβαίνει το ποσό πληρωμής', - 'view_changes': 'Προβολή Αλλαγών', - 'force_update': 'Εξαναγκασμένη Ενημέρωση', + 'The credit amount cannot exceed the payment amount', + 'view_changes': 'Vedi modifiche', + 'force_update': 'Forza aggiornamento', 'force_update_help': - 'Εκτελείτε την τελευταία έκδοση αλλά μπορεί να υπάρχουν διορθώσεις σε αναμονή.', - 'mark_paid_help': 'Εντοπισμός της δαπάνης που πληρώθηκε', - 'should_be_invoiced': 'Πρέπει να τιμολογηθεί', - 'should_be_invoiced_help': 'Ενεργοποίηση της δαπάνης που θα τιμολογηθεί', - 'add_documents_to_invoice_help': 'Κάνε τα έγγραφα εμφανίσιμα', - 'convert_currency_help': 'Ορισμός Ισοτιμίας Ανταλλαγής', - 'expense_settings': 'Ρυθμίσεις Δαπάνης', - 'clone_to_recurring': 'Κλωνοποίηση σε Επαναλαμβανόμενο', - 'crypto': 'Κρύπτο', + 'Stai eseguendo l\'ultima versione, ma potrebbero essere disponibili dei fix in attesa.', + 'mark_paid_help': 'Traccia se le spese sono state pagate', + 'should_be_invoiced': 'Deve essere fatturata', + 'should_be_invoiced_help': 'Permettere la fatturazione della spesa', + 'add_documents_to_invoice_help': 'Rendi i documenti visibili', + 'convert_currency_help': 'Imposta un tasso di cambio', + 'expense_settings': 'Impostazioni Spese', + 'clone_to_recurring': 'Clona come ricorrente', + 'crypto': 'Crypto', 'paypal': 'PayPal', 'alipay': 'Alipay', 'sofort': 'Sofort', - 'apple_pay': 'Apple/Google Πληρωμή', - 'user_field': 'Πεδίο Χρήστη', - 'variables': 'Μεταβλητές', - 'show_password': 'Εμφάνιση Κωδικού Πρόσβασης', - 'hide_password': 'Απόκρυψη Κωδικού Πρόσβασης', - 'copy_error': 'Σφάλμα Αντιγραγής', - 'capture_card': 'Κάρτα Σύλληψης', - 'auto_bill_enabled': 'Αυτόματη Χρέωση Ενεργοποιήθηκε', - 'total_taxes': 'Συνολικοί Φόροι', - 'line_taxes': 'Φόροι Γραμμής', - 'total_fields': 'Συνολικά Πεδία', - 'stopped_recurring_invoice': - 'Επιτυχής διακοπή επαναλαμβανόμενου τιμολογίου', - 'started_recurring_invoice': - 'Επιτυχής έναρξη επαναλαμβανόμενου τιμολογίου', - 'resumed_recurring_invoice': - 'Επιτυχής επανεκκίνηση επαναλαμβανόμενου τιμολογίου', - 'gateway_refund': 'Επιστροφή Χρημάτων μέσω Πύλης Πληρωμής (Gateway)', - 'gateway_refund_help': - 'Εκτελέστε την επιστροφή νρημάτων μέσω Πύλης Πληρωμής (Gateway)', - 'due_date_days': 'Ημερομηνία Ολοκλήρωσης', - 'paused': 'Σε παύση', - 'mark_active': 'Σήμανση ως Ενεργό', - 'day_count': 'Ημέρα :count', - 'first_day_of_the_month': 'Πρώτη Μέρα του Μήνα', - 'last_day_of_the_month': 'Τελευταία Μέρα του Μήνα', - 'use_payment_terms': 'Χρησιμοποίηση Όρων Πληρωμής', - 'endless': 'Συνεχής', - 'next_send_date': 'Επόμενη Ημερομηνία Αποστολής', - 'remaining_cycles': 'Εναπομείναντες Κύκλοι', - 'recurring_invoice': 'Επαναλαμβανόμενο Τιμολόγιο', - 'recurring_invoices': 'Επαναλαμβανόμενα Τιμολόγια', - 'new_recurring_invoice': 'Νέο Επαναλαμβανόμενο Τιμολόγιο', - 'edit_recurring_invoice': 'Επεξεργασία Επαναλαμβανόμενων Τιμολογίων', - 'created_recurring_invoice': - 'Επιτυχής δημιουργία επαναλαμβανόμενου τιμολογίου', - 'updated_recurring_invoice': - 'Επιτυχής ενημέρωση επαναλαμβανόμενου τιμολογίου', + 'apple_pay': 'Apple/Google Pay', + 'user_field': 'Campo utente', + 'variables': 'Variabili', + 'show_password': 'Mostra Password', + 'hide_password': 'Nascondi Password', + 'copy_error': 'Copia Errore', + 'capture_card': 'Capture Card', + 'auto_bill_enabled': 'Fattura automatica abilitata', + 'total_taxes': 'Totale Tasse', + 'line_taxes': 'Riga tasse', + 'total_fields': 'Campi Totale', + 'stopped_recurring_invoice': 'Fermata con successo la fattura ricorrente', + 'started_recurring_invoice': 'Fattura ricorrente avviata con successo', + 'resumed_recurring_invoice': 'Fattura ricorrente ripresa con successo', + 'gateway_refund': 'Gateway Refund', + 'gateway_refund_help': 'Process the refund with the payment gateway', + 'due_date_days': 'Due Date', + 'paused': 'Pausato', + 'mark_active': 'Segna come attivo', + 'day_count': 'Giorno :count', + 'first_day_of_the_month': 'First Day of the Month', + 'last_day_of_the_month': 'Last Day of the Month', + 'use_payment_terms': 'Usa termini di pagamento', + 'endless': 'Endless', + 'next_send_date': 'Prossima data di invio', + 'remaining_cycles': 'Cicli restanti', + 'recurring_invoice': 'Fattura Ricorrente', + 'recurring_invoices': 'Fatture Ricorrenti', + 'new_recurring_invoice': 'Nuova Fattura Ricorrente', + 'edit_recurring_invoice': 'Modifica Fattura Ricorrente', + 'created_recurring_invoice': 'Fattura ricorrente creata con successo', + 'updated_recurring_invoice': 'Fattura ricorrente aggiornata con successo', 'archived_recurring_invoice': - 'Επιτυχής αρχειοθέτηση επαναλαμβανόμενου τιμολογίου', - 'deleted_recurring_invoice': - 'Επιτυχής διαγραφή επαναλαμβανόμενου τιμολογίου', - 'removed_recurring_invoice': - 'Επιτυχής αφαίρεση επαναλαμβανόμενου τιμολογίου', + 'Fattura ricorrente archiviata con successo', + 'deleted_recurring_invoice': 'Fattura ricorrente eliminata con successo', + 'removed_recurring_invoice': 'Fattura ricorrente rimossa con successo', 'restored_recurring_invoice': - 'Επιτυχής επαναφορά επαναλαμβανόμενου τιμολογίου', + 'Fattura ricorrente ripristinata con successo', 'archived_recurring_invoices': - 'Επιτυχής αρχειοθέτηση :value επαναλαμβανόμενων τιμολογίων', + 'Archiviato con successo :value fatture ricorrenti', 'deleted_recurring_invoices': - 'Επιτυχής διαγραφή :value επαναλαμβανόμενων τιμολογίων', + 'Cancellato con successo :value fatture ricorrenti', 'restored_recurring_invoices': - 'Επιτυχής επαναφορά :value επαναλαμβανόμενων τιμολογίων', - 'search_recurring_invoice': 'Αναζήτηση 1 Επαναλαμβανόμενου Τιμολογίου', - 'search_recurring_invoices': - 'Αναζήτηση :count Επαναλαμβανόμενων Τιμολογίων', - 'send_date': 'Ημερομηνία Αποστολής', - 'auto_bill_on': 'Αυτόματη Χρέωση στις', - 'minimum_under_payment_amount': 'Ελάχιστο Ποσό Υποπληρωμής', - 'profit': 'Κέρδος', - 'line_item': 'Προϊόν Γραμμής', - 'allow_over_payment': 'Επιτρέψτε Υπερπληρωμή', - 'allow_over_payment_help': - 'Υποστήριξη της επιπλεόν πληρωμής για να δέχεστε φιλοδορήματα', - 'allow_under_payment': 'Επιτρέψτε Υποπληρωμή', - 'allow_under_payment_help': - 'Υποστήριξη εξόφλησης κατ\' ελάχιστο του μερικού ποσού', - 'test_mode': 'Περιβάλλον Τεστ', - 'opened': 'Ανοίχθηκε', - 'payment_reconciliation_failure': 'Αποτυχία Συμβιβασμού', - 'payment_reconciliation_success': 'Επιτυχία Συμβιβασμού', - 'gateway_success': 'Επιτυχία Πύλης Πληρωμής', - 'gateway_failure': 'Αποτυχία Πύλης Πληρωμής', - 'gateway_error': 'Σφάλμα Πύλης Πληρωμής', - 'email_send': 'Email απεστάλη', - 'email_retry_queue': 'Ουρά Επαναποστολής Email', - 'failure': 'Αποτυχία', - 'quota_exceeded': 'Υπέρβαση Ορίου', - 'upstream_failure': 'Αποτυχία Ροής', - 'system_logs': 'Αρχείο Καταγραφής Συστήματος', - 'view_portal': 'Προβολή portal', - 'copy_link': 'Αντιγραφή Συνδέσμου', - 'token_billing': 'Αποθήκευση στοιχείων κάρτας', - 'welcome_to_invoice_ninja': 'Καλωσήρθατε στο Invoice Ninja', - 'always': 'Πάντα', - 'optin': 'Συμμετοχή', - 'optout': 'Μη Συμμετοχή', - 'label': 'Ετικέτα', - 'client_number': 'Αριθμός Πελάτη', - 'auto_convert': 'Αυτόματη Μετατροπή', - 'company_name': 'Όνομα Εταιρείας', - 'reminder1_sent': 'Υπενθύμιση 1 Απεστάλη', - 'reminder2_sent': 'Υπενθύμιση 2 Απεστάλη', - 'reminder3_sent': 'Υπενθύμιση 3 Απεστάλη', - 'reminder_last_sent': 'Τελευταία Υπενθύμιση Απεστάλη', - 'pdf_page_info': 'Σελίδα :current από :total', - 'emailed_invoices': 'Επιτυχής αποστολή τιμολογίων', - 'emailed_quotes': 'Επιτυχής αποστολή προσφορών', - 'emailed_credits': 'Επιτυχής αποστολή ΄πιστώσεων με email', - 'gateway': 'Πύλη πληρωμής (Gateway)', - 'view_in_stripe': 'Προβολή στο Stripe', - 'rows_per_page': 'Γραμμές ανά Σελίδα', - 'hours': 'Ώρες', - 'statement': 'Δήλωση', - 'taxes': 'Φόροι', - 'surcharge': 'Επιβάρυνση', - 'apply_payment': 'Πληρωμή', - 'apply_credit': 'Εφαρμογή Πίστωσης', - 'apply': 'Εφαρμογή', - 'unapplied': 'Ανεφάρμοστο', - 'select_label': 'Επιλογή Ετικέτας', - 'custom_labels': 'Προσαρμοσμένες Ετικέτες', - 'record_type': 'Τύπος Εγγραφής', - 'record_name': 'Όνομασία Εγγραφής', - 'file_type': 'Τύπος Αρχείου', - 'height': 'Ύψος', - 'width': 'Πλάτος', - 'to': 'Προς', - 'health_check': 'Έλεγχος Υγείας', - 'payment_type_id': 'Τύπος Πληρωμής', - 'last_login_at': 'Τελευταία Είσοδος στις', - 'company_key': 'Κλειδί Εταιρείας', - 'storefront': 'Βιτρίνα καταστήματος', - 'storefront_help': - 'Ενεργοποίηση εφαρμογών τρίτων για τη δημιουργία τιμολογίων', - 'client_created': 'Πελάτης Δημιουργήθηκε', - 'online_payment_email': 'Email Online Πληρωμών', - 'manual_payment_email': 'Email Χειροκίνητων Πληρωμών', - 'completed': 'Ολοκληρώθηκε', - 'gross': 'Μεικτό', - 'net_amount': 'Καθαρό Ποσό', - 'net_balance': 'Καθαρό Υπόλοιπο', - 'client_settings': 'Ρυθμίσεις Πελάτη', - 'selected_invoices': 'Επιλεγμένα Τιμολόγια', - 'selected_payments': 'Επιλεγμένες Πληρωμές', - 'selected_quotes': 'Επιλεγμένες Προσφορές', - 'selected_tasks': 'Επιλεγμένες Εργασίες', - 'selected_expenses': 'Επιλεγμένες Δαπάνες', - 'upcoming_invoices': 'Προσεχή Τιμολόγια', - 'past_due_invoices': 'Ληγμένα Τιμολόγια', - 'recent_payments': 'Πρόσφατες Πληρωμές', - 'upcoming_quotes': 'Προσεχείς Προσφορές', - 'expired_quotes': 'Προσφορές που έληξαν', - 'create_client': 'Δημιουργία Πελάτη', - 'create_invoice': 'Δημιουργία Τιμολογίου', - 'create_quote': 'Δημιουργία Προσφοράς', - 'create_payment': 'Δημιουργία Πληρωμής', - 'create_vendor': 'Δημιουργία προμηθευτή', - 'update_quote': 'Ενημέρωση Προσφοράς', - 'delete_quote': 'Διαγραφή Προσφοράς', - 'update_invoice': 'Ενημέρωση Τιμολογίου', - 'delete_invoice': 'Διαγραφή Τιμολογίου', - 'update_client': 'Ενημέρωση Πελάτη', - 'delete_client': 'Διαγραφή Πελάτη', - 'delete_payment': 'Διαγραφή Πληρωμής', - 'update_vendor': 'Ενημέρωση Προμηθευτή', - 'delete_vendor': 'Διαγραφή Προμηθευτή', - 'create_expense': 'Δημιουργία Δαπάνης', - 'update_expense': 'Ενημέρωση Δαπάνης', - 'delete_expense': 'Διαγραφή Δαπάνης', - 'create_task': 'Δημιουργία Εργασίας', - 'update_task': 'Ενημέρωση Εργασίας', - 'delete_task': 'Διαγραφή Εργασίας', - 'approve_quote': 'Αποδοχή Προσφοράς', - 'off': 'Κλειστό', - 'when_paid': 'Οταν Πληρωθεί', - 'expires_on': 'Λήγει την', - 'free': 'Δωρεάν', - 'plan': 'Πλάνο', - 'show_sidebar': 'Εμφάνιση Πλευρικής Μπάρας', - 'hide_sidebar': 'Απόκρυψη Πλευρικής Μπάρας', - 'event_type': 'Τύπος Γεγονότος', - 'target_url': 'Στόχος', - 'copy': 'Αντιγραφή', - 'must_be_online': - 'Παρακαλούμε επανεκκινήστε την εφαρμογή μόλις συνδεθείτε στο internet', - 'crons_not_enabled': 'Πρέπει να ενεργοποιήσετε τα crons', + 'Ripristinato con successo :value fatture ricorrenti', + 'search_recurring_invoice': 'Cerca 1 fattura ricorrente', + 'search_recurring_invoices': 'Cerca :count Fatture ricorrenti', + 'send_date': 'Data di invio', + 'auto_bill_on': 'Fattura automatica attiva', + 'minimum_under_payment_amount': 'Minimum Under Payment Amount', + 'profit': 'Utile', + 'line_item': 'Riga articolo', + 'allow_over_payment': 'Consenti pagamento in eccesso', + 'allow_over_payment_help': 'Accetta il pagamento di un extra', + 'allow_under_payment': 'Consenti pagamento ridotto', + 'allow_under_payment_help': 'Accetta il pagamento parziale o di cauzione', + 'test_mode': 'Modalità di test', + 'opened': 'Aperto', + 'payment_reconciliation_failure': 'Reconciliation Failure', + 'payment_reconciliation_success': 'Reconciliation Success', + 'gateway_success': 'Gateway Success', + 'gateway_failure': 'Gateway Failure', + 'gateway_error': 'Gateway Error', + 'email_send': 'Email Send', + 'email_retry_queue': 'Email Retry Queue', + 'failure': 'Failure', + 'quota_exceeded': 'Quota Exceeded', + 'upstream_failure': 'Upstream Failure', + 'system_logs': 'Registri di sistema', + 'view_portal': 'Visualizza il portale', + 'copy_link': 'Copia Collegamento', + 'token_billing': 'Salva carta di credito', + 'welcome_to_invoice_ninja': 'Benvenuti a Invoice Ninja', + 'always': 'Sempre', + 'optin': 'Opt-In', + 'optout': 'Opt-Out', + 'label': 'Etichetta', + 'client_number': 'Numero Cliente', + 'auto_convert': 'Auto Convert', + 'company_name': 'Nome Azienda', + 'reminder1_sent': 'Promemoria 1 inviato', + 'reminder2_sent': 'Promemoria 2 inviato', + 'reminder3_sent': 'Promemoria 3 inviato', + 'reminder_last_sent': 'Ultimo invio promemoria', + 'pdf_page_info': 'Pagina :current di :total', + 'emailed_invoices': 'Fatture inviate con successo', + 'emailed_quotes': 'Preventivi inviati con successo', + 'emailed_credits': 'Successfully emailed credits', + 'gateway': 'Piattaforma', + 'view_in_stripe': 'View in Stripe', + 'rows_per_page': 'Righe per pagina', + 'hours': 'Ore', + 'statement': 'Dichiarazione', + 'taxes': 'Tasse', + 'surcharge': 'Sovrapprezzo', + 'apply_payment': 'Applica pagamento', + 'apply_credit': 'Apply Credit', + 'apply': 'Applica', + 'unapplied': 'Unapplied', + 'select_label': 'Seleziona etichetta', + 'custom_labels': 'Etichette Personalizzate', + 'record_type': 'Record Type', + 'record_name': 'Record Name', + 'file_type': 'Tipo file', + 'height': 'Altezza', + 'width': 'Larghezza', + 'to': 'a', + 'health_check': 'Health Check', + 'payment_type_id': 'Tipo di Pagamento', + 'last_login_at': 'Ultimo login alle', + 'company_key': 'Chiave azienda', + 'storefront': 'Storefront', + 'storefront_help': 'Permetti alle app di terze parti di creare fatture', + 'client_created': 'Cliente creato', + 'online_payment_email': 'Email di pagamento online', + 'manual_payment_email': 'Email di pagamento manuale', + 'completed': 'Completato', + 'gross': 'Lordo', + 'net_amount': 'Cifra al netto', + 'net_balance': 'Bilancio Netto', + 'client_settings': 'Impostazioni Cliente', + 'selected_invoices': 'Fatture Selezionate', + 'selected_payments': 'Pagamenti selezionati', + 'selected_quotes': 'Preventivi Selezionati', + 'selected_tasks': 'Attività Selezionate', + 'selected_expenses': 'Spese Selezionate', + 'upcoming_invoices': 'Prossime fatture', + 'past_due_invoices': 'Fatture scadute', + 'recent_payments': 'Pagamenti recenti', + 'upcoming_quotes': 'Preventivi in scadenza', + 'expired_quotes': 'Preventivi Scaduti', + 'create_client': 'Crea nuovo cliente', + 'create_invoice': 'Crea Fattura', + 'create_quote': 'Crea Preventivo', + 'create_payment': 'Crea pagamento', + 'create_vendor': 'Crea fornitore', + 'update_quote': 'Aggiorna Preventivo', + 'delete_quote': 'Cancella Preventivo', + 'update_invoice': 'Aggiorna Fattura', + 'delete_invoice': 'Elimina Fattura', + 'update_client': 'Aggiorna Cliente', + 'delete_client': 'Elimina cliente', + 'delete_payment': 'Elimina pagamento', + 'update_vendor': 'Aggiorna Fornitore', + 'delete_vendor': 'Cancella Fornitore', + 'create_expense': 'Crea Spesa', + 'update_expense': 'Aggiorna Spesa', + 'delete_expense': 'Cancella Spesa', + 'create_task': 'Crea un\'attività', + 'update_task': 'Aggiorna Attività', + 'delete_task': 'Cancella l\'attività', + 'approve_quote': 'Aggiorna Preventivo', + 'off': 'Off', + 'when_paid': 'Quando Pagato', + 'expires_on': 'Scade il', + 'free': 'Free', + 'plan': 'Piano', + 'show_sidebar': 'Mostra Barra Laterale', + 'hide_sidebar': 'Nascondi Barra Laterale', + 'event_type': 'Tipo Evento', + 'target_url': 'Target', + 'copy': 'Copia', + 'must_be_online': 'Please restart the app once connected to the internet', + 'crons_not_enabled': 'The crons need to be enabled', 'api_webhooks': 'API Webhooks', - 'search_webhooks': 'Αναζήτηση :count Webhooks', - 'search_webhook': 'Αναζήτηση 1 Webhook', + 'search_webhooks': 'Search :count Webhooks', + 'search_webhook': 'Search 1 Webhook', 'webhook': 'Webhook', 'webhooks': 'Webhooks', - 'new_webhook': 'Νέο Webhook', - 'edit_webhook': 'Επεξεργασία Webhook', - 'created_webhook': 'Επιτυχής δημιουργία webhook', - 'updated_webhook': 'Επιτυχής ενημέρωση webhook', - 'archived_webhook': 'Επιτυχής αρχειοθέτηση webhook', - 'deleted_webhook': 'Επιτυχής διαγραφή webhook', - 'removed_webhook': 'Επιτυχής αφαίρεση webhook', - 'restored_webhook': 'Επιτυχής ανάκτηση webhook', - 'archived_webhooks': 'Επιτυχής αρχειοθέτηση :value webhooks', - 'deleted_webhooks': 'Επιτυχής διαγραφή :value webhooks', - 'removed_webhooks': 'Επιτυχής αφαίρεση :value webhooks', - 'restored_webhooks': 'Επιτυχής ανάκτηση :value webhooks', - 'api_tokens': 'Διακριτικά API', - 'api_docs': 'Κείμενα API', - 'search_tokens': 'Αναζήτηση :count Διακριτικών', - 'search_token': 'Αναζήτηση 1 Διακριτικού', - 'token': 'Διακριτικό', - 'tokens': 'Διακριτικά', - 'new_token': 'Νέο Διακριτικό', - 'edit_token': 'Επεξεργασία Διακριτικού', - 'created_token': 'Επιτυχής δημιουργία διακριτικού', - 'updated_token': 'Επιτυχής ενημέρωση διακριτικού', - 'archived_token': 'Επιτυχής αρχειοθέτηση διακριτικού', - 'deleted_token': 'Επιτυχής διαγραφή διακριτικού', - 'removed_token': 'Επιτυχής αφαίρεση διακριτικού', - 'restored_token': 'Επιτυχής ανάκτηση διακριτικού', - 'archived_tokens': 'Επιτυχής αρχειοθέτηση :value διακριτικών', - 'deleted_tokens': 'Επιτυχής διαγραφή :value διακριτικών', - 'restored_tokens': 'Επιτυχής ανάκτηση :value διακριτικών', - 'client_registration': 'Εγγραφή Πελάτη', + 'new_webhook': 'New Webhook', + 'edit_webhook': 'Edit Webhook', + 'created_webhook': 'Successfully created webhook', + 'updated_webhook': 'Successfully updated webhook', + 'archived_webhook': 'Successfully archived webhook', + 'deleted_webhook': 'Successfully deleted webhook', + 'removed_webhook': 'Successfully removed webhook', + 'restored_webhook': 'Successfully restored webhook', + 'archived_webhooks': 'Successfully archived :value webhooks', + 'deleted_webhooks': 'Successfully deleted :value webhooks', + 'removed_webhooks': 'Successfully removed :value webhooks', + 'restored_webhooks': 'Successfully restored :value webhooks', + 'api_tokens': 'API Token', + 'api_docs': 'Documentazione API', + 'search_tokens': 'Search :count Tokens', + 'search_token': 'Search 1 Token', + 'token': 'Token', + 'tokens': 'Token', + 'new_token': 'New Token', + 'edit_token': 'Modifica token', + 'created_token': 'Token creato correttamente', + 'updated_token': 'Token aggiornato correttamente', + 'archived_token': 'Successfully archived token', + 'deleted_token': 'Token eliminato correttamente', + 'removed_token': 'Successfully removed token', + 'restored_token': 'Successfully restored token', + 'archived_tokens': 'Successfully archived :value tokens', + 'deleted_tokens': 'Successfully deleted :value tokens', + 'restored_tokens': 'Successfully restored :value tokens', + 'client_registration': 'Registazione cliente', 'client_registration_help': - 'Ενεργοποίηση αυτοεγγραφής πελατών στο portal', - 'customize_and_preview': 'Προσαρμογή & Προεπισκόπηση', - 'email_invoice': 'Αποστολή Τιμολογίου με email', - 'email_quote': 'Αποστολή Προσφοράς', - 'email_credit': 'Αποστολή Πίστωσης με email', - 'email_payment': 'Αποστολή πληρωμής με Email', - 'client_email_not_set': - 'Ο πελάτης δεν έχει καταχωρημένη μία διεύθυνση email', - 'ledger': 'Καθολικό', - 'view_pdf': 'Προβολή PDF', - 'all_records': 'Όλες οι εγγραφές', - 'owned_by_user': 'Ιδιοκτησία του χρήστη', - 'credit_remaining': 'Υπολειπόμενη Πίστωση', - 'contact_name': 'Όνομα Επαφής', - 'use_default': 'Χρήση προεπιλογής', - 'reminder_endless': 'Συνεχής Υπενθύμιση', - 'number_of_days': 'Αριθμός ημερών', - 'configure_payment_terms': 'Προσαρμογή Όρων Πληρωμής', - 'payment_term': 'Όρος Πληρωμής', - 'new_payment_term': 'Νέος Όρος Πληρωμής', - 'edit_payment_term': 'Επεξεργασία Όρου Πληρωμής', - 'created_payment_term': 'Επιτυχής δημιουργία όρων πληρωμής', - 'updated_payment_term': 'Επιτυχής επικαιροποίηση όρων πληρωμής', - 'archived_payment_term': 'Επιτυχής αποθήκευση όρου πληρωμής', - 'deleted_payment_term': 'Επιτυχής διαγραφή όρου πληρωμής', - 'removed_payment_term': 'Επιτυχής αφαίρεση όρου πληρωμής', - 'restored_payment_term': 'Επιτυχής ανάκτηση όρου πληρωμής', - 'archived_payment_terms': 'Επιτυχής αρχειοθέτηση :value όρων πληρωμής', - 'deleted_payment_terms': 'Επιτυχής διαγραφή :value όρων πληρωμής', - 'restored_payment_terms': 'Επιτυχής ανάκτηση :value όρων πληρωμής', - 'email_sign_in': 'Είσοδος με email', - 'change': 'Αλλαγή', - 'change_to_mobile_layout': 'Αλλαγή σε εμφάνιση κινητής συσκευής;', - 'change_to_desktop_layout': 'Αλλαγή σε εμφάνιση Desktop συσκευής;', - 'send_from_gmail': 'Αποστολή μέσω Gmail', - 'reversed': 'Αντιστράφηκε', - 'cancelled': 'Ακυρωμένη', - 'credit_amount': 'Ποσό Πίστωσης', - 'quote_amount': 'Ποσό Προσφοράς', - 'hosted': 'Φιλοξενούμενη', - 'selfhosted': 'Ιδίας Φιλοξενίας', - 'exclusive': 'Δεν συμπεριλαμβάνεται', - 'inclusive': 'Συμπεριλαμβάνεται', - 'hide_menu': 'Απόκρυψη Μενού', - 'show_menu': 'Εμφάνιση Μενού', - 'partially_refunded': 'Μερική Επιστροφή Χρημάτων', - 'search_documents': 'ΑναζήτησηΕγγράφων', - 'search_designs': 'Αναζήτηση Σχεδίων', - 'search_invoices': 'Αναζήτηση Τιμολογίων', - 'search_clients': 'Αναζήτηση Πελατών', - 'search_products': 'Αναζήτηση Προϊόντων', - 'search_quotes': 'Αναζήτηση Προσφορών', - 'search_credits': 'Αναζήτηση Πιστώσεων', - 'search_vendors': 'Αναζήτηση Προμηθευτών', - 'search_users': 'Αναζήτηση Χρηστών', - 'search_tax_rates': 'Αναζήτηση Ποσοστών Φόρου', - 'search_tasks': 'Αναζήτηση Εργασιών', - 'search_settings': 'Αναζήτηση Ρυθμίσεων', - 'search_projects': 'Αναζήτηση Projects', - 'search_expenses': 'Αναζήτηση Δαπανών', - 'search_payments': 'Αναζήτηση Πληρωμών', - 'search_groups': 'Αναζήτηση Γκρουπ', - 'search_company': 'Αναζήτηση Εταιριών', - 'search_document': 'Αναζήτηση 1 Εγγράφου', - 'search_design': 'Αναζήτηση 1 Σχεδίου', - 'search_invoice': 'Αναζήτηση 1 Τιμολογίου', - 'search_client': 'Αναζήτηση 1 Πελάτη', - 'search_product': 'Αναζήτηση 1 Προϊόντος', - 'search_quote': 'Αναζήτηση 1 Προσφοράς', - 'search_credit': 'Αναζήτηση 1 Πίστωσης', - 'search_vendor': 'Αναζήτηση 1 Προμηθευτή', - 'search_user': 'Αναζήτηση 1 Χρήστη', - 'search_tax_rate': 'Αναζήτηση 1 Ποσοστού Φόρου', - 'search_task': 'Αναζήτηση 1 Εργασίας', - 'search_project': 'Αναζήτηση 1 Project', - 'search_expense': 'Αναζήτηση 1 Δαπάνης', - 'search_payment': 'Αναζήτηση 1 Πληρωμής', - 'search_group': 'Αναζήτηση 1 Γκρουπ', - 'refund_payment': 'Επιστροφή Πληρωμής', - 'cancelled_invoice': 'Επιτυχής ακύρωση τιμολογίου', - 'cancelled_invoices': 'Επιτυχής ακύρωση τιμολογίων', - 'reversed_invoice': 'Επιτυχής αντιστροφή τιμολογίου', - 'reversed_invoices': 'Επιτυχής αντιστροφή τιμολογίων', - 'reverse': 'Αντιστροφή', - 'full_name': 'Πλήρες Όνομα', - 'city_state_postal': 'Πόλη/Νομός/Τ.Κ.', - 'postal_city_state': 'ΤΚ/Πόλη/Περιοχή', - 'custom1': 'Πρώτη Προσαρμογή', - 'custom2': 'Δεύτερη Προσαρμογή', - 'custom3': 'Τρίτη Προσαρμογή', - 'custom4': 'Τέταρτη Προσαρμογή', - 'optional': 'Προαιρετικό', - 'license': 'Άδεια Χρήσης', - 'purge_data': 'Εκκαθάριση Δεδομένων', - 'purge_successful': 'Επιτυχής εκκαθάριση δεδομένων επιχείρησης', - 'purge_data_message': - 'Προσοχή: Αυτό θα σβήσει όλα σας τα δεδομένα, χωρίς δυνατότητα αναίρεσης.', - 'invoice_balance': 'Ισοζύγιο Τιμολογίων', - 'age_group_0': '0 - 30 Ημέρες', - 'age_group_30': '30 - 60 Ημέρες', - 'age_group_60': '60 - 90 Ημέρες', - 'age_group_90': '90 - 120 Ημέρες', - 'age_group_120': '120+ Ημέρες', - 'refresh': 'Ανανέωση', - 'saved_design': 'Επιτυχής αποθήκευση σχεδιασμού', - 'client_details': 'Λεπτομέρειες Πελάτη', - 'company_address': 'Διεύθυνση Εταιρείας', - 'invoice_details': 'Στοιχεία Τιμολογίου', - 'quote_details': 'Λεπτομέρειες Προσφοράς', - 'credit_details': 'Λεπτομέρειες Πίστωσης', - 'product_columns': 'Στήλες Προϊόντος', - 'task_columns': 'Στήλες Εργασιών', - 'add_field': 'Προσθήκη Πεδίου', - 'all_events': 'Όλα τα Γεγονότα', - 'permissions': 'Δικαιώματα', - 'none': 'Κανένα', - 'owned': 'Κατέχεται', - 'payment_success': 'Επιτυχία Πληρωμής', - 'payment_failure': 'Αποτυχία Πληρωμής', - 'invoice_sent': ':count τιμολόγιο στάλθηκε', - 'quote_sent': 'Προσφορά στάλθηκε', - 'credit_sent': 'Πίστωση στάλθηκε', - 'invoice_viewed': 'Τιμολόγιο εμφανίστηκε', - 'quote_viewed': 'Προσφορά εμφανίστηκε', - 'credit_viewed': 'Πίστωση εμφανίστηκε', - 'quote_approved': 'Προσφορά έγινε αποδεκτή', - 'receive_all_notifications': 'Αποδοχή όλων των Ειδοποιήσεων', - 'purchase_license': 'Προμήθεια Άδειας Χρήσης', - 'apply_license': 'Εφαρμογή Άδειας Χρήσης', - 'cancel_account': 'Διαγραφή Λογαριασμού', - 'cancel_account_message': - 'Προσοχή: Αυτό θα σβήσει το λογαριασμό σας, χωρίς δυνατότητα αναίρεσης.', - 'delete_company': 'Διαγραφή Επιχείρησης', - 'delete_company_message': - 'Προειδοποίηση: Αυτό θα διαγράψει οριστικά την επιχείρηση, χωρίς αναίρεση.', - 'enabled_modules': 'Ενεργοποιημένες Ενότητες', - 'converted_quote': 'Επιτυχής μετατροπή προσφοράς', - 'credit_design': 'Σχεδιασμός Πιστώσεων', - 'includes': 'Περιλαμβανόμενα', - 'header': 'Επικεφαλίδα', - 'load_design': 'Φόρτωση Σχεδιασμού', + 'Permetti al cliente di registrarsi da solo nel portale', + 'customize_and_preview': 'Personalizza & Anteprima', + 'email_invoice': 'Invia Fattura', + 'email_quote': 'Invia Preventivo via Email', + 'email_credit': 'Email Credit', + 'email_payment': 'Email Pagamento', + 'client_email_not_set': 'Il cliente non ha un indirizzo email impostato', + 'ledger': 'Registro', + 'view_pdf': 'Vedi PDF', + 'all_records': 'Tutti i dati', + 'owned_by_user': 'Posseduto da utente', + 'credit_remaining': 'Credit Remaining', + 'contact_name': 'Nome Contatto', + 'use_default': 'Usa predefinito', + 'reminder_endless': 'Promemoria senza scadenza', + 'number_of_days': 'Number of days', + 'configure_payment_terms': 'Configura termini di pagamento', + 'payment_term': 'Termini di pagamento', + 'new_payment_term': 'Nuovi termini di pagamento', + 'edit_payment_term': 'Modifica termini di pagamento', + 'created_payment_term': 'Termini di pagamento creato con successo', + 'updated_payment_term': 'Termini di pagamento aggiornato con successo', + 'archived_payment_term': 'Termini di pagamento archiviato con successo', + 'deleted_payment_term': 'Termini di pagamento cancellati con successo', + 'removed_payment_term': 'Termini di pagamento rimossi con successo', + 'restored_payment_term': 'Termini di pagamento ripristinati con successo', + 'archived_payment_terms': 'Successfully archived :value payment terms', + 'deleted_payment_terms': 'Successfully deleted :value payment terms', + 'restored_payment_terms': 'Successfully restored :value payment terms', + 'email_sign_in': 'Sign in with email', + 'change': 'Change', + 'change_to_mobile_layout': 'Change to the mobile layout?', + 'change_to_desktop_layout': 'Change to the desktop layout?', + 'send_from_gmail': 'Inviato da Gmail', + 'reversed': 'Reversed', + 'cancelled': 'Cancelled', + 'credit_amount': 'Importo Credito', + 'quote_amount': 'Importo del preventivo', + 'hosted': 'Hosted', + 'selfhosted': 'Self-Hosted', + 'exclusive': 'Esclusiva', + 'inclusive': 'Inclusiva', + 'hide_menu': 'Nascondi menu', + 'show_menu': 'Mostra menu', + 'partially_refunded': 'Parzialmente rimborsato', + 'search_documents': 'Cerca Documenti', + 'search_designs': 'Search Designs', + 'search_invoices': 'Cerca Fatture', + 'search_clients': 'Cerca Clienti', + 'search_products': 'Cerca Prodotti', + 'search_quotes': 'Cerca Preventivi', + 'search_credits': 'Cerca crediti', + 'search_vendors': 'Cerca fornitori', + 'search_users': 'Cerca utenti', + 'search_tax_rates': 'Cerca aliquote', + 'search_tasks': 'Cerca attività', + 'search_settings': 'Cerca Impostazioni', + 'search_projects': 'Cerca prodotti', + 'search_expenses': 'Cerca spese', + 'search_payments': 'Cerca pagamenti', + 'search_groups': 'Cerca gruppi', + 'search_company': 'Cerca Azienda', + 'search_document': 'Cerca 1 documento', + 'search_design': 'Cerca 1 stile', + 'search_invoice': 'Cerca 1 fattura', + 'search_client': 'Cerca 1 cliente', + 'search_product': 'Cerca 1 prodotto', + 'search_quote': 'Cerca 1 preventivo', + 'search_credit': 'Cerca 1 credito', + 'search_vendor': 'Cerca 1 Fornitore', + 'search_user': 'Cerca 1 utente', + 'search_tax_rate': 'Cerca 1 aliquota', + 'search_task': 'Cerca 1 attività', + 'search_project': 'Cerca 1 progetto', + 'search_expense': 'Cerca 1 spesa', + 'search_payment': 'Cerca 1 pagamento', + 'search_group': 'Cerca 1 gruppo', + 'refund_payment': 'Rimborsa Pagamento', + 'cancelled_invoice': 'Fattura annullata con successo', + 'cancelled_invoices': 'Fatture annullate con successo', + 'reversed_invoice': 'Fattura stornata con successo', + 'reversed_invoices': 'Fatture stornate con successo', + 'reverse': 'Reverse', + 'full_name': 'Nome Completo', + 'city_state_postal': 'Città/Stato/CAP', + 'postal_city_state': 'Postal/City/State', + 'custom1': 'First Custom', + 'custom2': 'Second Custom', + 'custom3': 'Third Custom', + 'custom4': 'Fourth Custom', + 'optional': 'Opzionale', + 'license': 'Licenza', + 'purge_data': 'Cancella dati permanentemente', + 'purge_successful': 'Successfully purged company data', + 'purge_data_message': + 'Warning: This will permanently erase your data, there is no undo.', + 'invoice_balance': 'Saldo della fattura', + 'age_group_0': '0 - 30 Giorni', + 'age_group_30': '30 - 60 Giorni', + 'age_group_60': '60 - 90 Giorni', + 'age_group_90': '90 - 120 Giorni', + 'age_group_120': '120+ Giorni', + 'refresh': 'Aggiorna', + 'saved_design': 'Successfully saved design', + 'client_details': 'Dettagli Cliente', + 'company_address': 'Indirizzo azienda', + 'invoice_details': 'Dettagli fattura', + 'quote_details': 'Dettagli Preventivo', + 'credit_details': 'Dettagli Credito', + 'product_columns': 'Colonne Prodotto', + 'task_columns': 'Colonne attività', + 'add_field': 'Aggiungi campo', + 'all_events': 'Tutti gli eventi', + 'permissions': 'Permissions', + 'none': 'Nessuno/a', + 'owned': 'Posseduto', + 'payment_success': 'Pagamento riuscito', + 'payment_failure': 'Errore di pagamento', + 'invoice_sent': ':count fattura inviata', + 'quote_sent': 'Preventivo inviato', + 'credit_sent': 'Credito inviato', + 'invoice_viewed': 'Fattura visualizzata', + 'quote_viewed': 'Preventivo visualizzato', + 'credit_viewed': 'Credito visualizzato', + 'quote_approved': 'Preventivo approvato', + 'receive_all_notifications': 'Ricevi tutte le notifiche', + 'purchase_license': 'Acquista licenza', + 'apply_license': 'Applica Licenza', + 'cancel_account': 'Elimina l\'account', + 'cancel_account_message': + 'Attenzione: Questo eliminerà permanentemente il tuo account, non si potrà più tornare indietro.', + 'delete_company': 'Elimina azienda', + 'delete_company_message': + 'Warning: This will permanently delete your company, there is no undo.', + 'enabled_modules': 'Moduli abilitati', + 'converted_quote': 'Preventivo convertito con successo', + 'credit_design': 'Credit Design', + 'includes': 'Includes', + 'header': 'Header', + 'load_design': 'Carica Design', 'css_framework': 'CSS Framework', - 'custom_designs': 'Προσαρμοσμένοι Σχέδια', - 'designs': 'Σχέδια', - 'new_design': 'Νέο σχλεδιο', - 'edit_design': 'Επεξεργασία Σχεδίου', - 'created_design': 'Επιτυχής δημιουργία σχεδιασμού', - 'updated_design': 'Επιτυχής ενημέρωση σχεδιασμού', - 'archived_design': 'Επιτυχής αρχειοθέτηση σχεδιασμού', - 'deleted_design': 'Επιτυχής διαγραφή σχεδιασμού', - 'removed_design': 'Επιτυχής αφαίρεση σχεδιασμού', - 'restored_design': 'Επιτυχής ανάκτηση σχεδιασμού', - 'archived_designs': 'Επιτυχής αρχειοθέτηση :value σχεδίων', - 'deleted_designs': 'Επιτυχής διαγραφή :value σχεδίων', - 'restored_designs': 'Επιτυχής ανάκτηση :value σχεδίων', - 'proposals': 'Προτάσεις', - 'tickets': 'Αιτήματα υποστήριξης', - 'recurring_quotes': 'Επαναλαμβανόμενες Προσφορές', - 'recurring_tasks': 'Επαναλαμβανόμενες Εργασίες', - 'account_management': 'Διαχείριση Λογαριασμού', - 'credit_date': 'Ημ/νία Πίστωσης', - 'credit': 'Πίστωση', - 'credits': 'Πιστώσεις', - 'new_credit': 'Εισάγετε Πίστωση', - 'edit_credit': 'Επεξεργασία Πίστωσης', - 'created_credit': 'Επιτυχής δημιουργία πίστωσης', - 'updated_credit': 'Επιτυχής ενημέρωση πίστωσης', - 'archived_credit': 'Επιτυχής αρχειοθέτηση πίστωσης', - 'deleted_credit': 'Επιτυχής διαγραφή πίστωσης', - 'removed_credit': 'Επιτυχής αφίαρεση πίστωσης', - 'restored_credit': 'Επιτυχής ανάκτηση πίστωσης', - 'archived_credits': 'Επιτυχής αρχειοθέτηση :count πιστώσεων', - 'deleted_credits': 'Επιτυχής διαγραφή :count πιστώσεων', - 'restored_credits': 'Επιτυχής ανάκτηση :value πιστώσεων', - 'current_version': 'Τρέχουσα έκδοση', - 'latest_version': 'Τελευταία Έκδοση', - 'update_now': 'Ενημέρωση Τώρα', - 'a_new_version_is_available': - 'Υπάρχει διαθέσιμη νεότερη έκδοση της εφαρμογής web', - 'update_available': 'Διαθέσιμη ενημέρωση', - 'app_updated': 'Η ενημέρωση οκοκληρώθηκε με επιτυχία', - 'learn_more': 'Μάθετε περισσότερα', - 'integrations': 'Ενσωματώσεις', - 'tracking_id': 'Κωδικός παρακολούθησης', - 'slack_webhook_url': 'Διεύθυνση URL του Webhook για το Slack', - 'credit_footer': 'Υποσέλιδο Πίστωσης', - 'credit_terms': 'Όροι Πίστωσης', - 'new_company': 'Νέα Εταιρεία', - 'added_company': 'Επιτυχής προσθήκη επιχείρησης', - 'company1': 'Προσαρμοσμένη εταιρεία 1', - 'company2': 'Προσαρμοσμένη εταιρεία 2', - 'company3': 'Προσαρμοσμένη εταιρεία 3', - 'company4': 'Προσαρμοσμένη εταιρεία 4', - 'product1': 'Προσαρμοσμένο Προιόν 1', - 'product2': 'Προσαρμοσμένο Προιόν 2', - 'product3': 'Προσαρμοσμένο Προιόν 3', - 'product4': 'Προσαρμοσμένο Προιόν 4', - 'client1': 'Προσαρμοσμένος Πελάτης 1', - 'client2': 'Προσαρμοσμένος Πελάτης 2', - 'client3': 'Προσαρμοσμένος Πελάτης 3', - 'client4': 'Προσαρμοσμένος Πελάτης 4', - 'contact1': 'Προσαρμοσμένη Επαφή 1', - 'contact2': 'Προσαρμοσμένη Επαφή 2', - 'contact3': 'Προσαρμοσμένη Επαφή 3', - 'contact4': 'Προσαρμοσμένη Επαφή 4', - 'task1': 'Προσαρμοσμένη Εργασία 1', - 'task2': 'Προσαρμοσμένη Εργασία 2', - 'task3': 'Προσαρμοσμένη Εργασία 3', - 'task4': 'Προσαρμοσμένη Εργασία 4', - 'project1': 'Προσαρμοσμένο Εργο 1', - 'project2': 'Προσαρμοσμένο Εργο 2', - 'project3': 'Προσαρμοσμένο Εργο 3', - 'project4': 'Προσαρμοσμένο Εργο 4', - 'expense1': 'Προσαρμοσμένες Δαπάνες 1', - 'expense2': 'Προσαρμοσμένες Δαπάνες 2', - 'expense3': 'Προσαρμοσμένες Δαπάνες 3', - 'expense4': 'Προσαρμοσμένες Δαπάνες 4', - 'vendor1': 'Προσαρμοσμένος Προμηθευτής 1', - 'vendor2': 'Προσαρμοσμένος Προμηθευτής 2', - 'vendor3': 'Προσαρμοσμένος Προμηθευτής 3', - 'vendor4': 'Προσαρμοσμένος Προμηθευτής 4', - 'invoice1': 'Προσαρμοσμένο Τιμολόγιο 1', - 'invoice2': 'Προσαρμοσμένο Τιμολόγιο 2', - 'invoice3': 'Προσαρμοσμένο Τιμολόγιο 3', - 'invoice4': 'Προσαρμοσμένο Τιμολόγιο 4', - 'payment1': 'Προσαρμοσμένη Πληρωμή 1', - 'payment2': 'Προσαρμοσμένη Πληρωμή 2', - 'payment3': 'Προσαρμοσμένη Πληρωμή 3', - 'payment4': 'Προσαρμοσμένη Πληρωμή 4', - 'surcharge1': 'Προσαρμοσμένη Προσαύξηση 1', - 'surcharge2': 'Προσαρμοσμένη Προσαύξηση 2', - 'surcharge3': 'Προσαρμοσμένη Προσαύξηση 3', - 'surcharge4': 'Προσαρμοσμένη Προσαύξηση 4', - 'group1': 'Προσαρμοσένη Ομάδα 1', - 'group2': 'Προσαρμοσένη Ομάδα 2', - 'group3': 'Προσαρμοσένη Ομάδα 3', - 'group4': 'Προσαρμοσένη Ομάδα 4', - 'reset': 'Επαναφορά', - 'number': 'Αριθμός', - 'export': 'Εξαγωγή', - 'chart': 'Διάγραμμα', - 'count': 'Μέτρηση', - 'totals': 'Σύνολα', - 'blank': 'Κενό', - 'day': 'Ημέρα', - 'month': 'Μήνας', - 'year': 'Έτος', - 'subgroup': 'Υποομάδα', - 'is_active': 'Είναι ενεργό', - 'group_by': 'Ομαδοποίηση με', - 'credit_balance': 'Υπόλοιπο Πίστωσης', - 'contact_last_login': 'Τελευταία είσοδος επαφής', - 'contact_full_name': 'Πλήρες ονοματεπώνυμο επαφής', - 'contact_phone': 'Τηλέφωνο Επικοινωνίας', - 'contact_custom_value1': 'Προσαρμοσμένη Τιμή Επαφής 1', - 'contact_custom_value2': 'Προσαρμοσμένη Τιμή Επαφής 2', - 'contact_custom_value3': 'Προσαρμοσμένη Τιμή Επαφής 3', - 'contact_custom_value4': 'Προσαρμοσμένη Τιμή Επαφής 4', - 'shipping_address1': 'Οδός Αποστολής', - 'shipping_address2': 'Διαμέρισμα Αποστολής', - 'shipping_city': 'Πόλη Αποστολής', - 'shipping_state': 'Περιφέρεια Αποστολής', - 'shipping_postal_code': 'Ταχυδρομικός Κώδικας Αποστολής', - 'shipping_country': 'Χώρα Αποστολής', - 'billing_address1': 'Οδός Χρέωσης', - 'billing_address2': 'Διαμέρισμα Χρέωσης', - 'billing_city': 'Πόλη Χρέωσης', - 'billing_state': 'Περιφέρεια Χρέωσης', - 'billing_postal_code': 'Ταχυδρομικός Κωδικός Χρέωσης', - 'billing_country': 'Χώρα Χρέωσης', - 'client_id': 'Id Πελάτη', - 'assigned_to': 'Ανατέθηκε σε', - 'created_by': 'Δημιουργήθηκε από :name', - 'assigned_to_id': 'Ορίστηκε σε Id', - 'created_by_id': 'Δημιουργήθηκε απο Id', - 'add_column': 'Προσθήκη στήλης', - 'edit_columns': 'Επεξεργασία στηλών', - 'columns': 'Στήλες', - 'aging': 'Γήρανση', - 'profit_and_loss': 'Κέρδος και Ζημιά', - 'reports': 'Αναφορές', - 'report': 'Αναφορά', - 'add_company': 'Προσθήκη Εταιρείας', - 'unpaid_invoice': 'Μη Εξοφλημένο Τιμολόγιο', - 'paid_invoice': 'Εξοφλημένο Τιμολόγιο', - 'unapproved_quote': 'Μη Εγκεκριμένη Προσφορά', - 'help': 'Βοήθεια', - 'refund': 'Επιστροφή χρημάτων', - 'refund_date': 'Ημερομηνία επιστροφής χρημάτων', - 'filtered_by': 'Φιλτράρισμα με', - 'contact_email': 'Email Επικοινωνίας', - 'multiselect': 'Πολλαπλή επιλογή', - 'entity_state': 'Κατάσταση', - 'verify_password': 'Επαλήθευση Κωδικού', - 'applied': 'Εγινε εφαρμογή', - 'include_recent_errors': - 'Συμπερίληψη πρόσφατων σφαλμάτων απο αρχεία καταγραφής', + 'custom_designs': 'Custom Designs', + 'designs': 'Stili', + 'new_design': 'New Design', + 'edit_design': 'Edit Design', + 'created_design': 'Successfully created design', + 'updated_design': 'Successfully updated design', + 'archived_design': 'Successfully archived design', + 'deleted_design': 'Successfully deleted design', + 'removed_design': 'Successfully removed design', + 'restored_design': 'Successfully restored design', + 'archived_designs': 'Successfully archived :value designs', + 'deleted_designs': 'Successfully deleted :value designs', + 'restored_designs': 'Successfully restored :value designs', + 'proposals': 'Proposte', + 'tickets': 'Tickets', + 'recurring_quotes': 'Preventivi Ricorrenti', + 'recurring_tasks': 'Attività ricorrenti', + 'account_management': 'Gestione Account', + 'credit_date': 'Data Credito', + 'credit': 'Credito', + 'credits': 'Crediti', + 'new_credit': 'Inserisci il credito', + 'edit_credit': 'Modifica Credito', + 'created_credit': 'Credito creato con successo', + 'updated_credit': 'Credito aggiornato con successo', + 'archived_credit': 'Credito archiviato con successo', + 'deleted_credit': 'Credito eliminato con successo', + 'removed_credit': 'Successfully removed credit', + 'restored_credit': 'Credito ripristinato con successo', + 'archived_credits': ':count crediti archiviati con successo', + 'deleted_credits': ':count crediti eliminati con successo', + 'restored_credits': 'Successfully restored :value credits', + 'current_version': 'Versione attuale', + 'latest_version': 'Latest Version', + 'update_now': 'Aggiorna ora', + 'a_new_version_is_available': 'A new version of the web app is available', + 'update_available': 'Aggiornamento disponibile', + 'app_updated': 'Aggiornamento completato con successo', + 'learn_more': 'Scopri di più', + 'integrations': 'Integrazioni', + 'tracking_id': 'Id di tracciamento', + 'slack_webhook_url': 'Slack Webhook URL', + 'credit_footer': 'Piè di pagina Credito', + 'credit_terms': 'Termini del Credito', + 'new_company': 'Nuova azienda', + 'added_company': 'Azienda aggiunta con successo', + 'company1': 'Azienda Personalizzata 1', + 'company2': 'Azienda Personalizzata 2', + 'company3': 'Azienda Personalizzata 3', + 'company4': 'Azienda Personalizzata 4', + 'product1': 'Prodotto personalizzato 1', + 'product2': 'Prodotto personalizzato 2', + 'product3': 'Prodotto personalizzato 3', + 'product4': 'Prodotto personalizzato 4', + 'client1': 'Custom Client 1', + 'client2': 'Custom Client 2', + 'client3': 'Custom Client 3', + 'client4': 'Custom Client 4', + 'contact1': 'Contatto personalizzato 1', + 'contact2': 'Contatto personalizzato 2', + 'contact3': 'Contatto personalizzato 3', + 'contact4': 'Contatto personalizzato 4', + 'task1': 'Attività personalizzata 1', + 'task2': 'Attività personalizzata 2', + 'task3': 'Attività personalizzata 3', + 'task4': 'Attività personalizzata 4', + 'project1': 'Custom Project 1', + 'project2': 'Custom Project 2', + 'project3': 'Custom Project 3', + 'project4': 'Custom Project 4', + 'expense1': 'Spesa personalizzata 1', + 'expense2': 'Spesa personalizzata 2', + 'expense3': 'Spesa personalizzata 3', + 'expense4': 'Spesa personalizzata 4', + 'vendor1': 'Fornitore Personalizzato 1', + 'vendor2': 'Fornitore Personalizzato 2', + 'vendor3': 'Fornitore Personalizzato 3', + 'vendor4': 'Fornitore Personalizzato 4', + 'invoice1': 'Fattura Personalizzata 1', + 'invoice2': 'Fattura Personalizzata 2', + 'invoice3': 'Fattura Personalizzata 3', + 'invoice4': 'Fattura Personalizzata 4', + 'payment1': 'Pagamento personalizzato 1', + 'payment2': 'Pagamento personalizzato 2', + 'payment3': 'Pagamento personalizzato 3', + 'payment4': 'Pagamento personalizzato 4', + 'surcharge1': 'Imposta personalizzata 1', + 'surcharge2': 'Imposta personalizzata 2', + 'surcharge3': 'Imposta personalizzata 3', + 'surcharge4': 'Imposta personalizzata 4', + 'group1': 'Custom Group 1', + 'group2': 'Custom Group 2', + 'group3': 'Custom Group 3', + 'group4': 'Custom Group 4', + 'reset': 'Reset', + 'number': 'Numero', + 'export': 'Esporta', + 'chart': 'Grafico', + 'count': 'Count', + 'totals': 'Totali', + 'blank': 'Vuoto', + 'day': 'GIorno', + 'month': 'Mese', + 'year': 'Anno', + 'subgroup': 'Sottogruppo', + 'is_active': 'È attivo', + 'group_by': 'Raggruppa per', + 'credit_balance': 'Saldo Credito', + 'contact_last_login': 'Contact Last Login', + 'contact_full_name': 'Nome completo contatto', + 'contact_phone': 'Telefono Contatto', + 'contact_custom_value1': 'Valore personalizzato contatto 1', + 'contact_custom_value2': 'Valore personalizzato contatto 2', + 'contact_custom_value3': 'Valore personalizzato contatto 3', + 'contact_custom_value4': 'Valore personalizzato contatto 4', + 'shipping_address1': 'Via di spedizione', + 'shipping_address2': 'Piano/Appartamento di spedizione', + 'shipping_city': 'Città di spedizione', + 'shipping_state': 'Provincia di spedizione', + 'shipping_postal_code': 'Codice Postale di spedizione', + 'shipping_country': 'Paese di spedizione', + 'billing_address1': 'Via di fatturazione', + 'billing_address2': 'App/scala di fatturazione', + 'billing_city': 'Città di fatturazione', + 'billing_state': 'Stato/Provincia di fatturazione', + 'billing_postal_code': 'Codice postale di fatturazione', + 'billing_country': 'Paese fatturazione', + 'client_id': 'Id Cliente', + 'assigned_to': 'Assegnato a', + 'created_by': 'Creato da :name', + 'assigned_to_id': 'Assegnato all\'ID', + 'created_by_id': 'Creato dall\'ID', + 'add_column': 'Aggiungi Colonna', + 'edit_columns': 'Modifica Colonne', + 'columns': 'Colonne', + 'aging': 'Aging', + 'profit_and_loss': 'Utile e Perdite', + 'reports': 'Rapporti', + 'report': 'Report', + 'add_company': 'Aggiungi azienda', + 'unpaid_invoice': 'Fattura non pagata', + 'paid_invoice': 'Fattura pagata', + 'unapproved_quote': 'Preventivi non approvati', + 'help': 'Aiuto', + 'refund': 'Rimborso', + 'refund_date': 'Data di rimborso', + 'filtered_by': 'Filtrato per', + 'contact_email': 'Email di contatto', + 'multiselect': 'Multi-selezione', + 'entity_state': 'Stato', + 'verify_password': 'Verifica Password', + 'applied': 'Applicato', + 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'Εχουμε λάβει το μήνυμά σας και θα σας απαντήσουμε σύντομα.', - 'message': 'Μήνυμα', - 'from': 'Από', - 'show_product_details': 'Εμφάνιση Λεπτομερειών Προιόντος', + 'We have received your message and will try to respond promptly.', + 'message': 'Messaggio', + 'from': 'Da', + 'show_product_details': 'Mostra i dettagli del prodotto', 'show_product_details_help': - 'Συμπερίληψη της περιγραφής και κόστους τιμής στη λίστα προιόντος', - 'pdf_min_requirements': 'Ο κωδικοποιητής PDF απαιτεί :version', - 'adjust_fee_percent': 'Προσαρμογή του ποσοστού του τέλους', - 'adjust_fee_percent_help': - 'Τροποποίηση του ποσοστού του λογαριασμού για τέλος', - 'configure_settings': 'Προσαρμογή Ρυθμίσεων', - 'support_forum': 'φόρουμ υποστήριξης', - 'about': 'Περί', - 'documentation': 'Τεκμηρίωση', - 'contact_us': 'Επικοινωνήστε μαζί μας', - 'subtotal': 'Μερικό Σύνολο', - 'line_total': 'Αξία', - 'item': 'Προϊόν', - 'credit_email': 'Πιστωτικό μήνυμα ηλεκτρονικού ταχυδρομείου', - 'iframe_url': 'Ιστοσελίδα', - 'domain_url': 'Σύνδεσμος URL', - 'password_is_too_short': 'Ο κωδικός πρόσβασης είναι πολύ μικρός', + 'Includi la descrizione ed il costo nel menu a tendina del prodotto', + 'pdf_min_requirements': 'Il generatore di PDF richiede :version', + 'adjust_fee_percent': 'Modifica la percentuale di Tassa', + 'adjust_fee_percent_help': 'Adjust percent to account for fee', + 'configure_settings': 'Configura Impostazioni', + 'support_forum': 'Forum di supporto', + 'about': 'Info', + 'documentation': 'Documentazione', + 'contact_us': 'Contattaci', + 'subtotal': 'Subtotale', + 'line_total': 'Totale riga', + 'item': 'Articolo', + 'credit_email': 'Email credito', + 'iframe_url': 'Website', + 'domain_url': 'URL dominio', + 'password_is_too_short': 'La password è troppo corta', 'password_is_too_easy': - 'Ο κωδικός πρόσβασης πρέπει να περιέχει ένα κεφαλαίο χαρακτήρα και έναν αριθμό', - 'client_portal_tasks': 'Εργασίες πύλης πελάτη', - 'client_portal_dashboard': 'Πίνακας ελέγχου πύλης πελατών', - 'please_enter_a_value': 'Παρακαλούμε ορίστε μια τιμή', - 'deleted_logo': 'Επιτυχής διαγραφή λογότυπου', - 'yes': 'Ναι', - 'no': 'Όχι', - 'generate_number': 'Δημιουργία Αριθμού', - 'when_saved': 'Οταν αποθηκευτεί', - 'when_sent': 'Οταν αποσταλλεί', - 'select_company': 'Επιλέξτε Εταιρεία', - 'float': 'Float', - 'collapse': 'Συρρίκνωση', - 'show_or_hide': 'Εμφάνιση/απόκρυψη', - 'menu_sidebar': 'Πλευρικό Μενού', - 'history_sidebar': 'Μενού Πλευρικού Ιστορικού', - 'tablet': 'Τάμπλετ', - 'mobile': 'Κινητό', - 'desktop': 'Σταθερός υπολογιστής', - 'layout': 'Εμφάνιση', - 'view': 'Προβολή', - 'module': 'Ενότητα', - 'first_custom': 'Πρώτη Προσαρμογή', - 'second_custom': 'Δεύτερη Προσαρμογή', - 'third_custom': 'Τρίτη Προσαρμογή', - 'show_cost': 'Εμφάνιση Κόστους', - 'show_product_cost': 'Εμφάνιση Κόστους Προιόντος', + 'La password deve contenere una maiuscola ed un numero', + 'client_portal_tasks': 'Attività del portale clienti', + 'client_portal_dashboard': 'Pannello di Controllo Portale Clienti', + 'please_enter_a_value': 'Per favore inserisci un valore', + 'deleted_logo': 'Logo eliminato con successo', + 'yes': 'Si', + 'no': 'No', + 'generate_number': 'Genera numero', + 'when_saved': 'Quando salvato', + 'when_sent': 'Quando inviato', + 'select_company': 'Seleziona azienda', + 'float': 'Float', + 'collapse': 'Collapse', + 'show_or_hide': 'Mostra/nascondi', + 'menu_sidebar': 'Barra laterale del menu', + 'history_sidebar': 'Barra laterale dello storico', + 'tablet': 'Tablet', + 'mobile': 'Mobile', + 'desktop': 'Desktop', + 'layout': 'Layout', + 'view': 'Vedi', + 'module': 'Modulo', + 'first_custom': 'Spazio Personalizzato 1', + 'second_custom': 'Spazio Personalizzato 2', + 'third_custom': 'Spazio Personalizzato 3', + 'show_cost': 'Mostra Costo', + 'show_product_cost': 'Mostra costo prodotto', 'show_cost_help': - 'Εμφάνιση του πεδίου κόστους προϊόντος για να είναι δυνατή η εύρεση του κέρδους', - 'show_product_quantity': 'Εμφάνισε την Ποσότητα Προϊόντος', + 'Mostra un campo costo prodotto per tracciare il markup/profitto', + 'show_product_quantity': 'Mostra quantità prodotto', 'show_product_quantity_help': - 'Εμφάνιση του πεδίου ποσότητας προϊόντος, αλλιώς ορισμός σε ένα', - 'show_invoice_quantity': 'Εμφάνισε την Ποσότητα Τιμολογίου', + 'Mostra un campo quantità prodotto, altrimenti imposta di default a 1', + 'show_invoice_quantity': 'Mostra quantità fattura', 'show_invoice_quantity_help': - 'Εμφάνιση του πεδίου ποσότητας γραμμής, αλλιώς ορισμός σε ένα', - 'show_product_discount': 'Εμφάνιση Έκπτωσης Προιόντος', - 'show_product_discount_help': 'Εμφάνιση έκπτωσης του πεδίου γραμμής', - 'default_quantity': 'Προεπιλεγμένη Ποσότητα', - 'default_quantity_help': 'Αυτόματος ορισμός της ποσότητας γραμμής σε ένα', - 'one_tax_rate': 'Ένα Ποσοστό Φόρου', - 'two_tax_rates': 'Δύο Ποσοστά Φόρων', - 'three_tax_rates': 'Τρία Ποσοστά Φόρων', - 'default_tax_rate': 'Προεπιλεγμένο Ποσοστό Φόρου', - 'user': 'Χρήστης', - 'invoice_tax': 'Φόρος Τιμολογίου', - 'line_item_tax': 'Ποσοστό Φόρου Γραμμής', - 'inclusive_taxes': 'Συμπεριλαμβανόμενοι Φόροι', - 'invoice_tax_rates': 'Φόροι Τιμολογίου', - 'item_tax_rates': 'Ποσοστά Φόρων Προϊόντος', - 'no_client_selected': 'Παρακαλώ επιλέξτε πελάτη', - 'configure_rates': 'Προσαρμογή ποσοστών', - 'configure_gateways': 'Παραμετροποίηση Πυλών Πληρωμών (Gateways)', - 'tax_settings': 'Ρυθμίσεις Φόρων', - 'tax_settings_rates': 'Ποσοστά Φόρων', - 'accent_color': 'Χρώμα Τονισμού', - 'switch': 'Εναλλαγή', - 'comma_sparated_list': 'Λίστα διαχωριζόμενη με κόμματα', - 'options': 'Επιλογές', - 'single_line_text': 'Κείμενο μονής γραμμής', - 'multi_line_text': 'Κείμενο πολλαπλών γραμμών', - 'dropdown': 'Πτυσώμενο', - 'field_type': 'Τύπος Πεδίου', + 'Mostra un campo per la quantità degli articoli sulla riga, altrimenti imposta a uno', + 'show_product_discount': 'Mostra sconto prodotto', + 'show_product_discount_help': + 'Mostra un campo sconto articolo sulla riga', + 'default_quantity': 'Quantità predefinita', + 'default_quantity_help': + 'Imposta automaticamente la quantità dell\'elemento nella riga ad uno', + 'one_tax_rate': 'Una aliquota', + 'two_tax_rates': 'Due aliquote', + 'three_tax_rates': 'Tre aliquote', + 'default_tax_rate': 'Aliquota predefinita', + 'user': 'Utente', + 'invoice_tax': 'Tassa fattura', + 'line_item_tax': 'Riga imposta articolo', + 'inclusive_taxes': 'Tasse inclusive', + 'invoice_tax_rates': 'Aliquote della fattura', + 'item_tax_rates': 'Tassi d\'imposta articolo', + 'no_client_selected': 'Per favore seleziona un cliente', + 'configure_rates': 'Configura aliquote', + 'configure_gateways': 'Configura i gateway', + 'tax_settings': 'Impostazioni tasse', + 'tax_settings_rates': 'Aliquote Fiscali', + 'accent_color': 'Accent Color', + 'switch': 'Cambia', + 'comma_sparated_list': 'Lista separata da virgole', + 'options': 'Opzioni', + 'single_line_text': 'Testo a riga singola', + 'multi_line_text': 'Testo multi-riga', + 'dropdown': 'Menu a discesa', + 'field_type': 'Tipo di campo', 'recover_password_email_sent': - 'Ένα email ανάκτησης κωδικού έχει αποσταλεί', - 'submit': 'Υποβολή', - 'recover_password': 'Ανάκτηση του κωδικού πρόσβασής σας', - 'late_fees': 'Καθυστερούμενα Τέλη', - 'credit_number': 'Αριθμός Πίστωσης', - 'payment_number': 'Αριθμός Πληρωμής', - 'late_fee_amount': 'Ποσό Τέλους Καθυστερημένης Εξόφλησης', - 'late_fee_percent': 'Ποσοστό Τέλους Καθυστερημένης Εξόφλησης', - 'schedule': 'Προγραμμάτισε', - 'before_due_date': 'Πριν την ημερομηνία πληρωμής', - 'after_due_date': 'Μετά την ημερομηνία πληρωμής', - 'after_invoice_date': 'Μετά την ημερομηνία τιμολογίου', - 'days': 'Ημέρες', - 'invoice_email': 'Email Τιμολογίων', - 'payment_email': 'Email Πληρωμών', - 'partial_payment': 'Μερική Πληρωμή', - 'payment_partial': 'Μερική Πληρωμή', - 'partial_payment_email': 'Email Μερικής Πληρωμής', - 'quote_email': 'Email Προσφορών', - 'endless_reminder': 'Συνεχής Υπενθύμιση', - 'filtered_by_user': 'Φιλτράρισμα από το Χρήστη', - 'administrator': 'Διαχειριστής', + 'Una mail di recupero password è stata inviata', + 'submit': 'Invia', + 'recover_password': 'Recupera password', + 'late_fees': 'Late Fees', + 'credit_number': 'Numero Credito', + 'payment_number': 'Numero di pagamento', + 'late_fee_amount': 'Late Fee Amount', + 'late_fee_percent': 'Late Fee Percent', + 'schedule': 'Schedule', + 'before_due_date': 'Prima della data di scadenza', + 'after_due_date': 'After the due date', + 'after_invoice_date': 'Dopo la data della fattura', + 'days': 'Giorni', + 'invoice_email': 'Email Fattura', + 'payment_email': 'Email Pagamento', + 'partial_payment': 'Pagamento parziale', + 'payment_partial': 'Pagamento parziale', + 'partial_payment_email': 'Email di pagamento parziale', + 'quote_email': 'Email Preventivo', + 'endless_reminder': 'Promemoria senza scadenza', + 'filtered_by_user': 'Filtrato per utente', + 'administrator': 'Administrator', 'administrator_help': - 'Επιτρέψτε στο χρήστη να διαχειρίζεται χρήστες, να αλλάζει ρυθμίσεις και να τροποποιεί όλες τις εγγραφές', - 'user_management': 'Διαχειριση Χρηστών', - 'users': 'Χρήστες', - 'new_user': 'Νέος Χρήστης', - 'edit_user': 'Επεξεργασία Χρήστη', - 'created_user': 'Επιτυχής δημιουργία χρήστη', - 'updated_user': 'Επιτυχής ενημέρωση χρήστη', - 'archived_user': 'Επιτυχής αρχειοθέτηση χρήστη', - 'deleted_user': 'Επιτυχής διαγραφή χρήστη', - 'removed_user': 'Επιτυχής αφαίρεση χρήστη', - 'restored_user': 'Επιτυχής ανάκτηση χρήστη', - 'archived_users': 'Επιτυχής αρχειοθέτηση :value χρηστών', - 'deleted_users': 'Επιτυχής διαγραφή :value χρηστών', - 'removed_users': 'Επιτυχής αφαίρεση :value χρηστών', - 'restored_users': 'Επιτυχής ανάκτηση :value χρηστών', - 'general_settings': 'Γενικές Ρυθμίσεις', - 'invoice_options': 'Επιλογές Τιμολογίου', - 'hide_paid_to_date': 'Απόκρυψη Εξοφλημένου Ποσού', + 'Permettere all\'utente di gestire gli utenti, cambiare le impostazioni e modificare tutti i record', + 'user_management': 'Gestione utente', + 'users': 'Utenti', + 'new_user': 'Nuovo utente', + 'edit_user': 'Modifca utente', + 'created_user': 'Utente creato con successo', + 'updated_user': 'Utente aggiornato con successo', + 'archived_user': 'Utente archiviato con successo', + 'deleted_user': 'Utente eliminato con successo', + 'removed_user': 'Utente rimosso con successo', + 'restored_user': 'Utente ripristinato con successo', + 'archived_users': 'Archiviati con successo :value utenti', + 'deleted_users': 'Cancellati con successo :value utenti', + 'removed_users': 'Rimossi con successo :value utenti', + 'restored_users': 'Ripristinati con successo :value utenti', + 'general_settings': 'Impostazioni generali', + 'invoice_options': 'Opzioni Fattura', + 'hide_paid_to_date': 'Nascondi la data di pagamento', 'hide_paid_to_date_help': - 'Εμφάνιση πεδίου \"Εξοφλημένο Ποσό\" μόνο στο παραστατικό όταν ληφθεί μια πληρωμή.', - 'invoice_embed_documents': 'Ενσωματωμένα Έγγραφα', - 'invoice_embed_documents_help': - 'Συμπεριλάβετε τις συνημμένες εικόνες στο τιμολόγιο', - 'all_pages_header': 'Εμφάνιση Κεφαλίδας', - 'all_pages_footer': 'Εμφάνιση Υποσέλιδου', - 'first_page': 'Πρώτη σελίδα', - 'all_pages': 'Προσθήκη Σελίδας', - 'last_page': 'Τελευταία σελίδα', - 'primary_font': 'Κύρια Γραμματοσειρά', - 'secondary_font': 'Δευτερεύουσα Γραμματοσειρά', - 'primary_color': 'Κύριο Χρώμα', - 'secondary_color': 'Δευτερεύον Χρώμα', - 'page_size': 'Μέγεθος Σελίδας', - 'font_size': 'Μέγεθος Γραμμάτων', - 'quote_design': 'Σχεδιασμός Προσφοράς', - 'invoice_fields': 'Πεδία Τιμολογίου', - 'product_fields': 'Πεδία Προϊόντος', - 'invoice_terms': 'Όροι Τιμολογίου', - 'invoice_footer': 'Υποσέλιδο Τιμολογίου', - 'quote_terms': 'Όροι Προσφοράς', - 'quote_footer': 'Υποσέλιδο Προσφοράς', - 'auto_email_invoice': 'Αυτόματο Email', + 'Visualizza l\'area \"Pagato alla data\" sulle fatture solo dopo aver ricevuto un pagamento.', + 'invoice_embed_documents': 'Embed Documents', + 'invoice_embed_documents_help': 'Includi immagini allegate alla fattura.', + 'all_pages_header': 'Mostra l\'Intestazione su', + 'all_pages_footer': 'Visualizza Piè di Pagina su', + 'first_page': 'Prima pagina', + 'all_pages': 'Tutte le pagine', + 'last_page': 'Ultima pagina', + 'primary_font': 'Font primario', + 'secondary_font': 'Font secondario', + 'primary_color': 'Colore primario', + 'secondary_color': 'Colore secondario', + 'page_size': 'Dimensione Pagina', + 'font_size': 'Dimensione Font', + 'quote_design': 'Stile Preventivo', + 'invoice_fields': 'Campi Fattura', + 'product_fields': 'Campi Prodotto', + 'invoice_terms': 'Termini della fattura', + 'invoice_footer': 'Piè di Pagina Fattura', + 'quote_terms': 'Termini del preventivo', + 'quote_footer': 'Piè di Pagina Preventivi', + 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Αυτόματη αποστολή επαναλαμβανόμενων τιμολογίων με email όταν δημιουργηθούν.', - 'auto_archive_invoice': 'Αυτόματη Αρχειοθέτηση', + 'Invia automaticamente per email le fatture ricorrenti quando vengono create.', + 'auto_archive_invoice': 'Auto Archiviazione', 'auto_archive_invoice_help': - 'Αυτόματη αρχειοθέτηση τιμολογίων όταν εξοφληθούν.', - 'auto_archive_quote': 'Αυτόματη Αρχειοθέτηση', + 'Archivia automaticamente le fatture quando vengono pagate.', + 'auto_archive_quote': 'Auto Archiviazione', 'auto_archive_quote_help': - 'Αυτόματη αρχειοθέτηση προσφορών όταν μετατραπούν.', - 'auto_convert_quote': 'Αυτόματη Μετατροπή', + 'Archivia automaticamente i preventivi quando vengono convertiti.', + 'auto_convert_quote': 'Conversione automatica', 'auto_convert_quote_help': - 'Αυτόματη μετατροπή της προσφοράς σε τιμολόγιο μόλις γίνει αποδεκτή από τον πελάτη.', - 'workflow_settings': 'Ρυθμίσεις Ροής Εργασιών', - 'freq_daily': 'Ημερήσιο', - 'freq_weekly': 'Εβδομάδα', - 'freq_two_weeks': 'Δύο εβδομάδες', - 'freq_four_weeks': 'Τέσσερις εβδομάδες', - 'freq_monthly': 'Μήνας', - 'freq_two_months': 'Δύο μήνες', - 'freq_three_months': 'Τρεις μήνες', - 'freq_four_months': 'Τέσσερις μήνες', - 'freq_six_months': 'Έξι μήνες', - 'freq_annually': 'Έτος', - 'freq_two_years': 'Δύο χρόνια', - 'freq_three_years': 'Τρία Χρόνια', - 'never': 'Ποτέ', - 'company': 'Εταιρεία', - 'generated_numbers': 'Δημιουργημένοι Αριθμοί', - 'charge_taxes': 'Χρέωση φόρων', - 'next_reset': 'Επόμενη επανεκκίνηση', - 'reset_counter': 'Επανεκκίνηση Μετρητή', - 'recurring_prefix': 'Επαναλαμβανόμενο Πρόθεμα', - 'number_padding': 'Περιθώριο Αρίθμησης', - 'general': 'Γενικός', - 'surcharge_field': 'Πεδίο Επιβάρυνσης', - 'company_field': 'Πεδίο Εταιρείας', - 'company_value': 'Αξία Εταιρίας', - 'credit_field': 'Πεδίο Πίστωσης', - 'invoice_field': 'Πεδίο Τιμολογίου', - 'invoice_surcharge': 'Επιβάρυνση Τιμολογίου', - 'client_field': 'Πεδίο Πελάτη', - 'product_field': 'Πεδίο Προϊόντος', - 'payment_field': 'Πεδίο Πληρωμής', - 'contact_field': 'Πεδίο Επαφής', - 'vendor_field': 'Πεδίο Προμηθευτή', - 'expense_field': 'Πεδίο Δαπάνης', - 'project_field': 'Πεδίο Project', - 'task_field': 'Πεδίο Εργασίας', - 'group_field': 'Πεδίο Γκρουπ', - 'number_counter': 'Μετρητής Αρίθμησης', - 'prefix': 'Πρόθεμα', - 'number_pattern': 'Μοτίβο Αρίθμησης', - 'messages': 'Μηνύματα', - 'custom_css': 'Προσαρμοσμένο CSS', - 'custom_javascript': 'Προσαρμοσμένη JavaScript', - 'signature_on_pdf': 'Εμφάνισε στο PDF', + 'Converti automaticamente un preventivo in una fattura se approvato da un cliente.', + 'workflow_settings': 'Impostazioni Flusso di Lavoro', + 'freq_daily': 'Giornaliero', + 'freq_weekly': 'Settimanale', + 'freq_two_weeks': 'Due settimane', + 'freq_four_weeks': 'Quattro settimane', + 'freq_monthly': 'Mensile', + 'freq_two_months': 'Due mesi', + 'freq_three_months': 'Tre Mesi', + 'freq_four_months': 'Quattro mesi', + 'freq_six_months': 'Sei Mesi', + 'freq_annually': 'Annuale', + 'freq_two_years': 'Due anni', + 'freq_three_years': 'Tre anni', + 'never': 'Never', + 'company': 'Azienda', + 'generated_numbers': 'Generazione Numeri', + 'charge_taxes': 'Applica Tasse', + 'next_reset': 'Prossimo reset', + 'reset_counter': 'Resetta contatori', + 'recurring_prefix': 'Prefisso Ricorrente', + 'number_padding': 'Riempimento numero', + 'general': 'Generale', + 'surcharge_field': 'Campo Sovrattassa', + 'company_field': 'Campo azienda', + 'company_value': 'Valore azienda', + 'credit_field': 'Campo Credito', + 'invoice_field': 'Campo fattura', + 'invoice_surcharge': 'Sovrapprezzo Fattura', + 'client_field': 'Campo Cliente', + 'product_field': 'Campo Prodotto', + 'payment_field': 'Campo Pagamento', + 'contact_field': 'Campo Contatti', + 'vendor_field': 'Campo Fornitore', + 'expense_field': 'Campo Spese', + 'project_field': 'Campo Progetto', + 'task_field': 'Campo attività', + 'group_field': 'Campo Gruppo', + 'number_counter': 'Numero contatore', + 'prefix': 'Prefisso', + 'number_pattern': 'Formato numero', + 'messages': 'Messaggi', + 'custom_css': 'CSS Personalizzato', + 'custom_javascript': 'Javascript personalizzato', + 'signature_on_pdf': 'Mostra su PDF', 'signature_on_pdf_help': - 'Εμφάνισε την υπογραφή του πελάτη στο PDF του τιμολογίου/προσφοράς.', - 'show_accept_invoice_terms': 'Κουτάκι Όρων Τιμολογίου', + 'Mostra la firma del cliente sul PDF della fattura/preventivo.', + 'show_accept_invoice_terms': + 'Casella di controllo termini di servizio fatture', 'show_accept_invoice_terms_help': - 'Απαίτηση από τον πελάτη να αποδεχθεί τους όρους του τιμολογίου', - 'show_accept_quote_terms': 'Κουτάκι Όρων Προσφοράς', + 'Rendi obbligatoria l\'accettazione dei termini della fattura.', + 'show_accept_quote_terms': + 'Casella di controllo termini di servizio preventivi', 'show_accept_quote_terms_help': - 'Απαίτηση από τον πελάτη να αποδεχθεί τους όρους της προσφοράς', - 'require_invoice_signature': 'Υπογραφή Τιμολογίου', + 'Rendi obbligatoria l\'accettazione dei termini del preventivo.', + 'require_invoice_signature': 'Firma Fattura', 'require_invoice_signature_help': - 'Απαίτηση από τον πελάτη να συμπληρώσει την υπογραφή του.', - 'require_quote_signature': 'Υπογραφή Προσφοράς', - 'enable_portal_password': 'Προστασία Τιμολογίων με Κωδικό Πρόσβασης', + 'Richiedi al cliente di firmare la fattura.', + 'require_quote_signature': 'Firma Bozza', + 'enable_portal_password': 'Fatture Protette da Password', 'enable_portal_password_help': - 'Επιτρέπει τον καθορισμό κωδικού πρόσβασης για κάθε επαφή. Αν έχει καθοριστεί κωδικός, η επαφή θα υποχρεούται να καταχωρήσει κωδικό πριν την προβολή των τιμολογίων.', - 'authorization': 'Εξουσιοδότηση', - 'subdomain': 'Υποτομέας', - 'domain': 'Domain', - 'portal_mode': 'Περιβάλλον Portal', - 'email_signature': 'Με εκτίμηση,', + 'Permette di impostare una password per ogni contatto. Se una password è impostata, al contatto sarà richiesto di inserire una password prima di visualizzare le fatture.', + 'authorization': 'Autorizzazione', + 'subdomain': 'Sottodominio', + 'domain': 'Dominio', + 'portal_mode': 'Modalità portale', + 'email_signature': 'Distinti saluti,', 'enable_email_markup_help': - 'Κάντε τη διαδικασία πληρωμής πιο εύκολη για τους πελάτες σας προσθέτοντας σήμανση από το schema.org στα emails σας.', - 'plain': 'Απλό', - 'light': 'Ανοιχτό', - 'dark': 'Σκούρο', - 'email_design': 'Σχεδίαση Email', - 'attach_pdf': 'Επισύναψε PDF', - 'attach_documents': 'Επισύναψη Εγγράφων', - 'attach_ubl': 'Επισύναψη UBL', - 'email_style': 'Στυλ Email', - 'enable_email_markup': 'Ενεργοποίηση Σημανσης', - 'reply_to_email': 'Email Απάντησης', + 'Rendi più facile per i tuoi clienti pagarti aggiungendo il markup schema.org alle tue e-mail.', + 'plain': 'Semplice', + 'light': 'Light', + 'dark': 'Dark', + 'email_design': 'Email Design', + 'attach_pdf': 'Allega PDF', + 'attach_documents': 'Allega documenti', + 'attach_ubl': 'Allega UBL', + 'email_style': 'Stile Email', + 'enable_email_markup': 'Enable Markup', + 'reply_to_email': 'Indirizzo di Risposta mail', 'reply_to_name': 'Reply-To Name', - 'bcc_email': 'Email ιδιαίτερης κοινοποίησης', - 'processed': 'Επεξεργάσθηκε', - 'credit_card': 'Πιστωτική Κάρτα', - 'bank_transfer': 'Τραπεζικό Έμβασμα', - 'priority': 'Προτεραιότητα', - 'fee_amount': 'Ποσό Τέλους', - 'fee_percent': 'Ποσοστό Τέλους', - 'fee_cap': 'Ανώτατο Όριο Τέλους', - 'limits_and_fees': 'Όρια/Τέλη', - 'enable_min': 'Ενεργοποίηση ελάχιστου', - 'enable_max': 'Ενεργοποίηση μέγιστου', - 'min_limit': 'Ελάχιστο: :min', - 'max_limit': 'Μέγιστο: :max', - 'min': 'Ελάχιστο', - 'max': 'Μέγιστο', - 'accepted_card_logos': 'Λογότυπα Αποδεκτών Καρτών', - 'credentials': 'Στοιχεία εισόδου', - 'update_address': 'Ενημέρωση Διεύθυνσης', + 'bcc_email': 'BCC Email', + 'processed': 'Processato', + 'credit_card': 'Carta di Credito', + 'bank_transfer': 'Bonifico Bancario', + 'priority': 'Priorità', + 'fee_amount': 'Importo della tassa', + 'fee_percent': 'Tassa Percentuale', + 'fee_cap': 'Tassa massima', + 'limits_and_fees': 'Limits/Fees', + 'enable_min': 'Attiva minimo', + 'enable_max': 'Attiva massimo', + 'min_limit': 'Minimo :min', + 'max_limit': 'Massimo :max', + 'min': 'Min', + 'max': 'ax', + 'accepted_card_logos': 'Loghi carte accettate', + 'credentials': 'Credenziali', + 'update_address': 'Aggiorna indirizzo', 'update_address_help': - 'Ενημέρωση της διεύθυνσης του πελάτη με τα παρεχόμενα στοιχεία', - 'rate': 'Ποσοστό', - 'tax_rate': 'Ποσοστό Φόρου', - 'new_tax_rate': 'Νέο Ποσοστό Φόρου', - 'edit_tax_rate': 'Επεξεργασία ποσοστού φόρου', - 'created_tax_rate': 'Επιτυχής δημιουργία ποσοστού φόρου', - 'updated_tax_rate': 'Επιτυχής ενημέρωση ποσοστού φόρου', - 'archived_tax_rate': 'Επιτυχής αρχειοθέτηση ποσοστού φόρου', - 'deleted_tax_rate': 'Επιτυχής διαγραφή ποσοστού φόρου', - 'restored_tax_rate': 'Επιτυχής ανάκτηση ποσοστού φόρου', - 'archived_tax_rates': 'Επιτυχής αρχειοθέτηση :value ποσοστών φόρου', - 'deleted_tax_rates': 'Επιτυχής διαγραφή :value ποσοστών φόρου', - 'restored_tax_rates': 'Επιτυχής ανάκτηση :value ποσοστών φόρου', - 'fill_products': 'Αυτόματη συμπλήρωση προϊόντων', + 'Aggiorna l\'indirizzo del cliente con i dettagli forniti', + 'rate': 'Prezzo Unitario', + 'tax_rate': 'Aliquota Fiscale', + 'new_tax_rate': 'Nuova Aliquota Fiscale', + 'edit_tax_rate': 'Modifica aliquota fiscale', + 'created_tax_rate': 'Aliquota fiscale creata', + 'updated_tax_rate': 'Aliquota fiscale aggiornata', + 'archived_tax_rate': 'Archiviato con successo l\'aliquota fiscale', + 'deleted_tax_rate': 'Successfully deleted tax rate', + 'restored_tax_rate': 'Successfully restored tax rate', + 'archived_tax_rates': 'Successfully archived :value tax rates', + 'deleted_tax_rates': 'Successfully deleted :value tax rates', + 'restored_tax_rates': 'Successfully restored :value tax rates', + 'fill_products': 'Riempimento automatico prodotti', 'fill_products_help': - 'Επιλέγοντας ένα προϊόν, αυτόματα θα συμπληρωθεί η περιγραφή και η αξία', - 'update_products': 'Αυτόματη ενημέρωση προϊόντων', + 'Selezionare un prodotto farà automaticamente inserire la descrizione ed il costo', + 'update_products': 'Aggiorna automaticamente i prodotti', 'update_products_help': - 'Ενημερώνοντας ένα τιμολόγιο, αυτόματα θα ενημερωθεί και η βιβλιοθήκη προϊόντων', - 'convert_products': 'Μετατροπή Τιμών Προϊόντων', + 'Aggiornare una fatura farà automaticamente aggiornare i prodotti', + 'convert_products': 'Converti prodotti', 'convert_products_help': - 'Αυτόματη μετατροπή τιμών προϊόντων στο νόμισμα συναλλαγών του πελάτη', - 'fees': 'Τέλη', - 'limits': 'Όρια', + 'Converti automaticamenti i prezzi dei prodotti nella valuta del cliente', + 'fees': 'Commissioni', + 'limits': 'Limiti', 'provider': 'Provider', - 'company_gateway': 'Πύλη Πληρωμών (Gateway)', - 'company_gateways': 'Πύλες Πληρωμών (Gateways)', - 'new_company_gateway': 'Νέα Πύλη πληρωμής (Gateway)', - 'edit_company_gateway': 'Επεξεργασία Πύλης Πληρωμών (Gateway)', - 'created_company_gateway': 'Επιτυχής δημιουργία πύλης πληρωμών (Gateway)', - 'updated_company_gateway': 'Επιτυχής ενημέρωση πύλης πληρωμών (Gateway)', - 'archived_company_gateway': - 'Επιτυχής αρχειοθέτηση πύλης πληρωμών (Gateway)', - 'deleted_company_gateway': 'Επιτυχής διαγραφή πύλης πληρωμών (Gateway)', - 'restored_company_gateway': 'Επιτυχής επαναφορά πύλης πληρωμών (Gateway)', - 'archived_company_gateways': - 'Επιτυχής αρχειοθέτηση :value πυλών πληρωμών (gateways)', - 'deleted_company_gateways': - 'Επιτυχής διαγραφή :value πυλών πληρωμών (gateways)', - 'restored_company_gateways': - 'Επιτυχής ανάκτηση :value πυλών πληρωμών (gateways)', - 'continue_editing': 'Συνεχίστε την Επεξεργασία', - 'discard_changes': 'Απόρριψη Αλλαγών', - 'default_value': 'Προεπιλεγμένη τιμή', - 'disabled': 'Απενεργοποιημένο', - 'currency_format': 'Μορφή Νομίσματος', - 'first_day_of_the_week': 'Πρώτη Μέρα της Εβδομάδας', - 'first_month_of_the_year': 'Πρώτος Μήνας του Έτους', - 'sunday': 'Κυριακή', - 'monday': 'Δευτέρα', - 'tuesday': 'Τρίτη', - 'wednesday': 'Τετάρτη', - 'thursday': 'Πέμπτη', - 'friday': 'Παρασκευή', - 'saturday': 'Σάββατο', - 'january': 'Ιανουάριος', - 'february': 'Φεβρουάριος', - 'march': 'Μάρτιος', - 'april': 'Απρίλιος', - 'may': 'Μάιος', - 'june': 'Ιούνιος', - 'july': 'Ιούλιος', - 'august': 'Αύγουστος', - 'september': 'Σεπτέμβριος', - 'october': 'Οκτώβριος', - 'november': 'Νοέμβριος', - 'december': 'Δεκέμβριος', - 'symbol': 'Σύμβολο', - 'ocde': 'Κωδικός', - 'date_format': 'Μορφή Ημερομηνίας', - 'datetime_format': 'Μορφή Ημερομηνίας/Ώρας', - 'military_time': '24ωρη εμφάνιση Ώρας', - 'military_time_help': '24ωρη εμφάνιση Ώρας', - 'send_reminders': 'Αποστολή Υπενθυμίσεων', - 'timezone': 'Ζώνη ώρας', - 'filtered_by_project': 'Φιλτράρισμα ανά Project', - 'filtered_by_group': 'Φιλτράρισμα ανά Γκρουπ', - 'filtered_by_invoice': 'Φιλτράρισμα ανά Τιμολόγιο', - 'filtered_by_client': 'Φιλτράρισμα ανά Πελάτη', - 'filtered_by_vendor': 'Φιλτράρισμα ανά Προμηθευτή', - 'group_settings': 'Ρυθμίσεις Γρουπ', - 'group': 'Ομάδα', - 'groups': 'Γρουπ', - 'new_group': 'Νέο Γκρουπ', - 'edit_group': 'Επεξεργασία Γκρουπ', - 'created_group': 'Επιτυχής δημιουργία γκρουπ', - 'updated_group': 'Επιτυχής ενημέρωση γκρουπ', - 'archived_groups': 'Επιτυχής αρχειοθέτηση :value γκρουπς', - 'deleted_groups': 'Επιτυχής διαγραφή :value γκρουπς', - 'restored_groups': 'Επιτυχής ανάκτηση :value γκρουπς', - 'archived_group': 'Επιτυχής αρχειοθέτηση γκρουπ', - 'deleted_group': 'Επιτυχής διαγραφή γκρουπ', - 'restored_group': 'Επιτυχής ανάκτηση γκρουπ', - 'upload_logo': 'Μεταφόρτωση Λογοτύπου', - 'uploaded_logo': 'Επιτυχής μεταφόρτωση λογοτύπου', - 'logo': 'Λογότυπο', - 'saved_settings': 'Επιτυχής αποθήκευση ρυθμίσεων', - 'product_settings': 'Ρυθμίσεις Προϊόντων', - 'device_settings': 'Ρυθμίσεις Συσκευής', - 'defaults': 'Προεπιλογές', - 'basic_settings': 'Βασικές Ρυθμίσεις', - 'advanced_settings': 'Ρυθμίσεις για Προχωρημένους', - 'company_details': 'Στοιχεία Εταιρείας', - 'user_details': 'Στοιχεία Χρήστη', - 'localization': 'Τοπικές Ρυθμίσεις', - 'online_payments': 'Πληρωμές Online', - 'tax_rates': 'Ποσοστά Φόρων', - 'notifications': 'Ειδοποιήσεις', - 'import_export': 'Εισαγωγή | Εξαγωγή', - 'custom_fields': 'Προσαρμοσμένα Πεδία', - 'invoice_design': 'Σχέδιο Τιμολογίου', - 'buy_now_buttons': 'Κουμπιά Αγορά Τώρα', - 'email_settings': 'Ρυθμίσεις Email', - 'templates_and_reminders': 'Πρότυπα & Υπενθυμίσεις', - 'credit_cards_and_banks': 'Πιστωτικές Κάρτες & Τράπεζες', - 'data_visualizations': 'Απεικονίσεις Δεδομένων', - 'price': 'Τιμή', - 'email_sign_up': 'Εγγραφή μέσω Email', - 'google_sign_up': 'Εγγραφή μέσω Google', - 'thank_you_for_your_purchase': 'Ευχαριστούμε για την αγορά σας!', - 'redeem': 'Εξαργύρωσε', - 'back': 'Πίσω', - 'past_purchases': 'Παρελθόντες Αγορές', - 'annual_subscription': 'Ετη΄σια Συνδρομή', - 'pro_plan': 'Επαγγελματικό Πλάνο', - 'enterprise_plan': 'Εταιρικό Πλάνο', - 'count_users': ':count χρήστες', - 'upgrade': 'Αναβάθμιση', - 'please_enter_a_first_name': 'Παρακαλούμε εισάγετε μικρό όνομα', - 'please_enter_a_last_name': 'Παρακαλούμε εισάγετε επώνυμο', + 'company_gateway': 'Piattaforma di Pagamento', + 'company_gateways': 'Piattaforme di Pagamento', + 'new_company_gateway': 'Nuova Piattaforma', + 'edit_company_gateway': 'Modifica Piattaforma', + 'created_company_gateway': 'Piattaforma creata con successo', + 'updated_company_gateway': 'Piattaforma aggiornata con successo', + 'archived_company_gateway': 'Piattaforma archiviata con successo', + 'deleted_company_gateway': 'Piattaforma eliminata con successo', + 'restored_company_gateway': 'Piattaforma ripristinata con successo', + 'archived_company_gateways': 'Successfully archived :value gateways', + 'deleted_company_gateways': 'Successfully deleted :value gateways', + 'restored_company_gateways': 'Successfully restored :value gateways', + 'continue_editing': 'Continua la modifica', + 'discard_changes': 'Scarta modifiche', + 'default_value': 'Valore predefinito', + 'disabled': 'Disabilitato', + 'currency_format': 'Formato moneta', + 'first_day_of_the_week': 'Primo giorno della settimana', + 'first_month_of_the_year': 'Primo mese dell\'anno', + 'sunday': 'Domenica', + 'monday': 'Lunedì', + 'tuesday': 'Martedì', + 'wednesday': 'Mercoledì', + 'thursday': 'Giovedì', + 'friday': 'Venerdì', + 'saturday': 'Sabato', + 'january': 'Gennaio', + 'february': 'Febbraio', + 'march': 'Marzo', + 'april': 'Aprile', + 'may': 'Maggio', + 'june': 'Giugno', + 'july': 'Luglio', + 'august': 'Agosto', + 'september': 'Settembre', + 'october': 'Ottobre', + 'november': 'Novembre', + 'december': 'Dicembre', + 'symbol': 'Simbolo', + 'ocde': 'Codice', + 'date_format': 'Formato data', + 'datetime_format': 'Formato data e ora', + 'military_time': '24 ore', + 'military_time_help': 'Formato 24 ore', + 'send_reminders': 'Invia promemoria', + 'timezone': 'Fuso Orario', + 'filtered_by_project': 'Filtered by Project', + 'filtered_by_group': 'Filtrato per gruppo', + 'filtered_by_invoice': 'Filtrare per fattura', + 'filtered_by_client': 'Filtrato per cliente', + 'filtered_by_vendor': 'Filtrato per fornitore', + 'group_settings': 'Impostazioni gruppo', + 'group': 'Gruppo', + 'groups': 'Gruppi', + 'new_group': 'Nuovo gruppo', + 'edit_group': 'Modifica gruppo', + 'created_group': 'Gruppo creato con successo', + 'updated_group': 'Gruppo aggiornato con successo', + 'archived_groups': 'Successfully archived :value groups', + 'deleted_groups': 'Successfully deleted :value groups', + 'restored_groups': 'Successfully restored :value groups', + 'archived_group': 'Gruppo archiviato con successo', + 'deleted_group': 'Gruppo cancellato con successo', + 'restored_group': 'Gruppo ripristinato con successo', + 'upload_logo': 'Carica logo', + 'uploaded_logo': 'Logo caricato con successo', + 'logo': 'Logo', + 'saved_settings': 'Impostazioni salvate con successo', + 'product_settings': 'Preferenze Prodotti', + 'device_settings': 'Impostazioni dispositivo', + 'defaults': 'Predefiniti', + 'basic_settings': 'Impostazioni Base', + 'advanced_settings': 'Impostazioni Avanzate', + 'company_details': 'Dettagli Azienda', + 'user_details': 'Dettagli Utente', + 'localization': 'Linguaggio', + 'online_payments': 'Pagamenti Online', + 'tax_rates': 'Aliquote Fiscali', + 'notifications': 'Notifiche', + 'import_export': 'Importa/Esporta', + 'custom_fields': 'Campi Personalizzabili', + 'invoice_design': 'Stile Fattura', + 'buy_now_buttons': 'Puslanti Compra Ora', + 'email_settings': 'Impostazioni email', + 'templates_and_reminders': 'Modelli & Promemoria', + 'credit_cards_and_banks': 'Carte di credito & banche', + 'data_visualizations': 'Visualizzazioni dei dati', + 'price': 'Prezzo', + 'email_sign_up': 'Registrati via Email', + 'google_sign_up': 'Registrati con Google', + 'thank_you_for_your_purchase': 'Thank you for your purchase!', + 'redeem': 'Riscatta', + 'back': 'Indietro', + 'past_purchases': 'Acquisti passati', + 'annual_subscription': 'Abbonamento Annuale', + 'pro_plan': 'Piano Pro', + 'enterprise_plan': 'Piano Enterprise', + 'count_users': ':count utenti', + 'upgrade': 'Aggiorna', + 'please_enter_a_first_name': 'Si prega di inserire un nome', + 'please_enter_a_last_name': 'Si prega di inserire un cognome', 'please_agree_to_terms_and_privacy': - 'Παρακαλούμε συμφωνήστε με τους όρους χρήσης και την πολιτική απορρήτου για να δημιουργήσετε ένα λογαριασμό.', - 'i_agree_to_the': 'Συμφωνώ με το', - 'terms_of_service': 'Όροι της Υπηρεσίας', - 'privacy_policy': 'Πολιτική Απορρήτου', - 'sign_up': 'Εγγραφή', - 'account_login': 'Είσοδος στο Λογαριασμό', - 'view_website': 'Εμφάνιση Ιστοσελίδας', - 'create_account': 'Δημιουργία Λογαριασμού', - 'email_login': 'Είσοδος με Email', - 'create_new': 'Δημιουργία Νέου', - 'no_record_selected': 'Δεν έχουν επιλεγεί πεδία.', - 'error_unsaved_changes': 'Παρακαλούμε σώστε ή ακυρώστε τις αλλαγές σας.', - 'download': 'Κατέβασμα', - 'requires_an_enterprise_plan': 'Απαιτεί ένα επαγγελματικό πλάνο', - 'take_picture': 'Λήψη Φωτογραφίας', - 'upload_file': 'Μεταφόρτωση Αρχείου', - 'document': 'Έγγραφο', - 'documents': 'Έγγραφα', - 'new_document': 'Νέο έγγραφο', - 'edit_document': 'Επεξεργασία Εγγράφου', - 'uploaded_document': 'Επιτυχής μεταφόρτωση αρχείου', - 'updated_document': 'Επιτυχής ενημέρωση αρχείου', - 'archived_document': 'Επιτυχής αρχειοθέτηση αρχείου', - 'deleted_document': 'Επιτυχής διαγραφή αρχείου', - 'restored_document': 'Επιτυχής επαναφορά αρχείου', - 'archived_documents': 'Επιτυχής αρχειοθέτηση :value εγγράφων', - 'deleted_documents': 'Επιτυχής διαγραφή :value εγγράφων', - 'restored_documents': 'Επιτυχής ανάκτηση :value εγγράφων', - 'no_history': 'Δεν υπάρχει ιστορικό', - 'expense_date': 'Ημερομηνία Δαπάνης', - 'pending': 'Εκκρεμής', - 'expense_status_1': 'Καταγεγραμμένο', - 'expense_status_2': 'Σε αναμονή', - 'expense_status_3': 'Τιμολογημένο', - 'converted': 'Μετατράπηκε', - 'add_documents_to_invoice': 'Προσθέστε έγγραφα στο τιμολόγιο', - 'exchange_rate': 'Ισοτιμία Ανταλλαγής', - 'convert_currency': 'Μετατροπή νομίσματος', - 'mark_paid': 'Όρισε ως Πληρωμένα', - 'category': 'Κατηγορία', - 'address': 'Διεύθυνση', - 'new_vendor': 'Νέος Προμηθευτής', - 'created_vendor': 'Επιτυχής δημιουργία προμηθευτή', - 'updated_vendor': 'Επιτυχής ενημέρωση προμηθευτή', - 'archived_vendor': 'Επιτυχής αρχειοθέτηση προμηθευτή', - 'deleted_vendor': 'Επιτυχής διαγραφή προμηθευτή', - 'restored_vendor': 'Ο Προμηθευτής ανακτήθηκε με επιτυχία', - 'archived_vendors': 'Επιτυχής αρχειοθέτηση :count προμηθευτών', - 'deleted_vendors': 'Επιτυχής διαγραφή :count προμηθευτών', - 'restored_vendors': 'Επιτυχής ανάκτηση :value προμηθευτών', - 'new_expense': 'Καταχώρηση Δαπάνης', - 'created_expense': 'Επιτυχής δημιουργία δαπάνης', - 'updated_expense': 'Επιτυχής ενημέρωση δαπάνης', - 'archived_expense': 'Επιτυχής αρχειοθέτηση δαπάνης', - 'deleted_expense': 'Επιτυχής διαγραφή δαπάνης', - 'restored_expense': 'Επιτυχής επαναφορά δαπάνης', - 'archived_expenses': 'Επιτυχής αρχειοθέτηση δαπανών', - 'deleted_expenses': 'Επιτυχής διαγραφή δαπανών', - 'restored_expenses': 'Επιτυχής ανάκτηση :value δαπανών', - 'copy_shipping': 'Αντιγραφή Αποστολής', - 'copy_billing': 'Αντιγραφή Χρέωσης', - 'design': 'Σχεδίαση', - 'failed_to_find_record': 'Αποτυχία ανεύρεσης εγγραφής', - 'invoiced': 'Τιμολογημένα', - 'logged': 'Εισηγμένο', - 'running': 'Εκτελείται', - 'resume': 'Συνέχισε', - 'task_errors': 'Παρακαλώ διορθώστε τυχόν επικαλυπτόμενες ώρες', - 'start': 'Έναρξη', - 'stop': 'Λήξη', - 'started_task': 'Επιτυχής έναρξη εργασίας', - 'stopped_task': 'Επιτυχής διακοπή εργασίας', - 'resumed_task': 'Επιτυχής επανέναρξη εργασίας', - 'now': 'Τώρα', - 'auto_start_tasks': 'Αυτόματη Έναρξη Εργασιών', - 'timer': 'Μετρητής', - 'manual': 'Χειροκίνητο', - 'budgeted': 'Προϋπολογισμένο', - 'start_time': 'Ώρα Έναρξης', - 'end_time': 'Ώρα Λήξης', - 'date': 'Ημερομηνία', - 'times': 'Φορές', - 'duration': 'Διάρκεια', - 'new_task': 'Νέα Εργασία', - 'created_task': 'Επιτυχής δημιουργία εργασίας', - 'updated_task': 'Επιτυχής ενημέρωση εργασίας', - 'archived_task': 'Επιτυχής αρχειοθέτηση εργασίας', - 'deleted_task': 'Επιτυχής διαγραφή εργασίας', - 'restored_task': 'Επιτυχής ανάκτηση εργασίας', - 'archived_tasks': 'Επιτυχής αρχειοθέτηση :count εργασιών', - 'deleted_tasks': 'Επιτυχής διαγραφή :count εργασιών', - 'restored_tasks': 'Επιτυχής ανάκτηση :value εργασιών', - 'please_enter_a_name': 'Παρακαλούμε εισάγετε ένα όνομα', - 'budgeted_hours': 'Χρεώσιμες Ώρες', - 'created_project': 'Επιτυχής δημιουργία project', - 'updated_project': 'Επιτυχής ενημέρωση project', - 'archived_project': 'Επιτυχής αρχειοθέτηση project', - 'deleted_project': 'Επιτυχής διαγραφή project', - 'restored_project': 'Επιτυχής ανάκτηση project', - 'archived_projects': 'Επιτυχής αρχειοθέτηση :count projects', - 'deleted_projects': 'Επιτυχής διαγραφή :count projects', - 'restored_projects': 'Επιτυχής ανάκτηση :value projects', - 'new_project': 'Νέο Project', - 'thank_you_for_using_our_app': - 'Ευχαριστούμε που χρησιμοποιήσατε την εφαρμογή μας!', - 'if_you_like_it': 'Εάν σας αρέσει παρακαλούμε', - 'click_here': 'πατήστε εδώ', - 'click_here_capital': 'Πατήστε εδώ', - 'to_rate_it': 'για να το αξιολογήσετε.', - 'average': 'Μέσος όρος', - 'unapproved': 'Μη εγκεκριμένη', + 'Si prega di accettare i termini di servizio e della privacy per creare un account.', + 'i_agree_to_the': 'Accetto la', + 'terms_of_service': 'Termini di Servizio', + 'privacy_policy': 'Privacy Policy', + 'sign_up': 'Registrati', + 'account_login': 'Login account', + 'view_website': 'Visualizza sito web', + 'create_account': 'Crea un account', + 'email_login': 'Login email', + 'create_new': 'Crea Nuovo', + 'no_record_selected': 'Nessun dato selezionato', + 'error_unsaved_changes': 'Please save or cancel your changes', + 'download': 'Scarica', + 'requires_an_enterprise_plan': 'Richiede un piano enterprise', + 'take_picture': 'Fai foto', + 'upload_file': 'Carica file', + 'document': 'Documento', + 'documents': 'Documenti', + 'new_document': 'Nuovo documento', + 'edit_document': 'Modifica documento', + 'uploaded_document': 'Successfully uploaded document', + 'updated_document': 'Successfully updated document', + 'archived_document': 'Successfully archived document', + 'deleted_document': 'Successfully deleted document', + 'restored_document': 'Successfully restored document', + 'archived_documents': ':value documenti archiviati con successo', + 'deleted_documents': ':value documenti cancellati con successo', + 'restored_documents': ':value documenti ripristinati con successo', + 'no_history': 'Nessuno Storico', + 'expense_date': 'Data Spesa', + 'pending': 'In attesa', + 'expense_status_1': 'Registrato', + 'expense_status_2': 'In attesa', + 'expense_status_3': 'Fatturata', + 'converted': 'Convertito', + 'add_documents_to_invoice': 'Aggiungere documenti a fattura', + 'exchange_rate': 'Tasso di Cambio', + 'convert_currency': 'Converti valuta', + 'mark_paid': 'Segna come Pagata', + 'category': 'Categoria', + 'address': 'Indirizzo', + 'new_vendor': 'Nuovo Fornitore', + 'created_vendor': 'Fornitore creato con successo', + 'updated_vendor': 'Fornitore aggiornato con successo', + 'archived_vendor': 'Fornitore archiviato con successo', + 'deleted_vendor': 'Fornitore eliminato con successo', + 'restored_vendor': 'Successfully restored vendor', + 'archived_vendors': ':count fornitori archiviati con successo', + 'deleted_vendors': ':count fornitori eliminati con successo', + 'restored_vendors': 'Ripristinati con successo :value fornitori', + 'new_expense': 'Inserisci spesa', + 'created_expense': 'Spesa creata con successo', + 'updated_expense': 'Spesa aggiornata con successo', + 'archived_expense': 'Successfully archived expense', + 'deleted_expense': 'Successfully deleted expense', + 'restored_expense': 'Successfully restored expense', + 'archived_expenses': 'Successfully archived expenses', + 'deleted_expenses': 'Successfully deleted expenses', + 'restored_expenses': 'Ripristinate con successo :value spese', + 'copy_shipping': 'Copia Spedizione', + 'copy_billing': 'Copia Fatturazione', + 'design': 'Stile', + 'failed_to_find_record': 'Impossibile trovare dati', + 'invoiced': 'Fatturato', + 'logged': 'Registrato', + 'running': 'In corso', + 'resume': 'Riprendi', + 'task_errors': + 'Si prega di correggere eventuali tempi di sovrapposizione', + 'start': 'Inizia', + 'stop': 'Ferma', + 'started_task': 'Attività iniziata con successo', + 'stopped_task': 'Attività arrestata con successo', + 'resumed_task': 'Attività ripresa con sucesso', + 'now': 'Adesso', + 'auto_start_tasks': 'Partenza automatica delle attività', + 'timer': 'Timer', + 'manual': 'Manuale', + 'budgeted': 'Preventivato', + 'start_time': 'Tempo di inizio', + 'end_time': 'Tempo di fine', + 'date': 'Data', + 'times': 'Tempi', + 'duration': 'Durata', + 'new_task': 'Nuova Attività', + 'created_task': 'Attività creata con successo', + 'updated_task': 'Attività aggiornata con successo', + 'archived_task': 'Attività archiviata con successo', + 'deleted_task': 'Attività cancellata con successo', + 'restored_task': 'Attività ripristinata con successo', + 'archived_tasks': ':count attività archiviate correttamente', + 'deleted_tasks': ':count attività eliminate correttamente', + 'restored_tasks': ':value attività ripristinate con successo', + 'please_enter_a_name': 'Si prega di inserire un nome', + 'budgeted_hours': 'Ore preventivate', + 'created_project': 'Progetto creato con successo', + 'updated_project': 'Progetto aggiornato con successo', + 'archived_project': 'Progetto archiviato con successo', + 'deleted_project': 'Progetto eliminato con successo', + 'restored_project': 'Progetto ripristinato con successo', + 'archived_projects': ':count progetti archiviati con successo', + 'deleted_projects': ':count progetti eliminati con successo', + 'restored_projects': 'Successfully restored :value projects', + 'new_project': 'Nuovo Progetto', + 'thank_you_for_using_our_app': 'Grazie di avere scelto la nostra app!', + 'if_you_like_it': 'If you like it please', + 'click_here': 'clicca qui', + 'click_here_capital': 'Clicca qui', + 'to_rate_it': 'to rate it.', + 'average': 'Media', + 'unapproved': 'non approvato', 'authenticate_to_change_setting': - 'Παρακαλούμε αυθεντικοποιήστε για να αλλάξετε αυτή τη ρύθμιση', - 'locked': 'Κλειδωμένη', - 'authenticate': 'Αυθεντικοποιήστε', - 'please_authenticate': 'Παρακαλούμε αυθεντικοποιήστε', - 'biometric_authentication': 'Βιομετρικη αυθεντικοποίηση', - 'footer': 'Υποσέλιδο', - 'compare': 'Σύγκρινε', - 'hosted_login': 'Εισαγωγή σε φιλοξενούμενη έκδοση', - 'selfhost_login': 'Εισαγωγή σε αυτο-φιλοξενούμενη έκδοση', - 'google_sign_in': 'Είσοδος μέσω Google', - 'today': 'Σήμερα', - 'custom_range': 'Προσαρμοσμένο Εύρος', - 'date_range': 'Εύρος Ημερομηνιών', - 'current': 'Τωρινή', - 'previous': 'Προηγούμενη', - 'current_period': 'Τωρινή Περίοδος', - 'comparison_period': 'Περίοδος Σύγκρισης', - 'previous_period': 'Προηγούμενη Περίοδος', - 'previous_year': 'Προηγούμενος Χρόνος', - 'compare_to': 'Σύγκριση με', - 'last7_days': 'Προηγούμενες 7 ημέρες', - 'last_week': 'Προηγούμενη Εβδομάδα', - 'last30_days': 'Τελευταίες 30 Ημέρες', - 'this_month': 'Αυτός ο Μήνας', - 'last_month': 'Προηγούμενος Μήνας', - 'this_year': 'Τρέχον Χρόνος', - 'last_year': 'Προηγούμενος Χρόνος', - 'custom': 'Προσαρμοσμένο', - 'clone_to_invoice': 'Κλωνοποίηση σε Τιμολόγιο', - 'clone_to_quote': 'Κλωνοποίηση σε Προσφορά', - 'clone_to_credit': 'Κλωνοποίηση σε Πίστωση', - 'view_invoice': 'Προβολή Τιμολογίου', - 'convert': 'Μετατροπή', - 'more': 'Περισσότερα', - 'edit_client': 'Επεξεργασία Πελάτη', - 'edit_product': 'Επεξεργασία Προϊόντος', - 'edit_invoice': 'Επεξεργασία Τιμολογίου', - 'edit_quote': 'Επεξεργασία Προσφοράς', - 'edit_payment': 'Επεξεργασία Πληρωμής', - 'edit_task': 'Επεξεργασία Εργασίας', - 'edit_expense': 'Επεξεργασία Δαπάνης', - 'edit_vendor': 'Επεξεργασία Προμηθευτή', - 'edit_project': 'Επεξεργασία Project', - 'edit_recurring_quote': 'Επεξεργασία Επαναλαμβανόμενων Προσφορών', - 'billing_address': 'Διεύθυνση Τιμολόγησης', - 'shipping_address': 'Διεύθυνση Αποστολής', - 'total_revenue': 'Συνολικά Έσοδα', - 'average_invoice': 'Μέσος Όρος Τιμολογίων', - 'outstanding': 'Εκκρεμή', - 'invoices_sent': ':count τιμολόγια στάλθηκαν', - 'active_clients': 'ενεργοί πελάτες', - 'close': 'Κλείσιμο', + 'Si prega di autenticarsi per cambiare questa impostazione', + 'locked': 'Bloccato', + 'authenticate': 'Autentica', + 'please_authenticate': 'Si prega di autenticarsi', + 'biometric_authentication': 'Autenticazione biometrica', + 'footer': 'Piè di Pagina', + 'compare': 'Compara', + 'hosted_login': 'Hosted Login', + 'selfhost_login': 'Selfhost Login', + 'google_sign_in': 'Sign in with Google', + 'today': 'Oggi', + 'custom_range': 'Intervallo personalizzato', + 'date_range': 'Intervallo di Tempo', + 'current': 'Corrente', + 'previous': 'Precedente', + 'current_period': 'Periodo corrente', + 'comparison_period': 'Periodo di comparazione', + 'previous_period': 'Periodo precedente', + 'previous_year': 'Anno precedente', + 'compare_to': 'Compara a', + 'last7_days': 'Ultimi 7 giorni', + 'last_week': 'L\'ultima settimana', + 'last30_days': 'Ultimi 30 giorni', + 'this_month': 'Questo mese', + 'last_month': 'Mese scorso', + 'this_year': 'Quest\'anno', + 'last_year': 'Anno scorso', + 'custom': 'Personalizzato', + 'clone_to_invoice': 'Clona come fattura', + 'clone_to_quote': 'Clona come preventivo', + 'clone_to_credit': 'Clona come credito', + 'view_invoice': 'Visualizzare Fattura', + 'convert': 'Convertire', + 'more': 'Altro', + 'edit_client': 'Modifica Cliente', + 'edit_product': 'Modifica Prodotto', + 'edit_invoice': 'Modifica Fattura', + 'edit_quote': 'Modifica Preventivo', + 'edit_payment': 'Modifica pagamento', + 'edit_task': 'Modifica l\'attività', + 'edit_expense': 'Modifica Spesa', + 'edit_vendor': 'Modifica Fornitore', + 'edit_project': 'Modifica Progetto', + 'edit_recurring_quote': 'Modifica Preventivo Ricorrente', + 'billing_address': 'Indirizzo di fatturazione', + 'shipping_address': 'Indirizzo di spedizione', + 'total_revenue': 'Ricavo totale', + 'average_invoice': 'Fattura media', + 'outstanding': 'Inevase', + 'invoices_sent': ':count fatture inviate', + 'active_clients': 'clienti attivi', + 'close': 'Chiudi', 'email': 'Email', - 'password': 'Κωδικός Πρόσβασης', + 'password': 'Password', 'url': 'URL', - 'secret': 'Κρυφό', - 'name': 'Επωνυμία', - 'logout': 'Αποσύνδεση', - 'login': 'Είσοδος', - 'filter': 'Φίλτρο', - 'sort': 'Ταξινόμηση', - 'search': 'Αναζήτηση', - 'active': 'Ενεργός', - 'archived': 'Αρχειοθετημένο', - 'deleted': 'Διεγραμμένο', - 'dashboard': 'Πίνακας ελέγχου', - 'archive': 'Αρχειοθέτηση', - 'delete': 'Διαγραφή', - 'restore': 'Ανάκτηση', - 'refresh_complete': 'Ανανέωση Ολοκληρώθηκε', - 'please_enter_your_email': 'Παρακαλώ εισάγετε το email σας', - 'please_enter_your_password': - 'Παρακαλώ εισάγετε τον κωδικό πρόσβασής σας', - 'please_enter_your_url': 'Παρακαλώ εισάγετε το URL σας', - 'please_enter_a_product_key': 'Παρακαλώ εισάγετε το κλειδί προϊόντος σας', - 'ascending': 'Αύξουσα σειρά', - 'descending': 'Φθίνουσα σειρά', - 'save': 'Αποθήκευση', - 'an_error_occurred': 'Εμφανίστηκε ένα σφάλμα.', - 'paid_to_date': 'Εξοφλημένο Ποσό', - 'balance_due': 'Ολικό Σύνολο', - 'balance': 'Υπόλοιπο', - 'overview': 'Επισκόπηση', - 'details': 'Στοιχεία', - 'phone': 'Τηλέφωνο', - 'website': 'Ιστοσελίδα', - 'vat_number': 'ΑΦΜ', - 'id_number': 'Αριθμός ID', - 'create': 'Δημιουργία', - 'copied_to_clipboard': 'Αντιγράφτηκε :value στο πρόχειρο', - 'error': 'Σφάλμα', - 'could_not_launch': 'Αδύνατη η εκτέλεση', - 'contacts': 'Επαφές', - 'additional': 'Επιπρόσθετο', - 'first_name': 'Όνομα', - 'last_name': 'Επώνυμο', - 'add_contact': 'Προσθήκη επαφής', - 'are_you_sure': 'Είστε σίγουροι;', - 'cancel': 'Άκυρο', + 'secret': 'Segreta', + 'name': 'Nome', + 'logout': 'Esci', + 'login': 'Login', + 'filter': 'Filtra', + 'sort': 'Ordina', + 'search': 'Cerca', + 'active': 'Attivo', + 'archived': 'Archived', + 'deleted': 'Eliminato', + 'dashboard': 'Pannello di Controllo', + 'archive': 'Archivia', + 'delete': 'Elimina', + 'restore': 'Ripristina', + 'refresh_complete': 'Aggiornamento completi', + 'please_enter_your_email': 'Inserisci la tua email', + 'please_enter_your_password': 'Si prega di inserire la password', + 'please_enter_your_url': 'Inserisci il tuo URL', + 'please_enter_a_product_key': 'Inserire una chiave prodotto', + 'ascending': 'Crescente', + 'descending': 'Decrescente', + 'save': 'Salva', + 'an_error_occurred': 'Si è verificato un errore', + 'paid_to_date': 'Pagato a oggi', + 'balance_due': 'Totale da Pagare', + 'balance': 'Bilancio', + 'overview': 'Panoramica', + 'details': 'Dettagli', + 'phone': 'Telefono', + 'website': 'Sito web', + 'vat_number': 'Partita IVA', + 'id_number': 'Codice Fiscale', + 'create': 'Crea', + 'copied_to_clipboard': 'Copiato :value negli appunti', + 'error': 'Errore', + 'could_not_launch': 'Esecuzione non riuscita', + 'contacts': 'Contatti', + 'additional': 'Aggiuntivo', + 'first_name': 'Nome', + 'last_name': 'Cognome', + 'add_contact': 'Aggiungi contatto', + 'are_you_sure': 'Sei sicuro?', + 'cancel': 'Annulla', 'ok': 'Ok', - 'remove': 'Διαγραφή', - 'email_is_invalid': 'Το Email είναι εσφαλμένο', - 'product': 'Προϊόν', - 'products': 'Προϊόντα', - 'new_product': 'Νέο Προϊόν', - 'created_product': 'Επιτυχής δημιουργία προϊόντος', - 'updated_product': 'Επιτυχής ενημέρωση προϊόντος', - 'archived_product': 'Επιτυχής αρχειοθέτηση προϊόντος', - 'deleted_product': 'Επιτυχής διαγραφή προϊόντος', - 'restored_product': 'Επιτυχής ανάκτηση προϊόντος', - 'archived_products': 'Επιτυχής αρχειοθέτηση :count προϊόντων', - 'deleted_products': 'Επιτυχής διαγραφή :count προϊόντων', - 'restored_products': 'Επιτυχής ανάκτηση :value προϊόντων', - 'product_key': 'Προϊόν', - 'notes': 'Σημειώσεις', - 'cost': 'Κόστος', - 'client': 'Πελάτης', - 'clients': 'Πελάτες', - 'new_client': 'Νέος Πελάτης', - 'created_client': 'Επιτυχής δημιουργία πελάτη', - 'updated_client': 'Επιτυχής ενημέρωση πελάτη', - 'archived_client': 'Επιτυχής αρχειοθέτηση πελάτη', - 'archived_clients': 'Επιτυχής αρχειοθέτηση :count πελατών', - 'deleted_client': 'Επιτυχής διαγραφή πελάτη', - 'deleted_clients': 'Επιτυχής διαγραφή :count πελατών', - 'restored_client': 'Επιτυχής ανάκτηση πελάτη', - 'restored_clients': 'Επιτυχής ανάκτηση :value πελατών', - 'address1': 'Οδός', - 'address2': 'Διαμέρισμα', - 'city': 'Πόλη', - 'state': 'Νομός', - 'postal_code': 'Ταχ. Κώδικας', - 'country': 'Χώρα', - 'invoice': 'Τιμολόγιο', - 'invoices': 'Τιμολόγια', - 'new_invoice': 'Νέο Τιμολόγιο', - 'created_invoice': 'Επιτυχής δημιουργία τιμολογίου', - 'updated_invoice': 'Επιτυχής ενημέρωση τιμολογίου', - 'archived_invoice': 'Επιτυχής αρχειοθέτηση τιμολογίου', - 'deleted_invoice': 'Επιτυχής διαγραφή τιμολογίου', - 'restored_invoice': 'Επιτυχής ανάκτηση τιμολογίου', - 'archived_invoices': 'Επιτυχής αρχειοθέτηση :count τιμολογίων', - 'deleted_invoices': 'Επιτυχής διαγραφή :count τιμολογίων', - 'restored_invoices': 'Επιτυχής ανάκτηση :value τιμολογίων', - 'emailed_invoice': 'Επιτυχής αποστολή τιμολογίου', - 'emailed_payment': 'Επιτυχής αποστολή πληρωμής με Email', - 'amount': 'Ποσό', - 'invoice_number': 'Αριθμός Τιμολογίου', - 'invoice_date': 'Ημερομηνία Τιμολογίου', - 'discount': 'Έκπτωση', - 'po_number': 'Αριθμός Παραγγελίας', - 'terms': 'Όροι', - 'public_notes': 'Δημόσιες Σημειώσεις', - 'private_notes': 'Προσωπικές Σημειώσεις', - 'frequency': 'Συχνότητα', - 'start_date': 'Ημ/νία Έναρξης', - 'end_date': 'Ημ/νία Λήξης', - 'quote_number': 'Αριθμός', - 'quote_date': 'Ημερομηνία', - 'valid_until': 'Έγκυρο Έως', - 'items': 'Προϊόντα', - 'partial_deposit': 'Μερικό/Κατάθεση', - 'description': 'Περιγραφή', - 'unit_cost': 'Τιμή Μονάδας', - 'quantity': 'Ποσότητα', - 'add_item': 'Προσθήκη Προϊόντος', - 'contact': 'Επαφή', - 'work_phone': 'Τηλέφωνο', - 'total_amount': 'Συνολικό Ποσό', + 'remove': 'Elimina', + 'email_is_invalid': 'Email non valida', + 'product': 'Prodotto', + 'products': 'Prodotti', + 'new_product': 'Nuovo Prodotto', + 'created_product': 'Prodotto creato con successo', + 'updated_product': 'Prodotto aggiornato con successo', + 'archived_product': 'Prodotto archiviato con successo', + 'deleted_product': 'Prodotto eliminato con successo', + 'restored_product': 'Prodotto ripristinato con successo', + 'archived_products': 'Archiviati con successo :count prodotti', + 'deleted_products': ':count prodotti eliminati con successo', + 'restored_products': 'Ripristinati con successo :value prodotti', + 'product_key': 'Prodotto', + 'notes': 'Note', + 'cost': 'Cost', + 'client': 'Cliente', + 'clients': 'Clienti', + 'new_client': 'Nuovo Cliente', + 'created_client': 'Cliente creato con successo', + 'updated_client': 'Cliente aggiornato con successo', + 'archived_client': 'Cliente archiviato con successo', + 'archived_clients': ':count clienti archiviati con successo', + 'deleted_client': 'Cliente eliminato con successo', + 'deleted_clients': ':count clienti eliminati con successo', + 'restored_client': 'Cliente ripristinato con successo', + 'restored_clients': 'Successfully restored :value clients', + 'address1': 'Via', + 'address2': 'Appartamento/Piano', + 'city': 'Città', + 'state': 'Stato/Provincia', + 'postal_code': 'Codice postale', + 'country': 'Paese', + 'invoice': 'Fattura', + 'invoices': 'Fatture', + 'new_invoice': 'Nuova Fattura', + 'created_invoice': 'Fattura creata con successo', + 'updated_invoice': 'Fattura aggiornata con successo', + 'archived_invoice': 'Fattura archiviata con successo', + 'deleted_invoice': 'Fattura eliminata con successo', + 'restored_invoice': 'Fattura ripristinata con successo', + 'archived_invoices': ':count fatture archiviate con successo', + 'deleted_invoices': ':count fatture eliminate con successo', + 'restored_invoices': 'Ripristinato con successo :value fatture', + 'emailed_invoice': 'Fattura inviata con successo', + 'emailed_payment': 'Successfully emailed payment', + 'amount': 'Importo', + 'invoice_number': 'Numero Fattura', + 'invoice_date': 'Data Fattura', + 'discount': 'Sconto', + 'po_number': 'Numero d\'ordine d\'acquisto', + 'terms': 'Termini', + 'public_notes': 'Note Pubbliche (Descrizione in fattura)', + 'private_notes': 'Note Personali', + 'frequency': 'Frequenza', + 'start_date': 'Data Inizio', + 'end_date': 'Data Fine', + 'quote_number': 'Numero Preventivo', + 'quote_date': 'Data Preventivo', + 'valid_until': 'Valido fino a', + 'items': 'Articoli', + 'partial_deposit': 'Parziale/Deposito', + 'description': 'Descrizione', + 'unit_cost': 'Costo unitario', + 'quantity': 'Quantità', + 'add_item': 'Aggiungi Articolo', + 'contact': 'Contatto', + 'work_phone': 'Telefono', + 'total_amount': 'Ammontare Totale', 'pdf': 'PDF', - 'due_date': 'Ημερομηνία Ολοκλήρωσης', - 'partial_due_date': 'Ημερομηνία Μερικής Πληρωμής', - 'status': 'Κατάσταση', - 'invoice_status_id': 'Κατάσταση Τιμολογίου', - 'quote_status': 'Κατάσταση Προσφοράς', - 'click_plus_to_add_item': 'Πιέστε το + για την προσθήκη ενός προϊόντος', - 'click_plus_to_add_time': 'Πιέστε το + για να προσθέσετε χρόνο', - 'count_selected': ':count επιλέχθηκε', - 'total': 'Σύνολο', - 'percent': 'Ποσοστό', - 'edit': 'Επεξεργασία', - 'dismiss': 'Απέρριψε', - 'please_select_a_date': 'Παρακαλώ επιλέξτε ημερομηνία', - 'please_select_a_client': 'Παρακαλώ επιλέξτε πελάτη', - 'please_select_an_invoice': 'Παρακαλώ επιλέξτε ένα τιμολόγιο', - 'task_rate': 'Κόστος Εργασίας', - 'settings': 'Ρυθμίσεις', - 'language': 'Γλώσσα', - 'currency': 'Νόμισμα', - 'created_at': 'Ημ/νία Δημιουργίας', - 'created_on': 'Δημιουργήθηκε στις', - 'updated_at': 'Ενημερώθηκε', - 'tax': 'Φόρος', + 'due_date': 'Scadenza', + 'partial_due_date': 'Partial Due Date', + 'status': 'Stato', + 'invoice_status_id': 'Stato della fattura', + 'quote_status': 'Stato preventivo', + 'click_plus_to_add_item': 'Clicca su + per aggiungere un articolo', + 'click_plus_to_add_time': 'Premi + per aggiungere tempo', + 'count_selected': ':count selezionato/i', + 'total': 'Totale', + 'percent': 'Percentuale', + 'edit': 'Modifica', + 'dismiss': 'Chiudi', + 'please_select_a_date': 'Selezionate una data per favore', + 'please_select_a_client': 'Seleziona un cliente', + 'please_select_an_invoice': 'Selezionate una fattura per favore', + 'task_rate': 'Tariffa per le attività', + 'settings': 'Impostazioni', + 'language': 'Linguaggio', + 'currency': 'Valuta', + 'created_at': 'Data Creazione', + 'created_on': 'Creato il', + 'updated_at': 'Aggiornato', + 'tax': 'Tassa', 'please_enter_an_invoice_number': - 'Παρακαλώ εισάγετε ένα αριθμό τιμολογίου', - 'please_enter_a_quote_number': 'Παρακαλώ εισάγετε ένα αριθμό προσφοράς', - 'past_due': 'Ληγμένα', - 'draft': 'Πρόχειρο', - 'sent': 'Απεσταλμένα', - 'viewed': 'Εμφανισμένα', - 'approved': 'Αποδεκτή', - 'partial': 'Μερικό/Κατάθεση', - 'paid': 'Πληρωμένα', - 'mark_sent': 'Σήμανση ως Απεσταλμένο', - 'marked_invoice_as_sent': 'Επιτυχής ορισμός τιμολογίου ως απεσταλμένο', - 'marked_invoice_as_paid': 'Επιτυχής ορισμός τιμολογίου ως απεσταλμένο', - 'marked_invoices_as_sent': 'Επιτυχής ορισμός τιμολογίων ως απεσταλμένα', - 'marked_invoices_as_paid': 'Επιτυχής ορισμός τιμολογίων ως απεσταλμένα', - 'done': 'Έτοιμο', + 'Si prega di inserire un numero di fattura', + 'please_enter_a_quote_number': 'Inserisci un numero preventivo', + 'past_due': 'Scaduta', + 'draft': 'Bozza', + 'sent': 'Inviato', + 'viewed': 'Visto', + 'approved': 'Approvato', + 'partial': 'Parziale/Deposito', + 'paid': 'Pagata', + 'mark_sent': 'Contrassegna come inviato', + 'marked_invoice_as_sent': + 'Fattura contrassegnata con successo come inviata', + 'marked_invoice_as_paid': + 'Fattura contrassegnata con successo come inviata', + 'marked_invoices_as_sent': + 'Fatture contrassegnate con successo come inviate', + 'marked_invoices_as_paid': + 'Fatture contrassegnate con successo come inviate', + 'done': 'Completato', 'please_enter_a_client_or_contact_name': - 'Παρακαλώ εισάγετε ένα πελάτη ή το όνομα μίας επαφής', - 'dark_mode': 'Σκοτεινό Περιβάλλον', + 'Si prega di inserire un cliente o nome del contatto', + 'dark_mode': 'Modalità scura', 'restart_app_to_apply_change': - 'Επανεκκινήστε την εφαρμογή για να εφαρμόσετε την αλλαγή', - 'refresh_data': 'Ανανέωση Δεδομένων', - 'blank_contact': 'Κενή Επαφή', - 'activity': 'Δραστηριότητα', - 'no_records_found': 'Δεν βρέθηκαν εγγραφές', - 'clone': 'Κλωνοποίηση', - 'loading': 'Φόρτωση', - 'industry': 'Βιομηχανία', - 'size': 'Μέγεθος', - 'payment_terms': 'Όροι Πληρωμής', - 'payment_date': 'Ημ/νία Πληρωμής', - 'payment_status': 'Κατάσταση Πληρωμής', - 'payment_status_1': 'Εκκρεμής', - 'payment_status_2': 'Σε λήξη', - 'payment_status_3': 'Απέτυχε', - 'payment_status_4': 'Ολοκληρώθηκε', - 'payment_status_5': 'Μερική επιστροφή χρημάτων', - 'payment_status_6': 'Επιστροφή χρημάτων', - 'payment_status_-1': 'Ανεφάρμοστο', + 'Riavviare la app per applicare il cambiamento', + 'refresh_data': 'Aggiorna dati', + 'blank_contact': 'Svuota Contatto', + 'activity': 'Attività', + 'no_records_found': 'Nessun dato trovato', + 'clone': 'Clona', + 'loading': 'Caricando', + 'industry': 'Industria', + 'size': 'Dimensione', + 'payment_terms': 'Termini di pagamento', + 'payment_date': 'Data Pagamento', + 'payment_status': 'Stato del pagamento', + 'payment_status_1': 'In attesa', + 'payment_status_2': 'Annullato', + 'payment_status_3': 'Fallito', + 'payment_status_4': 'Completato', + 'payment_status_5': 'Parzialmente rimborsato', + 'payment_status_6': 'Rimborsato', + 'payment_status_-1': 'Non applicato', 'payment_status_-2': 'Partially Unapplied', - 'net': 'Καθαρό', - 'client_portal': 'Portal Πελάτη', - 'show_tasks': 'Εμφάνιση εργασιών', - 'email_reminders': 'Email Υπενθύμίσεις', - 'enabled': 'Ενεργοποίηση', - 'recipients': 'Παραλήπτες', - 'initial_email': 'Αρχικό Email', - 'first_reminder': 'Πρώτη Υπενθύμιση', - 'second_reminder': 'Δεύτερη Υπενθύμιση', - 'third_reminder': 'Τρίτη Υπενθύμιση', - 'reminder1': 'Πρώτη Υπενθύμιση', - 'reminder2': 'Δεύτερη Υπενθύμιση', - 'reminder3': 'Τρίτη Υπενθύμιση', - 'template': 'Πρότυπο', - 'send': 'Αποστολή', - 'subject': 'Θέμα', - 'body': 'Κείμενο', - 'send_email': 'Αποστολή Email', - 'email_receipt': 'Αποστολή απόδειξης πληρωμής στον πελάτη', - 'auto_billing': 'Αυτόματη Χρέωση', - 'button': 'Κουμπί', - 'preview': 'Προεπισκόπηση', - 'customize': 'Προσαρμογή', - 'history': 'Ιστορικό', - 'payment': 'Πληρωμή', - 'payments': 'Πληρωμές', - 'refunded': 'Επιστροφή χρημάτων', - 'payment_type': 'Τύπος Πληρωμής', - 'transaction_reference': 'Κωδικός Συναλλαγής', - 'enter_payment': 'Καταχώρηση πληρωμής', - 'new_payment': 'Εισάγετε πληρωμή', - 'created_payment': 'Επιτυχής δημιουργία πληρωμής', - 'updated_payment': 'Επιτυχής ενημέρωση πληρωμής', - 'archived_payment': 'Επιτυχής αρχειοθέτηση πληρωμής', - 'deleted_payment': 'Επιτυχής διαγραφή πληρωμής', - 'restored_payment': 'Επιτυχής ανάκτηση πληρωμής', - 'archived_payments': 'Επιτυχής αρχειοθέτηση :count πληρωμών', - 'deleted_payments': 'Επιτυχής διαγραφή :count πληρωμών', - 'restored_payments': 'Επιτυχής ανάκτηση :value πληρωμών', - 'quote': 'Προσφορά', - 'quotes': 'Προσφορές', - 'new_quote': 'Νέα Προσφορά', - 'created_quote': 'Επιτυχής δημιουργία προσφοράς', - 'updated_quote': 'Επιτυχής ενημέρωση προσφοράς', - 'archived_quote': 'Επιτυχής αρχειοθέτηση προσφοράς', - 'deleted_quote': 'Επιτυχής διαγραφή προσφοράς', - 'restored_quote': 'Επιτυχής ανάκτηση προσφοράς', - 'archived_quotes': 'Επιτυχής αρχειοθέτηση :count προσφορών', - 'deleted_quotes': 'Επιτυχής διαγραφή :count προσφορών', - 'restored_quotes': 'Επιτυχής ανάκτηση :value προσφορών', - 'expense': 'Δαπάνη', - 'expenses': 'Δαπάνες', - 'vendor': 'Προμηθευτής', - 'vendors': 'Προμηθευτές', - 'task': 'Εργασία', - 'tasks': 'Εργασίες', - 'project': 'Project', - 'projects': 'Projects', - 'activity_1': 'Ο χρήστης :user δημιούργησε τον πελάτη :client', - 'activity_2': 'Ο χρήστης :user αρχειοθέτησε τον πελάτη :client', - 'activity_3': 'Ο χρήστης :user διέγραψε τον πελάτη :client', - 'activity_4': 'Ο χρήστης :user δημιούργησε το τιμολόγιο :invoice', - 'activity_5': 'Ο χρήστης :user ενημέρωσε το τιμολόγιο :invoice', + 'net': 'Netto', + 'client_portal': 'Portale Clienti', + 'show_tasks': 'Mostra attività', + 'email_reminders': 'Promemoria email', + 'enabled': 'Abilitato', + 'recipients': 'Destinatari', + 'initial_email': 'Email iniziale', + 'first_reminder': 'Primo Promemoria', + 'second_reminder': 'Secondo Promemoria', + 'third_reminder': 'Terzo Promemoria', + 'reminder1': 'Primo promemoria', + 'reminder2': 'Secondo promemoria', + 'reminder3': 'Terzo promemoria', + 'template': 'Modello', + 'send': 'Invia', + 'subject': 'Oggetto', + 'body': 'Corpo', + 'send_email': 'Invia Email', + 'email_receipt': 'Invia ricevuta di pagamento al cliente', + 'auto_billing': 'Fatturazione automatica', + 'button': 'Pulsante', + 'preview': 'Anteprima', + 'customize': 'Personalizza', + 'history': 'Storico', + 'payment': 'Pagamento', + 'payments': 'Pagamenti', + 'refunded': 'Rimborsato', + 'payment_type': 'Tipo di Pagamento', + 'transaction_reference': 'Riferimento Transazione', + 'enter_payment': 'Inserisci Pagamento', + 'new_payment': 'Inserisci il pagamento', + 'created_payment': 'Pagamento creato con successo', + 'updated_payment': 'Pagamento aggiornato con successo', + 'archived_payment': 'Pagamento archiviato con successo', + 'deleted_payment': 'Pagamenti eliminati con successo', + 'restored_payment': 'Pagamento ripristinato con successo', + 'archived_payments': ':count pagamenti archiviati con successo', + 'deleted_payments': ':count pagamenti eliminati con successo', + 'restored_payments': 'Successfully restored :value payments', + 'quote': 'Preventivo', + 'quotes': 'Preventivi', + 'new_quote': 'Nuovo Preventivo', + 'created_quote': 'Preventivo creato con successo', + 'updated_quote': 'Preventivo aggiornato con successo', + 'archived_quote': 'Preventivo archiviato con successo', + 'deleted_quote': 'Preventivo cancellato con successo', + 'restored_quote': 'Preventivo ripristinato con successo', + 'archived_quotes': 'Sono stati archiviati :count preventivi con successo', + 'deleted_quotes': 'Sono stati cancellati :count preventivi con successo', + 'restored_quotes': 'Successfully restored :value quotes', + 'expense': 'Spesa', + 'expenses': 'Spese', + 'vendor': 'Fornitore', + 'vendors': 'Fornitori', + 'task': 'Attività', + 'tasks': 'Attività', + 'project': 'Progetto', + 'projects': 'Progetti', + 'activity_1': ':user ha creato il cliente :client', + 'activity_2': ':user ha archiviato il cliente :client', + 'activity_3': ':user ha cancellato il cliente :client', + 'activity_4': ':user ha creato la fattura :invoice', + 'activity_5': ':user ha aggiornato la fattura :invoice', 'activity_6': - 'Ο χρήστης :user έστειλε με email το τιμολόγιο :invoice για τον πελάτη :client στην επαφή :contact', - 'activity_7': - 'Η επαφή :contact είδε το τιμολόγιο :invoice για τον πελάτη :client', - 'activity_8': 'Ο χρήστης :user αρχειοθέτησε το τιμολόγιο :invoice', - 'activity_9': 'Ο χρήστης :user διέγραψε το τιμολόγιο :invoice', + ':user ha inviato per email la fattura :invoice per:client a :contact', + 'activity_7': ':contact ha visualizzato la fattura :invoice per :client', + 'activity_8': ':user ha archiviato la fattura :invoice', + 'activity_9': ':user ha cancellato la fattura :invoice', 'activity_10': - 'Η επαφή :contact καταχώρησε την πληρωμή ποσού :payment_amount για το τιμολόγιο :invoice για τον πελάτη :client', - 'activity_11': 'Ο χρήστης :user ενημέρωσε την πληρωμή :payment', - 'activity_12': 'Ο χρήστης :user αρχειοθέτησε την πληρωμή :payment', - 'activity_13': 'Ο χρήστης :user διέγραψε την πληρωμή :payment', - 'activity_14': 'Ο χρήστης :user καταχώρησε την πίστωση :credit', - 'activity_15': 'Ο χρήστης :user ενημέρωσε την πίστωση :credit', - 'activity_16': 'Ο χρήστης :user αρχειοθέτησε την πίστωση :credit', - 'activity_17': 'Ο χρήστης :user διέγραψε την πίστωση :credit', - 'activity_18': 'Ο χρήστης :user δημιουργησε την προσφορά :quote', - 'activity_19': 'Ο χρήστης :user ενημέρωσε την προσφορά :quote', + ':contact ha registrato il pagamento :payment di :payment_amount sulla fattura :invoice per :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', + 'activity_14': ':user ha inserito il credito :credit', + 'activity_15': ':user ha aggiornato il credito :credit', + 'activity_16': ':user ha archiviato il credito :credit', + 'activity_17': ':user ha cancellato il credito :credit', + 'activity_18': ':user ha creato il preventivo :quote', + 'activity_19': ':user ha creato il preventivo :quote', 'activity_20': - 'Ο χρήστης :user έστειλε με email την προσφορά :quote για τον πελάτη :client στην επαφή :contact', - 'activity_21': 'Η επαφή :contact είδε την προσφορά :quote', - 'activity_22': 'Ο χρήστης :user αρχειοθέτησε την προσφορά :quote', - 'activity_23': 'Ο χρήστης :user διέγραψε την προσφορά :quote', - 'activity_24': 'Ο χρήστης :user επανέφερε την προσφορά :quote', - 'activity_25': 'Ο χρήστης :user επανέφερε το τιμολόγιο :invoice', - 'activity_26': 'Ο χρήστης :user επανέφερε τον πελάτη :client', - 'activity_27': 'Ο χρήστης :user επανέφερε την πληρωμή :payment', - 'activity_28': 'Ο χρήστης :user επανέφερε την πίστωση :credit', - 'activity_29': - 'Η επαφή :contact αποδέχτηκε την προσφορά :quote για τον πελάτη :client', - 'activity_30': 'Ο χρήστης :user δημιούργησε τον προμηθευτή :vendor', - 'activity_31': 'Ο χρήστης :user αρχειοθέτησε τον προμηθευτή :vendor', - 'activity_32': 'Ο χρήστης :user διέγραψε τον προμηθευτή :vendor', - 'activity_33': 'Ο χρήστης :user επανέφερε τον προμηθευτή :vendor', - 'activity_34': 'Ο χρήστης :user δημιούργησε τη δαπάνη :expense', - 'activity_35': 'Ο χρήστης :user αρχειοθέτησε τη δαπάνη :expense', - 'activity_36': 'Ο χρήστης :user διέγραψε τη δαπάνη :expense', - 'activity_37': 'Ο χρήστης :user επανέφερε τη δαπάνη :expense', - 'activity_39': ':user ακύρωσε :payment_amount πληρωμής :payment', - 'activity_40': - ':user επέστρεψε :adjustment μιας :payment_amount πληρωμής :payment', - 'activity_41': ':payment_amount πληρωμής (:payment) απέτυχε', - 'activity_42': 'Ο χρήστης :user δημιούργησε την εργασία :task', - 'activity_43': 'Ο χρήστης :user ενημέρωσε την εργασία :task', - 'activity_44': 'Ο χρήστης :user αρχειοθέτησε την εργασία :task', - 'activity_45': 'Ο χρήστης :user διέγραψε την εργασία :task', - 'activity_46': 'Ο χρήστης :user επανέφερε την εργασία :task', - 'activity_47': 'Ο χρήστης :user ενημέρωσε τη δαπάνη :expense', - 'activity_48': 'Ο χρήστης :user ενημέρωσε το αίτημα υποστήριξης :ticket', - 'activity_49': 'Ο χρήστης :user έκλεισε το αίτημα υποστήριξης :ticket', - 'activity_50': 'Ο χρήστης :user συνένωσε το αίτημα υποστήριξης :ticket', - 'activity_51': - 'Ο χρήστης :user διαίρεσε στα δύο το αίτημα υποστήριξης :ticket', - 'activity_52': - 'Η επαφή :contact δημιούργησε το αίτημα υποστήριξης :ticket', - 'activity_53': - 'Η επαφή :contact επαναδημιούργησε το αίτημα υποστήριξης :ticket', - 'activity_54': - 'Ο χρήστης :user επαναδημιούργησε το αίτημα υποστήριξης :ticket', - 'activity_55': 'Η επαφή :contact απάντησε στο αίτημα υποστήριξης :ticket', - 'activity_56': 'Ο χρήστης :user είδε το αίτημα υποστήριξης :ticket', + ':user ha inviato per email il preventivo :quote per :client a :contact', + 'activity_21': ':contact ha visto il preventivo :quote', + 'activity_22': ':user ha archiviato il preventivo :quote', + 'activity_23': ':user ha cancellato il preventivo :quote', + 'activity_24': ':user ha ripristinato il preventivo :quote', + 'activity_25': ':user ha ripristinato la fattura :invoice', + 'activity_26': ':user ha ripristinato il cliente :client', + 'activity_27': ':user ha ripristinato il pagamento :payment', + 'activity_28': ':user ha ripristinato il credito :credit', + 'activity_29': ':contact ha approvato il preventivo :quote per :client', + 'activity_30': 'L\'utente :user ha creato il fornitore :vendor', + 'activity_31': 'L\'utente :user ha archiviato il fornitore :vendor', + 'activity_32': 'L\'utente :user ha eliminato il fornitore :vendor', + 'activity_33': 'L\'utente :user ha ripristinato il fornitore :vendor', + 'activity_34': 'L\'utente :user ha creato la spesa :expense', + 'activity_35': 'L\'utente :user ha archiviato la spesa :expense', + 'activity_36': 'L\'utente :user ha eliminato la spesa :expense', + 'activity_37': 'L\'utente :user ha ripristinato la spesa :expense', + 'activity_39': + ':user ha annullato un pagamento :payment da :payment_amount', + 'activity_40': + ':user ha rimborsato :adjustment di un pagamento :payment da :payment_amount', + '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', + 'activity_44': 'L\'utente :user ha archiviato l\'attività :task', + 'activity_45': 'L\'utente :user ha eliminato l\'attività :task', + 'activity_46': 'L\'utente :user ha ripristinato l\'attività :task', + 'activity_47': 'L\'utente :user ha aggiornato la spesa :expense', + 'activity_48': ':user ha aggiornato il ticket :ticket', + 'activity_49': ':user ha chiuso il ticket :ticket', + 'activity_50': ':user ha unito il ticket :ticket', + 'activity_51': ':user ha separato il ticket :ticket', + 'activity_52': ':contact ha aperto il ticket :ticket', + 'activity_53': ':contact ha riaperto il ticket :ticket', + 'activity_54': ':user ha riaperto il ticket :ticket', + 'activity_55': ':contact ha risposto al ticket :ticket', + 'activity_56': ':user ha visualizzato il ticket :ticket', 'activity_57': - 'Το σύστημα απέτυχε να στείλει με email το τιμολόγιο :invoice', - 'activity_58': 'Ο χρήστης :user αντίστρεψε το τιμολόγιο :invoice', - 'activity_59': 'Ο χρήστης :user ακύρωσε το τιμολόγιο :invoice', - 'activity_60': 'Η επαφή :contact είδε την προσφορά :quote', - 'activity_61': 'Ο χρήστης :user ενημέρωσε τον πελάτη :client', - 'activity_62': 'Ο χρήστης :user ενημέρωσε τον προμηθευτή :vendor', + 'Il sistema non è riuscito a inviare la fattura :invoice via e-mail', + 'activity_58': ':user ha stornato la fattura :invoice', + 'activity_59': ':user ha cancellato la fattura :invoice', + 'activity_60': ':contact ha visualizzato il preventivo :quote', + 'activity_61': ':user ha aggiornato il cliente :client', + 'activity_62': ':user ha aggiornato il fornitore :vendor', 'activity_63': - 'Ο χρήστης :user έστειλε με email πρώτη ειδοποίηση για το τιμολόγιο :invoice στην επαφή :contact', + ':user ha inviato il primo promemoria per la fattura :invoice a :contact', 'activity_64': - 'Ο χρήστης :user έστειλε με email δεύτερη ειδοποίηση για το τιμολόγιο :invoice στην επαφή :contact', + ':user ha inviato un secondo promemoria per la fattura :invoice a :contact', 'activity_65': - 'Ο χρήστης :user έστειλε με email τρίτη ειδοποίηση για το τιμολόγιο :invoice στην επαφή :contact', + ':user ha inviato il terzo promemoria per la fattura :invoice a :contact', 'activity_66': - 'Ο χρήστης :user έστειλε με email ατέρμονη ειδοποίηση για το τιμολόγιο :invoice στην επαφή :contact', + ':user ha inviato un promemoria ricorrente per la fattura :invoice a :contact', 'activity_80': ':user created subscription :subscription', 'activity_81': ':user updated subscription :subscription', 'activity_82': ':user archived subscription :subscription', 'activity_83': ':user deleted subscription :subscription', 'activity_84': ':user restored subscription :subscription', - 'one_time_password': 'Κωδικός Πρόσβασης μίας Φοράς', - 'emailed_quote': 'Επιτυχής αποστολή προσφοράς', - 'emailed_credit': 'Επιτυχής αποστολή πίστωσης με email', - 'marked_quote_as_sent': 'Επιτυχής ορισμός προσφοράς ως απεσταλμένη', - 'marked_credit_as_sent': 'Επιτυχής ορισμός πίστωσης ως απεσταλμένη', - 'expired': 'Ληγμένα', - 'all': 'Όλα', - 'select': 'Επιλογή', - 'long_press_multiselect': 'Πολλαπλή επιλογή με Παρατεταμένη πίεση', - 'custom_value1': 'Προσαρμοσμένη Τιμή', - 'custom_value2': 'Προσαρμοσμένη Τιμή', - 'custom_value3': 'Προσαρμοσμένη Τιμή 3', - 'custom_value4': 'Προσαρμοσμένη Τιμή 4', - 'email_style_custom': 'Προσαρμοσμένο Στυλ Email', - 'custom_message_dashboard': 'Προσαρμοσμένο Μήνυμα Πίνακα Διαχείρισης', + 'one_time_password': 'Password a uso singolo', + 'emailed_quote': 'Preventivo inviato con successo', + 'emailed_credit': 'Successfully emailed credit', + 'marked_quote_as_sent': + 'Preventivo contrassegnato come inviato con successo', + 'marked_credit_as_sent': 'Successfully marked credit as sent', + 'expired': 'Scaduto', + 'all': 'Tutti', + 'select': 'Seleziona', + 'long_press_multiselect': 'Long-press Multiselect', + 'custom_value1': 'Valore Personalizzato', + 'custom_value2': 'Valore Personalizzato', + 'custom_value3': 'Valore Personalizzato 3', + 'custom_value4': 'Valore Personalizzato 4', + 'email_style_custom': 'Custom Email Style', + 'custom_message_dashboard': + 'Messaggio Pannello di Controllo Personalizzato', 'custom_message_unpaid_invoice': - 'Προσαρμοσμένο Μήνυμα Ανεξόφλητου Τιμολογίου', - 'custom_message_paid_invoice': - 'Προσαρμοσμένο Μήνυμα Εξοφλημένου Τιμολογίου', - 'custom_message_unapproved_quote': - 'Προσαρμοσμένο Μήνυμα Μη Εγκεκριμένη Προσφοράς', - 'lock_invoices': 'Κλείδωμα Τιμολογίων', - 'translations': 'Μεταφράσεις', - 'task_number_pattern': 'Μοτίβο Αρίθμησης Εργασίας', - 'task_number_counter': 'Μετρητής Αρίθμησης Εργασίας', - 'expense_number_pattern': 'Μοτίβο Αρίθμησης Δαπάνης', - 'expense_number_counter': 'Μετρητής Αρίθμησης Δαπάνης', - 'vendor_number_pattern': 'Μοτίβο Αρίθμησης Προμηθευτή', - 'vendor_number_counter': 'Μετρητής Αρίθμησης Προμηθευτή', - 'ticket_number_pattern': 'Μοτίβο Αρίθμησης Αιτήματος Βοήθειας', - 'ticket_number_counter': 'Μετρητής Αρίθμησης Αιτήματος Βοήθειας', - 'payment_number_pattern': 'Μοτίβο Αρίθμησης Πληρωμής', - 'payment_number_counter': 'Μετρητής Αρίθμησης Πληρωμής', - 'invoice_number_pattern': 'Μοτίβο Αρίθμησης Τιμολογίου', - 'invoice_number_counter': 'Αρίθμηση Τιμολογίου', - 'quote_number_pattern': 'Μοτίβο Αρίθμησης Προσφοράς', - 'quote_number_counter': 'Αρίθμηση Προσφοράς', - 'client_number_pattern': 'Μοντέλο αριθμών πιστωτικού', - 'client_number_counter': 'Μετρητής Αριθμών πιστωτικών', - 'credit_number_pattern': 'Μοντέλο πιστωτικού αριθμού', - 'credit_number_counter': 'Μετρητής Αριθμών πιστωτικών', - 'reset_counter_date': 'Μηδενισμός Μετρητή Ημερομηνίας', - 'counter_padding': 'Αντισταθμιστής', + 'Messaggio personalizzato su fattura non pagata', + 'custom_message_paid_invoice': 'Messaggio personalizzato fattura pagata', + 'custom_message_unapproved_quote': 'Custom Unapproved Quote Message', + 'lock_invoices': 'Blocca fatture', + 'translations': 'Traduzioni', + 'task_number_pattern': 'Pattern numero attività', + 'task_number_counter': 'Contatore numero attività', + 'expense_number_pattern': 'Formato numero spesa', + 'expense_number_counter': 'Contatore numero spesa', + 'vendor_number_pattern': 'Formato numero fornitore', + 'vendor_number_counter': 'Contatore numero venditore', + 'ticket_number_pattern': 'Formato numero ticket', + 'ticket_number_counter': 'Contatore numero ticket', + 'payment_number_pattern': 'Formato numero pagamento', + 'payment_number_counter': 'Contatore numero pagamento', + 'invoice_number_pattern': 'Formato numero fatture', + 'invoice_number_counter': 'Contatore numerazione fatture', + 'quote_number_pattern': 'Formato numero preventivi', + 'quote_number_counter': 'Contatore numerazione preventivi', + 'client_number_pattern': 'Formato numero crediti', + 'client_number_counter': 'Contatore numero credito', + 'credit_number_pattern': 'Formato numero crediti', + 'credit_number_counter': 'Contatore numero credito', + 'reset_counter_date': 'Resetta contatore data', + 'counter_padding': 'Riempimento contatore', 'shared_invoice_quote_counter': - 'Κοινόχρηστο παράθυρο παραγγελίας τιμολογίου', - 'default_tax_name_1': 'Προεπιλεγμένη ονομασία φορολογικού συντελεστή 1', - 'default_tax_rate_1': 'Προεπιλεγμένος φορολογικός συντελεστής 1', - 'default_tax_name_2': 'Προεπιλεγμένη ονομασία φορολογικού συντελεστή 2', - 'default_tax_rate_2': 'Προεπιλεγμένος φορολογικός συντελεστής 2', - 'default_tax_name_3': 'Προεπιλεγμένη ονομασία φορολογικού συντελεστή 3', - 'default_tax_rate_3': 'Προεπιλεγμένος φορολογικός συντελεστής 3', - 'email_subject_invoice': 'Θέμα τιμολογίου με ηλεκτρονικό ταχυδρομείο', - 'email_subject_quote': 'Θέμα ηλεκτρονικού ταχυδρομείου', - 'email_subject_payment': 'Θέμα Πληρωμής με ηλεκτρονικό ταχυδρομείο', - 'email_subject_payment_partial': 'Θέμα Email μερικής πληρωμής', - 'show_table': 'Εμφάνιση Πίνακα', - 'show_list': 'Εμφάνιση Λίστας', - 'client_city': 'Πόλη Πελάτη', - 'client_state': 'Κράτος Πελάτη', - 'client_country': 'Χώρα Πελάτη', - 'client_is_active': 'Ο Πελάτης είναι Ενεργός', - 'client_balance': 'Ισοζύγιο Πελατών', - 'client_address1': 'Οδός Πελάτη', - 'client_address2': 'Διαμέρισμα Πελάτη', - 'vendor_address1': 'Vendor Street', - 'vendor_address2': 'Vendor Apt/Suite', - 'client_shipping_address1': 'Οδός Αποστολής Πελάτη', - 'client_shipping_address2': 'Διαμέρισμα Αποστολής Πελάτη', - 'type': 'Τύπος', - 'invoice_amount': 'Ποσό Τιμολογίου', - 'invoice_due_date': 'Ημερομηνία Ολοκλήρωσης', - 'tax_rate1': 'Φορολογικός Συντελεστής 1', - 'tax_rate2': 'Φορολογικός Συντελεστής 2', - 'tax_rate3': 'Φορολογικός Συντελεστής 3', - 'auto_bill': 'Αυτόματη Χρέωση', - 'archived_at': 'Αρχειοθετήθηκε στις', - 'has_expenses': 'Εχει έξοδα', - 'custom_taxes1': 'Προσαρμοσμένη Φορολόγηση 1', - 'custom_taxes2': 'Προσαρμοσμένη Φορολόγηση 2', - 'custom_taxes3': 'Προσαρμοσμένη Φορολόγηση 3', - 'custom_taxes4': 'Προσαρμοσμένη Φορολόγηση 4', - 'custom_surcharge1': 'Προσαρμοσμένη Προσαύξηση 1', - 'custom_surcharge2': 'Προσαρμοσμένη Προσαύξηση 2', - 'custom_surcharge3': 'Προσαρμοσμένη Προσαύξηση 3', - 'custom_surcharge4': 'Προσαρμοσμένη Προσαύξηση 4', - 'is_deleted': 'Εχει διαγραφεί', - 'vendor_city': 'Πόλη Προμηθευτή', - 'vendor_state': 'Κράτος Προμηθευτή', - 'vendor_country': 'Χώρα Προμηθευτή', - 'is_approved': 'Είναι Αποδεκτή', - 'tax_name': 'Ονομασία Φόρου', - 'tax_amount': 'Ποσό Φόρου', - 'tax_paid': 'Πληρωμένος Φόρος', - 'payment_amount': 'Ποσό Πληρωμής', - 'age': 'Ηλικία', - 'is_running': 'Εκτελείται', - 'time_log': 'Αρχείο Καταγραφής Χρόνου', - 'bank_id': 'Τράπεζα', - 'expense_category_id': 'Κωδικός Κατηγορίας Δαπάνης', - 'expense_category': 'Κατηγορία Δαπάνης', - 'invoice_currency_id': 'Κωδικός Νομίσματος Τιμολογίου', - 'tax_name1': 'Ονομασία Φόρου 1', - 'tax_name2': 'Ονομασία Φόρου 2', - 'tax_name3': 'Ονομασία Φόρου 2', - 'transaction_id': 'Κωδικός Συναλλαγής', + 'Contatore condiviso per fatture/preventivi', + 'default_tax_name_1': 'Default Tax Name 1', + 'default_tax_rate_1': 'Default Tax Rate 1', + 'default_tax_name_2': 'Default Tax Name 2', + 'default_tax_rate_2': 'Default Tax Rate 2', + 'default_tax_name_3': 'Default Tax Name 3', + 'default_tax_rate_3': 'Default Tax Rate 3', + 'email_subject_invoice': 'Oggetto della fattura e-mail', + 'email_subject_quote': 'Email Quote Subject', + 'email_subject_payment': 'Email Payment Subject', + 'email_subject_payment_partial': 'Oggetto e-mail pagamento parziale', + 'show_table': 'Mostra Tabella', + 'show_list': 'Mostra Lista', + 'client_city': 'Città cliente', + 'client_state': 'Stato cliente', + 'client_country': 'Paese cliente', + 'client_is_active': 'Il cliente è attivo', + 'client_balance': 'Bilancio cliente', + 'client_address1': 'Via del cliente', + 'client_address2': 'Appartamento/Scala del cliente', + 'vendor_address1': 'Via Fornitore', + 'vendor_address2': 'Scala/Appartamento Fornitore', + 'client_shipping_address1': 'Via spedizione cliente', + 'client_shipping_address2': 'Appartametno/Scala spedizione cliente', + 'type': 'Tipo', + 'invoice_amount': 'Importo Fattura', + 'invoice_due_date': 'Scadenza fattura', + 'tax_rate1': 'Tax Rate 1', + 'tax_rate2': 'Tax Rate 2', + 'tax_rate3': 'Tax Rate 3', + 'auto_bill': 'Fatturazione automatica', + 'archived_at': 'Archived At', + 'has_expenses': 'Ha spese', + 'custom_taxes1': 'Tasse Personalizzate 1', + 'custom_taxes2': 'Tasse Personalizzate 2', + 'custom_taxes3': 'Tasse Personalizzate 3', + 'custom_taxes4': 'Tasse Personalizzate 4', + 'custom_surcharge1': 'Imposta personalizzata 1', + 'custom_surcharge2': 'Imposta personalizzata 2', + 'custom_surcharge3': 'Imposta personalizzata 3', + 'custom_surcharge4': 'Imposta personalizzata 4', + 'is_deleted': 'È cancellato', + 'vendor_city': 'Città Fornitore', + 'vendor_state': 'Stato Fornitore', + 'vendor_country': 'Paese fornitore', + 'is_approved': 'È approvato', + 'tax_name': 'Nome Tassa', + 'tax_amount': 'Importo tassa', + 'tax_paid': 'Tassa pagata', + 'payment_amount': 'Importo Pagamento', + 'age': 'Età', + 'is_running': 'Is Running', + 'time_log': 'Log temporale', + 'bank_id': 'Banca', + 'expense_category_id': 'ID della categoria di spesa', + 'expense_category': 'Categoria Spesa', + 'invoice_currency_id': 'ID Valuta Fattura', + 'tax_name1': 'Nome tassa 1', + 'tax_name2': 'Nome tassa 2', + 'tax_name3': 'Tax Name 3', + 'transaction_id': 'ID transazione', 'status_color_theme': 'Status Color Theme', 'load_color_theme': 'Load Color Theme', }, - 'it': { + 'ja': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'The fee for a :amount invoice would be :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Approve', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -29823,7 +30179,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'convert_to': 'Convert To', 'client_currency': 'Client Currency', 'company_currency': 'Company Currency', - 'purged_client': 'Cliente eliminato con successo', + 'purged_client': 'Successfully purged client', 'custom_emails_disabled_help': 'To prevent spam we require upgrading to a paid account to customize the email', 'upgrade_to_add_company': 'Upgrade your plan to add companies', @@ -29859,7 +30215,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'giropay': 'GiroPay', 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', - 'set_password': 'Imposta Password', + 'set_password': 'パスワードを設定', 'recommend_desktop': 'We recommend using the desktop app for the best performance', 'recommend_mobile': @@ -29881,8 +30237,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'registration': 'Registration', 'unauthorized_stripe_warning': 'Please authorize Stripe to accept online payments.', - 'view_expense': 'Vedi spesa # :expense', - 'view_statement': 'Estratto Conto', + 'view_expense': 'View expense # :expense', + 'view_statement': 'View Statement', 'sepa': 'SEPA Direct Debit', 'ideal': 'iDEAL', 'przelewy24': 'Przelewy24', @@ -29905,19 +30261,18 @@ mixin LocalizationsProvider on LocaleCodeAware { 'bulk_email_invoice': 'Email Invoice', 'bulk_email_quote': 'Email Quote', 'bulk_email_credit': 'Email Credit', - 'from_name': 'Da Nome', + 'from_name': 'From Name', 'clone_to_expense': 'Clone to expense', - 'recurring_expense': 'Spesa Ricorrente', - 'recurring_expenses': 'Spese Ricorrenti', - 'new_recurring_expense': 'Nuova Spesa Ricorrente', - 'edit_recurring_expense': 'Modifica Spesa Ricorrente', - 'created_recurring_expense': 'Spesa ricorrente creata con successo', - 'updated_recurring_expense': 'Spesa ricorrente aggiornata con successo', - 'archived_recurring_expense': 'Spesa ricorrente archiviata con successo', - 'deleted_recurring_expense': 'Progetto cancellato con sucesso', + 'recurring_expense': 'Recurring Expense', + 'recurring_expenses': 'Recurring Expenses', + 'new_recurring_expense': 'New Recurring Expense', + 'edit_recurring_expense': 'Edit Recurring Expense', + 'created_recurring_expense': 'Successfully created recurring expense', + 'updated_recurring_expense': 'Successfully updated recurring expense', + 'archived_recurring_expense': 'Successfully archived recurring expense', + 'deleted_recurring_expense': 'Successfully deleted project', 'removed_recurring_expense': 'Successfully removed recurring expense', - 'restored_recurring_expense': - 'Spesa ricorrente riprestinata con successo', + 'restored_recurring_expense': 'Successfully restored recurring expense', 'search_recurring_expense': 'Search Recurring Expense', 'search_recurring_expenses': 'Search Recurring Expenses', 'last_sent_date': 'Last Sent Date', @@ -29939,7 +30294,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'expense_tax_help': 'Item tax rates are disabled', 'enable_markdown': 'Enable Markdown', 'enable_markdown_help': 'Convert markdown to HTML on the PDF', - 'user_guide': 'Guida Utente', + 'user_guide': 'User Guide', 'add_second_contact': 'Add Second Contact', 'previous_page': 'Previous Page', 'next_page': 'Next Page', @@ -29957,7 +30312,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Table Alternate Row Background Color', 'invoice_header_background_color': 'Invoice Header Background Color', 'invoice_header_font_color': 'Invoice Header Font Color', - 'net_subtotal': 'Netto', + 'net_subtotal': 'Net', 'review_app': 'Review App', 'check_status': 'Check Status', 'free_trial': 'Free Trial', @@ -29995,8 +30350,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'step_2_authorize': 'Step 2: Authorize', 'account_id': 'Account ID', 'migration_not_yet_completed': 'The migration has not yet completed', - 'activity_100': - 'fattura ricorrente :recurring_invoice creata dall\'utente :user', + 'activity_100': ':user created recurring invoice :recurring_invoice', 'activity_101': ':user updated recurring invoice :recurring_invoice', 'activity_102': ':user archived recurring invoice :recurring_invoice', 'activity_103': ':user deleted recurring invoice :recurring_invoice', @@ -30015,24 +30369,23 @@ mixin LocalizationsProvider on LocaleCodeAware { 'credit_created': 'Credit Created', 'pro': 'Pro', 'enterprise': 'Enterprise', - 'last_updated': 'Ultimo aggiornamento', + 'last_updated': 'Last Updated', 'invoice_item': 'Invoice Item', 'quote_item': 'Quote Item', - 'contact_first_name': 'Nome contatto', - 'contact_last_name': 'Cognome contatto', + 'contact_first_name': 'Contact First Name', + 'contact_last_name': 'Contact Last Name', 'order': 'Order', - 'unassigned': 'Non assegnato', - 'partial_value': 'Deve essere maggiore di zero ed inferiore al totale', + 'unassigned': 'Unassigned', + 'partial_value': 'Must be greater than zero and less than the total', 'search_kanban': 'Search Kanban', 'search_kanbans': 'Search Kanban', 'kanban': 'Kanban', - 'enable': 'Abilita', + 'enable': '有効', 'move_top': 'Move Top', 'move_up': 'Move Up', 'move_down': 'Move Down', 'move_bottom': 'Move Bottom', - 'subdomain_help': - 'Imposta il sottodominio o visualizza la fattura sul tuo sito web.', + 'subdomain_help': 'あなた自身のWebサイトで請求書を表示するために、サブドメインを設定', 'body_variable_missing': 'Error: the custom email must include a :body variable', 'add_body_variable_message': 'Make sure to include a :body variable', @@ -30057,7 +30410,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'header_key': 'Header Key', 'header_value': 'Header Value', 'recurring_products': 'Recurring Products', - 'promo_code': 'Codice Promo', + 'promo_code': 'Promo code', 'promo_discount': 'Promo Discount', 'allow_cancellation': 'Allow Cancellation', 'per_seat_enabled': 'Per Seat Enabled', @@ -30070,7 +30423,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'refund_period': 'Refund Period', 'webhook_configuration': 'Webhook Configuration', 'purchase_page': 'Purchase Page', - 'security': 'Sicurezza', + 'security': 'Security', 'email_bounced': 'Email Bounced', 'email_spam_complaint': 'Spam Complaint', 'email_delivery': 'Email Delivery', @@ -30080,133 +30433,130 @@ mixin LocalizationsProvider on LocaleCodeAware { 'pdf_failed': 'PDF Failed', 'pdf_success': 'PDF Success', 'modified': 'Modified', - 'subscription': 'Abbonamento', - 'subscriptions': 'Abbonamenti', - 'new_subscription': 'Nuovo Abbonamento', - 'edit_subscription': 'Modifica Abbonamento', - 'created_subscription': 'Abbonamento creato con successo', - 'updated_subscription': 'Abbonamento aggiornato con successo', - 'archived_subscription': 'Abbonamento archiviato con successo', + 'subscription': 'Subscription', + 'subscriptions': 'Subscriptions', + 'new_subscription': 'New Subscription', + 'edit_subscription': 'Edit Subscription', + 'created_subscription': 'Successfully created subscription', + 'updated_subscription': 'Successfully updated subscription', + 'archived_subscription': 'Successfully archived subscription', 'deleted_subscription': 'Successfully deleted subscription', 'removed_subscription': 'Successfully removed subscription', 'restored_subscription': 'Successfully restored subscription', - 'search_subscription': 'Cerca 1 abbonamento', - 'search_subscriptions': 'Cerca :count abbonamenti', - 'subdomain_is_not_available': 'Sottodominio non disponibile', - 'connect_gmail': 'Connetti Gmail', - 'disconnect_gmail': 'Disconnetti Gmail', + 'search_subscription': 'Search 1 Subscription', + 'search_subscriptions': 'Search :count Subscriptions', + 'subdomain_is_not_available': 'Subdomain is not available', + 'connect_gmail': 'Connect Gmail', + 'disconnect_gmail': 'Disconnect Gmail', 'connected_gmail': 'Successfully connected Gmail', 'disconnected_gmail': 'Successfully disconnected Gmail', 'update_fail_help': 'Changes to the codebase may be blocking the update, you can run this command to discard the changes:', - 'client_id_number': 'Numero ID cliente', - 'count_minutes': ':count Minuti', - 'password_timeout': 'Scadenza Password', - 'shared_invoice_credit_counter': - 'Contatore condiviso per fatture/crediti', - 'use_last_email': 'Usa ultima email', - 'activate_company': 'Attiva azienda', + 'client_id_number': 'Client ID Number', + 'count_minutes': ':count Minutes', + 'password_timeout': 'Password Timeout', + 'shared_invoice_credit_counter': 'Shared Invoice/Credit Counter', + 'use_last_email': 'Use last email', + 'activate_company': 'Activate Company', 'activate_company_help': - 'Abilitare le e-mail, le fatture ricorrenti e le notifiche', - 'an_error_occurred_try_again': - 'Si è verificato un errore, per favore riprova', - 'please_first_set_a_password': 'Si prega di impostare prima una password', + 'Enable emails, recurring invoices and notifications', + 'an_error_occurred_try_again': 'An error occurred, please try again', + 'please_first_set_a_password': 'Please first set a password', 'changing_phone_disables_two_factor': - 'Attenzione: Cambiare il numero di telefono disabiliterà l\'autenticazione a due fattori', - 'help_translate': 'Contribuisci alla traduzione', - 'please_select_a_country': 'Selezionare un paese', - 'resend_invite': 'Re-invia invito', - 'disabled_two_factor': 'Disattivato con successo 2FA', + 'Warning: Changing your phone number will disable 2FA', + 'help_translate': 'Help Translate', + 'please_select_a_country': 'Please select a country', + 'resend_invite': 'Resend Invitation', + 'disabled_two_factor': 'Successfully disabled 2FA', 'connected_google': 'Successfully connected account', 'disconnected_google': 'Successfully disconnected account', - 'delivered': 'Consegnato', + 'delivered': 'Delivered', 'bounced': 'Bounced', 'spam': 'Spam', - 'view_docs': 'Vedi documentazione', + 'view_docs': 'View Docs', 'enter_phone_to_enable_two_factor': - 'Si prega di fornire un numero di telefono cellulare per abilitare l\'autenticazione a due fattori', - 'send_sms': 'Invia SMS', - 'sms_code': 'Codice SMS', + 'Please provide a mobile phone number to enable two factor authentication', + 'send_sms': 'Send SMS', + 'sms_code': 'SMS Code', 'two_factor_setup_help': 'Scan the bar code with a :link compatible app.', - 'enabled_two_factor': 'Successfully enabled Two-Factor Authentication', + 'enabled_two_factor': '2要素認証が有効化されました', 'connect_google': 'Connect Google', 'disconnect_google': 'Disconnect Google', - 'enable_two_factor': 'Autenticazione a due fattori', - 'disable_two_factor': 'Disabilita 2FA', + 'enable_two_factor': '2要素認証', + 'disable_two_factor': 'Disable Two Factor', 'require_password_with_social_login': - 'Richiedi una password per il login Social', - 'stay_logged_in': 'Rimani autenticato', - 'session_about_to_expire': 'Attenzione: la tua sessione sta per scadere', - 'count_hours': ':count ore', - 'count_day': '1 giorno', - 'count_days': ':count giorni', - 'web_session_timeout': 'Timeout della sessione web', - 'security_settings': 'Impostazioni di Sicurezza', - 'resend_email': 'Reinvia email', - 'confirm_your_email_address': 'Si prega di confermare l\'indirizzo email', - 'refunded_payment': 'Pagamento Rimborsato', + 'Require Password with Social Login', + 'stay_logged_in': 'Stay Logged In', + 'session_about_to_expire': 'Warning: Your session is about to expire', + 'count_hours': ':count Hours', + 'count_day': '1 Day', + 'count_days': ':count Days', + 'web_session_timeout': 'Web Session Timeout', + 'security_settings': 'Security Settings', + 'resend_email': 'Resend Email', + 'confirm_your_email_address': 'Please confirm your email address', + 'refunded_payment': 'Refunded Payment', 'partially_unapplied': 'Partially Unapplied', 'select_a_gmail_user': 'Please select a user authenticated with Gmail', 'list_long_press': 'List Long Press', - 'show_actions': 'Mostra azioni', - 'start_multiselect': 'Lancia multiselezione', - 'email_sent_to_confirm_email': - 'Una mail è stata inviata per confermare l\'indirizzo email', + 'show_actions': 'Show Actions', + 'start_multiselect': 'Start Multiselect', + 'email_sent_to_confirm_email': 'メールアドレス確認用メールが送信されました', 'counter_pattern_error': - 'Per usare :client_counter aggiungere :client_number o :client_id_number per evitare conflitti', + 'To use :client_counter please add either :client_number or :client_id_number to prevent conflicts', 'this_quarter': 'This Quarter', 'last_quarter': 'Last Quarter', - 'to_update_run': 'Per aggiornare esegui', - 'convert_to_invoice': 'Converti a Fattura', - 'registration_url': 'URL di registrazione', - 'invoice_project': 'Fattura progetto', - 'invoice_task': 'Fattura l\'attività', - 'invoice_expense': 'Fattura Spesa', - 'search_payment_term': 'Ricerca 1 Termine di pagamento', - 'search_payment_terms': 'Cerca :count termini di pagamento', - 'save_and_preview': 'Salva e mostra anteprima', - 'save_and_email': 'Salva e invia e-mail', + 'to_update_run': 'To update run', + 'convert_to_invoice': '請求書に変換', + 'registration_url': 'Registration URL', + 'invoice_project': 'Invoice Project', + 'invoice_task': 'Invoice Task', + 'invoice_expense': 'Invoice Expense', + 'search_payment_term': 'Search 1 Payment Term', + 'search_payment_terms': 'Search :count Payment Terms', + 'save_and_preview': 'Save and Preview', + 'save_and_email': 'Save and Email', 'supported_events': 'Supported Events', - 'converted_amount': 'Importo convertito', + 'converted_amount': 'Converted Amount', 'converted_balance': 'Converted Balance', 'converted_paid_to_date': 'Converted Paid to Date', 'converted_credit_balance': 'Converted Credit Balance', 'converted_total': 'Converted Total', - 'is_sent': 'È inviato', - 'default_documents': 'Documenti predefiniti', - 'document_upload': 'Caricamento Documenti', - 'document_upload_help': 'Permettere ai clienti di caricare documenti', - 'expense_total': 'Totale Spese', - 'enter_taxes': 'Inserire tasse', - 'by_rate': 'Per prezzo', - 'by_amount': 'Per ammontare', - 'enter_amount': 'Inserire importo', - 'before_taxes': 'Prima delle tasse', - 'after_taxes': 'Dopo le tasse', - 'color': 'Colore', - 'show': 'Mostra', - 'hide': 'Nascondi', - 'empty_columns': 'Colonne vuote', + 'is_sent': 'Is Sent', + 'default_documents': 'Default Documents', + 'document_upload': 'Document Upload', + 'document_upload_help': 'Enable clients to upload documents', + 'expense_total': 'Expense Total', + 'enter_taxes': 'Enter Taxes', + 'by_rate': 'By Rate', + 'by_amount': 'By Amount', + 'enter_amount': 'Enter Amount', + 'before_taxes': 'Before Taxes', + 'after_taxes': 'After Taxes', + 'color': 'Color', + 'show': 'Show', + 'hide': '隠す', + 'empty_columns': 'Empty Columns', 'debug_mode_is_enabled': 'Debug mode is enabled', 'debug_mode_is_enabled_help': 'Warning: it is intended for use on local machines, it can leak credentials. Click to learn more.', - 'running_tasks': 'Attività in corso', - 'recent_tasks': 'Attività Recenti', - 'recent_expenses': 'Spese Recenti', - 'upcoming_expenses': 'Spese in arrivo', - 'update_app': 'Aggiorna App', - 'started_import': 'Importazione avviata con successo', + 'running_tasks': 'Running Tasks', + 'recent_tasks': 'Recent Tasks', + 'recent_expenses': 'Recent Expenses', + 'upcoming_expenses': 'Upcoming Expenses', + 'update_app': 'Update App', + 'started_import': 'Successfully started import', 'duplicate_column_mapping': 'Duplicate column mapping', - 'uses_inclusive_taxes': 'Usa tasse inclusive', + 'uses_inclusive_taxes': 'Uses Inclusive Taxes', 'is_amount_discount': 'Is Amount Discount', - 'column': 'Colonna', - 'sample': 'Esempio', + 'column': 'カラム', + 'sample': 'サンプル', 'map_to': 'Map To', - 'import': 'Importa', + 'import': 'インポート', 'first_row_as_column_names': 'Use first row as column names', - 'select_file': 'Seleziona un file, per favore', + 'select_file': 'ファイルを選択してください。', 'no_file_selected': 'No File Selected', - 'csv_file': 'Seleziona file CSV', + 'csv_file': 'CSVファイル', 'csv': 'CSV', 'freshbooks': 'FreshBooks', 'invoice2go': 'Invoice2go', @@ -30215,177 +30565,173 @@ mixin LocalizationsProvider on LocaleCodeAware { 'zoho': 'Zoho', 'accounting': 'Accounting', 'required_files_missing': 'Please provide all CSVs.', - 'import_type': 'Tipo di importazione', + 'import_type': 'Import Type', 'html_mode': 'HTML Mode', 'html_mode_help': 'Preview updates faster but is less accurate', - 'view_licenses': 'Visualizza le licenze', + 'view_licenses': 'View Licenses', 'webhook_url': 'Webhook URL', - 'fullscreen_editor': 'Editor a schermo intero', - 'sidebar_editor': 'Editor barra laterale', - 'please_type_to_confirm': 'Digita \":value\" per confermare', + 'fullscreen_editor': 'Fullscreen Editor', + 'sidebar_editor': 'Sidebar Editor', + 'please_type_to_confirm': 'Please type \":value\" to confirm', 'purge': 'Purge', - 'service': 'Servizio', - 'clone_to': 'Clona come', - 'clone_to_other': 'Clona come altro', - 'labels': 'Etichette', + 'service': 'Service', + 'clone_to': 'Clone To', + 'clone_to_other': 'Clone to Other', + 'labels': 'Labels', 'add_custom': 'Add Custom', 'payment_tax': 'Payment Tax', - 'unpaid': 'Non pagata', + 'unpaid': '未払い', 'white_label': 'White Label', - 'delivery_note': 'Nota di consegna', - 'sent_invoices_are_locked': 'Le fatture inviate sono bloccate', - 'paid_invoices_are_locked': 'Le fatture pagate sono bloccate', - 'source_code': 'Codice Sorgente', + 'delivery_note': 'Delivery Note', + 'sent_invoices_are_locked': '送信済請求書はロックされました', + 'paid_invoices_are_locked': 'Paid invoices are locked', + 'source_code': 'Source Code', 'app_platforms': 'App Platforms', - 'invoice_late': 'Fattura in ritardo', - 'quote_expired': 'Preventivo scaduto', - 'partial_due': 'Da versare (parziale)', - 'invoice_total': 'Totale Fattura', - 'quote_total': 'Totale Preventivo', - 'credit_total': 'Credito Totale', - 'recurring_invoice_total': 'Totale fattura', - 'actions': 'Azioni', - 'expense_number': 'Numero spesa', - 'task_number': 'Numero attività', - 'project_number': 'Numero progetto', - 'project_name': 'Nome progetto', - 'warning': 'Attenzione', - 'view_settings': 'Impostazioni Visualizzazione', + 'invoice_late': 'Invoice Late', + 'quote_expired': 'Quote Expired', + 'partial_due': 'Partial Due', + 'invoice_total': '請求合計', + 'quote_total': '見積金額合計', + 'credit_total': 'Credit Total', + 'recurring_invoice_total': 'Invoice Total', + 'actions': 'Actions', + 'expense_number': '経費番号', + 'task_number': 'タスク番号', + 'project_number': 'プロジェクト番号', + 'project_name': 'Project Name', + 'warning': 'Warning', + 'view_settings': 'View Settings', 'company_disabled_warning': - 'Attenzione: questa azienda non è ancora stata attivata', - 'late_invoice': 'Fattura in ritardo', - 'expired_quote': 'Preventivo scaduto', - 'remind_invoice': 'Ricorda fattura', + 'Warning: this company has not yet been activated', + 'late_invoice': 'Late Invoice', + 'expired_quote': 'Expired Quote', + 'remind_invoice': 'Remind Invoice', 'cvv': 'CVV', - 'client_name': 'Nome Cliente', - 'client_phone': 'Telefono cliente', - 'required_fields': 'Campi richiesti', + 'client_name': '顧客名', + 'client_phone': 'Client Phone', + 'required_fields': 'Required Fields', 'calculated_rate': 'Calculated Rate', - 'default_task_rate': 'Prezzo di attività predefinito', - 'clear_cache': 'Pulisci cache', - 'sort_order': 'Ordinamento', - 'task_status': 'Stato', - 'task_statuses': 'Stati attività', - 'new_task_status': 'Nuovo stato attività', - 'edit_task_status': 'Modifica stato attività', - 'created_task_status': 'Stato attività creato con successo', - 'updated_task_status': 'Stato dell\'attività aggiornato con successo', - 'archived_task_status': 'Stato attività archiviato con successo', - 'deleted_task_status': 'Stato attività cancellato con successo', - 'removed_task_status': 'Stato attività rimosso con successo', - 'restored_task_status': 'Stato attività ripristinato con successo', - 'archived_task_statuses': ':value stati attività archiviati con successo', - 'deleted_task_statuses': ':value stati attività cancellati con successo', - 'restored_task_statuses': - ':value stati attività ripristinati con successo', - 'search_task_status': 'Cerca 1 stato attività', - 'search_task_statuses': 'Cerca :count stati attività', - 'show_tasks_table': 'Mostra tabella attività', + 'default_task_rate': 'Default Task Rate', + 'clear_cache': 'Clear Cache', + 'sort_order': 'Sort Order', + 'task_status': 'Status', + 'task_statuses': 'Task Statuses', + 'new_task_status': 'New Task Status', + 'edit_task_status': 'Edit Task Status', + 'created_task_status': 'Successfully created task status', + 'updated_task_status': 'Successfully update task status', + 'archived_task_status': 'Successfully archived task status', + 'deleted_task_status': 'Successfully deleted task status', + 'removed_task_status': 'Successfully removed task status', + 'restored_task_status': 'Successfully restored task status', + 'archived_task_statuses': 'Successfully archived :value task statuses', + 'deleted_task_statuses': 'Successfully deleted :value task statuses', + 'restored_task_statuses': 'Successfully restored :value task statuses', + 'search_task_status': 'Search 1 Task Status', + 'search_task_statuses': 'Search :count Task Statuses', + 'show_tasks_table': 'Show Tasks Table', 'show_tasks_table_help': - 'Mostra sempre la sezione delle attività quando si creano le fatture', - 'invoice_task_timelog': 'Timelog delle attività di fatturazione', - 'invoice_task_timelog_help': - 'Aggiungere i dettagli sull\'orario alle voci della fattura', - 'invoice_task_datelog': 'Datelog delle attività di fatturazione', - 'invoice_task_datelog_help': - 'Aggiungi i dettagli della data alle voci della fattura', - 'auto_start_tasks_help': 'Avvia le attività prima di salvare', - 'configure_statuses': 'Configura gli stati', - 'task_settings': 'Impostazioni attività', - 'configure_categories': 'Configura Categorie', - 'expense_categories': 'Categorie di Spesa', - 'new_expense_category': 'Nuova Categoria di Spesa', - 'edit_expense_category': 'Modifica Categoria di Spesa', - 'created_expense_category': 'Categoria spese creata con successo', - 'updated_expense_category': 'Categoria spese aggiornata con successo', - 'archived_expense_category': 'Categoria spese archiviata con successo', - 'deleted_expense_category': 'Categoria eliminata con successo', - 'removed_expense_category': 'Categoria di spesa rimossa con successo', - 'restored_expense_category': 'Categoria spese ripristinata con successo', + 'Always show the tasks section when creating invoices', + 'invoice_task_timelog': 'Invoice Task Timelog', + 'invoice_task_timelog_help': 'Add time details to the invoice line items', + 'invoice_task_datelog': 'Invoice Task Datelog', + 'invoice_task_datelog_help': 'Add date details to the invoice line items', + 'auto_start_tasks_help': 'Start tasks before saving', + 'configure_statuses': 'Configure Statuses', + 'task_settings': 'Task Settings', + 'configure_categories': 'Configure Categories', + 'expense_categories': 'Expense Categories', + 'new_expense_category': 'New Expense Category', + 'edit_expense_category': 'Edit Expense Category', + 'created_expense_category': 'Successfully created expense category', + 'updated_expense_category': 'Successfully updated expense category', + 'archived_expense_category': 'Successfully archived expense category', + 'deleted_expense_category': 'Successfully deleted category', + 'removed_expense_category': 'Successfully removed expense category', + 'restored_expense_category': 'Successfully restored expense category', 'archived_expense_categories': - 'Archiviato con successo :count categorie di spesa', + 'Successfully archived :count expense category', 'deleted_expense_categories': - 'Eliminate con successo :value categorie di spesa', + 'Successfully deleted expense :value categories', 'restored_expense_categories': - 'Ripristinate con successo :value categorie di spesa', - 'search_expense_category': 'Cerca 1 categoria di spesa', - 'search_expense_categories': 'Cerca :count categorie di spesa', + 'Successfully restored expense :value categories', + 'search_expense_category': 'Search 1 Expense Category', + 'search_expense_categories': 'Search :count Expense Categories', 'use_available_credits': 'Use Available Credits', - 'show_option': 'Mostra opzione', + 'show_option': 'Show Option', 'negative_payment_error': 'The credit amount cannot exceed the payment amount', - 'view_changes': 'Vedi modifiche', - 'force_update': 'Forza aggiornamento', + 'view_changes': 'View Changes', + 'force_update': '強制的にアップデート', 'force_update_help': - 'Stai eseguendo l\'ultima versione, ma potrebbero essere disponibili dei fix in attesa.', - 'mark_paid_help': 'Traccia se le spese sono state pagate', - 'should_be_invoiced': 'Deve essere fatturata', - 'should_be_invoiced_help': 'Permettere la fatturazione della spesa', - 'add_documents_to_invoice_help': 'Rendi i documenti visibili', - 'convert_currency_help': 'Imposta un tasso di cambio', - 'expense_settings': 'Impostazioni Spese', - 'clone_to_recurring': 'Clona come ricorrente', + 'You are running the latest version but there may be pending fixes available.', + 'mark_paid_help': 'Track the expense has been paid', + 'should_be_invoiced': 'Should be invoiced', + 'should_be_invoiced_help': 'Enable the expense to be invoiced', + 'add_documents_to_invoice_help': 'Make the documents visible', + 'convert_currency_help': 'Set an exchange rate', + 'expense_settings': 'Expense Settings', + 'clone_to_recurring': 'Clone to Recurring', 'crypto': 'Crypto', 'paypal': 'PayPal', 'alipay': 'Alipay', 'sofort': 'Sofort', 'apple_pay': 'Apple/Google Pay', - 'user_field': 'Campo utente', - 'variables': 'Variabili', - 'show_password': 'Mostra Password', - 'hide_password': 'Nascondi Password', - 'copy_error': 'Copia Errore', + 'user_field': 'User Field', + 'variables': 'Variables', + 'show_password': 'Show Password', + 'hide_password': 'Hide Password', + 'copy_error': 'Copy Error', 'capture_card': 'Capture Card', - 'auto_bill_enabled': 'Fattura automatica abilitata', - 'total_taxes': 'Totale Tasse', - 'line_taxes': 'Riga tasse', - 'total_fields': 'Campi Totale', - 'stopped_recurring_invoice': 'Fermata con successo la fattura ricorrente', - 'started_recurring_invoice': 'Fattura ricorrente avviata con successo', - 'resumed_recurring_invoice': 'Fattura ricorrente ripresa con successo', + 'auto_bill_enabled': 'Auto Bill Enabled', + 'total_taxes': 'Total Taxes', + 'line_taxes': 'Line Taxes', + 'total_fields': 'Total Fields', + 'stopped_recurring_invoice': 'Successfully stopped recurring invoice', + 'started_recurring_invoice': 'Successfully started recurring invoice', + 'resumed_recurring_invoice': 'Successfully resumed recurring invoice', 'gateway_refund': 'Gateway Refund', 'gateway_refund_help': 'Process the refund with the payment gateway', 'due_date_days': 'Due Date', - 'paused': 'Pausato', - 'mark_active': 'Segna come attivo', - 'day_count': 'Giorno :count', + 'paused': 'Paused', + 'mark_active': 'Mark Active', + 'day_count': 'Day :count', 'first_day_of_the_month': 'First Day of the Month', 'last_day_of_the_month': 'Last Day of the Month', - 'use_payment_terms': 'Usa termini di pagamento', + 'use_payment_terms': 'Use Payment Terms', 'endless': 'Endless', - 'next_send_date': 'Prossima data di invio', - 'remaining_cycles': 'Cicli restanti', - 'recurring_invoice': 'Fattura Ricorrente', - 'recurring_invoices': 'Fatture Ricorrenti', - 'new_recurring_invoice': 'Nuova Fattura Ricorrente', - 'edit_recurring_invoice': 'Modifica Fattura Ricorrente', - 'created_recurring_invoice': 'Fattura ricorrente creata con successo', - 'updated_recurring_invoice': 'Fattura ricorrente aggiornata con successo', - 'archived_recurring_invoice': - 'Fattura ricorrente archiviata con successo', - 'deleted_recurring_invoice': 'Fattura ricorrente eliminata con successo', - 'removed_recurring_invoice': 'Fattura ricorrente rimossa con successo', - 'restored_recurring_invoice': - 'Fattura ricorrente ripristinata con successo', + 'next_send_date': 'Next Send Date', + 'remaining_cycles': 'Remaining Cycles', + 'recurring_invoice': 'Recurring Invoice', + 'recurring_invoices': '繰り返しの請求書', + 'new_recurring_invoice': 'New Recurring Invoice', + 'edit_recurring_invoice': 'Edit Recurring Invoice', + 'created_recurring_invoice': 'Successfully created recurring invoice', + 'updated_recurring_invoice': 'Successfully updated recurring invoice', + 'archived_recurring_invoice': '繰り返しの請求書をアーカイブしました。', + 'deleted_recurring_invoice': '繰り返しの請求書を削除しました。', + 'removed_recurring_invoice': 'Successfully removed recurring invoice', + 'restored_recurring_invoice': 'Successfully restored recurring invoice', 'archived_recurring_invoices': - 'Archiviato con successo :value fatture ricorrenti', + 'Successfully archived recurring :value invoices', 'deleted_recurring_invoices': - 'Cancellato con successo :value fatture ricorrenti', + 'Successfully deleted recurring :value invoices', 'restored_recurring_invoices': - 'Ripristinato con successo :value fatture ricorrenti', - 'search_recurring_invoice': 'Cerca 1 fattura ricorrente', - 'search_recurring_invoices': 'Cerca :count Fatture ricorrenti', - 'send_date': 'Data di invio', - 'auto_bill_on': 'Fattura automatica attiva', + 'Successfully restored recurring :value invoices', + 'search_recurring_invoice': 'Search 1 Recurring Invoice', + 'search_recurring_invoices': 'Search :count Recurring Invoices', + 'send_date': 'Send Date', + 'auto_bill_on': 'Auto Bill On', 'minimum_under_payment_amount': 'Minimum Under Payment Amount', - 'profit': 'Utile', - 'line_item': 'Riga articolo', - 'allow_over_payment': 'Consenti pagamento in eccesso', - 'allow_over_payment_help': 'Accetta il pagamento di un extra', - 'allow_under_payment': 'Consenti pagamento ridotto', - 'allow_under_payment_help': 'Accetta il pagamento parziale o di cauzione', - 'test_mode': 'Modalità di test', - 'opened': 'Aperto', + 'profit': 'Profit', + 'line_item': 'Line Item', + 'allow_over_payment': 'Allow Over Payment', + 'allow_over_payment_help': 'Support paying extra to accept tips', + 'allow_under_payment': 'Allow Under Payment', + 'allow_under_payment_help': + 'Support paying at minimum the partial/deposit amount', + 'test_mode': 'Test Mode', + 'opened': 'Opened', 'payment_reconciliation_failure': 'Reconciliation Failure', 'payment_reconciliation_success': 'Reconciliation Success', 'gateway_success': 'Gateway Success', @@ -30396,100 +30742,100 @@ mixin LocalizationsProvider on LocaleCodeAware { 'failure': 'Failure', 'quota_exceeded': 'Quota Exceeded', 'upstream_failure': 'Upstream Failure', - 'system_logs': 'Registri di sistema', - 'view_portal': 'Visualizza il portale', - 'copy_link': 'Copia Collegamento', - 'token_billing': 'Salva carta di credito', - 'welcome_to_invoice_ninja': 'Benvenuti a Invoice Ninja', - 'always': 'Sempre', + 'system_logs': 'System Logs', + 'view_portal': 'View Portal', + 'copy_link': 'リンクをコピー', + 'token_billing': 'Save card details', + 'welcome_to_invoice_ninja': 'Invoice Ninja へようこそ', + 'always': 'Always', 'optin': 'Opt-In', 'optout': 'Opt-Out', - 'label': 'Etichetta', - 'client_number': 'Numero Cliente', + 'label': 'Label', + 'client_number': '顧客番号', 'auto_convert': 'Auto Convert', - 'company_name': 'Nome Azienda', - 'reminder1_sent': 'Promemoria 1 inviato', - 'reminder2_sent': 'Promemoria 2 inviato', - 'reminder3_sent': 'Promemoria 3 inviato', - 'reminder_last_sent': 'Ultimo invio promemoria', - 'pdf_page_info': 'Pagina :current di :total', - 'emailed_invoices': 'Fatture inviate con successo', - 'emailed_quotes': 'Preventivi inviati con successo', + 'company_name': 'Company Name', + 'reminder1_sent': 'リマインダー1送信済', + 'reminder2_sent': 'リマインダー2送信済', + 'reminder3_sent': 'リマインダー3送信済', + 'reminder_last_sent': '最終リマインダー送信済', + 'pdf_page_info': 'Page :current of :total', + 'emailed_invoices': 'Successfully emailed invoices', + 'emailed_quotes': 'Successfully emailed quotes', 'emailed_credits': 'Successfully emailed credits', - 'gateway': 'Piattaforma', + 'gateway': 'Gateway', 'view_in_stripe': 'View in Stripe', - 'rows_per_page': 'Righe per pagina', - 'hours': 'Ore', - 'statement': 'Dichiarazione', - 'taxes': 'Tasse', - 'surcharge': 'Sovrapprezzo', - 'apply_payment': 'Applica pagamento', - 'apply_credit': 'Apply Credit', - 'apply': 'Applica', + 'rows_per_page': 'Rows Per Page', + 'hours': 'Hours', + 'statement': 'Statement', + 'taxes': '税', + 'surcharge': 'Surcharge', + 'apply_payment': 'Apply Payment', + 'apply_credit': '前受金を適用', + 'apply': 'Apply', 'unapplied': 'Unapplied', - 'select_label': 'Seleziona etichetta', - 'custom_labels': 'Etichette Personalizzate', + 'select_label': 'Select Label', + 'custom_labels': 'Custom Labels', 'record_type': 'Record Type', 'record_name': 'Record Name', - 'file_type': 'Tipo file', - 'height': 'Altezza', - 'width': 'Larghezza', - 'to': 'a', + 'file_type': 'File Type', + 'height': 'Height', + 'width': 'Width', + 'to': 'To', 'health_check': 'Health Check', - 'payment_type_id': 'Tipo di Pagamento', - 'last_login_at': 'Ultimo login alle', - 'company_key': 'Chiave azienda', + 'payment_type_id': '入金方法', + 'last_login_at': 'Last Login At', + 'company_key': 'Company Key', 'storefront': 'Storefront', - 'storefront_help': 'Permetti alle app di terze parti di creare fatture', - 'client_created': 'Cliente creato', - 'online_payment_email': 'Email di pagamento online', - 'manual_payment_email': 'Email di pagamento manuale', - 'completed': 'Completato', - 'gross': 'Lordo', - 'net_amount': 'Cifra al netto', - 'net_balance': 'Bilancio Netto', - 'client_settings': 'Impostazioni Cliente', - 'selected_invoices': 'Fatture Selezionate', - 'selected_payments': 'Pagamenti selezionati', - 'selected_quotes': 'Preventivi Selezionati', - 'selected_tasks': 'Attività Selezionate', - 'selected_expenses': 'Spese Selezionate', - 'upcoming_invoices': 'Prossime fatture', - 'past_due_invoices': 'Fatture scadute', - 'recent_payments': 'Pagamenti recenti', - 'upcoming_quotes': 'Preventivi in scadenza', - 'expired_quotes': 'Preventivi Scaduti', - 'create_client': 'Crea nuovo cliente', - 'create_invoice': 'Crea Fattura', - 'create_quote': 'Crea Preventivo', - 'create_payment': 'Crea pagamento', - 'create_vendor': 'Crea fornitore', - 'update_quote': 'Aggiorna Preventivo', - 'delete_quote': 'Cancella Preventivo', - 'update_invoice': 'Aggiorna Fattura', - 'delete_invoice': 'Elimina Fattura', - 'update_client': 'Aggiorna Cliente', - 'delete_client': 'Elimina cliente', - 'delete_payment': 'Elimina pagamento', - 'update_vendor': 'Aggiorna Fornitore', - 'delete_vendor': 'Cancella Fornitore', - 'create_expense': 'Crea Spesa', - 'update_expense': 'Aggiorna Spesa', - 'delete_expense': 'Cancella Spesa', - 'create_task': 'Crea un\'attività', - 'update_task': 'Aggiorna Attività', - 'delete_task': 'Cancella l\'attività', - 'approve_quote': 'Aggiorna Preventivo', + 'storefront_help': 'Enable third-party apps to create invoices', + 'client_created': '顧客を登録しました', + 'online_payment_email': 'Online Payment Email', + 'manual_payment_email': 'Manual Payment Email', + 'completed': '完了', + 'gross': 'Gross', + 'net_amount': 'Net Amount', + 'net_balance': 'Net Balance', + 'client_settings': 'Client Settings', + 'selected_invoices': 'Selected Invoices', + 'selected_payments': 'Selected Payments', + 'selected_quotes': 'Selected Quotes', + 'selected_tasks': 'Selected Tasks', + 'selected_expenses': 'Selected Expenses', + 'upcoming_invoices': '次回請求', + 'past_due_invoices': 'Past Due Invoices', + 'recent_payments': '最近の入金', + 'upcoming_quotes': 'Upcoming Quotes', + 'expired_quotes': 'Expired Quotes', + 'create_client': 'Create Client', + 'create_invoice': '請求を新規作成', + 'create_quote': '見積書を新規作成', + 'create_payment': 'Create Payment', + 'create_vendor': '新しい納入業者', + 'update_quote': 'Update Quote', + 'delete_quote': '見積書を削除', + 'update_invoice': 'Update Invoice', + 'delete_invoice': '請求書を削除', + 'update_client': 'Update Client', + 'delete_client': '顧客を削除', + 'delete_payment': '入金を削除', + 'update_vendor': 'Update Vendor', + 'delete_vendor': 'Delete Vendor', + 'create_expense': 'Create Expense', + 'update_expense': 'Update Expense', + 'delete_expense': 'Delete Expense', + 'create_task': 'タスクを新規作成', + 'update_task': 'Update Task', + 'delete_task': 'タスクを削除', + 'approve_quote': 'Approve Quote', 'off': 'Off', - 'when_paid': 'Quando Pagato', - 'expires_on': 'Scade il', - 'free': 'Free', - 'plan': 'Piano', - 'show_sidebar': 'Mostra Barra Laterale', - 'hide_sidebar': 'Nascondi Barra Laterale', - 'event_type': 'Tipo Evento', + 'when_paid': 'When Paid', + 'expires_on': 'Expires On', + 'free': 'フリー', + 'plan': 'Plan', + 'show_sidebar': 'Show Sidebar', + 'hide_sidebar': 'Hide Sidebar', + 'event_type': 'Event Type', 'target_url': 'Target', - 'copy': 'Copia', + 'copy': 'Copy', 'must_be_online': 'Please restart the app once connected to the internet', 'crons_not_enabled': 'The crons need to be enabled', 'api_webhooks': 'API Webhooks', @@ -30509,168 +30855,167 @@ mixin LocalizationsProvider on LocaleCodeAware { 'deleted_webhooks': 'Successfully deleted :value webhooks', 'removed_webhooks': 'Successfully removed :value webhooks', 'restored_webhooks': 'Successfully restored :value webhooks', - 'api_tokens': 'API Token', - 'api_docs': 'Documentazione API', + 'api_tokens': 'APIトークン', + 'api_docs': 'API Docs', 'search_tokens': 'Search :count Tokens', 'search_token': 'Search 1 Token', - 'token': 'Token', - 'tokens': 'Token', + 'token': 'トークン', + 'tokens': 'トークン', 'new_token': 'New Token', - 'edit_token': 'Modifica token', - 'created_token': 'Token creato correttamente', - 'updated_token': 'Token aggiornato correttamente', - 'archived_token': 'Successfully archived token', - 'deleted_token': 'Token eliminato correttamente', + 'edit_token': 'トークンを編集', + 'created_token': 'トークンを追加しました。', + 'updated_token': 'トークンを更新しました。', + 'archived_token': 'トークンをアーカイブしました。', + 'deleted_token': 'トークンを削除しました。', 'removed_token': 'Successfully removed token', 'restored_token': 'Successfully restored token', 'archived_tokens': 'Successfully archived :value tokens', 'deleted_tokens': 'Successfully deleted :value tokens', 'restored_tokens': 'Successfully restored :value tokens', - 'client_registration': 'Registazione cliente', + 'client_registration': 'Client Registration', 'client_registration_help': - 'Permetti al cliente di registrarsi da solo nel portale', - 'customize_and_preview': 'Personalizza & Anteprima', - 'email_invoice': 'Invia Fattura', - 'email_quote': 'Invia Preventivo via Email', + 'Enable clients to self register in the portal', + 'customize_and_preview': 'Customize & Preview', + 'email_invoice': '請求書をメールする', + 'email_quote': '見積書をメール', 'email_credit': 'Email Credit', - 'email_payment': 'Email Pagamento', - 'client_email_not_set': 'Il cliente non ha un indirizzo email impostato', - 'ledger': 'Registro', - 'view_pdf': 'Vedi PDF', - 'all_records': 'Tutti i dati', - 'owned_by_user': 'Posseduto da utente', + 'email_payment': 'Email Payment', + 'client_email_not_set': 'Client does not have an email address set', + 'ledger': 'Ledger', + 'view_pdf': 'View PDF', + 'all_records': 'All records', + 'owned_by_user': 'Owned by user', 'credit_remaining': 'Credit Remaining', - 'contact_name': 'Nome Contatto', - 'use_default': 'Usa predefinito', - 'reminder_endless': 'Promemoria senza scadenza', + 'contact_name': 'Contact Name', + 'use_default': 'Use default', + 'reminder_endless': 'Endless Reminders', 'number_of_days': 'Number of days', - 'configure_payment_terms': 'Configura termini di pagamento', - 'payment_term': 'Termini di pagamento', - 'new_payment_term': 'Nuovi termini di pagamento', - 'edit_payment_term': 'Modifica termini di pagamento', - 'created_payment_term': 'Termini di pagamento creato con successo', - 'updated_payment_term': 'Termini di pagamento aggiornato con successo', - 'archived_payment_term': 'Termini di pagamento archiviato con successo', - 'deleted_payment_term': 'Termini di pagamento cancellati con successo', - 'removed_payment_term': 'Termini di pagamento rimossi con successo', - 'restored_payment_term': 'Termini di pagamento ripristinati con successo', + 'configure_payment_terms': 'Configure Payment Terms', + 'payment_term': 'Payment Term', + 'new_payment_term': 'New Payment Term', + 'edit_payment_term': 'Edit Payment Term', + 'created_payment_term': 'Successfully created payment term', + 'updated_payment_term': 'Successfully updated payment term', + 'archived_payment_term': 'Successfully archived payment term', + 'deleted_payment_term': 'Successfully deleted payment term', + 'removed_payment_term': 'Successfully removed payment term', + 'restored_payment_term': 'Successfully restored payment term', 'archived_payment_terms': 'Successfully archived :value payment terms', 'deleted_payment_terms': 'Successfully deleted :value payment terms', 'restored_payment_terms': 'Successfully restored :value payment terms', - 'email_sign_in': 'Sign in with email', + 'email_sign_in': 'メールアドレスでログイン', 'change': 'Change', 'change_to_mobile_layout': 'Change to the mobile layout?', 'change_to_desktop_layout': 'Change to the desktop layout?', - 'send_from_gmail': 'Inviato da Gmail', + 'send_from_gmail': 'Send from Gmail', 'reversed': 'Reversed', 'cancelled': 'Cancelled', - 'credit_amount': 'Importo Credito', - 'quote_amount': 'Importo del preventivo', + 'credit_amount': '前受金総額', + 'quote_amount': 'Quote Amount', 'hosted': 'Hosted', 'selfhosted': 'Self-Hosted', - 'exclusive': 'Esclusiva', - 'inclusive': 'Inclusiva', - 'hide_menu': 'Nascondi menu', - 'show_menu': 'Mostra menu', - 'partially_refunded': 'Parzialmente rimborsato', - 'search_documents': 'Cerca Documenti', + 'exclusive': 'Exclusive', + 'inclusive': 'Inclusive', + 'hide_menu': 'Hide Menu', + 'show_menu': 'Show Menu', + 'partially_refunded': 'Partially Refunded', + 'search_documents': '文書の検索', 'search_designs': 'Search Designs', - 'search_invoices': 'Cerca Fatture', - 'search_clients': 'Cerca Clienti', - 'search_products': 'Cerca Prodotti', - 'search_quotes': 'Cerca Preventivi', - 'search_credits': 'Cerca crediti', - 'search_vendors': 'Cerca fornitori', - 'search_users': 'Cerca utenti', - 'search_tax_rates': 'Cerca aliquote', - 'search_tasks': 'Cerca attività', - 'search_settings': 'Cerca Impostazioni', - 'search_projects': 'Cerca prodotti', - 'search_expenses': 'Cerca spese', - 'search_payments': 'Cerca pagamenti', - 'search_groups': 'Cerca gruppi', - 'search_company': 'Cerca Azienda', - 'search_document': 'Cerca 1 documento', - 'search_design': 'Cerca 1 stile', - 'search_invoice': 'Cerca 1 fattura', - 'search_client': 'Cerca 1 cliente', - 'search_product': 'Cerca 1 prodotto', - 'search_quote': 'Cerca 1 preventivo', - 'search_credit': 'Cerca 1 credito', - 'search_vendor': 'Cerca 1 Fornitore', - 'search_user': 'Cerca 1 utente', - 'search_tax_rate': 'Cerca 1 aliquota', - 'search_task': 'Cerca 1 attività', - 'search_project': 'Cerca 1 progetto', - 'search_expense': 'Cerca 1 spesa', - 'search_payment': 'Cerca 1 pagamento', - 'search_group': 'Cerca 1 gruppo', - 'refund_payment': 'Rimborsa Pagamento', - 'cancelled_invoice': 'Fattura annullata con successo', - 'cancelled_invoices': 'Fatture annullate con successo', - 'reversed_invoice': 'Fattura stornata con successo', - 'reversed_invoices': 'Fatture stornate con successo', + 'search_invoices': '請求書の検索', + 'search_clients': '顧客の検索', + 'search_products': '商品の検索', + 'search_quotes': '見積書の検索', + 'search_credits': 'Search Credits', + 'search_vendors': '納入業者の検索', + 'search_users': 'ユーザーの検索', + 'search_tax_rates': '税率の検索', + 'search_tasks': 'タスクの検索', + 'search_settings': '設定の検索', + 'search_projects': 'プロジェクトの検索', + 'search_expenses': '経費の検索', + 'search_payments': 'Search Payments', + 'search_groups': 'グループの検索', + 'search_company': '会社の検索', + 'search_document': 'Search 1 Document', + 'search_design': 'Search 1 Design', + 'search_invoice': 'Search 1 Invoice', + 'search_client': 'Search 1 Client', + 'search_product': 'Search 1 Product', + 'search_quote': 'Search 1 Quote', + 'search_credit': 'Search 1 Credit', + 'search_vendor': 'Search 1 Vendor', + 'search_user': 'Search 1 User', + 'search_tax_rate': 'Search 1 Tax Rate', + 'search_task': 'Search 1 Tasks', + 'search_project': 'Search 1 Project', + 'search_expense': 'Search 1 Expense', + 'search_payment': 'Search 1 Payment', + 'search_group': 'Search 1 Group', + 'refund_payment': 'Refund Payment', + 'cancelled_invoice': 'Successfully cancelled invoice', + 'cancelled_invoices': 'Successfully cancelled invoices', + 'reversed_invoice': 'Successfully reversed invoice', + 'reversed_invoices': 'Successfully reversed invoices', 'reverse': 'Reverse', - 'full_name': 'Nome Completo', - 'city_state_postal': 'Città/Stato/CAP', + 'full_name': 'Full Name', + 'city_state_postal': 'City/State/Postal', 'postal_city_state': 'Postal/City/State', 'custom1': 'First Custom', 'custom2': 'Second Custom', 'custom3': 'Third Custom', 'custom4': 'Fourth Custom', - 'optional': 'Opzionale', - 'license': 'Licenza', - 'purge_data': 'Cancella dati permanentemente', + 'optional': 'Optional', + 'license': 'License', + 'purge_data': 'Purge Data', 'purge_successful': 'Successfully purged company data', 'purge_data_message': 'Warning: This will permanently erase your data, there is no undo.', - 'invoice_balance': 'Saldo della fattura', - 'age_group_0': '0 - 30 Giorni', - 'age_group_30': '30 - 60 Giorni', - 'age_group_60': '60 - 90 Giorni', - 'age_group_90': '90 - 120 Giorni', - 'age_group_120': '120+ Giorni', - 'refresh': 'Aggiorna', + 'invoice_balance': 'Invoice Balance', + 'age_group_0': '0 - 30 Days', + 'age_group_30': '30 - 60 Days', + 'age_group_60': '60 - 90 Days', + 'age_group_90': '90 - 120 Days', + 'age_group_120': '120+ Days', + 'refresh': 'Refresh', 'saved_design': 'Successfully saved design', - 'client_details': 'Dettagli Cliente', - 'company_address': 'Indirizzo azienda', - 'invoice_details': 'Dettagli fattura', - 'quote_details': 'Dettagli Preventivo', - 'credit_details': 'Dettagli Credito', - 'product_columns': 'Colonne Prodotto', - 'task_columns': 'Colonne attività', - 'add_field': 'Aggiungi campo', - 'all_events': 'Tutti gli eventi', + 'client_details': 'Client Details', + 'company_address': 'Company Address', + 'invoice_details': 'Invoice Details', + 'quote_details': 'Quote Details', + 'credit_details': 'Credit Details', + 'product_columns': 'Product Columns', + 'task_columns': 'Task Columns', + 'add_field': 'Add Field', + 'all_events': 'All Events', 'permissions': 'Permissions', - 'none': 'Nessuno/a', - 'owned': 'Posseduto', - 'payment_success': 'Pagamento riuscito', - 'payment_failure': 'Errore di pagamento', - 'invoice_sent': ':count fattura inviata', - 'quote_sent': 'Preventivo inviato', - 'credit_sent': 'Credito inviato', - 'invoice_viewed': 'Fattura visualizzata', - 'quote_viewed': 'Preventivo visualizzato', - 'credit_viewed': 'Credito visualizzato', - 'quote_approved': 'Preventivo approvato', - 'receive_all_notifications': 'Ricevi tutte le notifiche', - 'purchase_license': 'Acquista licenza', - 'apply_license': 'Applica Licenza', - 'cancel_account': 'Elimina l\'account', - 'cancel_account_message': - 'Attenzione: Questo eliminerà permanentemente il tuo account, non si potrà più tornare indietro.', - 'delete_company': 'Elimina azienda', + 'none': 'None', + 'owned': 'Owned', + 'payment_success': 'Payment Success', + 'payment_failure': 'Payment Failure', + 'invoice_sent': ':count invoice sent', + 'quote_sent': '見積書送信済', + 'credit_sent': '前受金送信済', + 'invoice_viewed': 'Invoice Viewed', + 'quote_viewed': 'Quote Viewed', + 'credit_viewed': 'Credit Viewed', + 'quote_approved': 'Quote Approved', + 'receive_all_notifications': 'Receive All Notifications', + 'purchase_license': 'Purchase License', + 'apply_license': 'Apply License', + 'cancel_account': 'アカウントのキャンセル', + 'cancel_account_message': '注意: あなたのアカウントを完全に削除します。削除の取り消しは出来ません。', + 'delete_company': 'Delete Company', 'delete_company_message': 'Warning: This will permanently delete your company, there is no undo.', - 'enabled_modules': 'Moduli abilitati', - 'converted_quote': 'Preventivo convertito con successo', + 'enabled_modules': 'Enabled Modules', + 'converted_quote': 'Successfully converted quote', 'credit_design': 'Credit Design', 'includes': 'Includes', - 'header': 'Header', - 'load_design': 'Carica Design', + 'header': 'ヘッダ', + 'load_design': 'Load Design', 'css_framework': 'CSS Framework', 'custom_designs': 'Custom Designs', - 'designs': 'Stili', + 'designs': 'Designs', 'new_design': 'New Design', 'edit_design': 'Edit Design', 'created_design': 'Successfully created design', @@ -30682,1129 +31027,1130 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_designs': 'Successfully archived :value designs', 'deleted_designs': 'Successfully deleted :value designs', 'restored_designs': 'Successfully restored :value designs', - 'proposals': 'Proposte', + 'proposals': 'Proposals', 'tickets': 'Tickets', - 'recurring_quotes': 'Preventivi Ricorrenti', - 'recurring_tasks': 'Attività ricorrenti', - 'account_management': 'Gestione Account', - 'credit_date': 'Data Credito', - 'credit': 'Credito', - 'credits': 'Crediti', - 'new_credit': 'Inserisci il credito', - 'edit_credit': 'Modifica Credito', - 'created_credit': 'Credito creato con successo', - 'updated_credit': 'Credito aggiornato con successo', - 'archived_credit': 'Credito archiviato con successo', - 'deleted_credit': 'Credito eliminato con successo', + 'recurring_quotes': '繰り返しの見積書', + 'recurring_tasks': 'Recurring Tasks', + 'account_management': 'Account Management', + 'credit_date': '前受金受日付', + 'credit': '前受金', + 'credits': '前受金', + 'new_credit': '前受金を登録', + 'edit_credit': 'Edit Credit', + 'created_credit': '前受金を登録しました。', + 'updated_credit': 'Successfully updated credit', + 'archived_credit': '前受金をアーカイブしました。', + 'deleted_credit': '前受金を削除しました。', 'removed_credit': 'Successfully removed credit', - 'restored_credit': 'Credito ripristinato con successo', - 'archived_credits': ':count crediti archiviati con successo', - 'deleted_credits': ':count crediti eliminati con successo', + 'restored_credit': '前受金を復旧しました', + 'archived_credits': ':count 件の前受金をアーカイブしました。', + 'deleted_credits': ':count 件の前受金を削除しました。', 'restored_credits': 'Successfully restored :value credits', - 'current_version': 'Versione attuale', + 'current_version': '現在のバージョン', 'latest_version': 'Latest Version', - 'update_now': 'Aggiorna ora', - 'a_new_version_is_available': 'A new version of the web app is available', - 'update_available': 'Aggiornamento disponibile', - 'app_updated': 'Aggiornamento completato con successo', - 'learn_more': 'Scopri di più', - 'integrations': 'Integrazioni', - 'tracking_id': 'Id di tracciamento', + 'update_now': '今すぐアップデート', + 'a_new_version_is_available': 'Webアプリの新しいバージョンが利用可能です', + 'update_available': 'アップデートが利用可能です', + 'app_updated': 'Update successfully completed', + 'learn_more': '詳細を見る', + 'integrations': 'Integrations', + 'tracking_id': 'Tracking Id', 'slack_webhook_url': 'Slack Webhook URL', - 'credit_footer': 'Piè di pagina Credito', - 'credit_terms': 'Termini del Credito', - 'new_company': 'Nuova azienda', - 'added_company': 'Azienda aggiunta con successo', - 'company1': 'Azienda Personalizzata 1', - 'company2': 'Azienda Personalizzata 2', - 'company3': 'Azienda Personalizzata 3', - 'company4': 'Azienda Personalizzata 4', - 'product1': 'Prodotto personalizzato 1', - 'product2': 'Prodotto personalizzato 2', - 'product3': 'Prodotto personalizzato 3', - 'product4': 'Prodotto personalizzato 4', + 'credit_footer': 'Credit Footer', + 'credit_terms': 'Credit Terms', + 'new_company': '新しい会社', + 'added_company': 'Successfully added company', + 'company1': 'Custom Company 1', + 'company2': 'Custom Company 2', + 'company3': 'Custom Company 3', + 'company4': 'Custom Company 4', + 'product1': 'Custom Product 1', + 'product2': 'Custom Product 2', + 'product3': 'Custom Product 3', + 'product4': 'Custom Product 4', 'client1': 'Custom Client 1', 'client2': 'Custom Client 2', 'client3': 'Custom Client 3', 'client4': 'Custom Client 4', - 'contact1': 'Contatto personalizzato 1', - 'contact2': 'Contatto personalizzato 2', - 'contact3': 'Contatto personalizzato 3', - 'contact4': 'Contatto personalizzato 4', - 'task1': 'Attività personalizzata 1', - 'task2': 'Attività personalizzata 2', - 'task3': 'Attività personalizzata 3', - 'task4': 'Attività personalizzata 4', + 'contact1': 'Custom Contact 1', + 'contact2': 'Custom Contact 2', + 'contact3': 'Custom Contact 3', + 'contact4': 'Custom Contact 4', + 'task1': 'Custom Task 1', + 'task2': 'Custom Task 2', + 'task3': 'Custom Task 3', + 'task4': 'Custom Task 4', 'project1': 'Custom Project 1', 'project2': 'Custom Project 2', 'project3': 'Custom Project 3', 'project4': 'Custom Project 4', - 'expense1': 'Spesa personalizzata 1', - 'expense2': 'Spesa personalizzata 2', - 'expense3': 'Spesa personalizzata 3', - 'expense4': 'Spesa personalizzata 4', - 'vendor1': 'Fornitore Personalizzato 1', - 'vendor2': 'Fornitore Personalizzato 2', - 'vendor3': 'Fornitore Personalizzato 3', - 'vendor4': 'Fornitore Personalizzato 4', - 'invoice1': 'Fattura Personalizzata 1', - 'invoice2': 'Fattura Personalizzata 2', - 'invoice3': 'Fattura Personalizzata 3', - 'invoice4': 'Fattura Personalizzata 4', - 'payment1': 'Pagamento personalizzato 1', - 'payment2': 'Pagamento personalizzato 2', - 'payment3': 'Pagamento personalizzato 3', - 'payment4': 'Pagamento personalizzato 4', - 'surcharge1': 'Imposta personalizzata 1', - 'surcharge2': 'Imposta personalizzata 2', - 'surcharge3': 'Imposta personalizzata 3', - 'surcharge4': 'Imposta personalizzata 4', + 'expense1': 'Custom Expense 1', + 'expense2': 'Custom Expense 2', + 'expense3': 'Custom Expense 3', + 'expense4': 'Custom Expense 4', + 'vendor1': 'Custom Vendor 1', + 'vendor2': 'Custom Vendor 2', + 'vendor3': 'Custom Vendor 3', + 'vendor4': 'Custom Vendor 4', + 'invoice1': 'Custom Invoice 1', + 'invoice2': 'Custom Invoice 2', + 'invoice3': 'Custom Invoice 3', + 'invoice4': 'Custom Invoice 4', + 'payment1': 'Custom Payment 1', + 'payment2': 'Custom Payment 2', + 'payment3': 'Custom Payment 3', + 'payment4': 'Custom Payment 4', + 'surcharge1': 'Custom Surcharge 1', + 'surcharge2': 'Custom Surcharge 2', + 'surcharge3': 'Custom Surcharge 3', + 'surcharge4': 'Custom Surcharge 4', 'group1': 'Custom Group 1', 'group2': 'Custom Group 2', 'group3': 'Custom Group 3', 'group4': 'Custom Group 4', - 'reset': 'Reset', - 'number': 'Numero', - 'export': 'Esporta', - 'chart': 'Grafico', + 'reset': 'リセット', + 'number': '番号', + 'export': 'エクスポート', + 'chart': 'チャート', 'count': 'Count', - 'totals': 'Totali', - 'blank': 'Vuoto', - 'day': 'GIorno', - 'month': 'Mese', - 'year': 'Anno', - 'subgroup': 'Sottogruppo', - 'is_active': 'È attivo', - 'group_by': 'Raggruppa per', - 'credit_balance': 'Saldo Credito', + 'totals': 'Totals', + 'blank': 'Blank', + 'day': 'Day', + 'month': 'Month', + 'year': 'Year', + 'subgroup': 'Subgroup', + 'is_active': 'Is Active', + 'group_by': 'Group by', + 'credit_balance': '前受金残高', 'contact_last_login': 'Contact Last Login', - 'contact_full_name': 'Nome completo contatto', - 'contact_phone': 'Telefono Contatto', - 'contact_custom_value1': 'Valore personalizzato contatto 1', - 'contact_custom_value2': 'Valore personalizzato contatto 2', - 'contact_custom_value3': 'Valore personalizzato contatto 3', - 'contact_custom_value4': 'Valore personalizzato contatto 4', - 'shipping_address1': 'Via di spedizione', - 'shipping_address2': 'Piano/Appartamento di spedizione', - 'shipping_city': 'Città di spedizione', - 'shipping_state': 'Provincia di spedizione', - 'shipping_postal_code': 'Codice Postale di spedizione', - 'shipping_country': 'Paese di spedizione', - 'billing_address1': 'Via di fatturazione', - 'billing_address2': 'App/scala di fatturazione', - 'billing_city': 'Città di fatturazione', - 'billing_state': 'Stato/Provincia di fatturazione', - 'billing_postal_code': 'Codice postale di fatturazione', - 'billing_country': 'Paese fatturazione', - 'client_id': 'Id Cliente', - 'assigned_to': 'Assegnato a', - 'created_by': 'Creato da :name', - 'assigned_to_id': 'Assegnato all\'ID', - 'created_by_id': 'Creato dall\'ID', - 'add_column': 'Aggiungi Colonna', - 'edit_columns': 'Modifica Colonne', - 'columns': 'Colonne', + 'contact_full_name': 'Contact Full Name', + 'contact_phone': 'Contact Phone', + 'contact_custom_value1': 'Contact Custom Value 1', + 'contact_custom_value2': 'Contact Custom Value 2', + 'contact_custom_value3': 'Contact Custom Value 3', + 'contact_custom_value4': 'Contact Custom Value 4', + 'shipping_address1': 'Shipping Street', + 'shipping_address2': 'Shipping Apt/Suite', + 'shipping_city': 'Shipping City', + 'shipping_state': 'Shipping State/Province', + 'shipping_postal_code': 'Shipping Postal Code', + 'shipping_country': 'Shipping Country', + 'billing_address1': 'Billing Street', + 'billing_address2': 'Billing Apt/Suite', + 'billing_city': 'Billing City', + 'billing_state': 'Billing State/Province', + 'billing_postal_code': 'Billing Postal Code', + 'billing_country': 'Billing Country', + 'client_id': 'Client Id', + 'assigned_to': 'Assigned to', + 'created_by': 'Created by :name', + 'assigned_to_id': 'Assigned To Id', + 'created_by_id': 'Created By Id', + 'add_column': 'Add Column', + 'edit_columns': 'Edit Columns', + 'columns': 'Columns', 'aging': 'Aging', - 'profit_and_loss': 'Utile e Perdite', - 'reports': 'Rapporti', - 'report': 'Report', - 'add_company': 'Aggiungi azienda', - 'unpaid_invoice': 'Fattura non pagata', - 'paid_invoice': 'Fattura pagata', - 'unapproved_quote': 'Preventivi non approvati', - 'help': 'Aiuto', - 'refund': 'Rimborso', - 'refund_date': 'Data di rimborso', - 'filtered_by': 'Filtrato per', - 'contact_email': 'Email di contatto', - 'multiselect': 'Multi-selezione', - 'entity_state': 'Stato', - 'verify_password': 'Verifica Password', - 'applied': 'Applicato', + 'profit_and_loss': 'Profit and Loss', + 'reports': 'レポート', + 'report': 'レポート', + 'add_company': '会社を追加', + 'unpaid_invoice': '未払の請求書', + 'paid_invoice': '支払済の請求書', + 'unapproved_quote': 'Unapproved Quote', + 'help': 'ヘルプ', + 'refund': 'Refund', + 'refund_date': 'Refund Date', + 'filtered_by': 'Filtered by', + 'contact_email': 'Contact Email', + 'multiselect': 'Multiselect', + 'entity_state': 'State', + 'verify_password': 'Verify Password', + '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.', - 'message': 'Messaggio', - 'from': 'Da', - 'show_product_details': 'Mostra i dettagli del prodotto', + 'message': 'メッセージ', + 'from': 'From', + 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'Includi la descrizione ed il costo nel menu a tendina del prodotto', - 'pdf_min_requirements': 'Il generatore di PDF richiede :version', - 'adjust_fee_percent': 'Modifica la percentuale di Tassa', + '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', - 'configure_settings': 'Configura Impostazioni', - 'support_forum': 'Forum di supporto', - 'about': 'Info', - 'documentation': 'Documentazione', - 'contact_us': 'Contattaci', - 'subtotal': 'Subtotale', - 'line_total': 'Totale riga', - 'item': 'Articolo', - 'credit_email': 'Email credito', + 'configure_settings': 'Configure Settings', + 'support_forum': 'support forum', + 'about': 'About', + 'documentation': 'Documentation', + 'contact_us': 'Contact Us', + 'subtotal': '小計', + 'line_total': 'Line Total', + 'item': 'アイテム', + 'credit_email': 'Credit Email', 'iframe_url': 'Website', - 'domain_url': 'URL dominio', - 'password_is_too_short': 'La password è troppo corta', + 'domain_url': 'Domain URL', + 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'La password deve contenere una maiuscola ed un numero', - 'client_portal_tasks': 'Attività del portale clienti', - 'client_portal_dashboard': 'Pannello di Controllo Portale Clienti', - 'please_enter_a_value': 'Per favore inserisci un valore', - 'deleted_logo': 'Logo eliminato con successo', - 'yes': 'Si', - 'no': 'No', - 'generate_number': 'Genera numero', - 'when_saved': 'Quando salvato', - 'when_sent': 'Quando inviato', - 'select_company': 'Seleziona azienda', + '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', + 'deleted_logo': 'Successfully deleted logo', + 'yes': 'はい', + 'no': 'いいえ', + 'generate_number': 'Generate Number', + 'when_saved': 'When Saved', + 'when_sent': 'When Sent', + 'select_company': 'Select Company', 'float': 'Float', 'collapse': 'Collapse', - 'show_or_hide': 'Mostra/nascondi', - 'menu_sidebar': 'Barra laterale del menu', - 'history_sidebar': 'Barra laterale dello storico', + 'show_or_hide': 'Show/hide', + 'menu_sidebar': 'Menu Sidebar', + 'history_sidebar': 'History Sidebar', 'tablet': 'Tablet', 'mobile': 'Mobile', 'desktop': 'Desktop', 'layout': 'Layout', - 'view': 'Vedi', - 'module': 'Modulo', - 'first_custom': 'Spazio Personalizzato 1', - 'second_custom': 'Spazio Personalizzato 2', - 'third_custom': 'Spazio Personalizzato 3', - 'show_cost': 'Mostra Costo', - 'show_product_cost': 'Mostra costo prodotto', + 'view': 'View', + 'module': 'Module', + 'first_custom': 'First Custom', + 'second_custom': 'Second Custom', + 'third_custom': 'Third Custom', + 'show_cost': 'Show Cost', + 'show_product_cost': 'Show Product Cost', 'show_cost_help': - 'Mostra un campo costo prodotto per tracciare il markup/profitto', - 'show_product_quantity': 'Mostra quantità prodotto', + 'Display a product cost field to track the markup/profit', + 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Mostra un campo quantità prodotto, altrimenti imposta di default a 1', - 'show_invoice_quantity': 'Mostra quantità fattura', + 'Display a product quantity field, otherwise default to one', + 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Mostra un campo per la quantità degli articoli sulla riga, altrimenti imposta a uno', - 'show_product_discount': 'Mostra sconto prodotto', - 'show_product_discount_help': - 'Mostra un campo sconto articolo sulla riga', - 'default_quantity': 'Quantità predefinita', + 'Display a line item quantity field, otherwise default to one', + 'show_product_discount': 'Show Product Discount', + 'show_product_discount_help': 'Display a line item discount field', + 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Imposta automaticamente la quantità dell\'elemento nella riga ad uno', - 'one_tax_rate': 'Una aliquota', - 'two_tax_rates': 'Due aliquote', - 'three_tax_rates': 'Tre aliquote', - 'default_tax_rate': 'Aliquota predefinita', - 'user': 'Utente', - 'invoice_tax': 'Tassa fattura', - 'line_item_tax': 'Riga imposta articolo', - 'inclusive_taxes': 'Tasse inclusive', - 'invoice_tax_rates': 'Aliquote della fattura', - 'item_tax_rates': 'Tassi d\'imposta articolo', - 'no_client_selected': 'Per favore seleziona un cliente', - 'configure_rates': 'Configura aliquote', - 'configure_gateways': 'Configura i gateway', - 'tax_settings': 'Impostazioni tasse', - 'tax_settings_rates': 'Aliquote Fiscali', + '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', + 'default_tax_rate': 'Default Tax Rate', + 'user': 'ユーザ', + 'invoice_tax': 'Invoice Tax', + 'line_item_tax': 'Line Item Tax', + 'inclusive_taxes': 'Inclusive Taxes', + 'invoice_tax_rates': 'Invoice Tax Rates', + 'item_tax_rates': 'Item Tax Rates', + 'no_client_selected': 'Please select a client', + 'configure_rates': 'Configure rates', + 'configure_gateways': 'Configure Gateways', + 'tax_settings': '税の設定', + 'tax_settings_rates': 'Tax Rates', 'accent_color': 'Accent Color', - 'switch': 'Cambia', - 'comma_sparated_list': 'Lista separata da virgole', - 'options': 'Opzioni', - 'single_line_text': 'Testo a riga singola', - 'multi_line_text': 'Testo multi-riga', - 'dropdown': 'Menu a discesa', - 'field_type': 'Tipo di campo', - 'recover_password_email_sent': - 'Una mail di recupero password è stata inviata', - 'submit': 'Invia', - 'recover_password': 'Recupera password', + 'switch': 'Switch', + 'comma_sparated_list': 'Comma separated list', + 'options': 'Options', + 'single_line_text': 'Single-line text', + 'multi_line_text': 'Multi-line text', + 'dropdown': 'Dropdown', + 'field_type': 'Field Type', + 'recover_password_email_sent': 'A password recovery email has been sent', + 'submit': 'Submit', + 'recover_password': 'パスワードの再設定', 'late_fees': 'Late Fees', - 'credit_number': 'Numero Credito', - 'payment_number': 'Numero di pagamento', + 'credit_number': 'Credit Number', + 'payment_number': 'Payment Number', 'late_fee_amount': 'Late Fee Amount', 'late_fee_percent': 'Late Fee Percent', - 'schedule': 'Schedule', - 'before_due_date': 'Prima della data di scadenza', + 'schedule': 'スケジュール', + 'before_due_date': 'Before the due date', 'after_due_date': 'After the due date', - 'after_invoice_date': 'Dopo la data della fattura', - 'days': 'Giorni', - 'invoice_email': 'Email Fattura', - 'payment_email': 'Email Pagamento', - 'partial_payment': 'Pagamento parziale', - 'payment_partial': 'Pagamento parziale', - 'partial_payment_email': 'Email di pagamento parziale', - 'quote_email': 'Email Preventivo', - 'endless_reminder': 'Promemoria senza scadenza', - 'filtered_by_user': 'Filtrato per utente', + 'after_invoice_date': 'After the invoice date', + 'days': 'Days', + 'invoice_email': '請求書メール', + 'payment_email': '支払いメール', + 'partial_payment': 'Partial Payment', + 'payment_partial': 'Partial Payment', + 'partial_payment_email': 'Partial Payment Email', + 'quote_email': '見積書メール', + 'endless_reminder': 'Endless Reminder', + 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrator', 'administrator_help': - 'Permettere all\'utente di gestire gli utenti, cambiare le impostazioni e modificare tutti i record', - 'user_management': 'Gestione utente', - 'users': 'Utenti', - 'new_user': 'Nuovo utente', - 'edit_user': 'Modifca utente', - 'created_user': 'Utente creato con successo', - 'updated_user': 'Utente aggiornato con successo', - 'archived_user': 'Utente archiviato con successo', - 'deleted_user': 'Utente eliminato con successo', - 'removed_user': 'Utente rimosso con successo', - 'restored_user': 'Utente ripristinato con successo', - 'archived_users': 'Archiviati con successo :value utenti', - 'deleted_users': 'Cancellati con successo :value utenti', - 'removed_users': 'Rimossi con successo :value utenti', - 'restored_users': 'Ripristinati con successo :value utenti', - 'general_settings': 'Impostazioni generali', - 'invoice_options': 'Opzioni Fattura', - 'hide_paid_to_date': 'Nascondi la data di pagamento', + 'Allow user to manage users, change settings and modify all records', + 'user_management': 'ユーザ管理', + 'users': 'ユーザー', + 'new_user': '新しいユーザ', + 'edit_user': 'ユーザの編集', + 'created_user': 'Successfully created user', + 'updated_user': 'ユーザを更新しました', + 'archived_user': 'ユーザをアーカイブしました。', + 'deleted_user': 'ユーザを削除しました', + 'removed_user': 'Successfully removed user', + 'restored_user': 'ユーザをリストアしました。', + 'archived_users': 'Successfully archived :value users', + 'deleted_users': 'Successfully deleted :value users', + 'removed_users': 'Successfully removed :value users', + 'restored_users': 'Successfully restored :value users', + 'general_settings': '一般設定', + 'invoice_options': '請求書オプション', + 'hide_paid_to_date': 'Hide Paid to Date', 'hide_paid_to_date_help': - 'Visualizza l\'area \"Pagato alla data\" sulle fatture solo dopo aver ricevuto un pagamento.', + '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': 'Includi immagini allegate alla fattura.', - 'all_pages_header': 'Mostra l\'Intestazione su', - 'all_pages_footer': 'Visualizza Piè di Pagina su', - 'first_page': 'Prima pagina', - 'all_pages': 'Tutte le pagine', - 'last_page': 'Ultima pagina', - 'primary_font': 'Font primario', - 'secondary_font': 'Font secondario', - 'primary_color': 'Colore primario', - 'secondary_color': 'Colore secondario', - 'page_size': 'Dimensione Pagina', - 'font_size': 'Dimensione Font', - 'quote_design': 'Stile Preventivo', - 'invoice_fields': 'Campi Fattura', - 'product_fields': 'Campi Prodotto', - 'invoice_terms': 'Termini della fattura', - 'invoice_footer': 'Piè di Pagina Fattura', - 'quote_terms': 'Termini del preventivo', - 'quote_footer': 'Piè di Pagina Preventivi', + 'invoice_embed_documents_help': 'Include attached images in the invoice.', + 'all_pages_header': 'Show header on', + 'all_pages_footer': 'Show footer on', + 'first_page': '最初のページ', + 'all_pages': '全てのページ', + 'last_page': '最後のページ', + 'primary_font': 'Primary Font', + 'secondary_font': 'Secondary Font', + 'primary_color': 'プライマリ・カラー', + 'secondary_color': 'セカンダリ・カラー', + 'page_size': 'Page Size', + 'font_size': 'フォントサイズ', + 'quote_design': 'Quote Design', + 'invoice_fields': '請求書をフィールド', + 'product_fields': 'Product Fields', + 'invoice_terms': '請求条件', + 'invoice_footer': '請求書フッター', + 'quote_terms': 'Quote Terms', + 'quote_footer': '見積書フッタ', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Invia automaticamente per email le fatture ricorrenti quando vengono create.', - 'auto_archive_invoice': 'Auto Archiviazione', - 'auto_archive_invoice_help': - 'Archivia automaticamente le fatture quando vengono pagate.', - 'auto_archive_quote': 'Auto Archiviazione', + 'Automatically email recurring invoices when they are created.', + 'auto_archive_invoice': 'Auto Archive', + 'auto_archive_invoice_help': '支払い完了時に請求書を自動的にアーカイブする', + 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Archivia automaticamente i preventivi quando vengono convertiti.', - 'auto_convert_quote': 'Conversione automatica', + '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.', - 'workflow_settings': 'Impostazioni Flusso di Lavoro', - 'freq_daily': 'Giornaliero', - 'freq_weekly': 'Settimanale', - 'freq_two_weeks': 'Due settimane', - 'freq_four_weeks': 'Quattro settimane', - 'freq_monthly': 'Mensile', - 'freq_two_months': 'Due mesi', - 'freq_three_months': 'Tre Mesi', - 'freq_four_months': 'Quattro mesi', - 'freq_six_months': 'Sei Mesi', - 'freq_annually': 'Annuale', - 'freq_two_years': 'Due anni', - 'freq_three_years': 'Tre anni', + 'Automatically convert a quote to an invoice when approved by a client.', + 'workflow_settings': 'Workflow Settings', + 'freq_daily': 'Daily', + 'freq_weekly': 'Weekly', + 'freq_two_weeks': 'Two weeks', + 'freq_four_weeks': 'Four weeks', + 'freq_monthly': 'Monthly', + 'freq_two_months': 'Two months', + 'freq_three_months': 'Three months', + 'freq_four_months': 'Four months', + 'freq_six_months': 'Six months', + 'freq_annually': 'Annually', + 'freq_two_years': 'Two years', + 'freq_three_years': 'Three Years', 'never': 'Never', - 'company': 'Azienda', - 'generated_numbers': 'Generazione Numeri', - 'charge_taxes': 'Applica Tasse', - 'next_reset': 'Prossimo reset', - 'reset_counter': 'Resetta contatori', - 'recurring_prefix': 'Prefisso Ricorrente', - 'number_padding': 'Riempimento numero', - 'general': 'Generale', - 'surcharge_field': 'Campo Sovrattassa', - 'company_field': 'Campo azienda', - 'company_value': 'Valore azienda', - 'credit_field': 'Campo Credito', - 'invoice_field': 'Campo fattura', - 'invoice_surcharge': 'Sovrapprezzo Fattura', - 'client_field': 'Campo Cliente', - 'product_field': 'Campo Prodotto', - 'payment_field': 'Campo Pagamento', - 'contact_field': 'Campo Contatti', - 'vendor_field': 'Campo Fornitore', - 'expense_field': 'Campo Spese', - 'project_field': 'Campo Progetto', - 'task_field': 'Campo attività', - 'group_field': 'Campo Gruppo', - 'number_counter': 'Numero contatore', - 'prefix': 'Prefisso', - 'number_pattern': 'Formato numero', - 'messages': 'Messaggi', - 'custom_css': 'CSS Personalizzato', - 'custom_javascript': 'Javascript personalizzato', - 'signature_on_pdf': 'Mostra su PDF', + 'company': 'Company', + 'generated_numbers': 'Generated Numbers', + 'charge_taxes': 'Charge taxes', + 'next_reset': 'Next Reset', + 'reset_counter': 'Reset Counter', + 'recurring_prefix': 'Recurring Prefix', + 'number_padding': 'Number Padding', + 'general': 'General', + 'surcharge_field': 'Surcharge Field', + 'company_field': 'Company Field', + 'company_value': 'Company Value', + 'credit_field': 'Credit Field', + 'invoice_field': 'Invoice Field', + 'invoice_surcharge': 'Invoice Surcharge', + 'client_field': 'Client Field', + 'product_field': 'Product Field', + 'payment_field': 'Payment Field', + 'contact_field': 'Contact Field', + 'vendor_field': 'Vendor Field', + 'expense_field': 'Expense Field', + 'project_field': 'Project Field', + 'task_field': 'Task Field', + 'group_field': 'Group Field', + 'number_counter': 'Number Counter', + 'prefix': 'プレフィックス', + 'number_pattern': 'Number Pattern', + 'messages': 'メッセージ', + 'custom_css': 'カスタムCSS', + 'custom_javascript': 'Custom JavaScript', + 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Mostra la firma del cliente sul PDF della fattura/preventivo.', - 'show_accept_invoice_terms': - 'Casella di controllo termini di servizio fatture', + 'Show the client signature on the invoice/quote PDF.', + 'show_accept_invoice_terms': 'Invoice Terms Checkbox', 'show_accept_invoice_terms_help': - 'Rendi obbligatoria l\'accettazione dei termini della fattura.', - 'show_accept_quote_terms': - 'Casella di controllo termini di servizio preventivi', + 'Require client to confirm that they accept the invoice terms.', + 'show_accept_quote_terms': 'Quote Terms Checkbox', 'show_accept_quote_terms_help': - 'Rendi obbligatoria l\'accettazione dei termini del preventivo.', - 'require_invoice_signature': 'Firma Fattura', + 'Require client to confirm that they accept the quote terms.', + 'require_invoice_signature': 'Invoice Signature', 'require_invoice_signature_help': - 'Richiedi al cliente di firmare la fattura.', - 'require_quote_signature': 'Firma Bozza', - 'enable_portal_password': 'Fatture Protette da Password', + 'Require client to provide their signature.', + 'require_quote_signature': 'Quote Signature', + 'enable_portal_password': 'Password Protect Invoices', 'enable_portal_password_help': - 'Permette di impostare una password per ogni contatto. Se una password è impostata, al contatto sarà richiesto di inserire una password prima di visualizzare le fatture.', - 'authorization': 'Autorizzazione', - 'subdomain': 'Sottodominio', - 'domain': 'Dominio', - 'portal_mode': 'Modalità portale', - 'email_signature': 'Distinti saluti,', + '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.', + 'authorization': 'Authorization', + 'subdomain': 'サブドメイン', + 'domain': 'Domain', + 'portal_mode': 'Portal Mode', + 'email_signature': 'どうぞよろしくお願いいたします。', 'enable_email_markup_help': - 'Rendi più facile per i tuoi clienti pagarti aggiungendo il markup schema.org alle tue e-mail.', - 'plain': 'Semplice', - 'light': 'Light', - 'dark': 'Dark', - 'email_design': 'Email Design', - 'attach_pdf': 'Allega PDF', - 'attach_documents': 'Allega documenti', - 'attach_ubl': 'Allega UBL', - 'email_style': 'Stile Email', - 'enable_email_markup': 'Enable Markup', - 'reply_to_email': 'Indirizzo di Risposta mail', + 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', + 'plain': 'プレーン', + 'light': 'ライト', + 'dark': 'ダーク', + 'email_design': 'Eメール デザイン', + 'attach_pdf': 'Attach PDF', + 'attach_documents': 'Attach Documents', + 'attach_ubl': 'Attach UBL', + 'email_style': 'Email Style', + 'enable_email_markup': 'マークアップを許可する', + 'reply_to_email': 'Reply-To Email', 'reply_to_name': 'Reply-To Name', 'bcc_email': 'BCC Email', - 'processed': 'Processato', - 'credit_card': 'Carta di Credito', - 'bank_transfer': 'Bonifico Bancario', - 'priority': 'Priorità', - 'fee_amount': 'Importo della tassa', - 'fee_percent': 'Tassa Percentuale', - 'fee_cap': 'Tassa massima', + 'processed': 'Processed', + 'credit_card': 'Credit Card', + 'bank_transfer': 'Bank Transfer', + 'priority': 'Priority', + 'fee_amount': 'Fee Amount', + 'fee_percent': 'Fee Percent', + 'fee_cap': 'Fee Cap', 'limits_and_fees': 'Limits/Fees', - 'enable_min': 'Attiva minimo', - 'enable_max': 'Attiva massimo', - 'min_limit': 'Minimo :min', - 'max_limit': 'Massimo :max', + 'enable_min': 'Enable min', + 'enable_max': 'Enable max', + 'min_limit': 'Min: :min', + 'max_limit': 'Max: :max', 'min': 'Min', - 'max': 'ax', - 'accepted_card_logos': 'Loghi carte accettate', - 'credentials': 'Credenziali', - 'update_address': 'Aggiorna indirizzo', - 'update_address_help': - 'Aggiorna l\'indirizzo del cliente con i dettagli forniti', - 'rate': 'Prezzo Unitario', - 'tax_rate': 'Aliquota Fiscale', - 'new_tax_rate': 'Nuova Aliquota Fiscale', - 'edit_tax_rate': 'Modifica aliquota fiscale', - 'created_tax_rate': 'Aliquota fiscale creata', - 'updated_tax_rate': 'Aliquota fiscale aggiornata', - 'archived_tax_rate': 'Archiviato con successo l\'aliquota fiscale', + 'max': 'Max', + 'accepted_card_logos': 'Accepted Card Logos', + 'credentials': 'Credentials', + 'update_address': '住所を更新', + 'update_address_help': 'Update client\'s address with provided details', + 'rate': '率', + 'tax_rate': '税率', + 'new_tax_rate': '新しい税率', + 'edit_tax_rate': '税率を編集', + 'created_tax_rate': '税率を作成しました', + 'updated_tax_rate': '税率を更新しました。', + 'archived_tax_rate': '税率をアーカイブしました。', 'deleted_tax_rate': 'Successfully deleted tax rate', 'restored_tax_rate': 'Successfully restored tax rate', 'archived_tax_rates': 'Successfully archived :value tax rates', 'deleted_tax_rates': 'Successfully deleted :value tax rates', 'restored_tax_rates': 'Successfully restored :value tax rates', - 'fill_products': 'Riempimento automatico prodotti', + 'fill_products': 'Auto-fill products', 'fill_products_help': - 'Selezionare un prodotto farà automaticamente inserire la descrizione ed il costo', - 'update_products': 'Aggiorna automaticamente i prodotti', + 'Selecting a product will automatically fill in the description and cost', + 'update_products': '商品の自動更新', 'update_products_help': - 'Aggiornare una fatura farà automaticamente aggiornare i prodotti', - 'convert_products': 'Converti prodotti', + 'Updating an invoice will automatically update the product library', + 'convert_products': '商品の変換', 'convert_products_help': - 'Converti automaticamenti i prezzi dei prodotti nella valuta del cliente', - 'fees': 'Commissioni', - 'limits': 'Limiti', + 'Automatically convert product prices to the client\'s currency', + 'fees': 'Fees', + 'limits': 'Limits', 'provider': 'Provider', - 'company_gateway': 'Piattaforma di Pagamento', - 'company_gateways': 'Piattaforme di Pagamento', - 'new_company_gateway': 'Nuova Piattaforma', - 'edit_company_gateway': 'Modifica Piattaforma', - 'created_company_gateway': 'Piattaforma creata con successo', - 'updated_company_gateway': 'Piattaforma aggiornata con successo', - 'archived_company_gateway': 'Piattaforma archiviata con successo', - 'deleted_company_gateway': 'Piattaforma eliminata con successo', - 'restored_company_gateway': 'Piattaforma ripristinata con successo', + 'company_gateway': 'Payment Gateway', + 'company_gateways': 'Payment Gateways', + 'new_company_gateway': 'New Gateway', + 'edit_company_gateway': 'Edit Gateway', + 'created_company_gateway': 'Successfully created gateway', + 'updated_company_gateway': 'Successfully updated gateway', + 'archived_company_gateway': 'Successfully archived gateway', + 'deleted_company_gateway': 'Successfully deleted gateway', + 'restored_company_gateway': 'Successfully restored gateway', 'archived_company_gateways': 'Successfully archived :value gateways', 'deleted_company_gateways': 'Successfully deleted :value gateways', 'restored_company_gateways': 'Successfully restored :value gateways', - 'continue_editing': 'Continua la modifica', - 'discard_changes': 'Scarta modifiche', - 'default_value': 'Valore predefinito', - 'disabled': 'Disabilitato', - 'currency_format': 'Formato moneta', - 'first_day_of_the_week': 'Primo giorno della settimana', - 'first_month_of_the_year': 'Primo mese dell\'anno', - 'sunday': 'Domenica', - 'monday': 'Lunedì', - 'tuesday': 'Martedì', - 'wednesday': 'Mercoledì', - 'thursday': 'Giovedì', - 'friday': 'Venerdì', - 'saturday': 'Sabato', - 'january': 'Gennaio', - 'february': 'Febbraio', - 'march': 'Marzo', - 'april': 'Aprile', - 'may': 'Maggio', - 'june': 'Giugno', - 'july': 'Luglio', - 'august': 'Agosto', - 'september': 'Settembre', - 'october': 'Ottobre', - 'november': 'Novembre', - 'december': 'Dicembre', - 'symbol': 'Simbolo', - 'ocde': 'Codice', - 'date_format': 'Formato data', - 'datetime_format': 'Formato data e ora', - 'military_time': '24 ore', - 'military_time_help': 'Formato 24 ore', - 'send_reminders': 'Invia promemoria', - 'timezone': 'Fuso Orario', + 'continue_editing': 'Continue Editing', + 'discard_changes': 'Discard Changes', + 'default_value': 'Default value', + 'disabled': 'Disabled', + 'currency_format': '通貨フォーマット', + 'first_day_of_the_week': 'First Day of the Week', + 'first_month_of_the_year': 'First Month of the Year', + 'sunday': '日曜日', + 'monday': '月曜日', + 'tuesday': '火曜日', + 'wednesday': '水曜日', + 'thursday': '木曜日', + 'friday': '金曜日', + 'saturday': '土曜日', + 'january': 'January', + 'february': 'February', + 'march': 'March', + 'april': 'April', + 'may': 'May', + 'june': 'June', + 'july': 'July', + 'august': 'August', + 'september': 'September', + 'october': 'October', + 'november': 'November', + 'december': 'December', + 'symbol': 'Symbol', + 'ocde': 'Code', + 'date_format': 'Date Format', + 'datetime_format': 'Datetime Format', + 'military_time': '24 Hour Time', + 'military_time_help': '24 Hour Display', + 'send_reminders': 'Send Reminders', + 'timezone': 'Timezone', 'filtered_by_project': 'Filtered by Project', - 'filtered_by_group': 'Filtrato per gruppo', - 'filtered_by_invoice': 'Filtrare per fattura', - 'filtered_by_client': 'Filtrato per cliente', - 'filtered_by_vendor': 'Filtrato per fornitore', - 'group_settings': 'Impostazioni gruppo', - 'group': 'Gruppo', - 'groups': 'Gruppi', - 'new_group': 'Nuovo gruppo', - 'edit_group': 'Modifica gruppo', - 'created_group': 'Gruppo creato con successo', - 'updated_group': 'Gruppo aggiornato con successo', + 'filtered_by_group': 'Filtered by Group', + 'filtered_by_invoice': 'Filtered by Invoice', + 'filtered_by_client': 'Filtered by Client', + 'filtered_by_vendor': 'Filtered by Vendor', + 'group_settings': 'Group Settings', + 'group': 'Group', + 'groups': 'Groups', + 'new_group': 'New Group', + 'edit_group': 'Edit Group', + 'created_group': 'Successfully created group', + 'updated_group': 'Successfully updated group', 'archived_groups': 'Successfully archived :value groups', 'deleted_groups': 'Successfully deleted :value groups', 'restored_groups': 'Successfully restored :value groups', - 'archived_group': 'Gruppo archiviato con successo', - 'deleted_group': 'Gruppo cancellato con successo', - 'restored_group': 'Gruppo ripristinato con successo', - 'upload_logo': 'Carica logo', - 'uploaded_logo': 'Logo caricato con successo', - 'logo': 'Logo', - 'saved_settings': 'Impostazioni salvate con successo', - 'product_settings': 'Preferenze Prodotti', - 'device_settings': 'Impostazioni dispositivo', - 'defaults': 'Predefiniti', - 'basic_settings': 'Impostazioni Base', - 'advanced_settings': 'Impostazioni Avanzate', - 'company_details': 'Dettagli Azienda', - 'user_details': 'Dettagli Utente', - 'localization': 'Linguaggio', - 'online_payments': 'Pagamenti Online', - 'tax_rates': 'Aliquote Fiscali', - 'notifications': 'Notifiche', - 'import_export': 'Importa/Esporta', - 'custom_fields': 'Campi Personalizzabili', - 'invoice_design': 'Stile Fattura', - 'buy_now_buttons': 'Puslanti Compra Ora', - 'email_settings': 'Impostazioni email', - 'templates_and_reminders': 'Modelli & Promemoria', - 'credit_cards_and_banks': 'Carte di credito & banche', - 'data_visualizations': 'Visualizzazioni dei dati', - 'price': 'Prezzo', - 'email_sign_up': 'Registrati via Email', - 'google_sign_up': 'Registrati con Google', - 'thank_you_for_your_purchase': 'Thank you for your purchase!', - 'redeem': 'Riscatta', - 'back': 'Indietro', - 'past_purchases': 'Acquisti passati', - 'annual_subscription': 'Abbonamento Annuale', - 'pro_plan': 'Piano Pro', - 'enterprise_plan': 'Piano Enterprise', - 'count_users': ':count utenti', - 'upgrade': 'Aggiorna', - 'please_enter_a_first_name': 'Si prega di inserire un nome', - 'please_enter_a_last_name': 'Si prega di inserire un cognome', + 'archived_group': 'Successfully archived group', + 'deleted_group': 'Successfully deleted group', + 'restored_group': 'Successfully restored group', + 'upload_logo': 'Upload Logo', + 'uploaded_logo': 'Successfully uploaded logo', + 'logo': 'ロゴ', + 'saved_settings': 'Successfully saved settings', + 'product_settings': '商品設定', + 'device_settings': 'Device Settings', + 'defaults': 'デフォルト', + 'basic_settings': 'Basic Settings', + 'advanced_settings': '詳細設定', + 'company_details': '企業情報', + 'user_details': 'ユーザの詳細', + 'localization': '地域設定', + 'online_payments': 'オンライン入金', + 'tax_rates': '税率', + 'notifications': '通知', + 'import_export': 'インポート | エクスポート | キャンセル', + 'custom_fields': 'カスタムフィールド', + 'invoice_design': '請求書デザイン', + 'buy_now_buttons': 'Buy Now Buttons', + 'email_settings': 'Eメール設定', + 'templates_and_reminders': 'Templates & Reminders', + 'credit_cards_and_banks': 'Credit Cards & Banks', + 'data_visualizations': 'ビジュアルデータ', + 'price': 'Price', + 'email_sign_up': 'Email Sign Up', + 'google_sign_up': 'Google Sign Up', + 'thank_you_for_your_purchase': 'Thank you for your purchase!', + 'redeem': 'Redeem', + 'back': 'Back', + 'past_purchases': 'Past Purchases', + 'annual_subscription': 'Annual Subscription', + 'pro_plan': 'Pro Plan', + 'enterprise_plan': 'Enterprise Plan', + 'count_users': ':count users', + 'upgrade': 'Upgrade', + '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': - 'Si prega di accettare i termini di servizio e della privacy per creare un account.', - 'i_agree_to_the': 'Accetto la', - 'terms_of_service': 'Termini di Servizio', + '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': '利用規約', 'privacy_policy': 'Privacy Policy', - 'sign_up': 'Registrati', - 'account_login': 'Login account', - 'view_website': 'Visualizza sito web', - 'create_account': 'Crea un account', - 'email_login': 'Login email', - 'create_new': 'Crea Nuovo', - 'no_record_selected': 'Nessun dato selezionato', + 'sign_up': 'サインアップ', + 'account_login': 'Account Login', + 'view_website': 'View Website', + 'create_account': 'Create Account', + 'email_login': 'Email Login', + 'create_new': 'Create New', + 'no_record_selected': 'No record selected', 'error_unsaved_changes': 'Please save or cancel your changes', - 'download': 'Scarica', - 'requires_an_enterprise_plan': 'Richiede un piano enterprise', - 'take_picture': 'Fai foto', - 'upload_file': 'Carica file', - 'document': 'Documento', - 'documents': 'Documenti', - 'new_document': 'Nuovo documento', - 'edit_document': 'Modifica documento', + 'download': 'ダウンロード', + 'requires_an_enterprise_plan': 'Requires an enterprise plan', + 'take_picture': 'Take Picture', + 'upload_file': 'Upload File', + 'document': 'Document', + 'documents': 'Documents', + 'new_document': 'New Document', + 'edit_document': 'Edit Document', 'uploaded_document': 'Successfully uploaded document', 'updated_document': 'Successfully updated document', 'archived_document': 'Successfully archived document', 'deleted_document': 'Successfully deleted document', 'restored_document': 'Successfully restored document', - 'archived_documents': ':value documenti archiviati con successo', - 'deleted_documents': ':value documenti cancellati con successo', - 'restored_documents': ':value documenti ripristinati con successo', - 'no_history': 'Nessuno Storico', - 'expense_date': 'Data Spesa', - 'pending': 'In attesa', - 'expense_status_1': 'Registrato', - 'expense_status_2': 'In attesa', - 'expense_status_3': 'Fatturata', - 'converted': 'Convertito', - 'add_documents_to_invoice': 'Aggiungere documenti a fattura', - 'exchange_rate': 'Tasso di Cambio', - 'convert_currency': 'Converti valuta', - 'mark_paid': 'Segna come Pagata', - 'category': 'Categoria', - 'address': 'Indirizzo', - 'new_vendor': 'Nuovo Fornitore', - 'created_vendor': 'Fornitore creato con successo', - 'updated_vendor': 'Fornitore aggiornato con successo', - 'archived_vendor': 'Fornitore archiviato con successo', - 'deleted_vendor': 'Fornitore eliminato con successo', + 'archived_documents': 'Successfully archived :value documents', + 'deleted_documents': 'Successfully deleted :value documents', + 'restored_documents': 'Successfully restored :value documents', + 'no_history': 'No History', + 'expense_date': 'Expense Date', + 'pending': '保留', + 'expense_status_1': 'Logged', + 'expense_status_2': 'Pending', + 'expense_status_3': 'Invoiced', + 'converted': 'Converted', + 'add_documents_to_invoice': 'Add documents to invoice', + 'exchange_rate': 'Exchange Rate', + 'convert_currency': 'Convert currency', + 'mark_paid': '支払済にする', + 'category': 'Category', + 'address': '住所', + 'new_vendor': 'New Vendor', + 'created_vendor': 'ベンダーを登録しました。', + 'updated_vendor': 'ベンダーを更新しました。', + 'archived_vendor': 'ベンダーをアーカイブしました。', + 'deleted_vendor': 'ベンダーを削除しました。', 'restored_vendor': 'Successfully restored vendor', - 'archived_vendors': ':count fornitori archiviati con successo', - 'deleted_vendors': ':count fornitori eliminati con successo', - 'restored_vendors': 'Ripristinati con successo :value fornitori', - 'new_expense': 'Inserisci spesa', - 'created_expense': 'Spesa creata con successo', - 'updated_expense': 'Spesa aggiornata con successo', + 'archived_vendors': ':count 件の納入業者をアーカイブしました。', + 'deleted_vendors': ':count 件の納入業者を削除しました。', + 'restored_vendors': 'Successfully restored :value vendors', + 'new_expense': 'Enter Expense', + 'created_expense': 'Successfully created expense', + 'updated_expense': 'Successfully updated expense', 'archived_expense': 'Successfully archived expense', 'deleted_expense': 'Successfully deleted expense', 'restored_expense': 'Successfully restored expense', - 'archived_expenses': 'Successfully archived expenses', - 'deleted_expenses': 'Successfully deleted expenses', - 'restored_expenses': 'Ripristinate con successo :value spese', - 'copy_shipping': 'Copia Spedizione', - 'copy_billing': 'Copia Fatturazione', - 'design': 'Stile', - 'failed_to_find_record': 'Impossibile trovare dati', - 'invoiced': 'Fatturato', - 'logged': 'Registrato', - 'running': 'In corso', - 'resume': 'Riprendi', - 'task_errors': - 'Si prega di correggere eventuali tempi di sovrapposizione', - 'start': 'Inizia', - 'stop': 'Ferma', - 'started_task': 'Attività iniziata con successo', - 'stopped_task': 'Attività arrestata con successo', - 'resumed_task': 'Attività ripresa con sucesso', - 'now': 'Adesso', - 'auto_start_tasks': 'Partenza automatica delle attività', - 'timer': 'Timer', - 'manual': 'Manuale', - 'budgeted': 'Preventivato', - 'start_time': 'Tempo di inizio', - 'end_time': 'Tempo di fine', - 'date': 'Data', - 'times': 'Tempi', - 'duration': 'Durata', - 'new_task': 'Nuova Attività', - 'created_task': 'Attività creata con successo', - 'updated_task': 'Attività aggiornata con successo', - 'archived_task': 'Attività archiviata con successo', - 'deleted_task': 'Attività cancellata con successo', - 'restored_task': 'Attività ripristinata con successo', - 'archived_tasks': ':count attività archiviate correttamente', - 'deleted_tasks': ':count attività eliminate correttamente', - 'restored_tasks': ':value attività ripristinate con successo', - 'please_enter_a_name': 'Si prega di inserire un nome', - 'budgeted_hours': 'Ore preventivate', - 'created_project': 'Progetto creato con successo', - 'updated_project': 'Progetto aggiornato con successo', - 'archived_project': 'Progetto archiviato con successo', - 'deleted_project': 'Progetto eliminato con successo', - 'restored_project': 'Progetto ripristinato con successo', - 'archived_projects': ':count progetti archiviati con successo', - 'deleted_projects': ':count progetti eliminati con successo', + 'archived_expenses': '経費のアーカイブに成功しました', + 'deleted_expenses': '経費の削除に成功しました', + 'restored_expenses': 'Successfully restored :value expenses', + 'copy_shipping': 'Copy Shipping', + 'copy_billing': 'Copy Billing', + 'design': 'Design', + 'failed_to_find_record': 'Failed to find record', + 'invoiced': 'Invoiced', + 'logged': 'Logged', + 'running': 'Running', + 'resume': 'Resume', + 'task_errors': 'Please correct any overlapping times', + 'start': 'スタート', + 'stop': 'ストップ', + 'started_task': 'Successfully started task', + 'stopped_task': 'タスクを停止しました。', + 'resumed_task': 'Successfully resumed task', + 'now': 'Now', + 'auto_start_tasks': 'Auto Start Tasks', + 'timer': 'タイマー', + 'manual': 'Manual', + 'budgeted': 'Budgeted', + 'start_time': '開始時間', + 'end_time': '終了時間', + 'date': '日付', + 'times': 'Times', + 'duration': 'Duration', + 'new_task': '新しいタスク', + 'created_task': 'タスクが登録されました。', + 'updated_task': 'タスクが更新されました。', + 'archived_task': 'タスクをアーカイブしました。', + 'deleted_task': 'タスクを削除しました。', + 'restored_task': 'タスクをリストアしました。', + 'archived_tasks': ':count件のタスクをアーカイブしました。', + 'deleted_tasks': ':count件のタスクを削除しました。', + 'restored_tasks': 'Successfully restored :value tasks', + 'please_enter_a_name': 'Please enter a name', + 'budgeted_hours': 'Budgeted Hours', + 'created_project': 'プロジェクトを登録しました。', + 'updated_project': 'プロジェクトを更新しました。', + 'archived_project': 'プロジェクトをアーカイブしました。', + 'deleted_project': 'Successfully deleted project', + 'restored_project': 'プロジェクトをリストアしました。', + 'archived_projects': ':count 件のプロジェクトをアーカイブしました。', + 'deleted_projects': 'Successfully deleted :count projects', 'restored_projects': 'Successfully restored :value projects', - 'new_project': 'Nuovo Progetto', - 'thank_you_for_using_our_app': 'Grazie di avere scelto la nostra app!', + 'new_project': '新しいプロジェクト', + 'thank_you_for_using_our_app': '弊社のAppをご利用頂き誠にありがとうございます。', 'if_you_like_it': 'If you like it please', - 'click_here': 'clicca qui', - 'click_here_capital': 'Clicca qui', + 'click_here': 'こちらをクリック', + 'click_here_capital': 'Click here', 'to_rate_it': 'to rate it.', - 'average': 'Media', - 'unapproved': 'non approvato', + 'average': '平均', + 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Si prega di autenticarsi per cambiare questa impostazione', - 'locked': 'Bloccato', - 'authenticate': 'Autentica', - 'please_authenticate': 'Si prega di autenticarsi', - 'biometric_authentication': 'Autenticazione biometrica', - 'footer': 'Piè di Pagina', - 'compare': 'Compara', + 'Please authenticate to change this setting', + 'locked': 'Locked', + 'authenticate': 'Authenticate', + 'please_authenticate': 'Please authenticate', + 'biometric_authentication': 'Biometric Authentication', + 'footer': 'フッタ', + 'compare': 'Compare', 'hosted_login': 'Hosted Login', 'selfhost_login': 'Selfhost Login', 'google_sign_in': 'Sign in with Google', - 'today': 'Oggi', - 'custom_range': 'Intervallo personalizzato', - 'date_range': 'Intervallo di Tempo', - 'current': 'Corrente', - 'previous': 'Precedente', - 'current_period': 'Periodo corrente', - 'comparison_period': 'Periodo di comparazione', - 'previous_period': 'Periodo precedente', - 'previous_year': 'Anno precedente', - 'compare_to': 'Compara a', - 'last7_days': 'Ultimi 7 giorni', - 'last_week': 'L\'ultima settimana', - 'last30_days': 'Ultimi 30 giorni', - 'this_month': 'Questo mese', - 'last_month': 'Mese scorso', - 'this_year': 'Quest\'anno', - 'last_year': 'Anno scorso', - 'custom': 'Personalizzato', - 'clone_to_invoice': 'Clona come fattura', - 'clone_to_quote': 'Clona come preventivo', - 'clone_to_credit': 'Clona come credito', - 'view_invoice': 'Visualizzare Fattura', - 'convert': 'Convertire', - 'more': 'Altro', - 'edit_client': 'Modifica Cliente', - 'edit_product': 'Modifica Prodotto', - 'edit_invoice': 'Modifica Fattura', - 'edit_quote': 'Modifica Preventivo', - 'edit_payment': 'Modifica pagamento', - 'edit_task': 'Modifica l\'attività', - 'edit_expense': 'Modifica Spesa', - 'edit_vendor': 'Modifica Fornitore', - 'edit_project': 'Modifica Progetto', - 'edit_recurring_quote': 'Modifica Preventivo Ricorrente', - 'billing_address': 'Indirizzo di fatturazione', - 'shipping_address': 'Indirizzo di spedizione', - 'total_revenue': 'Ricavo totale', - 'average_invoice': 'Fattura media', - 'outstanding': 'Inevase', - 'invoices_sent': ':count fatture inviate', - 'active_clients': 'clienti attivi', - 'close': 'Chiudi', - 'email': 'Email', - 'password': 'Password', + 'today': 'Today', + 'custom_range': 'Custom Range', + 'date_range': 'Date Range', + 'current': 'Current', + 'previous': 'Previous', + 'current_period': 'Current Period', + 'comparison_period': 'Comparison Period', + 'previous_period': 'Previous Period', + 'previous_year': 'Previous Year', + 'compare_to': 'Compare to', + 'last7_days': 'Last 7 Days', + 'last_week': 'Last Week', + 'last30_days': 'Last 30 Days', + 'this_month': 'This Month', + 'last_month': 'Last Month', + 'this_year': 'This Year', + 'last_year': 'Last Year', + 'custom': 'カスタム', + 'clone_to_invoice': 'Clone to Invoice', + 'clone_to_quote': 'Clone to Quote', + 'clone_to_credit': 'Clone to Credit', + 'view_invoice': '請求書を表示', + 'convert': 'Convert', + 'more': 'More', + 'edit_client': '顧客を編集', + 'edit_product': '商品を編集', + 'edit_invoice': '請求を編集', + 'edit_quote': '見積書を編集', + 'edit_payment': '支払いを編集', + 'edit_task': 'タスクを更新', + 'edit_expense': 'Edit Expense', + 'edit_vendor': 'Edit Vendor', + 'edit_project': 'プロジェクトを編集', + 'edit_recurring_quote': 'Edit Recurring Quote', + 'billing_address': '請求先住所', + 'shipping_address': 'Shipping Address', + 'total_revenue': 'Total Revenue', + 'average_invoice': '請求の平均', + 'outstanding': 'Outstanding', + 'invoices_sent': ':count invoices sent', + 'active_clients': '有効な顧客', + 'close': '閉じる', + 'email': 'Eメール', + 'password': 'パスワード', 'url': 'URL', - 'secret': 'Segreta', - 'name': 'Nome', - 'logout': 'Esci', - 'login': 'Login', - 'filter': 'Filtra', - 'sort': 'Ordina', - 'search': 'Cerca', - 'active': 'Attivo', + 'secret': 'Secret', + 'name': '名前', + 'logout': 'ログアウト', + 'login': 'ログイン', + 'filter': 'フィルター', + 'sort': 'Sort', + 'search': '検索', + 'active': '有効', 'archived': 'Archived', - 'deleted': 'Eliminato', - 'dashboard': 'Pannello di Controllo', - 'archive': 'Archivia', - 'delete': 'Elimina', - 'restore': 'Ripristina', - 'refresh_complete': 'Aggiornamento completi', - 'please_enter_your_email': 'Inserisci la tua email', - 'please_enter_your_password': 'Si prega di inserire la password', - 'please_enter_your_url': 'Inserisci il tuo URL', - 'please_enter_a_product_key': 'Inserire una chiave prodotto', - 'ascending': 'Crescente', - 'descending': 'Decrescente', - 'save': 'Salva', - 'an_error_occurred': 'Si è verificato un errore', - 'paid_to_date': 'Pagato a oggi', - 'balance_due': 'Totale da Pagare', - 'balance': 'Bilancio', - 'overview': 'Panoramica', - 'details': 'Dettagli', - 'phone': 'Telefono', - 'website': 'Sito web', - 'vat_number': 'Partita IVA', - 'id_number': 'Codice Fiscale', - 'create': 'Crea', - 'copied_to_clipboard': 'Copiato :value negli appunti', - 'error': 'Errore', - 'could_not_launch': 'Esecuzione non riuscita', - 'contacts': 'Contatti', - 'additional': 'Aggiuntivo', - 'first_name': 'Nome', - 'last_name': 'Cognome', - 'add_contact': 'Aggiungi contatto', - 'are_you_sure': 'Sei sicuro?', - 'cancel': 'Annulla', + 'deleted': 'Deleted', + 'dashboard': 'ダッシュボード', + 'archive': 'アーカイブ', + 'delete': '削除', + 'restore': 'リストア', + 'refresh_complete': '更新完了', + 'please_enter_your_email': 'Please enter your email', + 'please_enter_your_password': 'Please enter your password', + 'please_enter_your_url': 'Please enter your URL', + 'please_enter_a_product_key': 'Please enter a product key', + 'ascending': 'Ascending', + 'descending': 'Descending', + 'save': '保存', + 'an_error_occurred': 'An error occurred', + 'paid_to_date': '現在までの支払済額', + 'balance_due': 'Balance Due', + 'balance': 'バランス', + 'overview': '概要', + 'details': '詳細', + 'phone': '電話', + 'website': 'WEBサイト', + 'vat_number': 'VATナンバー', + 'id_number': 'IDナンバー', + 'create': '作成', + 'copied_to_clipboard': 'Copied :value to the clipboard', + 'error': 'Error', + 'could_not_launch': 'Could not launch', + 'contacts': 'コンタクト', + 'additional': 'Additional', + 'first_name': '名', + 'last_name': '姓', + 'add_contact': '連絡先の追加', + 'are_you_sure': 'よろしいですか?', + 'cancel': 'キャンセル', 'ok': 'Ok', - 'remove': 'Elimina', - 'email_is_invalid': 'Email non valida', - 'product': 'Prodotto', - 'products': 'Prodotti', - 'new_product': 'Nuovo Prodotto', - 'created_product': 'Prodotto creato con successo', - 'updated_product': 'Prodotto aggiornato con successo', - 'archived_product': 'Prodotto archiviato con successo', - 'deleted_product': 'Prodotto eliminato con successo', - 'restored_product': 'Prodotto ripristinato con successo', - 'archived_products': 'Archiviati con successo :count prodotti', - 'deleted_products': ':count prodotti eliminati con successo', - 'restored_products': 'Ripristinati con successo :value prodotti', - 'product_key': 'Prodotto', - 'notes': 'Note', + 'remove': 'Remove', + 'email_is_invalid': 'メールアドレスが無効です', + 'product': '商品', + 'products': '商品', + 'new_product': '新しい商品', + 'created_product': '商品を登録しました。', + 'updated_product': '商品を更新しました。', + 'archived_product': '商品をアーカイブしました。', + 'deleted_product': 'Successfully deleted product', + 'restored_product': 'Successfully restored product', + 'archived_products': ':count 個の商品をアーカイブしました。', + 'deleted_products': ':count 個の商品を削除しました。', + 'restored_products': 'Successfully restored :value products', + 'product_key': 'Product', + 'notes': 'ノート', 'cost': 'Cost', - 'client': 'Cliente', - 'clients': 'Clienti', - 'new_client': 'Nuovo Cliente', - 'created_client': 'Cliente creato con successo', - 'updated_client': 'Cliente aggiornato con successo', - 'archived_client': 'Cliente archiviato con successo', - 'archived_clients': ':count clienti archiviati con successo', - 'deleted_client': 'Cliente eliminato con successo', - 'deleted_clients': ':count clienti eliminati con successo', - 'restored_client': 'Cliente ripristinato con successo', + 'client': '顧客', + 'clients': '顧客', + 'new_client': '新しい顧客', + 'created_client': '顧客を登録しました。', + 'updated_client': '顧客を更新しました。', + 'archived_client': '顧客をアーカイブしました。', + 'archived_clients': ':count 件の顧客をアーカイブしました。', + 'deleted_client': '顧客を削除しました。', + 'deleted_clients': ':count 県の顧客を削除しました。', + 'restored_client': '顧客をリストアしました。', 'restored_clients': 'Successfully restored :value clients', - 'address1': 'Via', - 'address2': 'Appartamento/Piano', - 'city': 'Città', - 'state': 'Stato/Provincia', - 'postal_code': 'Codice postale', - 'country': 'Paese', - 'invoice': 'Fattura', - 'invoices': 'Fatture', - 'new_invoice': 'Nuova Fattura', - 'created_invoice': 'Fattura creata con successo', - 'updated_invoice': 'Fattura aggiornata con successo', - 'archived_invoice': 'Fattura archiviata con successo', - 'deleted_invoice': 'Fattura eliminata con successo', - 'restored_invoice': 'Fattura ripristinata con successo', - 'archived_invoices': ':count fatture archiviate con successo', - 'deleted_invoices': ':count fatture eliminate con successo', - 'restored_invoices': 'Ripristinato con successo :value fatture', - 'emailed_invoice': 'Fattura inviata con successo', + 'address1': '番地', + 'address2': '建物', + 'city': '市区町村', + 'state': '都道府県', + 'postal_code': '郵便番号', + 'country': '国', + 'invoice': '請求書', + 'invoices': '請求書', + 'new_invoice': '新しい請求書', + 'created_invoice': '請求書を登録しました。', + 'updated_invoice': '請求書を更新しました。', + 'archived_invoice': '請求書をアーカイブしました。', + 'deleted_invoice': '請求書を削除しました。', + 'restored_invoice': '請求書をリストアしました。', + 'archived_invoices': ':count 件の請求書をアーカイブしました。', + 'deleted_invoices': ':count 件の請求書を削除しました。', + 'restored_invoices': 'Successfully restored :value invoices', + 'emailed_invoice': '請求書をメールしました。', 'emailed_payment': 'Successfully emailed payment', - 'amount': 'Importo', - 'invoice_number': 'Numero Fattura', - 'invoice_date': 'Data Fattura', - 'discount': 'Sconto', - 'po_number': 'Numero d\'ordine d\'acquisto', - 'terms': 'Termini', - 'public_notes': 'Note Pubbliche (Descrizione in fattura)', - 'private_notes': 'Note Personali', - 'frequency': 'Frequenza', - 'start_date': 'Data Inizio', - 'end_date': 'Data Fine', - 'quote_number': 'Numero Preventivo', - 'quote_date': 'Data Preventivo', - 'valid_until': 'Valido fino a', - 'items': 'Articoli', - 'partial_deposit': 'Parziale/Deposito', - 'description': 'Descrizione', - 'unit_cost': 'Costo unitario', - 'quantity': 'Quantità', - 'add_item': 'Aggiungi Articolo', - 'contact': 'Contatto', - 'work_phone': 'Telefono', - 'total_amount': 'Ammontare Totale', + 'amount': '金額', + 'invoice_number': '請求書番号', + 'invoice_date': '請求日', + 'discount': '値引き', + 'po_number': 'PO番号', + 'terms': '条項', + 'public_notes': 'Public Notes', + 'private_notes': '非公開備考', + 'frequency': '頻度', + 'start_date': '開始日', + 'end_date': '終了日', + 'quote_number': '見積書番号', + 'quote_date': '見積日', + 'valid_until': 'Valid Until', + 'items': 'アイテム', + 'partial_deposit': 'Partial/Deposit', + 'description': '説明', + 'unit_cost': '単価', + 'quantity': '数量', + 'add_item': 'アイテムを追加', + 'contact': 'コンタクト', + 'work_phone': '電話番号', + 'total_amount': '合計金額', 'pdf': 'PDF', - 'due_date': 'Scadenza', + 'due_date': '支払日', 'partial_due_date': 'Partial Due Date', - 'status': 'Stato', - 'invoice_status_id': 'Stato della fattura', - 'quote_status': 'Stato preventivo', - 'click_plus_to_add_item': 'Clicca su + per aggiungere un articolo', - 'click_plus_to_add_time': 'Premi + per aggiungere tempo', - 'count_selected': ':count selezionato/i', - 'total': 'Totale', - 'percent': 'Percentuale', - 'edit': 'Modifica', - 'dismiss': 'Chiudi', - 'please_select_a_date': 'Selezionate una data per favore', - 'please_select_a_client': 'Seleziona un cliente', - 'please_select_an_invoice': 'Selezionate una fattura per favore', - 'task_rate': 'Tariffa per le attività', - 'settings': 'Impostazioni', - 'language': 'Linguaggio', - 'currency': 'Valuta', - 'created_at': 'Data Creazione', - 'created_on': 'Creato il', - 'updated_at': 'Aggiornato', - 'tax': 'Tassa', - 'please_enter_an_invoice_number': - 'Si prega di inserire un numero di fattura', - 'please_enter_a_quote_number': 'Inserisci un numero preventivo', - 'past_due': 'Scaduta', - 'draft': 'Bozza', - 'sent': 'Inviato', - 'viewed': 'Visto', - 'approved': 'Approvato', - 'partial': 'Parziale/Deposito', - 'paid': 'Pagata', - 'mark_sent': 'Contrassegna come inviato', - 'marked_invoice_as_sent': - 'Fattura contrassegnata con successo come inviata', - 'marked_invoice_as_paid': - 'Fattura contrassegnata con successo come inviata', - 'marked_invoices_as_sent': - 'Fatture contrassegnate con successo come inviate', - 'marked_invoices_as_paid': - 'Fatture contrassegnate con successo come inviate', - 'done': 'Completato', + 'status': 'ステータス', + 'invoice_status_id': 'Invoice Status', + 'quote_status': 'Quote Status', + 'click_plus_to_add_item': 'Click + to add an item', + 'click_plus_to_add_time': 'Click + to add time', + 'count_selected': ':count selected', + 'total': '合計', + 'percent': 'Percent', + 'edit': '編集', + 'dismiss': 'Dismiss', + 'please_select_a_date': 'Please select a date', + 'please_select_a_client': 'Please select a client', + 'please_select_an_invoice': 'Please select an invoice', + 'task_rate': 'Task Rate', + 'settings': '設定', + 'language': 'Language', + 'currency': '通貨', + 'created_at': 'Date Created', + 'created_on': 'Created On', + 'updated_at': 'Updated', + 'tax': '税', + 'please_enter_an_invoice_number': 'Please enter an invoice number', + 'please_enter_a_quote_number': 'Please enter a quote number', + 'past_due': 'Past Due', + 'draft': 'Draft', + 'sent': '送信済', + 'viewed': 'Viewed', + 'approved': 'Approved', + 'partial': 'Partial/Deposit', + 'paid': '支払済', + 'mark_sent': '送付済みにする', + 'marked_invoice_as_sent': 'Successfully marked invoice as sent', + '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': '完了', 'please_enter_a_client_or_contact_name': - 'Si prega di inserire un cliente o nome del contatto', - 'dark_mode': 'Modalità scura', - 'restart_app_to_apply_change': - 'Riavviare la app per applicare il cambiamento', - 'refresh_data': 'Aggiorna dati', - 'blank_contact': 'Svuota Contatto', - 'activity': 'Attività', - 'no_records_found': 'Nessun dato trovato', - 'clone': 'Clona', - 'loading': 'Caricando', - 'industry': 'Industria', - 'size': 'Dimensione', - 'payment_terms': 'Termini di pagamento', - 'payment_date': 'Data Pagamento', - 'payment_status': 'Stato del pagamento', - 'payment_status_1': 'In attesa', - 'payment_status_2': 'Annullato', - 'payment_status_3': 'Fallito', - 'payment_status_4': 'Completato', - 'payment_status_5': 'Parzialmente rimborsato', - 'payment_status_6': 'Rimborsato', - 'payment_status_-1': 'Non applicato', + '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', + 'blank_contact': 'Blank Contact', + 'activity': 'アクティビティ', + 'no_records_found': 'No records found', + 'clone': '複製', + 'loading': 'Loading', + 'industry': 'Industry', + 'size': 'Size', + 'payment_terms': '支払条件', + 'payment_date': '支払日', + 'payment_status': 'Payment Status', + 'payment_status_1': 'Pending', + 'payment_status_2': 'Voided', + 'payment_status_3': 'Failed', + 'payment_status_4': '完了', + 'payment_status_5': 'Partially Refunded', + 'payment_status_6': 'Refunded', + 'payment_status_-1': 'Unapplied', 'payment_status_-2': 'Partially Unapplied', - 'net': 'Netto', - 'client_portal': 'Portale Clienti', - 'show_tasks': 'Mostra attività', - 'email_reminders': 'Promemoria email', - 'enabled': 'Abilitato', - 'recipients': 'Destinatari', - 'initial_email': 'Email iniziale', - 'first_reminder': 'Primo Promemoria', - 'second_reminder': 'Secondo Promemoria', - 'third_reminder': 'Terzo Promemoria', - 'reminder1': 'Primo promemoria', - 'reminder2': 'Secondo promemoria', - 'reminder3': 'Terzo promemoria', - 'template': 'Modello', - 'send': 'Invia', - 'subject': 'Oggetto', - 'body': 'Corpo', - 'send_email': 'Invia Email', - 'email_receipt': 'Invia ricevuta di pagamento al cliente', - 'auto_billing': 'Fatturazione automatica', - 'button': 'Pulsante', - 'preview': 'Anteprima', - 'customize': 'Personalizza', - 'history': 'Storico', - 'payment': 'Pagamento', - 'payments': 'Pagamenti', - 'refunded': 'Rimborsato', - 'payment_type': 'Tipo di Pagamento', - 'transaction_reference': 'Riferimento Transazione', - 'enter_payment': 'Inserisci Pagamento', - 'new_payment': 'Inserisci il pagamento', - 'created_payment': 'Pagamento creato con successo', - 'updated_payment': 'Pagamento aggiornato con successo', - 'archived_payment': 'Pagamento archiviato con successo', - 'deleted_payment': 'Pagamenti eliminati con successo', - 'restored_payment': 'Pagamento ripristinato con successo', - 'archived_payments': ':count pagamenti archiviati con successo', - 'deleted_payments': ':count pagamenti eliminati con successo', + 'net': 'Net', + 'client_portal': '顧客ポータル', + 'show_tasks': 'Show tasks', + 'email_reminders': 'Email Reminders', + 'enabled': 'Enabled', + 'recipients': 'Recipients', + 'initial_email': 'Initial Email', + 'first_reminder': 'First Reminder', + 'second_reminder': 'Second Reminder', + 'third_reminder': 'Third Reminder', + 'reminder1': 'First Reminder', + 'reminder2': 'Second Reminder', + 'reminder3': 'Third Reminder', + 'template': 'Template', + 'send': 'Send', + 'subject': 'サブジェクト', + 'body': '本文', + 'send_email': 'メールを送信', + 'email_receipt': 'Email payment receipt to the client', + 'auto_billing': 'Auto billing', + 'button': 'Button', + 'preview': 'Preview', + 'customize': 'カスタマイズ', + 'history': '履歴', + 'payment': 'Payment', + 'payments': '入金', + 'refunded': 'Refunded', + 'payment_type': 'Payment Type', + 'transaction_reference': 'Transaction Reference', + 'enter_payment': '入金を登録', + 'new_payment': '入金を登録', + 'created_payment': '入金を登録しました。', + 'updated_payment': '支払いを更新しました', + 'archived_payment': '入金をアーカイブしました。', + 'deleted_payment': '入金を削除しました。', + 'restored_payment': 'Successfully restored payment', + 'archived_payments': ':count 件の入金をアーカイブしました。', + 'deleted_payments': ':count 件の入金を削除しました。', 'restored_payments': 'Successfully restored :value payments', - 'quote': 'Preventivo', - 'quotes': 'Preventivi', - 'new_quote': 'Nuovo Preventivo', - 'created_quote': 'Preventivo creato con successo', - 'updated_quote': 'Preventivo aggiornato con successo', - 'archived_quote': 'Preventivo archiviato con successo', - 'deleted_quote': 'Preventivo cancellato con successo', - 'restored_quote': 'Preventivo ripristinato con successo', - 'archived_quotes': 'Sono stati archiviati :count preventivi con successo', - 'deleted_quotes': 'Sono stati cancellati :count preventivi con successo', + 'quote': '見積書', + 'quotes': '見積書', + 'new_quote': '新しい見積書', + 'created_quote': '見積書を新規作成しました。', + 'updated_quote': '見積書を更新しました。', + 'archived_quote': '見積書をアーカイブしました。', + 'deleted_quote': '見積書を削除しました。', + 'restored_quote': '見積書をリストアしました。', + 'archived_quotes': ':count件の見積書をアーカイブしました。', + 'deleted_quotes': ':count件の見積書を削除しました。', 'restored_quotes': 'Successfully restored :value quotes', - 'expense': 'Spesa', - 'expenses': 'Spese', - 'vendor': 'Fornitore', - 'vendors': 'Fornitori', - 'task': 'Attività', - 'tasks': 'Attività', - 'project': 'Progetto', - 'projects': 'Progetti', - 'activity_1': ':user ha creato il cliente :client', - 'activity_2': ':user ha archiviato il cliente :client', - 'activity_3': ':user ha cancellato il cliente :client', - 'activity_4': ':user ha creato la fattura :invoice', - 'activity_5': ':user ha aggiornato la fattura :invoice', - 'activity_6': - ':user ha inviato per email la fattura :invoice per:client a :contact', - 'activity_7': ':contact ha visualizzato la fattura :invoice per :client', - 'activity_8': ':user ha archiviato la fattura :invoice', - 'activity_9': ':user ha cancellato la fattura :invoice', + 'expense': 'Expense', + 'expenses': '経費', + 'vendor': 'Vendor', + 'vendors': '納入業者', + 'task': 'Task', + 'tasks': 'タスク', + 'project': 'プロジェクト', + 'projects': 'プロジェクト', + 'activity_1': ':user は 顧客 :client を作成しました。', + 'activity_2': ':user は 顧客 :client をアーカイブしました。', + 'activity_3': ':user は 顧客 :client を削除しました。', + 'activity_4': ':user は 請求書 :invoice を作成しました。', + 'activity_5': ':user は 請求書 :invoice をアーカイブしました。', + 'activity_6': ':user emailed invoice :invoice for :client to :contact', + 'activity_7': ':contact viewed invoice :invoice for :client', + 'activity_8': ':user は 請求書 :invoice をアーカイブしました。', + 'activity_9': ':user は 請求書 :invoice をアーカイブしました。', 'activity_10': - ':contact ha registrato il pagamento :payment di :payment_amount sulla fattura :invoice per :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', - 'activity_14': ':user ha inserito il credito :credit', - 'activity_15': ':user ha aggiornato il credito :credit', - 'activity_16': ':user ha archiviato il credito :credit', - 'activity_17': ':user ha cancellato il credito :credit', - 'activity_18': ':user ha creato il preventivo :quote', - 'activity_19': ':user ha creato il preventivo :quote', - 'activity_20': - ':user ha inviato per email il preventivo :quote per :client a :contact', - 'activity_21': ':contact ha visto il preventivo :quote', - 'activity_22': ':user ha archiviato il preventivo :quote', - 'activity_23': ':user ha cancellato il preventivo :quote', - 'activity_24': ':user ha ripristinato il preventivo :quote', - 'activity_25': ':user ha ripristinato la fattura :invoice', - 'activity_26': ':user ha ripristinato il cliente :client', - 'activity_27': ':user ha ripristinato il pagamento :payment', - 'activity_28': ':user ha ripristinato il credito :credit', - 'activity_29': ':contact ha approvato il preventivo :quote per :client', - 'activity_30': 'L\'utente :user ha creato il fornitore :vendor', - 'activity_31': 'L\'utente :user ha archiviato il fornitore :vendor', - 'activity_32': 'L\'utente :user ha eliminato il fornitore :vendor', - 'activity_33': 'L\'utente :user ha ripristinato il fornitore :vendor', - 'activity_34': 'L\'utente :user ha creato la spesa :expense', - 'activity_35': 'L\'utente :user ha archiviato la spesa :expense', - 'activity_36': 'L\'utente :user ha eliminato la spesa :expense', - 'activity_37': 'L\'utente :user ha ripristinato la spesa :expense', - 'activity_39': - ':user ha annullato un pagamento :payment da :payment_amount', + ':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', + 'activity_14': ':user entered :credit credit', + 'activity_15': ':user updated :credit credit', + 'activity_16': ':user archived :credit credit', + 'activity_17': ':user deleted :credit credit', + 'activity_18': ':user created quote :quote', + 'activity_19': ':user updated quote :quote', + 'activity_20': ':user emailed quote :quote for :client to :contact', + 'activity_21': ':contact viewed quote :quote', + 'activity_22': ':user archived quote :quote', + 'activity_23': ':user deleted quote :quote', + 'activity_24': ':user restored quote :quote', + 'activity_25': ':user restored invoice :invoice', + 'activity_26': ':user restored client :client', + 'activity_27': ':user restored payment :payment', + 'activity_28': ':user restored :credit credit', + 'activity_29': ':contact approved quote :quote for :client', + 'activity_30': ':user created vendor :vendor', + 'activity_31': ':user archived vendor :vendor', + 'activity_32': ':user deleted vendor :vendor', + 'activity_33': ':user restored vendor :vendor', + 'activity_34': ':user created expense :expense', + 'activity_35': ':user archived expense :expense', + 'activity_36': ':user deleted expense :expense', + 'activity_37': ':user restored expense :expense', + 'activity_39': ':user cancelled a :payment_amount payment :payment', 'activity_40': - ':user ha rimborsato :adjustment di un pagamento :payment da :payment_amount', - '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', - 'activity_44': 'L\'utente :user ha archiviato l\'attività :task', - 'activity_45': 'L\'utente :user ha eliminato l\'attività :task', - 'activity_46': 'L\'utente :user ha ripristinato l\'attività :task', - 'activity_47': 'L\'utente :user ha aggiornato la spesa :expense', - 'activity_48': ':user ha aggiornato il ticket :ticket', - 'activity_49': ':user ha chiuso il ticket :ticket', - 'activity_50': ':user ha unito il ticket :ticket', - 'activity_51': ':user ha separato il ticket :ticket', - 'activity_52': ':contact ha aperto il ticket :ticket', - 'activity_53': ':contact ha riaperto il ticket :ticket', - 'activity_54': ':user ha riaperto il ticket :ticket', - 'activity_55': ':contact ha risposto al ticket :ticket', - 'activity_56': ':user ha visualizzato il ticket :ticket', - 'activity_57': - 'Il sistema non è riuscito a inviare la fattura :invoice via e-mail', - 'activity_58': ':user ha stornato la fattura :invoice', - 'activity_59': ':user ha cancellato la fattura :invoice', - 'activity_60': ':contact ha visualizzato il preventivo :quote', - 'activity_61': ':user ha aggiornato il cliente :client', - 'activity_62': ':user ha aggiornato il fornitore :vendor', + ':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', + 'activity_44': ':user archived task :task', + 'activity_45': ':user deleted task :task', + 'activity_46': ':user restored task :task', + 'activity_47': ':user updated expense :expense', + 'activity_48': ':user updated ticket :ticket', + 'activity_49': ':user closed ticket :ticket', + 'activity_50': ':user merged ticket :ticket', + 'activity_51': ':user split ticket :ticket', + 'activity_52': ':contact opened ticket :ticket', + 'activity_53': ':contact reopened ticket :ticket', + 'activity_54': ':user reopened ticket :ticket', + 'activity_55': ':contact replied ticket :ticket', + 'activity_56': ':user viewed ticket :ticket', + 'activity_57': 'System failed to email invoice :invoice', + 'activity_58': ':user reversed invoice :invoice', + 'activity_59': ':user cancelled invoice :invoice', + 'activity_60': ':contact viewed quote :quote', + 'activity_61': ':user updated client :client', + 'activity_62': ':user updated vendor :vendor', 'activity_63': - ':user ha inviato il primo promemoria per la fattura :invoice a :contact', + ':user emailed first reminder for invoice :invoice to :contact', 'activity_64': - ':user ha inviato un secondo promemoria per la fattura :invoice a :contact', + ':user emailed second reminder for invoice :invoice to :contact', 'activity_65': - ':user ha inviato il terzo promemoria per la fattura :invoice a :contact', + ':user emailed third reminder for invoice :invoice to :contact', 'activity_66': - ':user ha inviato un promemoria ricorrente per la fattura :invoice a :contact', + ':user emailed endless reminder for invoice :invoice to :contact', 'activity_80': ':user created subscription :subscription', 'activity_81': ':user updated subscription :subscription', 'activity_82': ':user archived subscription :subscription', 'activity_83': ':user deleted subscription :subscription', 'activity_84': ':user restored subscription :subscription', - 'one_time_password': 'Password a uso singolo', - 'emailed_quote': 'Preventivo inviato con successo', + 'one_time_password': 'ワンタイムパスワード', + 'emailed_quote': '見積書をメールしました。', 'emailed_credit': 'Successfully emailed credit', - 'marked_quote_as_sent': - 'Preventivo contrassegnato come inviato con successo', + 'marked_quote_as_sent': 'Successfully marked quote as sent', 'marked_credit_as_sent': 'Successfully marked credit as sent', - 'expired': 'Scaduto', - 'all': 'Tutti', - 'select': 'Seleziona', + 'expired': 'Expired', + 'all': 'All', + 'select': '選択', 'long_press_multiselect': 'Long-press Multiselect', - 'custom_value1': 'Valore Personalizzato', - 'custom_value2': 'Valore Personalizzato', - 'custom_value3': 'Valore Personalizzato 3', - 'custom_value4': 'Valore Personalizzato 4', + 'custom_value1': 'Custom Value', + 'custom_value2': 'Custom Value', + 'custom_value3': 'Custom Value 3', + 'custom_value4': 'Custom Value 4', 'email_style_custom': 'Custom Email Style', - 'custom_message_dashboard': - 'Messaggio Pannello di Controllo Personalizzato', - 'custom_message_unpaid_invoice': - 'Messaggio personalizzato su fattura non pagata', - 'custom_message_paid_invoice': 'Messaggio personalizzato fattura pagata', + 'custom_message_dashboard': 'Custom Dashboard Message', + 'custom_message_unpaid_invoice': 'Custom Unpaid Invoice Message', + 'custom_message_paid_invoice': 'Custom Paid Invoice Message', 'custom_message_unapproved_quote': 'Custom Unapproved Quote Message', - 'lock_invoices': 'Blocca fatture', - 'translations': 'Traduzioni', - 'task_number_pattern': 'Pattern numero attività', - 'task_number_counter': 'Contatore numero attività', - 'expense_number_pattern': 'Formato numero spesa', - 'expense_number_counter': 'Contatore numero spesa', - 'vendor_number_pattern': 'Formato numero fornitore', - 'vendor_number_counter': 'Contatore numero venditore', - 'ticket_number_pattern': 'Formato numero ticket', - 'ticket_number_counter': 'Contatore numero ticket', - 'payment_number_pattern': 'Formato numero pagamento', - 'payment_number_counter': 'Contatore numero pagamento', - 'invoice_number_pattern': 'Formato numero fatture', - 'invoice_number_counter': 'Contatore numerazione fatture', - 'quote_number_pattern': 'Formato numero preventivi', - 'quote_number_counter': 'Contatore numerazione preventivi', - 'client_number_pattern': 'Formato numero crediti', - 'client_number_counter': 'Contatore numero credito', - 'credit_number_pattern': 'Formato numero crediti', - 'credit_number_counter': 'Contatore numero credito', - 'reset_counter_date': 'Resetta contatore data', - 'counter_padding': 'Riempimento contatore', - 'shared_invoice_quote_counter': - 'Contatore condiviso per fatture/preventivi', + 'lock_invoices': '請求書をロック', + 'translations': 'Translations', + 'task_number_pattern': 'Task Number Pattern', + 'task_number_counter': 'Task Number Counter', + 'expense_number_pattern': 'Expense Number Pattern', + 'expense_number_counter': 'Expense Number Counter', + 'vendor_number_pattern': 'Vendor Number Pattern', + 'vendor_number_counter': 'Vendor Number Counter', + 'ticket_number_pattern': 'Ticket Number Pattern', + 'ticket_number_counter': 'Ticket Number Counter', + 'payment_number_pattern': 'Payment Number Pattern', + 'payment_number_counter': 'Payment Number Counter', + 'invoice_number_pattern': 'Invoice Number Pattern', + 'invoice_number_counter': '請求書番号カウンター', + 'quote_number_pattern': 'Quote Number Pattern', + 'quote_number_counter': '請求書番号カウンター', + 'client_number_pattern': 'Credit Number Pattern', + 'client_number_counter': 'Credit Number Counter', + 'credit_number_pattern': 'Credit Number Pattern', + 'credit_number_counter': 'Credit Number Counter', + 'reset_counter_date': 'Reset Counter Date', + 'counter_padding': 'Counter Padding', + 'shared_invoice_quote_counter': 'Shared Invoice Quote Counter', 'default_tax_name_1': 'Default Tax Name 1', 'default_tax_rate_1': 'Default Tax Rate 1', 'default_tax_name_2': 'Default Tax Name 2', 'default_tax_rate_2': 'Default Tax Rate 2', 'default_tax_name_3': 'Default Tax Name 3', 'default_tax_rate_3': 'Default Tax Rate 3', - 'email_subject_invoice': 'Oggetto della fattura e-mail', + 'email_subject_invoice': 'Email Invoice Subject', 'email_subject_quote': 'Email Quote Subject', 'email_subject_payment': 'Email Payment Subject', - 'email_subject_payment_partial': 'Oggetto e-mail pagamento parziale', - 'show_table': 'Mostra Tabella', - 'show_list': 'Mostra Lista', - 'client_city': 'Città cliente', - 'client_state': 'Stato cliente', - 'client_country': 'Paese cliente', - 'client_is_active': 'Il cliente è attivo', - 'client_balance': 'Bilancio cliente', - 'client_address1': 'Via del cliente', - 'client_address2': 'Appartamento/Scala del cliente', - 'vendor_address1': 'Via Fornitore', - 'vendor_address2': 'Scala/Appartamento Fornitore', - 'client_shipping_address1': 'Via spedizione cliente', - 'client_shipping_address2': 'Appartametno/Scala spedizione cliente', - 'type': 'Tipo', - 'invoice_amount': 'Importo Fattura', - 'invoice_due_date': 'Scadenza fattura', - 'tax_rate1': 'Tax Rate 1', - 'tax_rate2': 'Tax Rate 2', - 'tax_rate3': 'Tax Rate 3', - 'auto_bill': 'Fatturazione automatica', - 'archived_at': 'Archived At', - 'has_expenses': 'Ha spese', - 'custom_taxes1': 'Tasse Personalizzate 1', - 'custom_taxes2': 'Tasse Personalizzate 2', - 'custom_taxes3': 'Tasse Personalizzate 3', - 'custom_taxes4': 'Tasse Personalizzate 4', - 'custom_surcharge1': 'Imposta personalizzata 1', - 'custom_surcharge2': 'Imposta personalizzata 2', - 'custom_surcharge3': 'Imposta personalizzata 3', - 'custom_surcharge4': 'Imposta personalizzata 4', - 'is_deleted': 'È cancellato', - 'vendor_city': 'Città Fornitore', - 'vendor_state': 'Stato Fornitore', - 'vendor_country': 'Paese fornitore', - 'is_approved': 'È approvato', - 'tax_name': 'Nome Tassa', - 'tax_amount': 'Importo tassa', - 'tax_paid': 'Tassa pagata', - 'payment_amount': 'Importo Pagamento', - 'age': 'Età', + 'email_subject_payment_partial': 'Email Partial Payment Subject', + 'show_table': 'テーブルを表示', + 'show_list': 'リストを表示', + 'client_city': 'Client City', + 'client_state': 'Client State', + 'client_country': 'Client Country', + 'client_is_active': 'Client is Active', + 'client_balance': 'Client Balance', + 'client_address1': 'Client Street', + 'client_address2': 'Client Apt/Suite', + 'vendor_address1': 'Vendor Street', + 'vendor_address2': 'Vendor Apt/Suite', + 'client_shipping_address1': 'Client Shipping Street', + 'client_shipping_address2': 'Client Shipping Apt/Suite', + 'type': 'Type', + 'invoice_amount': 'Invoice Amount', + 'invoice_due_date': '支払期日', + 'tax_rate1': 'Tax Rate 1', + 'tax_rate2': 'Tax Rate 2', + 'tax_rate3': 'Tax Rate 3', + 'auto_bill': 'Auto Bill', + 'archived_at': 'Archived At', + 'has_expenses': 'Has Expenses', + 'custom_taxes1': 'Custom Taxes 1', + 'custom_taxes2': 'Custom Taxes 2', + 'custom_taxes3': 'Custom Taxes 3', + 'custom_taxes4': 'Custom Taxes 4', + 'custom_surcharge1': 'Custom Surcharge 1', + 'custom_surcharge2': 'Custom Surcharge 2', + 'custom_surcharge3': 'Custom Surcharge 3', + 'custom_surcharge4': 'Custom Surcharge 4', + 'is_deleted': 'Is Deleted', + 'vendor_city': 'Vendor City', + 'vendor_state': 'Vendor State', + 'vendor_country': 'Vendor Country', + 'is_approved': 'Is Approved', + 'tax_name': '税名称', + 'tax_amount': 'Tax Amount', + 'tax_paid': '税金支払済', + 'payment_amount': '入金額', + 'age': 'Age', 'is_running': 'Is Running', - 'time_log': 'Log temporale', - 'bank_id': 'Banca', - 'expense_category_id': 'ID della categoria di spesa', - 'expense_category': 'Categoria Spesa', - 'invoice_currency_id': 'ID Valuta Fattura', - 'tax_name1': 'Nome tassa 1', - 'tax_name2': 'Nome tassa 2', + 'time_log': 'Time Log', + 'bank_id': '銀行', + 'expense_category_id': 'Expense Category ID', + 'expense_category': 'Expense Category', + 'invoice_currency_id': 'Invoice Currency ID', + 'tax_name1': 'Tax Name 1', + 'tax_name2': 'Tax Name 2', 'tax_name3': 'Tax Name 3', - 'transaction_id': 'ID transazione', + 'transaction_id': 'Transaction ID', 'status_color_theme': 'Status Color Theme', 'load_color_theme': 'Load Color Theme', }, - 'ja': { + 'lv_LV': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'The fee for a :amount invoice would be :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Approve', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -31856,7 +32202,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'giropay': 'GiroPay', 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', - 'set_password': 'パスワードを設定', + 'set_password': 'Set Password', 'recommend_desktop': 'We recommend using the desktop app for the best performance', 'recommend_mobile': @@ -31879,7 +32225,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'unauthorized_stripe_warning': 'Please authorize Stripe to accept online payments.', 'view_expense': 'View expense # :expense', - 'view_statement': 'View Statement', + 'view_statement': 'Skatīt kopskatu', 'sepa': 'SEPA Direct Debit', 'ideal': 'iDEAL', 'przelewy24': 'Przelewy24', @@ -32021,12 +32367,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'search_kanban': 'Search Kanban', 'search_kanbans': 'Search Kanban', 'kanban': 'Kanban', - 'enable': '有効', + 'enable': 'Atļaut', 'move_top': 'Move Top', 'move_up': 'Move Up', 'move_down': 'Move Down', 'move_bottom': 'Move Bottom', - 'subdomain_help': 'あなた自身のWebサイトで請求書を表示するために、サブドメインを設定', + 'subdomain_help': + 'Set the subdomain or display the invoice on your own website.', 'body_variable_missing': 'Error: the custom email must include a :body variable', 'add_body_variable_message': 'Make sure to include a :body variable', @@ -32112,7 +32459,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'connected_google': 'Successfully connected account', 'disconnected_google': 'Successfully disconnected account', 'delivered': 'Delivered', - 'bounced': 'Bounced', + 'bounced': 'Noraidīts', 'spam': 'Spam', 'view_docs': 'View Docs', 'enter_phone_to_enable_two_factor': @@ -32120,10 +32467,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'send_sms': 'Send SMS', 'sms_code': 'SMS Code', 'two_factor_setup_help': 'Scan the bar code with a :link compatible app.', - 'enabled_two_factor': '2要素認証が有効化されました', + 'enabled_two_factor': 'Successfully enabled Two-Factor Authentication', 'connect_google': 'Connect Google', 'disconnect_google': 'Disconnect Google', - 'enable_two_factor': '2要素認証', + 'enable_two_factor': 'Two-Factor Authentication', 'disable_two_factor': 'Disable Two Factor', 'require_password_with_social_login': 'Require Password with Social Login', @@ -32142,13 +32489,14 @@ mixin LocalizationsProvider on LocaleCodeAware { 'list_long_press': 'List Long Press', 'show_actions': 'Show Actions', 'start_multiselect': 'Start Multiselect', - 'email_sent_to_confirm_email': 'メールアドレス確認用メールが送信されました', + 'email_sent_to_confirm_email': + 'An email has been sent to confirm the email address', 'counter_pattern_error': 'To use :client_counter please add either :client_number or :client_id_number to prevent conflicts', 'this_quarter': 'This Quarter', - 'last_quarter': 'Last Quarter', + 'last_quarter': 'Iepriekšējais Kvartāls', 'to_update_run': 'To update run', - 'convert_to_invoice': '請求書に変換', + 'convert_to_invoice': 'Convert to Invoice', 'registration_url': 'Registration URL', 'invoice_project': 'Invoice Project', 'invoice_task': 'Invoice Task', @@ -32176,7 +32524,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'after_taxes': 'After Taxes', 'color': 'Color', 'show': 'Show', - 'hide': '隠す', + 'hide': 'Hide', 'empty_columns': 'Empty Columns', 'debug_mode_is_enabled': 'Debug mode is enabled', 'debug_mode_is_enabled_help': @@ -32190,14 +32538,14 @@ mixin LocalizationsProvider on LocaleCodeAware { 'duplicate_column_mapping': 'Duplicate column mapping', 'uses_inclusive_taxes': 'Uses Inclusive Taxes', 'is_amount_discount': 'Is Amount Discount', - 'column': 'カラム', - 'sample': 'サンプル', + 'column': 'Kolonna', + 'sample': 'Paraugs', 'map_to': 'Map To', - 'import': 'インポート', + 'import': 'Imports', 'first_row_as_column_names': 'Use first row as column names', - 'select_file': 'ファイルを選択してください。', + 'select_file': 'Lūdzu, izvēlieties failu', 'no_file_selected': 'No File Selected', - 'csv_file': 'CSVファイル', + 'csv_file': 'CSV fails', 'csv': 'CSV', 'freshbooks': 'FreshBooks', 'invoice2go': 'Invoice2go', @@ -32215,30 +32563,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'sidebar_editor': 'Sidebar Editor', 'please_type_to_confirm': 'Please type \":value\" to confirm', 'purge': 'Purge', - 'service': 'Service', + 'service': 'Serviss', 'clone_to': 'Clone To', 'clone_to_other': 'Clone to Other', 'labels': 'Labels', 'add_custom': 'Add Custom', 'payment_tax': 'Payment Tax', - 'unpaid': '未払い', + 'unpaid': 'Unpaid', 'white_label': 'White Label', - 'delivery_note': 'Delivery Note', - 'sent_invoices_are_locked': '送信済請求書はロックされました', + 'delivery_note': 'Piegādes piezīme', + 'sent_invoices_are_locked': 'Sent invoices are locked', 'paid_invoices_are_locked': 'Paid invoices are locked', 'source_code': 'Source Code', 'app_platforms': 'App Platforms', 'invoice_late': 'Invoice Late', 'quote_expired': 'Quote Expired', - 'partial_due': 'Partial Due', - 'invoice_total': '請求合計', - 'quote_total': '見積金額合計', + 'partial_due': 'Daļējs maksājums', + 'invoice_total': 'Kopējais rēķins', + 'quote_total': 'Quote Total', 'credit_total': 'Credit Total', 'recurring_invoice_total': 'Invoice Total', 'actions': 'Actions', - 'expense_number': '経費番号', - 'task_number': 'タスク番号', - 'project_number': 'プロジェクト番号', + 'expense_number': 'Expense Number', + 'task_number': 'Task Number', + 'project_number': 'Project Number', 'project_name': 'Project Name', 'warning': 'Warning', 'view_settings': 'View Settings', @@ -32248,7 +32596,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'expired_quote': 'Expired Quote', 'remind_invoice': 'Remind Invoice', 'cvv': 'CVV', - 'client_name': '顧客名', + 'client_name': 'Klienta vārds', 'client_phone': 'Client Phone', 'required_fields': 'Required Fields', 'calculated_rate': 'Calculated Rate', @@ -32303,7 +32651,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'negative_payment_error': 'The credit amount cannot exceed the payment amount', 'view_changes': 'View Changes', - 'force_update': '強制的にアップデート', + 'force_update': 'Force Update', 'force_update_help': 'You are running the latest version but there may be pending fixes available.', 'mark_paid_help': 'Track the expense has been paid', @@ -32344,13 +32692,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'next_send_date': 'Next Send Date', 'remaining_cycles': 'Remaining Cycles', 'recurring_invoice': 'Recurring Invoice', - 'recurring_invoices': '繰り返しの請求書', + 'recurring_invoices': 'Atkārtoti rēķini', 'new_recurring_invoice': 'New Recurring Invoice', 'edit_recurring_invoice': 'Edit Recurring Invoice', 'created_recurring_invoice': 'Successfully created recurring invoice', 'updated_recurring_invoice': 'Successfully updated recurring invoice', - 'archived_recurring_invoice': '繰り返しの請求書をアーカイブしました。', - 'deleted_recurring_invoice': '繰り返しの請求書を削除しました。', + 'archived_recurring_invoice': 'Successfully archived recurring invoice', + 'deleted_recurring_invoice': 'Successfully deleted recurring invoice', 'removed_recurring_invoice': 'Successfully removed recurring invoice', 'restored_recurring_invoice': 'Successfully restored recurring invoice', 'archived_recurring_invoices': @@ -32372,7 +32720,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'allow_under_payment_help': 'Support paying at minimum the partial/deposit amount', 'test_mode': 'Test Mode', - 'opened': 'Opened', + 'opened': 'Atvērti', 'payment_reconciliation_failure': 'Reconciliation Failure', 'payment_reconciliation_success': 'Reconciliation Success', 'gateway_success': 'Gateway Success', @@ -32385,33 +32733,33 @@ mixin LocalizationsProvider on LocaleCodeAware { 'upstream_failure': 'Upstream Failure', 'system_logs': 'System Logs', 'view_portal': 'View Portal', - 'copy_link': 'リンクをコピー', + 'copy_link': 'Copy Link', 'token_billing': 'Save card details', - 'welcome_to_invoice_ninja': 'Invoice Ninja へようこそ', + 'welcome_to_invoice_ninja': 'Welcome to Invoice Ninja', 'always': 'Always', 'optin': 'Opt-In', 'optout': 'Opt-Out', 'label': 'Label', - 'client_number': '顧客番号', + 'client_number': 'Client Number', 'auto_convert': 'Auto Convert', 'company_name': 'Company Name', - 'reminder1_sent': 'リマインダー1送信済', - 'reminder2_sent': 'リマインダー2送信済', - 'reminder3_sent': 'リマインダー3送信済', - 'reminder_last_sent': '最終リマインダー送信済', + 'reminder1_sent': 'Reminder 1 Sent', + 'reminder2_sent': 'Reminder 2 Sent', + 'reminder3_sent': 'Reminder 3 Sent', + 'reminder_last_sent': 'Reminder Last Sent', 'pdf_page_info': 'Page :current of :total', - 'emailed_invoices': 'Successfully emailed invoices', - 'emailed_quotes': 'Successfully emailed quotes', + 'emailed_invoices': 'Veiksmīgi nosūtīti rēķini', + 'emailed_quotes': 'Veiksmīgi nosūtīti citāti', 'emailed_credits': 'Successfully emailed credits', 'gateway': 'Gateway', 'view_in_stripe': 'View in Stripe', 'rows_per_page': 'Rows Per Page', - 'hours': 'Hours', - 'statement': 'Statement', - 'taxes': '税', + 'hours': 'Stundas', + 'statement': 'Konta izraksts', + 'taxes': 'Nodokļi', 'surcharge': 'Surcharge', 'apply_payment': 'Apply Payment', - 'apply_credit': '前受金を適用', + 'apply_credit': 'Apply Credit', 'apply': 'Apply', 'unapplied': 'Unapplied', 'select_label': 'Select Label', @@ -32423,54 +32771,54 @@ mixin LocalizationsProvider on LocaleCodeAware { 'width': 'Width', 'to': 'To', 'health_check': 'Health Check', - 'payment_type_id': '入金方法', + 'payment_type_id': 'Maksājuma veids', 'last_login_at': 'Last Login At', 'company_key': 'Company Key', 'storefront': 'Storefront', 'storefront_help': 'Enable third-party apps to create invoices', - 'client_created': '顧客を登録しました', + 'client_created': 'Client Created', 'online_payment_email': 'Online Payment Email', 'manual_payment_email': 'Manual Payment Email', - 'completed': '完了', + 'completed': 'Completed', 'gross': 'Gross', 'net_amount': 'Net Amount', 'net_balance': 'Net Balance', 'client_settings': 'Client Settings', 'selected_invoices': 'Selected Invoices', 'selected_payments': 'Selected Payments', - 'selected_quotes': 'Selected Quotes', + 'selected_quotes': 'Izvēlēties Piedāvājumu', 'selected_tasks': 'Selected Tasks', 'selected_expenses': 'Selected Expenses', - 'upcoming_invoices': '次回請求', + 'upcoming_invoices': 'Gaidāmie rēķini', 'past_due_invoices': 'Past Due Invoices', - 'recent_payments': '最近の入金', - 'upcoming_quotes': 'Upcoming Quotes', - 'expired_quotes': 'Expired Quotes', + 'recent_payments': 'Recent Payments', + 'upcoming_quotes': 'Gaidāmie Piedāvājumi', + 'expired_quotes': 'Piedāvājumi, kuriem beidzies derīguma termiņš.', 'create_client': 'Create Client', - 'create_invoice': '請求を新規作成', - 'create_quote': '見積書を新規作成', + 'create_invoice': 'Izveidojiet rēķinu', + 'create_quote': 'Create Quote', 'create_payment': 'Create Payment', - 'create_vendor': '新しい納入業者', + 'create_vendor': 'Create vendor', 'update_quote': 'Update Quote', - 'delete_quote': '見積書を削除', + 'delete_quote': 'Delete Quote', 'update_invoice': 'Update Invoice', - 'delete_invoice': '請求書を削除', + 'delete_invoice': 'Dzēst rēķinu', 'update_client': 'Update Client', - 'delete_client': '顧客を削除', - 'delete_payment': '入金を削除', + 'delete_client': 'Dzēst klientu', + 'delete_payment': 'Dzēst maksājumu', 'update_vendor': 'Update Vendor', 'delete_vendor': 'Delete Vendor', 'create_expense': 'Create Expense', 'update_expense': 'Update Expense', 'delete_expense': 'Delete Expense', - 'create_task': 'タスクを新規作成', + 'create_task': 'Create Task', 'update_task': 'Update Task', - 'delete_task': 'タスクを削除', + 'delete_task': 'Delete Task', 'approve_quote': 'Approve Quote', 'off': 'Off', 'when_paid': 'When Paid', 'expires_on': 'Expires On', - 'free': 'フリー', + 'free': 'Free', 'plan': 'Plan', 'show_sidebar': 'Show Sidebar', 'hide_sidebar': 'Hide Sidebar', @@ -32496,18 +32844,18 @@ mixin LocalizationsProvider on LocaleCodeAware { 'deleted_webhooks': 'Successfully deleted :value webhooks', 'removed_webhooks': 'Successfully removed :value webhooks', 'restored_webhooks': 'Successfully restored :value webhooks', - 'api_tokens': 'APIトークン', + 'api_tokens': 'API Tokens', 'api_docs': 'API Docs', 'search_tokens': 'Search :count Tokens', 'search_token': 'Search 1 Token', - 'token': 'トークン', - 'tokens': 'トークン', + 'token': 'Token', + 'tokens': 'Tokens', 'new_token': 'New Token', - 'edit_token': 'トークンを編集', - 'created_token': 'トークンを追加しました。', - 'updated_token': 'トークンを更新しました。', - 'archived_token': 'トークンをアーカイブしました。', - 'deleted_token': 'トークンを削除しました。', + 'edit_token': 'Edit Token', + 'created_token': 'Successfully created token', + 'updated_token': 'Successfully updated token', + 'archived_token': 'Successfully archived token', + 'deleted_token': 'Successfully deleted token', 'removed_token': 'Successfully removed token', 'restored_token': 'Successfully restored token', 'archived_tokens': 'Successfully archived :value tokens', @@ -32517,8 +32865,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_registration_help': 'Enable clients to self register in the portal', 'customize_and_preview': 'Customize & Preview', - 'email_invoice': '請求書をメールする', - 'email_quote': '見積書をメール', + 'email_invoice': 'Nosūtīt rēķinu', + 'email_quote': 'Email Quote', 'email_credit': 'Email Credit', 'email_payment': 'Email Payment', 'client_email_not_set': 'Client does not have an email address set', @@ -32544,14 +32892,14 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_payment_terms': 'Successfully archived :value payment terms', 'deleted_payment_terms': 'Successfully deleted :value payment terms', 'restored_payment_terms': 'Successfully restored :value payment terms', - 'email_sign_in': 'メールアドレスでログイン', + 'email_sign_in': 'Sign in with email', 'change': 'Change', 'change_to_mobile_layout': 'Change to the mobile layout?', 'change_to_desktop_layout': 'Change to the desktop layout?', 'send_from_gmail': 'Send from Gmail', 'reversed': 'Reversed', 'cancelled': 'Cancelled', - 'credit_amount': '前受金総額', + 'credit_amount': 'Kredīta summa', 'quote_amount': 'Quote Amount', 'hosted': 'Hosted', 'selfhosted': 'Self-Hosted', @@ -32560,23 +32908,23 @@ mixin LocalizationsProvider on LocaleCodeAware { 'hide_menu': 'Hide Menu', 'show_menu': 'Show Menu', 'partially_refunded': 'Partially Refunded', - 'search_documents': '文書の検索', + 'search_documents': 'Search Documents', 'search_designs': 'Search Designs', - 'search_invoices': '請求書の検索', - 'search_clients': '顧客の検索', - 'search_products': '商品の検索', - 'search_quotes': '見積書の検索', + 'search_invoices': 'Search Invoices', + 'search_clients': 'Search Clients', + 'search_products': 'Search Products', + 'search_quotes': 'Meklēt Piedāvājumu', 'search_credits': 'Search Credits', - 'search_vendors': '納入業者の検索', - 'search_users': 'ユーザーの検索', - 'search_tax_rates': '税率の検索', - 'search_tasks': 'タスクの検索', - 'search_settings': '設定の検索', - 'search_projects': 'プロジェクトの検索', - 'search_expenses': '経費の検索', + 'search_vendors': 'Search Vendors', + 'search_users': 'Search Users', + 'search_tax_rates': 'Search Tax Rates', + 'search_tasks': 'Search Tasks', + 'search_settings': 'Search Settings', + 'search_projects': 'Search Projects', + 'search_expenses': 'Search Expenses', 'search_payments': 'Search Payments', - 'search_groups': 'グループの検索', - 'search_company': '会社の検索', + 'search_groups': 'Search Groups', + 'search_company': 'Search Company', 'search_document': 'Search 1 Document', 'search_design': 'Search 1 Design', 'search_invoice': 'Search 1 Invoice', @@ -32634,8 +32982,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'payment_success': 'Payment Success', 'payment_failure': 'Payment Failure', 'invoice_sent': ':count invoice sent', - 'quote_sent': '見積書送信済', - 'credit_sent': '前受金送信済', + 'quote_sent': 'Quote Sent', + 'credit_sent': 'Credit Sent', 'invoice_viewed': 'Invoice Viewed', 'quote_viewed': 'Quote Viewed', 'credit_viewed': 'Credit Viewed', @@ -32643,8 +32991,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'receive_all_notifications': 'Receive All Notifications', 'purchase_license': 'Purchase License', 'apply_license': 'Apply License', - 'cancel_account': 'アカウントのキャンセル', - 'cancel_account_message': '注意: あなたのアカウントを完全に削除します。削除の取り消しは出来ません。', + 'cancel_account': 'Delete Account', + 'cancel_account_message': + 'Warning: This will permanently delete your account, there is no undo.', 'delete_company': 'Delete Company', 'delete_company_message': 'Warning: This will permanently delete your company, there is no undo.', @@ -32652,7 +33001,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'converted_quote': 'Successfully converted quote', 'credit_design': 'Credit Design', 'includes': 'Includes', - 'header': 'ヘッダ', + 'header': 'Header', 'load_design': 'Load Design', 'css_framework': 'CSS Framework', 'custom_designs': 'Custom Designs', @@ -32669,37 +33018,37 @@ mixin LocalizationsProvider on LocaleCodeAware { 'deleted_designs': 'Successfully deleted :value designs', 'restored_designs': 'Successfully restored :value designs', 'proposals': 'Proposals', - 'tickets': 'Tickets', - 'recurring_quotes': '繰り返しの見積書', + 'tickets': 'Biļetes', + 'recurring_quotes': 'Atkārtoti Piedāvājumi', 'recurring_tasks': 'Recurring Tasks', 'account_management': 'Account Management', - 'credit_date': '前受金受日付', - 'credit': '前受金', - 'credits': '前受金', - 'new_credit': '前受金を登録', + 'credit_date': 'Kredīta datums', + 'credit': 'Kredīts', + 'credits': 'Kredīti', + 'new_credit': 'Ievadiet kredītu', 'edit_credit': 'Edit Credit', - 'created_credit': '前受金を登録しました。', + 'created_credit': 'Successfully created credit', 'updated_credit': 'Successfully updated credit', - 'archived_credit': '前受金をアーカイブしました。', - 'deleted_credit': '前受金を削除しました。', + 'archived_credit': 'Successfully archived credit', + 'deleted_credit': 'Successfully deleted credit', 'removed_credit': 'Successfully removed credit', - 'restored_credit': '前受金を復旧しました', - 'archived_credits': ':count 件の前受金をアーカイブしました。', - 'deleted_credits': ':count 件の前受金を削除しました。', + 'restored_credit': 'Successfully restored credit', + 'archived_credits': 'Successfully archived :count credits', + 'deleted_credits': 'Successfully deleted :count credits', 'restored_credits': 'Successfully restored :value credits', - 'current_version': '現在のバージョン', + 'current_version': 'Current version', 'latest_version': 'Latest Version', - 'update_now': '今すぐアップデート', - 'a_new_version_is_available': 'Webアプリの新しいバージョンが利用可能です', - 'update_available': 'アップデートが利用可能です', + 'update_now': 'Update Now', + 'a_new_version_is_available': 'A new version of the web app is available', + 'update_available': 'Update Available', 'app_updated': 'Update successfully completed', - 'learn_more': '詳細を見る', + 'learn_more': 'Uzzināt vairāk', 'integrations': 'Integrations', 'tracking_id': 'Tracking Id', 'slack_webhook_url': 'Slack Webhook URL', 'credit_footer': 'Credit Footer', 'credit_terms': 'Credit Terms', - 'new_company': '新しい会社', + 'new_company': 'New Company', 'added_company': 'Successfully added company', 'company1': 'Custom Company 1', 'company2': 'Custom Company 2', @@ -32749,20 +33098,20 @@ mixin LocalizationsProvider on LocaleCodeAware { 'group2': 'Custom Group 2', 'group3': 'Custom Group 3', 'group4': 'Custom Group 4', - 'reset': 'リセット', - 'number': '番号', - 'export': 'エクスポート', - 'chart': 'チャート', + 'reset': 'Reset', + 'number': 'Number', + 'export': 'Export', + 'chart': 'Chart', 'count': 'Count', 'totals': 'Totals', 'blank': 'Blank', - 'day': 'Day', - 'month': 'Month', + 'day': 'Diena', + 'month': 'Mēnesis', 'year': 'Year', 'subgroup': 'Subgroup', 'is_active': 'Is Active', 'group_by': 'Group by', - 'credit_balance': '前受金残高', + 'credit_balance': 'Kredīta atlikums', 'contact_last_login': 'Contact Last Login', 'contact_full_name': 'Contact Full Name', 'contact_phone': 'Contact Phone', @@ -32776,7 +33125,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'shipping_state': 'Shipping State/Province', 'shipping_postal_code': 'Shipping Postal Code', 'shipping_country': 'Shipping Country', - 'billing_address1': 'Billing Street', + 'billing_address1': 'Norēķinu iela', 'billing_address2': 'Billing Apt/Suite', 'billing_city': 'Billing City', 'billing_state': 'Billing State/Province', @@ -32792,17 +33141,17 @@ mixin LocalizationsProvider on LocaleCodeAware { 'columns': 'Columns', 'aging': 'Aging', 'profit_and_loss': 'Profit and Loss', - 'reports': 'レポート', - 'report': 'レポート', - 'add_company': '会社を追加', - 'unpaid_invoice': '未払の請求書', - 'paid_invoice': '支払済の請求書', + 'reports': 'Reports', + 'report': 'Report', + 'add_company': 'Add Company', + 'unpaid_invoice': 'Unpaid Invoice', + 'paid_invoice': 'Paid Invoice', 'unapproved_quote': 'Unapproved Quote', - 'help': 'ヘルプ', + 'help': 'Help', 'refund': 'Refund', 'refund_date': 'Refund Date', 'filtered_by': 'Filtered by', - 'contact_email': 'Contact Email', + 'contact_email': 'E-pasts saziņai', 'multiselect': 'Multiselect', 'entity_state': 'State', 'verify_password': 'Verify Password', @@ -32810,7 +33159,7 @@ mixin LocalizationsProvider on LocaleCodeAware { '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.', - 'message': 'メッセージ', + 'message': 'Ziņojums', 'from': 'From', 'show_product_details': 'Show Product Details', 'show_product_details_help': @@ -32823,9 +33172,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'about': 'About', 'documentation': 'Documentation', 'contact_us': 'Contact Us', - 'subtotal': '小計', - 'line_total': 'Line Total', - 'item': 'アイテム', + 'subtotal': 'Starpsumma', + 'line_total': 'Pozīcija kopā', + 'item': 'Pozīcija', 'credit_email': 'Credit Email', 'iframe_url': 'Website', 'domain_url': 'Domain URL', @@ -32836,8 +33185,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', 'deleted_logo': 'Successfully deleted logo', - 'yes': 'はい', - 'no': 'いいえ', + 'yes': 'Yes', + 'no': 'No', 'generate_number': 'Generate Number', 'when_saved': 'When Saved', 'when_sent': 'When Sent', @@ -32848,8 +33197,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'menu_sidebar': 'Menu Sidebar', 'history_sidebar': 'History Sidebar', 'tablet': 'Tablet', - 'mobile': 'Mobile', - 'desktop': 'Desktop', + 'mobile': 'Mobīlā', + 'desktop': 'Desktopa', 'layout': 'Layout', 'view': 'View', 'module': 'Module', @@ -32875,7 +33224,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', 'default_tax_rate': 'Default Tax Rate', - 'user': 'ユーザ', + 'user': 'User', 'invoice_tax': 'Invoice Tax', 'line_item_tax': 'Line Item Tax', 'inclusive_taxes': 'Inclusive Taxes', @@ -32884,7 +33233,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'no_client_selected': 'Please select a client', 'configure_rates': 'Configure rates', 'configure_gateways': 'Configure Gateways', - 'tax_settings': '税の設定', + 'tax_settings': 'Tax Settings', 'tax_settings_rates': 'Tax Rates', 'accent_color': 'Accent Color', 'switch': 'Switch', @@ -32895,76 +33244,77 @@ mixin LocalizationsProvider on LocaleCodeAware { 'dropdown': 'Dropdown', 'field_type': 'Field Type', 'recover_password_email_sent': 'A password recovery email has been sent', - 'submit': 'Submit', - 'recover_password': 'パスワードの再設定', + 'submit': 'Iesniegt', + 'recover_password': 'Recover your password', 'late_fees': 'Late Fees', 'credit_number': 'Credit Number', 'payment_number': 'Payment Number', 'late_fee_amount': 'Late Fee Amount', 'late_fee_percent': 'Late Fee Percent', - 'schedule': 'スケジュール', + 'schedule': 'Schedule', 'before_due_date': 'Before the due date', 'after_due_date': 'After the due date', 'after_invoice_date': 'After the invoice date', 'days': 'Days', - 'invoice_email': '請求書メール', - 'payment_email': '支払いメール', + 'invoice_email': 'Rēķina e-pasts', + 'payment_email': 'Maksājumu e-pasts', 'partial_payment': 'Partial Payment', 'payment_partial': 'Partial Payment', 'partial_payment_email': 'Partial Payment Email', - 'quote_email': '見積書メール', + 'quote_email': 'Citēt e-pastu', 'endless_reminder': 'Endless Reminder', 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrator', 'administrator_help': 'Allow user to manage users, change settings and modify all records', - 'user_management': 'ユーザ管理', - 'users': 'ユーザー', - 'new_user': '新しいユーザ', - 'edit_user': 'ユーザの編集', + 'user_management': 'User Management', + 'users': 'Lietotāji', + 'new_user': 'New User', + 'edit_user': 'Edit User', 'created_user': 'Successfully created user', - 'updated_user': 'ユーザを更新しました', - 'archived_user': 'ユーザをアーカイブしました。', - 'deleted_user': 'ユーザを削除しました', + 'updated_user': 'Successfully updated user', + 'archived_user': 'Successfully archived user', + 'deleted_user': 'Successfully deleted user', 'removed_user': 'Successfully removed user', - 'restored_user': 'ユーザをリストアしました。', + 'restored_user': 'Successfully restored user', 'archived_users': 'Successfully archived :value users', 'deleted_users': 'Successfully deleted :value users', 'removed_users': 'Successfully removed :value users', 'restored_users': 'Successfully restored :value users', - 'general_settings': '一般設定', - 'invoice_options': '請求書オプション', + 'general_settings': 'General Settings', + '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.', 'invoice_embed_documents': 'Embed Documents', 'invoice_embed_documents_help': 'Include attached images in the invoice.', - 'all_pages_header': 'Show header on', - 'all_pages_footer': 'Show footer on', - 'first_page': '最初のページ', - 'all_pages': '全てのページ', - 'last_page': '最後のページ', + 'all_pages_header': 'Show Header on', + 'all_pages_footer': 'Show Footer on', + 'first_page': 'First page', + 'all_pages': 'All pages', + 'last_page': 'Last page', 'primary_font': 'Primary Font', 'secondary_font': 'Secondary Font', - 'primary_color': 'プライマリ・カラー', - 'secondary_color': 'セカンダリ・カラー', + 'primary_color': 'Primary Color', + 'secondary_color': 'Secondary Color', 'page_size': 'Page Size', - 'font_size': 'フォントサイズ', + 'font_size': 'Font Size', 'quote_design': 'Quote Design', - 'invoice_fields': '請求書をフィールド', + 'invoice_fields': 'Invoice Fields', 'product_fields': 'Product Fields', - 'invoice_terms': '請求条件', - 'invoice_footer': '請求書フッター', + 'invoice_terms': 'Rēķina nosacījumi', + 'invoice_footer': 'Invoice Footer', 'quote_terms': 'Quote Terms', - 'quote_footer': '見積書フッタ', + 'quote_footer': 'Quote Footer', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': 'Automatically email recurring invoices when they are created.', 'auto_archive_invoice': 'Auto Archive', - 'auto_archive_invoice_help': '支払い完了時に請求書を自動的にアーカイブする', + 'auto_archive_invoice_help': + 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', + 'Automātiski arhivēt Piedāvājumu, kad tas ticis konvertēts.', 'auto_convert_quote': 'Auto Convert', 'auto_convert_quote_help': 'Automatically convert a quote to an invoice when approved by a client.', @@ -33006,10 +33356,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'task_field': 'Task Field', 'group_field': 'Group Field', 'number_counter': 'Number Counter', - 'prefix': 'プレフィックス', + 'prefix': 'Prefix', 'number_pattern': 'Number Pattern', - 'messages': 'メッセージ', - 'custom_css': 'カスタムCSS', + 'messages': 'Messages', + 'custom_css': 'Pielāgota CSS', 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': @@ -33028,27 +33378,27 @@ mixin LocalizationsProvider on LocaleCodeAware { '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.', 'authorization': 'Authorization', - 'subdomain': 'サブドメイン', + 'subdomain': 'Subdomain', 'domain': 'Domain', 'portal_mode': 'Portal Mode', - 'email_signature': 'どうぞよろしくお願いいたします。', + 'email_signature': 'Ar cieņu,', 'enable_email_markup_help': 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', - 'plain': 'プレーン', - 'light': 'ライト', - 'dark': 'ダーク', - 'email_design': 'Eメール デザイン', + 'plain': 'Plain', + 'light': 'Light', + 'dark': 'Dark', + 'email_design': 'E-pasta dizains', 'attach_pdf': 'Attach PDF', 'attach_documents': 'Attach Documents', 'attach_ubl': 'Attach UBL', 'email_style': 'Email Style', - 'enable_email_markup': 'マークアップを許可する', - 'reply_to_email': 'Reply-To Email', + 'enable_email_markup': 'Enable Markup', + 'reply_to_email': 'Atbildēt uz e-pastu', 'reply_to_name': 'Reply-To Name', 'bcc_email': 'BCC Email', 'processed': 'Processed', - 'credit_card': 'Credit Card', - 'bank_transfer': 'Bank Transfer', + 'credit_card': 'Kredītkarte', + 'bank_transfer': 'Bankas pārskaitījums', 'priority': 'Priority', 'fee_amount': 'Fee Amount', 'fee_percent': 'Fee Percent', @@ -33057,20 +33407,20 @@ mixin LocalizationsProvider on LocaleCodeAware { 'enable_min': 'Enable min', 'enable_max': 'Enable max', 'min_limit': 'Min: :min', - 'max_limit': 'Max: :max', + 'max_limit': 'Maks: :maks', 'min': 'Min', - 'max': 'Max', + 'max': 'Maks', 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', - 'update_address': '住所を更新', + 'update_address': 'Update Address', 'update_address_help': 'Update client\'s address with provided details', - 'rate': '率', - 'tax_rate': '税率', - 'new_tax_rate': '新しい税率', - 'edit_tax_rate': '税率を編集', - 'created_tax_rate': '税率を作成しました', - 'updated_tax_rate': '税率を更新しました。', - 'archived_tax_rate': '税率をアーカイブしました。', + 'rate': 'Likme', + 'tax_rate': 'Tax Rate', + 'new_tax_rate': 'New Tax Rate', + 'edit_tax_rate': 'Edit tax rate', + 'created_tax_rate': 'Successfully created tax rate', + 'updated_tax_rate': 'Successfully updated tax rate', + 'archived_tax_rate': 'Successfully archived the tax rate', 'deleted_tax_rate': 'Successfully deleted tax rate', 'restored_tax_rate': 'Successfully restored tax rate', 'archived_tax_rates': 'Successfully archived :value tax rates', @@ -33079,13 +33429,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'fill_products': 'Auto-fill products', 'fill_products_help': 'Selecting a product will automatically fill in the description and cost', - 'update_products': '商品の自動更新', + 'update_products': 'Auto-update products', 'update_products_help': 'Updating an invoice will automatically update the product library', - 'convert_products': '商品の変換', + 'convert_products': 'Convert Products', 'convert_products_help': 'Automatically convert product prices to the client\'s currency', - 'fees': 'Fees', + 'fees': 'Izmaksas', 'limits': 'Limits', 'provider': 'Provider', 'company_gateway': 'Payment Gateway', @@ -33104,28 +33454,28 @@ mixin LocalizationsProvider on LocaleCodeAware { 'discard_changes': 'Discard Changes', 'default_value': 'Default value', 'disabled': 'Disabled', - 'currency_format': '通貨フォーマット', + 'currency_format': 'Currency Format', 'first_day_of_the_week': 'First Day of the Week', 'first_month_of_the_year': 'First Month of the Year', - 'sunday': '日曜日', - 'monday': '月曜日', - 'tuesday': '火曜日', - 'wednesday': '水曜日', - 'thursday': '木曜日', - 'friday': '金曜日', - 'saturday': '土曜日', - 'january': 'January', - 'february': 'February', - 'march': 'March', - 'april': 'April', - 'may': 'May', - 'june': 'June', - 'july': 'July', - 'august': 'August', - 'september': 'September', - 'october': 'October', - 'november': 'November', - 'december': 'December', + 'sunday': 'Sunday', + 'monday': 'Monday', + 'tuesday': 'Tuesday', + 'wednesday': 'Wednesday', + 'thursday': 'Thursday', + 'friday': 'Friday', + 'saturday': 'Saturday', + 'january': 'Janvāris', + 'february': 'Februāris', + 'march': 'Marts', + 'april': 'Aprīlis', + 'may': 'Maijs', + 'june': 'Jūnijs', + 'july': 'Jūlijs', + 'august': 'Augusts', + 'september': 'Septembris', + 'october': 'Oktobris', + 'november': 'Novembris', + 'december': 'Decembris', 'symbol': 'Symbol', 'ocde': 'Code', 'date_format': 'Date Format', @@ -33154,27 +33504,27 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_group': 'Successfully restored group', 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Successfully uploaded logo', - 'logo': 'ロゴ', + 'logo': 'Logo', 'saved_settings': 'Successfully saved settings', - 'product_settings': '商品設定', + 'product_settings': 'Product Settings', 'device_settings': 'Device Settings', - 'defaults': 'デフォルト', + 'defaults': 'Defaults', 'basic_settings': 'Basic Settings', - 'advanced_settings': '詳細設定', - 'company_details': '企業情報', - 'user_details': 'ユーザの詳細', - 'localization': '地域設定', - 'online_payments': 'オンライン入金', - 'tax_rates': '税率', - 'notifications': '通知', - 'import_export': 'インポート | エクスポート | キャンセル', - 'custom_fields': 'カスタムフィールド', - 'invoice_design': '請求書デザイン', + 'advanced_settings': 'Advanced Settings', + 'company_details': 'Uzņēmuma informācija', + 'user_details': 'User Details', + 'localization': 'Lokalizācija', + 'online_payments': 'Tiešsaites maksājumi', + 'tax_rates': 'Nodokļu likmes', + 'notifications': 'Paziņojumi', + 'import_export': 'Imports / Eksports', + 'custom_fields': 'Custom Fields', + 'invoice_design': 'Invoice Design', 'buy_now_buttons': 'Buy Now Buttons', - 'email_settings': 'Eメール設定', + 'email_settings': 'E-pasta iestatījumi', 'templates_and_reminders': 'Templates & Reminders', 'credit_cards_and_banks': 'Credit Cards & Banks', - 'data_visualizations': 'ビジュアルデータ', + 'data_visualizations': 'Data Visualizations', 'price': 'Price', 'email_sign_up': 'Email Sign Up', 'google_sign_up': 'Google Sign Up', @@ -33192,9 +33542,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_agree_to_terms_and_privacy': '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': '利用規約', - 'privacy_policy': 'Privacy Policy', - 'sign_up': 'サインアップ', + 'terms_of_service': 'Terms of Service', + 'privacy_policy': 'Privātuma politika', + 'sign_up': 'Sign Up', 'account_login': 'Account Login', 'view_website': 'View Website', 'create_account': 'Create Account', @@ -33202,7 +33552,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'create_new': 'Create New', 'no_record_selected': 'No record selected', 'error_unsaved_changes': 'Please save or cancel your changes', - 'download': 'ダウンロード', + 'download': 'Lejupielādēt', 'requires_an_enterprise_plan': 'Requires an enterprise plan', 'take_picture': 'Take Picture', 'upload_file': 'Upload File', @@ -33220,7 +33570,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_documents': 'Successfully restored :value documents', 'no_history': 'No History', 'expense_date': 'Expense Date', - 'pending': '保留', + 'pending': 'Pending', 'expense_status_1': 'Logged', 'expense_status_2': 'Pending', 'expense_status_3': 'Invoiced', @@ -33228,17 +33578,17 @@ mixin LocalizationsProvider on LocaleCodeAware { 'add_documents_to_invoice': 'Add documents to invoice', 'exchange_rate': 'Exchange Rate', 'convert_currency': 'Convert currency', - 'mark_paid': '支払済にする', + 'mark_paid': 'Mark Paid', 'category': 'Category', - 'address': '住所', + 'address': 'Adrese', 'new_vendor': 'New Vendor', - 'created_vendor': 'ベンダーを登録しました。', - 'updated_vendor': 'ベンダーを更新しました。', - 'archived_vendor': 'ベンダーをアーカイブしました。', - 'deleted_vendor': 'ベンダーを削除しました。', + 'created_vendor': 'Successfully created vendor', + 'updated_vendor': 'Successfully updated vendor', + 'archived_vendor': 'Successfully archived vendor', + 'deleted_vendor': 'Successfully deleted vendor', 'restored_vendor': 'Successfully restored vendor', - 'archived_vendors': ':count 件の納入業者をアーカイブしました。', - 'deleted_vendors': ':count 件の納入業者を削除しました。', + 'archived_vendors': 'Successfully archived :count vendors', + 'deleted_vendors': 'Successfully deleted :count vendors', 'restored_vendors': 'Successfully restored :value vendors', 'new_expense': 'Enter Expense', 'created_expense': 'Successfully created expense', @@ -33246,8 +33596,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_expense': 'Successfully archived expense', 'deleted_expense': 'Successfully deleted expense', 'restored_expense': 'Successfully restored expense', - 'archived_expenses': '経費のアーカイブに成功しました', - 'deleted_expenses': '経費の削除に成功しました', + 'archived_expenses': 'Successfully archived expenses', + 'deleted_expenses': 'Successfully deleted expenses', 'restored_expenses': 'Successfully restored :value expenses', 'copy_shipping': 'Copy Shipping', 'copy_billing': 'Copy Billing', @@ -33258,47 +33608,47 @@ mixin LocalizationsProvider on LocaleCodeAware { 'running': 'Running', 'resume': 'Resume', 'task_errors': 'Please correct any overlapping times', - 'start': 'スタート', - 'stop': 'ストップ', + 'start': 'Start', + 'stop': 'Stop', 'started_task': 'Successfully started task', - 'stopped_task': 'タスクを停止しました。', + 'stopped_task': 'Successfully stopped task', 'resumed_task': 'Successfully resumed task', 'now': 'Now', 'auto_start_tasks': 'Auto Start Tasks', - 'timer': 'タイマー', + 'timer': 'Timer', 'manual': 'Manual', 'budgeted': 'Budgeted', - 'start_time': '開始時間', - 'end_time': '終了時間', - 'date': '日付', + 'start_time': 'Start Time', + 'end_time': 'End Time', + 'date': 'Datums', 'times': 'Times', 'duration': 'Duration', - 'new_task': '新しいタスク', - 'created_task': 'タスクが登録されました。', - 'updated_task': 'タスクが更新されました。', - 'archived_task': 'タスクをアーカイブしました。', - 'deleted_task': 'タスクを削除しました。', - 'restored_task': 'タスクをリストアしました。', - 'archived_tasks': ':count件のタスクをアーカイブしました。', - 'deleted_tasks': ':count件のタスクを削除しました。', + 'new_task': 'New Task', + 'created_task': 'Successfully created task', + 'updated_task': 'Successfully updated task', + 'archived_task': 'Successfully archived task', + 'deleted_task': 'Successfully deleted task', + 'restored_task': 'Successfully restored task', + 'archived_tasks': 'Successfully archived :count tasks', + 'deleted_tasks': 'Successfully deleted :count tasks', 'restored_tasks': 'Successfully restored :value tasks', 'please_enter_a_name': 'Please enter a name', 'budgeted_hours': 'Budgeted Hours', - 'created_project': 'プロジェクトを登録しました。', - 'updated_project': 'プロジェクトを更新しました。', - 'archived_project': 'プロジェクトをアーカイブしました。', + 'created_project': 'Successfully created project', + 'updated_project': 'Successfully updated project', + 'archived_project': 'Successfully archived project', 'deleted_project': 'Successfully deleted project', - 'restored_project': 'プロジェクトをリストアしました。', - 'archived_projects': ':count 件のプロジェクトをアーカイブしました。', + 'restored_project': 'Successfully restored project', + 'archived_projects': 'Successfully archived :count projects', 'deleted_projects': 'Successfully deleted :count projects', 'restored_projects': 'Successfully restored :value projects', - 'new_project': '新しいプロジェクト', - 'thank_you_for_using_our_app': '弊社のAppをご利用頂き誠にありがとうございます。', + 'new_project': 'Jauns projekts', + 'thank_you_for_using_our_app': 'Thank you for using our app!', 'if_you_like_it': 'If you like it please', - 'click_here': 'こちらをクリック', + 'click_here': 'click here', 'click_here_capital': 'Click here', 'to_rate_it': 'to rate it.', - 'average': '平均', + 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': 'Please authenticate to change this setting', @@ -33306,300 +33656,300 @@ mixin LocalizationsProvider on LocaleCodeAware { 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', 'biometric_authentication': 'Biometric Authentication', - 'footer': 'フッタ', - 'compare': 'Compare', + 'footer': 'Footer', + 'compare': 'Salīdzināt', 'hosted_login': 'Hosted Login', 'selfhost_login': 'Selfhost Login', 'google_sign_in': 'Sign in with Google', - 'today': 'Today', + 'today': 'Šodien', 'custom_range': 'Custom Range', 'date_range': 'Date Range', - 'current': 'Current', - 'previous': 'Previous', - 'current_period': 'Current Period', + 'current': 'Tekošais', + 'previous': 'Iepriekšējais', + 'current_period': 'Tekošais periods', 'comparison_period': 'Comparison Period', - 'previous_period': 'Previous Period', - 'previous_year': 'Previous Year', - 'compare_to': 'Compare to', - 'last7_days': 'Last 7 Days', - 'last_week': 'Last Week', + 'previous_period': 'Iepriekšējais periods', + 'previous_year': 'Iepriekšējais gads', + 'compare_to': 'Salīdzināt ar', + 'last7_days': 'Pēdējas 7 dienas', + 'last_week': 'Pēdēja nedēļa', 'last30_days': 'Last 30 Days', 'this_month': 'This Month', 'last_month': 'Last Month', 'this_year': 'This Year', 'last_year': 'Last Year', - 'custom': 'カスタム', + 'custom': 'Custom', 'clone_to_invoice': 'Clone to Invoice', - 'clone_to_quote': 'Clone to Quote', + 'clone_to_quote': 'Nokopēt uz cenu piedāvājumu', 'clone_to_credit': 'Clone to Credit', - 'view_invoice': '請求書を表示', - 'convert': 'Convert', - 'more': 'More', - 'edit_client': '顧客を編集', - 'edit_product': '商品を編集', - 'edit_invoice': '請求を編集', - 'edit_quote': '見積書を編集', - 'edit_payment': '支払いを編集', - 'edit_task': 'タスクを更新', + 'view_invoice': 'Apskatīt rēķinu', + 'convert': 'Konvertēt', + 'more': 'Vairāk', + 'edit_client': 'Rediģēt klientu', + 'edit_product': 'Edit Product', + 'edit_invoice': 'Rediģēt rēķinu', + 'edit_quote': 'Edit Quote', + 'edit_payment': 'Edit Payment', + 'edit_task': 'Edit Task', 'edit_expense': 'Edit Expense', 'edit_vendor': 'Edit Vendor', - 'edit_project': 'プロジェクトを編集', + 'edit_project': 'Rediģēt projektu', 'edit_recurring_quote': 'Edit Recurring Quote', - 'billing_address': '請求先住所', - 'shipping_address': 'Shipping Address', + 'billing_address': 'Billing Address', + 'shipping_address': 'Piegādes adrese', 'total_revenue': 'Total Revenue', - 'average_invoice': '請求の平均', - 'outstanding': 'Outstanding', + 'average_invoice': 'Vidējais rēķins', + 'outstanding': 'Nesamaksāts', 'invoices_sent': ':count invoices sent', - 'active_clients': '有効な顧客', - 'close': '閉じる', - 'email': 'Eメール', - 'password': 'パスワード', + 'active_clients': 'aktīvie klienti', + 'close': 'Aizvērt', + 'email': 'Epasts', + 'password': 'Password', 'url': 'URL', 'secret': 'Secret', - 'name': '名前', - 'logout': 'ログアウト', - 'login': 'ログイン', - 'filter': 'フィルター', - 'sort': 'Sort', - 'search': '検索', - 'active': '有効', + 'name': 'Nosaukums', + 'logout': 'Log Out', + 'login': 'Login', + 'filter': 'Filtrs', + 'sort': 'Šķirot', + 'search': 'Meklēt', + 'active': 'Active', 'archived': 'Archived', 'deleted': 'Deleted', - 'dashboard': 'ダッシュボード', - 'archive': 'アーカイブ', - 'delete': '削除', - 'restore': 'リストア', - 'refresh_complete': '更新完了', - 'please_enter_your_email': 'Please enter your email', - 'please_enter_your_password': 'Please enter your password', - 'please_enter_your_url': 'Please enter your URL', - 'please_enter_a_product_key': 'Please enter a product key', + 'dashboard': 'Informācijas panelis', + 'archive': 'Arhīvs', + 'delete': 'Dzēst', + 'restore': 'Restore', + 'refresh_complete': 'Atjaunošana pabeigta', + 'please_enter_your_email': 'Lūdzu ievadiet jūsu epastu', + 'please_enter_your_password': 'Lūdzu ievadiet jūsu paroli', + 'please_enter_your_url': 'Lūdzu ievadiet jūsu URL', + 'please_enter_a_product_key': 'Lūdzu ievadiet produkta atslēgu', 'ascending': 'Ascending', 'descending': 'Descending', - 'save': '保存', + 'save': 'Saglabāt', 'an_error_occurred': 'An error occurred', - 'paid_to_date': '現在までの支払済額', - 'balance_due': 'Balance Due', - 'balance': 'バランス', - 'overview': '概要', - 'details': '詳細', - 'phone': '電話', - 'website': 'WEBサイト', - 'vat_number': 'VATナンバー', - 'id_number': 'IDナンバー', - 'create': '作成', + 'paid_to_date': 'Apmaksāts līdz rēķina izrakstīšanas datumam', + 'balance_due': 'Summa apmaksai', + 'balance': 'Bilance', + 'overview': 'Overview', + 'details': 'Sīkāka informācija', + 'phone': 'Tālrunis', + 'website': 'Mājas lapa', + 'vat_number': 'PVN reģ. Nr.', + 'id_number': 'Reģ. Nr.', + 'create': 'Izveidot', 'copied_to_clipboard': 'Copied :value to the clipboard', - 'error': 'Error', + 'error': 'Kļūda', 'could_not_launch': 'Could not launch', - 'contacts': 'コンタクト', + 'contacts': 'Kontakti', 'additional': 'Additional', - 'first_name': '名', - 'last_name': '姓', - 'add_contact': '連絡先の追加', - 'are_you_sure': 'よろしいですか?', - 'cancel': 'キャンセル', + 'first_name': 'Vārds', + 'last_name': 'Uzvārds', + 'add_contact': 'Pievienot kontaktu', + 'are_you_sure': 'Vai tu esi pārliecināts?', + 'cancel': 'Atcelt', 'ok': 'Ok', - 'remove': 'Remove', - 'email_is_invalid': 'メールアドレスが無効です', - 'product': '商品', - 'products': '商品', - 'new_product': '新しい商品', - 'created_product': '商品を登録しました。', - 'updated_product': '商品を更新しました。', - 'archived_product': '商品をアーカイブしました。', + 'remove': 'Noņemt', + 'email_is_invalid': 'Email is invalid', + 'product': 'Produkts', + 'products': 'Produkti', + 'new_product': 'New Product', + 'created_product': 'Successfully created product', + 'updated_product': 'Successfully updated product', + 'archived_product': 'Successfully archived product', 'deleted_product': 'Successfully deleted product', 'restored_product': 'Successfully restored product', - 'archived_products': ':count 個の商品をアーカイブしました。', - 'deleted_products': ':count 個の商品を削除しました。', + 'archived_products': 'Successfully archived :count products', + 'deleted_products': 'Successfully deleted :count products', 'restored_products': 'Successfully restored :value products', 'product_key': 'Product', - 'notes': 'ノート', + 'notes': 'Piezīmes', 'cost': 'Cost', - 'client': '顧客', - 'clients': '顧客', - 'new_client': '新しい顧客', - 'created_client': '顧客を登録しました。', - 'updated_client': '顧客を更新しました。', - 'archived_client': '顧客をアーカイブしました。', - 'archived_clients': ':count 件の顧客をアーカイブしました。', - 'deleted_client': '顧客を削除しました。', - 'deleted_clients': ':count 県の顧客を削除しました。', - 'restored_client': '顧客をリストアしました。', + 'client': 'Klients', + 'clients': 'Klienti', + 'new_client': 'Jauns klients', + 'created_client': 'Veiksmīgi izveidots klients', + 'updated_client': 'Successfully updated client', + 'archived_client': 'Successfully archived client', + 'archived_clients': 'Successfully archived :count clients', + 'deleted_client': 'Successfully deleted client', + 'deleted_clients': 'Successfully deleted :count clients', + 'restored_client': 'Successfully restored client', 'restored_clients': 'Successfully restored :value clients', - 'address1': '番地', - 'address2': '建物', - 'city': '市区町村', - 'state': '都道府県', - 'postal_code': '郵便番号', - 'country': '国', - 'invoice': '請求書', - 'invoices': '請求書', - 'new_invoice': '新しい請求書', - 'created_invoice': '請求書を登録しました。', - 'updated_invoice': '請求書を更新しました。', - 'archived_invoice': '請求書をアーカイブしました。', - 'deleted_invoice': '請求書を削除しました。', - 'restored_invoice': '請求書をリストアしました。', - 'archived_invoices': ':count 件の請求書をアーカイブしました。', - 'deleted_invoices': ':count 件の請求書を削除しました。', + 'address1': 'Iela', + 'address2': 'Dz/Kab', + 'city': 'Pilsēta', + 'state': 'Novads', + 'postal_code': 'Pasta indekss', + 'country': 'Country', + 'invoice': 'Rēķins', + 'invoices': 'Rēķini', + 'new_invoice': 'Jauns rēķins', + 'created_invoice': 'Successfully created invoice', + 'updated_invoice': 'Successfully updated invoice', + 'archived_invoice': 'Successfully archived invoice', + 'deleted_invoice': 'Successfully deleted invoice', + 'restored_invoice': 'Successfully restored invoice', + 'archived_invoices': 'Successfully archived :count invoices', + 'deleted_invoices': 'Successfully deleted :count invoices', 'restored_invoices': 'Successfully restored :value invoices', - 'emailed_invoice': '請求書をメールしました。', + 'emailed_invoice': 'Successfully emailed invoice', 'emailed_payment': 'Successfully emailed payment', - 'amount': '金額', - 'invoice_number': '請求書番号', - 'invoice_date': '請求日', - 'discount': '値引き', - 'po_number': 'PO番号', - 'terms': '条項', - 'public_notes': 'Public Notes', - 'private_notes': '非公開備考', - 'frequency': '頻度', - 'start_date': '開始日', - 'end_date': '終了日', - 'quote_number': '見積書番号', - 'quote_date': '見積日', - 'valid_until': 'Valid Until', - 'items': 'アイテム', + 'amount': 'Summa', + 'invoice_number': 'Rēķina numurs', + 'invoice_date': 'Rēķina datums', + 'discount': 'Atlaide', + 'po_number': 'Pasūtījuma numurs', + 'terms': 'Nosacījumi', + 'public_notes': 'Publiskas piezīmes', + 'private_notes': 'Privātas piezīmes', + 'frequency': 'Biežums', + 'start_date': 'Sākuma datums', + 'end_date': 'Beigu datums', + 'quote_number': 'Quote Number', + 'quote_date': 'Quote Date', + 'valid_until': 'Derīgs līdz', + 'items': 'Items', 'partial_deposit': 'Partial/Deposit', - 'description': '説明', - 'unit_cost': '単価', - 'quantity': '数量', - 'add_item': 'アイテムを追加', - 'contact': 'コンタクト', - 'work_phone': '電話番号', - 'total_amount': '合計金額', + 'description': 'Apraksts', + 'unit_cost': 'Vienības cena', + 'quantity': 'Daudzums', + 'add_item': 'Add Item', + 'contact': 'Kontakts', + 'work_phone': 'Tālrunis', + 'total_amount': 'Total Amount', 'pdf': 'PDF', - 'due_date': '支払日', + 'due_date': 'Apmaksāt līdz', 'partial_due_date': 'Partial Due Date', - 'status': 'ステータス', - 'invoice_status_id': 'Invoice Status', - 'quote_status': 'Quote Status', + 'status': 'Statuss', + 'invoice_status_id': 'Rēķina statuss', + 'quote_status': 'Cenu piedāvājuma statuss', 'click_plus_to_add_item': 'Click + to add an item', 'click_plus_to_add_time': 'Click + to add time', 'count_selected': ':count selected', - 'total': '合計', + 'total': 'Total', 'percent': 'Percent', - 'edit': '編集', + 'edit': 'Edit', 'dismiss': 'Dismiss', 'please_select_a_date': 'Please select a date', 'please_select_a_client': 'Please select a client', 'please_select_an_invoice': 'Please select an invoice', 'task_rate': 'Task Rate', - 'settings': '設定', - 'language': 'Language', - 'currency': '通貨', + 'settings': 'Iestatījumi', + 'language': 'Valoda', + 'currency': 'Currency', 'created_at': 'Date Created', 'created_on': 'Created On', - 'updated_at': 'Updated', - 'tax': '税', + 'updated_at': 'Atjaunots', + 'tax': 'Nodoklis', 'please_enter_an_invoice_number': 'Please enter an invoice number', 'please_enter_a_quote_number': 'Please enter a quote number', 'past_due': 'Past Due', 'draft': 'Draft', - 'sent': '送信済', - 'viewed': 'Viewed', + 'sent': 'Sent', + 'viewed': 'Skatīts', 'approved': 'Approved', 'partial': 'Partial/Deposit', - 'paid': '支払済', - 'mark_sent': '送付済みにする', + 'paid': 'Paid', + 'mark_sent': 'Mark Sent', 'marked_invoice_as_sent': 'Successfully marked invoice as sent', 'marked_invoice_as_paid': 'Successfully marked invoice as sent', 'marked_invoices_as_sent': 'Successfully marked invoices as sent', 'marked_invoices_as_paid': 'Successfully marked invoices as sent', - 'done': '完了', + 'done': 'Izpildīts', 'please_enter_a_client_or_contact_name': 'Please enter a client or contact name', - 'dark_mode': 'ダークモード', + 'dark_mode': 'Dark Mode', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', 'blank_contact': 'Blank Contact', - 'activity': 'アクティビティ', + 'activity': 'Aktivitāte', 'no_records_found': 'No records found', - 'clone': '複製', + 'clone': 'Clone', 'loading': 'Loading', 'industry': 'Industry', - 'size': 'Size', - 'payment_terms': '支払条件', - 'payment_date': '支払日', + 'size': 'Izmērs', + 'payment_terms': 'Apmaksas termiņš', + 'payment_date': 'Maksājuma datums', 'payment_status': 'Payment Status', 'payment_status_1': 'Pending', 'payment_status_2': 'Voided', 'payment_status_3': 'Failed', - 'payment_status_4': '完了', + 'payment_status_4': 'Completed', 'payment_status_5': 'Partially Refunded', 'payment_status_6': 'Refunded', 'payment_status_-1': 'Unapplied', 'payment_status_-2': 'Partially Unapplied', 'net': 'Net', - 'client_portal': '顧客ポータル', + 'client_portal': 'Client Portal', 'show_tasks': 'Show tasks', 'email_reminders': 'Email Reminders', 'enabled': 'Enabled', - 'recipients': 'Recipients', - 'initial_email': 'Initial Email', + 'recipients': 'Saņēmēji', + 'initial_email': 'Standarta e-pasts', 'first_reminder': 'First Reminder', 'second_reminder': 'Second Reminder', 'third_reminder': 'Third Reminder', 'reminder1': 'First Reminder', 'reminder2': 'Second Reminder', 'reminder3': 'Third Reminder', - 'template': 'Template', + 'template': 'Sagatave', 'send': 'Send', - 'subject': 'サブジェクト', - 'body': '本文', - 'send_email': 'メールを送信', + 'subject': 'Subject', + 'body': 'Body', + 'send_email': 'Sūtīt e-pastu', 'email_receipt': 'Email payment receipt to the client', 'auto_billing': 'Auto billing', - 'button': 'Button', - 'preview': 'Preview', - 'customize': 'カスタマイズ', - 'history': '履歴', + 'button': 'Poga', + 'preview': 'Apskatīt', + 'customize': 'Pielāgot', + 'history': 'Vēsture', 'payment': 'Payment', - 'payments': '入金', + 'payments': 'Maksājumi', 'refunded': 'Refunded', 'payment_type': 'Payment Type', - 'transaction_reference': 'Transaction Reference', - 'enter_payment': '入金を登録', - 'new_payment': '入金を登録', - 'created_payment': '入金を登録しました。', - 'updated_payment': '支払いを更新しました', - 'archived_payment': '入金をアーカイブしました。', - 'deleted_payment': '入金を削除しました。', + 'transaction_reference': 'Darījuma atsauce', + 'enter_payment': 'Ievadiet maksājumu', + 'new_payment': 'Ievadīt maksājumu', + 'created_payment': 'Successfully created payment', + 'updated_payment': 'Successfully updated payment', + 'archived_payment': 'Successfully archived payment', + 'deleted_payment': 'Successfully deleted payment', 'restored_payment': 'Successfully restored payment', - 'archived_payments': ':count 件の入金をアーカイブしました。', - 'deleted_payments': ':count 件の入金を削除しました。', + 'archived_payments': 'Successfully archived :count payments', + 'deleted_payments': 'Successfully deleted :count payments', 'restored_payments': 'Successfully restored :value payments', - 'quote': '見積書', - 'quotes': '見積書', - 'new_quote': '新しい見積書', - 'created_quote': '見積書を新規作成しました。', - 'updated_quote': '見積書を更新しました。', - 'archived_quote': '見積書をアーカイブしました。', - 'deleted_quote': '見積書を削除しました。', - 'restored_quote': '見積書をリストアしました。', - 'archived_quotes': ':count件の見積書をアーカイブしました。', - 'deleted_quotes': ':count件の見積書を削除しました。', - 'restored_quotes': 'Successfully restored :value quotes', + 'quote': 'Quote', + 'quotes': 'Piedāvājumi', + 'new_quote': 'New Quote', + 'created_quote': 'Successfully created quote', + 'updated_quote': 'Successfully updated quote', + 'archived_quote': 'Successfully archived quote', + 'deleted_quote': 'Successfully deleted quote', + 'restored_quote': 'Successfully restored quote', + 'archived_quotes': 'Veiksmīgi saarhivēti :count Piedāvājumi', + 'deleted_quotes': 'Veiksmīgi dzēsti :count Piedāvājumi', + 'restored_quotes': 'Veiksmīgi atjaunināti :value Piedāvājumi', 'expense': 'Expense', - 'expenses': '経費', + 'expenses': 'Izdevumi', 'vendor': 'Vendor', - 'vendors': '納入業者', + 'vendors': 'Vendors', 'task': 'Task', - 'tasks': 'タスク', - 'project': 'プロジェクト', - 'projects': 'プロジェクト', - 'activity_1': ':user は 顧客 :client を作成しました。', - 'activity_2': ':user は 顧客 :client をアーカイブしました。', - 'activity_3': ':user は 顧客 :client を削除しました。', - 'activity_4': ':user は 請求書 :invoice を作成しました。', - 'activity_5': ':user は 請求書 :invoice をアーカイブしました。', - 'activity_6': ':user emailed invoice :invoice for :client to :contact', - 'activity_7': ':contact viewed invoice :invoice for :client', - 'activity_8': ':user は 請求書 :invoice をアーカイブしました。', - 'activity_9': ':user は 請求書 :invoice をアーカイブしました。', + 'tasks': 'Tasks', + 'project': 'Projekts', + 'projects': 'Projekti', + 'activity_1': ':user created client :client', + 'activity_2': ':user archived client :client', + 'activity_3': ':user deleted client :client', + 'activity_4': ':user created invoice :invoice', + 'activity_5': ':user updated invoice :invoice', + 'activity_6': ':user nosūtīja rēķinu :invoice priekš :client uz :contact', + 'activity_7': ':contact ir apskatījis Rēķinu :invoice priekš :client', + '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 ievadīja Maksājumu :payment par Summu :payment_amount Rēķinam :invoice priekš :client', 'activity_11': ':user updated payment :payment', 'activity_12': ':user archived payment :payment', 'activity_13': ':user deleted payment :payment', @@ -33609,7 +33959,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_17': ':user deleted :credit credit', 'activity_18': ':user created quote :quote', 'activity_19': ':user updated quote :quote', - 'activity_20': ':user emailed quote :quote for :client to :contact', + 'activity_20': + ':user nosūtīja Piedāvājumu :quote priekš :client uz :contact', 'activity_21': ':contact viewed quote :quote', 'activity_22': ':user archived quote :quote', 'activity_23': ':user deleted quote :quote', @@ -33618,7 +33969,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_26': ':user restored client :client', 'activity_27': ':user restored payment :payment', 'activity_28': ':user restored :credit credit', - 'activity_29': ':contact approved quote :quote for :client', + 'activity_29': ':contact apstiprināja Piedāvājumu :quote priekš :client', 'activity_30': ':user created vendor :vendor', 'activity_31': ':user archived vendor :vendor', 'activity_32': ':user deleted vendor :vendor', @@ -33637,15 +33988,15 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_45': ':user deleted task :task', 'activity_46': ':user restored task :task', 'activity_47': ':user updated expense :expense', - 'activity_48': ':user updated ticket :ticket', - 'activity_49': ':user closed ticket :ticket', - 'activity_50': ':user merged ticket :ticket', - 'activity_51': ':user split ticket :ticket', - 'activity_52': ':contact opened ticket :ticket', - 'activity_53': ':contact reopened ticket :ticket', - 'activity_54': ':user reopened ticket :ticket', - 'activity_55': ':contact replied ticket :ticket', - 'activity_56': ':user viewed ticket :ticket', + 'activity_48': ':user atjaunoja Ziņojumu :ticket', + 'activity_49': ':user aizvēra Ziņojumu :ticket', + 'activity_50': ':user apvienoja Ziņojumus :ticket', + 'activity_51': ':user sadalīja Ziņojumus :ticket', + 'activity_52': ':contact atvēra Ziņōjumu :ticket', + 'activity_53': ':contact atkārtoti atvēra Ziņojumu :ticket', + 'activity_54': ':user atkārtoti atvēra Ziņojumu :ticket', + 'activity_55': ':contact atbildēja uz Ziņojumu :ticket', + 'activity_56': ':user paskatijās Ziņojumu :ticket', 'activity_57': 'System failed to email invoice :invoice', 'activity_58': ':user reversed invoice :invoice', 'activity_59': ':user cancelled invoice :invoice', @@ -33665,14 +34016,14 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_82': ':user archived subscription :subscription', 'activity_83': ':user deleted subscription :subscription', 'activity_84': ':user restored subscription :subscription', - 'one_time_password': 'ワンタイムパスワード', - 'emailed_quote': '見積書をメールしました。', + 'one_time_password': 'One Time Password', + 'emailed_quote': 'Successfully emailed quote', 'emailed_credit': 'Successfully emailed credit', - 'marked_quote_as_sent': 'Successfully marked quote as sent', + 'marked_quote_as_sent': 'Cenu piedāvājums veiksmīgi atzīmēts kā nosūtīts', 'marked_credit_as_sent': 'Successfully marked credit as sent', 'expired': 'Expired', 'all': 'All', - 'select': '選択', + 'select': 'Izvēlieties', 'long_press_multiselect': 'Long-press Multiselect', 'custom_value1': 'Custom Value', 'custom_value2': 'Custom Value', @@ -33683,7 +34034,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_message_unpaid_invoice': 'Custom Unpaid Invoice Message', 'custom_message_paid_invoice': 'Custom Paid Invoice Message', 'custom_message_unapproved_quote': 'Custom Unapproved Quote Message', - 'lock_invoices': '請求書をロック', + 'lock_invoices': 'Lock Invoices', 'translations': 'Translations', 'task_number_pattern': 'Task Number Pattern', 'task_number_counter': 'Task Number Counter', @@ -33696,9 +34047,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'payment_number_pattern': 'Payment Number Pattern', 'payment_number_counter': 'Payment Number Counter', 'invoice_number_pattern': 'Invoice Number Pattern', - 'invoice_number_counter': '請求書番号カウンター', + 'invoice_number_counter': 'Invoice Number Counter', 'quote_number_pattern': 'Quote Number Pattern', - 'quote_number_counter': '請求書番号カウンター', + 'quote_number_counter': 'Quote Number Counter', 'client_number_pattern': 'Credit Number Pattern', 'client_number_counter': 'Credit Number Counter', 'credit_number_pattern': 'Credit Number Pattern', @@ -33716,8 +34067,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'email_subject_quote': 'Email Quote Subject', 'email_subject_payment': 'Email Payment Subject', 'email_subject_payment_partial': 'Email Partial Payment Subject', - 'show_table': 'テーブルを表示', - 'show_list': 'リストを表示', + 'show_table': 'Show Table', + 'show_list': 'Show List', 'client_city': 'Client City', 'client_state': 'Client State', 'client_country': 'Client Country', @@ -33731,7 +34082,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_shipping_address2': 'Client Shipping Apt/Suite', 'type': 'Type', 'invoice_amount': 'Invoice Amount', - 'invoice_due_date': '支払期日', + 'invoice_due_date': 'Due Date', 'tax_rate1': 'Tax Rate 1', 'tax_rate2': 'Tax Rate 2', 'tax_rate3': 'Tax Rate 3', @@ -33751,16 +34102,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'vendor_state': 'Vendor State', 'vendor_country': 'Vendor Country', 'is_approved': 'Is Approved', - 'tax_name': '税名称', + 'tax_name': 'Tax Name', 'tax_amount': 'Tax Amount', - 'tax_paid': '税金支払済', - 'payment_amount': '入金額', + 'tax_paid': 'Tax Paid', + 'payment_amount': 'Maksājuma summa', 'age': 'Age', 'is_running': 'Is Running', - 'time_log': 'Time Log', - 'bank_id': '銀行', + 'time_log': 'Laika Logi', + 'bank_id': 'Bank', 'expense_category_id': 'Expense Category ID', - 'expense_category': 'Expense Category', + 'expense_category': 'Izdevumu kategorija', 'invoice_currency_id': 'Invoice Currency ID', 'tax_name1': 'Tax Name 1', 'tax_name2': 'Tax Name 2', @@ -33769,7 +34120,29 @@ mixin LocalizationsProvider on LocaleCodeAware { 'status_color_theme': 'Status Color Theme', 'load_color_theme': 'Load Color Theme', }, - 'lv_LV': { + 'lt': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'The fee for a :amount invoice would be :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Approve', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -33821,7 +34194,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'giropay': 'GiroPay', 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', - 'set_password': 'Set Password', + 'set_password': 'Įrašyti slaptažodį', 'recommend_desktop': 'We recommend using the desktop app for the best performance', 'recommend_mobile': @@ -33844,7 +34217,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'unauthorized_stripe_warning': 'Please authorize Stripe to accept online payments.', 'view_expense': 'View expense # :expense', - 'view_statement': 'Skatīt kopskatu', + 'view_statement': 'View Statement', 'sepa': 'SEPA Direct Debit', 'ideal': 'iDEAL', 'przelewy24': 'Przelewy24', @@ -33986,7 +34359,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'search_kanban': 'Search Kanban', 'search_kanbans': 'Search Kanban', 'kanban': 'Kanban', - 'enable': 'Atļaut', + 'enable': 'Įgalinti', 'move_top': 'Move Top', 'move_up': 'Move Up', 'move_down': 'Move Down', @@ -34030,7 +34403,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'refund_period': 'Refund Period', 'webhook_configuration': 'Webhook Configuration', 'purchase_page': 'Purchase Page', - 'security': 'Security', + 'security': 'Sauga', 'email_bounced': 'Email Bounced', 'email_spam_complaint': 'Spam Complaint', 'email_delivery': 'Email Delivery', @@ -34078,7 +34451,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'connected_google': 'Successfully connected account', 'disconnected_google': 'Successfully disconnected account', 'delivered': 'Delivered', - 'bounced': 'Noraidīts', + 'bounced': 'Bounced', 'spam': 'Spam', 'view_docs': 'View Docs', 'enter_phone_to_enable_two_factor': @@ -34086,10 +34459,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'send_sms': 'Send SMS', 'sms_code': 'SMS Code', 'two_factor_setup_help': 'Scan the bar code with a :link compatible app.', - 'enabled_two_factor': 'Successfully enabled Two-Factor Authentication', + 'enabled_two_factor': 'Sėkmingai įjungta Dviejų-Lygių Autentifikacija', 'connect_google': 'Connect Google', 'disconnect_google': 'Disconnect Google', - 'enable_two_factor': 'Two-Factor Authentication', + 'enable_two_factor': 'Dviejų-Lygių Autentifikacija', 'disable_two_factor': 'Disable Two Factor', 'require_password_with_social_login': 'Require Password with Social Login', @@ -34102,7 +34475,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'security_settings': 'Security Settings', 'resend_email': 'Resend Email', 'confirm_your_email_address': 'Please confirm your email address', - 'refunded_payment': 'Refunded Payment', + 'refunded_payment': 'Grąžinti mokėjimai', 'partially_unapplied': 'Partially Unapplied', 'select_a_gmail_user': 'Please select a user authenticated with Gmail', 'list_long_press': 'List Long Press', @@ -34113,12 +34486,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'counter_pattern_error': 'To use :client_counter please add either :client_number or :client_id_number to prevent conflicts', 'this_quarter': 'This Quarter', - 'last_quarter': 'Iepriekšējais Kvartāls', + 'last_quarter': 'Last Quarter', 'to_update_run': 'To update run', 'convert_to_invoice': 'Convert to Invoice', 'registration_url': 'Registration URL', 'invoice_project': 'Invoice Project', - 'invoice_task': 'Invoice Task', + 'invoice_task': 'Išrašyti sąskaitą', 'invoice_expense': 'Invoice Expense', 'search_payment_term': 'Search 1 Payment Term', 'search_payment_terms': 'Search :count Payment Terms', @@ -34143,7 +34516,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'after_taxes': 'After Taxes', 'color': 'Color', 'show': 'Show', - 'hide': 'Hide', + 'hide': 'Slėpti', 'empty_columns': 'Empty Columns', 'debug_mode_is_enabled': 'Debug mode is enabled', 'debug_mode_is_enabled_help': @@ -34157,14 +34530,14 @@ mixin LocalizationsProvider on LocaleCodeAware { 'duplicate_column_mapping': 'Duplicate column mapping', 'uses_inclusive_taxes': 'Uses Inclusive Taxes', 'is_amount_discount': 'Is Amount Discount', - 'column': 'Kolonna', - 'sample': 'Paraugs', + 'column': 'Stulpelis', + 'sample': 'Pavyzdys', 'map_to': 'Map To', - 'import': 'Imports', + 'import': 'Importuoti', 'first_row_as_column_names': 'Use first row as column names', - 'select_file': 'Lūdzu, izvēlieties failu', + 'select_file': 'Pasirinkite failą', 'no_file_selected': 'No File Selected', - 'csv_file': 'CSV fails', + 'csv_file': 'Pasirinkti CSV failą', 'csv': 'CSV', 'freshbooks': 'FreshBooks', 'invoice2go': 'Invoice2go', @@ -34182,7 +34555,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'sidebar_editor': 'Sidebar Editor', 'please_type_to_confirm': 'Please type \":value\" to confirm', 'purge': 'Purge', - 'service': 'Serviss', + 'service': 'Service', 'clone_to': 'Clone To', 'clone_to_other': 'Clone to Other', 'labels': 'Labels', @@ -34190,16 +34563,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'payment_tax': 'Payment Tax', 'unpaid': 'Unpaid', 'white_label': 'White Label', - 'delivery_note': 'Piegādes piezīme', + 'delivery_note': 'Delivery Note', 'sent_invoices_are_locked': 'Sent invoices are locked', 'paid_invoices_are_locked': 'Paid invoices are locked', 'source_code': 'Source Code', 'app_platforms': 'App Platforms', 'invoice_late': 'Invoice Late', 'quote_expired': 'Quote Expired', - 'partial_due': 'Daļējs maksājums', - 'invoice_total': 'Kopējais rēķins', - 'quote_total': 'Quote Total', + 'partial_due': 'Dalinis', + 'invoice_total': 'Suma Viso', + 'quote_total': 'Sąmatos viso', 'credit_total': 'Credit Total', 'recurring_invoice_total': 'Invoice Total', 'actions': 'Actions', @@ -34215,7 +34588,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'expired_quote': 'Expired Quote', 'remind_invoice': 'Remind Invoice', 'cvv': 'CVV', - 'client_name': 'Klienta vārds', + 'client_name': 'Kliento Vardas', 'client_phone': 'Client Phone', 'required_fields': 'Required Fields', 'calculated_rate': 'Calculated Rate', @@ -34274,14 +34647,14 @@ mixin LocalizationsProvider on LocaleCodeAware { 'force_update_help': 'You are running the latest version but there may be pending fixes available.', 'mark_paid_help': 'Track the expense has been paid', - 'should_be_invoiced': 'Should be invoiced', + 'should_be_invoiced': 'Būtina sąskaita faktūra', 'should_be_invoiced_help': 'Enable the expense to be invoiced', 'add_documents_to_invoice_help': 'Make the documents visible', 'convert_currency_help': 'Set an exchange rate', 'expense_settings': 'Expense Settings', 'clone_to_recurring': 'Clone to Recurring', 'crypto': 'Crypto', - 'paypal': 'PayPal', + 'paypal': 'Paypal', 'alipay': 'Alipay', 'sofort': 'Sofort', 'apple_pay': 'Apple/Google Pay', @@ -34310,9 +34683,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'endless': 'Endless', 'next_send_date': 'Next Send Date', 'remaining_cycles': 'Remaining Cycles', - 'recurring_invoice': 'Recurring Invoice', - 'recurring_invoices': 'Atkārtoti rēķini', - 'new_recurring_invoice': 'New Recurring Invoice', + 'recurring_invoice': 'Debeto sąskaita', + 'recurring_invoices': 'Debeto sąskaitos', + 'new_recurring_invoice': 'Nauja debeto sąskaita', 'edit_recurring_invoice': 'Edit Recurring Invoice', 'created_recurring_invoice': 'Successfully created recurring invoice', 'updated_recurring_invoice': 'Successfully updated recurring invoice', @@ -34339,7 +34712,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'allow_under_payment_help': 'Support paying at minimum the partial/deposit amount', 'test_mode': 'Test Mode', - 'opened': 'Atvērti', + 'opened': 'Opened', 'payment_reconciliation_failure': 'Reconciliation Failure', 'payment_reconciliation_success': 'Reconciliation Success', 'gateway_success': 'Gateway Success', @@ -34351,31 +34724,31 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quota_exceeded': 'Quota Exceeded', 'upstream_failure': 'Upstream Failure', 'system_logs': 'System Logs', - 'view_portal': 'View Portal', + 'view_portal': 'Rodyti tinklapį', 'copy_link': 'Copy Link', 'token_billing': 'Save card details', 'welcome_to_invoice_ninja': 'Welcome to Invoice Ninja', - 'always': 'Always', + 'always': 'Visada', 'optin': 'Opt-In', 'optout': 'Opt-Out', 'label': 'Label', 'client_number': 'Client Number', 'auto_convert': 'Auto Convert', - 'company_name': 'Company Name', + 'company_name': 'Įmonės pavadinimas', 'reminder1_sent': 'Reminder 1 Sent', 'reminder2_sent': 'Reminder 2 Sent', 'reminder3_sent': 'Reminder 3 Sent', 'reminder_last_sent': 'Reminder Last Sent', - 'pdf_page_info': 'Page :current of :total', - 'emailed_invoices': 'Veiksmīgi nosūtīti rēķini', - 'emailed_quotes': 'Veiksmīgi nosūtīti citāti', + 'pdf_page_info': 'Puslapis :current iš :total', + 'emailed_invoices': 'Successfully emailed invoices', + 'emailed_quotes': 'Successfully emailed quotes', 'emailed_credits': 'Successfully emailed credits', 'gateway': 'Gateway', 'view_in_stripe': 'View in Stripe', 'rows_per_page': 'Rows Per Page', - 'hours': 'Stundas', - 'statement': 'Konta izraksts', - 'taxes': 'Nodokļi', + 'hours': 'Valandos', + 'statement': 'Statement', + 'taxes': 'Mokesčiai', 'surcharge': 'Surcharge', 'apply_payment': 'Apply Payment', 'apply_credit': 'Apply Credit', @@ -34388,9 +34761,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'file_type': 'File Type', 'height': 'Height', 'width': 'Width', - 'to': 'To', + 'to': 'Pirkėjas', 'health_check': 'Health Check', - 'payment_type_id': 'Maksājuma veids', + 'payment_type_id': 'Mokėjimo tipas', 'last_login_at': 'Last Login At', 'company_key': 'Company Key', 'storefront': 'Storefront', @@ -34405,36 +34778,36 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_settings': 'Client Settings', 'selected_invoices': 'Selected Invoices', 'selected_payments': 'Selected Payments', - 'selected_quotes': 'Izvēlēties Piedāvājumu', + 'selected_quotes': 'Selected Quotes', 'selected_tasks': 'Selected Tasks', 'selected_expenses': 'Selected Expenses', - 'upcoming_invoices': 'Gaidāmie rēķini', + 'upcoming_invoices': 'Naujos sąskaitos', 'past_due_invoices': 'Past Due Invoices', - 'recent_payments': 'Recent Payments', - 'upcoming_quotes': 'Gaidāmie Piedāvājumi', - 'expired_quotes': 'Piedāvājumi, kuriem beidzies derīguma termiņš.', + 'recent_payments': 'Naujausi mokėjimai', + 'upcoming_quotes': 'Upcoming Quotes', + 'expired_quotes': 'Expired Quotes', 'create_client': 'Create Client', - 'create_invoice': 'Izveidojiet rēķinu', - 'create_quote': 'Create Quote', + 'create_invoice': 'Sukurti sąskaitą', + 'create_quote': 'Sukurti sąmatą', 'create_payment': 'Create Payment', 'create_vendor': 'Create vendor', 'update_quote': 'Update Quote', 'delete_quote': 'Delete Quote', 'update_invoice': 'Update Invoice', - 'delete_invoice': 'Dzēst rēķinu', + 'delete_invoice': 'Ištrinti sąskaitą', 'update_client': 'Update Client', - 'delete_client': 'Dzēst klientu', - 'delete_payment': 'Dzēst maksājumu', + 'delete_client': 'Trinti klientą', + 'delete_payment': 'Ištrinti mokėjimą', 'update_vendor': 'Update Vendor', - 'delete_vendor': 'Delete Vendor', + 'delete_vendor': 'Trinti', 'create_expense': 'Create Expense', 'update_expense': 'Update Expense', 'delete_expense': 'Delete Expense', - 'create_task': 'Create Task', + 'create_task': 'Sukurti darbą', 'update_task': 'Update Task', - 'delete_task': 'Delete Task', + 'delete_task': 'Trinti', 'approve_quote': 'Approve Quote', - 'off': 'Off', + 'off': 'Išj.', 'when_paid': 'When Paid', 'expires_on': 'Expires On', 'free': 'Free', @@ -34447,8 +34820,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'must_be_online': 'Please restart the app once connected to the internet', 'crons_not_enabled': 'The crons need to be enabled', 'api_webhooks': 'API Webhooks', - 'search_webhooks': 'Search :count Webhooks', - 'search_webhook': 'Search 1 Webhook', + 'search_webhooks': 'Ieškoti :count Webhooks', + 'search_webhook': 'Ieškoti 1 Webhook', 'webhook': 'Webhook', 'webhooks': 'Webhooks', 'new_webhook': 'New Webhook', @@ -34465,8 +34838,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_webhooks': 'Successfully restored :value webhooks', 'api_tokens': 'API Tokens', 'api_docs': 'API Docs', - 'search_tokens': 'Search :count Tokens', - 'search_token': 'Search 1 Token', + 'search_tokens': 'Ieškoti :count raktų', + 'search_token': 'Ieškoti 1 raktą', 'token': 'Token', 'tokens': 'Tokens', 'new_token': 'New Token', @@ -34484,7 +34857,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_registration_help': 'Enable clients to self register in the portal', 'customize_and_preview': 'Customize & Preview', - 'email_invoice': 'Nosūtīt rēķinu', + 'email_invoice': 'Išsiųsti sąskaitą el. paštu', 'email_quote': 'Email Quote', 'email_credit': 'Email Credit', 'email_payment': 'Email Payment', @@ -34518,7 +34891,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'send_from_gmail': 'Send from Gmail', 'reversed': 'Reversed', 'cancelled': 'Cancelled', - 'credit_amount': 'Kredīta summa', + 'credit_amount': 'Kredito suma', 'quote_amount': 'Quote Amount', 'hosted': 'Hosted', 'selfhosted': 'Self-Hosted', @@ -34526,25 +34899,25 @@ mixin LocalizationsProvider on LocaleCodeAware { 'inclusive': 'Inclusive', 'hide_menu': 'Hide Menu', 'show_menu': 'Show Menu', - 'partially_refunded': 'Partially Refunded', - 'search_documents': 'Search Documents', - 'search_designs': 'Search Designs', - 'search_invoices': 'Search Invoices', - 'search_clients': 'Search Clients', - 'search_products': 'Search Products', - 'search_quotes': 'Meklēt Piedāvājumu', - 'search_credits': 'Search Credits', - 'search_vendors': 'Search Vendors', - 'search_users': 'Search Users', - 'search_tax_rates': 'Search Tax Rates', - 'search_tasks': 'Search Tasks', - 'search_settings': 'Search Settings', - 'search_projects': 'Search Projects', - 'search_expenses': 'Search Expenses', - 'search_payments': 'Search Payments', - 'search_groups': 'Search Groups', - 'search_company': 'Search Company', - 'search_document': 'Search 1 Document', + 'partially_refunded': 'Dalinai grąžinta', + 'search_documents': 'Ieškoti dokumentų', + 'search_designs': 'Ieškoti dizaino', + 'search_invoices': 'Ieškoti sąskaitų-faktūrų', + 'search_clients': 'Ieškoti klientų', + 'search_products': 'Ieškoti prekių', + 'search_quotes': 'Ieškoti pasiūlymų', + 'search_credits': 'Ieškoti grąžinimų', + 'search_vendors': 'Ieškoti tiekėjų', + 'search_users': 'Ieškoti vartotojų', + 'search_tax_rates': 'Ieškoti mokesčių tarifų', + 'search_tasks': 'Ieškoti užduočių', + 'search_settings': 'Ieškoti nustatymų', + 'search_projects': 'Ieškoti projektų', + 'search_expenses': 'Ieškoti išlaidų', + 'search_payments': 'Ieškoti mokėjimų', + 'search_groups': 'Ieškoti grupių', + 'search_company': 'Ieškoti įmonių', + 'search_document': 'Ieškoti 1 dokumentą', 'search_design': 'Search 1 Design', 'search_invoice': 'Search 1 Invoice', 'search_client': 'Search 1 Client', @@ -34559,7 +34932,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'search_expense': 'Search 1 Expense', 'search_payment': 'Search 1 Payment', 'search_group': 'Search 1 Group', - 'refund_payment': 'Refund Payment', + 'refund_payment': 'Grąžinti', 'cancelled_invoice': 'Successfully cancelled invoice', 'cancelled_invoices': 'Successfully cancelled invoices', 'reversed_invoice': 'Successfully reversed invoice', @@ -34600,7 +34973,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'owned': 'Owned', 'payment_success': 'Payment Success', 'payment_failure': 'Payment Failure', - 'invoice_sent': ':count invoice sent', + 'invoice_sent': ':count sąskaita išsiųsta', 'quote_sent': 'Quote Sent', 'credit_sent': 'Credit Sent', 'invoice_viewed': 'Invoice Viewed', @@ -34610,7 +34983,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'receive_all_notifications': 'Receive All Notifications', 'purchase_license': 'Purchase License', 'apply_license': 'Apply License', - 'cancel_account': 'Delete Account', + 'cancel_account': 'Cancel Account', 'cancel_account_message': 'Warning: This will permanently delete your account, there is no undo.', 'delete_company': 'Delete Company', @@ -34620,7 +34993,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'converted_quote': 'Successfully converted quote', 'credit_design': 'Credit Design', 'includes': 'Includes', - 'header': 'Header', + 'header': 'Viršus', 'load_design': 'Load Design', 'css_framework': 'CSS Framework', 'custom_designs': 'Custom Designs', @@ -34636,18 +35009,18 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_designs': 'Successfully archived :value designs', 'deleted_designs': 'Successfully deleted :value designs', 'restored_designs': 'Successfully restored :value designs', - 'proposals': 'Proposals', - 'tickets': 'Biļetes', - 'recurring_quotes': 'Atkārtoti Piedāvājumi', + 'proposals': 'Pasiūlymai', + 'tickets': 'Tickets', + 'recurring_quotes': 'Pasikartojančios sąmatos', 'recurring_tasks': 'Recurring Tasks', 'account_management': 'Account Management', - 'credit_date': 'Kredīta datums', - 'credit': 'Kredīts', - 'credits': 'Kredīti', - 'new_credit': 'Ievadiet kredītu', - 'edit_credit': 'Edit Credit', + 'credit_date': 'Išrašymo data', + 'credit': 'Kreditas', + 'credits': 'Kreditai', + 'new_credit': 'Įvesti kreditą', + 'edit_credit': 'Redaguoti Kreditą', 'created_credit': 'Successfully created credit', - 'updated_credit': 'Successfully updated credit', + 'updated_credit': 'Sėkmingai atnaujintas kreditas', 'archived_credit': 'Successfully archived credit', 'deleted_credit': 'Successfully deleted credit', 'removed_credit': 'Successfully removed credit', @@ -34655,17 +35028,17 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_credits': 'Successfully archived :count credits', 'deleted_credits': 'Successfully deleted :count credits', 'restored_credits': 'Successfully restored :value credits', - 'current_version': 'Current version', + 'current_version': 'Dabartinė versija', 'latest_version': 'Latest Version', 'update_now': 'Update Now', 'a_new_version_is_available': 'A new version of the web app is available', 'update_available': 'Update Available', 'app_updated': 'Update successfully completed', - 'learn_more': 'Uzzināt vairāk', + 'learn_more': 'Plačiau', 'integrations': 'Integrations', 'tracking_id': 'Tracking Id', 'slack_webhook_url': 'Slack Webhook URL', - 'credit_footer': 'Credit Footer', + 'credit_footer': 'Kredito Poraštė', 'credit_terms': 'Credit Terms', 'new_company': 'New Company', 'added_company': 'Successfully added company', @@ -34678,7 +35051,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'product3': 'Custom Product 3', 'product4': 'Custom Product 4', 'client1': 'Custom Client 1', - 'client2': 'Custom Client 2', + 'client2': 'Pasirinktinis Klientas 2', 'client3': 'Custom Client 3', 'client4': 'Custom Client 4', 'contact1': 'Custom Contact 1', @@ -34717,20 +35090,20 @@ mixin LocalizationsProvider on LocaleCodeAware { 'group2': 'Custom Group 2', 'group3': 'Custom Group 3', 'group4': 'Custom Group 4', - 'reset': 'Reset', + 'reset': 'Iš naujo', 'number': 'Number', 'export': 'Export', - 'chart': 'Chart', + 'chart': 'Diagrama', 'count': 'Count', - 'totals': 'Totals', + 'totals': 'Viso', 'blank': 'Blank', - 'day': 'Diena', - 'month': 'Mēnesis', + 'day': 'Day', + 'month': 'Month', 'year': 'Year', 'subgroup': 'Subgroup', 'is_active': 'Is Active', - 'group_by': 'Group by', - 'credit_balance': 'Kredīta atlikums', + 'group_by': 'Grupuoti pagal', + 'credit_balance': 'Kredito balansas', 'contact_last_login': 'Contact Last Login', 'contact_full_name': 'Contact Full Name', 'contact_phone': 'Contact Phone', @@ -34744,13 +35117,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'shipping_state': 'Shipping State/Province', 'shipping_postal_code': 'Shipping Postal Code', 'shipping_country': 'Shipping Country', - 'billing_address1': 'Norēķinu iela', + 'billing_address1': 'Billing Street', 'billing_address2': 'Billing Apt/Suite', 'billing_city': 'Billing City', 'billing_state': 'Billing State/Province', 'billing_postal_code': 'Billing Postal Code', 'billing_country': 'Billing Country', - 'client_id': 'Client Id', + 'client_id': 'Kliento Id', 'assigned_to': 'Assigned to', 'created_by': 'Created by :name', 'assigned_to_id': 'Assigned To Id', @@ -34760,17 +35133,17 @@ mixin LocalizationsProvider on LocaleCodeAware { 'columns': 'Columns', 'aging': 'Aging', 'profit_and_loss': 'Profit and Loss', - 'reports': 'Reports', - 'report': 'Report', + 'reports': 'Ataskaitos', + 'report': 'Ataskaita', 'add_company': 'Add Company', 'unpaid_invoice': 'Unpaid Invoice', 'paid_invoice': 'Paid Invoice', - 'unapproved_quote': 'Unapproved Quote', - 'help': 'Help', - 'refund': 'Refund', - 'refund_date': 'Refund Date', + 'unapproved_quote': 'Nepatvirtinti pasiūlymai', + 'help': 'Pagalba', + 'refund': 'Pinigų grąžinimas', + 'refund_date': 'Grąžinimo data', 'filtered_by': 'Filtered by', - 'contact_email': 'E-pasts saziņai', + 'contact_email': 'Contact Email', 'multiselect': 'Multiselect', 'entity_state': 'State', 'verify_password': 'Verify Password', @@ -34778,8 +35151,8 @@ mixin LocalizationsProvider on LocaleCodeAware { '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.', - 'message': 'Ziņojums', - 'from': 'From', + 'message': 'Žinutė', + 'from': 'Pardavėjas', 'show_product_details': 'Show Product Details', 'show_product_details_help': 'Include the description and cost in the product dropdown', @@ -34787,25 +35160,25 @@ mixin LocalizationsProvider on LocaleCodeAware { 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', 'configure_settings': 'Configure Settings', - 'support_forum': 'support forum', + 'support_forum': 'palaikymo forumas', 'about': 'About', 'documentation': 'Documentation', 'contact_us': 'Contact Us', - 'subtotal': 'Starpsumma', - 'line_total': 'Pozīcija kopā', - 'item': 'Pozīcija', + 'subtotal': 'Tarpinė suma', + 'line_total': 'Suma', + 'item': 'Prekė/Paslauga', 'credit_email': 'Credit Email', - 'iframe_url': 'Website', + 'iframe_url': 'Tinklapis', 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Password must contain an upper case character and a number', + 'Slaptažodyje turi būti didžioji raidė ir skaičius', 'client_portal_tasks': 'Client Portal Tasks', 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', 'deleted_logo': 'Successfully deleted logo', - 'yes': 'Yes', - 'no': 'No', + 'yes': 'Taip', + 'no': 'Ne', 'generate_number': 'Generate Number', 'when_saved': 'When Saved', 'when_sent': 'When Sent', @@ -34816,8 +35189,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'menu_sidebar': 'Menu Sidebar', 'history_sidebar': 'History Sidebar', 'tablet': 'Tablet', - 'mobile': 'Mobīlā', - 'desktop': 'Desktopa', + 'mobile': 'Mobile', + 'desktop': 'Desktop', 'layout': 'Layout', 'view': 'View', 'module': 'Module', @@ -34849,13 +35222,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'inclusive_taxes': 'Inclusive Taxes', 'invoice_tax_rates': 'Invoice Tax Rates', 'item_tax_rates': 'Item Tax Rates', - 'no_client_selected': 'Please select a client', + 'no_client_selected': 'Prašome pasirinkti klientą', 'configure_rates': 'Configure rates', 'configure_gateways': 'Configure Gateways', 'tax_settings': 'Tax Settings', 'tax_settings_rates': 'Tax Rates', 'accent_color': 'Accent Color', - 'switch': 'Switch', + 'switch': 'Perjungti', 'comma_sparated_list': 'Comma separated list', 'options': 'Options', 'single_line_text': 'Single-line text', @@ -34863,31 +35236,31 @@ mixin LocalizationsProvider on LocaleCodeAware { 'dropdown': 'Dropdown', 'field_type': 'Field Type', 'recover_password_email_sent': 'A password recovery email has been sent', - 'submit': 'Iesniegt', - 'recover_password': 'Recover your password', + 'submit': 'Submit', + 'recover_password': 'Atkurti slaptažodį', 'late_fees': 'Late Fees', - 'credit_number': 'Credit Number', + 'credit_number': 'Kredito Numeris', 'payment_number': 'Payment Number', 'late_fee_amount': 'Late Fee Amount', 'late_fee_percent': 'Late Fee Percent', - 'schedule': 'Schedule', + 'schedule': 'Grafikas', 'before_due_date': 'Before the due date', 'after_due_date': 'After the due date', 'after_invoice_date': 'After the invoice date', 'days': 'Days', - 'invoice_email': 'Rēķina e-pasts', - 'payment_email': 'Maksājumu e-pasts', - 'partial_payment': 'Partial Payment', + 'invoice_email': 'Invoice Email', + 'payment_email': 'Payment Email', + 'partial_payment': 'Dalinis Apmokėjimas', 'payment_partial': 'Partial Payment', - 'partial_payment_email': 'Partial Payment Email', - 'quote_email': 'Citēt e-pastu', + 'partial_payment_email': 'Dalino Apmokėjimo El. paštas', + 'quote_email': 'Quote Email', 'endless_reminder': 'Endless Reminder', 'filtered_by_user': 'Filtered by User', - 'administrator': 'Administrator', + 'administrator': 'Administratorius', 'administrator_help': 'Allow user to manage users, change settings and modify all records', 'user_management': 'User Management', - 'users': 'Lietotāji', + 'users': 'Vartotojai', 'new_user': 'New User', 'edit_user': 'Edit User', 'created_user': 'Successfully created user', @@ -34902,16 +35275,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_users': 'Successfully restored :value users', 'general_settings': 'General Settings', 'invoice_options': 'Invoice Options', - 'hide_paid_to_date': 'Hide Paid to Date', + '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.', - 'invoice_embed_documents': 'Embed Documents', + 'invoice_embed_documents': 'Įkelti dokumentai', 'invoice_embed_documents_help': 'Include attached images in the invoice.', - 'all_pages_header': 'Show Header on', - 'all_pages_footer': 'Show Footer on', - 'first_page': 'First page', - 'all_pages': 'All pages', - 'last_page': 'Last page', + 'all_pages_header': 'Show header on', + 'all_pages_footer': 'Show footer on', + 'first_page': 'first page', + 'all_pages': 'all pages', + 'last_page': 'last page', 'primary_font': 'Primary Font', 'secondary_font': 'Secondary Font', 'primary_color': 'Primary Color', @@ -34921,8 +35294,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_design': 'Quote Design', 'invoice_fields': 'Invoice Fields', 'product_fields': 'Product Fields', - 'invoice_terms': 'Rēķina nosacījumi', - 'invoice_footer': 'Invoice Footer', + 'invoice_terms': 'Sąskaitos sąlygos', + 'invoice_footer': 'Invoice footer', 'quote_terms': 'Quote Terms', 'quote_footer': 'Quote Footer', 'auto_email_invoice': 'Auto Email', @@ -34933,16 +35306,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Automatically archive invoices when they are paid.', 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automātiski arhivēt Piedāvājumu, kad tas ticis konvertēts.', - 'auto_convert_quote': 'Auto Convert', + '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.', 'workflow_settings': 'Workflow Settings', - 'freq_daily': 'Daily', - 'freq_weekly': 'Weekly', - 'freq_two_weeks': 'Two weeks', + 'freq_daily': 'Kasdien', + 'freq_weekly': 'Kas savaitę', + 'freq_two_weeks': 'Dvi savaitės', 'freq_four_weeks': 'Four weeks', - 'freq_monthly': 'Monthly', + 'freq_monthly': 'Kas mėnesį', 'freq_two_months': 'Two months', 'freq_three_months': 'Three months', 'freq_four_months': 'Four months', @@ -34975,10 +35348,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'task_field': 'Task Field', 'group_field': 'Group Field', 'number_counter': 'Number Counter', - 'prefix': 'Prefix', + 'prefix': 'Priešdėlis', 'number_pattern': 'Number Pattern', 'messages': 'Messages', - 'custom_css': 'Pielāgota CSS', + 'custom_css': 'Individualizuotas CSS', 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': @@ -35000,24 +35373,24 @@ mixin LocalizationsProvider on LocaleCodeAware { 'subdomain': 'Subdomain', 'domain': 'Domain', 'portal_mode': 'Portal Mode', - 'email_signature': 'Ar cieņu,', + '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.', 'plain': 'Plain', 'light': 'Light', - 'dark': 'Dark', - 'email_design': 'E-pasta dizains', + 'dark': 'Tamsu', + 'email_design': 'Email Design', 'attach_pdf': 'Attach PDF', 'attach_documents': 'Attach Documents', 'attach_ubl': 'Attach UBL', 'email_style': 'Email Style', 'enable_email_markup': 'Enable Markup', - 'reply_to_email': 'Atbildēt uz e-pastu', + 'reply_to_email': 'Reply-To Email', 'reply_to_name': 'Reply-To Name', 'bcc_email': 'BCC Email', 'processed': 'Processed', - 'credit_card': 'Kredītkarte', - 'bank_transfer': 'Bankas pārskaitījums', + 'credit_card': 'Kreditinė kortelė', + 'bank_transfer': 'Pavedimu', 'priority': 'Priority', 'fee_amount': 'Fee Amount', 'fee_percent': 'Fee Percent', @@ -35026,14 +35399,14 @@ mixin LocalizationsProvider on LocaleCodeAware { 'enable_min': 'Enable min', 'enable_max': 'Enable max', 'min_limit': 'Min: :min', - 'max_limit': 'Maks: :maks', + 'max_limit': 'Max: :max', 'min': 'Min', - 'max': 'Maks', + 'max': 'Max', 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', 'update_address': 'Update Address', 'update_address_help': 'Update client\'s address with provided details', - 'rate': 'Likme', + 'rate': 'Įkainis', 'tax_rate': 'Tax Rate', 'new_tax_rate': 'New Tax Rate', 'edit_tax_rate': 'Edit tax rate', @@ -35054,7 +35427,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'convert_products': 'Convert Products', 'convert_products_help': 'Automatically convert product prices to the client\'s currency', - 'fees': 'Izmaksas', + 'fees': 'Fees', 'limits': 'Limits', 'provider': 'Provider', 'company_gateway': 'Payment Gateway', @@ -35076,30 +35449,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'currency_format': 'Currency Format', 'first_day_of_the_week': 'First Day of the Week', 'first_month_of_the_year': 'First Month of the Year', - 'sunday': 'Sunday', - 'monday': 'Monday', - 'tuesday': 'Tuesday', - 'wednesday': 'Wednesday', - 'thursday': 'Thursday', - 'friday': 'Friday', - 'saturday': 'Saturday', - 'january': 'Janvāris', - 'february': 'Februāris', - 'march': 'Marts', - 'april': 'Aprīlis', - 'may': 'Maijs', - 'june': 'Jūnijs', - 'july': 'Jūlijs', - 'august': 'Augusts', - 'september': 'Septembris', - 'october': 'Oktobris', - 'november': 'Novembris', - 'december': 'Decembris', - 'symbol': 'Symbol', + 'sunday': 'Sekmadienis', + 'monday': 'Pirmadienis', + 'tuesday': 'Antradienis', + 'wednesday': 'Trečiadienis', + 'thursday': 'Ketvirtadienis', + 'friday': 'Penktadienis', + 'saturday': 'Šeštadienis', + 'january': 'Sausis', + 'february': 'Vasaris', + 'march': 'Kovas', + 'april': 'Balandis', + 'may': 'Gegužė', + 'june': 'Birželis', + 'july': 'Liepa', + 'august': 'Rugpjūtis', + 'september': 'Rugsėjis', + 'october': 'Spalis', + 'november': 'Lapkritis', + 'december': 'Gruodis', + 'symbol': 'Simbolis', 'ocde': 'Code', 'date_format': 'Date Format', 'datetime_format': 'Datetime Format', - 'military_time': '24 Hour Time', + 'military_time': '24 val. formatas', 'military_time_help': '24 Hour Display', 'send_reminders': 'Send Reminders', 'timezone': 'Timezone', @@ -35123,24 +35496,24 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_group': 'Successfully restored group', 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Successfully uploaded logo', - 'logo': 'Logo', + 'logo': 'Logotipas', 'saved_settings': 'Successfully saved settings', 'product_settings': 'Product Settings', 'device_settings': 'Device Settings', - 'defaults': 'Defaults', + 'defaults': 'Numatyti', 'basic_settings': 'Basic Settings', 'advanced_settings': 'Advanced Settings', - 'company_details': 'Uzņēmuma informācija', + 'company_details': 'Imonės informacija', 'user_details': 'User Details', - 'localization': 'Lokalizācija', - 'online_payments': 'Tiešsaites maksājumi', - 'tax_rates': 'Nodokļu likmes', - 'notifications': 'Paziņojumi', - 'import_export': 'Imports / Eksports', - 'custom_fields': 'Custom Fields', + 'localization': 'Lokalizacija', + 'online_payments': 'Online mokėjimai', + 'tax_rates': 'Mokesčių įkainiai', + 'notifications': 'Pranešimai', + 'import_export': 'Importas/Eksportas', + 'custom_fields': 'Custom fields', 'invoice_design': 'Invoice Design', - 'buy_now_buttons': 'Buy Now Buttons', - 'email_settings': 'E-pasta iestatījumi', + 'buy_now_buttons': 'Pirkti dabar mygtukas', + 'email_settings': 'Email nustatymai', 'templates_and_reminders': 'Templates & Reminders', 'credit_cards_and_banks': 'Credit Cards & Banks', 'data_visualizations': 'Data Visualizations', @@ -35162,21 +35535,21 @@ mixin LocalizationsProvider on LocaleCodeAware { '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': 'Terms of Service', - 'privacy_policy': 'Privātuma politika', - 'sign_up': 'Sign Up', - 'account_login': 'Account Login', + 'privacy_policy': 'Privatumo politika', + 'sign_up': 'Prisijunk', + 'account_login': 'Jungtis', 'view_website': 'View Website', 'create_account': 'Create Account', 'email_login': 'Email Login', 'create_new': 'Create New', 'no_record_selected': 'No record selected', 'error_unsaved_changes': 'Please save or cancel your changes', - 'download': 'Lejupielādēt', + 'download': 'Atsiųsti', 'requires_an_enterprise_plan': 'Requires an enterprise plan', 'take_picture': 'Take Picture', 'upload_file': 'Upload File', 'document': 'Document', - 'documents': 'Documents', + 'documents': 'Dokumentai', 'new_document': 'New Document', 'edit_document': 'Edit Document', 'uploaded_document': 'Successfully uploaded document', @@ -35189,25 +35562,25 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_documents': 'Successfully restored :value documents', 'no_history': 'No History', 'expense_date': 'Expense Date', - 'pending': 'Pending', + 'pending': 'Laukia patvirtinimo', 'expense_status_1': 'Logged', 'expense_status_2': 'Pending', 'expense_status_3': 'Invoiced', 'converted': 'Converted', 'add_documents_to_invoice': 'Add documents to invoice', - 'exchange_rate': 'Exchange Rate', - 'convert_currency': 'Convert currency', + 'exchange_rate': 'Valiutos kursas', + 'convert_currency': 'Konvertuoti valiutą', 'mark_paid': 'Mark Paid', - 'category': 'Category', - 'address': 'Adrese', - 'new_vendor': 'New Vendor', - 'created_vendor': 'Successfully created vendor', - 'updated_vendor': 'Successfully updated vendor', - 'archived_vendor': 'Successfully archived vendor', - 'deleted_vendor': 'Successfully deleted vendor', + 'category': 'Kategorija', + 'address': 'Adresas', + 'new_vendor': 'Naujas tiekėjas', + 'created_vendor': 'Sukurtas tiekėjas', + 'updated_vendor': 'Atnaujintas tiekėjas', + 'archived_vendor': 'Sėkmingai suarchyvuoti tiekėjai', + 'deleted_vendor': 'Sėkmingai ištrintas tiekėjas', 'restored_vendor': 'Successfully restored vendor', - 'archived_vendors': 'Successfully archived :count vendors', - 'deleted_vendors': 'Successfully deleted :count vendors', + 'archived_vendors': 'Sėkmingai suarchyvuoti :count tiekėjai', + 'deleted_vendors': 'Ištrinta :count tiekėjų', 'restored_vendors': 'Successfully restored :value vendors', 'new_expense': 'Enter Expense', 'created_expense': 'Successfully created expense', @@ -35224,27 +35597,27 @@ mixin LocalizationsProvider on LocaleCodeAware { 'failed_to_find_record': 'Failed to find record', 'invoiced': 'Invoiced', 'logged': 'Logged', - 'running': 'Running', - 'resume': 'Resume', + 'running': 'Vykdomas', + 'resume': 'Tęsti', 'task_errors': 'Please correct any overlapping times', - 'start': 'Start', - 'stop': 'Stop', + 'start': 'Pradėti', + 'stop': 'Stabdyti', 'started_task': 'Successfully started task', 'stopped_task': 'Successfully stopped task', 'resumed_task': 'Successfully resumed task', - 'now': 'Now', + 'now': 'Dabar', 'auto_start_tasks': 'Auto Start Tasks', - 'timer': 'Timer', - 'manual': 'Manual', + 'timer': 'Chronometras', + 'manual': 'Nurodyti', 'budgeted': 'Budgeted', - 'start_time': 'Start Time', - 'end_time': 'End Time', - 'date': 'Datums', - 'times': 'Times', - 'duration': 'Duration', - 'new_task': 'New Task', - 'created_task': 'Successfully created task', - 'updated_task': 'Successfully updated task', + 'start_time': 'Pradžia', + 'end_time': 'Pabaiga', + 'date': 'Data', + 'times': 'Laikas', + 'duration': 'Trukmė', + 'new_task': 'Naujas darbas', + 'created_task': 'Sukurtas darbas', + 'updated_task': 'Atnaujintas darbas', 'archived_task': 'Successfully archived task', 'deleted_task': 'Successfully deleted task', 'restored_task': 'Successfully restored task', @@ -35261,118 +35634,118 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_projects': 'Successfully archived :count projects', 'deleted_projects': 'Successfully deleted :count projects', 'restored_projects': 'Successfully restored :value projects', - 'new_project': 'Jauns projekts', + 'new_project': 'New Project', 'thank_you_for_using_our_app': 'Thank you for using our app!', - 'if_you_like_it': 'If you like it please', - 'click_here': 'click here', + 'if_you_like_it': 'Jei jums patiko prašome', + 'click_here': 'spausti čia', 'click_here_capital': 'Click here', 'to_rate_it': 'to rate it.', - 'average': 'Average', - 'unapproved': 'Unapproved', + 'average': 'Vidurkis', + 'unapproved': 'Nepatvirtinta', 'authenticate_to_change_setting': 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', 'biometric_authentication': 'Biometric Authentication', - 'footer': 'Footer', - 'compare': 'Salīdzināt', + 'footer': 'Apačia', + 'compare': 'Compare', 'hosted_login': 'Hosted Login', 'selfhost_login': 'Selfhost Login', 'google_sign_in': 'Sign in with Google', - 'today': 'Šodien', + 'today': 'Today', 'custom_range': 'Custom Range', 'date_range': 'Date Range', - 'current': 'Tekošais', - 'previous': 'Iepriekšējais', - 'current_period': 'Tekošais periods', + 'current': 'Dabartinis', + 'previous': 'Previous', + 'current_period': 'Dabartinis periodas', 'comparison_period': 'Comparison Period', - 'previous_period': 'Iepriekšējais periods', - 'previous_year': 'Iepriekšējais gads', - 'compare_to': 'Salīdzināt ar', - 'last7_days': 'Pēdējas 7 dienas', - 'last_week': 'Pēdēja nedēļa', + 'previous_period': 'Previous Period', + 'previous_year': 'Previous Year', + 'compare_to': 'Compare to', + 'last7_days': 'Last 7 Days', + 'last_week': 'Last Week', 'last30_days': 'Last 30 Days', 'this_month': 'This Month', 'last_month': 'Last Month', 'this_year': 'This Year', 'last_year': 'Last Year', - 'custom': 'Custom', + 'custom': 'Kurti', 'clone_to_invoice': 'Clone to Invoice', - 'clone_to_quote': 'Nokopēt uz cenu piedāvājumu', + 'clone_to_quote': 'Clone to Quote', 'clone_to_credit': 'Clone to Credit', - 'view_invoice': 'Apskatīt rēķinu', - 'convert': 'Konvertēt', - 'more': 'Vairāk', - 'edit_client': 'Rediģēt klientu', + 'view_invoice': 'Rodyti sąskaitą', + 'convert': 'Convert', + 'more': 'More', + 'edit_client': 'Redaguoti', 'edit_product': 'Edit Product', - 'edit_invoice': 'Rediģēt rēķinu', - 'edit_quote': 'Edit Quote', + 'edit_invoice': 'Redaguoti', + 'edit_quote': 'Keisti sąmatą', 'edit_payment': 'Edit Payment', - 'edit_task': 'Edit Task', + 'edit_task': 'Keisti', 'edit_expense': 'Edit Expense', - 'edit_vendor': 'Edit Vendor', - 'edit_project': 'Rediģēt projektu', + 'edit_vendor': 'Keisti', + 'edit_project': 'Edit Project', 'edit_recurring_quote': 'Edit Recurring Quote', - 'billing_address': 'Billing Address', - 'shipping_address': 'Piegādes adrese', - 'total_revenue': 'Total Revenue', - 'average_invoice': 'Vidējais rēķins', - 'outstanding': 'Nesamaksāts', - 'invoices_sent': ':count invoices sent', - 'active_clients': 'aktīvie klienti', - 'close': 'Aizvērt', - 'email': 'Epasts', - 'password': 'Password', + 'billing_address': 'Billing address', + 'shipping_address': 'Shipping Address', + 'total_revenue': 'Iš viso pajamų', + 'average_invoice': 'Sąskaitų vidurkis', + 'outstanding': 'Neapmokėta', + 'invoices_sent': ':count išsiųstos sąskaitos faktūros', + 'active_clients': 'aktyvūs klientai', + 'close': 'Uždaryti', + 'email': 'El. paštas', + 'password': 'Slaptažodis', 'url': 'URL', - 'secret': 'Secret', - 'name': 'Nosaukums', + 'secret': 'Slaptas žodis', + 'name': 'Pavadinimas', 'logout': 'Log Out', 'login': 'Login', - 'filter': 'Filtrs', - 'sort': 'Šķirot', - 'search': 'Meklēt', - 'active': 'Active', + 'filter': 'Filtras', + 'sort': 'Sort', + 'search': 'Paieška', + 'active': 'Aktyvus', 'archived': 'Archived', 'deleted': 'Deleted', - 'dashboard': 'Informācijas panelis', - 'archive': 'Arhīvs', - 'delete': 'Dzēst', - 'restore': 'Restore', - 'refresh_complete': 'Atjaunošana pabeigta', - 'please_enter_your_email': 'Lūdzu ievadiet jūsu epastu', - 'please_enter_your_password': 'Lūdzu ievadiet jūsu paroli', - 'please_enter_your_url': 'Lūdzu ievadiet jūsu URL', - 'please_enter_a_product_key': 'Lūdzu ievadiet produkta atslēgu', + 'dashboard': 'Darbastalis', + 'archive': 'Archyvas', + 'delete': 'Trinti', + 'restore': 'Atkurti', + 'refresh_complete': 'Refresh Complete', + 'please_enter_your_email': 'Please enter your email', + 'please_enter_your_password': 'Please enter your password', + 'please_enter_your_url': 'Please enter your URL', + 'please_enter_a_product_key': 'Please enter a product key', 'ascending': 'Ascending', 'descending': 'Descending', - 'save': 'Saglabāt', + 'save': 'Saugoti', 'an_error_occurred': 'An error occurred', - 'paid_to_date': 'Apmaksāts līdz rēķina izrakstīšanas datumam', - 'balance_due': 'Summa apmaksai', - 'balance': 'Bilance', - 'overview': 'Overview', - 'details': 'Sīkāka informācija', - 'phone': 'Tālrunis', - 'website': 'Mājas lapa', - 'vat_number': 'PVN reģ. Nr.', - 'id_number': 'Reģ. Nr.', - 'create': 'Izveidot', + 'paid_to_date': 'Apmokėta', + 'balance_due': 'Suma Viso', + 'balance': 'Balansas', + 'overview': 'Apžvalga', + 'details': 'Informacija', + 'phone': 'Telefonas', + 'website': 'Internetinis puslapis', + 'vat_number': 'PVM kodas', + 'id_number': 'Įmonės kodas', + 'create': 'Kurti', 'copied_to_clipboard': 'Copied :value to the clipboard', - 'error': 'Kļūda', + 'error': 'Error', 'could_not_launch': 'Could not launch', - 'contacts': 'Kontakti', + 'contacts': 'Kontaktinė informacija', 'additional': 'Additional', - 'first_name': 'Vārds', - 'last_name': 'Uzvārds', - 'add_contact': 'Pievienot kontaktu', - 'are_you_sure': 'Vai tu esi pārliecināts?', - 'cancel': 'Atcelt', + 'first_name': 'Vardas', + 'last_name': 'Pavardė', + 'add_contact': 'Pridėti kontaktą', + 'are_you_sure': 'Ar tikrai?', + 'cancel': 'Atšaukti', 'ok': 'Ok', - 'remove': 'Noņemt', + 'remove': 'Trinti', 'email_is_invalid': 'Email is invalid', - 'product': 'Produkts', - 'products': 'Produkti', + 'product': 'Product', + 'products': 'Prekės', 'new_product': 'New Product', 'created_product': 'Successfully created product', 'updated_product': 'Successfully updated product', @@ -35382,13 +35755,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_products': 'Successfully archived :count products', 'deleted_products': 'Successfully deleted :count products', 'restored_products': 'Successfully restored :value products', - 'product_key': 'Product', - 'notes': 'Piezīmes', + 'product_key': 'Prekė', + 'notes': 'Notes', 'cost': 'Cost', - 'client': 'Klients', - 'clients': 'Klienti', - 'new_client': 'Jauns klients', - 'created_client': 'Veiksmīgi izveidots klients', + 'client': 'Klientas', + 'clients': 'Klientai', + 'new_client': 'Naujas klientas', + 'created_client': 'Klientas sukurtas', 'updated_client': 'Successfully updated client', 'archived_client': 'Successfully archived client', 'archived_clients': 'Successfully archived :count clients', @@ -35396,15 +35769,15 @@ mixin LocalizationsProvider on LocaleCodeAware { 'deleted_clients': 'Successfully deleted :count clients', 'restored_client': 'Successfully restored client', 'restored_clients': 'Successfully restored :value clients', - 'address1': 'Iela', - 'address2': 'Dz/Kab', - 'city': 'Pilsēta', - 'state': 'Novads', - 'postal_code': 'Pasta indekss', + 'address1': 'Gatvė', + 'address2': 'Adresas 2', + 'city': 'Miestas', + 'state': 'Apskritis', + 'postal_code': 'Pašto kodas', 'country': 'Country', - 'invoice': 'Rēķins', - 'invoices': 'Rēķini', - 'new_invoice': 'Jauns rēķins', + 'invoice': 'Sąskaita faktūra', + 'invoices': 'Sąskaitos', + 'new_invoice': 'Nauja sąskaita', 'created_invoice': 'Successfully created invoice', 'updated_invoice': 'Successfully updated invoice', 'archived_invoice': 'Successfully archived invoice', @@ -35415,39 +35788,39 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_invoices': 'Successfully restored :value invoices', 'emailed_invoice': 'Successfully emailed invoice', 'emailed_payment': 'Successfully emailed payment', - 'amount': 'Summa', - 'invoice_number': 'Rēķina numurs', - 'invoice_date': 'Rēķina datums', - 'discount': 'Atlaide', - 'po_number': 'Pasūtījuma numurs', - 'terms': 'Nosacījumi', - 'public_notes': 'Publiskas piezīmes', - 'private_notes': 'Privātas piezīmes', - 'frequency': 'Biežums', - 'start_date': 'Sākuma datums', - 'end_date': 'Beigu datums', - 'quote_number': 'Quote Number', - 'quote_date': 'Quote Date', - 'valid_until': 'Derīgs līdz', - 'items': 'Items', - 'partial_deposit': 'Partial/Deposit', - 'description': 'Apraksts', - 'unit_cost': 'Vienības cena', - 'quantity': 'Daudzums', + 'amount': 'Suma', + 'invoice_number': 'Sąskaitos numeris', + 'invoice_date': 'Išrašymo data', + 'discount': 'Nuolaida', + 'po_number': 'Užsakymo numeris', + 'terms': 'Sąlygos', + 'public_notes': 'Viešos pastabos', + 'private_notes': 'Privatūs užrašai', + 'frequency': 'Periodas', + 'start_date': 'Pradžia', + 'end_date': 'Pabaiga', + 'quote_number': 'Sąmatos numeris', + 'quote_date': 'Sąmatos data', + 'valid_until': 'Galioja iki', + 'items': 'Prekės/Paslaugos', + 'partial_deposit': 'Dalinis/Avansas', + 'description': 'Aprašymas', + 'unit_cost': 'Vnt. kaina', + 'quantity': 'Kiekis', 'add_item': 'Add Item', - 'contact': 'Kontakts', - 'work_phone': 'Tālrunis', + 'contact': 'Kontaktai', + 'work_phone': 'Telefonas', 'total_amount': 'Total Amount', 'pdf': 'PDF', - 'due_date': 'Apmaksāt līdz', - 'partial_due_date': 'Partial Due Date', - 'status': 'Statuss', - 'invoice_status_id': 'Rēķina statuss', - 'quote_status': 'Cenu piedāvājuma statuss', + 'due_date': 'Apmokėti iki', + 'partial_due_date': 'Dalimis Iki Datos', + 'status': 'Būklė', + 'invoice_status_id': 'Invoice Status', + 'quote_status': 'Quote Status', 'click_plus_to_add_item': 'Click + to add an item', 'click_plus_to_add_time': 'Click + to add time', 'count_selected': ':count selected', - 'total': 'Total', + 'total': 'Viso', 'percent': 'Percent', 'edit': 'Edit', 'dismiss': 'Dismiss', @@ -35455,121 +35828,121 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_select_a_client': 'Please select a client', 'please_select_an_invoice': 'Please select an invoice', 'task_rate': 'Task Rate', - 'settings': 'Iestatījumi', - 'language': 'Valoda', + 'settings': 'Nustatymai', + 'language': 'Language', 'currency': 'Currency', 'created_at': 'Date Created', 'created_on': 'Created On', - 'updated_at': 'Atjaunots', - 'tax': 'Nodoklis', + 'updated_at': 'Updated', + 'tax': 'Mokestis', 'please_enter_an_invoice_number': 'Please enter an invoice number', 'please_enter_a_quote_number': 'Please enter a quote number', 'past_due': 'Past Due', 'draft': 'Draft', - 'sent': 'Sent', - 'viewed': 'Skatīts', + 'sent': 'Išsiųsta', + 'viewed': 'Viewed', 'approved': 'Approved', - 'partial': 'Partial/Deposit', - 'paid': 'Paid', - 'mark_sent': 'Mark Sent', + 'partial': 'Dalinis/Avansas', + 'paid': 'Apmokėta', + 'mark_sent': 'Mark sent', 'marked_invoice_as_sent': 'Successfully marked invoice as sent', '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': 'Izpildīts', + 'done': 'Baigta', 'please_enter_a_client_or_contact_name': 'Please enter a client or contact name', - 'dark_mode': 'Dark Mode', + 'dark_mode': 'Tamsusis Rėžimas', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', 'blank_contact': 'Blank Contact', - 'activity': 'Aktivitāte', - 'no_records_found': 'No records found', + 'activity': 'Įvykiai', + 'no_records_found': 'Nerasta įrašų', 'clone': 'Clone', 'loading': 'Loading', 'industry': 'Industry', - 'size': 'Izmērs', - 'payment_terms': 'Apmaksas termiņš', - 'payment_date': 'Maksājuma datums', + 'size': 'Size', + 'payment_terms': 'Atsiskaitymo sąlygos', + 'payment_date': 'Mokėjimo data', 'payment_status': 'Payment Status', 'payment_status_1': 'Pending', 'payment_status_2': 'Voided', 'payment_status_3': 'Failed', 'payment_status_4': 'Completed', - 'payment_status_5': 'Partially Refunded', - 'payment_status_6': 'Refunded', + 'payment_status_5': 'Dalinis grąžinimas', + 'payment_status_6': 'Grąžinta', 'payment_status_-1': 'Unapplied', 'payment_status_-2': 'Partially Unapplied', 'net': 'Net', 'client_portal': 'Client Portal', 'show_tasks': 'Show tasks', 'email_reminders': 'Email Reminders', - 'enabled': 'Enabled', - 'recipients': 'Saņēmēji', - 'initial_email': 'Standarta e-pasts', + 'enabled': 'Įjungti', + 'recipients': 'Recipients', + 'initial_email': 'Initial Email', 'first_reminder': 'First Reminder', 'second_reminder': 'Second Reminder', 'third_reminder': 'Third Reminder', 'reminder1': 'First Reminder', 'reminder2': 'Second Reminder', 'reminder3': 'Third Reminder', - 'template': 'Sagatave', + 'template': 'Šablonas', 'send': 'Send', - 'subject': 'Subject', - 'body': 'Body', - 'send_email': 'Sūtīt e-pastu', + 'subject': 'Tema', + 'body': 'Žinutė', + 'send_email': 'Siųsti el. laišką', 'email_receipt': 'Email payment receipt to the client', 'auto_billing': 'Auto billing', - 'button': 'Poga', - 'preview': 'Apskatīt', - 'customize': 'Pielāgot', - 'history': 'Vēsture', + 'button': 'Button', + 'preview': 'Preview', + 'customize': 'Customize', + 'history': 'Istorija', 'payment': 'Payment', - 'payments': 'Maksājumi', - 'refunded': 'Refunded', - 'payment_type': 'Payment Type', - 'transaction_reference': 'Darījuma atsauce', - 'enter_payment': 'Ievadiet maksājumu', - 'new_payment': 'Ievadīt maksājumu', + 'payments': 'Mokėjimai', + 'refunded': 'Grąžinta', + 'payment_type': 'Mokėjimo tipas', + 'transaction_reference': 'Tranzakcijos numeris', + 'enter_payment': 'Įvesti apmokėjimą', + 'new_payment': 'Naujas mokėjimas', 'created_payment': 'Successfully created payment', - 'updated_payment': 'Successfully updated payment', + 'updated_payment': 'Mokėjimas atnaujintas', 'archived_payment': 'Successfully archived payment', 'deleted_payment': 'Successfully deleted payment', 'restored_payment': 'Successfully restored payment', 'archived_payments': 'Successfully archived :count payments', 'deleted_payments': 'Successfully deleted :count payments', 'restored_payments': 'Successfully restored :value payments', - 'quote': 'Quote', - 'quotes': 'Piedāvājumi', - 'new_quote': 'New Quote', + 'quote': 'Sąmata', + 'quotes': 'Sąmatos', + 'new_quote': 'Nauja sąmata', 'created_quote': 'Successfully created quote', 'updated_quote': 'Successfully updated quote', 'archived_quote': 'Successfully archived quote', 'deleted_quote': 'Successfully deleted quote', 'restored_quote': 'Successfully restored quote', - 'archived_quotes': 'Veiksmīgi saarhivēti :count Piedāvājumi', - 'deleted_quotes': 'Veiksmīgi dzēsti :count Piedāvājumi', - 'restored_quotes': 'Veiksmīgi atjaunināti :value Piedāvājumi', - 'expense': 'Expense', - 'expenses': 'Izdevumi', - 'vendor': 'Vendor', - 'vendors': 'Vendors', + 'archived_quotes': 'Successfully archived :count quotes', + 'deleted_quotes': 'Successfully deleted :count quotes', + 'restored_quotes': 'Successfully restored :value quotes', + 'expense': 'Išlaidos', + 'expenses': 'Išlaidos', + 'vendor': 'Tiekėjas', + 'vendors': 'Tiekėjai', 'task': 'Task', - 'tasks': 'Tasks', - 'project': 'Projekts', - 'projects': 'Projekti', - 'activity_1': ':user created client :client', + 'tasks': 'Darbai', + 'project': 'Project', + 'projects': 'Projects', + 'activity_1': ':user sukūrė klientą :client', 'activity_2': ':user archived client :client', 'activity_3': ':user deleted client :client', - 'activity_4': ':user created invoice :invoice', + 'activity_4': ':user sukurta sąskaita :invoice', 'activity_5': ':user updated invoice :invoice', - 'activity_6': ':user nosūtīja rēķinu :invoice priekš :client uz :contact', - 'activity_7': ':contact ir apskatījis Rēķinu :invoice priekš :client', + 'activity_6': ':user emailed invoice :invoice for :client to :contact', + 'activity_7': ':contact viewed invoice :invoice for :client', 'activity_8': ':user archived invoice :invoice', 'activity_9': ':user deleted invoice :invoice', 'activity_10': - ':contact ievadīja Maksājumu :payment par Summu :payment_amount Rēķinam :invoice priekš :client', - 'activity_11': ':user updated payment :payment', + ':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', 'activity_14': ':user entered :credit credit', @@ -35578,8 +35951,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_17': ':user deleted :credit credit', 'activity_18': ':user created quote :quote', 'activity_19': ':user updated quote :quote', - 'activity_20': - ':user nosūtīja Piedāvājumu :quote priekš :client uz :contact', + 'activity_20': ':user emailed quote :quote for :client to :contact', 'activity_21': ':contact viewed quote :quote', 'activity_22': ':user archived quote :quote', 'activity_23': ':user deleted quote :quote', @@ -35588,38 +35960,38 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_26': ':user restored client :client', 'activity_27': ':user restored payment :payment', 'activity_28': ':user restored :credit credit', - 'activity_29': ':contact apstiprināja Piedāvājumu :quote priekš :client', + 'activity_29': ':contact approved quote :quote for :client', 'activity_30': ':user created vendor :vendor', 'activity_31': ':user archived vendor :vendor', 'activity_32': ':user deleted vendor :vendor', 'activity_33': ':user restored vendor :vendor', - 'activity_34': ':user created expense :expense', + 'activity_34': ':user sukurta sąskaita :expense', 'activity_35': ':user archived expense :expense', 'activity_36': ':user deleted expense :expense', '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', - 'activity_41': ':payment_amount payment (:payment) failed', + 'activity_41': ':payment_amount mokėjimas (:payment) nepavyko', 'activity_42': ':user created task :task', 'activity_43': ':user updated task :task', 'activity_44': ':user archived task :task', 'activity_45': ':user deleted task :task', 'activity_46': ':user restored task :task', 'activity_47': ':user updated expense :expense', - 'activity_48': ':user atjaunoja Ziņojumu :ticket', - 'activity_49': ':user aizvēra Ziņojumu :ticket', - 'activity_50': ':user apvienoja Ziņojumus :ticket', - 'activity_51': ':user sadalīja Ziņojumus :ticket', - 'activity_52': ':contact atvēra Ziņōjumu :ticket', - 'activity_53': ':contact atkārtoti atvēra Ziņojumu :ticket', - 'activity_54': ':user atkārtoti atvēra Ziņojumu :ticket', - 'activity_55': ':contact atbildēja uz Ziņojumu :ticket', - 'activity_56': ':user paskatijās Ziņojumu :ticket', - 'activity_57': 'System failed to email invoice :invoice', - 'activity_58': ':user reversed invoice :invoice', - 'activity_59': ':user cancelled invoice :invoice', - 'activity_60': ':contact viewed quote :quote', + 'activity_48': ':user updated ticket :ticket', + 'activity_49': ':user closed ticket :ticket', + 'activity_50': ':user merged ticket :ticket', + 'activity_51': ':user split ticket :ticket', + 'activity_52': ':contact opened ticket :ticket', + 'activity_53': ':contact reopened ticket :ticket', + 'activity_54': ':user reopened ticket :ticket', + 'activity_55': ':contact replied ticket :ticket', + 'activity_56': ':user viewed ticket :ticket', + 'activity_57': 'System failed to email invoice :invoice', + 'activity_58': ':user reversed invoice :invoice', + 'activity_59': ':user cancelled invoice :invoice', + 'activity_60': ':contact viewed quote :quote', 'activity_61': ':user updated client :client', 'activity_62': ':user updated vendor :vendor', 'activity_63': @@ -35635,14 +36007,14 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_82': ':user archived subscription :subscription', 'activity_83': ':user deleted subscription :subscription', 'activity_84': ':user restored subscription :subscription', - 'one_time_password': 'One Time Password', + 'one_time_password': 'Vienkartinis Slaptažodis', 'emailed_quote': 'Successfully emailed quote', 'emailed_credit': 'Successfully emailed credit', - 'marked_quote_as_sent': 'Cenu piedāvājums veiksmīgi atzīmēts kā nosūtīts', + 'marked_quote_as_sent': 'Successfully marked quote as sent', 'marked_credit_as_sent': 'Successfully marked credit as sent', 'expired': 'Expired', - 'all': 'All', - 'select': 'Izvēlieties', + 'all': 'Visi', + 'select': 'Pasirinkite', 'long_press_multiselect': 'Long-press Multiselect', 'custom_value1': 'Custom Value', 'custom_value2': 'Custom Value', @@ -35652,7 +36024,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'custom_message_dashboard': 'Custom Dashboard Message', 'custom_message_unpaid_invoice': 'Custom Unpaid Invoice Message', 'custom_message_paid_invoice': 'Custom Paid Invoice Message', - 'custom_message_unapproved_quote': 'Custom Unapproved Quote Message', + 'custom_message_unapproved_quote': + 'Tinkintas nepatvirtinto pasiūlymo pranešimas', 'lock_invoices': 'Lock Invoices', 'translations': 'Translations', 'task_number_pattern': 'Task Number Pattern', @@ -35685,7 +36058,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'email_subject_invoice': 'Email Invoice Subject', 'email_subject_quote': 'Email Quote Subject', 'email_subject_payment': 'Email Payment Subject', - 'email_subject_payment_partial': 'Email Partial Payment Subject', + 'email_subject_payment_partial': 'El. pašt. Dalino Apmokėjimo Subject', 'show_table': 'Show Table', 'show_list': 'Show List', 'client_city': 'Client City', @@ -35700,12 +36073,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_shipping_address1': 'Client Shipping Street', 'client_shipping_address2': 'Client Shipping Apt/Suite', 'type': 'Type', - 'invoice_amount': 'Invoice Amount', - 'invoice_due_date': 'Due Date', + 'invoice_amount': 'Sąskaitos suma', + 'invoice_due_date': 'Terminas', 'tax_rate1': 'Tax Rate 1', 'tax_rate2': 'Tax Rate 2', 'tax_rate3': 'Tax Rate 3', - 'auto_bill': 'Auto Bill', + 'auto_bill': 'Automatinis mokėjimas', 'archived_at': 'Archived At', 'has_expenses': 'Has Expenses', 'custom_taxes1': 'Custom Taxes 1', @@ -35724,13 +36097,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'tax_name': 'Tax Name', 'tax_amount': 'Tax Amount', 'tax_paid': 'Tax Paid', - 'payment_amount': 'Maksājuma summa', + 'payment_amount': 'Mokėjimo suma', 'age': 'Age', 'is_running': 'Is Running', - 'time_log': 'Laika Logi', - 'bank_id': 'Bank', + 'time_log': 'Laiko Registras', + 'bank_id': 'bank', 'expense_category_id': 'Expense Category ID', - 'expense_category': 'Izdevumu kategorija', + 'expense_category': 'Expense Category', 'invoice_currency_id': 'Invoice Currency ID', 'tax_name1': 'Tax Name 1', 'tax_name2': 'Tax Name 2', @@ -35739,7 +36112,29 @@ mixin LocalizationsProvider on LocaleCodeAware { 'status_color_theme': 'Status Color Theme', 'load_color_theme': 'Load Color Theme', }, - 'lt': { + 'mk_MK': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'Надоместокот за :amount фактура би бил :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Одобри', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -35755,7 +36150,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'convert_to': 'Convert To', 'client_currency': 'Client Currency', 'company_currency': 'Company Currency', - 'purged_client': 'Successfully purged client', + 'purged_client': 'Успешно прочистување на клиент', 'custom_emails_disabled_help': 'To prevent spam we require upgrading to a paid account to customize the email', 'upgrade_to_add_company': 'Upgrade your plan to add companies', @@ -35791,7 +36186,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'giropay': 'GiroPay', 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', - 'set_password': 'Įrašyti slaptažodį', + 'set_password': 'Сетирај лозинка', 'recommend_desktop': 'We recommend using the desktop app for the best performance', 'recommend_mobile': @@ -35813,15 +36208,15 @@ mixin LocalizationsProvider on LocaleCodeAware { 'registration': 'Registration', 'unauthorized_stripe_warning': 'Please authorize Stripe to accept online payments.', - 'view_expense': 'View expense # :expense', - 'view_statement': 'View Statement', + 'view_expense': 'Преглед на трошок # :expense', + 'view_statement': 'Преглед на исказ', 'sepa': 'SEPA Direct Debit', 'ideal': 'iDEAL', 'przelewy24': 'Przelewy24', 'eps': 'EPS', 'fpx': 'FPX', 'update_all_records': 'Update all records', - 'system': 'System', + 'system': 'Систем', 'set_default_company': 'Set Default Company', 'updated_company': 'Successfully updated company', 'kbc': 'KBC', @@ -35837,18 +36232,18 @@ mixin LocalizationsProvider on LocaleCodeAware { 'bulk_email_invoice': 'Email Invoice', 'bulk_email_quote': 'Email Quote', 'bulk_email_credit': 'Email Credit', - 'from_name': 'From Name', + 'from_name': 'Од име', 'clone_to_expense': 'Clone to expense', - 'recurring_expense': 'Recurring Expense', - 'recurring_expenses': 'Recurring Expenses', - 'new_recurring_expense': 'New Recurring Expense', - 'edit_recurring_expense': 'Edit Recurring Expense', - 'created_recurring_expense': 'Successfully created recurring expense', - 'updated_recurring_expense': 'Successfully updated recurring expense', - 'archived_recurring_expense': 'Successfully archived recurring expense', - 'deleted_recurring_expense': 'Successfully deleted project', + 'recurring_expense': 'Повторувачки трошок', + 'recurring_expenses': 'Повторувачки трошоци', + 'new_recurring_expense': 'Нов повторувачки трошок', + 'edit_recurring_expense': 'Измени повторувачки трошок', + 'created_recurring_expense': 'Успешно креирање на повторувачки трошок', + 'updated_recurring_expense': 'Успешно ажурирање на повторувачки трошок', + 'archived_recurring_expense': 'Успешно архивирање на повторувачки трошок', + 'deleted_recurring_expense': 'Успешно бришење на проект', 'removed_recurring_expense': 'Successfully removed recurring expense', - 'restored_recurring_expense': 'Successfully restored recurring expense', + 'restored_recurring_expense': 'Успешно повраќање на повторувачки трошок', 'search_recurring_expense': 'Search Recurring Expense', 'search_recurring_expenses': 'Search Recurring Expenses', 'last_sent_date': 'Last Sent Date', @@ -35870,7 +36265,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'expense_tax_help': 'Item tax rates are disabled', 'enable_markdown': 'Enable Markdown', 'enable_markdown_help': 'Convert markdown to HTML on the PDF', - 'user_guide': 'User Guide', + 'user_guide': 'Упатство за корисникот', 'add_second_contact': 'Add Second Contact', 'previous_page': 'Previous Page', 'next_page': 'Next Page', @@ -35904,7 +36299,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'subdomain_guide': 'The subdomain is used in the client portal to personalize links to match your brand. ie, https://your-brand.invoicing.co', 'send_time': 'Send Time', - 'import_data': 'Import Data', + 'import_data': 'Внеси податоци', 'import_settings': 'Import Settings', 'json_file_missing': 'Please provide the JSON file', 'json_option_missing': 'Please select to import the settings and/or data', @@ -35943,26 +36338,26 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_created': 'Invoice Created', 'quote_created': 'Quote Created', 'credit_created': 'Credit Created', - 'pro': 'Pro', + 'pro': 'Про', 'enterprise': 'Enterprise', 'last_updated': 'Last Updated', 'invoice_item': 'Invoice Item', 'quote_item': 'Quote Item', - 'contact_first_name': 'Contact First Name', - 'contact_last_name': 'Contact Last Name', + 'contact_first_name': 'Контакт Име', + 'contact_last_name': 'Контакт Презиме', 'order': 'Order', - 'unassigned': 'Unassigned', - 'partial_value': 'Must be greater than zero and less than the total', + 'unassigned': 'Неназначено', + 'partial_value': 'Мора да биде поголемо од нула а помало од вкупно', 'search_kanban': 'Search Kanban', 'search_kanbans': 'Search Kanban', 'kanban': 'Kanban', - 'enable': 'Įgalinti', + 'enable': 'Вклучи', 'move_top': 'Move Top', 'move_up': 'Move Up', 'move_down': 'Move Down', 'move_bottom': 'Move Bottom', 'subdomain_help': - 'Set the subdomain or display the invoice on your own website.', + 'Поставете го поддоменот или прикажете ја фактурата на вашата веб страна.', 'body_variable_missing': 'Error: the custom email must include a :body variable', 'add_body_variable_message': 'Make sure to include a :body variable', @@ -36000,7 +36395,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'refund_period': 'Refund Period', 'webhook_configuration': 'Webhook Configuration', 'purchase_page': 'Purchase Page', - 'security': 'Sauga', + 'security': 'Осигурување', 'email_bounced': 'Email Bounced', 'email_spam_complaint': 'Spam Complaint', 'email_delivery': 'Email Delivery', @@ -36011,12 +36406,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'pdf_success': 'PDF Success', 'modified': 'Modified', 'subscription': 'Subscription', - 'subscriptions': 'Subscriptions', + 'subscriptions': 'Претплати', 'new_subscription': 'New Subscription', - 'edit_subscription': 'Edit Subscription', - 'created_subscription': 'Successfully created subscription', - 'updated_subscription': 'Successfully updated subscription', - 'archived_subscription': 'Successfully archived subscription', + 'edit_subscription': 'Измени претплата', + 'created_subscription': 'Успешно креирана претплата', + 'updated_subscription': 'Успешно ажурирана претплата', + 'archived_subscription': 'Успешно архивирана претплата', 'deleted_subscription': 'Successfully deleted subscription', 'removed_subscription': 'Successfully removed subscription', 'restored_subscription': 'Successfully restored subscription', @@ -36043,23 +36438,25 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Warning: Changing your phone number will disable 2FA', 'help_translate': 'Help Translate', 'please_select_a_country': 'Please select a country', - 'resend_invite': 'Resend Invitation', + 'resend_invite': 'Повторно испраќање на покана', 'disabled_two_factor': 'Successfully disabled 2FA', 'connected_google': 'Successfully connected account', 'disconnected_google': 'Successfully disconnected account', 'delivered': 'Delivered', - 'bounced': 'Bounced', + 'bounced': 'Отфрлено', 'spam': 'Spam', 'view_docs': 'View Docs', 'enter_phone_to_enable_two_factor': 'Please provide a mobile phone number to enable two factor authentication', 'send_sms': 'Send SMS', 'sms_code': 'SMS Code', - 'two_factor_setup_help': 'Scan the bar code with a :link compatible app.', - 'enabled_two_factor': 'Sėkmingai įjungta Dviejų-Lygių Autentifikacija', + 'two_factor_setup_help': + 'Скенирај го бар кодот со :link компатибилна апликација.', + 'enabled_two_factor': + 'Успешно овозможена автентификација преку два фактори', 'connect_google': 'Connect Google', 'disconnect_google': 'Disconnect Google', - 'enable_two_factor': 'Dviejų-Lygių Autentifikacija', + 'enable_two_factor': 'Автентификација преку два фактори', 'disable_two_factor': 'Disable Two Factor', 'require_password_with_social_login': 'Require Password with Social Login', @@ -36072,7 +36469,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'security_settings': 'Security Settings', 'resend_email': 'Resend Email', 'confirm_your_email_address': 'Please confirm your email address', - 'refunded_payment': 'Grąžinti mokėjimai', + 'refunded_payment': 'Рефундирано плаќање', 'partially_unapplied': 'Partially Unapplied', 'select_a_gmail_user': 'Please select a user authenticated with Gmail', 'list_long_press': 'List Long Press', @@ -36083,25 +36480,25 @@ mixin LocalizationsProvider on LocaleCodeAware { 'counter_pattern_error': 'To use :client_counter please add either :client_number or :client_id_number to prevent conflicts', 'this_quarter': 'This Quarter', - 'last_quarter': 'Last Quarter', + 'last_quarter': 'Последен квартал', 'to_update_run': 'To update run', - 'convert_to_invoice': 'Convert to Invoice', + 'convert_to_invoice': 'Конвертирај во фактура', 'registration_url': 'Registration URL', - 'invoice_project': 'Invoice Project', - 'invoice_task': 'Išrašyti sąskaitą', - 'invoice_expense': 'Invoice Expense', + 'invoice_project': 'Фактурирај проект', + 'invoice_task': 'Задача на фактура', + 'invoice_expense': 'Фактурирај трошок', 'search_payment_term': 'Search 1 Payment Term', 'search_payment_terms': 'Search :count Payment Terms', 'save_and_preview': 'Save and Preview', 'save_and_email': 'Save and Email', 'supported_events': 'Supported Events', - 'converted_amount': 'Converted Amount', + 'converted_amount': 'Конвертиран износ', 'converted_balance': 'Converted Balance', 'converted_paid_to_date': 'Converted Paid to Date', 'converted_credit_balance': 'Converted Credit Balance', 'converted_total': 'Converted Total', 'is_sent': 'Is Sent', - 'default_documents': 'Default Documents', + 'default_documents': 'Стандардни документи', 'document_upload': 'Document Upload', 'document_upload_help': 'Enable clients to upload documents', 'expense_total': 'Expense Total', @@ -36113,7 +36510,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'after_taxes': 'After Taxes', 'color': 'Color', 'show': 'Show', - 'hide': 'Slėpti', + 'hide': 'Сокриј', 'empty_columns': 'Empty Columns', 'debug_mode_is_enabled': 'Debug mode is enabled', 'debug_mode_is_enabled_help': @@ -36127,14 +36524,14 @@ mixin LocalizationsProvider on LocaleCodeAware { 'duplicate_column_mapping': 'Duplicate column mapping', 'uses_inclusive_taxes': 'Uses Inclusive Taxes', 'is_amount_discount': 'Is Amount Discount', - 'column': 'Stulpelis', - 'sample': 'Pavyzdys', + 'column': 'Колона', + 'sample': 'Примерок', 'map_to': 'Map To', - 'import': 'Importuoti', + 'import': 'Внеси', 'first_row_as_column_names': 'Use first row as column names', - 'select_file': 'Pasirinkite failą', + 'select_file': 'Ве молиме изберете датотека', 'no_file_selected': 'No File Selected', - 'csv_file': 'Pasirinkti CSV failą', + 'csv_file': 'CSV датотека', 'csv': 'CSV', 'freshbooks': 'FreshBooks', 'invoice2go': 'Invoice2go', @@ -36152,32 +36549,32 @@ mixin LocalizationsProvider on LocaleCodeAware { 'sidebar_editor': 'Sidebar Editor', 'please_type_to_confirm': 'Please type \":value\" to confirm', 'purge': 'Purge', - 'service': 'Service', + 'service': 'Услуга', 'clone_to': 'Clone To', 'clone_to_other': 'Clone to Other', 'labels': 'Labels', 'add_custom': 'Add Custom', 'payment_tax': 'Payment Tax', - 'unpaid': 'Unpaid', + 'unpaid': 'Неплатено', 'white_label': 'White Label', - 'delivery_note': 'Delivery Note', + 'delivery_note': 'Забелешка за испорака', 'sent_invoices_are_locked': 'Sent invoices are locked', 'paid_invoices_are_locked': 'Paid invoices are locked', 'source_code': 'Source Code', 'app_platforms': 'App Platforms', 'invoice_late': 'Invoice Late', 'quote_expired': 'Quote Expired', - 'partial_due': 'Dalinis', - 'invoice_total': 'Suma Viso', - 'quote_total': 'Sąmatos viso', - 'credit_total': 'Credit Total', + 'partial_due': 'Делумен долг', + 'invoice_total': 'Вкупно по фактура', + 'quote_total': 'Вкупно понуди', + 'credit_total': 'Вкупно кредит', 'recurring_invoice_total': 'Invoice Total', 'actions': 'Actions', 'expense_number': 'Expense Number', 'task_number': 'Task Number', 'project_number': 'Project Number', 'project_name': 'Project Name', - 'warning': 'Warning', + 'warning': 'Предупредување', 'view_settings': 'View Settings', 'company_disabled_warning': 'Warning: this company has not yet been activated', @@ -36185,7 +36582,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'expired_quote': 'Expired Quote', 'remind_invoice': 'Remind Invoice', 'cvv': 'CVV', - 'client_name': 'Kliento Vardas', + 'client_name': 'Име на клиент', 'client_phone': 'Client Phone', 'required_fields': 'Required Fields', 'calculated_rate': 'Calculated Rate', @@ -36197,7 +36594,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'new_task_status': 'New Task Status', 'edit_task_status': 'Edit Task Status', 'created_task_status': 'Successfully created task status', - 'updated_task_status': 'Successfully update task status', + 'updated_task_status': 'Успешно ажуриран статус на задача', 'archived_task_status': 'Successfully archived task status', 'deleted_task_status': 'Successfully deleted task status', 'removed_task_status': 'Successfully removed task status', @@ -36218,17 +36615,17 @@ mixin LocalizationsProvider on LocaleCodeAware { 'configure_statuses': 'Configure Statuses', 'task_settings': 'Task Settings', 'configure_categories': 'Configure Categories', - 'expense_categories': 'Expense Categories', - 'new_expense_category': 'New Expense Category', + 'expense_categories': 'Категории на трошоци', + 'new_expense_category': 'Категорија на нов трошок', 'edit_expense_category': 'Edit Expense Category', - 'created_expense_category': 'Successfully created expense category', - 'updated_expense_category': 'Successfully updated expense category', - 'archived_expense_category': 'Successfully archived expense category', - 'deleted_expense_category': 'Successfully deleted category', + 'created_expense_category': 'Успешно креирана категорија на трошоци', + 'updated_expense_category': 'Успешно ажурирана категорија на трошоци', + 'archived_expense_category': 'Успешно архивирана категорија на трошоци', + 'deleted_expense_category': 'Успешно бришење на категорија', 'removed_expense_category': 'Successfully removed expense category', - 'restored_expense_category': 'Successfully restored expense category', + 'restored_expense_category': 'Успешно повратена категорија на трошоци', 'archived_expense_categories': - 'Successfully archived :count expense category', + 'Успешно архивирани :count категории на трошоци', 'deleted_expense_categories': 'Successfully deleted expense :value categories', 'restored_expense_categories': @@ -36244,14 +36641,14 @@ mixin LocalizationsProvider on LocaleCodeAware { 'force_update_help': 'You are running the latest version but there may be pending fixes available.', 'mark_paid_help': 'Track the expense has been paid', - 'should_be_invoiced': 'Būtina sąskaita faktūra', + 'should_be_invoiced': 'Треба да биде фактурирано', 'should_be_invoiced_help': 'Enable the expense to be invoiced', 'add_documents_to_invoice_help': 'Make the documents visible', 'convert_currency_help': 'Set an exchange rate', 'expense_settings': 'Expense Settings', 'clone_to_recurring': 'Clone to Recurring', 'crypto': 'Crypto', - 'paypal': 'Paypal', + 'paypal': 'PayPal', 'alipay': 'Alipay', 'sofort': 'Sofort', 'apple_pay': 'Apple/Google Pay', @@ -36272,7 +36669,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'gateway_refund_help': 'Process the refund with the payment gateway', 'due_date_days': 'Due Date', 'paused': 'Paused', - 'mark_active': 'Mark Active', + 'mark_active': 'Обележи активно', 'day_count': 'Day :count', 'first_day_of_the_month': 'First Day of the Month', 'last_day_of_the_month': 'Last Day of the Month', @@ -36280,16 +36677,17 @@ mixin LocalizationsProvider on LocaleCodeAware { 'endless': 'Endless', 'next_send_date': 'Next Send Date', 'remaining_cycles': 'Remaining Cycles', - 'recurring_invoice': 'Debeto sąskaita', - 'recurring_invoices': 'Debeto sąskaitos', - 'new_recurring_invoice': 'Nauja debeto sąskaita', - 'edit_recurring_invoice': 'Edit Recurring Invoice', + 'recurring_invoice': 'Повторувачка фактура', + 'recurring_invoices': 'Фактури што се повторуваат', + 'new_recurring_invoice': 'Нова повторувачка фактура', + 'edit_recurring_invoice': 'Измени Повторувачка Фактура', 'created_recurring_invoice': 'Successfully created recurring invoice', 'updated_recurring_invoice': 'Successfully updated recurring invoice', - 'archived_recurring_invoice': 'Successfully archived recurring invoice', - 'deleted_recurring_invoice': 'Successfully deleted recurring invoice', + 'archived_recurring_invoice': + 'Успешно архивирање на повторувачка фактура', + 'deleted_recurring_invoice': 'Успешно бришење на повторувачка фактура', 'removed_recurring_invoice': 'Successfully removed recurring invoice', - 'restored_recurring_invoice': 'Successfully restored recurring invoice', + 'restored_recurring_invoice': 'Успешно повратена повторувачка фактура', 'archived_recurring_invoices': 'Successfully archived recurring :value invoices', 'deleted_recurring_invoices': @@ -36301,15 +36699,15 @@ mixin LocalizationsProvider on LocaleCodeAware { 'send_date': 'Send Date', 'auto_bill_on': 'Auto Bill On', 'minimum_under_payment_amount': 'Minimum Under Payment Amount', - 'profit': 'Profit', - 'line_item': 'Line Item', + 'profit': 'Профит', + 'line_item': 'Ставка на линија', 'allow_over_payment': 'Allow Over Payment', 'allow_over_payment_help': 'Support paying extra to accept tips', 'allow_under_payment': 'Allow Under Payment', 'allow_under_payment_help': 'Support paying at minimum the partial/deposit amount', 'test_mode': 'Test Mode', - 'opened': 'Opened', + 'opened': 'Отворено', 'payment_reconciliation_failure': 'Reconciliation Failure', 'payment_reconciliation_success': 'Reconciliation Success', 'gateway_success': 'Gateway Success', @@ -36321,46 +36719,46 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quota_exceeded': 'Quota Exceeded', 'upstream_failure': 'Upstream Failure', 'system_logs': 'System Logs', - 'view_portal': 'Rodyti tinklapį', + 'view_portal': 'Прегледај портал', 'copy_link': 'Copy Link', - 'token_billing': 'Save card details', + 'token_billing': 'Зачувај детали на картичка', 'welcome_to_invoice_ninja': 'Welcome to Invoice Ninja', - 'always': 'Visada', + 'always': 'Секогаш', 'optin': 'Opt-In', 'optout': 'Opt-Out', - 'label': 'Label', - 'client_number': 'Client Number', + 'label': 'Назнака', + 'client_number': 'Број на клиент', 'auto_convert': 'Auto Convert', - 'company_name': 'Įmonės pavadinimas', + 'company_name': 'Име на компанија', 'reminder1_sent': 'Reminder 1 Sent', 'reminder2_sent': 'Reminder 2 Sent', 'reminder3_sent': 'Reminder 3 Sent', 'reminder_last_sent': 'Reminder Last Sent', - 'pdf_page_info': 'Puslapis :current iš :total', - 'emailed_invoices': 'Successfully emailed invoices', - 'emailed_quotes': 'Successfully emailed quotes', + 'pdf_page_info': 'Page :current of :total', + 'emailed_invoices': 'Успешно пратени по е-пошта фактури', + 'emailed_quotes': 'Успешно пратени по е-пошта понуди', 'emailed_credits': 'Successfully emailed credits', - 'gateway': 'Gateway', + 'gateway': 'Платен портал', 'view_in_stripe': 'View in Stripe', 'rows_per_page': 'Rows Per Page', - 'hours': 'Valandos', - 'statement': 'Statement', - 'taxes': 'Mokesčiai', - 'surcharge': 'Surcharge', + 'hours': 'Часови', + 'statement': 'Исказ', + 'taxes': 'Даноци', + 'surcharge': 'Доплата', 'apply_payment': 'Apply Payment', - 'apply_credit': 'Apply Credit', - 'apply': 'Apply', + 'apply_credit': 'Примени кредит', + 'apply': 'Примени', 'unapplied': 'Unapplied', - 'select_label': 'Select Label', + 'select_label': 'Избери назнака', 'custom_labels': 'Custom Labels', 'record_type': 'Record Type', 'record_name': 'Record Name', 'file_type': 'File Type', 'height': 'Height', 'width': 'Width', - 'to': 'Pirkėjas', + 'to': 'До', 'health_check': 'Health Check', - 'payment_type_id': 'Mokėjimo tipas', + 'payment_type_id': 'Начин на плаќање', 'last_login_at': 'Last Login At', 'company_key': 'Company Key', 'storefront': 'Storefront', @@ -36378,47 +36776,47 @@ mixin LocalizationsProvider on LocaleCodeAware { 'selected_quotes': 'Selected Quotes', 'selected_tasks': 'Selected Tasks', 'selected_expenses': 'Selected Expenses', - 'upcoming_invoices': 'Naujos sąskaitos', + 'upcoming_invoices': 'Недоспеани Фактури', 'past_due_invoices': 'Past Due Invoices', - 'recent_payments': 'Naujausi mokėjimai', - 'upcoming_quotes': 'Upcoming Quotes', - 'expired_quotes': 'Expired Quotes', - 'create_client': 'Create Client', - 'create_invoice': 'Sukurti sąskaitą', - 'create_quote': 'Sukurti sąmatą', + 'recent_payments': 'Неодамнешни плаќања', + 'upcoming_quotes': 'Претстојни понуди', + 'expired_quotes': 'Истечени понуди', + 'create_client': 'Креирај клиент', + 'create_invoice': 'Креирај Фактура', + 'create_quote': 'Креирај понуда', 'create_payment': 'Create Payment', - 'create_vendor': 'Create vendor', + 'create_vendor': 'Креирај продавач', 'update_quote': 'Update Quote', - 'delete_quote': 'Delete Quote', + 'delete_quote': 'Избриши понуда', 'update_invoice': 'Update Invoice', - 'delete_invoice': 'Ištrinti sąskaitą', + 'delete_invoice': 'Избриши Фактура', 'update_client': 'Update Client', - 'delete_client': 'Trinti klientą', - 'delete_payment': 'Ištrinti mokėjimą', + 'delete_client': 'Избриши Клиент', + 'delete_payment': 'Избриши Плаќање', 'update_vendor': 'Update Vendor', - 'delete_vendor': 'Trinti', + 'delete_vendor': 'Избриши продавач', 'create_expense': 'Create Expense', 'update_expense': 'Update Expense', - 'delete_expense': 'Delete Expense', - 'create_task': 'Sukurti darbą', + 'delete_expense': 'Избриши трошок', + 'create_task': 'Креирај задача', 'update_task': 'Update Task', - 'delete_task': 'Trinti', + 'delete_task': 'Избриши задача', 'approve_quote': 'Approve Quote', - 'off': 'Išj.', + 'off': 'Исклучено', 'when_paid': 'When Paid', 'expires_on': 'Expires On', - 'free': 'Free', - 'plan': 'Plan', + 'free': 'Бесплатно', + 'plan': 'План', 'show_sidebar': 'Show Sidebar', 'hide_sidebar': 'Hide Sidebar', 'event_type': 'Event Type', - 'target_url': 'Target', + 'target_url': 'Цел', 'copy': 'Copy', 'must_be_online': 'Please restart the app once connected to the internet', 'crons_not_enabled': 'The crons need to be enabled', 'api_webhooks': 'API Webhooks', - 'search_webhooks': 'Ieškoti :count Webhooks', - 'search_webhook': 'Ieškoti 1 Webhook', + 'search_webhooks': 'Search :count Webhooks', + 'search_webhook': 'Search 1 Webhook', 'webhook': 'Webhook', 'webhooks': 'Webhooks', 'new_webhook': 'New Webhook', @@ -36433,18 +36831,18 @@ mixin LocalizationsProvider on LocaleCodeAware { 'deleted_webhooks': 'Successfully deleted :value webhooks', 'removed_webhooks': 'Successfully removed :value webhooks', 'restored_webhooks': 'Successfully restored :value webhooks', - 'api_tokens': 'API Tokens', + 'api_tokens': 'API токени', 'api_docs': 'API Docs', - 'search_tokens': 'Ieškoti :count raktų', - 'search_token': 'Ieškoti 1 raktą', - 'token': 'Token', - 'tokens': 'Tokens', + 'search_tokens': 'Search :count Tokens', + 'search_token': 'Search 1 Token', + 'token': 'Токен', + 'tokens': 'Токени', 'new_token': 'New Token', - 'edit_token': 'Edit Token', - 'created_token': 'Successfully created token', - 'updated_token': 'Successfully updated token', - 'archived_token': 'Successfully archived token', - 'deleted_token': 'Successfully deleted token', + 'edit_token': 'Измени токен', + 'created_token': 'Успешно креирање на токен', + 'updated_token': 'Успешно ажурирање на токен', + 'archived_token': 'Успешно архивирање на токен', + 'deleted_token': 'Успешно бришење на токен', 'removed_token': 'Successfully removed token', 'restored_token': 'Successfully restored token', 'archived_tokens': 'Successfully archived :value tokens', @@ -36454,27 +36852,27 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_registration_help': 'Enable clients to self register in the portal', 'customize_and_preview': 'Customize & Preview', - 'email_invoice': 'Išsiųsti sąskaitą el. paštu', - 'email_quote': 'Email Quote', + 'email_invoice': 'Прати Фактура по е-пошта', + 'email_quote': 'Прати понуда по ел. пошта', 'email_credit': 'Email Credit', - 'email_payment': 'Email Payment', + 'email_payment': 'Прати плаќање по е-пошта', 'client_email_not_set': 'Client does not have an email address set', 'ledger': 'Ledger', 'view_pdf': 'View PDF', 'all_records': 'All records', 'owned_by_user': 'Owned by user', 'credit_remaining': 'Credit Remaining', - 'contact_name': 'Contact Name', + 'contact_name': 'Име на контакт', 'use_default': 'Use default', 'reminder_endless': 'Endless Reminders', 'number_of_days': 'Number of days', 'configure_payment_terms': 'Configure Payment Terms', 'payment_term': 'Payment Term', 'new_payment_term': 'New Payment Term', - 'edit_payment_term': 'Edit Payment Term', - 'created_payment_term': 'Successfully created payment term', - 'updated_payment_term': 'Successfully updated payment term', - 'archived_payment_term': 'Successfully archived payment term', + 'edit_payment_term': 'Измени термин на плаќање', + 'created_payment_term': 'Успешно креирање на услов за плаќање', + 'updated_payment_term': 'Успешно ажурирање на услов на плаќање', + 'archived_payment_term': 'Успешно архивирање на услов за плаќање', 'deleted_payment_term': 'Successfully deleted payment term', 'removed_payment_term': 'Successfully removed payment term', 'restored_payment_term': 'Successfully restored payment term', @@ -36488,33 +36886,33 @@ mixin LocalizationsProvider on LocaleCodeAware { 'send_from_gmail': 'Send from Gmail', 'reversed': 'Reversed', 'cancelled': 'Cancelled', - 'credit_amount': 'Kredito suma', + 'credit_amount': 'Износ на кредит', 'quote_amount': 'Quote Amount', 'hosted': 'Hosted', 'selfhosted': 'Self-Hosted', - 'exclusive': 'Exclusive', - 'inclusive': 'Inclusive', + 'exclusive': 'Ексклузивно', + 'inclusive': 'Инклузивно', 'hide_menu': 'Hide Menu', 'show_menu': 'Show Menu', - 'partially_refunded': 'Dalinai grąžinta', - 'search_documents': 'Ieškoti dokumentų', - 'search_designs': 'Ieškoti dizaino', - 'search_invoices': 'Ieškoti sąskaitų-faktūrų', - 'search_clients': 'Ieškoti klientų', - 'search_products': 'Ieškoti prekių', - 'search_quotes': 'Ieškoti pasiūlymų', - 'search_credits': 'Ieškoti grąžinimų', - 'search_vendors': 'Ieškoti tiekėjų', - 'search_users': 'Ieškoti vartotojų', - 'search_tax_rates': 'Ieškoti mokesčių tarifų', - 'search_tasks': 'Ieškoti užduočių', - 'search_settings': 'Ieškoti nustatymų', - 'search_projects': 'Ieškoti projektų', - 'search_expenses': 'Ieškoti išlaidų', - 'search_payments': 'Ieškoti mokėjimų', - 'search_groups': 'Ieškoti grupių', - 'search_company': 'Ieškoti įmonių', - 'search_document': 'Ieškoti 1 dokumentą', + 'partially_refunded': 'Partially Refunded', + 'search_documents': 'Search Documents', + 'search_designs': 'Search Designs', + 'search_invoices': 'Search Invoices', + 'search_clients': 'Search Clients', + 'search_products': 'Search Products', + 'search_quotes': 'Search Quotes', + 'search_credits': 'Search Credits', + 'search_vendors': 'Search Vendors', + 'search_users': 'Search Users', + 'search_tax_rates': 'Search Tax Rates', + 'search_tasks': 'Search Tasks', + 'search_settings': 'Search Settings', + 'search_projects': 'Search Projects', + 'search_expenses': 'Search Expenses', + 'search_payments': 'Search Payments', + 'search_groups': 'Search Groups', + 'search_company': 'Search Company', + 'search_document': 'Search 1 Document', 'search_design': 'Search 1 Design', 'search_invoice': 'Search 1 Invoice', 'search_client': 'Search 1 Client', @@ -36529,48 +36927,48 @@ mixin LocalizationsProvider on LocaleCodeAware { 'search_expense': 'Search 1 Expense', 'search_payment': 'Search 1 Payment', 'search_group': 'Search 1 Group', - 'refund_payment': 'Grąžinti', + 'refund_payment': 'Рефундирај плаќање', 'cancelled_invoice': 'Successfully cancelled invoice', 'cancelled_invoices': 'Successfully cancelled invoices', 'reversed_invoice': 'Successfully reversed invoice', 'reversed_invoices': 'Successfully reversed invoices', 'reverse': 'Reverse', - 'full_name': 'Full Name', - 'city_state_postal': 'City/State/Postal', - 'postal_city_state': 'Postal/City/State', - 'custom1': 'First Custom', - 'custom2': 'Second Custom', + 'full_name': 'Целосно име', + 'city_state_postal': 'Град/Држава/Поштенски број', + 'postal_city_state': 'Поштенски број/Град/Држава', + 'custom1': 'Прво прилагодено', + 'custom2': 'Второ прилагодено', 'custom3': 'Third Custom', 'custom4': 'Fourth Custom', 'optional': 'Optional', 'license': 'License', - 'purge_data': 'Purge Data', - 'purge_successful': 'Successfully purged company data', + 'purge_data': 'Прочисти податоци', + 'purge_successful': 'Успешно прочистени податоци за компаанија', 'purge_data_message': - 'Warning: This will permanently erase your data, there is no undo.', - 'invoice_balance': 'Invoice Balance', - 'age_group_0': '0 - 30 Days', - 'age_group_30': '30 - 60 Days', - 'age_group_60': '60 - 90 Days', - 'age_group_90': '90 - 120 Days', - 'age_group_120': '120+ Days', - 'refresh': 'Refresh', + 'Предупредување: Ова трајно ќе ги избрише вашите податоци, нема враќање назад.', + 'invoice_balance': 'Состојба по Фактура', + 'age_group_0': '0 - 30 дена', + 'age_group_30': '30 - 60 дена', + 'age_group_60': '60 - 90 дена', + 'age_group_90': '90 - 120 дена', + 'age_group_120': '120+ дена', + 'refresh': 'Освежи', 'saved_design': 'Successfully saved design', 'client_details': 'Client Details', 'company_address': 'Company Address', - 'invoice_details': 'Invoice Details', + 'invoice_details': 'Детали за фактура', 'quote_details': 'Quote Details', 'credit_details': 'Credit Details', 'product_columns': 'Product Columns', 'task_columns': 'Task Columns', 'add_field': 'Add Field', 'all_events': 'All Events', - 'permissions': 'Permissions', - 'none': 'None', + 'permissions': 'Дозволи', + 'none': 'Нема', 'owned': 'Owned', 'payment_success': 'Payment Success', 'payment_failure': 'Payment Failure', - 'invoice_sent': ':count sąskaita išsiųsta', + 'invoice_sent': ':count испратена фактура', 'quote_sent': 'Quote Sent', 'credit_sent': 'Credit Sent', 'invoice_viewed': 'Invoice Viewed', @@ -36579,19 +36977,19 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_approved': 'Quote Approved', 'receive_all_notifications': 'Receive All Notifications', 'purchase_license': 'Purchase License', - 'apply_license': 'Apply License', - 'cancel_account': 'Cancel Account', + 'apply_license': 'Примени лиценца', + 'cancel_account': 'Избриши сметка', 'cancel_account_message': - 'Warning: This will permanently delete your account, there is no undo.', - 'delete_company': 'Delete Company', + 'Предупредување: Ова трајно ќе ја избрише вашата сметка, нема враќање.', + 'delete_company': 'Избриши компанија', 'delete_company_message': - 'Warning: This will permanently delete your company, there is no undo.', + 'Предупредување: Ова трајно ќе ја избрише вашата компанија, нема враќање назад.', 'enabled_modules': 'Enabled Modules', 'converted_quote': 'Successfully converted quote', 'credit_design': 'Credit Design', 'includes': 'Includes', - 'header': 'Viršus', - 'load_design': 'Load Design', + 'header': 'Заглавје', + 'load_design': 'Вчитај дизајн', 'css_framework': 'CSS Framework', 'custom_designs': 'Custom Designs', 'designs': 'Designs', @@ -36606,38 +37004,38 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_designs': 'Successfully archived :value designs', 'deleted_designs': 'Successfully deleted :value designs', 'restored_designs': 'Successfully restored :value designs', - 'proposals': 'Pasiūlymai', + 'proposals': 'Предлози', 'tickets': 'Tickets', - 'recurring_quotes': 'Pasikartojančios sąmatos', - 'recurring_tasks': 'Recurring Tasks', - 'account_management': 'Account Management', - 'credit_date': 'Išrašymo data', - 'credit': 'Kreditas', - 'credits': 'Kreditai', - 'new_credit': 'Įvesti kreditą', - 'edit_credit': 'Redaguoti Kreditą', - 'created_credit': 'Successfully created credit', - 'updated_credit': 'Sėkmingai atnaujintas kreditas', - 'archived_credit': 'Successfully archived credit', - 'deleted_credit': 'Successfully deleted credit', + 'recurring_quotes': 'Повторувачки понуди', + 'recurring_tasks': 'Повторувачки Задачи', + 'account_management': 'Менаџирање на сметка', + 'credit_date': 'Датум на кредит', + 'credit': 'Кредит', + 'credits': 'Кредити', + 'new_credit': 'Внеси Кредит', + 'edit_credit': 'Измени кредит', + 'created_credit': 'Успешно креирање на кредит', + 'updated_credit': 'Успешно ажурирање на кредит', + 'archived_credit': 'Успешно архивирање на кредит', + 'deleted_credit': 'Успешно бришење на кредит', 'removed_credit': 'Successfully removed credit', - 'restored_credit': 'Successfully restored credit', - 'archived_credits': 'Successfully archived :count credits', - 'deleted_credits': 'Successfully deleted :count credits', + 'restored_credit': 'Успешно повратување на кредит', + 'archived_credits': 'Успешно архивирање на :count кредити', + 'deleted_credits': 'Успешно бришење на :count кредити', 'restored_credits': 'Successfully restored :value credits', - 'current_version': 'Dabartinė versija', + 'current_version': 'Сегашна верзија', 'latest_version': 'Latest Version', 'update_now': 'Update Now', 'a_new_version_is_available': 'A new version of the web app is available', 'update_available': 'Update Available', 'app_updated': 'Update successfully completed', - 'learn_more': 'Plačiau', + 'learn_more': 'Повеќе', 'integrations': 'Integrations', 'tracking_id': 'Tracking Id', 'slack_webhook_url': 'Slack Webhook URL', - 'credit_footer': 'Kredito Poraštė', + 'credit_footer': 'Credit Footer', 'credit_terms': 'Credit Terms', - 'new_company': 'New Company', + 'new_company': 'Нова компанија', 'added_company': 'Successfully added company', 'company1': 'Custom Company 1', 'company2': 'Custom Company 2', @@ -36648,7 +37046,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'product3': 'Custom Product 3', 'product4': 'Custom Product 4', 'client1': 'Custom Client 1', - 'client2': 'Pasirinktinis Klientas 2', + 'client2': 'Custom Client 2', 'client3': 'Custom Client 3', 'client4': 'Custom Client 4', 'contact1': 'Custom Contact 1', @@ -36687,69 +37085,69 @@ mixin LocalizationsProvider on LocaleCodeAware { 'group2': 'Custom Group 2', 'group3': 'Custom Group 3', 'group4': 'Custom Group 4', - 'reset': 'Iš naujo', + 'reset': 'Ресетирај', 'number': 'Number', - 'export': 'Export', - 'chart': 'Diagrama', + 'export': 'Експортирај', + 'chart': 'Графикон', 'count': 'Count', - 'totals': 'Viso', - 'blank': 'Blank', - 'day': 'Day', - 'month': 'Month', - 'year': 'Year', - 'subgroup': 'Subgroup', + 'totals': 'Вкупно', + 'blank': 'Бланко', + 'day': 'Ден', + 'month': 'Месец', + 'year': 'Година', + 'subgroup': 'Подгрупа', 'is_active': 'Is Active', - 'group_by': 'Grupuoti pagal', - 'credit_balance': 'Kredito balansas', + 'group_by': 'Групирај по', + 'credit_balance': 'Состојба на кредит', 'contact_last_login': 'Contact Last Login', 'contact_full_name': 'Contact Full Name', - 'contact_phone': 'Contact Phone', + 'contact_phone': 'Телефон за контакт', 'contact_custom_value1': 'Contact Custom Value 1', 'contact_custom_value2': 'Contact Custom Value 2', 'contact_custom_value3': 'Contact Custom Value 3', 'contact_custom_value4': 'Contact Custom Value 4', - 'shipping_address1': 'Shipping Street', - 'shipping_address2': 'Shipping Apt/Suite', - 'shipping_city': 'Shipping City', - 'shipping_state': 'Shipping State/Province', - 'shipping_postal_code': 'Shipping Postal Code', - 'shipping_country': 'Shipping Country', - 'billing_address1': 'Billing Street', - 'billing_address2': 'Billing Apt/Suite', - 'billing_city': 'Billing City', - 'billing_state': 'Billing State/Province', - 'billing_postal_code': 'Billing Postal Code', - 'billing_country': 'Billing Country', - 'client_id': 'Kliento Id', + 'shipping_address1': 'Улица за достава', + 'shipping_address2': 'Апартман за достава', + 'shipping_city': 'Град за достава', + 'shipping_state': 'Држава/Провинција за достава', + 'shipping_postal_code': 'Поштенски број за достава', + 'shipping_country': 'Држава за достава', + 'billing_address1': 'Улица за наплата', + 'billing_address2': 'Апартман за наплата', + 'billing_city': 'Град за наплата', + 'billing_state': 'Држава/Провинција за наплата', + 'billing_postal_code': 'Поштенски број за наплата', + 'billing_country': 'Држава за наплата', + 'client_id': 'Идентификација на клиент', 'assigned_to': 'Assigned to', - 'created_by': 'Created by :name', + 'created_by': 'Креирано по :name', 'assigned_to_id': 'Assigned To Id', 'created_by_id': 'Created By Id', 'add_column': 'Add Column', 'edit_columns': 'Edit Columns', - 'columns': 'Columns', - 'aging': 'Aging', - 'profit_and_loss': 'Profit and Loss', - 'reports': 'Ataskaitos', - 'report': 'Ataskaita', - 'add_company': 'Add Company', - 'unpaid_invoice': 'Unpaid Invoice', - 'paid_invoice': 'Paid Invoice', - 'unapproved_quote': 'Nepatvirtinti pasiūlymai', - 'help': 'Pagalba', - 'refund': 'Pinigų grąžinimas', - 'refund_date': 'Grąžinimo data', + 'columns': 'Колони', + 'aging': 'Застарено', + 'profit_and_loss': 'Профит и загуба', + 'reports': 'Извештаи', + 'report': 'Извештај', + 'add_company': 'Додај компанија', + 'unpaid_invoice': 'Неплатена фактура', + 'paid_invoice': 'Платена фактура', + 'unapproved_quote': 'Неодобрена понуда', + 'help': 'Помош', + 'refund': 'Рефундирај', + 'refund_date': 'Refund Date', 'filtered_by': 'Filtered by', - 'contact_email': 'Contact Email', + 'contact_email': 'Е-пошта за контакт', 'multiselect': 'Multiselect', - 'entity_state': 'State', + 'entity_state': 'Состојба', 'verify_password': 'Verify Password', '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.', - 'message': 'Žinutė', - 'from': 'Pardavėjas', + 'message': 'Порака', + 'from': 'Од', 'show_product_details': 'Show Product Details', 'show_product_details_help': 'Include the description and cost in the product dropdown', @@ -36757,25 +37155,25 @@ mixin LocalizationsProvider on LocaleCodeAware { 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', 'configure_settings': 'Configure Settings', - 'support_forum': 'palaikymo forumas', + 'support_forum': 'Форум за поддршка', 'about': 'About', - 'documentation': 'Documentation', - 'contact_us': 'Contact Us', - 'subtotal': 'Tarpinė suma', - 'line_total': 'Suma', - 'item': 'Prekė/Paslauga', + 'documentation': 'Документација', + 'contact_us': 'Контактирајте не\'', + 'subtotal': 'Вкупно без данок', + 'line_total': 'Вкупно', + 'item': 'Ставка', 'credit_email': 'Credit Email', - 'iframe_url': 'Tinklapis', + 'iframe_url': 'Веб страна', 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': - 'Slaptažodyje turi būti didžioji raidė ir skaičius', + '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', 'deleted_logo': 'Successfully deleted logo', - 'yes': 'Taip', - 'no': 'Ne', + 'yes': 'Да', + 'no': 'Не', 'generate_number': 'Generate Number', 'when_saved': 'When Saved', 'when_sent': 'When Sent', @@ -36786,10 +37184,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'menu_sidebar': 'Menu Sidebar', 'history_sidebar': 'History Sidebar', 'tablet': 'Tablet', - 'mobile': 'Mobile', - 'desktop': 'Desktop', + 'mobile': 'Мобилен', + 'desktop': 'Десктоп', 'layout': 'Layout', - 'view': 'View', + 'view': 'Преглед', 'module': 'Module', 'first_custom': 'First Custom', 'second_custom': 'Second Custom', @@ -36813,219 +37211,221 @@ mixin LocalizationsProvider on LocaleCodeAware { 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', 'default_tax_rate': 'Default Tax Rate', - 'user': 'User', + 'user': 'Корисник', 'invoice_tax': 'Invoice Tax', 'line_item_tax': 'Line Item Tax', 'inclusive_taxes': 'Inclusive Taxes', 'invoice_tax_rates': 'Invoice Tax Rates', 'item_tax_rates': 'Item Tax Rates', - 'no_client_selected': 'Prašome pasirinkti klientą', + 'no_client_selected': 'Ве молиме изберете клиент', 'configure_rates': 'Configure rates', 'configure_gateways': 'Configure Gateways', - 'tax_settings': 'Tax Settings', + 'tax_settings': 'Поставки за данок', 'tax_settings_rates': 'Tax Rates', 'accent_color': 'Accent Color', - 'switch': 'Perjungti', + 'switch': 'Префрли', 'comma_sparated_list': 'Comma separated list', - 'options': 'Options', + 'options': 'Опции', 'single_line_text': 'Single-line text', 'multi_line_text': 'Multi-line text', 'dropdown': 'Dropdown', 'field_type': 'Field Type', 'recover_password_email_sent': 'A password recovery email has been sent', - 'submit': 'Submit', - 'recover_password': 'Atkurti slaptažodį', + 'submit': 'Поднеси', + 'recover_password': 'Поврати ја твојата лозинка', 'late_fees': 'Late Fees', - 'credit_number': 'Kredito Numeris', + 'credit_number': 'Број на кредит', 'payment_number': 'Payment Number', - 'late_fee_amount': 'Late Fee Amount', - 'late_fee_percent': 'Late Fee Percent', - 'schedule': 'Grafikas', + 'late_fee_amount': 'Износ на провизија за задоцнување', + 'late_fee_percent': 'Процент на провизија за задоцнување', + 'schedule': 'Распоред', 'before_due_date': 'Before the due date', 'after_due_date': 'After the due date', 'after_invoice_date': 'After the invoice date', - 'days': 'Days', - 'invoice_email': 'Invoice Email', - 'payment_email': 'Payment Email', - 'partial_payment': 'Dalinis Apmokėjimas', + 'days': 'Денови', + 'invoice_email': 'Мејл за фактура', + 'payment_email': 'Мејл за плаќање', + 'partial_payment': 'Partial Payment', 'payment_partial': 'Partial Payment', - 'partial_payment_email': 'Dalino Apmokėjimo El. paštas', - 'quote_email': 'Quote Email', - 'endless_reminder': 'Endless Reminder', + 'partial_payment_email': 'Partial Payment Email', + 'quote_email': 'Мејл за понуда', + 'endless_reminder': 'Бескраен потсетник', 'filtered_by_user': 'Filtered by User', - 'administrator': 'Administratorius', + 'administrator': 'Администратор', 'administrator_help': - 'Allow user to manage users, change settings and modify all records', - 'user_management': 'User Management', - 'users': 'Vartotojai', - 'new_user': 'New User', - 'edit_user': 'Edit User', + 'Дозвола за корисникот да менаџира со корисниците, да ги менува поставките и да ги модифицира сите записи', + 'user_management': 'Управување со корисник', + 'users': 'Корисници', + 'new_user': 'Нов корисник', + 'edit_user': 'Измени корисник', 'created_user': 'Successfully created user', - 'updated_user': 'Successfully updated user', - 'archived_user': 'Successfully archived user', - 'deleted_user': 'Successfully deleted user', + 'updated_user': 'Успешно ажурирање на корисник', + 'archived_user': 'Успешно архивирање на корисник', + 'deleted_user': 'Успешно бришење на корисник', 'removed_user': 'Successfully removed user', - 'restored_user': 'Successfully restored user', + 'restored_user': 'Успешно повратување на корисник', 'archived_users': 'Successfully archived :value users', 'deleted_users': 'Successfully deleted :value users', 'removed_users': 'Successfully removed :value users', 'restored_users': 'Successfully restored :value users', - 'general_settings': 'General Settings', - 'invoice_options': 'Invoice Options', - 'hide_paid_to_date': 'Hide paid to date', + 'general_settings': 'Општи поставки', + 'invoice_options': 'Поставки за фактура', + '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.', - 'invoice_embed_documents': 'Įkelti dokumentai', - 'invoice_embed_documents_help': 'Include attached images in the invoice.', - 'all_pages_header': 'Show header on', - 'all_pages_footer': 'Show footer on', - 'first_page': 'first page', - 'all_pages': 'all pages', - 'last_page': 'last page', + 'Прикажи \"Платено до датум\" на фактурите откако ќе биде примено плаќањето.', + 'invoice_embed_documents': 'Вметни документи', + 'invoice_embed_documents_help': + 'Вклучи ги прикачените слики во фактурата.', + 'all_pages_header': 'Прикажи заглавје на', + 'all_pages_footer': 'Прикажи футер на', + 'first_page': 'Прва страна', + 'all_pages': 'Сите страни', + 'last_page': 'Последна страна', 'primary_font': 'Primary Font', 'secondary_font': 'Secondary Font', - 'primary_color': 'Primary Color', - 'secondary_color': 'Secondary Color', - 'page_size': 'Page Size', - 'font_size': 'Font Size', - 'quote_design': 'Quote Design', - 'invoice_fields': 'Invoice Fields', - 'product_fields': 'Product Fields', - 'invoice_terms': 'Sąskaitos sąlygos', - 'invoice_footer': 'Invoice footer', - 'quote_terms': 'Quote Terms', - 'quote_footer': 'Quote Footer', - 'auto_email_invoice': 'Auto Email', + 'primary_color': 'Примарна боја', + 'secondary_color': 'Секундарна боја', + 'page_size': 'Големина на страна', + 'font_size': 'Големина на фонт', + 'quote_design': 'Дизајн на понуда', + 'invoice_fields': 'Полиња за фактура', + 'product_fields': 'Полиња на продукт', + 'invoice_terms': 'Услови по фактура', + 'invoice_footer': 'Футер на фактура', + 'quote_terms': 'Услови на понуда', + 'quote_footer': 'Футер на понуда', + 'auto_email_invoice': 'Автоматска е-пошта', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', - 'auto_archive_invoice': 'Auto Archive', + 'Автоматски испрати повторувачки фактури по е-пошта кога ќе бидат креирани.', + 'auto_archive_invoice': 'Автоматско архивирање', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', - 'auto_archive_quote': 'Auto Archive', + 'Автоматски архивирај фактури кога ќе бидат платени.', + 'auto_archive_quote': 'Автоматско архивирање', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', - 'auto_convert_quote': 'Automatiškai Konvertuoti', + 'Автоматски архивирај фактури кога ќе бидат конвертирани.', + 'auto_convert_quote': 'Автоматско конвертирање', 'auto_convert_quote_help': - 'Automatically convert a quote to an invoice when approved by a client.', - 'workflow_settings': 'Workflow Settings', - 'freq_daily': 'Kasdien', - 'freq_weekly': 'Kas savaitę', - 'freq_two_weeks': 'Dvi savaitės', - 'freq_four_weeks': 'Four weeks', - 'freq_monthly': 'Kas mėnesį', - 'freq_two_months': 'Two months', - 'freq_three_months': 'Three months', - 'freq_four_months': 'Four months', - 'freq_six_months': 'Six months', - 'freq_annually': 'Annually', - 'freq_two_years': 'Two years', + 'Автоматски конвертирај понуда во фактура кога истата ќе биде одобрена од клиентот.', + 'workflow_settings': 'Подесувања на текот на работа', + 'freq_daily': 'Дневно', + 'freq_weekly': 'Неделно', + 'freq_two_weeks': 'Две недели', + 'freq_four_weeks': 'Четири недели', + 'freq_monthly': 'Месечно', + 'freq_two_months': 'Два месеци', + 'freq_three_months': 'Три месеци', + 'freq_four_months': 'Четири месеци', + 'freq_six_months': 'Шест месеци', + 'freq_annually': 'Годишно', + 'freq_two_years': 'Две години', 'freq_three_years': 'Three Years', - 'never': 'Never', - 'company': 'Company', - 'generated_numbers': 'Generated Numbers', - 'charge_taxes': 'Charge taxes', - 'next_reset': 'Next Reset', - 'reset_counter': 'Reset Counter', - 'recurring_prefix': 'Recurring Prefix', + 'never': 'Никогаш', + 'company': 'Компанија', + 'generated_numbers': 'Генерирани броеви', + 'charge_taxes': 'Наплати даноци', + 'next_reset': 'Следно ресетирање', + 'reset_counter': 'Ресетирај бројач', + 'recurring_prefix': 'Повторувачки префикс', 'number_padding': 'Number Padding', 'general': 'General', 'surcharge_field': 'Surcharge Field', - 'company_field': 'Company Field', + 'company_field': 'Поле за компанија', 'company_value': 'Company Value', 'credit_field': 'Credit Field', - 'invoice_field': 'Invoice Field', - 'invoice_surcharge': 'Invoice Surcharge', - 'client_field': 'Client Field', - 'product_field': 'Product Field', + 'invoice_field': 'Поле за фактура', + 'invoice_surcharge': 'Доплата за фактура', + 'client_field': 'Поле за клиент', + 'product_field': 'Поле за продукт', 'payment_field': 'Payment Field', - 'contact_field': 'Contact Field', - 'vendor_field': 'Vendor Field', - 'expense_field': 'Expense Field', - 'project_field': 'Project Field', - 'task_field': 'Task Field', + 'contact_field': 'Поле за контакт', + 'vendor_field': 'Поле за продавач', + 'expense_field': 'Поле за трошок', + 'project_field': 'Поле за проект', + 'task_field': 'Поле за задача', 'group_field': 'Group Field', 'number_counter': 'Number Counter', - 'prefix': 'Priešdėlis', + 'prefix': 'Префикс', 'number_pattern': 'Number Pattern', - 'messages': 'Messages', - 'custom_css': 'Individualizuotas CSS', + 'messages': 'Пораки', + 'custom_css': 'Прилагоден CSS', 'custom_javascript': 'Custom JavaScript', - 'signature_on_pdf': 'Show on PDF', + 'signature_on_pdf': 'Прикажи на PDF', 'signature_on_pdf_help': - 'Show the client signature on the invoice/quote PDF.', - 'show_accept_invoice_terms': 'Invoice Terms Checkbox', + 'Прикажи го потписот на клиентот на PDF фактура/понуда.', + 'show_accept_invoice_terms': 'Поле за избор на услови за фактура', 'show_accept_invoice_terms_help': - 'Require client to confirm that they accept the invoice terms.', - 'show_accept_quote_terms': 'Quote Terms Checkbox', + 'Побарај од клиентот да потврди дека ги прифаќа условите на фактурата.', + 'show_accept_quote_terms': 'Поле за избор на услови за понуда', 'show_accept_quote_terms_help': - 'Require client to confirm that they accept the quote terms.', - 'require_invoice_signature': 'Invoice Signature', + 'Побарај од клиентот да потврди дека ги прифаќа условите на понудата.', + 'require_invoice_signature': 'Потпис на фактура', 'require_invoice_signature_help': - 'Require client to provide their signature.', - 'require_quote_signature': 'Quote Signature', - 'enable_portal_password': 'Password Protect Invoices', + 'Побарај од клиентот да обезбеди потпис.', + 'require_quote_signature': 'Потпис на понуда', + 'enable_portal_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.', - 'authorization': 'Authorization', - 'subdomain': 'Subdomain', - 'domain': 'Domain', + 'Ви дозволува поставување на лозинка за секој контакт. Ако поставите лозинка. контактот ќе мора да ја внесе лозинката пред да ги прегледа фактурите.', + 'authorization': 'Овластување', + 'subdomain': 'Поддомен', + 'domain': 'Домен', 'portal_mode': 'Portal Mode', - 'email_signature': 'Linkiu geros dienos,', + 'email_signature': 'Со почит,', 'enable_email_markup_help': - 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', - 'plain': 'Plain', - 'light': 'Light', - 'dark': 'Tamsu', - 'email_design': 'Email Design', + 'Направете го полесно плаќањето за вашите клиенти со додавање на schema.org обележје на вашите е-пошти', + 'plain': 'Обично', + 'light': 'Светло', + 'dark': 'Темно', + 'email_design': 'Дизајн на е-пошта', 'attach_pdf': 'Attach PDF', 'attach_documents': 'Attach Documents', 'attach_ubl': 'Attach UBL', 'email_style': 'Email Style', - 'enable_email_markup': 'Enable Markup', - 'reply_to_email': 'Reply-To Email', + 'enable_email_markup': 'Овозможи обележување', + 'reply_to_email': 'Одговори-на е-пошта', 'reply_to_name': 'Reply-To Name', - 'bcc_email': 'BCC Email', + 'bcc_email': 'BCC е-пошта', 'processed': 'Processed', - 'credit_card': 'Kreditinė kortelė', - 'bank_transfer': 'Pavedimu', + 'credit_card': 'Кредитна картичка', + 'bank_transfer': 'Банкарски трансфер', 'priority': 'Priority', 'fee_amount': 'Fee Amount', 'fee_percent': 'Fee Percent', 'fee_cap': 'Fee Cap', 'limits_and_fees': 'Limits/Fees', - 'enable_min': 'Enable min', - 'enable_max': 'Enable max', - 'min_limit': 'Min: :min', - 'max_limit': 'Max: :max', - 'min': 'Min', - 'max': 'Max', - 'accepted_card_logos': 'Accepted Card Logos', + 'enable_min': 'Овозможи мин.', + 'enable_max': 'Овозможи макс.', + 'min_limit': 'Мин: :min', + 'max_limit': 'Макс: :max', + 'min': 'Мин', + 'max': 'Макс', + 'accepted_card_logos': 'Прифатени логоа на картичка', 'credentials': 'Credentials', - 'update_address': 'Update Address', - 'update_address_help': 'Update client\'s address with provided details', - 'rate': 'Įkainis', - 'tax_rate': 'Tax Rate', - 'new_tax_rate': 'New Tax Rate', - 'edit_tax_rate': 'Edit tax rate', - 'created_tax_rate': 'Successfully created tax rate', - 'updated_tax_rate': 'Successfully updated tax rate', - 'archived_tax_rate': 'Successfully archived the tax rate', + 'update_address': 'Ажурирај адреса', + 'update_address_help': + 'Ажурирај ја адресата на клиентот со обезбедените детали', + 'rate': 'Стапка', + 'tax_rate': 'Даночна стапка', + 'new_tax_rate': 'Нова стапка на данок', + 'edit_tax_rate': 'Измени стапка на данок', + 'created_tax_rate': 'Успешно креирана стапка на данок', + 'updated_tax_rate': 'Успешно ажурирана стапка на данок', + 'archived_tax_rate': 'Успешно архивирана стапка на данок', 'deleted_tax_rate': 'Successfully deleted tax rate', 'restored_tax_rate': 'Successfully restored tax rate', 'archived_tax_rates': 'Successfully archived :value tax rates', 'deleted_tax_rates': 'Successfully deleted :value tax rates', 'restored_tax_rates': 'Successfully restored :value tax rates', - 'fill_products': 'Auto-fill products', + 'fill_products': 'Автоматско пополнување на продукти', 'fill_products_help': - 'Selecting a product will automatically fill in the description and cost', - 'update_products': 'Auto-update products', + 'Избирањето на продукт автоматски ќе ги исполни полињата за опис и цена', + 'update_products': 'Автоматско ажурирање на продукти', 'update_products_help': - 'Updating an invoice will automatically update the product library', - 'convert_products': 'Convert Products', + 'Ажурирањето на факура автоматски ќе ја ажурира библиотеката на продукти ', + 'convert_products': 'Конвертирај продукти', 'convert_products_help': - 'Automatically convert product prices to the client\'s currency', - 'fees': 'Fees', - 'limits': 'Limits', + 'Автоматски конвертирај ги цените на продуктите по валутите на клиентите', + 'fees': 'Надоместоци', + 'limits': 'Ограничувања', 'provider': 'Provider', 'company_gateway': 'Payment Gateway', 'company_gateways': 'Payment Gateways', @@ -37040,36 +37440,36 @@ mixin LocalizationsProvider on LocaleCodeAware { 'deleted_company_gateways': 'Successfully deleted :value gateways', 'restored_company_gateways': 'Successfully restored :value gateways', 'continue_editing': 'Continue Editing', - 'discard_changes': 'Discard Changes', + 'discard_changes': 'Отфрли промени', 'default_value': 'Default value', - 'disabled': 'Disabled', + 'disabled': 'Оневозможено', 'currency_format': 'Currency Format', 'first_day_of_the_week': 'First Day of the Week', 'first_month_of_the_year': 'First Month of the Year', - 'sunday': 'Sekmadienis', - 'monday': 'Pirmadienis', - 'tuesday': 'Antradienis', - 'wednesday': 'Trečiadienis', - 'thursday': 'Ketvirtadienis', - 'friday': 'Penktadienis', - 'saturday': 'Šeštadienis', - 'january': 'Sausis', - 'february': 'Vasaris', - 'march': 'Kovas', - 'april': 'Balandis', - 'may': 'Gegužė', - 'june': 'Birželis', - 'july': 'Liepa', - 'august': 'Rugpjūtis', - 'september': 'Rugsėjis', - 'october': 'Spalis', - 'november': 'Lapkritis', - 'december': 'Gruodis', - 'symbol': 'Simbolis', + 'sunday': 'Недела', + 'monday': 'Понеделник', + 'tuesday': 'Вторник', + 'wednesday': 'Среда', + 'thursday': 'Четврток', + 'friday': 'Петок', + 'saturday': 'Сабота', + 'january': 'Јануари', + 'february': 'Февруари', + 'march': 'Март', + 'april': 'Април', + 'may': 'Мај', + 'june': 'Јуни', + 'july': 'Јули', + 'august': 'Август', + 'september': 'Септември', + 'october': 'Октомври', + 'november': 'Ноември', + 'december': 'Декември', + 'symbol': 'Симбол', 'ocde': 'Code', 'date_format': 'Date Format', 'datetime_format': 'Datetime Format', - 'military_time': '24 val. formatas', + 'military_time': 'Време од 24 часа', 'military_time_help': '24 Hour Display', 'send_reminders': 'Send Reminders', 'timezone': 'Timezone', @@ -37079,7 +37479,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_client': 'Filtered by Client', 'filtered_by_vendor': 'Filtered by Vendor', 'group_settings': 'Group Settings', - 'group': 'Group', + 'group': 'Група', 'groups': 'Groups', 'new_group': 'New Group', 'edit_group': 'Edit Group', @@ -37093,27 +37493,27 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_group': 'Successfully restored group', 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Successfully uploaded logo', - 'logo': 'Logotipas', + 'logo': 'Лого', 'saved_settings': 'Successfully saved settings', - 'product_settings': 'Product Settings', + 'product_settings': 'Поставки за продукт', 'device_settings': 'Device Settings', - 'defaults': 'Numatyti', - 'basic_settings': 'Basic Settings', - 'advanced_settings': 'Advanced Settings', - 'company_details': 'Imonės informacija', - 'user_details': 'User Details', - 'localization': 'Lokalizacija', - 'online_payments': 'Online mokėjimai', - 'tax_rates': 'Mokesčių įkainiai', - 'notifications': 'Pranešimai', - 'import_export': 'Importas/Eksportas', - 'custom_fields': 'Custom fields', - 'invoice_design': 'Invoice Design', - 'buy_now_buttons': 'Pirkti dabar mygtukas', - 'email_settings': 'Email nustatymai', - 'templates_and_reminders': 'Templates & Reminders', + 'defaults': 'Стандарди', + 'basic_settings': 'Основни поставки', + 'advanced_settings': 'Напредни подесувања', + 'company_details': 'Податоци за компанијата', + 'user_details': 'Детали за корисникот', + 'localization': 'Локализација', + 'online_payments': 'Онлајн плаќања', + 'tax_rates': 'Даночни стапки', + 'notifications': 'Известувања', + 'import_export': 'Увоз | Извоз', + 'custom_fields': 'Прилагодливи полиња', + 'invoice_design': 'Дизајн на фактура', + 'buy_now_buttons': 'Купи сега копчиња', + 'email_settings': 'Поставки за е-пошта', + 'templates_and_reminders': 'Шаблони и потсетници', 'credit_cards_and_banks': 'Credit Cards & Banks', - 'data_visualizations': 'Data Visualizations', + 'data_visualizations': 'Визуализација на податоци', 'price': 'Price', 'email_sign_up': 'Email Sign Up', 'google_sign_up': 'Google Sign Up', @@ -37131,22 +37531,22 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_agree_to_terms_and_privacy': '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': 'Terms of Service', - 'privacy_policy': 'Privatumo politika', - 'sign_up': 'Prisijunk', - 'account_login': 'Jungtis', + 'terms_of_service': 'Услови на користење', + 'privacy_policy': 'Полиса за приватност', + 'sign_up': 'Најавување', + 'account_login': 'Најавување на сметка', 'view_website': 'View Website', 'create_account': 'Create Account', 'email_login': 'Email Login', - 'create_new': 'Create New', + 'create_new': 'Креирај сега', 'no_record_selected': 'No record selected', 'error_unsaved_changes': 'Please save or cancel your changes', - 'download': 'Atsiųsti', + 'download': 'Преземи', 'requires_an_enterprise_plan': 'Requires an enterprise plan', 'take_picture': 'Take Picture', 'upload_file': 'Upload File', - 'document': 'Document', - 'documents': 'Dokumentai', + 'document': 'Документ', + 'documents': 'Документи', 'new_document': 'New Document', 'edit_document': 'Edit Document', 'uploaded_document': 'Successfully uploaded document', @@ -37158,104 +37558,104 @@ mixin LocalizationsProvider on LocaleCodeAware { 'deleted_documents': 'Successfully deleted :value documents', 'restored_documents': 'Successfully restored :value documents', 'no_history': 'No History', - 'expense_date': 'Expense Date', - 'pending': 'Laukia patvirtinimo', + 'expense_date': 'Датум на трошок', + 'pending': 'Во тек', 'expense_status_1': 'Logged', 'expense_status_2': 'Pending', 'expense_status_3': 'Invoiced', - 'converted': 'Converted', - 'add_documents_to_invoice': 'Add documents to invoice', - 'exchange_rate': 'Valiutos kursas', - 'convert_currency': 'Konvertuoti valiutą', - 'mark_paid': 'Mark Paid', - 'category': 'Kategorija', - 'address': 'Adresas', - 'new_vendor': 'Naujas tiekėjas', - 'created_vendor': 'Sukurtas tiekėjas', - 'updated_vendor': 'Atnaujintas tiekėjas', - 'archived_vendor': 'Sėkmingai suarchyvuoti tiekėjai', - 'deleted_vendor': 'Sėkmingai ištrintas tiekėjas', - 'restored_vendor': 'Successfully restored vendor', - 'archived_vendors': 'Sėkmingai suarchyvuoti :count tiekėjai', - 'deleted_vendors': 'Ištrinta :count tiekėjų', - 'restored_vendors': 'Successfully restored :value vendors', - 'new_expense': 'Enter Expense', - 'created_expense': 'Successfully created expense', - 'updated_expense': 'Successfully updated expense', - 'archived_expense': 'Successfully archived expense', - 'deleted_expense': 'Successfully deleted expense', - 'restored_expense': 'Successfully restored expense', - 'archived_expenses': 'Successfully archived expenses', - 'deleted_expenses': 'Successfully deleted expenses', + 'converted': 'Конвертирано', + 'add_documents_to_invoice': 'Додај документи на фактура', + 'exchange_rate': 'Девизен курс', + 'convert_currency': 'Конвертирај валута', + 'mark_paid': 'Обележи платено', + 'category': 'Категорија', + 'address': 'Адреса', + 'new_vendor': 'Нов продавач', + 'created_vendor': 'Успешно креирање на продавач', + 'updated_vendor': 'Успешно ажурирање на продавач', + 'archived_vendor': 'Успешно архивирање на продавач', + 'deleted_vendor': 'Успешно бришење на продавач', + 'restored_vendor': 'Успешно повраќање на продавач', + 'archived_vendors': 'Успешно архивирање на :count продавачи', + 'deleted_vendors': 'Успешно бришење на :count продавачи', + 'restored_vendors': 'Successfully restored :value vendors', + 'new_expense': 'Внеси трошок', + 'created_expense': 'Успешно креирање на трошок', + 'updated_expense': 'Успешно ажурирање на трошок', + 'archived_expense': 'Успешно архивирање на трошок', + 'deleted_expense': 'Успешно бришење на трошок', + 'restored_expense': 'Успешно повраќање на трошок', + 'archived_expenses': 'Успешно архивирање на трошоци', + 'deleted_expenses': 'Успешно бришење на трошоци', 'restored_expenses': 'Successfully restored :value expenses', - 'copy_shipping': 'Copy Shipping', - 'copy_billing': 'Copy Billing', + 'copy_shipping': 'Копирај достава', + 'copy_billing': 'Копирај наплата', 'design': 'Design', 'failed_to_find_record': 'Failed to find record', - 'invoiced': 'Invoiced', - 'logged': 'Logged', - 'running': 'Vykdomas', - 'resume': 'Tęsti', - 'task_errors': 'Please correct any overlapping times', - 'start': 'Pradėti', - 'stop': 'Stabdyti', - 'started_task': 'Successfully started task', - 'stopped_task': 'Successfully stopped task', - 'resumed_task': 'Successfully resumed task', - 'now': 'Dabar', + 'invoiced': 'Фактурирано', + 'logged': 'Најавено', + 'running': 'Во тек', + 'resume': 'Продолжи', + 'task_errors': 'Ве молиме корегирајте времињата што се преклопуваат', + 'start': 'Почеток', + 'stop': 'Сопри', + 'started_task': 'Успешно започната задача', + 'stopped_task': 'Успешно сопирање на задача', + 'resumed_task': 'Успешно повратување на задача', + 'now': 'Сега', 'auto_start_tasks': 'Auto Start Tasks', - 'timer': 'Chronometras', - 'manual': 'Nurodyti', + 'timer': 'Тајмер', + 'manual': 'Упатство', 'budgeted': 'Budgeted', - 'start_time': 'Pradžia', - 'end_time': 'Pabaiga', - 'date': 'Data', - 'times': 'Laikas', - 'duration': 'Trukmė', - 'new_task': 'Naujas darbas', - 'created_task': 'Sukurtas darbas', - 'updated_task': 'Atnaujintas darbas', - 'archived_task': 'Successfully archived task', - 'deleted_task': 'Successfully deleted task', - 'restored_task': 'Successfully restored task', - 'archived_tasks': 'Successfully archived :count tasks', - 'deleted_tasks': 'Successfully deleted :count tasks', + 'start_time': 'Време за почеток', + 'end_time': 'Измени време', + 'date': 'Датум', + 'times': 'Последователност', + 'duration': 'Времетраење', + 'new_task': 'Нова задача', + 'created_task': 'Успешно креирана задача', + 'updated_task': 'Успешно ажурирана задача', + 'archived_task': 'Успешно архивирање на задача', + 'deleted_task': 'Успешно бришење на задача', + 'restored_task': 'Успешно повратување на задача', + 'archived_tasks': 'Успешно архивирани :count задачи', + 'deleted_tasks': 'Успешно избришани :count задачи', 'restored_tasks': 'Successfully restored :value tasks', 'please_enter_a_name': 'Please enter a name', - 'budgeted_hours': 'Budgeted Hours', - 'created_project': 'Successfully created project', - 'updated_project': 'Successfully updated project', - 'archived_project': 'Successfully archived project', - 'deleted_project': 'Successfully deleted project', - 'restored_project': 'Successfully restored project', - 'archived_projects': 'Successfully archived :count projects', - 'deleted_projects': 'Successfully deleted :count projects', + 'budgeted_hours': 'Буџетирани часови', + 'created_project': 'Успешно креирање на проект', + 'updated_project': 'Успешно ажурирање на проект', + 'archived_project': 'Успешно архивирање на проект', + 'deleted_project': 'Успешно бришење на проект', + 'restored_project': 'Успешно повратување на проект', + 'archived_projects': 'Успешно архивирани :count проекти', + 'deleted_projects': 'Успешно избришани :count проекти', 'restored_projects': 'Successfully restored :value projects', - 'new_project': 'New Project', + 'new_project': 'Нов проект', 'thank_you_for_using_our_app': 'Thank you for using our app!', - 'if_you_like_it': 'Jei jums patiko prašome', - 'click_here': 'spausti čia', + 'if_you_like_it': 'If you like it please', + 'click_here': 'кликни тука', 'click_here_capital': 'Click here', 'to_rate_it': 'to rate it.', - 'average': 'Vidurkis', - 'unapproved': 'Nepatvirtinta', + 'average': 'Average', + 'unapproved': 'Unapproved', 'authenticate_to_change_setting': 'Please authenticate to change this setting', 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', 'biometric_authentication': 'Biometric Authentication', - 'footer': 'Apačia', + 'footer': 'Футер', 'compare': 'Compare', 'hosted_login': 'Hosted Login', 'selfhost_login': 'Selfhost Login', 'google_sign_in': 'Sign in with Google', 'today': 'Today', - 'custom_range': 'Custom Range', - 'date_range': 'Date Range', - 'current': 'Dabartinis', + 'custom_range': 'Прилагоден опсег', + 'date_range': 'Опсег на датуми', + 'current': 'Current', 'previous': 'Previous', - 'current_period': 'Dabartinis periodas', + 'current_period': 'Current Period', 'comparison_period': 'Comparison Period', 'previous_period': 'Previous Period', 'previous_year': 'Previous Year', @@ -37263,319 +37663,319 @@ mixin LocalizationsProvider on LocaleCodeAware { 'last7_days': 'Last 7 Days', 'last_week': 'Last Week', 'last30_days': 'Last 30 Days', - 'this_month': 'This Month', - 'last_month': 'Last Month', - 'this_year': 'This Year', - 'last_year': 'Last Year', - 'custom': 'Kurti', + 'this_month': 'Овој месец', + 'last_month': 'Претходен месец', + 'this_year': 'Оваа година', + 'last_year': 'Претходната година', + 'custom': 'Прилагодено', 'clone_to_invoice': 'Clone to Invoice', 'clone_to_quote': 'Clone to Quote', 'clone_to_credit': 'Clone to Credit', - 'view_invoice': 'Rodyti sąskaitą', + 'view_invoice': 'Преглед на фактура', 'convert': 'Convert', 'more': 'More', - 'edit_client': 'Redaguoti', - 'edit_product': 'Edit Product', - 'edit_invoice': 'Redaguoti', - 'edit_quote': 'Keisti sąmatą', - 'edit_payment': 'Edit Payment', - 'edit_task': 'Keisti', - 'edit_expense': 'Edit Expense', - 'edit_vendor': 'Keisti', - 'edit_project': 'Edit Project', - 'edit_recurring_quote': 'Edit Recurring Quote', - 'billing_address': 'Billing address', - 'shipping_address': 'Shipping Address', - 'total_revenue': 'Iš viso pajamų', - 'average_invoice': 'Sąskaitų vidurkis', - 'outstanding': 'Neapmokėta', - 'invoices_sent': ':count išsiųstos sąskaitos faktūros', - 'active_clients': 'aktyvūs klientai', - 'close': 'Uždaryti', - 'email': 'El. paštas', - 'password': 'Slaptažodis', + 'edit_client': 'Измени клиент', + 'edit_product': 'Измени продукт', + 'edit_invoice': 'Измени Фактура', + 'edit_quote': 'Измени понуда', + 'edit_payment': 'Измени плаќање', + 'edit_task': 'Измени задача', + 'edit_expense': 'Измени трошок', + 'edit_vendor': 'Измени продавач', + 'edit_project': 'Измени проект', + 'edit_recurring_quote': 'Измени Повторувачка Понуда', + 'billing_address': 'Адреса на фактурирање', + 'shipping_address': 'Адреса за достава', + 'total_revenue': 'Вкупен приход', + 'average_invoice': 'Просечна Фактура', + 'outstanding': 'Ненаплатено', + 'invoices_sent': ':count испратени фактури', + 'active_clients': 'Активни Клиенти', + 'close': 'Затвори', + 'email': 'Е-пошта', + 'password': 'Лозинка', 'url': 'URL', - 'secret': 'Slaptas žodis', - 'name': 'Pavadinimas', - 'logout': 'Log Out', - 'login': 'Login', - 'filter': 'Filtras', - 'sort': 'Sort', - 'search': 'Paieška', - 'active': 'Aktyvus', - 'archived': 'Archived', - 'deleted': 'Deleted', - 'dashboard': 'Darbastalis', - 'archive': 'Archyvas', - 'delete': 'Trinti', - 'restore': 'Atkurti', + 'secret': 'Тајно', + 'name': 'Име', + 'logout': 'Одјава', + 'login': 'Најава', + 'filter': 'Филтер', + 'sort': 'Подреди', + 'search': 'Пребарување', + 'active': 'Активен', + 'archived': 'Архивирано', + 'deleted': 'Избришано', + 'dashboard': 'Контролна табла', + 'archive': 'Архивирај', + 'delete': 'Избриши', + 'restore': 'Поврати', 'refresh_complete': 'Refresh Complete', - 'please_enter_your_email': 'Please enter your email', - 'please_enter_your_password': 'Please enter your password', - 'please_enter_your_url': 'Please enter your URL', + 'please_enter_your_email': 'Ве молиме внесете ја вашата е-пошта', + 'please_enter_your_password': 'Ве молиме внесете ја вашата лозинка', + 'please_enter_your_url': 'Ве молиме внесете ја вашата URL', 'please_enter_a_product_key': 'Please enter a product key', - 'ascending': 'Ascending', - 'descending': 'Descending', - 'save': 'Saugoti', - 'an_error_occurred': 'An error occurred', - 'paid_to_date': 'Apmokėta', - 'balance_due': 'Suma Viso', - 'balance': 'Balansas', - 'overview': 'Apžvalga', - 'details': 'Informacija', - 'phone': 'Telefonas', - 'website': 'Internetinis puslapis', - 'vat_number': 'PVM kodas', - 'id_number': 'Įmonės kodas', - 'create': 'Kurti', + 'ascending': 'Растечки', + 'descending': 'Опаѓачки', + 'save': 'Зачувај', + 'an_error_occurred': 'Настана грешка', + 'paid_to_date': 'Платено до денес', + 'balance_due': 'Вкупно за плаќање', + 'balance': 'Состојба', + 'overview': 'Overview', + 'details': 'Детали', + 'phone': 'Телефон', + 'website': 'Веб Страна', + 'vat_number': 'ДДВ број', + 'id_number': 'Идентификациски број', + 'create': 'Креирај', 'copied_to_clipboard': 'Copied :value to the clipboard', - 'error': 'Error', + 'error': 'Грешка', 'could_not_launch': 'Could not launch', - 'contacts': 'Kontaktinė informacija', + 'contacts': 'Контакти', 'additional': 'Additional', - 'first_name': 'Vardas', - 'last_name': 'Pavardė', - 'add_contact': 'Pridėti kontaktą', - 'are_you_sure': 'Ar tikrai?', - 'cancel': 'Atšaukti', + 'first_name': 'Име', + 'last_name': 'Презиме', + 'add_contact': 'Додади контакт', + 'are_you_sure': 'Дали сте сигурни?', + 'cancel': 'Откажи', 'ok': 'Ok', - 'remove': 'Trinti', + 'remove': 'Отстрани', 'email_is_invalid': 'Email is invalid', - 'product': 'Product', - 'products': 'Prekės', - 'new_product': 'New Product', - 'created_product': 'Successfully created product', - 'updated_product': 'Successfully updated product', - 'archived_product': 'Successfully archived product', - 'deleted_product': 'Successfully deleted product', - 'restored_product': 'Successfully restored product', - 'archived_products': 'Successfully archived :count products', - 'deleted_products': 'Successfully deleted :count products', + 'product': 'Продукт', + 'products': 'Продукти', + 'new_product': 'Нов продукт', + 'created_product': 'Успешно креирање на продукт', + 'updated_product': 'Успешно ажурирање на продукт', + 'archived_product': 'Успешно архивирање на продукт', + 'deleted_product': 'Успешно бришење на продукт', + 'restored_product': 'Успешно повратување на продукт', + 'archived_products': 'Успешно архивирање на :count продукти', + 'deleted_products': 'Успешно бришење на :count продукти', 'restored_products': 'Successfully restored :value products', - 'product_key': 'Prekė', - 'notes': 'Notes', - 'cost': 'Cost', - 'client': 'Klientas', - 'clients': 'Klientai', - 'new_client': 'Naujas klientas', - 'created_client': 'Klientas sukurtas', - 'updated_client': 'Successfully updated client', - 'archived_client': 'Successfully archived client', - 'archived_clients': 'Successfully archived :count clients', - 'deleted_client': 'Successfully deleted client', - 'deleted_clients': 'Successfully deleted :count clients', - 'restored_client': 'Successfully restored client', + 'product_key': 'Продукт', + 'notes': 'Забелешки', + 'cost': 'Цена', + 'client': 'Клиент', + 'clients': 'Клиенти', + 'new_client': 'Нов Клиент', + 'created_client': 'Успешно креирање на клиент', + 'updated_client': 'Успешно ажурирање на клиент', + 'archived_client': 'Успешно архивирање на клиент', + 'archived_clients': 'Успешно архивирање на :count клиенти', + 'deleted_client': 'Успешно бришење на клиент', + 'deleted_clients': 'Успешно бришење на :count клиенти', + 'restored_client': 'Успешно повратување на клиент', 'restored_clients': 'Successfully restored :value clients', - 'address1': 'Gatvė', - 'address2': 'Adresas 2', - 'city': 'Miestas', - 'state': 'Apskritis', - 'postal_code': 'Pašto kodas', - 'country': 'Country', - 'invoice': 'Sąskaita faktūra', - 'invoices': 'Sąskaitos', - 'new_invoice': 'Nauja sąskaita', - 'created_invoice': 'Successfully created invoice', - 'updated_invoice': 'Successfully updated invoice', - 'archived_invoice': 'Successfully archived invoice', - 'deleted_invoice': 'Successfully deleted invoice', - 'restored_invoice': 'Successfully restored invoice', - 'archived_invoices': 'Successfully archived :count invoices', - 'deleted_invoices': 'Successfully deleted :count invoices', + 'address1': 'Улица', + 'address2': 'Број', + 'city': 'Град', + 'state': 'Општина', + 'postal_code': 'Поштенски број', + 'country': 'Држава', + 'invoice': 'Фактура', + 'invoices': 'Фактури', + 'new_invoice': 'Нова Фактура', + 'created_invoice': 'Успешно креирана фактура', + 'updated_invoice': 'Успешно ажурирана фактура', + 'archived_invoice': 'Успешно архивирана фактура', + 'deleted_invoice': 'Успешно избришана Фактура', + 'restored_invoice': 'Успешно повратување на фактура', + 'archived_invoices': 'Успешно архивирани :count Фактури', + 'deleted_invoices': 'Успешно избришани :count фактури', 'restored_invoices': 'Successfully restored :value invoices', - 'emailed_invoice': 'Successfully emailed invoice', - 'emailed_payment': 'Successfully emailed payment', - 'amount': 'Suma', - 'invoice_number': 'Sąskaitos numeris', - 'invoice_date': 'Išrašymo data', - 'discount': 'Nuolaida', - 'po_number': 'Užsakymo numeris', - 'terms': 'Sąlygos', - 'public_notes': 'Viešos pastabos', - 'private_notes': 'Privatūs užrašai', - 'frequency': 'Periodas', - 'start_date': 'Pradžia', - 'end_date': 'Pabaiga', - 'quote_number': 'Sąmatos numeris', - 'quote_date': 'Sąmatos data', - 'valid_until': 'Galioja iki', - 'items': 'Prekės/Paslaugos', - 'partial_deposit': 'Dalinis/Avansas', - 'description': 'Aprašymas', - 'unit_cost': 'Vnt. kaina', - 'quantity': 'Kiekis', + 'emailed_invoice': 'Успешно пратена фактура по е-пошта', + 'emailed_payment': 'Успешно пратено плаќање по е-пошта', + 'amount': 'Количина', + 'invoice_number': 'Број на фактура', + 'invoice_date': 'Датаум на фактура', + 'discount': 'Попуст', + 'po_number': 'Број на нарачка', + 'terms': 'Услови', + 'public_notes': 'Јавни забелешки', + 'private_notes': 'Забелешки', + 'frequency': 'Фреквентност', + 'start_date': 'Почетен датум', + 'end_date': 'Краен датум', + 'quote_number': 'Број на понуда', + 'quote_date': 'Датум на понуда', + 'valid_until': 'Валидно до', + 'items': 'Items', + 'partial_deposit': 'Partial/Deposit', + 'description': 'Опис', + 'unit_cost': 'Цена на единица', + 'quantity': 'Количина', 'add_item': 'Add Item', - 'contact': 'Kontaktai', - 'work_phone': 'Telefonas', + 'contact': 'Контакт', + 'work_phone': 'Телефон', 'total_amount': 'Total Amount', 'pdf': 'PDF', - 'due_date': 'Apmokėti iki', - 'partial_due_date': 'Dalimis Iki Datos', - 'status': 'Būklė', + 'due_date': 'Датум на доспевање', + 'partial_due_date': 'Делумен датум на достасување', + 'status': 'Статус', 'invoice_status_id': 'Invoice Status', 'quote_status': 'Quote Status', 'click_plus_to_add_item': 'Click + to add an item', 'click_plus_to_add_time': 'Click + to add time', 'count_selected': ':count selected', - 'total': 'Viso', - 'percent': 'Percent', - 'edit': 'Edit', + 'total': 'Вкупно', + 'percent': 'Процент', + 'edit': 'Измени', 'dismiss': 'Dismiss', 'please_select_a_date': 'Please select a date', 'please_select_a_client': 'Please select a client', 'please_select_an_invoice': 'Please select an invoice', - 'task_rate': 'Task Rate', - 'settings': 'Nustatymai', + 'task_rate': 'Стапка на задача', + 'settings': 'Подесувања', 'language': 'Language', - 'currency': 'Currency', - 'created_at': 'Date Created', + 'currency': 'Валута', + 'created_at': 'Датум на креирање', 'created_on': 'Created On', 'updated_at': 'Updated', - 'tax': 'Mokestis', + 'tax': 'Данок', 'please_enter_an_invoice_number': 'Please enter an invoice number', 'please_enter_a_quote_number': 'Please enter a quote number', - 'past_due': 'Past Due', - 'draft': 'Draft', - 'sent': 'Išsiųsta', + 'past_due': 'Минато достасување', + 'draft': 'Нацрт', + 'sent': 'Испратено', 'viewed': 'Viewed', 'approved': 'Approved', - 'partial': 'Dalinis/Avansas', - 'paid': 'Apmokėta', - 'mark_sent': 'Mark sent', + 'partial': 'Делумно/Депозит', + 'paid': 'Платено', + 'mark_sent': 'Белегот е пратен', 'marked_invoice_as_sent': 'Successfully marked invoice as sent', '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': 'Baigta', + 'done': 'Завршено', 'please_enter_a_client_or_contact_name': 'Please enter a client or contact name', - 'dark_mode': 'Tamsusis Rėžimas', + 'dark_mode': 'Темен режим', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', 'blank_contact': 'Blank Contact', - 'activity': 'Įvykiai', - 'no_records_found': 'Nerasta įrašų', - 'clone': 'Clone', - 'loading': 'Loading', + 'activity': 'Активност', + 'no_records_found': 'No records found', + 'clone': 'Клонирај', + 'loading': 'Вчитување', 'industry': 'Industry', 'size': 'Size', - 'payment_terms': 'Atsiskaitymo sąlygos', - 'payment_date': 'Mokėjimo data', + 'payment_terms': 'Услови на плаќање', + 'payment_date': 'Датум на плаќање', 'payment_status': 'Payment Status', 'payment_status_1': 'Pending', 'payment_status_2': 'Voided', 'payment_status_3': 'Failed', 'payment_status_4': 'Completed', - 'payment_status_5': 'Dalinis grąžinimas', - 'payment_status_6': 'Grąžinta', + 'payment_status_5': 'Partially Refunded', + 'payment_status_6': 'Refunded', 'payment_status_-1': 'Unapplied', 'payment_status_-2': 'Partially Unapplied', 'net': 'Net', - 'client_portal': 'Client Portal', + 'client_portal': 'Портал на клиент', 'show_tasks': 'Show tasks', 'email_reminders': 'Email Reminders', - 'enabled': 'Įjungti', - 'recipients': 'Recipients', - 'initial_email': 'Initial Email', - 'first_reminder': 'First Reminder', - 'second_reminder': 'Second Reminder', - 'third_reminder': 'Third Reminder', + 'enabled': 'Овозможено', + 'recipients': 'Приматели', + 'initial_email': 'Почетна е-пошта', + 'first_reminder': 'Прв потсетник', + 'second_reminder': 'Втор потсетник', + 'third_reminder': 'Трет потсетник', 'reminder1': 'First Reminder', 'reminder2': 'Second Reminder', 'reminder3': 'Third Reminder', - 'template': 'Šablonas', + 'template': 'Шаблон', 'send': 'Send', - 'subject': 'Tema', - 'body': 'Žinutė', - 'send_email': 'Siųsti el. laišką', - 'email_receipt': 'Email payment receipt to the client', + 'subject': 'Предмет', + 'body': 'Конструкција', + 'send_email': 'Испрати емаил', + 'email_receipt': 'Прати потврда за плаќање на е-пошта до клиентот', 'auto_billing': 'Auto billing', 'button': 'Button', - 'preview': 'Preview', - 'customize': 'Customize', - 'history': 'Istorija', - 'payment': 'Payment', - 'payments': 'Mokėjimai', - 'refunded': 'Grąžinta', - 'payment_type': 'Mokėjimo tipas', - 'transaction_reference': 'Tranzakcijos numeris', - 'enter_payment': 'Įvesti apmokėjimą', - 'new_payment': 'Naujas mokėjimas', - 'created_payment': 'Successfully created payment', - 'updated_payment': 'Mokėjimas atnaujintas', - 'archived_payment': 'Successfully archived payment', - 'deleted_payment': 'Successfully deleted payment', - 'restored_payment': 'Successfully restored payment', - 'archived_payments': 'Successfully archived :count payments', - 'deleted_payments': 'Successfully deleted :count payments', + 'preview': 'Преглед', + 'customize': 'Прилагоди', + 'history': 'Историја', + 'payment': 'Плаќање', + 'payments': 'Плаќања', + 'refunded': 'Refunded', + 'payment_type': 'Тип на плаќање', + 'transaction_reference': 'Трансакциска референца', + 'enter_payment': 'Внеси уплата', + 'new_payment': 'Внеси Плаќање', + 'created_payment': 'Успешно креирано плаќање', + 'updated_payment': 'Успешно ажурирано плаќање', + 'archived_payment': 'Успешно архивирано плаќање', + 'deleted_payment': 'Успешно бришење на плаќање', + 'restored_payment': 'Успешно повратување на плаќање', + 'archived_payments': 'Успешно архивирани :count плаќања', + 'deleted_payments': 'Успешно бришење на :count плаќања', 'restored_payments': 'Successfully restored :value payments', - 'quote': 'Sąmata', - 'quotes': 'Sąmatos', - 'new_quote': 'Nauja sąmata', - 'created_quote': 'Successfully created quote', - 'updated_quote': 'Successfully updated quote', - 'archived_quote': 'Successfully archived quote', - 'deleted_quote': 'Successfully deleted quote', - 'restored_quote': 'Successfully restored quote', - 'archived_quotes': 'Successfully archived :count quotes', - 'deleted_quotes': 'Successfully deleted :count quotes', + 'quote': 'Понуда', + 'quotes': 'Понуди', + 'new_quote': 'Нова понуда', + 'created_quote': 'Успешно креирана понуда', + 'updated_quote': 'Успешно ажурирана понуда', + 'archived_quote': 'Успешно архивирана понуда', + 'deleted_quote': 'Успешно избришана понуда', + 'restored_quote': 'Успешно повратување на понуда', + 'archived_quotes': 'Успешно архивирани :count понуди', + 'deleted_quotes': 'Успешно избришани :count понуди', 'restored_quotes': 'Successfully restored :value quotes', - 'expense': 'Išlaidos', - 'expenses': 'Išlaidos', - 'vendor': 'Tiekėjas', - 'vendors': 'Tiekėjai', - 'task': 'Task', - 'tasks': 'Darbai', - 'project': 'Project', - 'projects': 'Projects', - 'activity_1': ':user sukūrė klientą :client', - 'activity_2': ':user archived client :client', - 'activity_3': ':user deleted client :client', - 'activity_4': ':user sukurta sąskaita :invoice', - 'activity_5': ':user updated invoice :invoice', + 'expense': 'Трошок', + 'expenses': 'Трошоци', + 'vendor': 'Продавач', + 'vendors': 'Продавачи', + 'task': 'Задача', + 'tasks': 'Задачи', + 'project': 'Проект', + 'projects': 'Проекти', + 'activity_1': ':user го креираше клиентот :client', + 'activity_2': ':user го архивираше клиентот :client', + 'activity_3': ':user го избриша клиентот :client', + 'activity_4': ':user ја креираше фактурата :invoice', + 'activity_5': ':user ја ажурираше фактурата :invoice', 'activity_6': ':user emailed invoice :invoice for :client to :contact', 'activity_7': ':contact viewed invoice :invoice for :client', - 'activity_8': ':user archived invoice :invoice', - 'activity_9': ':user deleted invoice :invoice', + 'activity_8': ':user ја архивира фактурата :invoice', + 'activity_9': ':user ја избриша фактурата :invoice', 'activity_10': ':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', - 'activity_14': ':user entered :credit credit', - 'activity_15': ':user updated :credit credit', - 'activity_16': ':user archived :credit credit', - 'activity_17': ':user deleted :credit credit', - 'activity_18': ':user created quote :quote', - 'activity_19': ':user updated quote :quote', + 'activity_11': ':user го ажурира плаќањето :payment', + 'activity_12': ':user го архивира плаќањето :payment', + 'activity_13': ':user го избриша плаќањето :payment', + 'activity_14': ':user внесе :credit кредит', + 'activity_15': ':user ажурира :credit кредит', + 'activity_16': ':user архивира :credit кредит', + 'activity_17': ':user избриша :credit кредит', + 'activity_18': ':user ја креира понудата :quote', + 'activity_19': ':user ја ажурира понудата :quote', 'activity_20': ':user emailed quote :quote for :client to :contact', - 'activity_21': ':contact viewed quote :quote', - 'activity_22': ':user archived quote :quote', - 'activity_23': ':user deleted quote :quote', - 'activity_24': ':user restored quote :quote', - 'activity_25': ':user restored invoice :invoice', - 'activity_26': ':user restored client :client', - 'activity_27': ':user restored payment :payment', - 'activity_28': ':user restored :credit credit', + 'activity_21': ':contact ја виде понудата :quote', + 'activity_22': ':user ја архивира понудата :quote', + 'activity_23': ':user ја избриша понудата :quote', + 'activity_24': ':user ја поврати понудата :quote', + 'activity_25': ':user ја поврати фактурата :invoice', + 'activity_26': ':user го поврати клиентот :client', + 'activity_27': ':user го поврати плаќањето :payment', + 'activity_28': ':user го поврати :credit кредитот', 'activity_29': ':contact approved quote :quote for :client', - 'activity_30': ':user created vendor :vendor', - 'activity_31': ':user archived vendor :vendor', - 'activity_32': ':user deleted vendor :vendor', - 'activity_33': ':user restored vendor :vendor', - 'activity_34': ':user sukurta sąskaita :expense', - 'activity_35': ':user archived expense :expense', - 'activity_36': ':user deleted expense :expense', - 'activity_37': ':user restored expense :expense', - 'activity_39': ':user cancelled a :payment_amount payment :payment', + 'activity_30': ':user го креира продавачот :vendor', + 'activity_31': ':user го архивира продавачот :vendor', + 'activity_32': ':user го избриша продавачот :vendor', + 'activity_33': ':user го поврати продавачот :vendor', + 'activity_34': ':user го креира трошокот :expense', + 'activity_35': ':user го архивира трошокот :expense', + 'activity_36': ':user го избриша трошокот :expense', + 'activity_37': ':user го поврати трошокот :expense', + 'activity_39': ':user го откажа :payment_amount плаќањето :payment', 'activity_40': - ':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', - 'activity_44': ':user archived task :task', - 'activity_45': ':user deleted task :task', - 'activity_46': ':user restored task :task', - 'activity_47': ':user updated expense :expense', + ':user го рефундира :adjustment на :payment_amount плаќање :payment', + 'activity_41': ':payment_amount плаќање (:payment) е неуспешно', + 'activity_42': ':user ја креира задачата :task', + 'activity_43': ':user ажурира задачата :task', + 'activity_44': ':user ја архивира задачата :task', + 'activity_45': ':user ја избриша задачата :task', + 'activity_46': ':user ја поврати задачата :task', + 'activity_47': ':user го ажурира трошокот :expense', 'activity_48': ':user updated ticket :ticket', 'activity_49': ':user closed ticket :ticket', 'activity_50': ':user merged ticket :ticket', @@ -37604,25 +38004,24 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_82': ':user archived subscription :subscription', 'activity_83': ':user deleted subscription :subscription', 'activity_84': ':user restored subscription :subscription', - 'one_time_password': 'Vienkartinis Slaptažodis', - 'emailed_quote': 'Successfully emailed quote', + 'one_time_password': 'Еднократна лозинка', + 'emailed_quote': 'Успешно пратена понуда по ел. пошта', 'emailed_credit': 'Successfully emailed credit', 'marked_quote_as_sent': 'Successfully marked quote as sent', 'marked_credit_as_sent': 'Successfully marked credit as sent', - 'expired': 'Expired', - 'all': 'Visi', - 'select': 'Pasirinkite', + 'expired': 'Истечено', + 'all': 'Сите', + 'select': 'Избери', 'long_press_multiselect': 'Long-press Multiselect', - 'custom_value1': 'Custom Value', - 'custom_value2': 'Custom Value', + 'custom_value1': 'Подесена вредност', + 'custom_value2': 'Подесена вредност', 'custom_value3': 'Custom Value 3', 'custom_value4': 'Custom Value 4', 'email_style_custom': 'Custom Email Style', 'custom_message_dashboard': 'Custom Dashboard Message', 'custom_message_unpaid_invoice': 'Custom Unpaid Invoice Message', 'custom_message_paid_invoice': 'Custom Paid Invoice Message', - 'custom_message_unapproved_quote': - 'Tinkintas nepatvirtinto pasiūlymo pranešimas', + 'custom_message_unapproved_quote': 'Custom Unapproved Quote Message', 'lock_invoices': 'Lock Invoices', 'translations': 'Translations', 'task_number_pattern': 'Task Number Pattern', @@ -37636,9 +38035,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'payment_number_pattern': 'Payment Number Pattern', 'payment_number_counter': 'Payment Number Counter', 'invoice_number_pattern': 'Invoice Number Pattern', - 'invoice_number_counter': 'Invoice Number Counter', + 'invoice_number_counter': 'Бројач на фактури', 'quote_number_pattern': 'Quote Number Pattern', - 'quote_number_counter': 'Quote Number Counter', + 'quote_number_counter': 'Бројач на понуди', 'client_number_pattern': 'Credit Number Pattern', 'client_number_counter': 'Credit Number Counter', 'credit_number_pattern': 'Credit Number Pattern', @@ -37655,27 +38054,27 @@ mixin LocalizationsProvider on LocaleCodeAware { 'email_subject_invoice': 'Email Invoice Subject', 'email_subject_quote': 'Email Quote Subject', 'email_subject_payment': 'Email Payment Subject', - 'email_subject_payment_partial': 'El. pašt. Dalino Apmokėjimo Subject', + 'email_subject_payment_partial': 'Email Partial Payment Subject', 'show_table': 'Show Table', 'show_list': 'Show List', 'client_city': 'Client City', 'client_state': 'Client State', 'client_country': 'Client Country', 'client_is_active': 'Client is Active', - 'client_balance': 'Client Balance', + 'client_balance': 'Состојба на клиент', 'client_address1': 'Client Street', 'client_address2': 'Client Apt/Suite', 'vendor_address1': 'Vendor Street', 'vendor_address2': 'Vendor Apt/Suite', 'client_shipping_address1': 'Client Shipping Street', 'client_shipping_address2': 'Client Shipping Apt/Suite', - 'type': 'Type', - 'invoice_amount': 'Sąskaitos suma', - 'invoice_due_date': 'Terminas', + 'type': 'Тип', + 'invoice_amount': 'Износ на фактура', + 'invoice_due_date': 'Датум на достасување', 'tax_rate1': 'Tax Rate 1', 'tax_rate2': 'Tax Rate 2', 'tax_rate3': 'Tax Rate 3', - 'auto_bill': 'Automatinis mokėjimas', + 'auto_bill': 'Автоматска наплата', 'archived_at': 'Archived At', 'has_expenses': 'Has Expenses', 'custom_taxes1': 'Custom Taxes 1', @@ -37691,16 +38090,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'vendor_state': 'Vendor State', 'vendor_country': 'Vendor Country', 'is_approved': 'Is Approved', - 'tax_name': 'Tax Name', - 'tax_amount': 'Tax Amount', - 'tax_paid': 'Tax Paid', - 'payment_amount': 'Mokėjimo suma', - 'age': 'Age', + 'tax_name': 'Име на данок', + 'tax_amount': 'Износ на данок', + 'tax_paid': 'Платен данок', + 'payment_amount': 'Износ на плаќање', + 'age': 'Возраст', 'is_running': 'Is Running', - 'time_log': 'Laiko Registras', - 'bank_id': 'bank', + 'time_log': 'Time Log', + 'bank_id': 'Банка', 'expense_category_id': 'Expense Category ID', - 'expense_category': 'Expense Category', + 'expense_category': 'Категорија на трошок', 'invoice_currency_id': 'Invoice Currency ID', 'tax_name1': 'Tax Name 1', 'tax_name2': 'Tax Name 2', @@ -37709,7 +38108,29 @@ mixin LocalizationsProvider on LocaleCodeAware { 'status_color_theme': 'Status Color Theme', 'load_color_theme': 'Load Color Theme', }, - 'mk_MK': { + 'nb_NO': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'The fee for a :amount invoice would be :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Godkjenn', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -37725,7 +38146,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'convert_to': 'Convert To', 'client_currency': 'Client Currency', 'company_currency': 'Company Currency', - 'purged_client': 'Успешно прочистување на клиент', + 'purged_client': 'Successfully purged client', 'custom_emails_disabled_help': 'To prevent spam we require upgrading to a paid account to customize the email', 'upgrade_to_add_company': 'Upgrade your plan to add companies', @@ -37761,7 +38182,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'giropay': 'GiroPay', 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', - 'set_password': 'Сетирај лозинка', + 'set_password': 'Sett Passord', 'recommend_desktop': 'We recommend using the desktop app for the best performance', 'recommend_mobile': @@ -37783,15 +38204,15 @@ mixin LocalizationsProvider on LocaleCodeAware { 'registration': 'Registration', 'unauthorized_stripe_warning': 'Please authorize Stripe to accept online payments.', - 'view_expense': 'Преглед на трошок # :expense', - 'view_statement': 'Преглед на исказ', + 'view_expense': 'View expense # :expense', + 'view_statement': 'Se Erklæring', 'sepa': 'SEPA Direct Debit', 'ideal': 'iDEAL', 'przelewy24': 'Przelewy24', 'eps': 'EPS', 'fpx': 'FPX', 'update_all_records': 'Update all records', - 'system': 'Систем', + 'system': 'System', 'set_default_company': 'Set Default Company', 'updated_company': 'Successfully updated company', 'kbc': 'KBC', @@ -37807,18 +38228,18 @@ mixin LocalizationsProvider on LocaleCodeAware { 'bulk_email_invoice': 'Email Invoice', 'bulk_email_quote': 'Email Quote', 'bulk_email_credit': 'Email Credit', - 'from_name': 'Од име', + 'from_name': 'Fra Navn', 'clone_to_expense': 'Clone to expense', - 'recurring_expense': 'Повторувачки трошок', - 'recurring_expenses': 'Повторувачки трошоци', - 'new_recurring_expense': 'Нов повторувачки трошок', - 'edit_recurring_expense': 'Измени повторувачки трошок', - 'created_recurring_expense': 'Успешно креирање на повторувачки трошок', - 'updated_recurring_expense': 'Успешно ажурирање на повторувачки трошок', - 'archived_recurring_expense': 'Успешно архивирање на повторувачки трошок', - 'deleted_recurring_expense': 'Успешно бришење на проект', + 'recurring_expense': 'Gjentakende Utgift', + 'recurring_expenses': 'Gjentakende Utgifter', + 'new_recurring_expense': 'Opprett Gjentakende Utgift', + 'edit_recurring_expense': 'Rediger Gjentakende Utgift', + 'created_recurring_expense': 'Successfully created recurring expense', + 'updated_recurring_expense': 'Successfully updated recurring expense', + 'archived_recurring_expense': 'Successfully archived recurring expense', + 'deleted_recurring_expense': 'Successfully deleted project', 'removed_recurring_expense': 'Successfully removed recurring expense', - 'restored_recurring_expense': 'Успешно повраќање на повторувачки трошок', + 'restored_recurring_expense': 'Successfully restored recurring expense', 'search_recurring_expense': 'Search Recurring Expense', 'search_recurring_expenses': 'Search Recurring Expenses', 'last_sent_date': 'Last Sent Date', @@ -37840,7 +38261,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'expense_tax_help': 'Item tax rates are disabled', 'enable_markdown': 'Enable Markdown', 'enable_markdown_help': 'Convert markdown to HTML on the PDF', - 'user_guide': 'Упатство за корисникот', + 'user_guide': 'Brukerguide', 'add_second_contact': 'Add Second Contact', 'previous_page': 'Previous Page', 'next_page': 'Next Page', @@ -37874,7 +38295,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'subdomain_guide': 'The subdomain is used in the client portal to personalize links to match your brand. ie, https://your-brand.invoicing.co', 'send_time': 'Send Time', - 'import_data': 'Внеси податоци', + 'import_data': 'Import Data', 'import_settings': 'Import Settings', 'json_file_missing': 'Please provide the JSON file', 'json_option_missing': 'Please select to import the settings and/or data', @@ -37913,26 +38334,26 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_created': 'Invoice Created', 'quote_created': 'Quote Created', 'credit_created': 'Credit Created', - 'pro': 'Про', + 'pro': 'Pro', 'enterprise': 'Enterprise', 'last_updated': 'Last Updated', 'invoice_item': 'Invoice Item', 'quote_item': 'Quote Item', - 'contact_first_name': 'Контакт Име', - 'contact_last_name': 'Контакт Презиме', + 'contact_first_name': 'Kontakts fornavn', + 'contact_last_name': 'Etternavn', 'order': 'Order', - 'unassigned': 'Неназначено', - 'partial_value': 'Мора да биде поголемо од нула а помало од вкупно', + 'unassigned': 'Ikke tilordnet', + 'partial_value': 'Må være større enn null og mindre enn totalen', 'search_kanban': 'Search Kanban', 'search_kanbans': 'Search Kanban', 'kanban': 'Kanban', - 'enable': 'Вклучи', + 'enable': 'Aktiver', 'move_top': 'Move Top', 'move_up': 'Move Up', 'move_down': 'Move Down', 'move_bottom': 'Move Bottom', 'subdomain_help': - 'Поставете го поддоменот или прикажете ја фактурата на вашата веб страна.', + 'Sett subdomenet eller vis fakturaen på ditt eget nettsted.', 'body_variable_missing': 'Error: the custom email must include a :body variable', 'add_body_variable_message': 'Make sure to include a :body variable', @@ -37970,7 +38391,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'refund_period': 'Refund Period', 'webhook_configuration': 'Webhook Configuration', 'purchase_page': 'Purchase Page', - 'security': 'Осигурување', + 'security': 'Sikkerhet', 'email_bounced': 'Email Bounced', 'email_spam_complaint': 'Spam Complaint', 'email_delivery': 'Email Delivery', @@ -37980,19 +38401,19 @@ mixin LocalizationsProvider on LocaleCodeAware { 'pdf_failed': 'PDF Failed', 'pdf_success': 'PDF Success', 'modified': 'Modified', - 'subscription': 'Subscription', - 'subscriptions': 'Претплати', - 'new_subscription': 'New Subscription', - 'edit_subscription': 'Измени претплата', - 'created_subscription': 'Успешно креирана претплата', - 'updated_subscription': 'Успешно ажурирана претплата', - 'archived_subscription': 'Успешно архивирана претплата', - 'deleted_subscription': 'Successfully deleted subscription', + 'subscription': 'Abonnement', + 'subscriptions': 'Abonnementer', + 'new_subscription': 'Nytt Abonnement ', + 'edit_subscription': 'Rediger Abonnement', + 'created_subscription': 'Abonnement opprettet', + 'updated_subscription': 'Oppdaterte abonnement', + 'archived_subscription': 'Abonnement arkivert', + 'deleted_subscription': 'Abonnement Slettet', 'removed_subscription': 'Successfully removed subscription', 'restored_subscription': 'Successfully restored subscription', 'search_subscription': 'Search 1 Subscription', 'search_subscriptions': 'Search :count Subscriptions', - 'subdomain_is_not_available': 'Subdomain is not available', + 'subdomain_is_not_available': 'Underdomene ikke tilgjengelig', 'connect_gmail': 'Connect Gmail', 'disconnect_gmail': 'Disconnect Gmail', 'connected_gmail': 'Successfully connected Gmail', @@ -38013,25 +38434,23 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Warning: Changing your phone number will disable 2FA', 'help_translate': 'Help Translate', 'please_select_a_country': 'Please select a country', - 'resend_invite': 'Повторно испраќање на покана', + 'resend_invite': 'Send invitasjon på nytt', 'disabled_two_factor': 'Successfully disabled 2FA', 'connected_google': 'Successfully connected account', 'disconnected_google': 'Successfully disconnected account', 'delivered': 'Delivered', - 'bounced': 'Отфрлено', + 'bounced': 'Bounced', 'spam': 'Spam', 'view_docs': 'View Docs', 'enter_phone_to_enable_two_factor': 'Please provide a mobile phone number to enable two factor authentication', 'send_sms': 'Send SMS', 'sms_code': 'SMS Code', - 'two_factor_setup_help': - 'Скенирај го бар кодот со :link компатибилна апликација.', - 'enabled_two_factor': - 'Успешно овозможена автентификација преку два фактори', + 'two_factor_setup_help': 'Scan the bar code with a :link compatible app.', + 'enabled_two_factor': 'Aktiverte To-faktor-autentisering', 'connect_google': 'Connect Google', 'disconnect_google': 'Disconnect Google', - 'enable_two_factor': 'Автентификација преку два фактори', + 'enable_two_factor': 'To-faktor-autentisering', 'disable_two_factor': 'Disable Two Factor', 'require_password_with_social_login': 'Require Password with Social Login', @@ -38043,8 +38462,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'web_session_timeout': 'Web Session Timeout', 'security_settings': 'Security Settings', 'resend_email': 'Resend Email', - 'confirm_your_email_address': 'Please confirm your email address', - 'refunded_payment': 'Рефундирано плаќање', + 'confirm_your_email_address': 'Venligst bekreft din epost adresse', + 'refunded_payment': 'Refundert betaling', 'partially_unapplied': 'Partially Unapplied', 'select_a_gmail_user': 'Please select a user authenticated with Gmail', 'list_long_press': 'List Long Press', @@ -38055,25 +38474,25 @@ mixin LocalizationsProvider on LocaleCodeAware { 'counter_pattern_error': 'To use :client_counter please add either :client_number or :client_id_number to prevent conflicts', 'this_quarter': 'This Quarter', - 'last_quarter': 'Последен квартал', - 'to_update_run': 'To update run', - 'convert_to_invoice': 'Конвертирај во фактура', + 'last_quarter': 'Last Quarter', + 'to_update_run': 'For og oppdatere kjør', + 'convert_to_invoice': 'Konverter til en faktura', 'registration_url': 'Registration URL', - 'invoice_project': 'Фактурирај проект', - 'invoice_task': 'Задача на фактура', - 'invoice_expense': 'Фактурирај трошок', + 'invoice_project': 'Invoice Project', + 'invoice_task': 'Fakturer Oppgave', + 'invoice_expense': 'Invoice Expense', 'search_payment_term': 'Search 1 Payment Term', 'search_payment_terms': 'Search :count Payment Terms', 'save_and_preview': 'Save and Preview', 'save_and_email': 'Save and Email', 'supported_events': 'Supported Events', - 'converted_amount': 'Конвертиран износ', + 'converted_amount': 'Converted Amount', 'converted_balance': 'Converted Balance', 'converted_paid_to_date': 'Converted Paid to Date', 'converted_credit_balance': 'Converted Credit Balance', 'converted_total': 'Converted Total', 'is_sent': 'Is Sent', - 'default_documents': 'Стандардни документи', + 'default_documents': 'Standard-dokumenter', 'document_upload': 'Document Upload', 'document_upload_help': 'Enable clients to upload documents', 'expense_total': 'Expense Total', @@ -38085,11 +38504,11 @@ mixin LocalizationsProvider on LocaleCodeAware { 'after_taxes': 'After Taxes', 'color': 'Color', 'show': 'Show', - 'hide': 'Сокриј', + 'hide': 'Skjul', 'empty_columns': 'Empty Columns', 'debug_mode_is_enabled': 'Debug mode is enabled', 'debug_mode_is_enabled_help': - 'Warning: it is intended for use on local machines, it can leak credentials. Click to learn more.', + 'Advarsel: en ment for bruk på lokal installasjon, passord er ikke sikkert. Klikk her for og vite mer.', 'running_tasks': 'Running Tasks', 'recent_tasks': 'Recent Tasks', 'recent_expenses': 'Recent Expenses', @@ -38099,14 +38518,14 @@ mixin LocalizationsProvider on LocaleCodeAware { 'duplicate_column_mapping': 'Duplicate column mapping', 'uses_inclusive_taxes': 'Uses Inclusive Taxes', 'is_amount_discount': 'Is Amount Discount', - 'column': 'Колона', - 'sample': 'Примерок', + 'column': 'Kolonne', + 'sample': 'Eksempel', 'map_to': 'Map To', - 'import': 'Внеси', + 'import': 'Importer', 'first_row_as_column_names': 'Use first row as column names', - 'select_file': 'Ве молиме изберете датотека', + 'select_file': 'Vennligst velg en fil', 'no_file_selected': 'No File Selected', - 'csv_file': 'CSV датотека', + 'csv_file': 'Velg CSV-fil', 'csv': 'CSV', 'freshbooks': 'FreshBooks', 'invoice2go': 'Invoice2go', @@ -38119,37 +38538,37 @@ mixin LocalizationsProvider on LocaleCodeAware { 'html_mode': 'HTML Mode', 'html_mode_help': 'Preview updates faster but is less accurate', 'view_licenses': 'View Licenses', - 'webhook_url': 'Webhook URL', + 'webhook_url': 'Webhook-URL', 'fullscreen_editor': 'Fullscreen Editor', 'sidebar_editor': 'Sidebar Editor', 'please_type_to_confirm': 'Please type \":value\" to confirm', 'purge': 'Purge', - 'service': 'Услуга', + 'service': 'Service', 'clone_to': 'Clone To', 'clone_to_other': 'Clone to Other', 'labels': 'Labels', 'add_custom': 'Add Custom', 'payment_tax': 'Payment Tax', - 'unpaid': 'Неплатено', + 'unpaid': 'Ubetalt', 'white_label': 'White Label', - 'delivery_note': 'Забелешка за испорака', + 'delivery_note': 'Delivery Note', 'sent_invoices_are_locked': 'Sent invoices are locked', 'paid_invoices_are_locked': 'Paid invoices are locked', 'source_code': 'Source Code', 'app_platforms': 'App Platforms', 'invoice_late': 'Invoice Late', 'quote_expired': 'Quote Expired', - 'partial_due': 'Делумен долг', - 'invoice_total': 'Вкупно по фактура', - 'quote_total': 'Вкупно понуди', - 'credit_total': 'Вкупно кредит', + 'partial_due': 'Partial Due', + 'invoice_total': 'Totalbeløp', + 'quote_total': 'Tilbud totalt', + 'credit_total': 'Total kreditt', 'recurring_invoice_total': 'Invoice Total', 'actions': 'Actions', 'expense_number': 'Expense Number', 'task_number': 'Task Number', 'project_number': 'Project Number', 'project_name': 'Project Name', - 'warning': 'Предупредување', + 'warning': 'Advarsel', 'view_settings': 'View Settings', 'company_disabled_warning': 'Warning: this company has not yet been activated', @@ -38157,7 +38576,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'expired_quote': 'Expired Quote', 'remind_invoice': 'Remind Invoice', 'cvv': 'CVV', - 'client_name': 'Име на клиент', + 'client_name': 'Kundenavn', 'client_phone': 'Client Phone', 'required_fields': 'Required Fields', 'calculated_rate': 'Calculated Rate', @@ -38169,7 +38588,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'new_task_status': 'New Task Status', 'edit_task_status': 'Edit Task Status', 'created_task_status': 'Successfully created task status', - 'updated_task_status': 'Успешно ажуриран статус на задача', + 'updated_task_status': 'Successfully update task status', 'archived_task_status': 'Successfully archived task status', 'deleted_task_status': 'Successfully deleted task status', 'removed_task_status': 'Successfully removed task status', @@ -38190,17 +38609,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'configure_statuses': 'Configure Statuses', 'task_settings': 'Task Settings', 'configure_categories': 'Configure Categories', - 'expense_categories': 'Категории на трошоци', - 'new_expense_category': 'Категорија на нов трошок', + 'expense_categories': 'Utgiftskategorier', + 'new_expense_category': 'Ny Utgiftskategori', 'edit_expense_category': 'Edit Expense Category', - 'created_expense_category': 'Успешно креирана категорија на трошоци', - 'updated_expense_category': 'Успешно ажурирана категорија на трошоци', - 'archived_expense_category': 'Успешно архивирана категорија на трошоци', - 'deleted_expense_category': 'Успешно бришење на категорија', + 'created_expense_category': 'Utgiftskategori ble opprettet', + 'updated_expense_category': 'Oppdaterte utgiftskategori', + 'archived_expense_category': 'Utgiftskategori ble arkivert', + 'deleted_expense_category': 'Slettet kategori', 'removed_expense_category': 'Successfully removed expense category', - 'restored_expense_category': 'Успешно повратена категорија на трошоци', - 'archived_expense_categories': - 'Успешно архивирани :count категории на трошоци', + 'restored_expense_category': 'Utgiftskategori ble gjenopprettet', + 'archived_expense_categories': ':count utgiftskategorier ble arkivert', 'deleted_expense_categories': 'Successfully deleted expense :value categories', 'restored_expense_categories': @@ -38216,7 +38634,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'force_update_help': 'You are running the latest version but there may be pending fixes available.', 'mark_paid_help': 'Track the expense has been paid', - 'should_be_invoiced': 'Треба да биде фактурирано', + 'should_be_invoiced': 'Should be invoiced', 'should_be_invoiced_help': 'Enable the expense to be invoiced', 'add_documents_to_invoice_help': 'Make the documents visible', 'convert_currency_help': 'Set an exchange rate', @@ -38244,7 +38662,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'gateway_refund_help': 'Process the refund with the payment gateway', 'due_date_days': 'Due Date', 'paused': 'Paused', - 'mark_active': 'Обележи активно', + 'mark_active': 'Sett Aktiv', 'day_count': 'Day :count', 'first_day_of_the_month': 'First Day of the Month', 'last_day_of_the_month': 'Last Day of the Month', @@ -38252,17 +38670,17 @@ mixin LocalizationsProvider on LocaleCodeAware { 'endless': 'Endless', 'next_send_date': 'Next Send Date', 'remaining_cycles': 'Remaining Cycles', - 'recurring_invoice': 'Повторувачка фактура', - 'recurring_invoices': 'Фактури што се повторуваат', - 'new_recurring_invoice': 'Нова повторувачка фактура', - 'edit_recurring_invoice': 'Измени Повторувачка Фактура', + 'recurring_invoice': 'Gjentakende Faktura', + 'recurring_invoices': 'Gjentakende Fakturaer', + 'new_recurring_invoice': 'Ny Gjentakende Faktura', + 'edit_recurring_invoice': 'Edit Recurring Invoice', 'created_recurring_invoice': 'Successfully created recurring invoice', 'updated_recurring_invoice': 'Successfully updated recurring invoice', - 'archived_recurring_invoice': - 'Успешно архивирање на повторувачка фактура', - 'deleted_recurring_invoice': 'Успешно бришење на повторувачка фактура', + 'archived_recurring_invoice': 'Suksessfullt arkivert gjentakende faktura', + 'deleted_recurring_invoice': 'Suksessfullt slettet gjentakende faktura', 'removed_recurring_invoice': 'Successfully removed recurring invoice', - 'restored_recurring_invoice': 'Успешно повратена повторувачка фактура', + 'restored_recurring_invoice': + 'Suksessfullt gjenopprettet gjentakende faktura', 'archived_recurring_invoices': 'Successfully archived recurring :value invoices', 'deleted_recurring_invoices': @@ -38274,15 +38692,15 @@ mixin LocalizationsProvider on LocaleCodeAware { 'send_date': 'Send Date', 'auto_bill_on': 'Auto Bill On', 'minimum_under_payment_amount': 'Minimum Under Payment Amount', - 'profit': 'Профит', - 'line_item': 'Ставка на линија', + 'profit': 'Fortjeneste', + 'line_item': 'Line Item', 'allow_over_payment': 'Allow Over Payment', 'allow_over_payment_help': 'Support paying extra to accept tips', 'allow_under_payment': 'Allow Under Payment', 'allow_under_payment_help': 'Support paying at minimum the partial/deposit amount', 'test_mode': 'Test Mode', - 'opened': 'Отворено', + 'opened': 'Opened', 'payment_reconciliation_failure': 'Reconciliation Failure', 'payment_reconciliation_success': 'Reconciliation Success', 'gateway_success': 'Gateway Success', @@ -38293,47 +38711,47 @@ mixin LocalizationsProvider on LocaleCodeAware { 'failure': 'Failure', 'quota_exceeded': 'Quota Exceeded', 'upstream_failure': 'Upstream Failure', - 'system_logs': 'System Logs', - 'view_portal': 'Прегледај портал', - 'copy_link': 'Copy Link', - 'token_billing': 'Зачувај детали на картичка', - 'welcome_to_invoice_ninja': 'Welcome to Invoice Ninja', - 'always': 'Секогаш', + 'system_logs': 'System Logger', + 'view_portal': 'Vis Portal', + 'copy_link': 'Kopier Lenke', + 'token_billing': 'Lagre kortdetaljer', + 'welcome_to_invoice_ninja': 'Velkommen til Invoice Ninja', + 'always': 'Alltid', 'optin': 'Opt-In', 'optout': 'Opt-Out', - 'label': 'Назнака', - 'client_number': 'Број на клиент', + 'label': 'Label', + 'client_number': 'Kundenummer', 'auto_convert': 'Auto Convert', - 'company_name': 'Име на компанија', + 'company_name': 'Firmanavn', 'reminder1_sent': 'Reminder 1 Sent', 'reminder2_sent': 'Reminder 2 Sent', 'reminder3_sent': 'Reminder 3 Sent', 'reminder_last_sent': 'Reminder Last Sent', 'pdf_page_info': 'Page :current of :total', - 'emailed_invoices': 'Успешно пратени по е-пошта фактури', - 'emailed_quotes': 'Успешно пратени по е-пошта понуди', + 'emailed_invoices': 'E-postfakturaer sendt', + 'emailed_quotes': 'Tilbud sendt som e-post', 'emailed_credits': 'Successfully emailed credits', - 'gateway': 'Платен портал', + 'gateway': 'Gateway', 'view_in_stripe': 'View in Stripe', 'rows_per_page': 'Rows Per Page', - 'hours': 'Часови', - 'statement': 'Исказ', - 'taxes': 'Даноци', - 'surcharge': 'Доплата', + 'hours': 'timer', + 'statement': 'Erklæring', + 'taxes': 'Skatter', + 'surcharge': 'Tilleggsgebyr', 'apply_payment': 'Apply Payment', - 'apply_credit': 'Примени кредит', - 'apply': 'Примени', + 'apply_credit': 'Bruk Kredit', + 'apply': 'Bruk', 'unapplied': 'Unapplied', - 'select_label': 'Избери назнака', + 'select_label': 'Select Label', 'custom_labels': 'Custom Labels', 'record_type': 'Record Type', 'record_name': 'Record Name', 'file_type': 'File Type', 'height': 'Height', 'width': 'Width', - 'to': 'До', + 'to': 'Til', 'health_check': 'Health Check', - 'payment_type_id': 'Начин на плаќање', + 'payment_type_id': 'Betalingsmetode', 'last_login_at': 'Last Login At', 'company_key': 'Company Key', 'storefront': 'Storefront', @@ -38351,41 +38769,41 @@ mixin LocalizationsProvider on LocaleCodeAware { 'selected_quotes': 'Selected Quotes', 'selected_tasks': 'Selected Tasks', 'selected_expenses': 'Selected Expenses', - 'upcoming_invoices': 'Недоспеани Фактури', + 'upcoming_invoices': 'Forestående Fakturaer', 'past_due_invoices': 'Past Due Invoices', - 'recent_payments': 'Неодамнешни плаќања', - 'upcoming_quotes': 'Претстојни понуди', - 'expired_quotes': 'Истечени понуди', - 'create_client': 'Креирај клиент', - 'create_invoice': 'Креирај Фактура', - 'create_quote': 'Креирај понуда', + 'recent_payments': 'Nylige Betalinger', + 'upcoming_quotes': 'Oppkommende Tilbud', + 'expired_quotes': 'Utløpte Tilbud', + 'create_client': 'Create Client', + 'create_invoice': 'Opprett faktura', + 'create_quote': 'Lag tilbud', 'create_payment': 'Create Payment', - 'create_vendor': 'Креирај продавач', + 'create_vendor': 'Opprett leverandør', 'update_quote': 'Update Quote', - 'delete_quote': 'Избриши понуда', + 'delete_quote': 'Slett tilbud', 'update_invoice': 'Update Invoice', - 'delete_invoice': 'Избриши Фактура', + 'delete_invoice': 'Slett faktura', 'update_client': 'Update Client', - 'delete_client': 'Избриши Клиент', - 'delete_payment': 'Избриши Плаќање', + 'delete_client': 'Slett kunde', + 'delete_payment': 'Slett betaling', 'update_vendor': 'Update Vendor', - 'delete_vendor': 'Избриши продавач', + 'delete_vendor': 'Slett Leverandør', 'create_expense': 'Create Expense', 'update_expense': 'Update Expense', - 'delete_expense': 'Избриши трошок', - 'create_task': 'Креирај задача', + 'delete_expense': 'Delete Expense', + 'create_task': 'Opprett Oppgave', 'update_task': 'Update Task', - 'delete_task': 'Избриши задача', + 'delete_task': 'Slett Oppgave', 'approve_quote': 'Approve Quote', - 'off': 'Исклучено', + 'off': 'Av', 'when_paid': 'When Paid', 'expires_on': 'Expires On', - 'free': 'Бесплатно', - 'plan': 'План', + 'free': 'Gratis', + 'plan': 'Plan', 'show_sidebar': 'Show Sidebar', 'hide_sidebar': 'Hide Sidebar', 'event_type': 'Event Type', - 'target_url': 'Цел', + 'target_url': 'Target', 'copy': 'Copy', 'must_be_online': 'Please restart the app once connected to the internet', 'crons_not_enabled': 'The crons need to be enabled', @@ -38406,18 +38824,18 @@ mixin LocalizationsProvider on LocaleCodeAware { 'deleted_webhooks': 'Successfully deleted :value webhooks', 'removed_webhooks': 'Successfully removed :value webhooks', 'restored_webhooks': 'Successfully restored :value webhooks', - 'api_tokens': 'API токени', + 'api_tokens': 'API-tokens', 'api_docs': 'API Docs', 'search_tokens': 'Search :count Tokens', 'search_token': 'Search 1 Token', - 'token': 'Токен', - 'tokens': 'Токени', + 'token': 'Token', + 'tokens': 'Tokens', 'new_token': 'New Token', - 'edit_token': 'Измени токен', - 'created_token': 'Успешно креирање на токен', - 'updated_token': 'Успешно ажурирање на токен', - 'archived_token': 'Успешно архивирање на токен', - 'deleted_token': 'Успешно бришење на токен', + 'edit_token': 'Rediger Token', + 'created_token': 'Opprettet token', + 'updated_token': 'Oppdaterte token', + 'archived_token': 'Suksessfullt arkivert token', + 'deleted_token': 'Suksessfullt slettet token', 'removed_token': 'Successfully removed token', 'restored_token': 'Successfully restored token', 'archived_tokens': 'Successfully archived :value tokens', @@ -38427,27 +38845,27 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_registration_help': 'Enable clients to self register in the portal', 'customize_and_preview': 'Customize & Preview', - 'email_invoice': 'Прати Фактура по е-пошта', - 'email_quote': 'Прати понуда по ел. пошта', + 'email_invoice': 'E-postfaktura', + 'email_quote': 'Send tilbudet som E-post', 'email_credit': 'Email Credit', - 'email_payment': 'Прати плаќање по е-пошта', + 'email_payment': 'E-postbetaling', 'client_email_not_set': 'Client does not have an email address set', 'ledger': 'Ledger', 'view_pdf': 'View PDF', 'all_records': 'All records', 'owned_by_user': 'Owned by user', 'credit_remaining': 'Credit Remaining', - 'contact_name': 'Име на контакт', + 'contact_name': 'Kontakt navn', 'use_default': 'Use default', 'reminder_endless': 'Endless Reminders', 'number_of_days': 'Number of days', 'configure_payment_terms': 'Configure Payment Terms', 'payment_term': 'Payment Term', 'new_payment_term': 'New Payment Term', - 'edit_payment_term': 'Измени термин на плаќање', - 'created_payment_term': 'Успешно креирање на услов за плаќање', - 'updated_payment_term': 'Успешно ажурирање на услов на плаќање', - 'archived_payment_term': 'Успешно архивирање на услов за плаќање', + 'edit_payment_term': 'Edit Payment Term', + 'created_payment_term': 'Successfully created payment term', + 'updated_payment_term': 'Successfully updated payment term', + 'archived_payment_term': 'Successfully archived payment term', 'deleted_payment_term': 'Successfully deleted payment term', 'removed_payment_term': 'Successfully removed payment term', 'restored_payment_term': 'Successfully restored payment term', @@ -38461,12 +38879,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'send_from_gmail': 'Send from Gmail', 'reversed': 'Reversed', 'cancelled': 'Cancelled', - 'credit_amount': 'Износ на кредит', + 'credit_amount': 'Kreditbeløp', 'quote_amount': 'Quote Amount', 'hosted': 'Hosted', 'selfhosted': 'Self-Hosted', - 'exclusive': 'Ексклузивно', - 'inclusive': 'Инклузивно', + 'exclusive': 'Ekslusiv', + 'inclusive': 'Inklusiv', 'hide_menu': 'Hide Menu', 'show_menu': 'Show Menu', 'partially_refunded': 'Partially Refunded', @@ -38502,48 +38920,48 @@ mixin LocalizationsProvider on LocaleCodeAware { 'search_expense': 'Search 1 Expense', 'search_payment': 'Search 1 Payment', 'search_group': 'Search 1 Group', - 'refund_payment': 'Рефундирај плаќање', + 'refund_payment': 'Refunder betaling', 'cancelled_invoice': 'Successfully cancelled invoice', 'cancelled_invoices': 'Successfully cancelled invoices', 'reversed_invoice': 'Successfully reversed invoice', 'reversed_invoices': 'Successfully reversed invoices', 'reverse': 'Reverse', - 'full_name': 'Целосно име', - 'city_state_postal': 'Град/Држава/Поштенски број', - 'postal_city_state': 'Поштенски број/Град/Држава', - 'custom1': 'Прво прилагодено', - 'custom2': 'Второ прилагодено', + 'full_name': 'Fullt Navn', + 'city_state_postal': 'By/Fylke/Postnummer', + 'postal_city_state': 'Postnr./Sted/Fylke', + 'custom1': 'First Custom', + 'custom2': 'Second Custom', 'custom3': 'Third Custom', 'custom4': 'Fourth Custom', 'optional': 'Optional', 'license': 'License', - 'purge_data': 'Прочисти податоци', - 'purge_successful': 'Успешно прочистени податоци за компаанија', + 'purge_data': 'Fjern data', + 'purge_successful': 'Successfully purged company data', 'purge_data_message': - 'Предупредување: Ова трајно ќе ги избрише вашите податоци, нема враќање назад.', - 'invoice_balance': 'Состојба по Фактура', - 'age_group_0': '0 - 30 дена', - 'age_group_30': '30 - 60 дена', - 'age_group_60': '60 - 90 дена', - 'age_group_90': '90 - 120 дена', - 'age_group_120': '120+ дена', - 'refresh': 'Освежи', + 'Advarsel: Dette sletter alle dine data permanent, og kan ikke gjennopprettes.', + 'invoice_balance': 'Invoice Balance', + 'age_group_0': '0 - 30 Dager', + 'age_group_30': '30 - 60 Dager', + 'age_group_60': '60 - 90 Dager', + 'age_group_90': '90 - 120 Dager', + 'age_group_120': 'Mer enn 120 dager', + 'refresh': 'Refresh', 'saved_design': 'Successfully saved design', 'client_details': 'Client Details', 'company_address': 'Company Address', - 'invoice_details': 'Детали за фактура', + 'invoice_details': 'Fakturadetaljer', 'quote_details': 'Quote Details', 'credit_details': 'Credit Details', 'product_columns': 'Product Columns', 'task_columns': 'Task Columns', 'add_field': 'Add Field', 'all_events': 'All Events', - 'permissions': 'Дозволи', - 'none': 'Нема', + 'permissions': 'Permissions', + 'none': 'None', 'owned': 'Owned', 'payment_success': 'Payment Success', 'payment_failure': 'Payment Failure', - 'invoice_sent': ':count испратена фактура', + 'invoice_sent': ':count faktura sendt', 'quote_sent': 'Quote Sent', 'credit_sent': 'Credit Sent', 'invoice_viewed': 'Invoice Viewed', @@ -38552,19 +38970,19 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_approved': 'Quote Approved', 'receive_all_notifications': 'Receive All Notifications', 'purchase_license': 'Purchase License', - 'apply_license': 'Примени лиценца', - 'cancel_account': 'Избриши сметка', + 'apply_license': 'aktiver lisens', + 'cancel_account': 'Kanseler Konto', 'cancel_account_message': - 'Предупредување: Ова трајно ќе ја избрише вашата сметка, нема враќање.', - 'delete_company': 'Избриши компанија', + 'Advarsel: Dette vil permanent slette kontoen din, du kan ikke angre.', + 'delete_company': 'Slett Firma', 'delete_company_message': - 'Предупредување: Ова трајно ќе ја избрише вашата компанија, нема враќање назад.', + 'Advarsel: Dette vil permanent slette ditt firma, dette kan ikke gjennopprettes.', 'enabled_modules': 'Enabled Modules', 'converted_quote': 'Successfully converted quote', 'credit_design': 'Credit Design', 'includes': 'Includes', - 'header': 'Заглавје', - 'load_design': 'Вчитај дизајн', + 'header': 'Header', + 'load_design': 'Load Design', 'css_framework': 'CSS Framework', 'custom_designs': 'Custom Designs', 'designs': 'Designs', @@ -38579,38 +38997,38 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_designs': 'Successfully archived :value designs', 'deleted_designs': 'Successfully deleted :value designs', 'restored_designs': 'Successfully restored :value designs', - 'proposals': 'Предлози', + 'proposals': 'Forslag', 'tickets': 'Tickets', - 'recurring_quotes': 'Повторувачки понуди', - 'recurring_tasks': 'Повторувачки Задачи', - 'account_management': 'Менаџирање на сметка', - 'credit_date': 'Датум на кредит', - 'credit': 'Кредит', - 'credits': 'Кредити', - 'new_credit': 'Внеси Кредит', - 'edit_credit': 'Измени кредит', - 'created_credit': 'Успешно креирање на кредит', - 'updated_credit': 'Успешно ажурирање на кредит', - 'archived_credit': 'Успешно архивирање на кредит', - 'deleted_credit': 'Успешно бришење на кредит', + 'recurring_quotes': 'Recurring Quotes', + 'recurring_tasks': 'Recurring Tasks', + 'account_management': 'Kontoadministrasjon', + 'credit_date': 'Kreditdato', + 'credit': 'Kredit', + 'credits': 'Krediter', + 'new_credit': 'Oppgi Kredit', + 'edit_credit': 'Rediger Kredit', + 'created_credit': 'Kredit opprettet', + 'updated_credit': 'Kredit oppdatert', + 'archived_credit': 'Kredit arkivert', + 'deleted_credit': 'Kredit slettet', 'removed_credit': 'Successfully removed credit', - 'restored_credit': 'Успешно повратување на кредит', - 'archived_credits': 'Успешно архивирање на :count кредити', - 'deleted_credits': 'Успешно бришење на :count кредити', + 'restored_credit': 'Suksessfullt gjenopprettet kredit', + 'archived_credits': 'Arkiverte :count krediter', + 'deleted_credits': 'Slettet :count krediter', 'restored_credits': 'Successfully restored :value credits', - 'current_version': 'Сегашна верзија', + 'current_version': 'Nåværende versjon', 'latest_version': 'Latest Version', 'update_now': 'Update Now', 'a_new_version_is_available': 'A new version of the web app is available', 'update_available': 'Update Available', 'app_updated': 'Update successfully completed', - 'learn_more': 'Повеќе', + 'learn_more': 'Lær mer', 'integrations': 'Integrations', 'tracking_id': 'Tracking Id', 'slack_webhook_url': 'Slack Webhook URL', 'credit_footer': 'Credit Footer', 'credit_terms': 'Credit Terms', - 'new_company': 'Нова компанија', + 'new_company': 'Nytt Firma', 'added_company': 'Successfully added company', 'company1': 'Custom Company 1', 'company2': 'Custom Company 2', @@ -38660,69 +39078,69 @@ mixin LocalizationsProvider on LocaleCodeAware { 'group2': 'Custom Group 2', 'group3': 'Custom Group 3', 'group4': 'Custom Group 4', - 'reset': 'Ресетирај', + 'reset': 'Nullstill', 'number': 'Number', - 'export': 'Експортирај', - 'chart': 'Графикон', + 'export': 'Eksporter', + 'chart': 'Diagram', 'count': 'Count', - 'totals': 'Вкупно', - 'blank': 'Бланко', - 'day': 'Ден', - 'month': 'Месец', - 'year': 'Година', - 'subgroup': 'Подгрупа', + 'totals': 'Totaler', + 'blank': 'Tom', + 'day': 'Dag', + 'month': 'Måned', + 'year': 'År', + 'subgroup': 'Subgroup', 'is_active': 'Is Active', - 'group_by': 'Групирај по', - 'credit_balance': 'Состојба на кредит', + 'group_by': 'Grupper etter', + 'credit_balance': 'Kreditsaldo', 'contact_last_login': 'Contact Last Login', - 'contact_full_name': 'Contact Full Name', - 'contact_phone': 'Телефон за контакт', + 'contact_full_name': 'Fult navn', + 'contact_phone': 'Kontakt Telefon', 'contact_custom_value1': 'Contact Custom Value 1', 'contact_custom_value2': 'Contact Custom Value 2', 'contact_custom_value3': 'Contact Custom Value 3', 'contact_custom_value4': 'Contact Custom Value 4', - 'shipping_address1': 'Улица за достава', - 'shipping_address2': 'Апартман за достава', - 'shipping_city': 'Град за достава', - 'shipping_state': 'Држава/Провинција за достава', - 'shipping_postal_code': 'Поштенски број за достава', - 'shipping_country': 'Држава за достава', - 'billing_address1': 'Улица за наплата', - 'billing_address2': 'Апартман за наплата', - 'billing_city': 'Град за наплата', - 'billing_state': 'Држава/Провинција за наплата', - 'billing_postal_code': 'Поштенски број за наплата', - 'billing_country': 'Држава за наплата', - 'client_id': 'Идентификација на клиент', + 'shipping_address1': 'Leverings adresse', + 'shipping_address2': 'Shipping Apt/Suite', + 'shipping_city': 'Shipping City', + 'shipping_state': 'Shipping State/Province', + 'shipping_postal_code': 'Leverings adresse postnummer', + 'shipping_country': 'Shipping Country', + 'billing_address1': 'Fakturaadresse', + 'billing_address2': 'Billing Apt/Suite', + 'billing_city': 'Fakturering By', + 'billing_state': 'Billing State/Province', + 'billing_postal_code': 'Fakturering Postnummer', + 'billing_country': 'Fakturering Land', + 'client_id': 'Kunde-ID', 'assigned_to': 'Assigned to', - 'created_by': 'Креирано по :name', + 'created_by': 'Laget av :name', 'assigned_to_id': 'Assigned To Id', 'created_by_id': 'Created By Id', 'add_column': 'Add Column', 'edit_columns': 'Edit Columns', - 'columns': 'Колони', - 'aging': 'Застарено', - 'profit_and_loss': 'Профит и загуба', - 'reports': 'Извештаи', - 'report': 'Извештај', - 'add_company': 'Додај компанија', - 'unpaid_invoice': 'Неплатена фактура', - 'paid_invoice': 'Платена фактура', - 'unapproved_quote': 'Неодобрена понуда', - 'help': 'Помош', - 'refund': 'Рефундирај', + 'columns': 'Kolonner', + 'aging': 'Aging', + 'profit_and_loss': 'Fortjeneste og Tap', + 'reports': 'Rapporter', + 'report': 'Rapport', + 'add_company': 'Legg til Firma', + 'unpaid_invoice': 'Unpaid Invoice', + 'paid_invoice': 'Paid Invoice', + 'unapproved_quote': 'Unapproved Quote', + 'help': 'Hjelp', + 'refund': 'Refunder', 'refund_date': 'Refund Date', 'filtered_by': 'Filtered by', - 'contact_email': 'Е-пошта за контакт', + 'contact_email': 'Kontakt Epost', 'multiselect': 'Multiselect', - 'entity_state': 'Состојба', + 'entity_state': 'Tilstand', 'verify_password': 'Verify Password', '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.', - 'message': 'Порака', - 'from': 'Од', + 'message': 'Beskjed', + 'from': 'Fra', 'show_product_details': 'Show Product Details', 'show_product_details_help': 'Include the description and cost in the product dropdown', @@ -38730,15 +39148,15 @@ mixin LocalizationsProvider on LocaleCodeAware { 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', 'configure_settings': 'Configure Settings', - 'support_forum': 'Форум за поддршка', + 'support_forum': 'support forum', 'about': 'About', - 'documentation': 'Документација', - 'contact_us': 'Контактирајте не\'', - 'subtotal': 'Вкупно без данок', - 'line_total': 'Вкупно', - 'item': 'Ставка', + 'documentation': 'Dokumentasjon', + 'contact_us': 'Kontakt Oss', + 'subtotal': 'Totalbeløp', + 'line_total': 'Sum', + 'item': 'Produkt', 'credit_email': 'Credit Email', - 'iframe_url': 'Веб страна', + 'iframe_url': 'Nettside', 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': @@ -38747,8 +39165,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', 'deleted_logo': 'Successfully deleted logo', - 'yes': 'Да', - 'no': 'Не', + 'yes': 'Yes', + 'no': 'No', 'generate_number': 'Generate Number', 'when_saved': 'When Saved', 'when_sent': 'When Sent', @@ -38759,10 +39177,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'menu_sidebar': 'Menu Sidebar', 'history_sidebar': 'History Sidebar', 'tablet': 'Tablet', - 'mobile': 'Мобилен', - 'desktop': 'Десктоп', + 'mobile': 'Mobile', + 'desktop': 'Desktop', 'layout': 'Layout', - 'view': 'Преглед', + 'view': 'View', 'module': 'Module', 'first_custom': 'First Custom', 'second_custom': 'Second Custom', @@ -38786,221 +39204,218 @@ mixin LocalizationsProvider on LocaleCodeAware { 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', 'default_tax_rate': 'Default Tax Rate', - 'user': 'Корисник', + 'user': 'User', 'invoice_tax': 'Invoice Tax', 'line_item_tax': 'Line Item Tax', 'inclusive_taxes': 'Inclusive Taxes', 'invoice_tax_rates': 'Invoice Tax Rates', 'item_tax_rates': 'Item Tax Rates', - 'no_client_selected': 'Ве молиме изберете клиент', + 'no_client_selected': 'Vennligst velg en klient', 'configure_rates': 'Configure rates', 'configure_gateways': 'Configure Gateways', - 'tax_settings': 'Поставки за данок', + 'tax_settings': 'Skatteinnstillinger', 'tax_settings_rates': 'Tax Rates', 'accent_color': 'Accent Color', - 'switch': 'Префрли', + 'switch': 'Switch', 'comma_sparated_list': 'Comma separated list', - 'options': 'Опции', + 'options': 'Valg', 'single_line_text': 'Single-line text', 'multi_line_text': 'Multi-line text', 'dropdown': 'Dropdown', 'field_type': 'Field Type', 'recover_password_email_sent': 'A password recovery email has been sent', - 'submit': 'Поднеси', - 'recover_password': 'Поврати ја твојата лозинка', + 'submit': 'Send', + 'recover_password': 'Gjenopprett ditt passord', 'late_fees': 'Late Fees', - 'credit_number': 'Број на кредит', + 'credit_number': 'Kreditnummer', 'payment_number': 'Payment Number', - 'late_fee_amount': 'Износ на провизија за задоцнување', - 'late_fee_percent': 'Процент на провизија за задоцнување', - 'schedule': 'Распоред', + 'late_fee_amount': 'Late Fee Amount', + 'late_fee_percent': 'Late Fee Percent', + 'schedule': 'Planlegg', 'before_due_date': 'Before the due date', 'after_due_date': 'After the due date', 'after_invoice_date': 'After the invoice date', - 'days': 'Денови', - 'invoice_email': 'Мејл за фактура', - 'payment_email': 'Мејл за плаќање', + 'days': 'Dager', + 'invoice_email': 'Faktura-e-post', + 'payment_email': 'Betalings-e-post', 'partial_payment': 'Partial Payment', 'payment_partial': 'Partial Payment', 'partial_payment_email': 'Partial Payment Email', - 'quote_email': 'Мејл за понуда', - 'endless_reminder': 'Бескраен потсетник', + 'quote_email': 'Tilbuds-e-post', + 'endless_reminder': 'Endless Reminder', 'filtered_by_user': 'Filtered by User', - 'administrator': 'Администратор', + 'administrator': 'Administrator', 'administrator_help': - 'Дозвола за корисникот да менаџира со корисниците, да ги менува поставките и да ги модифицира сите записи', - 'user_management': 'Управување со корисник', - 'users': 'Корисници', - 'new_user': 'Нов корисник', - 'edit_user': 'Измени корисник', + 'Allow user to manage users, change settings and modify all records', + 'user_management': 'Brukerhåndtering', + 'users': 'Brukere', + 'new_user': 'Ny Bruker', + 'edit_user': 'Endre bruker', 'created_user': 'Successfully created user', - 'updated_user': 'Успешно ажурирање на корисник', - 'archived_user': 'Успешно архивирање на корисник', - 'deleted_user': 'Успешно бришење на корисник', + 'updated_user': 'Bruker oppdatert', + 'archived_user': 'Suksessfullt arkivert bruker', + 'deleted_user': 'Bruker slettet', 'removed_user': 'Successfully removed user', - 'restored_user': 'Успешно повратување на корисник', + 'restored_user': 'Suksessfullt gjenopprettet bruker', 'archived_users': 'Successfully archived :value users', 'deleted_users': 'Successfully deleted :value users', 'removed_users': 'Successfully removed :value users', 'restored_users': 'Successfully restored :value users', - 'general_settings': 'Општи поставки', - 'invoice_options': 'Поставки за фактура', - 'hide_paid_to_date': 'Сокриј Платено до датум', + 'general_settings': 'Systeminnstillinger', + 'invoice_options': 'Faktura alternativer', + 'hide_paid_to_date': 'Skjul delbetalinger', 'hide_paid_to_date_help': - 'Прикажи \"Платено до датум\" на фактурите откако ќе биде примено плаќањето.', - 'invoice_embed_documents': 'Вметни документи', - 'invoice_embed_documents_help': - 'Вклучи ги прикачените слики во фактурата.', - 'all_pages_header': 'Прикажи заглавје на', - 'all_pages_footer': 'Прикажи футер на', - 'first_page': 'Прва страна', - 'all_pages': 'Сите страни', - 'last_page': 'Последна страна', + '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', + 'all_pages_footer': 'Show footer on', + 'first_page': 'Første side', + 'all_pages': 'Alle sider', + 'last_page': 'Siste side', 'primary_font': 'Primary Font', 'secondary_font': 'Secondary Font', - 'primary_color': 'Примарна боја', - 'secondary_color': 'Секундарна боја', - 'page_size': 'Големина на страна', - 'font_size': 'Големина на фонт', - 'quote_design': 'Дизајн на понуда', - 'invoice_fields': 'Полиња за фактура', - 'product_fields': 'Полиња на продукт', - 'invoice_terms': 'Услови по фактура', - 'invoice_footer': 'Футер на фактура', - 'quote_terms': 'Услови на понуда', - 'quote_footer': 'Футер на понуда', - 'auto_email_invoice': 'Автоматска е-пошта', + 'primary_color': 'Primærfarge', + 'secondary_color': 'Sekundær farge', + 'page_size': 'Page Size', + 'font_size': 'Skriftstørrelse', + 'quote_design': 'Quote Design', + 'invoice_fields': 'Faktura felt', + 'product_fields': 'Produktfelter', + 'invoice_terms': 'Vilkår for fakturaen', + 'invoice_footer': 'Faktura Bunntekst', + 'quote_terms': 'Tilbuds Vilkår', + 'quote_footer': 'Tilbud Bunntekst', + 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Автоматски испрати повторувачки фактури по е-пошта кога ќе бидат креирани.', - 'auto_archive_invoice': 'Автоматско архивирање', + 'Automatically email recurring invoices when they are created.', + 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Автоматски архивирај фактури кога ќе бидат платени.', - 'auto_archive_quote': 'Автоматско архивирање', + 'Automatically archive invoices when they are paid.', + 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Автоматски архивирај фактури кога ќе бидат конвертирани.', - 'auto_convert_quote': 'Автоматско конвертирање', + 'Automatically archive quotes when they are converted.', + 'auto_convert_quote': 'Auto Konverter', 'auto_convert_quote_help': - 'Автоматски конвертирај понуда во фактура кога истата ќе биде одобрена од клиентот.', - 'workflow_settings': 'Подесувања на текот на работа', - 'freq_daily': 'Дневно', - 'freq_weekly': 'Неделно', - 'freq_two_weeks': 'Две недели', - 'freq_four_weeks': 'Четири недели', - 'freq_monthly': 'Месечно', - 'freq_two_months': 'Два месеци', - 'freq_three_months': 'Три месеци', - 'freq_four_months': 'Четири месеци', - 'freq_six_months': 'Шест месеци', - 'freq_annually': 'Годишно', - 'freq_two_years': 'Две години', + 'Automatically convert a quote to an invoice when approved by a client.', + 'workflow_settings': 'Workflow Settings', + 'freq_daily': 'Daglig', + 'freq_weekly': 'Ukentlig', + 'freq_two_weeks': 'To uker', + 'freq_four_weeks': 'Fire uker', + 'freq_monthly': 'Månedlig', + 'freq_two_months': 'To måneder', + 'freq_three_months': 'Tre måneder', + 'freq_four_months': 'Fire måneder', + 'freq_six_months': 'Seks måneder', + 'freq_annually': 'Årlig', + 'freq_two_years': 'To år', 'freq_three_years': 'Three Years', - 'never': 'Никогаш', - 'company': 'Компанија', - 'generated_numbers': 'Генерирани броеви', - 'charge_taxes': 'Наплати даноци', - 'next_reset': 'Следно ресетирање', - 'reset_counter': 'Ресетирај бројач', - 'recurring_prefix': 'Повторувачки префикс', + 'never': 'Never', + 'company': 'Company', + 'generated_numbers': 'Genererte Nummere', + 'charge_taxes': 'Inkluder skatt', + 'next_reset': 'Neste Nullstilling', + 'reset_counter': 'Nullstill Teller', + 'recurring_prefix': 'Recurring Prefix', 'number_padding': 'Number Padding', 'general': 'General', 'surcharge_field': 'Surcharge Field', - 'company_field': 'Поле за компанија', + 'company_field': 'Company Field', 'company_value': 'Company Value', 'credit_field': 'Credit Field', - 'invoice_field': 'Поле за фактура', - 'invoice_surcharge': 'Доплата за фактура', - 'client_field': 'Поле за клиент', - 'product_field': 'Поле за продукт', + 'invoice_field': 'Invoice Field', + 'invoice_surcharge': 'Invoice Surcharge', + 'client_field': 'Client Field', + 'product_field': 'Product Field', 'payment_field': 'Payment Field', - 'contact_field': 'Поле за контакт', - 'vendor_field': 'Поле за продавач', - 'expense_field': 'Поле за трошок', - 'project_field': 'Поле за проект', - 'task_field': 'Поле за задача', - 'group_field': 'Group Field', - 'number_counter': 'Number Counter', - 'prefix': 'Префикс', + 'contact_field': 'Contact Field', + 'vendor_field': 'Vendor Field', + 'expense_field': 'Expense Field', + 'project_field': 'Project Field', + 'task_field': 'Task Field', + 'group_field': 'Group Field', + 'number_counter': 'Number Counter', + 'prefix': 'Prefiks', 'number_pattern': 'Number Pattern', - 'messages': 'Пораки', - 'custom_css': 'Прилагоден CSS', + 'messages': 'Messages', + 'custom_css': 'Egendefinert CSS', 'custom_javascript': 'Custom JavaScript', - 'signature_on_pdf': 'Прикажи на PDF', + 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Прикажи го потписот на клиентот на PDF фактура/понуда.', - 'show_accept_invoice_terms': 'Поле за избор на услови за фактура', + 'Show the client signature on the invoice/quote PDF.', + 'show_accept_invoice_terms': 'Invoice Terms Checkbox', 'show_accept_invoice_terms_help': - 'Побарај од клиентот да потврди дека ги прифаќа условите на фактурата.', - 'show_accept_quote_terms': 'Поле за избор на услови за понуда', + 'Require client to confirm that they accept the invoice terms.', + 'show_accept_quote_terms': 'Quote Terms Checkbox', 'show_accept_quote_terms_help': - 'Побарај од клиентот да потврди дека ги прифаќа условите на понудата.', - 'require_invoice_signature': 'Потпис на фактура', - 'require_invoice_signature_help': - 'Побарај од клиентот да обезбеди потпис.', - 'require_quote_signature': 'Потпис на понуда', - 'enable_portal_password': 'Фактури заштитени со лозинка', + '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': - 'Ви дозволува поставување на лозинка за секој контакт. Ако поставите лозинка. контактот ќе мора да ја внесе лозинката пред да ги прегледа фактурите.', - 'authorization': 'Овластување', - 'subdomain': 'Поддомен', - 'domain': 'Домен', + '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.', + 'authorization': 'Autorisasjon', + 'subdomain': 'Subdomene', + 'domain': 'Domene', 'portal_mode': 'Portal Mode', - 'email_signature': 'Со почит,', + 'email_signature': 'Med vennlig hilsen,', 'enable_email_markup_help': - 'Направете го полесно плаќањето за вашите клиенти со додавање на schema.org обележје на вашите е-пошти', - 'plain': 'Обично', - 'light': 'Светло', - 'dark': 'Темно', - 'email_design': 'Дизајн на е-пошта', + 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', + 'plain': 'Plain', + 'light': 'Light', + 'dark': 'Dark', + 'email_design': 'Email Design', 'attach_pdf': 'Attach PDF', 'attach_documents': 'Attach Documents', 'attach_ubl': 'Attach UBL', 'email_style': 'Email Style', - 'enable_email_markup': 'Овозможи обележување', - 'reply_to_email': 'Одговори-на е-пошта', + 'enable_email_markup': 'Enable Markup', + 'reply_to_email': 'Svar til Epost', 'reply_to_name': 'Reply-To Name', - 'bcc_email': 'BCC е-пошта', + 'bcc_email': 'BCC E-post', 'processed': 'Processed', - 'credit_card': 'Кредитна картичка', - 'bank_transfer': 'Банкарски трансфер', + 'credit_card': 'Betalingskort', + 'bank_transfer': 'Bankoverføring', 'priority': 'Priority', 'fee_amount': 'Fee Amount', 'fee_percent': 'Fee Percent', 'fee_cap': 'Fee Cap', 'limits_and_fees': 'Limits/Fees', - 'enable_min': 'Овозможи мин.', - 'enable_max': 'Овозможи макс.', - 'min_limit': 'Мин: :min', - 'max_limit': 'Макс: :max', - 'min': 'Мин', - 'max': 'Макс', - 'accepted_card_logos': 'Прифатени логоа на картичка', + 'enable_min': 'Aktiver min', + 'enable_max': 'Aktiver maks', + 'min_limit': 'Min: :min', + 'max_limit': 'Maks: :max', + 'min': 'Min', + 'max': 'Maks', + 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', - 'update_address': 'Ажурирај адреса', - 'update_address_help': - 'Ажурирај ја адресата на клиентот со обезбедените детали', - 'rate': 'Стапка', - 'tax_rate': 'Даночна стапка', - 'new_tax_rate': 'Нова стапка на данок', - 'edit_tax_rate': 'Измени стапка на данок', - 'created_tax_rate': 'Успешно креирана стапка на данок', - 'updated_tax_rate': 'Успешно ажурирана стапка на данок', - 'archived_tax_rate': 'Успешно архивирана стапка на данок', + 'update_address': 'Oppdater Adresse', + 'update_address_help': 'Oppdater kundens adresse med oppgitte detaljer', + 'rate': 'Sats', + 'tax_rate': 'Skattesats', + 'new_tax_rate': 'Ny Skattesats', + 'edit_tax_rate': 'Rediger skattesats', + 'created_tax_rate': 'Suksessfullt opprettet skattesats', + 'updated_tax_rate': 'Suksessfullt oppdatert skattesats', + 'archived_tax_rate': 'Suksessfullt arkivert skattesatsen', 'deleted_tax_rate': 'Successfully deleted tax rate', 'restored_tax_rate': 'Successfully restored tax rate', 'archived_tax_rates': 'Successfully archived :value tax rates', 'deleted_tax_rates': 'Successfully deleted :value tax rates', 'restored_tax_rates': 'Successfully restored :value tax rates', - 'fill_products': 'Автоматско пополнување на продукти', + 'fill_products': 'Automatisk-utfyll produkter', 'fill_products_help': - 'Избирањето на продукт автоматски ќе ги исполни полињата за опис и цена', - 'update_products': 'Автоматско ажурирање на продукти', + 'Valg av produkt vil automatisk fylle ut beskrivelse og kostnaden', + 'update_products': 'Automatisk oppdater produkter', 'update_products_help': - 'Ажурирањето на факура автоматски ќе ја ажурира библиотеката на продукти ', - 'convert_products': 'Конвертирај продукти', + 'Å endre en faktura vil automatisk oppdatere produktbilioteket', + 'convert_products': 'Convert Products', 'convert_products_help': - 'Автоматски конвертирај ги цените на продуктите по валутите на клиентите', - 'fees': 'Надоместоци', - 'limits': 'Ограничувања', + 'Automatically convert product prices to the client\'s currency', + 'fees': 'Avgifter', + 'limits': 'Begrensninger', 'provider': 'Provider', 'company_gateway': 'Payment Gateway', 'company_gateways': 'Payment Gateways', @@ -39015,36 +39430,36 @@ mixin LocalizationsProvider on LocaleCodeAware { 'deleted_company_gateways': 'Successfully deleted :value gateways', 'restored_company_gateways': 'Successfully restored :value gateways', 'continue_editing': 'Continue Editing', - 'discard_changes': 'Отфрли промени', + 'discard_changes': 'Discard Changes', 'default_value': 'Default value', - 'disabled': 'Оневозможено', + 'disabled': 'Disabled', 'currency_format': 'Currency Format', 'first_day_of_the_week': 'First Day of the Week', 'first_month_of_the_year': 'First Month of the Year', - 'sunday': 'Недела', - 'monday': 'Понеделник', - 'tuesday': 'Вторник', - 'wednesday': 'Среда', - 'thursday': 'Четврток', - 'friday': 'Петок', - 'saturday': 'Сабота', - 'january': 'Јануари', - 'february': 'Февруари', - 'march': 'Март', - 'april': 'Април', - 'may': 'Мај', - 'june': 'Јуни', - 'july': 'Јули', - 'august': 'Август', - 'september': 'Септември', - 'october': 'Октомври', - 'november': 'Ноември', - 'december': 'Декември', - 'symbol': 'Симбол', + 'sunday': 'Søndag', + 'monday': 'Mandag', + 'tuesday': 'Tirsdag', + 'wednesday': 'Onsdag', + 'thursday': 'Torsdag', + 'friday': 'Fredag', + 'saturday': 'Lørdag', + 'january': 'Januar', + 'february': 'Februar', + 'march': 'Mars', + 'april': 'April', + 'may': 'Mai', + 'june': 'Juni', + 'july': 'Juli', + 'august': 'August', + 'september': 'September', + 'october': 'Oktober', + 'november': 'November', + 'december': 'Desember', + 'symbol': 'Symbol', 'ocde': 'Code', 'date_format': 'Date Format', 'datetime_format': 'Datetime Format', - 'military_time': 'Време од 24 часа', + 'military_time': '24 Timers Tid', 'military_time_help': '24 Hour Display', 'send_reminders': 'Send Reminders', 'timezone': 'Timezone', @@ -39054,7 +39469,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_client': 'Filtered by Client', 'filtered_by_vendor': 'Filtered by Vendor', 'group_settings': 'Group Settings', - 'group': 'Група', + 'group': 'Group', 'groups': 'Groups', 'new_group': 'New Group', 'edit_group': 'Edit Group', @@ -39068,28 +39483,28 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_group': 'Successfully restored group', 'upload_logo': 'Upload Logo', 'uploaded_logo': 'Successfully uploaded logo', - 'logo': 'Лого', + 'logo': 'Logo', 'saved_settings': 'Successfully saved settings', - 'product_settings': 'Поставки за продукт', + 'product_settings': 'Produkt-innstillinger', 'device_settings': 'Device Settings', - 'defaults': 'Стандарди', - 'basic_settings': 'Основни поставки', - 'advanced_settings': 'Напредни подесувања', - 'company_details': 'Податоци за компанијата', - 'user_details': 'Детали за корисникот', - 'localization': 'Локализација', - 'online_payments': 'Онлајн плаќања', - 'tax_rates': 'Даночни стапки', - 'notifications': 'Известувања', - 'import_export': 'Увоз | Извоз', - 'custom_fields': 'Прилагодливи полиња', - 'invoice_design': 'Дизајн на фактура', - 'buy_now_buttons': 'Купи сега копчиња', - 'email_settings': 'Поставки за е-пошта', - 'templates_and_reminders': 'Шаблони и потсетници', + 'defaults': 'Standarder', + 'basic_settings': 'Grunnleggende Innstillinger', + 'advanced_settings': 'Avanserte innstillinger', + 'company_details': 'Firmainformasjon', + 'user_details': 'Brukerdetaljer', + 'localization': 'Regioninnstillinger', + 'online_payments': 'Nettbetalinger', + 'tax_rates': 'Skattesatser', + 'notifications': 'Varsler', + 'import_export': 'Import | Eksport', + 'custom_fields': 'Egendefinerte felt', + 'invoice_design': 'Fakturadesign', + 'buy_now_buttons': 'Betal Nå-knapper', + 'email_settings': 'E-post-innstillinger', + 'templates_and_reminders': 'Design & Påminnelser', 'credit_cards_and_banks': 'Credit Cards & Banks', - 'data_visualizations': 'Визуализација на податоци', - 'price': 'Price', + 'data_visualizations': 'Datavisualiseringer', + 'price': 'Pris', 'email_sign_up': 'Email Sign Up', 'google_sign_up': 'Google Sign Up', 'thank_you_for_your_purchase': 'Thank you for your purchase!', @@ -39106,22 +39521,22 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_agree_to_terms_and_privacy': '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': 'Услови на користење', - 'privacy_policy': 'Полиса за приватност', - 'sign_up': 'Најавување', - 'account_login': 'Најавување на сметка', + 'terms_of_service': 'vilkår for bruk', + 'privacy_policy': 'Personvernregler', + 'sign_up': 'Registrer deg', + 'account_login': 'Kontoinnlogging', 'view_website': 'View Website', 'create_account': 'Create Account', 'email_login': 'Email Login', - 'create_new': 'Креирај сега', + 'create_new': 'Lag ny', 'no_record_selected': 'No record selected', 'error_unsaved_changes': 'Please save or cancel your changes', - 'download': 'Преземи', + 'download': 'Last ned', 'requires_an_enterprise_plan': 'Requires an enterprise plan', 'take_picture': 'Take Picture', 'upload_file': 'Upload File', - 'document': 'Документ', - 'documents': 'Документи', + 'document': 'Dokument', + 'documents': 'Dokumenter', 'new_document': 'New Document', 'edit_document': 'Edit Document', 'uploaded_document': 'Successfully uploaded document', @@ -39133,101 +39548,101 @@ mixin LocalizationsProvider on LocaleCodeAware { 'deleted_documents': 'Successfully deleted :value documents', 'restored_documents': 'Successfully restored :value documents', 'no_history': 'No History', - 'expense_date': 'Датум на трошок', - 'pending': 'Во тек', + 'expense_date': 'Utgiftsdato', + 'pending': 'Avventer', 'expense_status_1': 'Logged', 'expense_status_2': 'Pending', 'expense_status_3': 'Invoiced', - 'converted': 'Конвертирано', - 'add_documents_to_invoice': 'Додај документи на фактура', - 'exchange_rate': 'Девизен курс', - 'convert_currency': 'Конвертирај валута', - 'mark_paid': 'Обележи платено', - 'category': 'Категорија', - 'address': 'Адреса', - 'new_vendor': 'Нов продавач', - 'created_vendor': 'Успешно креирање на продавач', - 'updated_vendor': 'Успешно ажурирање на продавач', - 'archived_vendor': 'Успешно архивирање на продавач', - 'deleted_vendor': 'Успешно бришење на продавач', - 'restored_vendor': 'Успешно повраќање на продавач', - 'archived_vendors': 'Успешно архивирање на :count продавачи', - 'deleted_vendors': 'Успешно бришење на :count продавачи', + 'converted': 'Konvertert', + 'add_documents_to_invoice': 'Legg ved dokumenter til faktura', + 'exchange_rate': 'Exchange Rate', + 'convert_currency': 'Convert currency', + 'mark_paid': 'Merk som betalt', + 'category': 'Kategori', + 'address': 'Adresse', + 'new_vendor': 'Ny Leverandør', + 'created_vendor': 'Opprettet leverandør', + 'updated_vendor': 'Oppdaterte leverandør', + 'archived_vendor': 'Arkiverte leverandør', + 'deleted_vendor': 'Slettet leverandør', + 'restored_vendor': 'Successfully restored vendor', + 'archived_vendors': 'Arkiverte :count leverandører', + 'deleted_vendors': 'Slettet :count leverandører', 'restored_vendors': 'Successfully restored :value vendors', - 'new_expense': 'Внеси трошок', - 'created_expense': 'Успешно креирање на трошок', - 'updated_expense': 'Успешно ажурирање на трошок', - 'archived_expense': 'Успешно архивирање на трошок', - 'deleted_expense': 'Успешно бришење на трошок', - 'restored_expense': 'Успешно повраќање на трошок', - 'archived_expenses': 'Успешно архивирање на трошоци', - 'deleted_expenses': 'Успешно бришење на трошоци', + 'new_expense': 'Angi utgift', + 'created_expense': 'Successfully created expense', + 'updated_expense': 'Successfully updated expense', + 'archived_expense': 'Successfully archived expense', + 'deleted_expense': 'Successfully deleted expense', + 'restored_expense': 'Successfully restored expense', + 'archived_expenses': 'Arkiverte utgifter', + 'deleted_expenses': 'Slettet utgifter', 'restored_expenses': 'Successfully restored :value expenses', - 'copy_shipping': 'Копирај достава', - 'copy_billing': 'Копирај наплата', + 'copy_shipping': 'Copy Shipping', + 'copy_billing': 'Copy Billing', 'design': 'Design', 'failed_to_find_record': 'Failed to find record', - 'invoiced': 'Фактурирано', - 'logged': 'Најавено', - 'running': 'Во тек', - 'resume': 'Продолжи', - 'task_errors': 'Ве молиме корегирајте времињата што се преклопуваат', - 'start': 'Почеток', - 'stop': 'Сопри', - 'started_task': 'Успешно започната задача', - 'stopped_task': 'Успешно сопирање на задача', - 'resumed_task': 'Успешно повратување на задача', - 'now': 'Сега', + 'invoiced': 'Fakturert', + 'logged': 'Logget', + 'running': 'Løpende', + 'resume': 'Gjenoppta', + 'task_errors': 'Vennligst rett alle overlappende tider', + 'start': 'Start', + 'stop': 'Stopp', + 'started_task': 'Successfully started task', + 'stopped_task': 'Suksessfullt stoppet oppgave', + 'resumed_task': 'Successfully resumed task', + 'now': 'Nå', 'auto_start_tasks': 'Auto Start Tasks', - 'timer': 'Тајмер', - 'manual': 'Упатство', + 'timer': 'Tidtaker', + 'manual': 'Manuell', 'budgeted': 'Budgeted', - 'start_time': 'Време за почеток', - 'end_time': 'Измени време', - 'date': 'Датум', - 'times': 'Последователност', - 'duration': 'Времетраење', - 'new_task': 'Нова задача', - 'created_task': 'Успешно креирана задача', - 'updated_task': 'Успешно ажурирана задача', - 'archived_task': 'Успешно архивирање на задача', - 'deleted_task': 'Успешно бришење на задача', - 'restored_task': 'Успешно повратување на задача', - 'archived_tasks': 'Успешно архивирани :count задачи', - 'deleted_tasks': 'Успешно избришани :count задачи', + 'start_time': 'Starttid', + 'end_time': 'Sluttid', + 'date': 'Dato', + 'times': 'Tider', + 'duration': 'Varighet', + 'new_task': 'Ny Oppgave', + 'created_task': 'Suksessfullt opprettet oppgave', + 'updated_task': 'Suksessfullt oppdatert oppgave', + 'archived_task': 'Arkiverte oppgave', + 'deleted_task': 'Slettet oppgave', + 'restored_task': 'Gjenopprettet oppgave', + 'archived_tasks': 'Arkiverte :count oppgaver', + 'deleted_tasks': 'Slettet :count oppgaver', 'restored_tasks': 'Successfully restored :value tasks', 'please_enter_a_name': 'Please enter a name', - 'budgeted_hours': 'Буџетирани часови', - 'created_project': 'Успешно креирање на проект', - 'updated_project': 'Успешно ажурирање на проект', - 'archived_project': 'Успешно архивирање на проект', - 'deleted_project': 'Успешно бришење на проект', - 'restored_project': 'Успешно повратување на проект', - 'archived_projects': 'Успешно архивирани :count проекти', - 'deleted_projects': 'Успешно избришани :count проекти', + 'budgeted_hours': 'Budgeted Hours', + 'created_project': 'Opprettet prosjekt', + 'updated_project': 'Oppdaterte prosjekt', + 'archived_project': 'Arkiverte prosjekt', + 'deleted_project': 'Slettet prosjekt', + 'restored_project': 'Gjenopprettet prosjekt', + 'archived_projects': 'Arkiverte :count prosjekter', + 'deleted_projects': 'Slettet :count prosjekter', 'restored_projects': 'Successfully restored :value projects', - 'new_project': 'Нов проект', + 'new_project': 'Nytt Prosjekt', 'thank_you_for_using_our_app': 'Thank you for using our app!', 'if_you_like_it': 'If you like it please', - 'click_here': 'кликни тука', + 'click_here': 'klikk her', 'click_here_capital': 'Click here', 'to_rate_it': 'to rate it.', 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': 'Please authenticate to change this setting', - 'locked': 'Locked', + 'locked': 'Låst', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', 'biometric_authentication': 'Biometric Authentication', - 'footer': 'Футер', + 'footer': 'Bunntekst', 'compare': 'Compare', 'hosted_login': 'Hosted Login', 'selfhost_login': 'Selfhost Login', 'google_sign_in': 'Sign in with Google', 'today': 'Today', - 'custom_range': 'Прилагоден опсег', - 'date_range': 'Опсег на датуми', + 'custom_range': 'Tilpass Utvalg', + 'date_range': 'Datoperiode', 'current': 'Current', 'previous': 'Previous', 'current_period': 'Current Period', @@ -39238,204 +39653,204 @@ mixin LocalizationsProvider on LocaleCodeAware { 'last7_days': 'Last 7 Days', 'last_week': 'Last Week', 'last30_days': 'Last 30 Days', - 'this_month': 'Овој месец', - 'last_month': 'Претходен месец', - 'this_year': 'Оваа година', - 'last_year': 'Претходната година', - 'custom': 'Прилагодено', + 'this_month': 'Denne måneden', + 'last_month': 'Siste måned', + 'this_year': 'Dette Året', + 'last_year': 'Siste år', + 'custom': 'Egendefiner', 'clone_to_invoice': 'Clone to Invoice', 'clone_to_quote': 'Clone to Quote', 'clone_to_credit': 'Clone to Credit', - 'view_invoice': 'Преглед на фактура', + 'view_invoice': 'Se faktura', 'convert': 'Convert', 'more': 'More', - 'edit_client': 'Измени клиент', - 'edit_product': 'Измени продукт', - 'edit_invoice': 'Измени Фактура', - 'edit_quote': 'Измени понуда', - 'edit_payment': 'Измени плаќање', - 'edit_task': 'Измени задача', - 'edit_expense': 'Измени трошок', - 'edit_vendor': 'Измени продавач', - 'edit_project': 'Измени проект', - 'edit_recurring_quote': 'Измени Повторувачка Понуда', - 'billing_address': 'Адреса на фактурирање', - 'shipping_address': 'Адреса за достава', - 'total_revenue': 'Вкупен приход', - 'average_invoice': 'Просечна Фактура', - 'outstanding': 'Ненаплатено', - 'invoices_sent': ':count испратени фактури', - 'active_clients': 'Активни Клиенти', - 'close': 'Затвори', - 'email': 'Е-пошта', - 'password': 'Лозинка', + 'edit_client': 'Rediger Kunde', + 'edit_product': 'Endre produkt', + 'edit_invoice': 'Rediger faktura', + 'edit_quote': 'Endre tilbud', + 'edit_payment': 'Rediger Betaling', + 'edit_task': 'Rediger Oppgave', + 'edit_expense': 'Edit Expense', + 'edit_vendor': 'Rediger Leverandør', + 'edit_project': 'Rediger Prosjekt', + 'edit_recurring_quote': 'Edit Recurring Quote', + 'billing_address': 'Fakturerings Adresse', + 'shipping_address': 'Leveringsadresse', + 'total_revenue': 'Sum omsetning', + 'average_invoice': 'Gjennomsnittlige fakturaer', + 'outstanding': 'Utestående', + 'invoices_sent': ':count fakturaer sendt', + 'active_clients': 'aktive kunder', + 'close': 'Lukk', + 'email': 'E-post', + 'password': 'Passord', 'url': 'URL', - 'secret': 'Тајно', - 'name': 'Име', - 'logout': 'Одјава', - 'login': 'Најава', - 'filter': 'Филтер', - 'sort': 'Подреди', - 'search': 'Пребарување', - 'active': 'Активен', - 'archived': 'Архивирано', - 'deleted': 'Избришано', - 'dashboard': 'Контролна табла', - 'archive': 'Архивирај', - 'delete': 'Избриши', - 'restore': 'Поврати', + 'secret': 'Secret', + 'name': 'Navn', + 'logout': 'Logg ut', + 'login': 'Logg inn', + 'filter': 'Filter', + 'sort': 'Sort', + 'search': 'Søk', + 'active': 'Aktiv', + 'archived': 'Arkivert', + 'deleted': 'Slettet', + 'dashboard': 'Skrivebord', + 'archive': 'Arkiv', + 'delete': 'Slett', + 'restore': 'Gjenopprette', 'refresh_complete': 'Refresh Complete', - 'please_enter_your_email': 'Ве молиме внесете ја вашата е-пошта', - 'please_enter_your_password': 'Ве молиме внесете ја вашата лозинка', - 'please_enter_your_url': 'Ве молиме внесете ја вашата URL', + 'please_enter_your_email': 'Please enter your email', + 'please_enter_your_password': 'Please enter your password', + 'please_enter_your_url': 'Please enter your URL', 'please_enter_a_product_key': 'Please enter a product key', - 'ascending': 'Растечки', - 'descending': 'Опаѓачки', - 'save': 'Зачувај', - 'an_error_occurred': 'Настана грешка', - 'paid_to_date': 'Платено до денес', - 'balance_due': 'Вкупно за плаќање', - 'balance': 'Состојба', + 'ascending': 'Stigende', + 'descending': 'Synkende', + 'save': 'Lagre', + 'an_error_occurred': 'An error occurred', + 'paid_to_date': 'Betalt til Dato', + 'balance_due': 'Gjenstående', + 'balance': 'Balanse', 'overview': 'Overview', - 'details': 'Детали', - 'phone': 'Телефон', - 'website': 'Веб Страна', - 'vat_number': 'ДДВ број', - 'id_number': 'Идентификациски број', - 'create': 'Креирај', + 'details': 'Detaljer', + 'phone': 'Telefon', + 'website': 'Nettside', + 'vat_number': 'MVA-nummer', + 'id_number': 'Id nummer', + 'create': 'Lag', 'copied_to_clipboard': 'Copied :value to the clipboard', - 'error': 'Грешка', + 'error': 'Error', 'could_not_launch': 'Could not launch', - 'contacts': 'Контакти', + 'contacts': 'Kontakter', 'additional': 'Additional', - 'first_name': 'Име', - 'last_name': 'Презиме', - 'add_contact': 'Додади контакт', - 'are_you_sure': 'Дали сте сигурни?', - 'cancel': 'Откажи', + 'first_name': 'Fornavn', + 'last_name': 'Etternavn', + 'add_contact': 'Legg til kontakt', + 'are_you_sure': 'Er du sikker?', + 'cancel': 'Avbryt', 'ok': 'Ok', - 'remove': 'Отстрани', + 'remove': 'Fjern', 'email_is_invalid': 'Email is invalid', - 'product': 'Продукт', - 'products': 'Продукти', - 'new_product': 'Нов продукт', - 'created_product': 'Успешно креирање на продукт', - 'updated_product': 'Успешно ажурирање на продукт', - 'archived_product': 'Успешно архивирање на продукт', - 'deleted_product': 'Успешно бришење на продукт', - 'restored_product': 'Успешно повратување на продукт', - 'archived_products': 'Успешно архивирање на :count продукти', - 'deleted_products': 'Успешно бришење на :count продукти', + 'product': 'Produkt', + 'products': 'Produkter', + 'new_product': 'Nytt Produkt', + 'created_product': 'Produkt lagret', + 'updated_product': 'Produkt oppdatert', + 'archived_product': 'Produkt arkivert', + 'deleted_product': 'Slettet produkt', + 'restored_product': 'Gjenopprettet produkt', + 'archived_products': 'Successfully archived :count products', + 'deleted_products': 'Slettet :count produkter', 'restored_products': 'Successfully restored :value products', - 'product_key': 'Продукт', - 'notes': 'Забелешки', - 'cost': 'Цена', - 'client': 'Клиент', - 'clients': 'Клиенти', - 'new_client': 'Нов Клиент', - 'created_client': 'Успешно креирање на клиент', - 'updated_client': 'Успешно ажурирање на клиент', - 'archived_client': 'Успешно архивирање на клиент', - 'archived_clients': 'Успешно архивирање на :count клиенти', - 'deleted_client': 'Успешно бришење на клиент', - 'deleted_clients': 'Успешно бришење на :count клиенти', - 'restored_client': 'Успешно повратување на клиент', - 'restored_clients': 'Successfully restored :value clients', - 'address1': 'Улица', - 'address2': 'Број', - 'city': 'Град', - 'state': 'Општина', - 'postal_code': 'Поштенски број', - 'country': 'Држава', - 'invoice': 'Фактура', - 'invoices': 'Фактури', - 'new_invoice': 'Нова Фактура', - 'created_invoice': 'Успешно креирана фактура', - 'updated_invoice': 'Успешно ажурирана фактура', - 'archived_invoice': 'Успешно архивирана фактура', - 'deleted_invoice': 'Успешно избришана Фактура', - 'restored_invoice': 'Успешно повратување на фактура', - 'archived_invoices': 'Успешно архивирани :count Фактури', - 'deleted_invoices': 'Успешно избришани :count фактури', + 'product_key': 'Produkt', + 'notes': 'Notater', + 'cost': 'Kostnad', + 'client': 'Kunde', + 'clients': 'Kunder', + 'new_client': 'Ny Kunde', + 'created_client': 'Opprettet kunde', + 'updated_client': 'Oppdaterte kunde', + 'archived_client': 'Arkiverte kunde', + 'archived_clients': 'Arkiverte :count kunder', + 'deleted_client': 'Slettet kunde', + 'deleted_clients': 'Slettet :count kunder', + 'restored_client': 'Gjenopprettet kunde', + 'restored_clients': 'Successfully restored :value clients', + 'address1': 'Gate', + 'address2': 'Husnummer', + 'city': 'By', + 'state': 'Fylke', + 'postal_code': 'Postnummer', + 'country': 'Country', + 'invoice': 'Faktura', + 'invoices': 'Fakturaer', + 'new_invoice': 'Ny faktura', + 'created_invoice': 'Faktura opprettet', + 'updated_invoice': 'Faktura oppdatert', + 'archived_invoice': 'Faktura arkivert', + 'deleted_invoice': 'Faktura slettet', + 'restored_invoice': 'Suksessfullt gjenopprettet faktura', + 'archived_invoices': 'Fakturaer arkivert', + 'deleted_invoices': 'Slettet :count fakturaer', 'restored_invoices': 'Successfully restored :value invoices', - 'emailed_invoice': 'Успешно пратена фактура по е-пошта', - 'emailed_payment': 'Успешно пратено плаќање по е-пошта', - 'amount': 'Количина', - 'invoice_number': 'Број на фактура', - 'invoice_date': 'Датаум на фактура', - 'discount': 'Попуст', - 'po_number': 'Број на нарачка', - 'terms': 'Услови', - 'public_notes': 'Јавни забелешки', - 'private_notes': 'Забелешки', - 'frequency': 'Фреквентност', - 'start_date': 'Почетен датум', - 'end_date': 'Краен датум', - 'quote_number': 'Број на понуда', - 'quote_date': 'Датум на понуда', - 'valid_until': 'Валидно до', + 'emailed_invoice': 'E-postfaktura sendt', + 'emailed_payment': 'Successfully emailed payment', + 'amount': 'Beløp', + 'invoice_number': 'Fakturanummer', + 'invoice_date': 'Faktureringsdato', + 'discount': 'Rabatter:', + 'po_number': 'Ordrenummer', + 'terms': 'Vilkår', + 'public_notes': 'Offentlig notater', + 'private_notes': 'Private notater', + 'frequency': 'Frekvens', + 'start_date': 'Startdato', + 'end_date': 'Sluttdato', + 'quote_number': 'Tilbudsnummer', + 'quote_date': 'Tilbudsdato', + 'valid_until': 'Gyldig til', 'items': 'Items', 'partial_deposit': 'Partial/Deposit', - 'description': 'Опис', - 'unit_cost': 'Цена на единица', - 'quantity': 'Количина', + 'description': 'Beskrivelse', + 'unit_cost': 'Stykkpris', + 'quantity': 'Antall', 'add_item': 'Add Item', - 'contact': 'Контакт', - 'work_phone': 'Телефон', + 'contact': 'Kontakt', + 'work_phone': 'Telefon (arbeid)', 'total_amount': 'Total Amount', 'pdf': 'PDF', - 'due_date': 'Датум на доспевање', - 'partial_due_date': 'Делумен датум на достасување', - 'status': 'Статус', + 'due_date': 'Forfallsdato', + 'partial_due_date': 'Partial Due Date', + 'status': 'Status', 'invoice_status_id': 'Invoice Status', 'quote_status': 'Quote Status', 'click_plus_to_add_item': 'Click + to add an item', 'click_plus_to_add_time': 'Click + to add time', 'count_selected': ':count selected', - 'total': 'Вкупно', - 'percent': 'Процент', - 'edit': 'Измени', + 'total': 'Totalt', + 'percent': 'Prosent', + 'edit': 'Endre', 'dismiss': 'Dismiss', 'please_select_a_date': 'Please select a date', 'please_select_a_client': 'Please select a client', 'please_select_an_invoice': 'Please select an invoice', - 'task_rate': 'Стапка на задача', - 'settings': 'Подесувања', + 'task_rate': 'Oppgavesats', + 'settings': 'Innstillinger', 'language': 'Language', - 'currency': 'Валута', - 'created_at': 'Датум на креирање', + 'currency': 'Currency', + 'created_at': 'Dato Opprettet', 'created_on': 'Created On', 'updated_at': 'Updated', - 'tax': 'Данок', + 'tax': 'Skatt', 'please_enter_an_invoice_number': 'Please enter an invoice number', 'please_enter_a_quote_number': 'Please enter a quote number', - 'past_due': 'Минато достасување', - 'draft': 'Нацрт', - 'sent': 'Испратено', + 'past_due': 'Forfalt', + 'draft': 'Kladd', + 'sent': 'Sendt', 'viewed': 'Viewed', 'approved': 'Approved', - 'partial': 'Делумно/Депозит', - 'paid': 'Платено', - 'mark_sent': 'Белегот е пратен', + 'partial': 'Delvis/Depositum', + 'paid': 'Betalt', + 'mark_sent': 'Merk som Sendt', 'marked_invoice_as_sent': 'Successfully marked invoice as sent', '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': 'Завршено', + 'done': 'Ferdig', 'please_enter_a_client_or_contact_name': 'Please enter a client or contact name', - 'dark_mode': 'Темен режим', + 'dark_mode': 'Mørk Modus', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', 'blank_contact': 'Blank Contact', - 'activity': 'Активност', + 'activity': 'Aktivitet', 'no_records_found': 'No records found', - 'clone': 'Клонирај', - 'loading': 'Вчитување', + 'clone': 'Kopier', + 'loading': 'Loading', 'industry': 'Industry', 'size': 'Size', - 'payment_terms': 'Услови на плаќање', - 'payment_date': 'Датум на плаќање', + 'payment_terms': 'Betalingsvilkår', + 'payment_date': 'Betalingsdato', 'payment_status': 'Payment Status', 'payment_status_1': 'Pending', 'payment_status_2': 'Voided', @@ -39446,111 +39861,111 @@ mixin LocalizationsProvider on LocaleCodeAware { 'payment_status_-1': 'Unapplied', 'payment_status_-2': 'Partially Unapplied', 'net': 'Net', - 'client_portal': 'Портал на клиент', + 'client_portal': 'Kundeportal', 'show_tasks': 'Show tasks', 'email_reminders': 'Email Reminders', - 'enabled': 'Овозможено', - 'recipients': 'Приматели', - 'initial_email': 'Почетна е-пошта', - 'first_reminder': 'Прв потсетник', - 'second_reminder': 'Втор потсетник', - 'third_reminder': 'Трет потсетник', + 'enabled': 'Aktivert', + 'recipients': 'Mottakere', + 'initial_email': 'Første E-post', + 'first_reminder': 'Første Påminnelse', + 'second_reminder': 'Andre Påminnelse', + 'third_reminder': 'Tredje Påminnelse', 'reminder1': 'First Reminder', 'reminder2': 'Second Reminder', 'reminder3': 'Third Reminder', - 'template': 'Шаблон', + 'template': 'Mal', 'send': 'Send', - 'subject': 'Предмет', - 'body': 'Конструкција', - 'send_email': 'Испрати емаил', - 'email_receipt': 'Прати потврда за плаќање на е-пошта до клиентот', + 'subject': 'Emne', + 'body': 'Body', + 'send_email': 'Send e-post', + 'email_receipt': 'Send betalingskvittering som e-post til kunden', 'auto_billing': 'Auto billing', 'button': 'Button', - 'preview': 'Преглед', - 'customize': 'Прилагоди', - 'history': 'Историја', - 'payment': 'Плаќање', - 'payments': 'Плаќања', + 'preview': 'Preview', + 'customize': 'Tilpass', + 'history': 'Historie', + 'payment': 'Betaling', + 'payments': 'Betalinger', 'refunded': 'Refunded', - 'payment_type': 'Тип на плаќање', - 'transaction_reference': 'Трансакциска референца', - 'enter_payment': 'Внеси уплата', - 'new_payment': 'Внеси Плаќање', - 'created_payment': 'Успешно креирано плаќање', - 'updated_payment': 'Успешно ажурирано плаќање', - 'archived_payment': 'Успешно архивирано плаќање', - 'deleted_payment': 'Успешно бришење на плаќање', - 'restored_payment': 'Успешно повратување на плаќање', - 'archived_payments': 'Успешно архивирани :count плаќања', - 'deleted_payments': 'Успешно бришење на :count плаќања', + 'payment_type': 'Betalingsmetode', + 'transaction_reference': 'Transaksjonsreferanse', + 'enter_payment': 'Oppgi betaling', + 'new_payment': 'Oppgi Betaling', + 'created_payment': 'Betaling opprettet', + 'updated_payment': 'Suksessfullt oppdatert betaling', + 'archived_payment': 'Betaling arkivert', + 'deleted_payment': 'Betaling slettet', + 'restored_payment': 'Suksessfullt gjenopprettet betaling', + 'archived_payments': 'Arkiverte :count betalinger', + 'deleted_payments': 'Slettet :count betalinger', 'restored_payments': 'Successfully restored :value payments', - 'quote': 'Понуда', - 'quotes': 'Понуди', - 'new_quote': 'Нова понуда', - 'created_quote': 'Успешно креирана понуда', - 'updated_quote': 'Успешно ажурирана понуда', - 'archived_quote': 'Успешно архивирана понуда', - 'deleted_quote': 'Успешно избришана понуда', - 'restored_quote': 'Успешно повратување на понуда', - 'archived_quotes': 'Успешно архивирани :count понуди', - 'deleted_quotes': 'Успешно избришани :count понуди', + 'quote': 'Pristilbud', + 'quotes': 'Pristilbud', + 'new_quote': 'Nytt tilbud', + 'created_quote': 'Tilbud opprettet', + 'updated_quote': 'Tilbud oppdatert', + 'archived_quote': 'Tilbud arkivert', + 'deleted_quote': 'Tilbud slettet', + 'restored_quote': 'Suksessfullt gjenopprettet tilbud', + 'archived_quotes': 'Arkiverte :count tilbud', + 'deleted_quotes': 'Slettet :count tilbud', 'restored_quotes': 'Successfully restored :value quotes', - 'expense': 'Трошок', - 'expenses': 'Трошоци', - 'vendor': 'Продавач', - 'vendors': 'Продавачи', - 'task': 'Задача', - 'tasks': 'Задачи', - 'project': 'Проект', - 'projects': 'Проекти', - 'activity_1': ':user го креираше клиентот :client', - 'activity_2': ':user го архивираше клиентот :client', - 'activity_3': ':user го избриша клиентот :client', - 'activity_4': ':user ја креираше фактурата :invoice', - 'activity_5': ':user ја ажурираше фактурата :invoice', + 'expense': 'Utgift', + 'expenses': 'Utgifter', + 'vendor': 'Leverandør', + 'vendors': 'Leverandører', + 'task': 'Oppgave', + 'tasks': 'Oppgaver', + 'project': 'Prosjekt', + 'projects': 'Prosjekter', + 'activity_1': ':user opprettet kunde :client', + 'activity_2': ':user arkiverte kunde :client', + 'activity_3': ':user slettet kunde :client', + 'activity_4': ':user opprettet faktura :invoice', + 'activity_5': ':user oppdaterte faktura :invoice', 'activity_6': ':user emailed invoice :invoice for :client to :contact', 'activity_7': ':contact viewed invoice :invoice for :client', - 'activity_8': ':user ја архивира фактурата :invoice', - 'activity_9': ':user ја избриша фактурата :invoice', + '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', - 'activity_11': ':user го ажурира плаќањето :payment', - 'activity_12': ':user го архивира плаќањето :payment', - 'activity_13': ':user го избриша плаќањето :payment', - 'activity_14': ':user внесе :credit кредит', - 'activity_15': ':user ажурира :credit кредит', - 'activity_16': ':user архивира :credit кредит', - 'activity_17': ':user избриша :credit кредит', - 'activity_18': ':user ја креира понудата :quote', - 'activity_19': ':user ја ажурира понудата :quote', + 'activity_11': ':user oppdaterte betaling :payment', + 'activity_12': ':user arkiverte betaling :payment', + 'activity_13': ':user slettet betaling :payment', + 'activity_14': ':user la inn :credit kredit', + 'activity_15': ':user oppdaterte :credit kredit', + 'activity_16': ':user arkiverte :credit kredit', + 'activity_17': ':user slettet :credit kredit', + 'activity_18': ':user opprettet tilbud :quote', + 'activity_19': ':user oppdaterte tilbud :quote', 'activity_20': ':user emailed quote :quote for :client to :contact', - 'activity_21': ':contact ја виде понудата :quote', - 'activity_22': ':user ја архивира понудата :quote', - 'activity_23': ':user ја избриша понудата :quote', - 'activity_24': ':user ја поврати понудата :quote', - 'activity_25': ':user ја поврати фактурата :invoice', - 'activity_26': ':user го поврати клиентот :client', - 'activity_27': ':user го поврати плаќањето :payment', - 'activity_28': ':user го поврати :credit кредитот', + 'activity_21': ':contact viste tilbud :quote', + 'activity_22': ':user arkiverte tilbud :quote', + 'activity_23': ':user slettet tilbud :quote', + 'activity_24': ':user gjenopprettet tilbud :quote', + 'activity_25': ':user gjenopprettet faktura :invoice', + 'activity_26': ':user gjenopprettet kunde :client', + 'activity_27': ':user gjenopprettet betaling :payment', + 'activity_28': ':user gjenopprettet :credit kredit', 'activity_29': ':contact approved quote :quote for :client', - 'activity_30': ':user го креира продавачот :vendor', - 'activity_31': ':user го архивира продавачот :vendor', - 'activity_32': ':user го избриша продавачот :vendor', - 'activity_33': ':user го поврати продавачот :vendor', - 'activity_34': ':user го креира трошокот :expense', - 'activity_35': ':user го архивира трошокот :expense', - 'activity_36': ':user го избриша трошокот :expense', - 'activity_37': ':user го поврати трошокот :expense', - 'activity_39': ':user го откажа :payment_amount плаќањето :payment', + 'activity_30': ':user opprettet leverandør :vendor', + 'activity_31': ':user arkiverte leverandør :vendor', + 'activity_32': ':user slettet leverandør :vendor', + 'activity_33': ':user gjenopprettet leverandør :vendor', + 'activity_34': ':user opprettet utgift :expense', + 'activity_35': ':user arkiverte utgift :expense', + 'activity_36': ':user slettet utgift :expense', + 'activity_37': ':user gjenopprettet utgift :expense', + 'activity_39': ':user cancelled a :payment_amount payment :payment', 'activity_40': - ':user го рефундира :adjustment на :payment_amount плаќање :payment', - 'activity_41': ':payment_amount плаќање (:payment) е неуспешно', - 'activity_42': ':user ја креира задачата :task', - 'activity_43': ':user ажурира задачата :task', - 'activity_44': ':user ја архивира задачата :task', - 'activity_45': ':user ја избриша задачата :task', - 'activity_46': ':user ја поврати задачата :task', - 'activity_47': ':user го ажурира трошокот :expense', + ':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', + 'activity_44': ':user arkiverte oppgave :task', + 'activity_45': ':user slettet oppgave :task', + 'activity_46': ':user gjenopprettet oppgave :task', + 'activity_47': ':user oppdaterte utgift :expense', 'activity_48': ':user updated ticket :ticket', 'activity_49': ':user closed ticket :ticket', 'activity_50': ':user merged ticket :ticket', @@ -39579,17 +39994,17 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_82': ':user archived subscription :subscription', 'activity_83': ':user deleted subscription :subscription', 'activity_84': ':user restored subscription :subscription', - 'one_time_password': 'Еднократна лозинка', - 'emailed_quote': 'Успешно пратена понуда по ел. пошта', + 'one_time_password': 'Engangs Passord', + 'emailed_quote': 'Tilbud sendt som e-post', 'emailed_credit': 'Successfully emailed credit', 'marked_quote_as_sent': 'Successfully marked quote as sent', 'marked_credit_as_sent': 'Successfully marked credit as sent', - 'expired': 'Истечено', - 'all': 'Сите', - 'select': 'Избери', + 'expired': 'Expired', + 'all': 'Alle', + 'select': 'Velg', 'long_press_multiselect': 'Long-press Multiselect', - 'custom_value1': 'Подесена вредност', - 'custom_value2': 'Подесена вредност', + 'custom_value1': 'Custom Value', + 'custom_value2': 'Custom Value', 'custom_value3': 'Custom Value 3', 'custom_value4': 'Custom Value 4', 'email_style_custom': 'Custom Email Style', @@ -39610,9 +40025,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'payment_number_pattern': 'Payment Number Pattern', 'payment_number_counter': 'Payment Number Counter', 'invoice_number_pattern': 'Invoice Number Pattern', - 'invoice_number_counter': 'Бројач на фактури', + 'invoice_number_counter': 'Fakturanummer-teller', 'quote_number_pattern': 'Quote Number Pattern', - 'quote_number_counter': 'Бројач на понуди', + 'quote_number_counter': 'Tilbudsnummer-teller', 'client_number_pattern': 'Credit Number Pattern', 'client_number_counter': 'Credit Number Counter', 'credit_number_pattern': 'Credit Number Pattern', @@ -39636,20 +40051,20 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_state': 'Client State', 'client_country': 'Client Country', 'client_is_active': 'Client is Active', - 'client_balance': 'Состојба на клиент', + 'client_balance': 'Client Balance', 'client_address1': 'Client Street', 'client_address2': 'Client Apt/Suite', 'vendor_address1': 'Vendor Street', 'vendor_address2': 'Vendor Apt/Suite', 'client_shipping_address1': 'Client Shipping Street', 'client_shipping_address2': 'Client Shipping Apt/Suite', - 'type': 'Тип', - 'invoice_amount': 'Износ на фактура', - 'invoice_due_date': 'Датум на достасување', + 'type': 'Type', + 'invoice_amount': 'Invoice Amount', + 'invoice_due_date': 'Forfallsdato', 'tax_rate1': 'Tax Rate 1', 'tax_rate2': 'Tax Rate 2', 'tax_rate3': 'Tax Rate 3', - 'auto_bill': 'Автоматска наплата', + 'auto_bill': 'Auto Fakturer', 'archived_at': 'Archived At', 'has_expenses': 'Has Expenses', 'custom_taxes1': 'Custom Taxes 1', @@ -39665,16 +40080,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'vendor_state': 'Vendor State', 'vendor_country': 'Vendor Country', 'is_approved': 'Is Approved', - 'tax_name': 'Име на данок', - 'tax_amount': 'Износ на данок', - 'tax_paid': 'Платен данок', - 'payment_amount': 'Износ на плаќање', - 'age': 'Возраст', + 'tax_name': 'Skattenavn', + 'tax_amount': 'Tax Amount', + 'tax_paid': 'Tax Paid', + 'payment_amount': 'Beløp', + 'age': 'Alder', 'is_running': 'Is Running', 'time_log': 'Time Log', - 'bank_id': 'Банка', + 'bank_id': 'Bank', 'expense_category_id': 'Expense Category ID', - 'expense_category': 'Категорија на трошок', + 'expense_category': 'Utgiftskategori', 'invoice_currency_id': 'Invoice Currency ID', 'tax_name1': 'Tax Name 1', 'tax_name2': 'Tax Name 2', @@ -39683,7 +40098,29 @@ mixin LocalizationsProvider on LocaleCodeAware { 'status_color_theme': 'Status Color Theme', 'load_color_theme': 'Load Color Theme', }, - 'nb_NO': { + 'fa': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'The fee for a :amount invoice would be :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Approve', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -39735,7 +40172,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'giropay': 'GiroPay', 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', - 'set_password': 'Sett Passord', + 'set_password': 'Set Password', 'recommend_desktop': 'We recommend using the desktop app for the best performance', 'recommend_mobile': @@ -39758,7 +40195,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'unauthorized_stripe_warning': 'Please authorize Stripe to accept online payments.', 'view_expense': 'View expense # :expense', - 'view_statement': 'Se Erklæring', + 'view_statement': 'View Statement', 'sepa': 'SEPA Direct Debit', 'ideal': 'iDEAL', 'przelewy24': 'Przelewy24', @@ -39781,12 +40218,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'bulk_email_invoice': 'Email Invoice', 'bulk_email_quote': 'Email Quote', 'bulk_email_credit': 'Email Credit', - 'from_name': 'Fra Navn', + 'from_name': 'From Name', 'clone_to_expense': 'Clone to expense', - 'recurring_expense': 'Gjentakende Utgift', - 'recurring_expenses': 'Gjentakende Utgifter', - 'new_recurring_expense': 'Opprett Gjentakende Utgift', - 'edit_recurring_expense': 'Rediger Gjentakende Utgift', + 'recurring_expense': 'Recurring Expense', + 'recurring_expenses': 'Recurring Expenses', + 'new_recurring_expense': 'New Recurring Expense', + 'edit_recurring_expense': 'Edit Recurring Expense', 'created_recurring_expense': 'Successfully created recurring expense', 'updated_recurring_expense': 'Successfully updated recurring expense', 'archived_recurring_expense': 'Successfully archived recurring expense', @@ -39814,7 +40251,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'expense_tax_help': 'Item tax rates are disabled', 'enable_markdown': 'Enable Markdown', 'enable_markdown_help': 'Convert markdown to HTML on the PDF', - 'user_guide': 'Brukerguide', + 'user_guide': 'User Guide', 'add_second_contact': 'Add Second Contact', 'previous_page': 'Previous Page', 'next_page': 'Next Page', @@ -39892,21 +40329,21 @@ mixin LocalizationsProvider on LocaleCodeAware { 'last_updated': 'Last Updated', 'invoice_item': 'Invoice Item', 'quote_item': 'Quote Item', - 'contact_first_name': 'Kontakts fornavn', - 'contact_last_name': 'Etternavn', + 'contact_first_name': 'Contact First Name', + 'contact_last_name': 'Contact Last Name', 'order': 'Order', - 'unassigned': 'Ikke tilordnet', - 'partial_value': 'Må være større enn null og mindre enn totalen', + 'unassigned': 'Unassigned', + 'partial_value': 'Must be greater than zero and less than the total', 'search_kanban': 'Search Kanban', 'search_kanbans': 'Search Kanban', 'kanban': 'Kanban', - 'enable': 'Aktiver', + 'enable': 'فعال', 'move_top': 'Move Top', 'move_up': 'Move Up', 'move_down': 'Move Down', 'move_bottom': 'Move Bottom', 'subdomain_help': - 'Sett subdomenet eller vis fakturaen på ditt eget nettsted.', + 'Set the subdomain or display the invoice on your own website.', 'body_variable_missing': 'Error: the custom email must include a :body variable', 'add_body_variable_message': 'Make sure to include a :body variable', @@ -39944,7 +40381,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'refund_period': 'Refund Period', 'webhook_configuration': 'Webhook Configuration', 'purchase_page': 'Purchase Page', - 'security': 'Sikkerhet', + 'security': 'Security', 'email_bounced': 'Email Bounced', 'email_spam_complaint': 'Spam Complaint', 'email_delivery': 'Email Delivery', @@ -39954,19 +40391,19 @@ mixin LocalizationsProvider on LocaleCodeAware { 'pdf_failed': 'PDF Failed', 'pdf_success': 'PDF Success', 'modified': 'Modified', - 'subscription': 'Abonnement', - 'subscriptions': 'Abonnementer', - 'new_subscription': 'Nytt Abonnement ', - 'edit_subscription': 'Rediger Abonnement', - 'created_subscription': 'Abonnement opprettet', - 'updated_subscription': 'Oppdaterte abonnement', - 'archived_subscription': 'Abonnement arkivert', - 'deleted_subscription': 'Abonnement Slettet', + 'subscription': 'Subscription', + 'subscriptions': 'Subscriptions', + 'new_subscription': 'New Subscription', + 'edit_subscription': 'Edit Subscription', + 'created_subscription': 'Successfully created subscription', + 'updated_subscription': 'Successfully updated subscription', + 'archived_subscription': 'Successfully archived subscription', + 'deleted_subscription': 'Successfully deleted subscription', 'removed_subscription': 'Successfully removed subscription', 'restored_subscription': 'Successfully restored subscription', 'search_subscription': 'Search 1 Subscription', 'search_subscriptions': 'Search :count Subscriptions', - 'subdomain_is_not_available': 'Underdomene ikke tilgjengelig', + 'subdomain_is_not_available': 'Subdomain is not available', 'connect_gmail': 'Connect Gmail', 'disconnect_gmail': 'Disconnect Gmail', 'connected_gmail': 'Successfully connected Gmail', @@ -39987,7 +40424,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Warning: Changing your phone number will disable 2FA', 'help_translate': 'Help Translate', 'please_select_a_country': 'Please select a country', - 'resend_invite': 'Send invitasjon på nytt', + 'resend_invite': 'Resend Invitation', 'disabled_two_factor': 'Successfully disabled 2FA', 'connected_google': 'Successfully connected account', 'disconnected_google': 'Successfully disconnected account', @@ -40000,10 +40437,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'send_sms': 'Send SMS', 'sms_code': 'SMS Code', 'two_factor_setup_help': 'Scan the bar code with a :link compatible app.', - 'enabled_two_factor': 'Aktiverte To-faktor-autentisering', + 'enabled_two_factor': 'Successfully enabled Two-Factor Authentication', 'connect_google': 'Connect Google', 'disconnect_google': 'Disconnect Google', - 'enable_two_factor': 'To-faktor-autentisering', + 'enable_two_factor': 'Two-Factor Authentication', 'disable_two_factor': 'Disable Two Factor', 'require_password_with_social_login': 'Require Password with Social Login', @@ -40015,8 +40452,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'web_session_timeout': 'Web Session Timeout', 'security_settings': 'Security Settings', 'resend_email': 'Resend Email', - 'confirm_your_email_address': 'Venligst bekreft din epost adresse', - 'refunded_payment': 'Refundert betaling', + 'confirm_your_email_address': 'Please confirm your email address', + 'refunded_payment': 'Refunded Payment', 'partially_unapplied': 'Partially Unapplied', 'select_a_gmail_user': 'Please select a user authenticated with Gmail', 'list_long_press': 'List Long Press', @@ -40028,11 +40465,11 @@ mixin LocalizationsProvider on LocaleCodeAware { 'To use :client_counter please add either :client_number or :client_id_number to prevent conflicts', 'this_quarter': 'This Quarter', 'last_quarter': 'Last Quarter', - 'to_update_run': 'For og oppdatere kjør', - 'convert_to_invoice': 'Konverter til en faktura', + 'to_update_run': 'To update run', + 'convert_to_invoice': 'Convert to Invoice', 'registration_url': 'Registration URL', 'invoice_project': 'Invoice Project', - 'invoice_task': 'Fakturer Oppgave', + 'invoice_task': 'Invoice Task', 'invoice_expense': 'Invoice Expense', 'search_payment_term': 'Search 1 Payment Term', 'search_payment_terms': 'Search :count Payment Terms', @@ -40045,7 +40482,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'converted_credit_balance': 'Converted Credit Balance', 'converted_total': 'Converted Total', 'is_sent': 'Is Sent', - 'default_documents': 'Standard-dokumenter', + 'default_documents': 'Default Documents', 'document_upload': 'Document Upload', 'document_upload_help': 'Enable clients to upload documents', 'expense_total': 'Expense Total', @@ -40057,11 +40494,11 @@ mixin LocalizationsProvider on LocaleCodeAware { 'after_taxes': 'After Taxes', 'color': 'Color', 'show': 'Show', - 'hide': 'Skjul', + 'hide': 'Hide', 'empty_columns': 'Empty Columns', 'debug_mode_is_enabled': 'Debug mode is enabled', 'debug_mode_is_enabled_help': - 'Advarsel: en ment for bruk på lokal installasjon, passord er ikke sikkert. Klikk her for og vite mer.', + 'Warning: it is intended for use on local machines, it can leak credentials. Click to learn more.', 'running_tasks': 'Running Tasks', 'recent_tasks': 'Recent Tasks', 'recent_expenses': 'Recent Expenses', @@ -40071,14 +40508,14 @@ mixin LocalizationsProvider on LocaleCodeAware { 'duplicate_column_mapping': 'Duplicate column mapping', 'uses_inclusive_taxes': 'Uses Inclusive Taxes', 'is_amount_discount': 'Is Amount Discount', - 'column': 'Kolonne', - 'sample': 'Eksempel', + 'column': 'Column', + 'sample': 'Sample', 'map_to': 'Map To', - 'import': 'Importer', + 'import': 'Import', 'first_row_as_column_names': 'Use first row as column names', - 'select_file': 'Vennligst velg en fil', + 'select_file': 'Please select a file', 'no_file_selected': 'No File Selected', - 'csv_file': 'Velg CSV-fil', + 'csv_file': 'CSV file', 'csv': 'CSV', 'freshbooks': 'FreshBooks', 'invoice2go': 'Invoice2go', @@ -40091,7 +40528,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'html_mode': 'HTML Mode', 'html_mode_help': 'Preview updates faster but is less accurate', 'view_licenses': 'View Licenses', - 'webhook_url': 'Webhook-URL', + 'webhook_url': 'Webhook URL', 'fullscreen_editor': 'Fullscreen Editor', 'sidebar_editor': 'Sidebar Editor', 'please_type_to_confirm': 'Please type \":value\" to confirm', @@ -40102,7 +40539,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'labels': 'Labels', 'add_custom': 'Add Custom', 'payment_tax': 'Payment Tax', - 'unpaid': 'Ubetalt', + 'unpaid': 'Unpaid', 'white_label': 'White Label', 'delivery_note': 'Delivery Note', 'sent_invoices_are_locked': 'Sent invoices are locked', @@ -40112,16 +40549,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'invoice_late': 'Invoice Late', 'quote_expired': 'Quote Expired', 'partial_due': 'Partial Due', - 'invoice_total': 'Totalbeløp', - 'quote_total': 'Tilbud totalt', - 'credit_total': 'Total kreditt', + 'invoice_total': 'Invoice Total', + 'quote_total': 'Quote Total', + 'credit_total': 'Credit Total', 'recurring_invoice_total': 'Invoice Total', 'actions': 'Actions', 'expense_number': 'Expense Number', 'task_number': 'Task Number', 'project_number': 'Project Number', 'project_name': 'Project Name', - 'warning': 'Advarsel', + 'warning': 'Warning', 'view_settings': 'View Settings', 'company_disabled_warning': 'Warning: this company has not yet been activated', @@ -40129,7 +40566,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'expired_quote': 'Expired Quote', 'remind_invoice': 'Remind Invoice', 'cvv': 'CVV', - 'client_name': 'Kundenavn', + 'client_name': 'Client Name', 'client_phone': 'Client Phone', 'required_fields': 'Required Fields', 'calculated_rate': 'Calculated Rate', @@ -40162,16 +40599,17 @@ mixin LocalizationsProvider on LocaleCodeAware { 'configure_statuses': 'Configure Statuses', 'task_settings': 'Task Settings', 'configure_categories': 'Configure Categories', - 'expense_categories': 'Utgiftskategorier', - 'new_expense_category': 'Ny Utgiftskategori', + 'expense_categories': 'Expense Categories', + 'new_expense_category': 'New Expense Category', 'edit_expense_category': 'Edit Expense Category', - 'created_expense_category': 'Utgiftskategori ble opprettet', - 'updated_expense_category': 'Oppdaterte utgiftskategori', - 'archived_expense_category': 'Utgiftskategori ble arkivert', - 'deleted_expense_category': 'Slettet kategori', + 'created_expense_category': 'Successfully created expense category', + 'updated_expense_category': 'Successfully updated expense category', + 'archived_expense_category': 'Successfully archived expense category', + 'deleted_expense_category': 'Successfully deleted category', 'removed_expense_category': 'Successfully removed expense category', - 'restored_expense_category': 'Utgiftskategori ble gjenopprettet', - 'archived_expense_categories': ':count utgiftskategorier ble arkivert', + 'restored_expense_category': 'Successfully restored expense category', + 'archived_expense_categories': + 'Successfully archived :count expense category', 'deleted_expense_categories': 'Successfully deleted expense :value categories', 'restored_expense_categories': @@ -40215,7 +40653,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'gateway_refund_help': 'Process the refund with the payment gateway', 'due_date_days': 'Due Date', 'paused': 'Paused', - 'mark_active': 'Sett Aktiv', + 'mark_active': 'Mark Active', 'day_count': 'Day :count', 'first_day_of_the_month': 'First Day of the Month', 'last_day_of_the_month': 'Last Day of the Month', @@ -40223,17 +40661,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'endless': 'Endless', 'next_send_date': 'Next Send Date', 'remaining_cycles': 'Remaining Cycles', - 'recurring_invoice': 'Gjentakende Faktura', - 'recurring_invoices': 'Gjentakende Fakturaer', - 'new_recurring_invoice': 'Ny Gjentakende Faktura', + 'recurring_invoice': 'Recurring Invoice', + 'recurring_invoices': 'Recurring Invoices', + 'new_recurring_invoice': 'New Recurring Invoice', 'edit_recurring_invoice': 'Edit Recurring Invoice', 'created_recurring_invoice': 'Successfully created recurring invoice', 'updated_recurring_invoice': 'Successfully updated recurring invoice', - 'archived_recurring_invoice': 'Suksessfullt arkivert gjentakende faktura', - 'deleted_recurring_invoice': 'Suksessfullt slettet gjentakende faktura', + 'archived_recurring_invoice': 'Successfully archived recurring invoice', + 'deleted_recurring_invoice': 'Successfully deleted recurring invoice', 'removed_recurring_invoice': 'Successfully removed recurring invoice', - 'restored_recurring_invoice': - 'Suksessfullt gjenopprettet gjentakende faktura', + 'restored_recurring_invoice': 'Successfully restored recurring invoice', 'archived_recurring_invoices': 'Successfully archived recurring :value invoices', 'deleted_recurring_invoices': @@ -40245,7 +40682,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'send_date': 'Send Date', 'auto_bill_on': 'Auto Bill On', 'minimum_under_payment_amount': 'Minimum Under Payment Amount', - 'profit': 'Fortjeneste', + 'profit': 'Profit', 'line_item': 'Line Item', 'allow_over_payment': 'Allow Over Payment', 'allow_over_payment_help': 'Support paying extra to accept tips', @@ -40264,36 +40701,36 @@ mixin LocalizationsProvider on LocaleCodeAware { 'failure': 'Failure', 'quota_exceeded': 'Quota Exceeded', 'upstream_failure': 'Upstream Failure', - 'system_logs': 'System Logger', - 'view_portal': 'Vis Portal', - 'copy_link': 'Kopier Lenke', - 'token_billing': 'Lagre kortdetaljer', - 'welcome_to_invoice_ninja': 'Velkommen til Invoice Ninja', - 'always': 'Alltid', - 'optin': 'Opt-In', - 'optout': 'Opt-Out', - 'label': 'Label', - 'client_number': 'Kundenummer', + 'system_logs': 'System Logs', + 'view_portal': 'View Portal', + 'copy_link': 'Copy Link', + 'token_billing': 'Save card details', + 'welcome_to_invoice_ninja': 'Welcome to Invoice Ninja', + 'always': 'Always', + 'optin': 'Opt-In', + 'optout': 'Opt-Out', + 'label': 'Label', + 'client_number': 'Client Number', 'auto_convert': 'Auto Convert', - 'company_name': 'Firmanavn', + 'company_name': 'Company Name', 'reminder1_sent': 'Reminder 1 Sent', 'reminder2_sent': 'Reminder 2 Sent', 'reminder3_sent': 'Reminder 3 Sent', 'reminder_last_sent': 'Reminder Last Sent', 'pdf_page_info': 'Page :current of :total', - 'emailed_invoices': 'E-postfakturaer sendt', - 'emailed_quotes': 'Tilbud sendt som e-post', + 'emailed_invoices': 'Successfully emailed invoices', + 'emailed_quotes': 'Successfully emailed quotes', 'emailed_credits': 'Successfully emailed credits', 'gateway': 'Gateway', 'view_in_stripe': 'View in Stripe', 'rows_per_page': 'Rows Per Page', - 'hours': 'timer', - 'statement': 'Erklæring', - 'taxes': 'Skatter', - 'surcharge': 'Tilleggsgebyr', + 'hours': 'Hours', + 'statement': 'Statement', + 'taxes': 'مالیات', + 'surcharge': 'Surcharge', 'apply_payment': 'Apply Payment', - 'apply_credit': 'Bruk Kredit', - 'apply': 'Bruk', + 'apply_credit': 'Apply Credit', + 'apply': 'Apply', 'unapplied': 'Unapplied', 'select_label': 'Select Label', 'custom_labels': 'Custom Labels', @@ -40302,9 +40739,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'file_type': 'File Type', 'height': 'Height', 'width': 'Width', - 'to': 'Til', + 'to': 'To', 'health_check': 'Health Check', - 'payment_type_id': 'Betalingsmetode', + 'payment_type_id': 'Payment Type', 'last_login_at': 'Last Login At', 'company_key': 'Company Key', 'storefront': 'Storefront', @@ -40322,36 +40759,36 @@ mixin LocalizationsProvider on LocaleCodeAware { 'selected_quotes': 'Selected Quotes', 'selected_tasks': 'Selected Tasks', 'selected_expenses': 'Selected Expenses', - 'upcoming_invoices': 'Forestående Fakturaer', + 'upcoming_invoices': 'Upcoming Invoices', 'past_due_invoices': 'Past Due Invoices', - 'recent_payments': 'Nylige Betalinger', - 'upcoming_quotes': 'Oppkommende Tilbud', - 'expired_quotes': 'Utløpte Tilbud', + 'recent_payments': 'Recent Payments', + 'upcoming_quotes': 'Upcoming Quotes', + 'expired_quotes': 'Expired Quotes', 'create_client': 'Create Client', - 'create_invoice': 'Opprett faktura', - 'create_quote': 'Lag tilbud', + 'create_invoice': 'Create Invoice', + 'create_quote': 'Create Quote', 'create_payment': 'Create Payment', - 'create_vendor': 'Opprett leverandør', + 'create_vendor': 'Create vendor', 'update_quote': 'Update Quote', - 'delete_quote': 'Slett tilbud', + 'delete_quote': 'Delete Quote', 'update_invoice': 'Update Invoice', - 'delete_invoice': 'Slett faktura', + 'delete_invoice': 'حذف فاکتور', 'update_client': 'Update Client', - 'delete_client': 'Slett kunde', - 'delete_payment': 'Slett betaling', + 'delete_client': 'Delete Client', + 'delete_payment': 'Delete Payment', 'update_vendor': 'Update Vendor', - 'delete_vendor': 'Slett Leverandør', + 'delete_vendor': 'Delete Vendor', 'create_expense': 'Create Expense', 'update_expense': 'Update Expense', 'delete_expense': 'Delete Expense', - 'create_task': 'Opprett Oppgave', + 'create_task': 'Create Task', 'update_task': 'Update Task', - 'delete_task': 'Slett Oppgave', + 'delete_task': 'Delete Task', 'approve_quote': 'Approve Quote', - 'off': 'Av', + 'off': 'Off', 'when_paid': 'When Paid', 'expires_on': 'Expires On', - 'free': 'Gratis', + 'free': 'Free', 'plan': 'Plan', 'show_sidebar': 'Show Sidebar', 'hide_sidebar': 'Hide Sidebar', @@ -40377,18 +40814,18 @@ mixin LocalizationsProvider on LocaleCodeAware { 'deleted_webhooks': 'Successfully deleted :value webhooks', 'removed_webhooks': 'Successfully removed :value webhooks', 'restored_webhooks': 'Successfully restored :value webhooks', - 'api_tokens': 'API-tokens', + 'api_tokens': 'API Tokens', 'api_docs': 'API Docs', 'search_tokens': 'Search :count Tokens', 'search_token': 'Search 1 Token', 'token': 'Token', 'tokens': 'Tokens', 'new_token': 'New Token', - 'edit_token': 'Rediger Token', - 'created_token': 'Opprettet token', - 'updated_token': 'Oppdaterte token', - 'archived_token': 'Suksessfullt arkivert token', - 'deleted_token': 'Suksessfullt slettet token', + 'edit_token': 'Edit Token', + 'created_token': 'Successfully created token', + 'updated_token': 'Successfully updated token', + 'archived_token': 'Successfully archived token', + 'deleted_token': 'Successfully deleted token', 'removed_token': 'Successfully removed token', 'restored_token': 'Successfully restored token', 'archived_tokens': 'Successfully archived :value tokens', @@ -40398,17 +40835,17 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_registration_help': 'Enable clients to self register in the portal', 'customize_and_preview': 'Customize & Preview', - 'email_invoice': 'E-postfaktura', - 'email_quote': 'Send tilbudet som E-post', + 'email_invoice': 'ایمیل کردن فاکتور', + 'email_quote': 'Email Quote', 'email_credit': 'Email Credit', - 'email_payment': 'E-postbetaling', + 'email_payment': 'Email Payment', 'client_email_not_set': 'Client does not have an email address set', 'ledger': 'Ledger', 'view_pdf': 'View PDF', 'all_records': 'All records', 'owned_by_user': 'Owned by user', 'credit_remaining': 'Credit Remaining', - 'contact_name': 'Kontakt navn', + 'contact_name': 'Contact Name', 'use_default': 'Use default', 'reminder_endless': 'Endless Reminders', 'number_of_days': 'Number of days', @@ -40432,12 +40869,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'send_from_gmail': 'Send from Gmail', 'reversed': 'Reversed', 'cancelled': 'Cancelled', - 'credit_amount': 'Kreditbeløp', + 'credit_amount': 'Credit Amount', 'quote_amount': 'Quote Amount', 'hosted': 'Hosted', 'selfhosted': 'Self-Hosted', - 'exclusive': 'Ekslusiv', - 'inclusive': 'Inklusiv', + 'exclusive': 'Exclusive', + 'inclusive': 'Inclusive', 'hide_menu': 'Hide Menu', 'show_menu': 'Show Menu', 'partially_refunded': 'Partially Refunded', @@ -40473,36 +40910,36 @@ mixin LocalizationsProvider on LocaleCodeAware { 'search_expense': 'Search 1 Expense', 'search_payment': 'Search 1 Payment', 'search_group': 'Search 1 Group', - 'refund_payment': 'Refunder betaling', + 'refund_payment': 'Refund Payment', 'cancelled_invoice': 'Successfully cancelled invoice', 'cancelled_invoices': 'Successfully cancelled invoices', 'reversed_invoice': 'Successfully reversed invoice', 'reversed_invoices': 'Successfully reversed invoices', 'reverse': 'Reverse', - 'full_name': 'Fullt Navn', - 'city_state_postal': 'By/Fylke/Postnummer', - 'postal_city_state': 'Postnr./Sted/Fylke', + 'full_name': 'Full Name', + 'city_state_postal': 'City/State/Postal', + 'postal_city_state': 'Postal/City/State', 'custom1': 'First Custom', 'custom2': 'Second Custom', 'custom3': 'Third Custom', 'custom4': 'Fourth Custom', 'optional': 'Optional', 'license': 'License', - 'purge_data': 'Fjern data', + 'purge_data': 'Purge Data', 'purge_successful': 'Successfully purged company data', 'purge_data_message': - 'Advarsel: Dette sletter alle dine data permanent, og kan ikke gjennopprettes.', + 'Warning: This will permanently erase your data, there is no undo.', 'invoice_balance': 'Invoice Balance', - 'age_group_0': '0 - 30 Dager', - 'age_group_30': '30 - 60 Dager', - 'age_group_60': '60 - 90 Dager', - 'age_group_90': '90 - 120 Dager', - 'age_group_120': 'Mer enn 120 dager', + 'age_group_0': '0 - 30 Days', + 'age_group_30': '30 - 60 Days', + 'age_group_60': '60 - 90 Days', + 'age_group_90': '90 - 120 Days', + 'age_group_120': '120+ Days', 'refresh': 'Refresh', 'saved_design': 'Successfully saved design', 'client_details': 'Client Details', 'company_address': 'Company Address', - 'invoice_details': 'Fakturadetaljer', + 'invoice_details': 'Invoice Details', 'quote_details': 'Quote Details', 'credit_details': 'Credit Details', 'product_columns': 'Product Columns', @@ -40514,7 +40951,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'owned': 'Owned', 'payment_success': 'Payment Success', 'payment_failure': 'Payment Failure', - 'invoice_sent': ':count faktura sendt', + 'invoice_sent': ':count invoice sent', 'quote_sent': 'Quote Sent', 'credit_sent': 'Credit Sent', 'invoice_viewed': 'Invoice Viewed', @@ -40523,13 +40960,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_approved': 'Quote Approved', 'receive_all_notifications': 'Receive All Notifications', 'purchase_license': 'Purchase License', - 'apply_license': 'aktiver lisens', - 'cancel_account': 'Kanseler Konto', + 'apply_license': 'Apply License', + 'cancel_account': 'Delete Account', 'cancel_account_message': - 'Advarsel: Dette vil permanent slette kontoen din, du kan ikke angre.', - 'delete_company': 'Slett Firma', + 'Warning: This will permanently delete your account, there is no undo.', + 'delete_company': 'Delete Company', 'delete_company_message': - 'Advarsel: Dette vil permanent slette ditt firma, dette kan ikke gjennopprettes.', + 'Warning: This will permanently delete your company, there is no undo.', 'enabled_modules': 'Enabled Modules', 'converted_quote': 'Successfully converted quote', 'credit_design': 'Credit Design', @@ -40550,38 +40987,38 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_designs': 'Successfully archived :value designs', 'deleted_designs': 'Successfully deleted :value designs', 'restored_designs': 'Successfully restored :value designs', - 'proposals': 'Forslag', + 'proposals': 'Proposals', 'tickets': 'Tickets', 'recurring_quotes': 'Recurring Quotes', 'recurring_tasks': 'Recurring Tasks', - 'account_management': 'Kontoadministrasjon', - 'credit_date': 'Kreditdato', - 'credit': 'Kredit', - 'credits': 'Krediter', - 'new_credit': 'Oppgi Kredit', - 'edit_credit': 'Rediger Kredit', - 'created_credit': 'Kredit opprettet', - 'updated_credit': 'Kredit oppdatert', - 'archived_credit': 'Kredit arkivert', - 'deleted_credit': 'Kredit slettet', + 'account_management': 'Account Management', + 'credit_date': 'Credit Date', + 'credit': 'Credit', + 'credits': 'Credits', + 'new_credit': 'Enter Credit', + 'edit_credit': 'Edit Credit', + 'created_credit': 'Successfully created credit', + 'updated_credit': 'Successfully updated credit', + 'archived_credit': 'Successfully archived credit', + 'deleted_credit': 'Successfully deleted credit', 'removed_credit': 'Successfully removed credit', - 'restored_credit': 'Suksessfullt gjenopprettet kredit', - 'archived_credits': 'Arkiverte :count krediter', - 'deleted_credits': 'Slettet :count krediter', + 'restored_credit': 'Successfully restored credit', + 'archived_credits': 'Successfully archived :count credits', + 'deleted_credits': 'Successfully deleted :count credits', 'restored_credits': 'Successfully restored :value credits', - 'current_version': 'Nåværende versjon', + 'current_version': 'Current version', 'latest_version': 'Latest Version', 'update_now': 'Update Now', 'a_new_version_is_available': 'A new version of the web app is available', 'update_available': 'Update Available', 'app_updated': 'Update successfully completed', - 'learn_more': 'Lær mer', + 'learn_more': 'مشاهده بیشتر', 'integrations': 'Integrations', 'tracking_id': 'Tracking Id', 'slack_webhook_url': 'Slack Webhook URL', 'credit_footer': 'Credit Footer', 'credit_terms': 'Credit Terms', - 'new_company': 'Nytt Firma', + 'new_company': 'New Company', 'added_company': 'Successfully added company', 'company1': 'Custom Company 1', 'company2': 'Custom Company 2', @@ -40631,69 +41068,69 @@ mixin LocalizationsProvider on LocaleCodeAware { 'group2': 'Custom Group 2', 'group3': 'Custom Group 3', 'group4': 'Custom Group 4', - 'reset': 'Nullstill', + 'reset': 'Reset', 'number': 'Number', - 'export': 'Eksporter', - 'chart': 'Diagram', + 'export': 'Export', + 'chart': 'Chart', 'count': 'Count', - 'totals': 'Totaler', - 'blank': 'Tom', - 'day': 'Dag', - 'month': 'Måned', - 'year': 'År', + 'totals': 'Totals', + 'blank': 'Blank', + 'day': 'Day', + 'month': 'Month', + 'year': 'Year', 'subgroup': 'Subgroup', 'is_active': 'Is Active', - 'group_by': 'Grupper etter', - 'credit_balance': 'Kreditsaldo', + 'group_by': 'Group by', + 'credit_balance': 'Credit Balance', 'contact_last_login': 'Contact Last Login', - 'contact_full_name': 'Fult navn', - 'contact_phone': 'Kontakt Telefon', + 'contact_full_name': 'Contact Full Name', + 'contact_phone': 'Contact Phone', 'contact_custom_value1': 'Contact Custom Value 1', 'contact_custom_value2': 'Contact Custom Value 2', 'contact_custom_value3': 'Contact Custom Value 3', 'contact_custom_value4': 'Contact Custom Value 4', - 'shipping_address1': 'Leverings adresse', + 'shipping_address1': 'Shipping Street', 'shipping_address2': 'Shipping Apt/Suite', 'shipping_city': 'Shipping City', 'shipping_state': 'Shipping State/Province', - 'shipping_postal_code': 'Leverings adresse postnummer', + 'shipping_postal_code': 'Shipping Postal Code', 'shipping_country': 'Shipping Country', - 'billing_address1': 'Fakturaadresse', + 'billing_address1': 'Billing Street', 'billing_address2': 'Billing Apt/Suite', - 'billing_city': 'Fakturering By', + 'billing_city': 'Billing City', 'billing_state': 'Billing State/Province', - 'billing_postal_code': 'Fakturering Postnummer', - 'billing_country': 'Fakturering Land', - 'client_id': 'Kunde-ID', + 'billing_postal_code': 'Billing Postal Code', + 'billing_country': 'Billing Country', + 'client_id': 'Client Id', 'assigned_to': 'Assigned to', - 'created_by': 'Laget av :name', + 'created_by': 'Created by :name', 'assigned_to_id': 'Assigned To Id', 'created_by_id': 'Created By Id', 'add_column': 'Add Column', 'edit_columns': 'Edit Columns', - 'columns': 'Kolonner', + 'columns': 'Columns', 'aging': 'Aging', - 'profit_and_loss': 'Fortjeneste og Tap', - 'reports': 'Rapporter', - 'report': 'Rapport', - 'add_company': 'Legg til Firma', + 'profit_and_loss': 'Profit and Loss', + 'reports': 'Reports', + 'report': 'Report', + 'add_company': 'Add Company', 'unpaid_invoice': 'Unpaid Invoice', 'paid_invoice': 'Paid Invoice', 'unapproved_quote': 'Unapproved Quote', - 'help': 'Hjelp', - 'refund': 'Refunder', + 'help': 'Help', + 'refund': 'Refund', 'refund_date': 'Refund Date', 'filtered_by': 'Filtered by', - 'contact_email': 'Kontakt Epost', + 'contact_email': 'Contact Email', 'multiselect': 'Multiselect', - 'entity_state': 'Tilstand', + 'entity_state': 'State', 'verify_password': 'Verify Password', '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.', - 'message': 'Beskjed', - 'from': 'Fra', + 'message': 'Message', + 'from': 'From', 'show_product_details': 'Show Product Details', 'show_product_details_help': 'Include the description and cost in the product dropdown', @@ -40703,13 +41140,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'configure_settings': 'Configure Settings', 'support_forum': 'support forum', 'about': 'About', - 'documentation': 'Dokumentasjon', - 'contact_us': 'Kontakt Oss', - 'subtotal': 'Totalbeløp', - 'line_total': 'Sum', - 'item': 'Produkt', + 'documentation': 'Documentation', + 'contact_us': 'Contact Us', + 'subtotal': 'جمع جز', + 'line_total': 'خط کل', + 'item': 'اقلام', 'credit_email': 'Credit Email', - 'iframe_url': 'Nettside', + 'iframe_url': 'Website', 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': @@ -40763,82 +41200,82 @@ mixin LocalizationsProvider on LocaleCodeAware { 'inclusive_taxes': 'Inclusive Taxes', 'invoice_tax_rates': 'Invoice Tax Rates', 'item_tax_rates': 'Item Tax Rates', - 'no_client_selected': 'Vennligst velg en klient', + 'no_client_selected': 'Please select a client', 'configure_rates': 'Configure rates', 'configure_gateways': 'Configure Gateways', - 'tax_settings': 'Skatteinnstillinger', + 'tax_settings': 'Tax Settings', 'tax_settings_rates': 'Tax Rates', 'accent_color': 'Accent Color', 'switch': 'Switch', 'comma_sparated_list': 'Comma separated list', - 'options': 'Valg', + 'options': 'Options', 'single_line_text': 'Single-line text', 'multi_line_text': 'Multi-line text', 'dropdown': 'Dropdown', 'field_type': 'Field Type', 'recover_password_email_sent': 'A password recovery email has been sent', - 'submit': 'Send', - 'recover_password': 'Gjenopprett ditt passord', + 'submit': 'Submit', + 'recover_password': 'Recover your password', 'late_fees': 'Late Fees', - 'credit_number': 'Kreditnummer', + 'credit_number': 'Credit Number', 'payment_number': 'Payment Number', 'late_fee_amount': 'Late Fee Amount', 'late_fee_percent': 'Late Fee Percent', - 'schedule': 'Planlegg', + 'schedule': 'Schedule', 'before_due_date': 'Before the due date', 'after_due_date': 'After the due date', 'after_invoice_date': 'After the invoice date', - 'days': 'Dager', - 'invoice_email': 'Faktura-e-post', - 'payment_email': 'Betalings-e-post', + 'days': 'Days', + 'invoice_email': 'Invoice Email', + 'payment_email': 'Payment Email', 'partial_payment': 'Partial Payment', 'payment_partial': 'Partial Payment', 'partial_payment_email': 'Partial Payment Email', - 'quote_email': 'Tilbuds-e-post', + 'quote_email': 'Quote Email', 'endless_reminder': 'Endless Reminder', 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrator', 'administrator_help': 'Allow user to manage users, change settings and modify all records', - 'user_management': 'Brukerhåndtering', - 'users': 'Brukere', - 'new_user': 'Ny Bruker', - 'edit_user': 'Endre bruker', + 'user_management': 'User Management', + 'users': 'Users', + 'new_user': 'New User', + 'edit_user': 'Edit User', 'created_user': 'Successfully created user', - 'updated_user': 'Bruker oppdatert', - 'archived_user': 'Suksessfullt arkivert bruker', - 'deleted_user': 'Bruker slettet', + 'updated_user': 'Successfully updated user', + 'archived_user': 'Successfully archived user', + 'deleted_user': 'Successfully deleted user', 'removed_user': 'Successfully removed user', - 'restored_user': 'Suksessfullt gjenopprettet bruker', + 'restored_user': 'Successfully restored user', 'archived_users': 'Successfully archived :value users', 'deleted_users': 'Successfully deleted :value users', 'removed_users': 'Successfully removed :value users', 'restored_users': 'Successfully restored :value users', - 'general_settings': 'Systeminnstillinger', - 'invoice_options': 'Faktura alternativer', - 'hide_paid_to_date': 'Skjul delbetalinger', + 'general_settings': 'General Settings', + 'invoice_options': 'Invoice Options', + 'hide_paid_to_date': 'Hide Paid to Date', 'hide_paid_to_date_help': - 'Bare vis delbetalinger om det har forekommet en delbetaling.', - 'invoice_embed_documents': 'Embed Dokumenter', + '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', - 'all_pages_footer': 'Show footer on', - 'first_page': 'Første side', - 'all_pages': 'Alle sider', - 'last_page': 'Siste side', + 'all_pages_header': 'Show Header on', + 'all_pages_footer': 'Show Footer on', + 'first_page': 'First page', + 'all_pages': 'All pages', + 'last_page': 'Last page', 'primary_font': 'Primary Font', 'secondary_font': 'Secondary Font', - 'primary_color': 'Primærfarge', - 'secondary_color': 'Sekundær farge', + 'primary_color': 'Primary Color', + 'secondary_color': 'Secondary Color', 'page_size': 'Page Size', - 'font_size': 'Skriftstørrelse', + 'font_size': 'Font Size', 'quote_design': 'Quote Design', - 'invoice_fields': 'Faktura felt', - 'product_fields': 'Produktfelter', - 'invoice_terms': 'Vilkår for fakturaen', - 'invoice_footer': 'Faktura Bunntekst', - 'quote_terms': 'Tilbuds Vilkår', - 'quote_footer': 'Tilbud Bunntekst', + 'invoice_fields': 'Invoice Fields', + 'product_fields': 'Product Fields', + 'invoice_terms': 'قوانین فاکتور', + 'invoice_footer': 'Invoice Footer', + 'quote_terms': 'Quote Terms', + 'quote_footer': 'Quote Footer', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': 'Automatically email recurring invoices when they are created.', @@ -40848,28 +41285,28 @@ mixin LocalizationsProvider on LocaleCodeAware { 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': 'Automatically archive quotes when they are converted.', - 'auto_convert_quote': 'Auto Konverter', + 'auto_convert_quote': 'Auto Convert', 'auto_convert_quote_help': 'Automatically convert a quote to an invoice when approved by a client.', 'workflow_settings': 'Workflow Settings', - 'freq_daily': 'Daglig', - 'freq_weekly': 'Ukentlig', - 'freq_two_weeks': 'To uker', - 'freq_four_weeks': 'Fire uker', - 'freq_monthly': 'Månedlig', - 'freq_two_months': 'To måneder', - 'freq_three_months': 'Tre måneder', - 'freq_four_months': 'Fire måneder', - 'freq_six_months': 'Seks måneder', - 'freq_annually': 'Årlig', - 'freq_two_years': 'To år', + 'freq_daily': 'Daily', + 'freq_weekly': 'Weekly', + 'freq_two_weeks': 'Two weeks', + 'freq_four_weeks': 'Four weeks', + 'freq_monthly': 'Monthly', + 'freq_two_months': 'Two months', + 'freq_three_months': 'Three months', + 'freq_four_months': 'Four months', + 'freq_six_months': 'Six months', + 'freq_annually': 'Annually', + 'freq_two_years': 'Two years', 'freq_three_years': 'Three Years', 'never': 'Never', 'company': 'Company', - 'generated_numbers': 'Genererte Nummere', - 'charge_taxes': 'Inkluder skatt', - 'next_reset': 'Neste Nullstilling', - 'reset_counter': 'Nullstill Teller', + 'generated_numbers': 'Generated Numbers', + 'charge_taxes': 'Charge taxes', + 'next_reset': 'Next Reset', + 'reset_counter': 'Reset Counter', 'recurring_prefix': 'Recurring Prefix', 'number_padding': 'Number Padding', 'general': 'General', @@ -40889,10 +41326,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'task_field': 'Task Field', 'group_field': 'Group Field', 'number_counter': 'Number Counter', - 'prefix': 'Prefiks', + 'prefix': 'Prefix', 'number_pattern': 'Number Pattern', 'messages': 'Messages', - 'custom_css': 'Egendefinert CSS', + 'custom_css': 'Custom CSS', 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': @@ -40903,17 +41340,18 @@ mixin LocalizationsProvider on LocaleCodeAware { 'show_accept_quote_terms': 'Quote Terms Checkbox', 'show_accept_quote_terms_help': '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', + 'require_invoice_signature': 'Invoice Signature', + 'require_invoice_signature_help': + '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.', - 'authorization': 'Autorisasjon', - 'subdomain': 'Subdomene', - 'domain': 'Domene', + 'authorization': 'Authorization', + 'subdomain': 'Subdomain', + 'domain': 'Domain', 'portal_mode': 'Portal Mode', - 'email_signature': 'Med vennlig hilsen,', + 'email_signature': 'Regards,', 'enable_email_markup_help': 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', 'plain': 'Plain', @@ -40925,50 +41363,50 @@ mixin LocalizationsProvider on LocaleCodeAware { 'attach_ubl': 'Attach UBL', 'email_style': 'Email Style', 'enable_email_markup': 'Enable Markup', - 'reply_to_email': 'Svar til Epost', + 'reply_to_email': 'Reply-To Email', 'reply_to_name': 'Reply-To Name', - 'bcc_email': 'BCC E-post', + 'bcc_email': 'BCC Email', 'processed': 'Processed', - 'credit_card': 'Betalingskort', - 'bank_transfer': 'Bankoverføring', + 'credit_card': 'Credit Card', + 'bank_transfer': 'Bank Transfer', 'priority': 'Priority', 'fee_amount': 'Fee Amount', 'fee_percent': 'Fee Percent', 'fee_cap': 'Fee Cap', 'limits_and_fees': 'Limits/Fees', - 'enable_min': 'Aktiver min', - 'enable_max': 'Aktiver maks', + 'enable_min': 'Enable min', + 'enable_max': 'Enable max', 'min_limit': 'Min: :min', - 'max_limit': 'Maks: :max', + 'max_limit': 'Max: :max', 'min': 'Min', - 'max': 'Maks', + 'max': 'Max', 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', - 'update_address': 'Oppdater Adresse', - 'update_address_help': 'Oppdater kundens adresse med oppgitte detaljer', - 'rate': 'Sats', - 'tax_rate': 'Skattesats', - 'new_tax_rate': 'Ny Skattesats', - 'edit_tax_rate': 'Rediger skattesats', - 'created_tax_rate': 'Suksessfullt opprettet skattesats', - 'updated_tax_rate': 'Suksessfullt oppdatert skattesats', - 'archived_tax_rate': 'Suksessfullt arkivert skattesatsen', + 'update_address': 'Update Address', + 'update_address_help': 'Update client\'s address with provided details', + 'rate': 'نرخ', + 'tax_rate': 'Tax Rate', + 'new_tax_rate': 'New Tax Rate', + 'edit_tax_rate': 'Edit tax rate', + 'created_tax_rate': 'Successfully created tax rate', + 'updated_tax_rate': 'Successfully updated tax rate', + 'archived_tax_rate': 'Successfully archived the tax rate', 'deleted_tax_rate': 'Successfully deleted tax rate', 'restored_tax_rate': 'Successfully restored tax rate', 'archived_tax_rates': 'Successfully archived :value tax rates', 'deleted_tax_rates': 'Successfully deleted :value tax rates', 'restored_tax_rates': 'Successfully restored :value tax rates', - 'fill_products': 'Automatisk-utfyll produkter', + 'fill_products': 'Auto-fill products', 'fill_products_help': - 'Valg av produkt vil automatisk fylle ut beskrivelse og kostnaden', - 'update_products': 'Automatisk oppdater produkter', + 'Selecting a product will automatically fill in the description and cost', + 'update_products': 'Auto-update products', 'update_products_help': - 'Å endre en faktura vil automatisk oppdatere produktbilioteket', + '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', - 'fees': 'Avgifter', - 'limits': 'Begrensninger', + 'fees': 'Fees', + 'limits': 'Limits', 'provider': 'Provider', 'company_gateway': 'Payment Gateway', 'company_gateways': 'Payment Gateways', @@ -40989,30 +41427,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'currency_format': 'Currency Format', 'first_day_of_the_week': 'First Day of the Week', 'first_month_of_the_year': 'First Month of the Year', - 'sunday': 'Søndag', - 'monday': 'Mandag', - 'tuesday': 'Tirsdag', - 'wednesday': 'Onsdag', - 'thursday': 'Torsdag', - 'friday': 'Fredag', - 'saturday': 'Lørdag', - 'january': 'Januar', - 'february': 'Februar', - 'march': 'Mars', + 'sunday': 'Sunday', + 'monday': 'Monday', + 'tuesday': 'Tuesday', + 'wednesday': 'Wednesday', + 'thursday': 'Thursday', + 'friday': 'Friday', + 'saturday': 'Saturday', + 'january': 'January', + 'february': 'February', + 'march': 'March', 'april': 'April', - 'may': 'Mai', - 'june': 'Juni', - 'july': 'Juli', + 'may': 'May', + 'june': 'June', + 'july': 'July', 'august': 'August', 'september': 'September', - 'october': 'Oktober', + 'october': 'October', 'november': 'November', - 'december': 'Desember', + 'december': 'December', 'symbol': 'Symbol', 'ocde': 'Code', 'date_format': 'Date Format', 'datetime_format': 'Datetime Format', - 'military_time': '24 Timers Tid', + 'military_time': '24 Hour Time', 'military_time_help': '24 Hour Display', 'send_reminders': 'Send Reminders', 'timezone': 'Timezone', @@ -41038,26 +41476,26 @@ mixin LocalizationsProvider on LocaleCodeAware { 'uploaded_logo': 'Successfully uploaded logo', 'logo': 'Logo', 'saved_settings': 'Successfully saved settings', - 'product_settings': 'Produkt-innstillinger', + 'product_settings': 'Product Settings', 'device_settings': 'Device Settings', - 'defaults': 'Standarder', - 'basic_settings': 'Grunnleggende Innstillinger', - 'advanced_settings': 'Avanserte innstillinger', - 'company_details': 'Firmainformasjon', - 'user_details': 'Brukerdetaljer', - 'localization': 'Regioninnstillinger', - 'online_payments': 'Nettbetalinger', - 'tax_rates': 'Skattesatser', - 'notifications': 'Varsler', - 'import_export': 'Import | Eksport', - 'custom_fields': 'Egendefinerte felt', - 'invoice_design': 'Fakturadesign', - 'buy_now_buttons': 'Betal Nå-knapper', - 'email_settings': 'E-post-innstillinger', - 'templates_and_reminders': 'Design & Påminnelser', + 'defaults': 'Defaults', + 'basic_settings': 'Basic Settings', + 'advanced_settings': 'Advanced Settings', + 'company_details': 'Company Details', + 'user_details': 'User Details', + 'localization': 'Localization', + 'online_payments': 'Online Payments', + 'tax_rates': 'نرخ مالیات', + 'notifications': 'Notifications', + 'import_export': 'Import | Export', + 'custom_fields': 'Custom Fields', + 'invoice_design': 'Invoice Design', + 'buy_now_buttons': 'Buy Now Buttons', + 'email_settings': 'Email Settings', + 'templates_and_reminders': 'Templates & Reminders', 'credit_cards_and_banks': 'Credit Cards & Banks', - 'data_visualizations': 'Datavisualiseringer', - 'price': 'Pris', + 'data_visualizations': 'Data Visualizations', + 'price': 'Price', 'email_sign_up': 'Email Sign Up', 'google_sign_up': 'Google Sign Up', 'thank_you_for_your_purchase': 'Thank you for your purchase!', @@ -41074,22 +41512,22 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_agree_to_terms_and_privacy': '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': 'vilkår for bruk', - 'privacy_policy': 'Personvernregler', - 'sign_up': 'Registrer deg', - 'account_login': 'Kontoinnlogging', + 'terms_of_service': 'Terms of Service', + 'privacy_policy': 'Privacy Policy', + 'sign_up': 'Sign Up', + 'account_login': 'Account Login', 'view_website': 'View Website', 'create_account': 'Create Account', 'email_login': 'Email Login', - 'create_new': 'Lag ny', + 'create_new': 'Create New', 'no_record_selected': 'No record selected', 'error_unsaved_changes': 'Please save or cancel your changes', - 'download': 'Last ned', + 'download': 'Download', 'requires_an_enterprise_plan': 'Requires an enterprise plan', 'take_picture': 'Take Picture', 'upload_file': 'Upload File', - 'document': 'Dokument', - 'documents': 'Dokumenter', + 'document': 'Document', + 'documents': 'Documents', 'new_document': 'New Document', 'edit_document': 'Edit Document', 'uploaded_document': 'Successfully uploaded document', @@ -41101,101 +41539,101 @@ mixin LocalizationsProvider on LocaleCodeAware { 'deleted_documents': 'Successfully deleted :value documents', 'restored_documents': 'Successfully restored :value documents', 'no_history': 'No History', - 'expense_date': 'Utgiftsdato', - 'pending': 'Avventer', + 'expense_date': 'Expense Date', + 'pending': 'Pending', 'expense_status_1': 'Logged', 'expense_status_2': 'Pending', 'expense_status_3': 'Invoiced', - 'converted': 'Konvertert', - 'add_documents_to_invoice': 'Legg ved dokumenter til faktura', + 'converted': 'Converted', + 'add_documents_to_invoice': 'Add documents to invoice', 'exchange_rate': 'Exchange Rate', 'convert_currency': 'Convert currency', - 'mark_paid': 'Merk som betalt', - 'category': 'Kategori', - 'address': 'Adresse', - 'new_vendor': 'Ny Leverandør', - 'created_vendor': 'Opprettet leverandør', - 'updated_vendor': 'Oppdaterte leverandør', - 'archived_vendor': 'Arkiverte leverandør', - 'deleted_vendor': 'Slettet leverandør', - 'restored_vendor': 'Successfully restored vendor', - 'archived_vendors': 'Arkiverte :count leverandører', - 'deleted_vendors': 'Slettet :count leverandører', + 'mark_paid': 'Mark Paid', + 'category': 'Category', + 'address': 'آدرس', + 'new_vendor': 'New Vendor', + 'created_vendor': 'Successfully created vendor', + 'updated_vendor': 'Successfully updated vendor', + 'archived_vendor': 'Successfully archived vendor', + 'deleted_vendor': 'Successfully deleted vendor', + 'restored_vendor': 'Successfully restored vendor', + 'archived_vendors': 'Successfully archived :count vendors', + 'deleted_vendors': 'Successfully deleted :count vendors', 'restored_vendors': 'Successfully restored :value vendors', - 'new_expense': 'Angi utgift', + 'new_expense': 'Enter Expense', 'created_expense': 'Successfully created expense', 'updated_expense': 'Successfully updated expense', 'archived_expense': 'Successfully archived expense', 'deleted_expense': 'Successfully deleted expense', 'restored_expense': 'Successfully restored expense', - 'archived_expenses': 'Arkiverte utgifter', - 'deleted_expenses': 'Slettet utgifter', + 'archived_expenses': 'Successfully archived expenses', + 'deleted_expenses': 'Successfully deleted expenses', 'restored_expenses': 'Successfully restored :value expenses', 'copy_shipping': 'Copy Shipping', 'copy_billing': 'Copy Billing', 'design': 'Design', 'failed_to_find_record': 'Failed to find record', - 'invoiced': 'Fakturert', - 'logged': 'Logget', - 'running': 'Løpende', - 'resume': 'Gjenoppta', - 'task_errors': 'Vennligst rett alle overlappende tider', + 'invoiced': 'Invoiced', + 'logged': 'Logged', + 'running': 'Running', + 'resume': 'Resume', + 'task_errors': 'Please correct any overlapping times', 'start': 'Start', - 'stop': 'Stopp', + 'stop': 'Stop', 'started_task': 'Successfully started task', - 'stopped_task': 'Suksessfullt stoppet oppgave', + 'stopped_task': 'Successfully stopped task', 'resumed_task': 'Successfully resumed task', - 'now': 'Nå', + 'now': 'Now', 'auto_start_tasks': 'Auto Start Tasks', - 'timer': 'Tidtaker', - 'manual': 'Manuell', + 'timer': 'Timer', + 'manual': 'Manual', 'budgeted': 'Budgeted', - 'start_time': 'Starttid', - 'end_time': 'Sluttid', - 'date': 'Dato', - 'times': 'Tider', - 'duration': 'Varighet', - 'new_task': 'Ny Oppgave', - 'created_task': 'Suksessfullt opprettet oppgave', - 'updated_task': 'Suksessfullt oppdatert oppgave', - 'archived_task': 'Arkiverte oppgave', - 'deleted_task': 'Slettet oppgave', - 'restored_task': 'Gjenopprettet oppgave', - 'archived_tasks': 'Arkiverte :count oppgaver', - 'deleted_tasks': 'Slettet :count oppgaver', + 'start_time': 'Start Time', + 'end_time': 'End Time', + 'date': 'Date', + 'times': 'Times', + 'duration': 'Duration', + 'new_task': 'New Task', + 'created_task': 'Successfully created task', + 'updated_task': 'Successfully updated task', + 'archived_task': 'Successfully archived task', + 'deleted_task': 'Successfully deleted task', + 'restored_task': 'Successfully restored task', + 'archived_tasks': 'Successfully archived :count tasks', + 'deleted_tasks': 'Successfully deleted :count tasks', 'restored_tasks': 'Successfully restored :value tasks', 'please_enter_a_name': 'Please enter a name', 'budgeted_hours': 'Budgeted Hours', - 'created_project': 'Opprettet prosjekt', - 'updated_project': 'Oppdaterte prosjekt', - 'archived_project': 'Arkiverte prosjekt', - 'deleted_project': 'Slettet prosjekt', - 'restored_project': 'Gjenopprettet prosjekt', - 'archived_projects': 'Arkiverte :count prosjekter', - 'deleted_projects': 'Slettet :count prosjekter', + 'created_project': 'Successfully created project', + 'updated_project': 'Successfully updated project', + 'archived_project': 'Successfully archived project', + 'deleted_project': 'Successfully deleted project', + 'restored_project': 'Successfully restored project', + 'archived_projects': 'Successfully archived :count projects', + 'deleted_projects': 'Successfully deleted :count projects', 'restored_projects': 'Successfully restored :value projects', - 'new_project': 'Nytt Prosjekt', + 'new_project': 'New Project', 'thank_you_for_using_our_app': 'Thank you for using our app!', 'if_you_like_it': 'If you like it please', - 'click_here': 'klikk her', + 'click_here': 'click here', 'click_here_capital': 'Click here', 'to_rate_it': 'to rate it.', 'average': 'Average', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': 'Please authenticate to change this setting', - 'locked': 'Låst', + 'locked': 'Locked', 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', 'biometric_authentication': 'Biometric Authentication', - 'footer': 'Bunntekst', + 'footer': 'Footer', 'compare': 'Compare', 'hosted_login': 'Hosted Login', 'selfhost_login': 'Selfhost Login', 'google_sign_in': 'Sign in with Google', 'today': 'Today', - 'custom_range': 'Tilpass Utvalg', - 'date_range': 'Datoperiode', + 'custom_range': 'Custom Range', + 'date_range': 'Date Range', 'current': 'Current', 'previous': 'Previous', 'current_period': 'Current Period', @@ -41206,153 +41644,153 @@ mixin LocalizationsProvider on LocaleCodeAware { 'last7_days': 'Last 7 Days', 'last_week': 'Last Week', 'last30_days': 'Last 30 Days', - 'this_month': 'Denne måneden', - 'last_month': 'Siste måned', - 'this_year': 'Dette Året', - 'last_year': 'Siste år', - 'custom': 'Egendefiner', + 'this_month': 'This Month', + 'last_month': 'Last Month', + 'this_year': 'This Year', + 'last_year': 'Last Year', + 'custom': 'Custom', 'clone_to_invoice': 'Clone to Invoice', 'clone_to_quote': 'Clone to Quote', 'clone_to_credit': 'Clone to Credit', - 'view_invoice': 'Se faktura', + 'view_invoice': 'View Invoice', 'convert': 'Convert', 'more': 'More', - 'edit_client': 'Rediger Kunde', - 'edit_product': 'Endre produkt', - 'edit_invoice': 'Rediger faktura', - 'edit_quote': 'Endre tilbud', - 'edit_payment': 'Rediger Betaling', - 'edit_task': 'Rediger Oppgave', + 'edit_client': 'Edit Client', + 'edit_product': 'Edit Product', + 'edit_invoice': 'Edit Invoice', + 'edit_quote': 'Edit Quote', + 'edit_payment': 'Edit Payment', + 'edit_task': 'Edit Task', 'edit_expense': 'Edit Expense', - 'edit_vendor': 'Rediger Leverandør', - 'edit_project': 'Rediger Prosjekt', + 'edit_vendor': 'Edit Vendor', + 'edit_project': 'Edit Project', 'edit_recurring_quote': 'Edit Recurring Quote', - 'billing_address': 'Fakturerings Adresse', - 'shipping_address': 'Leveringsadresse', - 'total_revenue': 'Sum omsetning', - 'average_invoice': 'Gjennomsnittlige fakturaer', - 'outstanding': 'Utestående', - 'invoices_sent': ':count fakturaer sendt', - 'active_clients': 'aktive kunder', - 'close': 'Lukk', - 'email': 'E-post', - 'password': 'Passord', + 'billing_address': 'Billing Address', + 'shipping_address': 'Shipping Address', + 'total_revenue': 'Total Revenue', + 'average_invoice': 'Average Invoice', + 'outstanding': 'Outstanding', + 'invoices_sent': ':count invoices sent', + 'active_clients': 'active clients', + 'close': 'Close', + 'email': 'ایمیل', + 'password': 'Password', 'url': 'URL', 'secret': 'Secret', - 'name': 'Navn', - 'logout': 'Logg ut', - 'login': 'Logg inn', + 'name': 'نام', + 'logout': 'Log Out', + 'login': 'Login', 'filter': 'Filter', 'sort': 'Sort', - 'search': 'Søk', - 'active': 'Aktiv', - 'archived': 'Arkivert', - 'deleted': 'Slettet', - 'dashboard': 'Skrivebord', - 'archive': 'Arkiv', - 'delete': 'Slett', - 'restore': 'Gjenopprette', + 'search': 'Search', + 'active': 'Active', + 'archived': 'Archived', + 'deleted': 'Deleted', + 'dashboard': 'Dashboard', + 'archive': 'Archive', + 'delete': 'Delete', + 'restore': 'Restore', 'refresh_complete': 'Refresh Complete', 'please_enter_your_email': 'Please enter your email', 'please_enter_your_password': 'Please enter your password', 'please_enter_your_url': 'Please enter your URL', 'please_enter_a_product_key': 'Please enter a product key', - 'ascending': 'Stigende', - 'descending': 'Synkende', - 'save': 'Lagre', + 'ascending': 'Ascending', + 'descending': 'Descending', + 'save': 'Save', 'an_error_occurred': 'An error occurred', - 'paid_to_date': 'Betalt til Dato', - 'balance_due': 'Gjenstående', - 'balance': 'Balanse', + 'paid_to_date': 'پرداخت در تاریخ', + 'balance_due': 'بدهی تعادل', + 'balance': 'Balance', 'overview': 'Overview', - 'details': 'Detaljer', - 'phone': 'Telefon', - 'website': 'Nettside', - 'vat_number': 'MVA-nummer', - 'id_number': 'Id nummer', - 'create': 'Lag', + 'details': 'Details', + 'phone': 'تلفن', + 'website': 'وب سایت', + 'vat_number': 'VAT Number', + 'id_number': 'ID Number', + 'create': 'Create', 'copied_to_clipboard': 'Copied :value to the clipboard', 'error': 'Error', 'could_not_launch': 'Could not launch', - 'contacts': 'Kontakter', + 'contacts': 'مخاطبین', 'additional': 'Additional', - 'first_name': 'Fornavn', - 'last_name': 'Etternavn', - 'add_contact': 'Legg til kontakt', - 'are_you_sure': 'Er du sikker?', - 'cancel': 'Avbryt', + 'first_name': 'نام', + 'last_name': 'نام خانوادگی', + 'add_contact': 'افزودن مخاطب', + 'are_you_sure': 'Are you sure?', + 'cancel': 'Cancel', 'ok': 'Ok', - 'remove': 'Fjern', + 'remove': 'Remove', 'email_is_invalid': 'Email is invalid', - 'product': 'Produkt', - 'products': 'Produkter', - 'new_product': 'Nytt Produkt', - 'created_product': 'Produkt lagret', - 'updated_product': 'Produkt oppdatert', - 'archived_product': 'Produkt arkivert', - 'deleted_product': 'Slettet produkt', - 'restored_product': 'Gjenopprettet produkt', + 'product': 'Product', + 'products': 'Products', + 'new_product': 'New Product', + 'created_product': 'Successfully created product', + 'updated_product': 'Successfully updated product', + 'archived_product': 'Successfully archived product', + 'deleted_product': 'Successfully deleted product', + 'restored_product': 'Successfully restored product', 'archived_products': 'Successfully archived :count products', - 'deleted_products': 'Slettet :count produkter', + 'deleted_products': 'Successfully deleted :count products', 'restored_products': 'Successfully restored :value products', - 'product_key': 'Produkt', - 'notes': 'Notater', - 'cost': 'Kostnad', - 'client': 'Kunde', - 'clients': 'Kunder', - 'new_client': 'Ny Kunde', - 'created_client': 'Opprettet kunde', - 'updated_client': 'Oppdaterte kunde', - 'archived_client': 'Arkiverte kunde', - 'archived_clients': 'Arkiverte :count kunder', - 'deleted_client': 'Slettet kunde', - 'deleted_clients': 'Slettet :count kunder', - 'restored_client': 'Gjenopprettet kunde', + 'product_key': 'Product', + 'notes': 'Notes', + 'cost': 'Cost', + 'client': 'مشتریان', + 'clients': 'Clients', + 'new_client': 'New Client', + 'created_client': 'Successfully created client', + 'updated_client': 'Successfully updated client', + 'archived_client': 'Successfully archived client', + 'archived_clients': 'Successfully archived :count clients', + 'deleted_client': 'Successfully deleted client', + 'deleted_clients': 'Successfully deleted :count clients', + 'restored_client': 'Successfully restored client', 'restored_clients': 'Successfully restored :value clients', - 'address1': 'Gate', - 'address2': 'Husnummer', - 'city': 'By', - 'state': 'Fylke', - 'postal_code': 'Postnummer', + 'address1': 'خیابان', + 'address2': 'نمونه', + 'city': 'شهر', + 'state': 'استان', + 'postal_code': 'کد پستی', 'country': 'Country', - 'invoice': 'Faktura', - 'invoices': 'Fakturaer', - 'new_invoice': 'Ny faktura', - 'created_invoice': 'Faktura opprettet', - 'updated_invoice': 'Faktura oppdatert', - 'archived_invoice': 'Faktura arkivert', - 'deleted_invoice': 'Faktura slettet', - 'restored_invoice': 'Suksessfullt gjenopprettet faktura', - 'archived_invoices': 'Fakturaer arkivert', - 'deleted_invoices': 'Slettet :count fakturaer', + 'invoice': 'فاکتور', + 'invoices': 'Invoices', + 'new_invoice': 'New Invoice', + 'created_invoice': 'Successfully created invoice', + 'updated_invoice': 'Successfully updated invoice', + 'archived_invoice': 'Successfully archived invoice', + 'deleted_invoice': 'Successfully deleted invoice', + 'restored_invoice': 'Successfully restored invoice', + 'archived_invoices': 'Successfully archived :count invoices', + 'deleted_invoices': 'Successfully deleted :count invoices', 'restored_invoices': 'Successfully restored :value invoices', - 'emailed_invoice': 'E-postfaktura sendt', + 'emailed_invoice': 'Successfully emailed invoice', 'emailed_payment': 'Successfully emailed payment', - 'amount': 'Beløp', - 'invoice_number': 'Fakturanummer', - 'invoice_date': 'Faktureringsdato', - 'discount': 'Rabatter:', - 'po_number': 'Ordrenummer', - 'terms': 'Vilkår', - 'public_notes': 'Offentlig notater', - 'private_notes': 'Private notater', - 'frequency': 'Frekvens', - 'start_date': 'Startdato', - 'end_date': 'Sluttdato', - 'quote_number': 'Tilbudsnummer', - 'quote_date': 'Tilbudsdato', - 'valid_until': 'Gyldig til', + 'amount': 'Amount', + 'invoice_number': 'شماره فاکتور', + 'invoice_date': 'تاریخ فاکتور', + 'discount': 'تخفیف', + 'po_number': 'شماره PO', + 'terms': 'قوانین', + 'public_notes': 'Public Notes', + 'private_notes': 'نوشته خصوصی', + 'frequency': 'Frequency', + 'start_date': 'Start Date', + 'end_date': 'End Date', + 'quote_number': 'Quote Number', + 'quote_date': 'Quote Date', + 'valid_until': 'Valid Until', 'items': 'Items', 'partial_deposit': 'Partial/Deposit', - 'description': 'Beskrivelse', - 'unit_cost': 'Stykkpris', - 'quantity': 'Antall', + 'description': 'توضیحات', + 'unit_cost': 'قیمت واحد', + 'quantity': 'تعداد', 'add_item': 'Add Item', - 'contact': 'Kontakt', - 'work_phone': 'Telefon (arbeid)', + 'contact': 'Contact', + 'work_phone': 'تلفن', 'total_amount': 'Total Amount', 'pdf': 'PDF', - 'due_date': 'Forfallsdato', + 'due_date': 'تاریخ پرداخت', 'partial_due_date': 'Partial Due Date', 'status': 'Status', 'invoice_status_id': 'Invoice Status', @@ -41360,50 +41798,50 @@ mixin LocalizationsProvider on LocaleCodeAware { 'click_plus_to_add_item': 'Click + to add an item', 'click_plus_to_add_time': 'Click + to add time', 'count_selected': ':count selected', - 'total': 'Totalt', - 'percent': 'Prosent', - 'edit': 'Endre', + 'total': 'Total', + 'percent': 'Percent', + 'edit': 'Edit', 'dismiss': 'Dismiss', 'please_select_a_date': 'Please select a date', 'please_select_a_client': 'Please select a client', 'please_select_an_invoice': 'Please select an invoice', - 'task_rate': 'Oppgavesats', - 'settings': 'Innstillinger', + 'task_rate': 'Task Rate', + 'settings': 'تنظیمات', 'language': 'Language', 'currency': 'Currency', - 'created_at': 'Dato Opprettet', + 'created_at': 'Date Created', 'created_on': 'Created On', 'updated_at': 'Updated', - 'tax': 'Skatt', + 'tax': 'مالیات', 'please_enter_an_invoice_number': 'Please enter an invoice number', 'please_enter_a_quote_number': 'Please enter a quote number', - 'past_due': 'Forfalt', - 'draft': 'Kladd', - 'sent': 'Sendt', + 'past_due': 'Past Due', + 'draft': 'Draft', + 'sent': 'Sent', 'viewed': 'Viewed', 'approved': 'Approved', - 'partial': 'Delvis/Depositum', - 'paid': 'Betalt', - 'mark_sent': 'Merk som Sendt', + 'partial': 'Partial/Deposit', + 'paid': 'Paid', + 'mark_sent': 'Mark Sent', 'marked_invoice_as_sent': 'Successfully marked invoice as sent', 'marked_invoice_as_paid': 'Successfully marked invoice as sent', 'marked_invoices_as_sent': 'Successfully marked invoices as sent', 'marked_invoices_as_paid': 'Successfully marked invoices as sent', - 'done': 'Ferdig', + 'done': 'Done', 'please_enter_a_client_or_contact_name': 'Please enter a client or contact name', - 'dark_mode': 'Mørk Modus', + 'dark_mode': 'Dark Mode', 'restart_app_to_apply_change': 'Restart the app to apply the change', 'refresh_data': 'Refresh Data', 'blank_contact': 'Blank Contact', - 'activity': 'Aktivitet', + 'activity': 'Activity', 'no_records_found': 'No records found', - 'clone': 'Kopier', + 'clone': 'Clone', 'loading': 'Loading', 'industry': 'Industry', 'size': 'Size', - 'payment_terms': 'Betalingsvilkår', - 'payment_date': 'Betalingsdato', + 'payment_terms': 'قوانین پرداخت', + 'payment_date': 'Payment Date', 'payment_status': 'Payment Status', 'payment_status_1': 'Pending', 'payment_status_2': 'Voided', @@ -41414,113 +41852,113 @@ mixin LocalizationsProvider on LocaleCodeAware { 'payment_status_-1': 'Unapplied', 'payment_status_-2': 'Partially Unapplied', 'net': 'Net', - 'client_portal': 'Kundeportal', + 'client_portal': 'Client Portal', 'show_tasks': 'Show tasks', 'email_reminders': 'Email Reminders', - 'enabled': 'Aktivert', - 'recipients': 'Mottakere', - 'initial_email': 'Første E-post', - 'first_reminder': 'Første Påminnelse', - 'second_reminder': 'Andre Påminnelse', - 'third_reminder': 'Tredje Påminnelse', + 'enabled': 'Enabled', + 'recipients': 'Recipients', + 'initial_email': 'Initial Email', + 'first_reminder': 'First Reminder', + 'second_reminder': 'Second Reminder', + 'third_reminder': 'Third Reminder', 'reminder1': 'First Reminder', 'reminder2': 'Second Reminder', 'reminder3': 'Third Reminder', - 'template': 'Mal', + 'template': 'Template', 'send': 'Send', - 'subject': 'Emne', + 'subject': 'Subject', 'body': 'Body', - 'send_email': 'Send e-post', - 'email_receipt': 'Send betalingskvittering som e-post til kunden', + 'send_email': 'Send Email', + 'email_receipt': 'Email payment receipt to the client', 'auto_billing': 'Auto billing', 'button': 'Button', 'preview': 'Preview', - 'customize': 'Tilpass', - 'history': 'Historie', - 'payment': 'Betaling', - 'payments': 'Betalinger', + 'customize': 'Customize', + 'history': 'History', + 'payment': 'Payment', + 'payments': 'Payments', 'refunded': 'Refunded', - 'payment_type': 'Betalingsmetode', - 'transaction_reference': 'Transaksjonsreferanse', - 'enter_payment': 'Oppgi betaling', - 'new_payment': 'Oppgi Betaling', - 'created_payment': 'Betaling opprettet', - 'updated_payment': 'Suksessfullt oppdatert betaling', - 'archived_payment': 'Betaling arkivert', - 'deleted_payment': 'Betaling slettet', - 'restored_payment': 'Suksessfullt gjenopprettet betaling', - 'archived_payments': 'Arkiverte :count betalinger', - 'deleted_payments': 'Slettet :count betalinger', + 'payment_type': 'Payment Type', + 'transaction_reference': 'Transaction Reference', + 'enter_payment': 'وارد کردن پرداخت', + 'new_payment': 'Enter Payment', + 'created_payment': 'Successfully created payment', + 'updated_payment': 'Successfully updated payment', + 'archived_payment': 'Successfully archived payment', + 'deleted_payment': 'Successfully deleted payment', + 'restored_payment': 'Successfully restored payment', + 'archived_payments': 'Successfully archived :count payments', + 'deleted_payments': 'Successfully deleted :count payments', 'restored_payments': 'Successfully restored :value payments', - 'quote': 'Pristilbud', - 'quotes': 'Pristilbud', - 'new_quote': 'Nytt tilbud', - 'created_quote': 'Tilbud opprettet', - 'updated_quote': 'Tilbud oppdatert', - 'archived_quote': 'Tilbud arkivert', - 'deleted_quote': 'Tilbud slettet', - 'restored_quote': 'Suksessfullt gjenopprettet tilbud', - 'archived_quotes': 'Arkiverte :count tilbud', - 'deleted_quotes': 'Slettet :count tilbud', + 'quote': 'Quote', + 'quotes': 'Quotes', + 'new_quote': 'New Quote', + 'created_quote': 'Successfully created quote', + 'updated_quote': 'Successfully updated quote', + 'archived_quote': 'Successfully archived quote', + 'deleted_quote': 'Successfully deleted quote', + 'restored_quote': 'Successfully restored quote', + 'archived_quotes': 'Successfully archived :count quotes', + 'deleted_quotes': 'Successfully deleted :count quotes', 'restored_quotes': 'Successfully restored :value quotes', - 'expense': 'Utgift', - 'expenses': 'Utgifter', - 'vendor': 'Leverandør', - 'vendors': 'Leverandører', - 'task': 'Oppgave', - 'tasks': 'Oppgaver', - 'project': 'Prosjekt', - 'projects': 'Prosjekter', - 'activity_1': ':user opprettet kunde :client', - 'activity_2': ':user arkiverte kunde :client', - 'activity_3': ':user slettet kunde :client', - 'activity_4': ':user opprettet faktura :invoice', - 'activity_5': ':user oppdaterte faktura :invoice', + 'expense': 'Expense', + 'expenses': 'Expenses', + 'vendor': 'Vendor', + 'vendors': 'Vendors', + 'task': 'Task', + 'tasks': 'Tasks', + 'project': 'Project', + 'projects': 'Projects', + 'activity_1': ':user created client :client', + 'activity_2': ':user archived client :client', + 'activity_3': ':user deleted client :client', + 'activity_4': ':user created invoice :invoice', + 'activity_5': ':user updated invoice :invoice', 'activity_6': ':user emailed invoice :invoice for :client to :contact', 'activity_7': ':contact viewed invoice :invoice for :client', - 'activity_8': ':user arkiverte faktura :invoice', - 'activity_9': ':user slettet faktura :invoice', + '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', - 'activity_11': ':user oppdaterte betaling :payment', - 'activity_12': ':user arkiverte betaling :payment', - 'activity_13': ':user slettet betaling :payment', - 'activity_14': ':user la inn :credit kredit', - 'activity_15': ':user oppdaterte :credit kredit', - 'activity_16': ':user arkiverte :credit kredit', - 'activity_17': ':user slettet :credit kredit', - 'activity_18': ':user opprettet tilbud :quote', - 'activity_19': ':user oppdaterte tilbud :quote', + 'activity_11': ':user updated payment :payment', + 'activity_12': ':user archived payment :payment', + 'activity_13': ':user deleted payment :payment', + 'activity_14': ':user entered :credit credit', + 'activity_15': ':user updated :credit credit', + 'activity_16': ':user archived :credit credit', + 'activity_17': ':user deleted :credit credit', + 'activity_18': ':user created quote :quote', + 'activity_19': ':user updated quote :quote', 'activity_20': ':user emailed quote :quote for :client to :contact', - 'activity_21': ':contact viste tilbud :quote', - 'activity_22': ':user arkiverte tilbud :quote', - 'activity_23': ':user slettet tilbud :quote', - 'activity_24': ':user gjenopprettet tilbud :quote', - 'activity_25': ':user gjenopprettet faktura :invoice', - 'activity_26': ':user gjenopprettet kunde :client', - 'activity_27': ':user gjenopprettet betaling :payment', - 'activity_28': ':user gjenopprettet :credit kredit', + 'activity_21': ':contact viewed quote :quote', + 'activity_22': ':user archived quote :quote', + 'activity_23': ':user deleted quote :quote', + 'activity_24': ':user restored quote :quote', + 'activity_25': ':user restored invoice :invoice', + 'activity_26': ':user restored client :client', + 'activity_27': ':user restored payment :payment', + 'activity_28': ':user restored :credit credit', 'activity_29': ':contact approved quote :quote for :client', - 'activity_30': ':user opprettet leverandør :vendor', - 'activity_31': ':user arkiverte leverandør :vendor', - 'activity_32': ':user slettet leverandør :vendor', - 'activity_33': ':user gjenopprettet leverandør :vendor', - 'activity_34': ':user opprettet utgift :expense', - 'activity_35': ':user arkiverte utgift :expense', - 'activity_36': ':user slettet utgift :expense', - 'activity_37': ':user gjenopprettet utgift :expense', + 'activity_30': ':user created vendor :vendor', + 'activity_31': ':user archived vendor :vendor', + 'activity_32': ':user deleted vendor :vendor', + 'activity_33': ':user restored vendor :vendor', + 'activity_34': ':user created expense :expense', + 'activity_35': ':user archived expense :expense', + 'activity_36': ':user deleted expense :expense', + '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', 'activity_41': ':payment_amount payment (:payment) failed', - 'activity_42': ':user opprettet oppgave :task', - 'activity_43': ':user oppdaterte oppgave :task', - 'activity_44': ':user arkiverte oppgave :task', - 'activity_45': ':user slettet oppgave :task', - 'activity_46': ':user gjenopprettet oppgave :task', - 'activity_47': ':user oppdaterte utgift :expense', - 'activity_48': ':user updated ticket :ticket', - 'activity_49': ':user closed ticket :ticket', + 'activity_42': ':user created task :task', + 'activity_43': ':user updated task :task', + 'activity_44': ':user archived task :task', + 'activity_45': ':user deleted task :task', + 'activity_46': ':user restored task :task', + 'activity_47': ':user updated expense :expense', + 'activity_48': ':user updated ticket :ticket', + 'activity_49': ':user closed ticket :ticket', 'activity_50': ':user merged ticket :ticket', 'activity_51': ':user split ticket :ticket', 'activity_52': ':contact opened ticket :ticket', @@ -41547,14 +41985,14 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_82': ':user archived subscription :subscription', 'activity_83': ':user deleted subscription :subscription', 'activity_84': ':user restored subscription :subscription', - 'one_time_password': 'Engangs Passord', - 'emailed_quote': 'Tilbud sendt som e-post', + 'one_time_password': 'One Time Password', + 'emailed_quote': 'Successfully emailed quote', 'emailed_credit': 'Successfully emailed credit', 'marked_quote_as_sent': 'Successfully marked quote as sent', 'marked_credit_as_sent': 'Successfully marked credit as sent', 'expired': 'Expired', - 'all': 'Alle', - 'select': 'Velg', + 'all': 'All', + 'select': 'Select', 'long_press_multiselect': 'Long-press Multiselect', 'custom_value1': 'Custom Value', 'custom_value2': 'Custom Value', @@ -41578,9 +42016,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'payment_number_pattern': 'Payment Number Pattern', 'payment_number_counter': 'Payment Number Counter', 'invoice_number_pattern': 'Invoice Number Pattern', - 'invoice_number_counter': 'Fakturanummer-teller', + 'invoice_number_counter': 'Invoice Number Counter', 'quote_number_pattern': 'Quote Number Pattern', - 'quote_number_counter': 'Tilbudsnummer-teller', + 'quote_number_counter': 'Quote Number Counter', 'client_number_pattern': 'Credit Number Pattern', 'client_number_counter': 'Credit Number Counter', 'credit_number_pattern': 'Credit Number Pattern', @@ -41613,11 +42051,11 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_shipping_address2': 'Client Shipping Apt/Suite', 'type': 'Type', 'invoice_amount': 'Invoice Amount', - 'invoice_due_date': 'Forfallsdato', + 'invoice_due_date': 'Due Date', 'tax_rate1': 'Tax Rate 1', 'tax_rate2': 'Tax Rate 2', 'tax_rate3': 'Tax Rate 3', - 'auto_bill': 'Auto Fakturer', + 'auto_bill': 'Auto Bill', 'archived_at': 'Archived At', 'has_expenses': 'Has Expenses', 'custom_taxes1': 'Custom Taxes 1', @@ -41633,16 +42071,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'vendor_state': 'Vendor State', 'vendor_country': 'Vendor Country', 'is_approved': 'Is Approved', - 'tax_name': 'Skattenavn', + 'tax_name': 'Tax Name', 'tax_amount': 'Tax Amount', 'tax_paid': 'Tax Paid', - 'payment_amount': 'Beløp', - 'age': 'Alder', + 'payment_amount': 'Payment Amount', + 'age': 'Age', 'is_running': 'Is Running', 'time_log': 'Time Log', 'bank_id': 'Bank', 'expense_category_id': 'Expense Category ID', - 'expense_category': 'Utgiftskategori', + 'expense_category': 'Expense Category', 'invoice_currency_id': 'Invoice Currency ID', 'tax_name1': 'Tax Name 1', 'tax_name2': 'Tax Name 2', @@ -41651,7 +42089,29 @@ mixin LocalizationsProvider on LocaleCodeAware { 'status_color_theme': 'Status Color Theme', 'load_color_theme': 'Load Color Theme', }, - 'fa': { + 'pl': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'Opłata do faktury :amount wynosić będzie :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Zatwierdź', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -41703,7 +42163,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'giropay': 'GiroPay', 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', - 'set_password': 'Set Password', + 'set_password': 'Ustaw hasło', 'recommend_desktop': 'We recommend using the desktop app for the best performance', 'recommend_mobile': @@ -41725,8 +42185,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'registration': 'Registration', 'unauthorized_stripe_warning': 'Please authorize Stripe to accept online payments.', - 'view_expense': 'View expense # :expense', - 'view_statement': 'View Statement', + 'view_expense': 'Zobacz wydatek # :expense', + 'view_statement': 'Zobacz wyciąg', 'sepa': 'SEPA Direct Debit', 'ideal': 'iDEAL', 'przelewy24': 'Przelewy24', @@ -41782,7 +42242,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'expense_tax_help': 'Item tax rates are disabled', 'enable_markdown': 'Enable Markdown', 'enable_markdown_help': 'Convert markdown to HTML on the PDF', - 'user_guide': 'User Guide', + 'user_guide': 'Przewodnik użytkownika', 'add_second_contact': 'Add Second Contact', 'previous_page': 'Previous Page', 'next_page': 'Next Page', @@ -41800,7 +42260,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Table Alternate Row Background Color', 'invoice_header_background_color': 'Invoice Header Background Color', 'invoice_header_font_color': 'Invoice Header Font Color', - 'net_subtotal': 'Net', + 'net_subtotal': 'Cena netto', 'review_app': 'Review App', 'check_status': 'Check Status', 'free_trial': 'Free Trial', @@ -41816,7 +42276,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'subdomain_guide': 'The subdomain is used in the client portal to personalize links to match your brand. ie, https://your-brand.invoicing.co', 'send_time': 'Send Time', - 'import_data': 'Import Data', + 'import_data': 'Importuj dane', 'import_settings': 'Import Settings', 'json_file_missing': 'Please provide the JSON file', 'json_option_missing': 'Please select to import the settings and/or data', @@ -41863,18 +42323,18 @@ mixin LocalizationsProvider on LocaleCodeAware { 'contact_first_name': 'Contact First Name', 'contact_last_name': 'Contact Last Name', 'order': 'Order', - 'unassigned': 'Unassigned', + 'unassigned': 'Nieprzypisano', 'partial_value': 'Must be greater than zero and less than the total', 'search_kanban': 'Search Kanban', 'search_kanbans': 'Search Kanban', 'kanban': 'Kanban', - 'enable': 'فعال', + 'enable': 'Aktywuj', 'move_top': 'Move Top', 'move_up': 'Move Up', 'move_down': 'Move Down', 'move_bottom': 'Move Bottom', 'subdomain_help': - 'Set the subdomain or display the invoice on your own website.', + 'Ustaw subdomenę lub wyświetl fakturę na swojej stronie.', 'body_variable_missing': 'Error: the custom email must include a :body variable', 'add_body_variable_message': 'Make sure to include a :body variable', @@ -41912,7 +42372,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'refund_period': 'Refund Period', 'webhook_configuration': 'Webhook Configuration', 'purchase_page': 'Purchase Page', - 'security': 'Security', + 'security': 'Bezpieczeństwo', 'email_bounced': 'Email Bounced', 'email_spam_complaint': 'Spam Complaint', 'email_delivery': 'Email Delivery', @@ -41955,7 +42415,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Warning: Changing your phone number will disable 2FA', 'help_translate': 'Help Translate', 'please_select_a_country': 'Please select a country', - 'resend_invite': 'Resend Invitation', + 'resend_invite': 'Ponów zaproszenie', 'disabled_two_factor': 'Successfully disabled 2FA', 'connected_google': 'Successfully connected account', 'disconnected_google': 'Successfully disconnected account', @@ -41984,7 +42444,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'security_settings': 'Security Settings', 'resend_email': 'Resend Email', 'confirm_your_email_address': 'Please confirm your email address', - 'refunded_payment': 'Refunded Payment', + 'refunded_payment': 'Zwrócono płatność', 'partially_unapplied': 'Partially Unapplied', 'select_a_gmail_user': 'Please select a user authenticated with Gmail', 'list_long_press': 'List Long Press', @@ -41994,26 +42454,26 @@ mixin LocalizationsProvider on LocaleCodeAware { 'An email has been sent to confirm the email address', 'counter_pattern_error': 'To use :client_counter please add either :client_number or :client_id_number to prevent conflicts', - 'this_quarter': 'This Quarter', - 'last_quarter': 'Last Quarter', + 'this_quarter': 'Ten kwartał', + 'last_quarter': 'Poprzedni kwartał', 'to_update_run': 'To update run', - 'convert_to_invoice': 'Convert to Invoice', + 'convert_to_invoice': 'Konwertuj do faktury', 'registration_url': 'Registration URL', 'invoice_project': 'Invoice Project', - 'invoice_task': 'Invoice Task', - 'invoice_expense': 'Invoice Expense', + 'invoice_task': 'Fakturuj zadanie', + 'invoice_expense': 'Faktura na wydatek', 'search_payment_term': 'Search 1 Payment Term', 'search_payment_terms': 'Search :count Payment Terms', 'save_and_preview': 'Save and Preview', 'save_and_email': 'Save and Email', 'supported_events': 'Supported Events', - 'converted_amount': 'Converted Amount', + 'converted_amount': 'Kwota przeliczona', 'converted_balance': 'Converted Balance', 'converted_paid_to_date': 'Converted Paid to Date', 'converted_credit_balance': 'Converted Credit Balance', 'converted_total': 'Converted Total', 'is_sent': 'Is Sent', - 'default_documents': 'Default Documents', + 'default_documents': 'Domyślne dokumenty', 'document_upload': 'Document Upload', 'document_upload_help': 'Enable clients to upload documents', 'expense_total': 'Expense Total', @@ -42025,7 +42485,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'after_taxes': 'After Taxes', 'color': 'Color', 'show': 'Show', - 'hide': 'Hide', + 'hide': 'Ukryj', 'empty_columns': 'Empty Columns', 'debug_mode_is_enabled': 'Debug mode is enabled', 'debug_mode_is_enabled_help': @@ -42039,14 +42499,14 @@ mixin LocalizationsProvider on LocaleCodeAware { 'duplicate_column_mapping': 'Duplicate column mapping', 'uses_inclusive_taxes': 'Uses Inclusive Taxes', 'is_amount_discount': 'Is Amount Discount', - 'column': 'Column', - 'sample': 'Sample', + 'column': 'Kolumna', + 'sample': 'Przykład', 'map_to': 'Map To', - 'import': 'Import', + 'import': 'Importuj', 'first_row_as_column_names': 'Use first row as column names', - 'select_file': 'Please select a file', + 'select_file': 'Wybierz plik', 'no_file_selected': 'No File Selected', - 'csv_file': 'CSV file', + 'csv_file': 'Plik CSV', 'csv': 'CSV', 'freshbooks': 'FreshBooks', 'invoice2go': 'Invoice2go', @@ -42070,18 +42530,18 @@ mixin LocalizationsProvider on LocaleCodeAware { 'labels': 'Labels', 'add_custom': 'Add Custom', 'payment_tax': 'Payment Tax', - 'unpaid': 'Unpaid', + 'unpaid': 'Nie zapłacono', 'white_label': 'White Label', - 'delivery_note': 'Delivery Note', + 'delivery_note': 'Dowód dostawy', 'sent_invoices_are_locked': 'Sent invoices are locked', 'paid_invoices_are_locked': 'Paid invoices are locked', 'source_code': 'Source Code', 'app_platforms': 'App Platforms', 'invoice_late': 'Invoice Late', 'quote_expired': 'Quote Expired', - 'partial_due': 'Partial Due', - 'invoice_total': 'Invoice Total', - 'quote_total': 'Quote Total', + 'partial_due': 'Zaliczka', + 'invoice_total': 'Faktura ogółem', + 'quote_total': 'Suma oferty', 'credit_total': 'Credit Total', 'recurring_invoice_total': 'Invoice Total', 'actions': 'Actions', @@ -42089,15 +42549,15 @@ mixin LocalizationsProvider on LocaleCodeAware { 'task_number': 'Task Number', 'project_number': 'Project Number', 'project_name': 'Project Name', - 'warning': 'Warning', + 'warning': 'Ostrzeżenie', 'view_settings': 'View Settings', 'company_disabled_warning': 'Warning: this company has not yet been activated', 'late_invoice': 'Late Invoice', 'expired_quote': 'Expired Quote', 'remind_invoice': 'Remind Invoice', - 'cvv': 'CVV', - 'client_name': 'Client Name', + 'cvv': 'Kod CVV', + 'client_name': 'Nazwa klienta', 'client_phone': 'Client Phone', 'required_fields': 'Required Fields', 'calculated_rate': 'Calculated Rate', @@ -42130,17 +42590,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'configure_statuses': 'Configure Statuses', 'task_settings': 'Task Settings', 'configure_categories': 'Configure Categories', - 'expense_categories': 'Expense Categories', - 'new_expense_category': 'New Expense Category', + 'expense_categories': 'Kategorie wydatków', + 'new_expense_category': 'Nowa kategoria wydatków', 'edit_expense_category': 'Edit Expense Category', - 'created_expense_category': 'Successfully created expense category', - 'updated_expense_category': 'Successfully updated expense category', - 'archived_expense_category': 'Successfully archived expense category', - 'deleted_expense_category': 'Successfully deleted category', + 'created_expense_category': 'Kategoria wydatków została utworzona', + 'updated_expense_category': 'Kategoria wydatków została zaktualizowana', + 'archived_expense_category': 'Kategoria wydatków została zarchiwizowana', + 'deleted_expense_category': 'Usunięto kategorię', 'removed_expense_category': 'Successfully removed expense category', - 'restored_expense_category': 'Successfully restored expense category', - 'archived_expense_categories': - 'Successfully archived :count expense category', + 'restored_expense_category': 'Przywrócono kategorię wydatków', + 'archived_expense_categories': 'Zarchiwizowana :count kategorii wydatków', 'deleted_expense_categories': 'Successfully deleted expense :value categories', 'restored_expense_categories': @@ -42156,7 +42615,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'force_update_help': 'You are running the latest version but there may be pending fixes available.', 'mark_paid_help': 'Track the expense has been paid', - 'should_be_invoiced': 'Should be invoiced', + 'should_be_invoiced': 'Utwórz fakturę', 'should_be_invoiced_help': 'Enable the expense to be invoiced', 'add_documents_to_invoice_help': 'Make the documents visible', 'convert_currency_help': 'Set an exchange rate', @@ -42184,7 +42643,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'gateway_refund_help': 'Process the refund with the payment gateway', 'due_date_days': 'Due Date', 'paused': 'Paused', - 'mark_active': 'Mark Active', + 'mark_active': 'Oznacz jako aktywną', 'day_count': 'Day :count', 'first_day_of_the_month': 'First Day of the Month', 'last_day_of_the_month': 'Last Day of the Month', @@ -42192,16 +42651,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'endless': 'Endless', 'next_send_date': 'Next Send Date', 'remaining_cycles': 'Remaining Cycles', - 'recurring_invoice': 'Recurring Invoice', - 'recurring_invoices': 'Recurring Invoices', - 'new_recurring_invoice': 'New Recurring Invoice', + 'recurring_invoice': 'Odnawialna faktura', + 'recurring_invoices': 'Faktury odnawialne', + 'new_recurring_invoice': 'Nowa faktura odnawialna', 'edit_recurring_invoice': 'Edit Recurring Invoice', 'created_recurring_invoice': 'Successfully created recurring invoice', 'updated_recurring_invoice': 'Successfully updated recurring invoice', - 'archived_recurring_invoice': 'Successfully archived recurring invoice', - 'deleted_recurring_invoice': 'Successfully deleted recurring invoice', + 'archived_recurring_invoice': 'Odnawialna faktura została zarchiwizowana', + 'deleted_recurring_invoice': 'Odnawialna faktura została usunięta.', 'removed_recurring_invoice': 'Successfully removed recurring invoice', - 'restored_recurring_invoice': 'Successfully restored recurring invoice', + 'restored_recurring_invoice': 'Odnawialna faktura została przywrócona', 'archived_recurring_invoices': 'Successfully archived recurring :value invoices', 'deleted_recurring_invoices': @@ -42213,8 +42672,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'send_date': 'Send Date', 'auto_bill_on': 'Auto Bill On', 'minimum_under_payment_amount': 'Minimum Under Payment Amount', - 'profit': 'Profit', - 'line_item': 'Line Item', + 'profit': 'Zysk', + 'line_item': 'Element na liście', 'allow_over_payment': 'Allow Over Payment', 'allow_over_payment_help': 'Support paying extra to accept tips', 'allow_under_payment': 'Allow Under Payment', @@ -42233,35 +42692,35 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quota_exceeded': 'Quota Exceeded', 'upstream_failure': 'Upstream Failure', 'system_logs': 'System Logs', - 'view_portal': 'View Portal', + 'view_portal': 'Zobacz portal', 'copy_link': 'Copy Link', - 'token_billing': 'Save card details', + 'token_billing': 'Zapisz dane karty', 'welcome_to_invoice_ninja': 'Welcome to Invoice Ninja', - 'always': 'Always', + 'always': 'Zawsze', 'optin': 'Opt-In', 'optout': 'Opt-Out', 'label': 'Label', - 'client_number': 'Client Number', + 'client_number': 'Numer klienta', 'auto_convert': 'Auto Convert', - 'company_name': 'Company Name', + 'company_name': 'Nazwa firmy', 'reminder1_sent': 'Reminder 1 Sent', 'reminder2_sent': 'Reminder 2 Sent', 'reminder3_sent': 'Reminder 3 Sent', 'reminder_last_sent': 'Reminder Last Sent', 'pdf_page_info': 'Page :current of :total', - 'emailed_invoices': 'Successfully emailed invoices', - 'emailed_quotes': 'Successfully emailed quotes', + 'emailed_invoices': 'Wysyłka maili powiodła się', + 'emailed_quotes': 'Wysyłka ofert powiodła się', 'emailed_credits': 'Successfully emailed credits', - 'gateway': 'Gateway', + 'gateway': 'Dostawca płatności', 'view_in_stripe': 'View in Stripe', 'rows_per_page': 'Rows Per Page', - 'hours': 'Hours', - 'statement': 'Statement', - 'taxes': 'مالیات', - 'surcharge': 'Surcharge', + 'hours': 'Godziny', + 'statement': 'Wyciąg', + 'taxes': 'Podatki', + 'surcharge': 'Dopłata', 'apply_payment': 'Apply Payment', - 'apply_credit': 'Apply Credit', - 'apply': 'Apply', + 'apply_credit': 'Zastosuj kredyt', + 'apply': 'Zastosuj', 'unapplied': 'Unapplied', 'select_label': 'Select Label', 'custom_labels': 'Custom Labels', @@ -42270,9 +42729,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'file_type': 'File Type', 'height': 'Height', 'width': 'Width', - 'to': 'To', + 'to': 'Do', 'health_check': 'Health Check', - 'payment_type_id': 'Payment Type', + 'payment_type_id': 'Typ płatności', 'last_login_at': 'Last Login At', 'company_key': 'Company Key', 'storefront': 'Storefront', @@ -42280,9 +42739,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_created': 'Client Created', 'online_payment_email': 'Online Payment Email', 'manual_payment_email': 'Manual Payment Email', - 'completed': 'Completed', + 'completed': 'Zakończone', 'gross': 'Gross', - 'net_amount': 'Net Amount', + 'net_amount': 'Kwota netto', 'net_balance': 'Net Balance', 'client_settings': 'Client Settings', 'selected_invoices': 'Selected Invoices', @@ -42290,43 +42749,43 @@ mixin LocalizationsProvider on LocaleCodeAware { 'selected_quotes': 'Selected Quotes', 'selected_tasks': 'Selected Tasks', 'selected_expenses': 'Selected Expenses', - 'upcoming_invoices': 'Upcoming Invoices', + 'upcoming_invoices': 'Nadchodzące faktury', 'past_due_invoices': 'Past Due Invoices', - 'recent_payments': 'Recent Payments', - 'upcoming_quotes': 'Upcoming Quotes', - 'expired_quotes': 'Expired Quotes', + 'recent_payments': 'Ostatnie płatności', + 'upcoming_quotes': 'Nadchodzące oferty', + 'expired_quotes': 'Wygasłe oferty', 'create_client': 'Create Client', - 'create_invoice': 'Create Invoice', - 'create_quote': 'Create Quote', + 'create_invoice': 'Utwórz Fakturę', + 'create_quote': 'Stwórz ofertę', 'create_payment': 'Create Payment', - 'create_vendor': 'Create vendor', + 'create_vendor': 'Utwórz dostawcę', 'update_quote': 'Update Quote', - 'delete_quote': 'Delete Quote', + 'delete_quote': 'Usuń ofertę', 'update_invoice': 'Update Invoice', - 'delete_invoice': 'حذف فاکتور', + 'delete_invoice': 'Usuń fakturę', 'update_client': 'Update Client', - 'delete_client': 'Delete Client', - 'delete_payment': 'Delete Payment', + 'delete_client': 'Usuń klienta', + 'delete_payment': 'Usuń płatność', 'update_vendor': 'Update Vendor', - 'delete_vendor': 'Delete Vendor', + 'delete_vendor': 'Usuń dostawcę', 'create_expense': 'Create Expense', 'update_expense': 'Update Expense', - 'delete_expense': 'Delete Expense', - 'create_task': 'Create Task', + 'delete_expense': 'Usuń wydatek', + 'create_task': 'Stwórz zadanie', 'update_task': 'Update Task', - 'delete_task': 'Delete Task', + 'delete_task': 'Usuń zadanie', 'approve_quote': 'Approve Quote', - 'off': 'Off', + 'off': 'Wyłaczono', 'when_paid': 'When Paid', 'expires_on': 'Expires On', - 'free': 'Free', + 'free': 'Darmowe', 'plan': 'Plan', 'show_sidebar': 'Show Sidebar', 'hide_sidebar': 'Hide Sidebar', 'event_type': 'Event Type', 'target_url': 'Target', 'copy': 'Copy', - 'must_be_online': 'Please restart the app once connected to the internet', + 'must_be_online': 'Uruchom ponownie aplikację po połączeniu z Internetem', 'crons_not_enabled': 'The crons need to be enabled', 'api_webhooks': 'API Webhooks', 'search_webhooks': 'Search :count Webhooks', @@ -42345,18 +42804,18 @@ mixin LocalizationsProvider on LocaleCodeAware { 'deleted_webhooks': 'Successfully deleted :value webhooks', 'removed_webhooks': 'Successfully removed :value webhooks', 'restored_webhooks': 'Successfully restored :value webhooks', - 'api_tokens': 'API Tokens', + 'api_tokens': 'Tokeny API', 'api_docs': 'API Docs', 'search_tokens': 'Search :count Tokens', 'search_token': 'Search 1 Token', 'token': 'Token', - 'tokens': 'Tokens', + 'tokens': 'Tokeny', 'new_token': 'New Token', - 'edit_token': 'Edit Token', - 'created_token': 'Successfully created token', - 'updated_token': 'Successfully updated token', - 'archived_token': 'Successfully archived token', - 'deleted_token': 'Successfully deleted token', + 'edit_token': 'Edytuj token', + 'created_token': 'Token został utworzony', + 'updated_token': 'Token został zaktualizowany', + 'archived_token': 'Token został zarchiwizowany', + 'deleted_token': 'Token został usunięty', 'removed_token': 'Successfully removed token', 'restored_token': 'Successfully restored token', 'archived_tokens': 'Successfully archived :value tokens', @@ -42366,46 +42825,46 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_registration_help': 'Enable clients to self register in the portal', 'customize_and_preview': 'Customize & Preview', - 'email_invoice': 'ایمیل کردن فاکتور', - 'email_quote': 'Email Quote', + 'email_invoice': 'Wyślij fakturę', + 'email_quote': 'Wyślij ofertę', 'email_credit': 'Email Credit', 'email_payment': 'Email Payment', 'client_email_not_set': 'Client does not have an email address set', 'ledger': 'Ledger', - 'view_pdf': 'View PDF', + 'view_pdf': 'Wyświetl PDF', 'all_records': 'All records', 'owned_by_user': 'Owned by user', 'credit_remaining': 'Credit Remaining', - 'contact_name': 'Contact Name', + 'contact_name': 'Nazwa kontaktu', 'use_default': 'Use default', 'reminder_endless': 'Endless Reminders', 'number_of_days': 'Number of days', 'configure_payment_terms': 'Configure Payment Terms', 'payment_term': 'Payment Term', 'new_payment_term': 'New Payment Term', - 'edit_payment_term': 'Edit Payment Term', - 'created_payment_term': 'Successfully created payment term', - 'updated_payment_term': 'Successfully updated payment term', - 'archived_payment_term': 'Successfully archived payment term', + 'edit_payment_term': 'Edytuj warunki płatności', + 'created_payment_term': 'Utworzono termin płatności', + 'updated_payment_term': 'Zaktualizowano termin płatności', + 'archived_payment_term': 'Zarchiwizowano termin płatności', 'deleted_payment_term': 'Successfully deleted payment term', 'removed_payment_term': 'Successfully removed payment term', 'restored_payment_term': 'Successfully restored payment term', 'archived_payment_terms': 'Successfully archived :value payment terms', 'deleted_payment_terms': 'Successfully deleted :value payment terms', 'restored_payment_terms': 'Successfully restored :value payment terms', - 'email_sign_in': 'Sign in with email', + 'email_sign_in': 'Zaloguj się przez email', 'change': 'Change', 'change_to_mobile_layout': 'Change to the mobile layout?', 'change_to_desktop_layout': 'Change to the desktop layout?', 'send_from_gmail': 'Send from Gmail', 'reversed': 'Reversed', 'cancelled': 'Cancelled', - 'credit_amount': 'Credit Amount', + 'credit_amount': 'Kwota kredytu', 'quote_amount': 'Quote Amount', 'hosted': 'Hosted', 'selfhosted': 'Self-Hosted', - 'exclusive': 'Exclusive', - 'inclusive': 'Inclusive', + 'exclusive': 'Doliczanie do kwoty', + 'inclusive': 'Wliczanie w kwotę', 'hide_menu': 'Hide Menu', 'show_menu': 'Show Menu', 'partially_refunded': 'Partially Refunded', @@ -42425,7 +42884,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'search_expenses': 'Search Expenses', 'search_payments': 'Search Payments', 'search_groups': 'Search Groups', - 'search_company': 'Search Company', + 'search_company': 'Szukaj w firmie', 'search_document': 'Search 1 Document', 'search_design': 'Search 1 Design', 'search_invoice': 'Search 1 Invoice', @@ -42441,15 +42900,15 @@ mixin LocalizationsProvider on LocaleCodeAware { 'search_expense': 'Search 1 Expense', 'search_payment': 'Search 1 Payment', 'search_group': 'Search 1 Group', - 'refund_payment': 'Refund Payment', + 'refund_payment': 'Zwrot płatności', 'cancelled_invoice': 'Successfully cancelled invoice', 'cancelled_invoices': 'Successfully cancelled invoices', 'reversed_invoice': 'Successfully reversed invoice', 'reversed_invoices': 'Successfully reversed invoices', 'reverse': 'Reverse', - 'full_name': 'Full Name', - 'city_state_postal': 'City/State/Postal', - 'postal_city_state': 'Postal/City/State', + 'full_name': 'Pełna nazwa', + 'city_state_postal': 'Miasto/województwo/kod pocztowy', + 'postal_city_state': 'Kod pocztowy/Miasto/Województwo', 'custom1': 'First Custom', 'custom2': 'Second Custom', 'custom3': 'Third Custom', @@ -42461,28 +42920,28 @@ mixin LocalizationsProvider on LocaleCodeAware { 'purge_data_message': 'Warning: This will permanently erase your data, there is no undo.', 'invoice_balance': 'Invoice Balance', - 'age_group_0': '0 - 30 Days', - 'age_group_30': '30 - 60 Days', - 'age_group_60': '60 - 90 Days', - 'age_group_90': '90 - 120 Days', - 'age_group_120': '120+ Days', + 'age_group_0': '0 - 30 dni', + 'age_group_30': '30 - 60 dni', + 'age_group_60': '60 - 90 dni', + 'age_group_90': '90 - 120 dni', + 'age_group_120': 'ponad 120 dni', 'refresh': 'Refresh', 'saved_design': 'Successfully saved design', 'client_details': 'Client Details', 'company_address': 'Company Address', - 'invoice_details': 'Invoice Details', + 'invoice_details': 'Szczegóły faktury', 'quote_details': 'Quote Details', 'credit_details': 'Credit Details', 'product_columns': 'Product Columns', 'task_columns': 'Task Columns', 'add_field': 'Add Field', 'all_events': 'All Events', - 'permissions': 'Permissions', + 'permissions': 'Uprawnienia', 'none': 'None', 'owned': 'Owned', 'payment_success': 'Payment Success', 'payment_failure': 'Payment Failure', - 'invoice_sent': ':count invoice sent', + 'invoice_sent': ':count wysłana faktura', 'quote_sent': 'Quote Sent', 'credit_sent': 'Credit Sent', 'invoice_viewed': 'Invoice Viewed', @@ -42491,10 +42950,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'quote_approved': 'Quote Approved', 'receive_all_notifications': 'Receive All Notifications', 'purchase_license': 'Purchase License', - 'apply_license': 'Apply License', - 'cancel_account': 'Delete Account', + 'apply_license': 'Zastosuj licencję', + 'cancel_account': 'Anuluj konto', 'cancel_account_message': - 'Warning: This will permanently delete your account, there is no undo.', + 'Ostrzeżenie: Nie można cofnąć tej operacji, wszystkie twoje dane zostaną usunięte.', 'delete_company': 'Delete Company', 'delete_company_message': 'Warning: This will permanently delete your company, there is no undo.', @@ -42502,7 +42961,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'converted_quote': 'Successfully converted quote', 'credit_design': 'Credit Design', 'includes': 'Includes', - 'header': 'Header', + 'header': 'Nagłówek', 'load_design': 'Load Design', 'css_framework': 'CSS Framework', 'custom_designs': 'Custom Designs', @@ -42518,38 +42977,38 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_designs': 'Successfully archived :value designs', 'deleted_designs': 'Successfully deleted :value designs', 'restored_designs': 'Successfully restored :value designs', - 'proposals': 'Proposals', + 'proposals': 'Propozycje', 'tickets': 'Tickets', - 'recurring_quotes': 'Recurring Quotes', + 'recurring_quotes': 'Powtarzalne wyceny', 'recurring_tasks': 'Recurring Tasks', - 'account_management': 'Account Management', - 'credit_date': 'Credit Date', - 'credit': 'Credit', - 'credits': 'Credits', - 'new_credit': 'Enter Credit', - 'edit_credit': 'Edit Credit', - 'created_credit': 'Successfully created credit', - 'updated_credit': 'Successfully updated credit', - 'archived_credit': 'Successfully archived credit', - 'deleted_credit': 'Successfully deleted credit', + 'account_management': 'Zarządzanie kontem', + 'credit_date': 'Data kredytu', + 'credit': 'Kredyt', + 'credits': 'Kredyty', + 'new_credit': 'Wprowadź kredyt', + 'edit_credit': 'Edytuj kredyt', + 'created_credit': 'Kredyt został utworzony', + 'updated_credit': 'Zaktualizowano kredyt', + 'archived_credit': 'Kredyt zarchiwizowano', + 'deleted_credit': 'Kredyt został usunięty', 'removed_credit': 'Successfully removed credit', - 'restored_credit': 'Successfully restored credit', - 'archived_credits': 'Successfully archived :count credits', - 'deleted_credits': 'Successfully deleted :count credits', + 'restored_credit': 'Kredyt został przywrócony', + 'archived_credits': 'Zarchiwizowano :count kredyty/kredytów', + 'deleted_credits': 'Usunięto :count kredyty/kredytów', 'restored_credits': 'Successfully restored :value credits', - 'current_version': 'Current version', + 'current_version': 'Aktualna wersja', 'latest_version': 'Latest Version', 'update_now': 'Update Now', 'a_new_version_is_available': 'A new version of the web app is available', 'update_available': 'Update Available', 'app_updated': 'Update successfully completed', - 'learn_more': 'مشاهده بیشتر', + 'learn_more': 'Więcej informacji', 'integrations': 'Integrations', 'tracking_id': 'Tracking Id', 'slack_webhook_url': 'Slack Webhook URL', 'credit_footer': 'Credit Footer', 'credit_terms': 'Credit Terms', - 'new_company': 'New Company', + 'new_company': 'Nowa firma', 'added_company': 'Successfully added company', 'company1': 'Custom Company 1', 'company2': 'Custom Company 2', @@ -42601,21 +43060,21 @@ mixin LocalizationsProvider on LocaleCodeAware { 'group4': 'Custom Group 4', 'reset': 'Reset', 'number': 'Number', - 'export': 'Export', - 'chart': 'Chart', + 'export': 'Eksport', + 'chart': 'Wykres', 'count': 'Count', - 'totals': 'Totals', - 'blank': 'Blank', - 'day': 'Day', - 'month': 'Month', - 'year': 'Year', + 'totals': 'Suma', + 'blank': 'Puste', + 'day': 'Dzień', + 'month': 'Miesiąc', + 'year': 'Rok', 'subgroup': 'Subgroup', 'is_active': 'Is Active', - 'group_by': 'Group by', - 'credit_balance': 'Credit Balance', + 'group_by': 'Grupuj według', + 'credit_balance': 'Saldo kredytowe', 'contact_last_login': 'Contact Last Login', 'contact_full_name': 'Contact Full Name', - 'contact_phone': 'Contact Phone', + 'contact_phone': 'Numer telefonu kontaktu', 'contact_custom_value1': 'Contact Custom Value 1', 'contact_custom_value2': 'Contact Custom Value 2', 'contact_custom_value3': 'Contact Custom Value 3', @@ -42632,36 +43091,36 @@ mixin LocalizationsProvider on LocaleCodeAware { 'billing_state': 'Billing State/Province', 'billing_postal_code': 'Billing Postal Code', 'billing_country': 'Billing Country', - 'client_id': 'Client Id', + 'client_id': 'Numer klienta', 'assigned_to': 'Assigned to', - 'created_by': 'Created by :name', + 'created_by': 'Utworzono przez :name', 'assigned_to_id': 'Assigned To Id', 'created_by_id': 'Created By Id', 'add_column': 'Add Column', 'edit_columns': 'Edit Columns', - 'columns': 'Columns', - 'aging': 'Aging', - 'profit_and_loss': 'Profit and Loss', - 'reports': 'Reports', - 'report': 'Report', - 'add_company': 'Add Company', + 'columns': 'Kolumny', + 'aging': 'Odkładanie', + 'profit_and_loss': 'Zysk i strata', + 'reports': 'Raporty', + 'report': 'Raport', + 'add_company': 'Dodaj firmę', 'unpaid_invoice': 'Unpaid Invoice', 'paid_invoice': 'Paid Invoice', 'unapproved_quote': 'Unapproved Quote', - 'help': 'Help', - 'refund': 'Refund', + 'help': 'Pomoc', + 'refund': 'Zwrot', 'refund_date': 'Refund Date', 'filtered_by': 'Filtered by', - 'contact_email': 'Contact Email', + 'contact_email': 'Email kontaktowy', 'multiselect': 'Multiselect', - 'entity_state': 'State', + 'entity_state': 'Stan', 'verify_password': 'Verify Password', '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.', - 'message': 'Message', - 'from': 'From', + 'message': 'Wiadomość', + 'from': 'Od', 'show_product_details': 'Show Product Details', 'show_product_details_help': 'Include the description and cost in the product dropdown', @@ -42669,15 +43128,15 @@ mixin LocalizationsProvider on LocaleCodeAware { 'adjust_fee_percent': 'Adjust Fee Percent', 'adjust_fee_percent_help': 'Adjust percent to account for fee', 'configure_settings': 'Configure Settings', - 'support_forum': 'support forum', + 'support_forum': 'forum wsparcia', 'about': 'About', - 'documentation': 'Documentation', - 'contact_us': 'Contact Us', - 'subtotal': 'جمع جز', - 'line_total': 'خط کل', - 'item': 'اقلام', + 'documentation': 'Dokumentacja', + 'contact_us': 'Skontaktuj się z nami', + 'subtotal': 'Suma wartości netto', + 'line_total': 'Wartość', + 'item': 'Pozycja', 'credit_email': 'Credit Email', - 'iframe_url': 'Website', + 'iframe_url': 'Strona internetowa', 'domain_url': 'Domain URL', 'password_is_too_short': 'Password is too short', 'password_is_too_easy': @@ -42686,8 +43145,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'client_portal_dashboard': 'Client Portal Dashboard', 'please_enter_a_value': 'Please enter a value', 'deleted_logo': 'Successfully deleted logo', - 'yes': 'Yes', - 'no': 'No', + 'yes': 'Tak', + 'no': 'Nie', 'generate_number': 'Generate Number', 'when_saved': 'When Saved', 'when_sent': 'When Sent', @@ -42701,7 +43160,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'mobile': 'Mobile', 'desktop': 'Desktop', 'layout': 'Layout', - 'view': 'View', + 'view': 'Podgląd', 'module': 'Module', 'first_custom': 'First Custom', 'second_custom': 'Second Custom', @@ -42725,19 +43184,19 @@ mixin LocalizationsProvider on LocaleCodeAware { 'two_tax_rates': 'Two Tax Rates', 'three_tax_rates': 'Three Tax Rates', 'default_tax_rate': 'Default Tax Rate', - 'user': 'User', + 'user': 'Użytkownik', 'invoice_tax': 'Invoice Tax', 'line_item_tax': 'Line Item Tax', 'inclusive_taxes': 'Inclusive Taxes', 'invoice_tax_rates': 'Invoice Tax Rates', 'item_tax_rates': 'Item Tax Rates', - 'no_client_selected': 'Please select a client', + 'no_client_selected': 'Wybierz klienta', 'configure_rates': 'Configure rates', 'configure_gateways': 'Configure Gateways', - 'tax_settings': 'Tax Settings', + 'tax_settings': 'Ustawienia podatków', 'tax_settings_rates': 'Tax Rates', 'accent_color': 'Accent Color', - 'switch': 'Switch', + 'switch': 'Zmień', 'comma_sparated_list': 'Comma separated list', 'options': 'Options', 'single_line_text': 'Single-line text', @@ -42745,68 +43204,68 @@ mixin LocalizationsProvider on LocaleCodeAware { 'dropdown': 'Dropdown', 'field_type': 'Field Type', 'recover_password_email_sent': 'A password recovery email has been sent', - 'submit': 'Submit', - 'recover_password': 'Recover your password', + 'submit': 'Wyślij', + 'recover_password': 'Odzyskaj swoje hasło', 'late_fees': 'Late Fees', 'credit_number': 'Credit Number', 'payment_number': 'Payment Number', 'late_fee_amount': 'Late Fee Amount', 'late_fee_percent': 'Late Fee Percent', - 'schedule': 'Schedule', + 'schedule': 'Zaplanuj', 'before_due_date': 'Before the due date', 'after_due_date': 'After the due date', 'after_invoice_date': 'After the invoice date', - 'days': 'Days', - 'invoice_email': 'Invoice Email', - 'payment_email': 'Payment Email', + 'days': 'Dni', + 'invoice_email': 'Email faktury', + 'payment_email': 'Email płatności', 'partial_payment': 'Partial Payment', 'payment_partial': 'Partial Payment', 'partial_payment_email': 'Partial Payment Email', - 'quote_email': 'Quote Email', + 'quote_email': 'Email oferty', 'endless_reminder': 'Endless Reminder', 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrator', 'administrator_help': - 'Allow user to manage users, change settings and modify all records', - 'user_management': 'User Management', - 'users': 'Users', - 'new_user': 'New User', - 'edit_user': 'Edit User', + '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', + 'edit_user': 'Edytuj użytkownika', 'created_user': 'Successfully created user', - 'updated_user': 'Successfully updated user', - 'archived_user': 'Successfully archived user', - 'deleted_user': 'Successfully deleted user', + 'updated_user': 'Użytkownik został zaktualizowany', + 'archived_user': 'Użytkownik został zarchiwizowany', + 'deleted_user': 'Użytkownik został usunięty', 'removed_user': 'Successfully removed user', - 'restored_user': 'Successfully restored user', + 'restored_user': 'Użytkownik został przywrócony', 'archived_users': 'Successfully archived :value users', 'deleted_users': 'Successfully deleted :value users', 'removed_users': 'Successfully removed :value users', 'restored_users': 'Successfully restored :value users', - 'general_settings': 'General Settings', - 'invoice_options': 'Invoice Options', - 'hide_paid_to_date': 'Hide Paid to Date', + 'general_settings': 'Ustawienia ogólne', + 'invoice_options': 'Opcje faktury', + 'hide_paid_to_date': 'Ukryj pole \"Zapłacono dotychczas\"', 'hide_paid_to_date_help': - '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', - 'all_pages_footer': 'Show Footer on', - 'first_page': 'First page', - 'all_pages': 'All pages', - 'last_page': 'Last page', + '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', + 'all_pages_footer': 'Pokaż stopkę na', + 'first_page': 'Pierwsza strona', + 'all_pages': 'Wszystkie strony', + 'last_page': 'Ostatnia strona', 'primary_font': 'Primary Font', 'secondary_font': 'Secondary Font', - 'primary_color': 'Primary Color', - 'secondary_color': 'Secondary Color', - 'page_size': 'Page Size', - 'font_size': 'Font Size', + 'primary_color': 'Główny kolor', + 'secondary_color': 'Dodatkowy kolor', + 'page_size': 'Rozmiar strony', + 'font_size': 'Rozmiar fonta', 'quote_design': 'Quote Design', - 'invoice_fields': 'Invoice Fields', - 'product_fields': 'Product Fields', - 'invoice_terms': 'قوانین فاکتور', - 'invoice_footer': 'Invoice Footer', - 'quote_terms': 'Quote Terms', - 'quote_footer': 'Quote Footer', + 'invoice_fields': 'Pola faktury', + 'product_fields': 'Pola produktów', + 'invoice_terms': 'Warunki do faktury', + 'invoice_footer': 'Stopka faktury', + 'quote_terms': 'Warunki oferty', + 'quote_footer': 'Stopka oferty', 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': 'Automatically email recurring invoices when they are created.', @@ -42816,28 +43275,28 @@ mixin LocalizationsProvider on LocaleCodeAware { 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': 'Automatically archive quotes when they are converted.', - 'auto_convert_quote': 'Auto Convert', + 'auto_convert_quote': 'Automatycznie konwertuj', 'auto_convert_quote_help': - 'Automatically convert a quote to an invoice when approved by a client.', + 'Utwórz automatycznie fakturę z oferty zaakceptowanej przez klienta.', 'workflow_settings': 'Workflow Settings', - 'freq_daily': 'Daily', - 'freq_weekly': 'Weekly', - 'freq_two_weeks': 'Two weeks', - 'freq_four_weeks': 'Four weeks', - 'freq_monthly': 'Monthly', - 'freq_two_months': 'Two months', - 'freq_three_months': 'Three months', + 'freq_daily': 'Codziennie', + 'freq_weekly': 'Co tydzień', + 'freq_two_weeks': 'Co dwa tygodnie', + 'freq_four_weeks': 'Co cztery tygodnie', + 'freq_monthly': 'Co miesiąc', + 'freq_two_months': 'Dwa miesiące', + 'freq_three_months': 'Co trzy miesiące', 'freq_four_months': 'Four months', - 'freq_six_months': 'Six months', - 'freq_annually': 'Annually', - 'freq_two_years': 'Two years', + 'freq_six_months': 'Co sześć miesięcy', + 'freq_annually': 'Co rok', + 'freq_two_years': 'Dwa lata', 'freq_three_years': 'Three Years', - 'never': 'Never', + 'never': 'Nigdy', 'company': 'Company', - 'generated_numbers': 'Generated Numbers', - 'charge_taxes': 'Charge taxes', - 'next_reset': 'Next Reset', - 'reset_counter': 'Reset Counter', + 'generated_numbers': 'Wygenerowane numery', + 'charge_taxes': 'Obciąż podatkami', + 'next_reset': 'Następny reset', + 'reset_counter': 'Zresetuj licznik', 'recurring_prefix': 'Recurring Prefix', 'number_padding': 'Number Padding', 'general': 'General', @@ -42857,87 +43316,87 @@ mixin LocalizationsProvider on LocaleCodeAware { 'task_field': 'Task Field', 'group_field': 'Group Field', 'number_counter': 'Number Counter', - 'prefix': 'Prefix', + 'prefix': 'Prefiks', 'number_pattern': 'Number Pattern', 'messages': 'Messages', - 'custom_css': 'Custom CSS', + 'custom_css': 'Własny CSS', 'custom_javascript': 'Custom JavaScript', 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': 'Show the client signature on the invoice/quote PDF.', - 'show_accept_invoice_terms': 'Invoice Terms Checkbox', + 'show_accept_invoice_terms': 'Przycisk wyboru do warunków faktury', 'show_accept_invoice_terms_help': - 'Require client to confirm that they accept the invoice terms.', - 'show_accept_quote_terms': 'Quote Terms Checkbox', + 'Wymagaj od klienta potwierdzenia, że akceptuje warunki faktury.', + 'show_accept_quote_terms': 'Przycisk wyboru do warunków oferty', 'show_accept_quote_terms_help': - '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_quote_signature': 'Quote Signature', - 'enable_portal_password': 'Password Protect Invoices', + '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': - '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.', - 'authorization': 'Authorization', - 'subdomain': 'Subdomain', - 'domain': 'Domain', + '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.', + 'authorization': 'Autoryzacja', + 'subdomain': 'Subdomena', + 'domain': 'Domena', 'portal_mode': 'Portal Mode', - 'email_signature': 'Regards,', + '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.', - 'plain': 'Plain', - 'light': 'Light', - 'dark': 'Dark', - 'email_design': 'Email Design', + 'plain': 'Zwykły', + 'light': 'Jasny', + 'dark': 'Ciemny', + 'email_design': 'Motyw email', 'attach_pdf': 'Attach PDF', 'attach_documents': 'Attach Documents', 'attach_ubl': 'Attach UBL', 'email_style': 'Email Style', - 'enable_email_markup': 'Enable Markup', - 'reply_to_email': 'Reply-To Email', + 'enable_email_markup': 'Aktywuj Markup', + 'reply_to_email': 'Odpowiedz do:', 'reply_to_name': 'Reply-To Name', - 'bcc_email': 'BCC Email', + 'bcc_email': 'UDW Email', 'processed': 'Processed', - 'credit_card': 'Credit Card', - 'bank_transfer': 'Bank Transfer', - 'priority': 'Priority', + 'credit_card': 'Karta Kredytowa', + 'bank_transfer': 'Przelew bankowy', + 'priority': 'Priorytet', 'fee_amount': 'Fee Amount', 'fee_percent': 'Fee Percent', 'fee_cap': 'Fee Cap', 'limits_and_fees': 'Limits/Fees', - 'enable_min': 'Enable min', - 'enable_max': 'Enable max', + 'enable_min': 'Aktywuj min', + 'enable_max': 'Aktywuj max', 'min_limit': 'Min: :min', 'max_limit': 'Max: :max', 'min': 'Min', 'max': 'Max', 'accepted_card_logos': 'Accepted Card Logos', 'credentials': 'Credentials', - 'update_address': 'Update Address', - 'update_address_help': 'Update client\'s address with provided details', - 'rate': 'نرخ', - 'tax_rate': 'Tax Rate', - 'new_tax_rate': 'New Tax Rate', - 'edit_tax_rate': 'Edit tax rate', + 'update_address': 'Aktualizuj adres', + 'update_address_help': + 'Zaktualizuj dane adresowe klienta na podstawie dostarczonych informacji', + 'rate': 'Stawka', + 'tax_rate': 'Stawka podatkowa', + 'new_tax_rate': 'Nowa stawka podatkowa', + 'edit_tax_rate': 'Edytuj stawkę podatkową', 'created_tax_rate': 'Successfully created tax rate', 'updated_tax_rate': 'Successfully updated tax rate', - 'archived_tax_rate': 'Successfully archived the tax rate', + 'archived_tax_rate': 'Zarchiwizowano stawkę podatkową', 'deleted_tax_rate': 'Successfully deleted tax rate', 'restored_tax_rate': 'Successfully restored tax rate', 'archived_tax_rates': 'Successfully archived :value tax rates', 'deleted_tax_rates': 'Successfully deleted :value tax rates', 'restored_tax_rates': 'Successfully restored :value tax rates', - 'fill_products': 'Auto-fill products', + 'fill_products': 'Automatycznie uzupełniaj produkty', 'fill_products_help': - 'Selecting a product will automatically fill in the description and cost', - 'update_products': 'Auto-update products', + 'Wybieranie produktu automatycznie uzupełni opis i kwotę', + 'update_products': 'Automatycznie aktualizuj produkty', 'update_products_help': - 'Updating an invoice will automatically update the product library', + 'Zaktualizowanie faktury automatycznie uaktualni produkt w bibliotece produktów', 'convert_products': 'Convert Products', 'convert_products_help': - 'Automatically convert product prices to the client\'s currency', - 'fees': 'Fees', - 'limits': 'Limits', + 'Automatycznie zamieniaj ceny produktu na walutę klienta', + 'fees': 'Opłaty', + 'limits': 'Limity', 'provider': 'Provider', 'company_gateway': 'Payment Gateway', 'company_gateways': 'Payment Gateways', @@ -42954,34 +43413,34 @@ mixin LocalizationsProvider on LocaleCodeAware { 'continue_editing': 'Continue Editing', 'discard_changes': 'Discard Changes', 'default_value': 'Default value', - 'disabled': 'Disabled', + 'disabled': 'Wyłączono', 'currency_format': 'Currency Format', 'first_day_of_the_week': 'First Day of the Week', 'first_month_of_the_year': 'First Month of the Year', - 'sunday': 'Sunday', - 'monday': 'Monday', - 'tuesday': 'Tuesday', - 'wednesday': 'Wednesday', - 'thursday': 'Thursday', - 'friday': 'Friday', - 'saturday': 'Saturday', - 'january': 'January', - 'february': 'February', - 'march': 'March', - 'april': 'April', - 'may': 'May', - 'june': 'June', - 'july': 'July', - 'august': 'August', - 'september': 'September', - 'october': 'October', - 'november': 'November', - 'december': 'December', + 'sunday': 'Niedziela', + 'monday': 'Poniedziałek', + 'tuesday': 'Wtorek', + 'wednesday': 'Środa', + 'thursday': 'Czwartek', + 'friday': 'Piątek', + 'saturday': 'Sobota', + 'january': 'Styczeń', + 'february': 'Luty', + 'march': 'Marzec', + 'april': 'Kwiecień', + 'may': 'Maj', + 'june': 'Czerwiec', + 'july': 'Lipiec', + 'august': 'Sierpień', + 'september': 'Wrzesień', + 'october': 'Październik', + 'november': 'Listopad', + 'december': 'Grudzień', 'symbol': 'Symbol', 'ocde': 'Code', 'date_format': 'Date Format', 'datetime_format': 'Datetime Format', - 'military_time': '24 Hour Time', + 'military_time': '24 godzinny czas', 'military_time_help': '24 Hour Display', 'send_reminders': 'Send Reminders', 'timezone': 'Timezone', @@ -42991,7 +43450,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'filtered_by_client': 'Filtered by Client', 'filtered_by_vendor': 'Filtered by Vendor', 'group_settings': 'Group Settings', - 'group': 'Group', + 'group': 'Grupuj', 'groups': 'Groups', 'new_group': 'New Group', 'edit_group': 'Edit Group', @@ -43003,30 +43462,30 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_group': 'Successfully archived group', 'deleted_group': 'Successfully deleted group', 'restored_group': 'Successfully restored group', - 'upload_logo': 'Upload Logo', + 'upload_logo': 'Prześlij logo', 'uploaded_logo': 'Successfully uploaded logo', 'logo': 'Logo', 'saved_settings': 'Successfully saved settings', - 'product_settings': 'Product Settings', - 'device_settings': 'Device Settings', - 'defaults': 'Defaults', - 'basic_settings': 'Basic Settings', - 'advanced_settings': 'Advanced Settings', - 'company_details': 'Company Details', - 'user_details': 'User Details', - 'localization': 'Localization', - 'online_payments': 'Online Payments', - 'tax_rates': 'نرخ مالیات', - 'notifications': 'Notifications', - 'import_export': 'Import | Export', - 'custom_fields': 'Custom Fields', - 'invoice_design': 'Invoice Design', - 'buy_now_buttons': 'Buy Now Buttons', - 'email_settings': 'Email Settings', - 'templates_and_reminders': 'Templates & Reminders', + 'product_settings': 'Ustawienia produktu', + 'device_settings': 'Ustawienia urządzenia', + 'defaults': 'Domyślne', + 'basic_settings': 'Ustawienia podstawowe', + 'advanced_settings': 'Ustawienia zaawansowane', + 'company_details': 'Dane firmy', + 'user_details': 'Dane użytkownika', + 'localization': 'Lokalizacja', + 'online_payments': 'Płatności online', + 'tax_rates': 'Stawki podatkowe', + 'notifications': 'Powiadomienia', + 'import_export': 'Import | Eksport danych', + 'custom_fields': 'Dostosowane pola', + 'invoice_design': 'Motyw faktury', + 'buy_now_buttons': 'Przyciski Kup Teraz', + 'email_settings': 'Ustawienia e-mail', + 'templates_and_reminders': 'Szablony i przypomnienia', 'credit_cards_and_banks': 'Credit Cards & Banks', - 'data_visualizations': 'Data Visualizations', - 'price': 'Price', + 'data_visualizations': 'Wizualizacje danych', + 'price': 'Cena', 'email_sign_up': 'Email Sign Up', 'google_sign_up': 'Google Sign Up', 'thank_you_for_your_purchase': 'Thank you for your purchase!', @@ -43043,24 +43502,24 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_agree_to_terms_and_privacy': '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': 'Terms of Service', - 'privacy_policy': 'Privacy Policy', - 'sign_up': 'Sign Up', - 'account_login': 'Account Login', + 'terms_of_service': 'Warunki korzystania z Serwisu', + 'privacy_policy': 'Polityka prywatności', + 'sign_up': 'Zapisz się', + 'account_login': 'Logowanie', 'view_website': 'View Website', 'create_account': 'Create Account', 'email_login': 'Email Login', - 'create_new': 'Create New', + 'create_new': 'Dodaj nowy/nową', 'no_record_selected': 'No record selected', 'error_unsaved_changes': 'Please save or cancel your changes', - 'download': 'Download', + 'download': 'Pobierz', 'requires_an_enterprise_plan': 'Requires an enterprise plan', - 'take_picture': 'Take Picture', + 'take_picture': 'Zrób zdjęcie', 'upload_file': 'Upload File', - 'document': 'Document', - 'documents': 'Documents', - 'new_document': 'New Document', - 'edit_document': 'Edit Document', + 'document': 'Dokument', + 'documents': 'Dokumenty', + 'new_document': 'Nowy dokument', + 'edit_document': 'Edytuj dokument', 'uploaded_document': 'Successfully uploaded document', 'updated_document': 'Successfully updated document', 'archived_document': 'Successfully archived document', @@ -43070,86 +43529,86 @@ mixin LocalizationsProvider on LocaleCodeAware { 'deleted_documents': 'Successfully deleted :value documents', 'restored_documents': 'Successfully restored :value documents', 'no_history': 'No History', - 'expense_date': 'Expense Date', - 'pending': 'Pending', + 'expense_date': 'Data obciążenia', + 'pending': 'Oczekuję', 'expense_status_1': 'Logged', 'expense_status_2': 'Pending', 'expense_status_3': 'Invoiced', - 'converted': 'Converted', - 'add_documents_to_invoice': 'Add documents to invoice', - 'exchange_rate': 'Exchange Rate', - 'convert_currency': 'Convert currency', - 'mark_paid': 'Mark Paid', - 'category': 'Category', - 'address': 'آدرس', - 'new_vendor': 'New Vendor', - 'created_vendor': 'Successfully created vendor', - 'updated_vendor': 'Successfully updated vendor', - 'archived_vendor': 'Successfully archived vendor', - 'deleted_vendor': 'Successfully deleted vendor', - 'restored_vendor': 'Successfully restored vendor', - 'archived_vendors': 'Successfully archived :count vendors', - 'deleted_vendors': 'Successfully deleted :count vendors', + 'converted': 'Skonwertowano', + 'add_documents_to_invoice': 'Dodaj dokumenty do faktury', + 'exchange_rate': 'Kurs wymiany', + 'convert_currency': 'Konwertuj walutę', + 'mark_paid': 'Oznacz jako zapłaconą', + 'category': 'Kategoria', + 'address': 'Adres', + 'new_vendor': 'Nowy dostawca', + 'created_vendor': 'Dostawca został utworzony', + 'updated_vendor': 'Zaktualizowano dostawcę', + 'archived_vendor': 'Dostawca został zarchiwizowany', + 'deleted_vendor': 'Dostawca został usunięty', + 'restored_vendor': 'Dostawca został przywrócony', + 'archived_vendors': 'Zarchiwizowano :count dostawców', + 'deleted_vendors': 'Usunięto :count dostawców', 'restored_vendors': 'Successfully restored :value vendors', - 'new_expense': 'Enter Expense', - 'created_expense': 'Successfully created expense', - 'updated_expense': 'Successfully updated expense', - 'archived_expense': 'Successfully archived expense', - 'deleted_expense': 'Successfully deleted expense', - 'restored_expense': 'Successfully restored expense', - 'archived_expenses': 'Successfully archived expenses', - 'deleted_expenses': 'Successfully deleted expenses', + 'new_expense': 'Dodaj wydatek', + 'created_expense': 'Wydatek został utworzony', + 'updated_expense': 'Wydatek został zaktualizowany', + 'archived_expense': 'Wydatki zostały zarchiwizowane', + 'deleted_expense': 'Wydatki zostały usunięte', + 'restored_expense': 'Wydatek został przywrócony', + 'archived_expenses': 'Wydatki zostały zarchiwizowane', + 'deleted_expenses': 'Wydatki zostały usunięte', 'restored_expenses': 'Successfully restored :value expenses', 'copy_shipping': 'Copy Shipping', 'copy_billing': 'Copy Billing', 'design': 'Design', 'failed_to_find_record': 'Failed to find record', - 'invoiced': 'Invoiced', - 'logged': 'Logged', - 'running': 'Running', - 'resume': 'Resume', - 'task_errors': 'Please correct any overlapping times', - 'start': 'Start', - 'stop': 'Stop', + 'invoiced': 'Zafakturowano', + 'logged': 'Zapisano', + 'running': 'W trakcie', + 'resume': 'Wznów', + 'task_errors': 'Proszę skoryguj nakładające się czasy', + 'start': 'Rozpocznij', + 'stop': 'Zatrzymaj', 'started_task': 'Successfully started task', - 'stopped_task': 'Successfully stopped task', + 'stopped_task': 'Zakończono wykonywanie zadania', 'resumed_task': 'Successfully resumed task', - 'now': 'Now', + 'now': 'Teraz', 'auto_start_tasks': 'Auto Start Tasks', - 'timer': 'Timer', - 'manual': 'Manual', + 'timer': 'Odliczanie czasu', + 'manual': 'Wprowadź ręcznie', 'budgeted': 'Budgeted', - 'start_time': 'Start Time', - 'end_time': 'End Time', - 'date': 'Date', - 'times': 'Times', - 'duration': 'Duration', - 'new_task': 'New Task', - 'created_task': 'Successfully created task', - 'updated_task': 'Successfully updated task', - 'archived_task': 'Successfully archived task', - 'deleted_task': 'Successfully deleted task', - 'restored_task': 'Successfully restored task', - 'archived_tasks': 'Successfully archived :count tasks', - 'deleted_tasks': 'Successfully deleted :count tasks', + 'start_time': 'Czas rozpoczęcia', + 'end_time': 'Zakończono', + 'date': 'Data', + 'times': 'Razy/Okresy', + 'duration': 'Czas trwania', + 'new_task': 'Nowe zadanie', + 'created_task': 'Pomyślnie utworzono zadanie', + 'updated_task': 'Pomyślnie zaktualizowano zadanie', + 'archived_task': 'Zadania zostało zarchiwizowane', + 'deleted_task': 'Usunięto zadanie', + 'restored_task': 'Zadanie zostało przywrócone', + 'archived_tasks': 'Zarchiwizowano :count zadania/zadań', + 'deleted_tasks': 'Usunięto :count zadania/zadań', 'restored_tasks': 'Successfully restored :value tasks', 'please_enter_a_name': 'Please enter a name', 'budgeted_hours': 'Budgeted Hours', - 'created_project': 'Successfully created project', - 'updated_project': 'Successfully updated project', - 'archived_project': 'Successfully archived project', - 'deleted_project': 'Successfully deleted project', - 'restored_project': 'Successfully restored project', - 'archived_projects': 'Successfully archived :count projects', - 'deleted_projects': 'Successfully deleted :count projects', + 'created_project': 'Utworzono projekt', + 'updated_project': 'Zaktualizowano projekt', + 'archived_project': 'Zarchiwizowano projekt', + 'deleted_project': 'Usunięto projekt', + 'restored_project': 'Przywrócono projekt', + 'archived_projects': 'Zarchiwizowano :count projektów', + 'deleted_projects': 'Usunięto :count projekty/projektów', 'restored_projects': 'Successfully restored :value projects', - 'new_project': 'New Project', + 'new_project': 'Nowy projekt', 'thank_you_for_using_our_app': 'Thank you for using our app!', 'if_you_like_it': 'If you like it please', - 'click_here': 'click here', + 'click_here': 'kliknij tutaj', 'click_here_capital': 'Click here', 'to_rate_it': 'to rate it.', - 'average': 'Average', + 'average': 'Średnia', 'unapproved': 'Unapproved', 'authenticate_to_change_setting': 'Please authenticate to change this setting', @@ -43157,16 +43616,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'authenticate': 'Authenticate', 'please_authenticate': 'Please authenticate', 'biometric_authentication': 'Biometric Authentication', - 'footer': 'Footer', + 'footer': 'Stopka', 'compare': 'Compare', 'hosted_login': 'Hosted Login', 'selfhost_login': 'Selfhost Login', - 'google_sign_in': 'Sign in with Google', + 'google_sign_in': 'Zaloguj się przez Google', 'today': 'Today', - 'custom_range': 'Custom Range', - 'date_range': 'Date Range', - 'current': 'Current', - 'previous': 'Previous', + 'custom_range': 'Określony okres', + 'date_range': 'Zakres czasowy', + 'current': 'Obecny', + 'previous': 'Poprzedni', 'current_period': 'Current Period', 'comparison_period': 'Comparison Period', 'previous_period': 'Previous Period', @@ -43175,52 +43634,52 @@ mixin LocalizationsProvider on LocaleCodeAware { 'last7_days': 'Last 7 Days', 'last_week': 'Last Week', 'last30_days': 'Last 30 Days', - 'this_month': 'This Month', - 'last_month': 'Last Month', - 'this_year': 'This Year', - 'last_year': 'Last Year', - 'custom': 'Custom', - 'clone_to_invoice': 'Clone to Invoice', - 'clone_to_quote': 'Clone to Quote', - 'clone_to_credit': 'Clone to Credit', - 'view_invoice': 'View Invoice', + 'this_month': 'Ten miesiąc', + 'last_month': 'Ostatni miesiąc', + 'this_year': 'Ten rok', + 'last_year': 'Ostatni rok', + 'custom': 'Dostosowanie', + 'clone_to_invoice': 'Clone to Invoice', + 'clone_to_quote': 'Clone to Quote', + 'clone_to_credit': 'Clone to Credit', + 'view_invoice': 'Zobacz fakturę', 'convert': 'Convert', - 'more': 'More', - 'edit_client': 'Edit Client', - 'edit_product': 'Edit Product', - 'edit_invoice': 'Edit Invoice', - 'edit_quote': 'Edit Quote', - 'edit_payment': 'Edit Payment', - 'edit_task': 'Edit Task', - 'edit_expense': 'Edit Expense', - 'edit_vendor': 'Edit Vendor', - 'edit_project': 'Edit Project', + 'more': 'Więcej', + 'edit_client': 'Edytuj klienta', + 'edit_product': 'Edytuj produkt', + 'edit_invoice': 'Edytuj fakturę', + 'edit_quote': 'Edytuj ofertę', + 'edit_payment': 'Edytuj płatność', + 'edit_task': 'Edytuj zadanie', + 'edit_expense': 'Edytuj wydatek', + 'edit_vendor': 'Edytuj dostawcę', + 'edit_project': 'Edytuj projekt', 'edit_recurring_quote': 'Edit Recurring Quote', - 'billing_address': 'Billing Address', + 'billing_address': 'Adres rozliczeniowy', 'shipping_address': 'Shipping Address', - 'total_revenue': 'Total Revenue', - 'average_invoice': 'Average Invoice', - 'outstanding': 'Outstanding', - 'invoices_sent': ':count invoices sent', - 'active_clients': 'active clients', - 'close': 'Close', - 'email': 'ایمیل', - 'password': 'Password', + 'total_revenue': 'Całkowity dochód', + 'average_invoice': 'Średnia wartość', + 'outstanding': 'Zaległości', + 'invoices_sent': ':count wysłanych faktur', + 'active_clients': 'aktywni klienci', + 'close': 'Zamknij', + 'email': 'Email', + 'password': 'Hasło', 'url': 'URL', - 'secret': 'Secret', - 'name': 'نام', - 'logout': 'Log Out', - 'login': 'Login', - 'filter': 'Filter', - 'sort': 'Sort', - 'search': 'Search', - 'active': 'Active', - 'archived': 'Archived', - 'deleted': 'Deleted', - 'dashboard': 'Dashboard', - 'archive': 'Archive', - 'delete': 'Delete', - 'restore': 'Restore', + 'secret': 'Tajny', + 'name': 'Nazwa', + 'logout': 'Wyloguj się', + 'login': 'Zaloguj', + 'filter': 'Filtruj', + 'sort': 'Sortuj', + 'search': 'Szukaj', + 'active': 'Aktywny', + 'archived': 'Zarchiwizowano', + 'deleted': 'Usunięte', + 'dashboard': 'Pulpit', + 'archive': 'Archiwum', + 'delete': 'Usuń', + 'restore': 'Przywróć', 'refresh_complete': 'Refresh Complete', 'please_enter_your_email': 'Please enter your email', 'please_enter_your_password': 'Please enter your password', @@ -43228,100 +43687,100 @@ mixin LocalizationsProvider on LocaleCodeAware { 'please_enter_a_product_key': 'Please enter a product key', 'ascending': 'Ascending', 'descending': 'Descending', - 'save': 'Save', + 'save': 'Zapisz', 'an_error_occurred': 'An error occurred', - 'paid_to_date': 'پرداخت در تاریخ', - 'balance_due': 'بدهی تعادل', - 'balance': 'Balance', - 'overview': 'Overview', - 'details': 'Details', - 'phone': 'تلفن', - 'website': 'وب سایت', - 'vat_number': 'VAT Number', - 'id_number': 'ID Number', - 'create': 'Create', + 'paid_to_date': 'Termin płatności', + 'balance_due': 'Do zapłaty', + 'balance': 'Saldo', + 'overview': 'Podsumowanie', + 'details': 'Szczegóły', + 'phone': 'Telefon', + 'website': 'Strona internetowa', + 'vat_number': 'Numer NIP', + 'id_number': 'REGON', + 'create': 'Utwórz', 'copied_to_clipboard': 'Copied :value to the clipboard', 'error': 'Error', 'could_not_launch': 'Could not launch', - 'contacts': 'مخاطبین', + 'contacts': 'Kontakty', 'additional': 'Additional', - 'first_name': 'نام', - 'last_name': 'نام خانوادگی', - 'add_contact': 'افزودن مخاطب', - 'are_you_sure': 'Are you sure?', - 'cancel': 'Cancel', + 'first_name': 'Imię', + 'last_name': 'Nazwisko', + 'add_contact': 'Dodaj kontakt', + 'are_you_sure': 'Jesteś pewny?', + 'cancel': 'Anuluj', 'ok': 'Ok', - 'remove': 'Remove', + 'remove': 'Usuń', 'email_is_invalid': 'Email is invalid', - 'product': 'Product', - 'products': 'Products', - 'new_product': 'New Product', - 'created_product': 'Successfully created product', - 'updated_product': 'Successfully updated product', - 'archived_product': 'Successfully archived product', - 'deleted_product': 'Successfully deleted product', - 'restored_product': 'Successfully restored product', + 'product': 'Produkt', + 'products': 'Produkty', + 'new_product': 'Nowy produkt', + 'created_product': 'Produkt został utworzony', + 'updated_product': 'Produkt został zaktualizowany', + 'archived_product': 'Produkt został zarchiwizowany', + 'deleted_product': 'Usunięto produkt', + 'restored_product': 'Przywrócono produkt', 'archived_products': 'Successfully archived :count products', - 'deleted_products': 'Successfully deleted :count products', + 'deleted_products': 'Usunięto :count produktów', 'restored_products': 'Successfully restored :value products', - 'product_key': 'Product', - 'notes': 'Notes', - 'cost': 'Cost', - 'client': 'مشتریان', - 'clients': 'Clients', - 'new_client': 'New Client', - 'created_client': 'Successfully created client', - 'updated_client': 'Successfully updated client', - 'archived_client': 'Successfully archived client', - 'archived_clients': 'Successfully archived :count clients', - 'deleted_client': 'Successfully deleted client', - 'deleted_clients': 'Successfully deleted :count clients', - 'restored_client': 'Successfully restored client', + 'product_key': 'Produkt', + 'notes': 'Notatki', + 'cost': 'Koszt', + 'client': 'Klient', + 'clients': 'Klienci', + 'new_client': 'Nowy klient', + 'created_client': 'Klient został utworzony', + 'updated_client': 'Klient został zaktualizowany', + 'archived_client': 'Klient został zarchiwizowany', + 'archived_clients': 'Zarchiwizowano :count klientów', + 'deleted_client': 'Klient został usunięty', + 'deleted_clients': 'Usunięto :count klientów', + 'restored_client': 'Klient został przywrócony', 'restored_clients': 'Successfully restored :value clients', - 'address1': 'خیابان', - 'address2': 'نمونه', - 'city': 'شهر', - 'state': 'استان', - 'postal_code': 'کد پستی', - 'country': 'Country', - 'invoice': 'فاکتور', - 'invoices': 'Invoices', - 'new_invoice': 'New Invoice', - 'created_invoice': 'Successfully created invoice', - 'updated_invoice': 'Successfully updated invoice', - 'archived_invoice': 'Successfully archived invoice', - 'deleted_invoice': 'Successfully deleted invoice', - 'restored_invoice': 'Successfully restored invoice', - 'archived_invoices': 'Successfully archived :count invoices', - 'deleted_invoices': 'Successfully deleted :count invoices', + 'address1': 'Ulica', + 'address2': 'Nr', + 'city': 'Miasto', + 'state': 'Województwo', + 'postal_code': 'Kod pocztowy', + 'country': 'Kraj', + 'invoice': 'Faktura', + 'invoices': 'Faktury', + 'new_invoice': 'Nowa faktura', + 'created_invoice': 'Faktura została utworzona', + 'updated_invoice': 'Faktura została zaktualizowana', + 'archived_invoice': 'Faktura została zarchiwizowana', + 'deleted_invoice': 'Faktura została usunięta', + 'restored_invoice': 'Faktura została przywrócona', + 'archived_invoices': 'Zarchiwizowano :count faktury', + 'deleted_invoices': 'Usunięto :count faktury', 'restored_invoices': 'Successfully restored :value invoices', - 'emailed_invoice': 'Successfully emailed invoice', + 'emailed_invoice': 'Faktura została wysłana', 'emailed_payment': 'Successfully emailed payment', - 'amount': 'Amount', - 'invoice_number': 'شماره فاکتور', - 'invoice_date': 'تاریخ فاکتور', - 'discount': 'تخفیف', - 'po_number': 'شماره PO', - 'terms': 'قوانین', - 'public_notes': 'Public Notes', - 'private_notes': 'نوشته خصوصی', - 'frequency': 'Frequency', - 'start_date': 'Start Date', - 'end_date': 'End Date', - 'quote_number': 'Quote Number', - 'quote_date': 'Quote Date', - 'valid_until': 'Valid Until', + 'amount': 'Kwota', + 'invoice_number': 'Numer Faktury', + 'invoice_date': 'Data Faktury', + 'discount': 'Rabat', + 'po_number': 'Numer zamówienia', + 'terms': 'Warunki', + 'public_notes': 'Notatki publiczne', + 'private_notes': 'Prywatne notatki', + 'frequency': 'Częstotliwość', + 'start_date': 'Początkowa data', + 'end_date': 'Końcowa data', + 'quote_number': 'Numer oferty', + 'quote_date': 'Data oferty', + 'valid_until': 'Ważny do', 'items': 'Items', 'partial_deposit': 'Partial/Deposit', - 'description': 'توضیحات', - 'unit_cost': 'قیمت واحد', - 'quantity': 'تعداد', + 'description': 'Opis towaru / usługi', + 'unit_cost': 'Cena j. brutto', + 'quantity': 'Ilość', 'add_item': 'Add Item', - 'contact': 'Contact', - 'work_phone': 'تلفن', + 'contact': 'Kontakt', + 'work_phone': 'Telefon służbowy', 'total_amount': 'Total Amount', 'pdf': 'PDF', - 'due_date': 'تاریخ پرداخت', + 'due_date': 'Termin', 'partial_due_date': 'Partial Due Date', 'status': 'Status', 'invoice_status_id': 'Invoice Status', @@ -43329,50 +43788,51 @@ mixin LocalizationsProvider on LocaleCodeAware { 'click_plus_to_add_item': 'Click + to add an item', 'click_plus_to_add_time': 'Click + to add time', 'count_selected': ':count selected', - 'total': 'Total', - 'percent': 'Percent', - 'edit': 'Edit', + 'total': 'Suma', + 'percent': 'Procent', + 'edit': 'Edytuj', 'dismiss': 'Dismiss', 'please_select_a_date': 'Please select a date', 'please_select_a_client': 'Please select a client', 'please_select_an_invoice': 'Please select an invoice', - 'task_rate': 'Task Rate', - 'settings': 'تنظیمات', + 'task_rate': 'Stawka zadania', + 'settings': 'Ustawienia', 'language': 'Language', - 'currency': 'Currency', - 'created_at': 'Date Created', + 'currency': 'Waluta', + 'created_at': 'Data utworzenia', 'created_on': 'Created On', 'updated_at': 'Updated', - 'tax': 'مالیات', + 'tax': 'Podatek', 'please_enter_an_invoice_number': 'Please enter an invoice number', 'please_enter_a_quote_number': 'Please enter a quote number', - 'past_due': 'Past Due', - 'draft': 'Draft', - 'sent': 'Sent', + 'past_due': 'Po terminie', + 'draft': 'Wersja robocza', + 'sent': 'Wysłane', 'viewed': 'Viewed', 'approved': 'Approved', - 'partial': 'Partial/Deposit', - 'paid': 'Paid', - 'mark_sent': 'Mark Sent', + 'partial': 'Zaliczka/Opł.część', + 'paid': 'Zapłacone', + 'mark_sent': 'Oznacz jako wysłane', 'marked_invoice_as_sent': 'Successfully marked invoice as sent', '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': 'Done', + 'done': 'Gotowe', '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', + 'dark_mode': 'Tryb ciemny', + 'restart_app_to_apply_change': + 'Uruchom ponownie aplikację, aby zastosować zmianę', 'refresh_data': 'Refresh Data', 'blank_contact': 'Blank Contact', - 'activity': 'Activity', + 'activity': 'Dziennik aktywności', 'no_records_found': 'No records found', - 'clone': 'Clone', + 'clone': 'Klonuj', 'loading': 'Loading', 'industry': 'Industry', - 'size': 'Size', - 'payment_terms': 'قوانین پرداخت', - 'payment_date': 'Payment Date', + 'size': 'Rozmiar', + 'payment_terms': 'Warunki płatnicze', + 'payment_date': 'Data płatności', 'payment_status': 'Payment Status', 'payment_status_1': 'Pending', 'payment_status_2': 'Voided', @@ -43382,121 +43842,121 @@ mixin LocalizationsProvider on LocaleCodeAware { 'payment_status_6': 'Refunded', 'payment_status_-1': 'Unapplied', 'payment_status_-2': 'Partially Unapplied', - 'net': 'Net', - 'client_portal': 'Client Portal', - 'show_tasks': 'Show tasks', + 'net': 'Suma netto', + 'client_portal': 'Portal klienta', + 'show_tasks': 'Pokaż zadania', 'email_reminders': 'Email Reminders', - 'enabled': 'Enabled', - 'recipients': 'Recipients', - 'initial_email': 'Initial Email', - 'first_reminder': 'First Reminder', - 'second_reminder': 'Second Reminder', - 'third_reminder': 'Third Reminder', + 'enabled': 'Aktywny', + 'recipients': 'Odbiorcy', + 'initial_email': 'Początkowy email', + 'first_reminder': 'Pierwsze przypomnienie', + 'second_reminder': 'Drugie przypomnienie', + 'third_reminder': 'Trzecie przypomnienie', 'reminder1': 'First Reminder', 'reminder2': 'Second Reminder', 'reminder3': 'Third Reminder', - 'template': 'Template', + 'template': 'Szablon', 'send': 'Send', - 'subject': 'Subject', - 'body': 'Body', - 'send_email': 'Send Email', - 'email_receipt': 'Email payment receipt to the client', + 'subject': 'Temat', + 'body': 'Treść', + 'send_email': 'Wyślij email', + 'email_receipt': 'Wyślij potwierdzenie zapłaty do klienta', 'auto_billing': 'Auto billing', 'button': 'Button', 'preview': 'Preview', - 'customize': 'Customize', - 'history': 'History', - 'payment': 'Payment', - 'payments': 'Payments', + 'customize': 'Dostosuj', + 'history': 'Historia', + 'payment': 'Płatność', + 'payments': 'Płatności', 'refunded': 'Refunded', - 'payment_type': 'Payment Type', - 'transaction_reference': 'Transaction Reference', - 'enter_payment': 'وارد کردن پرداخت', - 'new_payment': 'Enter Payment', - 'created_payment': 'Successfully created payment', - 'updated_payment': 'Successfully updated payment', - 'archived_payment': 'Successfully archived payment', - 'deleted_payment': 'Successfully deleted payment', - 'restored_payment': 'Successfully restored payment', - 'archived_payments': 'Successfully archived :count payments', - 'deleted_payments': 'Successfully deleted :count payments', + 'payment_type': 'Typ płatności', + 'transaction_reference': 'Numer referencyjny transakcji', + 'enter_payment': 'Wprowadź płatność', + 'new_payment': 'Nowa płatność', + 'created_payment': 'Płatność została utworzona', + 'updated_payment': 'Płatność została zaktualizowana', + 'archived_payment': 'Płatność zostałą zarchiwizowana', + 'deleted_payment': 'Płatność została usunięta', + 'restored_payment': 'Płatność została przywrócona', + 'archived_payments': 'Zarchiwizowano :count płatności', + 'deleted_payments': 'Usunięto :count płatności', 'restored_payments': 'Successfully restored :value payments', - 'quote': 'Quote', - 'quotes': 'Quotes', - 'new_quote': 'New Quote', - 'created_quote': 'Successfully created quote', - 'updated_quote': 'Successfully updated quote', - 'archived_quote': 'Successfully archived quote', - 'deleted_quote': 'Successfully deleted quote', - 'restored_quote': 'Successfully restored quote', - 'archived_quotes': 'Successfully archived :count quotes', - 'deleted_quotes': 'Successfully deleted :count quotes', + 'quote': 'Oferta', + 'quotes': 'Oferty', + 'new_quote': 'Nowa oferta', + 'created_quote': 'Oferta została utworzona', + 'updated_quote': 'Oferta została zaktualizowana', + 'archived_quote': 'Oferta została zarchiwizowana', + 'deleted_quote': 'Oferta została usunięta', + 'restored_quote': 'Oferta została przywrócona', + 'archived_quotes': 'Zarchiwizowano :count ofert', + 'deleted_quotes': 'Usunięto :count ofert', 'restored_quotes': 'Successfully restored :value quotes', - 'expense': 'Expense', - 'expenses': 'Expenses', - 'vendor': 'Vendor', - 'vendors': 'Vendors', - 'task': 'Task', - 'tasks': 'Tasks', - 'project': 'Project', - 'projects': 'Projects', - 'activity_1': ':user created client :client', - 'activity_2': ':user archived client :client', - 'activity_3': ':user deleted client :client', - 'activity_4': ':user created invoice :invoice', - 'activity_5': ':user updated invoice :invoice', + 'expense': 'Wydatek', + 'expenses': 'Wydatki', + 'vendor': 'Dostawca', + 'vendors': 'Dostawcy', + 'task': 'Zadanie', + 'tasks': 'Zadania', + 'project': 'Projekt', + 'projects': 'Projekty', + 'activity_1': ':user stworzył klienta :client', + 'activity_2': ':user zarchiwizował klienta :client', + 'activity_3': ':user usunął klienta :client', + 'activity_4': ':user stworzył fakturę :invoice', + 'activity_5': ':user zaktualizował fakturę :invoice', 'activity_6': ':user emailed invoice :invoice for :client to :contact', 'activity_7': ':contact viewed invoice :invoice for :client', - 'activity_8': ':user archived invoice :invoice', - 'activity_9': ':user deleted invoice :invoice', + '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', - 'activity_11': ':user updated payment :payment', - 'activity_12': ':user archived payment :payment', - 'activity_13': ':user deleted payment :payment', - 'activity_14': ':user entered :credit credit', - 'activity_15': ':user updated :credit credit', - 'activity_16': ':user archived :credit credit', - 'activity_17': ':user deleted :credit credit', - 'activity_18': ':user created quote :quote', - 'activity_19': ':user updated quote :quote', + 'activity_11': ':user zaktualizował płatność :payment', + 'activity_12': ':user zarchiwizował płatność :payment', + 'activity_13': ':user usunął płatność :payment', + 'activity_14': ':user wprowadził kredyt :credit', + 'activity_15': ':user zaktualizował kredyt :credit', + 'activity_16': ':user zarchiwizował kredyt :credit', + 'activity_17': ':user usunął kredyt :credit', + 'activity_18': ':user stworzył ofertę :quote', + 'activity_19': ':user zakatualizował ofertę :quote', 'activity_20': ':user emailed quote :quote for :client to :contact', - 'activity_21': ':contact viewed quote :quote', - 'activity_22': ':user archived quote :quote', - 'activity_23': ':user deleted quote :quote', - 'activity_24': ':user restored quote :quote', - 'activity_25': ':user restored invoice :invoice', - 'activity_26': ':user restored client :client', - 'activity_27': ':user restored payment :payment', - 'activity_28': ':user restored :credit credit', + 'activity_21': ':contact wyświetlił ofertę :quote', + 'activity_22': ':user zarchiwizował ofertę :quote', + 'activity_23': ':user usunął ofertę :quote', + 'activity_24': ':user przywrócił ofertę :quote', + 'activity_25': ':user przywrócił fakturę :invoice', + 'activity_26': ':user przywrócił klienta :client', + 'activity_27': ':user przywrócił płatność :payment', + 'activity_28': ':user przywrócił kredyt :credit', 'activity_29': ':contact approved quote :quote for :client', - 'activity_30': ':user created vendor :vendor', - 'activity_31': ':user archived vendor :vendor', - 'activity_32': ':user deleted vendor :vendor', - 'activity_33': ':user restored vendor :vendor', - 'activity_34': ':user created expense :expense', - 'activity_35': ':user archived expense :expense', - 'activity_36': ':user deleted expense :expense', - 'activity_37': ':user restored expense :expense', - 'activity_39': ':user cancelled a :payment_amount payment :payment', + 'activity_30': ':user utworzył dostawcę :vendor', + 'activity_31': ':user zarchiwizował dostawcę :vendor', + 'activity_32': ':user usunął dostawcę :vendor', + 'activity_33': ':user przywrócił dostawcę :vendor', + 'activity_34': ':user utworzył wydatek :expense', + 'activity_35': ':user zarchiwizował wydatek :expense', + 'activity_36': ':user usunął wydatek :expense', + 'activity_37': ':user przywrócił wydatek :expense', + 'activity_39': ':user anulował płatność na :payment_amount nr. :payment', 'activity_40': ':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', - 'activity_44': ':user archived task :task', - 'activity_45': ':user deleted task :task', - 'activity_46': ':user restored task :task', - 'activity_47': ':user updated expense :expense', - 'activity_48': ':user updated ticket :ticket', - 'activity_49': ':user closed ticket :ticket', - 'activity_50': ':user merged ticket :ticket', - 'activity_51': ':user split ticket :ticket', - 'activity_52': ':contact opened ticket :ticket', - 'activity_53': ':contact reopened ticket :ticket', - 'activity_54': ':user reopened ticket :ticket', - 'activity_55': ':contact replied ticket :ticket', - 'activity_56': ':user viewed ticket :ticket', + 'activity_41': 'płatność :payment_amount (:payment) nieudana', + 'activity_42': ':user stworzył zadanie :task', + 'activity_43': ':user zaktualizował zadanie :task', + 'activity_44': ':user zarchiwizował zadanie :task', + 'activity_45': ':user usunął zadanie :task', + 'activity_46': ':user przywrócił zadanie :task', + 'activity_47': ':user zaktualizował wydatek :expense', + 'activity_48': ':user zaktualizował zgłoszenie :ticket', + 'activity_49': ':user zamknął zgłoszenie :ticket', + 'activity_50': ':user połączył zgłoszenie :ticket', + 'activity_51': ':user rozdzielił zgłoszenie :ticket', + 'activity_52': ':contact otworzył zgłoszenie :ticket', + 'activity_53': ':contact otworzył ponownie zgłoszenie :ticket', + 'activity_54': ':user otworzył zgłoszenie :ticket ponownie ', + 'activity_55': ':contact odpowiedział w zgłoszeniu :ticket', + 'activity_56': ':user oglądał zgłoszenie :ticket', 'activity_57': 'System failed to email invoice :invoice', 'activity_58': ':user reversed invoice :invoice', 'activity_59': ':user cancelled invoice :invoice', @@ -43517,13 +43977,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_83': ':user deleted subscription :subscription', 'activity_84': ':user restored subscription :subscription', 'one_time_password': 'One Time Password', - 'emailed_quote': 'Successfully emailed quote', + 'emailed_quote': 'Oferta została wysłana', 'emailed_credit': 'Successfully emailed credit', 'marked_quote_as_sent': 'Successfully marked quote as sent', 'marked_credit_as_sent': 'Successfully marked credit as sent', - 'expired': 'Expired', - 'all': 'All', - 'select': 'Select', + 'expired': 'Wygasło', + 'all': 'Wszystko', + 'select': 'Wybierz', 'long_press_multiselect': 'Long-press Multiselect', 'custom_value1': 'Custom Value', 'custom_value2': 'Custom Value', @@ -43547,9 +44007,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'payment_number_pattern': 'Payment Number Pattern', 'payment_number_counter': 'Payment Number Counter', 'invoice_number_pattern': 'Invoice Number Pattern', - 'invoice_number_counter': 'Invoice Number Counter', + 'invoice_number_counter': 'Licznik numeru faktury', 'quote_number_pattern': 'Quote Number Pattern', - 'quote_number_counter': 'Quote Number Counter', + 'quote_number_counter': 'Licznik numeru oferty', 'client_number_pattern': 'Credit Number Pattern', 'client_number_counter': 'Credit Number Counter', 'credit_number_pattern': 'Credit Number Pattern', @@ -43580,13 +44040,13 @@ mixin LocalizationsProvider on LocaleCodeAware { 'vendor_address2': 'Vendor Apt/Suite', 'client_shipping_address1': 'Client Shipping Street', 'client_shipping_address2': 'Client Shipping Apt/Suite', - 'type': 'Type', - 'invoice_amount': 'Invoice Amount', - 'invoice_due_date': 'Due Date', + 'type': 'Typ', + 'invoice_amount': 'Kwota faktury', + 'invoice_due_date': 'Termin Płatności', 'tax_rate1': 'Tax Rate 1', 'tax_rate2': 'Tax Rate 2', 'tax_rate3': 'Tax Rate 3', - 'auto_bill': 'Auto Bill', + 'auto_bill': 'Płatność Automatyczna', 'archived_at': 'Archived At', 'has_expenses': 'Has Expenses', 'custom_taxes1': 'Custom Taxes 1', @@ -43602,16 +44062,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'vendor_state': 'Vendor State', 'vendor_country': 'Vendor Country', 'is_approved': 'Is Approved', - 'tax_name': 'Tax Name', - 'tax_amount': 'Tax Amount', - 'tax_paid': 'Tax Paid', - 'payment_amount': 'Payment Amount', - 'age': 'Age', + 'tax_name': 'Nazwa podatku', + 'tax_amount': 'Podatek', + 'tax_paid': 'Podatek zapłacony', + 'payment_amount': 'Kwota płatności', + 'age': 'Wiek', 'is_running': 'Is Running', - 'time_log': 'Time Log', + 'time_log': 'Rejestr czasu', 'bank_id': 'Bank', 'expense_category_id': 'Expense Category ID', - 'expense_category': 'Expense Category', + 'expense_category': 'Kategoria wydatku', 'invoice_currency_id': 'Invoice Currency ID', 'tax_name1': 'Tax Name 1', 'tax_name2': 'Tax Name 2', @@ -43620,23 +44080,45 @@ mixin LocalizationsProvider on LocaleCodeAware { 'status_color_theme': 'Status Color Theme', 'load_color_theme': 'Load Color Theme', }, - 'pl': { - 'client_shipping_state': 'Client Shipping State', - 'client_shipping_city': 'Client Shipping City', - 'client_shipping_postal_code': 'Client Shipping Postal Code', - 'client_shipping_country': 'Client Shipping Country', - 'load_pdf': 'Load PDF', - 'start_free_trial': 'Start Free Trial', - 'start_free_trial_message': - 'Start your FREE 14 day trial of the pro plan', - 'due_on_receipt': 'Due on Receipt', - 'is_paid': 'Is Paid', + 'pt_BR': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'A taxa para uma fatura de :amount seria de :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Aprovar', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', + 'client_shipping_state': 'Client Shipping State', + 'client_shipping_city': 'Client Shipping City', + 'client_shipping_postal_code': 'Client Shipping Postal Code', + 'client_shipping_country': 'Client Shipping Country', + 'load_pdf': 'Load PDF', + 'start_free_trial': 'Start Free Trial', + 'start_free_trial_message': + 'Start your FREE 14 day trial of the pro plan', + 'due_on_receipt': 'Due on Receipt', + 'is_paid': 'Is Paid', 'age_group_paid': 'Paid', 'id': 'Id', 'convert_to': 'Convert To', 'client_currency': 'Client Currency', 'company_currency': 'Company Currency', - 'purged_client': 'Successfully purged client', + 'purged_client': 'Cliente limpo com sucesso', 'custom_emails_disabled_help': 'To prevent spam we require upgrading to a paid account to customize the email', 'upgrade_to_add_company': 'Upgrade your plan to add companies', @@ -43672,7 +44154,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'giropay': 'GiroPay', 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', - 'set_password': 'Ustaw hasło', + 'set_password': 'Definir Senha', 'recommend_desktop': 'We recommend using the desktop app for the best performance', 'recommend_mobile': @@ -43694,15 +44176,15 @@ mixin LocalizationsProvider on LocaleCodeAware { 'registration': 'Registration', 'unauthorized_stripe_warning': 'Please authorize Stripe to accept online payments.', - 'view_expense': 'Zobacz wydatek # :expense', - 'view_statement': 'Zobacz wyciąg', - 'sepa': 'SEPA Direct Debit', + 'view_expense': 'Visualizar despesa # :expense', + 'view_statement': 'Ver Compras', + 'sepa': 'Débito direto SEPA', 'ideal': 'iDEAL', 'przelewy24': 'Przelewy24', 'eps': 'EPS', 'fpx': 'FPX', 'update_all_records': 'Update all records', - 'system': 'System', + 'system': 'Sistema', 'set_default_company': 'Set Default Company', 'updated_company': 'Successfully updated company', 'kbc': 'KBC', @@ -43718,18 +44200,18 @@ mixin LocalizationsProvider on LocaleCodeAware { 'bulk_email_invoice': 'Email Invoice', 'bulk_email_quote': 'Email Quote', 'bulk_email_credit': 'Email Credit', - 'from_name': 'From Name', + 'from_name': 'Nome do Remetente', 'clone_to_expense': 'Clone to expense', - 'recurring_expense': 'Recurring Expense', - 'recurring_expenses': 'Recurring Expenses', - 'new_recurring_expense': 'New Recurring Expense', - 'edit_recurring_expense': 'Edit Recurring Expense', - 'created_recurring_expense': 'Successfully created recurring expense', - 'updated_recurring_expense': 'Successfully updated recurring expense', - 'archived_recurring_expense': 'Successfully archived recurring expense', - 'deleted_recurring_expense': 'Successfully deleted project', + 'recurring_expense': 'Despesa Recorrente', + 'recurring_expenses': 'Despesas Recorrentes', + 'new_recurring_expense': 'Nova Despesa Recorrente', + 'edit_recurring_expense': 'Editar Despesa Recorrente', + 'created_recurring_expense': 'Despesa recorrente criada com sucesso', + 'updated_recurring_expense': 'Despesa recorrente atualizada com sucesso', + 'archived_recurring_expense': 'Despesa recorrente arquivada com sucesso', + 'deleted_recurring_expense': 'Projeto excluído com sucesso', 'removed_recurring_expense': 'Successfully removed recurring expense', - 'restored_recurring_expense': 'Successfully restored recurring expense', + 'restored_recurring_expense': 'Despesa recorrente restaurada com sucesso', 'search_recurring_expense': 'Search Recurring Expense', 'search_recurring_expenses': 'Search Recurring Expenses', 'last_sent_date': 'Last Sent Date', @@ -43751,7 +44233,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'expense_tax_help': 'Item tax rates are disabled', 'enable_markdown': 'Enable Markdown', 'enable_markdown_help': 'Convert markdown to HTML on the PDF', - 'user_guide': 'Przewodnik użytkownika', + 'user_guide': 'Guia do Usuário', 'add_second_contact': 'Add Second Contact', 'previous_page': 'Previous Page', 'next_page': 'Next Page', @@ -43769,7 +44251,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Table Alternate Row Background Color', 'invoice_header_background_color': 'Invoice Header Background Color', 'invoice_header_font_color': 'Invoice Header Font Color', - 'net_subtotal': 'Cena netto', + 'net_subtotal': 'Net', 'review_app': 'Review App', 'check_status': 'Check Status', 'free_trial': 'Free Trial', @@ -43785,7 +44267,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'subdomain_guide': 'The subdomain is used in the client portal to personalize links to match your brand. ie, https://your-brand.invoicing.co', 'send_time': 'Send Time', - 'import_data': 'Importuj dane', + 'import_data': 'Importar Dados', 'import_settings': 'Import Settings', 'json_file_missing': 'Please provide the JSON file', 'json_option_missing': 'Please select to import the settings and/or data', @@ -43826,24 +44308,24 @@ mixin LocalizationsProvider on LocaleCodeAware { 'credit_created': 'Credit Created', 'pro': 'Pro', 'enterprise': 'Enterprise', - 'last_updated': 'Last Updated', + 'last_updated': 'Última Atualização', 'invoice_item': 'Invoice Item', 'quote_item': 'Quote Item', - 'contact_first_name': 'Contact First Name', - 'contact_last_name': 'Contact Last Name', + 'contact_first_name': 'Primeiro Nome do Contato', + 'contact_last_name': 'Último Nome do Contato', 'order': 'Order', - 'unassigned': 'Nieprzypisano', - 'partial_value': 'Must be greater than zero and less than the total', + 'unassigned': 'Não Designado', + 'partial_value': 'Precisa ser maior que zero e menor que o total', 'search_kanban': 'Search Kanban', 'search_kanbans': 'Search Kanban', 'kanban': 'Kanban', - 'enable': 'Aktywuj', + 'enable': 'Habilitar', 'move_top': 'Move Top', 'move_up': 'Move Up', 'move_down': 'Move Down', 'move_bottom': 'Move Bottom', 'subdomain_help': - 'Ustaw subdomenę lub wyświetl fakturę na swojej stronie.', + 'Definir o subdomínio ou mostrar a fatura em seu próprio website', 'body_variable_missing': 'Error: the custom email must include a :body variable', 'add_body_variable_message': 'Make sure to include a :body variable', @@ -43881,7 +44363,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'refund_period': 'Refund Period', 'webhook_configuration': 'Webhook Configuration', 'purchase_page': 'Purchase Page', - 'security': 'Bezpieczeństwo', + 'security': 'Segurança', 'email_bounced': 'Email Bounced', 'email_spam_complaint': 'Spam Complaint', 'email_delivery': 'Email Delivery', @@ -43891,16 +44373,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'pdf_failed': 'PDF Failed', 'pdf_success': 'PDF Success', 'modified': 'Modified', - 'subscription': 'Subscription', - 'subscriptions': 'Subscriptions', - 'new_subscription': 'New Subscription', - 'edit_subscription': 'Edit Subscription', - 'created_subscription': 'Successfully created subscription', - 'updated_subscription': 'Successfully updated subscription', - 'archived_subscription': 'Successfully archived subscription', - 'deleted_subscription': 'Successfully deleted subscription', - 'removed_subscription': 'Successfully removed subscription', - 'restored_subscription': 'Successfully restored subscription', + 'subscription': 'Assinatura', + 'subscriptions': 'Assinaturas', + 'new_subscription': 'Nova Assinatura', + 'edit_subscription': 'Ediar Assinatura', + 'created_subscription': 'Assinatura criada com sucesso', + 'updated_subscription': 'Assinatura atualizada com sucesso', + 'archived_subscription': 'Assinatura arquivada com sucesso', + 'deleted_subscription': 'Assinatura apagada com sucesso', + 'removed_subscription': 'Assinatura removida com sucesso', + 'restored_subscription': 'Assinatura restaurada com sucesso', 'search_subscription': 'Search 1 Subscription', 'search_subscriptions': 'Search :count Subscriptions', 'subdomain_is_not_available': 'Subdomain is not available', @@ -43924,23 +44406,25 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Warning: Changing your phone number will disable 2FA', 'help_translate': 'Help Translate', 'please_select_a_country': 'Please select a country', - 'resend_invite': 'Ponów zaproszenie', + 'resend_invite': 'Reenviar Convite', 'disabled_two_factor': 'Successfully disabled 2FA', 'connected_google': 'Successfully connected account', 'disconnected_google': 'Successfully disconnected account', 'delivered': 'Delivered', - 'bounced': 'Bounced', + 'bounced': 'Devolvido', 'spam': 'Spam', 'view_docs': 'View Docs', 'enter_phone_to_enable_two_factor': 'Please provide a mobile phone number to enable two factor authentication', 'send_sms': 'Send SMS', 'sms_code': 'SMS Code', - 'two_factor_setup_help': 'Scan the bar code with a :link compatible app.', - 'enabled_two_factor': 'Successfully enabled Two-Factor Authentication', + 'two_factor_setup_help': + 'Eccaneie o código de barras com um app compatível com :link', + 'enabled_two_factor': + 'Ativação de Autenticação em 2 Fatores realizada com sucesso.', 'connect_google': 'Connect Google', 'disconnect_google': 'Disconnect Google', - 'enable_two_factor': 'Two-Factor Authentication', + 'enable_two_factor': 'Autenticação em 2 Fatores', 'disable_two_factor': 'Disable Two Factor', 'require_password_with_social_login': 'Require Password with Social Login', @@ -43953,7 +44437,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'security_settings': 'Security Settings', 'resend_email': 'Resend Email', 'confirm_your_email_address': 'Please confirm your email address', - 'refunded_payment': 'Zwrócono płatność', + 'refunded_payment': 'Pagamento Reembolsado', 'partially_unapplied': 'Partially Unapplied', 'select_a_gmail_user': 'Please select a user authenticated with Gmail', 'list_long_press': 'List Long Press', @@ -43963,26 +44447,26 @@ mixin LocalizationsProvider on LocaleCodeAware { 'An email has been sent to confirm the email address', 'counter_pattern_error': 'To use :client_counter please add either :client_number or :client_id_number to prevent conflicts', - 'this_quarter': 'Ten kwartał', - 'last_quarter': 'Poprzedni kwartał', + 'this_quarter': 'This Quarter', + 'last_quarter': 'Último Quadrimestre', 'to_update_run': 'To update run', - 'convert_to_invoice': 'Konwertuj do faktury', + 'convert_to_invoice': 'Converter em Fatura', 'registration_url': 'Registration URL', - 'invoice_project': 'Invoice Project', - 'invoice_task': 'Fakturuj zadanie', - 'invoice_expense': 'Faktura na wydatek', + 'invoice_project': 'Faturar Projeto', + 'invoice_task': 'Faturar Tarefa', + 'invoice_expense': 'Faturar Despesa', 'search_payment_term': 'Search 1 Payment Term', 'search_payment_terms': 'Search :count Payment Terms', 'save_and_preview': 'Save and Preview', 'save_and_email': 'Save and Email', - 'supported_events': 'Supported Events', - 'converted_amount': 'Kwota przeliczona', + 'supported_events': 'Eventos com Suporte', + 'converted_amount': 'Quantia Convertida', 'converted_balance': 'Converted Balance', 'converted_paid_to_date': 'Converted Paid to Date', 'converted_credit_balance': 'Converted Credit Balance', 'converted_total': 'Converted Total', 'is_sent': 'Is Sent', - 'default_documents': 'Domyślne dokumenty', + 'default_documents': 'Documentos Padrão', 'document_upload': 'Document Upload', 'document_upload_help': 'Enable clients to upload documents', 'expense_total': 'Expense Total', @@ -43992,9 +44476,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'enter_amount': 'Enter Amount', 'before_taxes': 'Before Taxes', 'after_taxes': 'After Taxes', - 'color': 'Color', - 'show': 'Show', - 'hide': 'Ukryj', + 'color': 'Cor', + 'show': 'Mostrar', + 'hide': 'Ocultar', 'empty_columns': 'Empty Columns', 'debug_mode_is_enabled': 'Debug mode is enabled', 'debug_mode_is_enabled_help': @@ -44008,14 +44492,14 @@ mixin LocalizationsProvider on LocaleCodeAware { 'duplicate_column_mapping': 'Duplicate column mapping', 'uses_inclusive_taxes': 'Uses Inclusive Taxes', 'is_amount_discount': 'Is Amount Discount', - 'column': 'Kolumna', - 'sample': 'Przykład', + 'column': 'Coluna', + 'sample': 'Amostra', 'map_to': 'Map To', - 'import': 'Importuj', + 'import': 'Importar', 'first_row_as_column_names': 'Use first row as column names', - 'select_file': 'Wybierz plik', + 'select_file': 'Selecione um arquivo', 'no_file_selected': 'No File Selected', - 'csv_file': 'Plik CSV', + 'csv_file': 'Arquivo CSV', 'csv': 'CSV', 'freshbooks': 'FreshBooks', 'invoice2go': 'Invoice2go', @@ -44027,71 +44511,71 @@ mixin LocalizationsProvider on LocaleCodeAware { 'import_type': 'Import Type', 'html_mode': 'HTML Mode', 'html_mode_help': 'Preview updates faster but is less accurate', - 'view_licenses': 'View Licenses', + 'view_licenses': 'Ver licenças', 'webhook_url': 'Webhook URL', - 'fullscreen_editor': 'Fullscreen Editor', + 'fullscreen_editor': 'Tela cheia', 'sidebar_editor': 'Sidebar Editor', 'please_type_to_confirm': 'Please type \":value\" to confirm', 'purge': 'Purge', - 'service': 'Service', - 'clone_to': 'Clone To', - 'clone_to_other': 'Clone to Other', - 'labels': 'Labels', + 'service': 'Serviço', + 'clone_to': 'Clonar para', + 'clone_to_other': 'Clonar para outro', + 'labels': 'Etiquetas', 'add_custom': 'Add Custom', 'payment_tax': 'Payment Tax', - 'unpaid': 'Nie zapłacono', - 'white_label': 'White Label', - 'delivery_note': 'Dowód dostawy', + 'unpaid': 'Não Pago', + 'white_label': 'Sem marca', + 'delivery_note': 'Nota de Entrega', 'sent_invoices_are_locked': 'Sent invoices are locked', 'paid_invoices_are_locked': 'Paid invoices are locked', 'source_code': 'Source Code', 'app_platforms': 'App Platforms', 'invoice_late': 'Invoice Late', - 'quote_expired': 'Quote Expired', - 'partial_due': 'Zaliczka', - 'invoice_total': 'Faktura ogółem', - 'quote_total': 'Suma oferty', - 'credit_total': 'Credit Total', - 'recurring_invoice_total': 'Invoice Total', - 'actions': 'Actions', - 'expense_number': 'Expense Number', - 'task_number': 'Task Number', - 'project_number': 'Project Number', - 'project_name': 'Project Name', - 'warning': 'Ostrzeżenie', - 'view_settings': 'View Settings', + 'quote_expired': 'Proposta expirada', + 'partial_due': 'Vencimento Parcial', + 'invoice_total': 'Total da Fatura', + 'quote_total': 'Total do Orçamento', + 'credit_total': 'Total do Crédito', + 'recurring_invoice_total': 'Total da Fatura', + 'actions': 'Ações', + 'expense_number': 'Nº da Despesa', + 'task_number': 'Nº da Tarefa', + 'project_number': 'Nº do Projeto', + 'project_name': 'Nome do projeto', + 'warning': 'Aviso', + 'view_settings': 'Ver definições', 'company_disabled_warning': 'Warning: this company has not yet been activated', 'late_invoice': 'Late Invoice', 'expired_quote': 'Expired Quote', 'remind_invoice': 'Remind Invoice', - 'cvv': 'Kod CVV', - 'client_name': 'Nazwa klienta', + 'cvv': 'CVV', + 'client_name': 'Nome do Cliente', 'client_phone': 'Client Phone', 'required_fields': 'Required Fields', - 'calculated_rate': 'Calculated Rate', - 'default_task_rate': 'Default Task Rate', - 'clear_cache': 'Clear Cache', - 'sort_order': 'Sort Order', - 'task_status': 'Status', - 'task_statuses': 'Task Statuses', - 'new_task_status': 'New Task Status', - 'edit_task_status': 'Edit Task Status', - 'created_task_status': 'Successfully created task status', - 'updated_task_status': 'Successfully update task status', - 'archived_task_status': 'Successfully archived task status', - 'deleted_task_status': 'Successfully deleted task status', - 'removed_task_status': 'Successfully removed task status', - 'restored_task_status': 'Successfully restored task status', + 'calculated_rate': 'Taxa Calculada', + 'default_task_rate': 'Taxa de tarefa padrão', + 'clear_cache': 'Limpar cache', + 'sort_order': 'Ordenar', + 'task_status': 'Situação', + 'task_statuses': 'Status da tarefa', + 'new_task_status': 'Novo Status da tarefa', + 'edit_task_status': 'Editar Status da Tarefa', + 'created_task_status': 'Status da tarefa criado com sucesso', + 'updated_task_status': 'Status da tarefa atualizado com sucesso', + 'archived_task_status': 'Status da tarefa arquivado com sucesso', + 'deleted_task_status': 'Status da tarefa apagado com sucesso', + 'removed_task_status': 'Status da tarefa removido com sucesso', + 'restored_task_status': 'Status da tarefa restaurado com sucesso', 'archived_task_statuses': 'Successfully archived :value task statuses', 'deleted_task_statuses': 'Successfully deleted :value task statuses', 'restored_task_statuses': 'Successfully restored :value task statuses', - 'search_task_status': 'Search 1 Task Status', - 'search_task_statuses': 'Search :count Task Statuses', - 'show_tasks_table': 'Show Tasks Table', + 'search_task_status': 'Encontrado 1 Status da Tarefa', + 'search_task_statuses': 'Encontrado :count Status da Tarefa', + 'show_tasks_table': 'Mostrar Tabela de Tarefas', 'show_tasks_table_help': - 'Always show the tasks section when creating invoices', - 'invoice_task_timelog': 'Invoice Task Timelog', + 'Sempre mostrar a seção de tarefas ao criar faturas', + 'invoice_task_timelog': 'Registro das tarefas de fatura', 'invoice_task_timelog_help': 'Add time details to the invoice line items', 'invoice_task_datelog': 'Invoice Task Datelog', 'invoice_task_datelog_help': 'Add date details to the invoice line items', @@ -44099,16 +44583,20 @@ mixin LocalizationsProvider on LocaleCodeAware { 'configure_statuses': 'Configure Statuses', 'task_settings': 'Task Settings', 'configure_categories': 'Configure Categories', - 'expense_categories': 'Kategorie wydatków', - 'new_expense_category': 'Nowa kategoria wydatków', + 'expense_categories': 'Categorias de Despesas', + 'new_expense_category': 'Nova Categoria de Despesas', 'edit_expense_category': 'Edit Expense Category', - 'created_expense_category': 'Kategoria wydatków została utworzona', - 'updated_expense_category': 'Kategoria wydatków została zaktualizowana', - 'archived_expense_category': 'Kategoria wydatków została zarchiwizowana', - 'deleted_expense_category': 'Usunięto kategorię', + 'created_expense_category': 'Categoria de despesas criada com sucesso', + 'updated_expense_category': + 'Categoria de despesas atualizada com sucesso', + 'archived_expense_category': + 'Categoria de despesas arquivada com sucesso', + 'deleted_expense_category': 'Categoria excluída com sucesso', 'removed_expense_category': 'Successfully removed expense category', - 'restored_expense_category': 'Przywrócono kategorię wydatków', - 'archived_expense_categories': 'Zarchiwizowana :count kategorii wydatków', + 'restored_expense_category': + 'Categoria de despesas restaurada com sucesso', + 'archived_expense_categories': + ':count categorias de despesas arquivadas com sucesso', 'deleted_expense_categories': 'Successfully deleted expense :value categories', 'restored_expense_categories': @@ -44116,1359 +44604,1368 @@ mixin LocalizationsProvider on LocaleCodeAware { 'search_expense_category': 'Search 1 Expense Category', 'search_expense_categories': 'Search :count Expense Categories', 'use_available_credits': 'Use Available Credits', - 'show_option': 'Show Option', + 'show_option': 'Mostrar opção', 'negative_payment_error': 'The credit amount cannot exceed the payment amount', - 'view_changes': 'View Changes', - 'force_update': 'Force Update', + 'view_changes': 'Ver alterações', + 'force_update': 'Forçar atualização', 'force_update_help': - 'You are running the latest version but there may be pending fixes available.', - 'mark_paid_help': 'Track the expense has been paid', - 'should_be_invoiced': 'Utwórz fakturę', + 'Você está executando a versão mais recente, mas pode haver correções pendentes disponíveis.', + 'mark_paid_help': 'Acompanhe se a despesa foi paga', + 'should_be_invoiced': 'Deverá ser Faturada', 'should_be_invoiced_help': 'Enable the expense to be invoiced', - 'add_documents_to_invoice_help': 'Make the documents visible', - 'convert_currency_help': 'Set an exchange rate', - 'expense_settings': 'Expense Settings', - 'clone_to_recurring': 'Clone to Recurring', - 'crypto': 'Crypto', + 'add_documents_to_invoice_help': 'Tornar os documentos visíveis', + 'convert_currency_help': 'Defina uma taxa de câmbio', + 'expense_settings': 'Configurações das despesas', + 'clone_to_recurring': 'Clonar recorrência', + 'crypto': 'Criptomoeda', 'paypal': 'PayPal', 'alipay': 'Alipay', 'sofort': 'Sofort', 'apple_pay': 'Apple/Google Pay', - 'user_field': 'User Field', - 'variables': 'Variables', - 'show_password': 'Show Password', - 'hide_password': 'Hide Password', - 'copy_error': 'Copy Error', - 'capture_card': 'Capture Card', - 'auto_bill_enabled': 'Auto Bill Enabled', - 'total_taxes': 'Total Taxes', + 'user_field': 'Campo do usuário', + 'variables': 'Variável', + 'show_password': 'Mostrar senha', + 'hide_password': 'Esconder senha', + 'copy_error': 'Copiar Erro', + 'capture_card': 'Cartão de captura', + 'auto_bill_enabled': 'Cobrança automática habilitada', + 'total_taxes': 'Impostos totais', 'line_taxes': 'Line Taxes', - 'total_fields': 'Total Fields', - 'stopped_recurring_invoice': 'Successfully stopped recurring invoice', - 'started_recurring_invoice': 'Successfully started recurring invoice', - 'resumed_recurring_invoice': 'Successfully resumed recurring invoice', + 'total_fields': 'Campo Total', + 'stopped_recurring_invoice': 'Fatura recorrente interrompida com sucesso', + 'started_recurring_invoice': 'Fatura recorrente iniciada com sucesso', + 'resumed_recurring_invoice': 'Fatura recorrente retomada com sucesso', 'gateway_refund': 'Gateway Refund', - 'gateway_refund_help': 'Process the refund with the payment gateway', - 'due_date_days': 'Due Date', - 'paused': 'Paused', - 'mark_active': 'Oznacz jako aktywną', - 'day_count': 'Day :count', - 'first_day_of_the_month': 'First Day of the Month', - 'last_day_of_the_month': 'Last Day of the Month', + 'gateway_refund_help': 'Processe o reembolso com o portal de pagamento', + 'due_date_days': 'Data de vencimento', + 'paused': 'Pausado', + 'mark_active': 'Marcar como Ativo', + 'day_count': 'Dia: contagem', + 'first_day_of_the_month': 'Primeiro dia do Mês', + 'last_day_of_the_month': 'Último dia do Mês', 'use_payment_terms': 'Use Payment Terms', - 'endless': 'Endless', - 'next_send_date': 'Next Send Date', - 'remaining_cycles': 'Remaining Cycles', - 'recurring_invoice': 'Odnawialna faktura', - 'recurring_invoices': 'Faktury odnawialne', - 'new_recurring_invoice': 'Nowa faktura odnawialna', - 'edit_recurring_invoice': 'Edit Recurring Invoice', - 'created_recurring_invoice': 'Successfully created recurring invoice', - 'updated_recurring_invoice': 'Successfully updated recurring invoice', - 'archived_recurring_invoice': 'Odnawialna faktura została zarchiwizowana', - 'deleted_recurring_invoice': 'Odnawialna faktura została usunięta.', - 'removed_recurring_invoice': 'Successfully removed recurring invoice', - 'restored_recurring_invoice': 'Odnawialna faktura została przywrócona', + 'endless': 'Interminável', + 'next_send_date': 'Próxima data de envio', + 'remaining_cycles': 'Ciclos Restantes', + 'recurring_invoice': 'Fatura Recorrente', + 'recurring_invoices': 'Faturas Recorrentes', + 'new_recurring_invoice': 'Nova Fatura Recorrente', + 'edit_recurring_invoice': 'Editar Fatura Recorrente', + 'created_recurring_invoice': 'Fatura recorrente criada com sucesso', + 'updated_recurring_invoice': 'Fatura recorrente atualizada com sucesso', + 'archived_recurring_invoice': 'Fatura Recorrente arquivada com sucesso', + 'deleted_recurring_invoice': 'Fatura recorrente excluída com sucesso', + 'removed_recurring_invoice': 'Fatura recorrente removida com sucesso', + 'restored_recurring_invoice': 'Fatura Recorrente restaurada com sucesso', 'archived_recurring_invoices': 'Successfully archived recurring :value invoices', 'deleted_recurring_invoices': 'Successfully deleted recurring :value invoices', 'restored_recurring_invoices': 'Successfully restored recurring :value invoices', - 'search_recurring_invoice': 'Search 1 Recurring Invoice', - 'search_recurring_invoices': 'Search :count Recurring Invoices', - 'send_date': 'Send Date', - 'auto_bill_on': 'Auto Bill On', - 'minimum_under_payment_amount': 'Minimum Under Payment Amount', - 'profit': 'Zysk', - 'line_item': 'Element na liście', - 'allow_over_payment': 'Allow Over Payment', + 'search_recurring_invoice': 'Encontrado 1 Fatura recorrente', + 'search_recurring_invoices': 'Encontrado :count Faturas recorrentes', + 'send_date': 'Data de envio', + 'auto_bill_on': 'Faturamento Automático Ativado', + 'minimum_under_payment_amount': 'Valor mínimo abaixo do pagamento', + 'profit': 'Lucro', + 'line_item': 'Item de linha', + 'allow_over_payment': 'Permitir pagamento em excesso', 'allow_over_payment_help': 'Support paying extra to accept tips', - 'allow_under_payment': 'Allow Under Payment', + 'allow_under_payment': 'Permitir pagamento menor', 'allow_under_payment_help': 'Support paying at minimum the partial/deposit amount', - 'test_mode': 'Test Mode', - 'opened': 'Opened', - 'payment_reconciliation_failure': 'Reconciliation Failure', - 'payment_reconciliation_success': 'Reconciliation Success', - 'gateway_success': 'Gateway Success', - 'gateway_failure': 'Gateway Failure', - 'gateway_error': 'Gateway Error', - 'email_send': 'Email Send', - 'email_retry_queue': 'Email Retry Queue', - 'failure': 'Failure', - 'quota_exceeded': 'Quota Exceeded', - 'upstream_failure': 'Upstream Failure', - 'system_logs': 'System Logs', - 'view_portal': 'Zobacz portal', - 'copy_link': 'Copy Link', - 'token_billing': 'Zapisz dane karty', - 'welcome_to_invoice_ninja': 'Welcome to Invoice Ninja', - 'always': 'Zawsze', - 'optin': 'Opt-In', - 'optout': 'Opt-Out', - 'label': 'Label', - 'client_number': 'Numer klienta', - 'auto_convert': 'Auto Convert', - 'company_name': 'Nazwa firmy', - 'reminder1_sent': 'Reminder 1 Sent', - 'reminder2_sent': 'Reminder 2 Sent', - 'reminder3_sent': 'Reminder 3 Sent', - 'reminder_last_sent': 'Reminder Last Sent', - 'pdf_page_info': 'Page :current of :total', - 'emailed_invoices': 'Wysyłka maili powiodła się', - 'emailed_quotes': 'Wysyłka ofert powiodła się', - 'emailed_credits': 'Successfully emailed credits', - 'gateway': 'Dostawca płatności', - 'view_in_stripe': 'View in Stripe', - 'rows_per_page': 'Rows Per Page', - 'hours': 'Godziny', - 'statement': 'Wyciąg', - 'taxes': 'Podatki', - 'surcharge': 'Dopłata', - 'apply_payment': 'Apply Payment', - 'apply_credit': 'Zastosuj kredyt', - 'apply': 'Zastosuj', - 'unapplied': 'Unapplied', - 'select_label': 'Select Label', - 'custom_labels': 'Custom Labels', - 'record_type': 'Record Type', - 'record_name': 'Record Name', - 'file_type': 'File Type', - 'height': 'Height', - 'width': 'Width', - 'to': 'Do', - 'health_check': 'Health Check', - 'payment_type_id': 'Typ płatności', - 'last_login_at': 'Last Login At', - 'company_key': 'Company Key', - 'storefront': 'Storefront', - 'storefront_help': 'Enable third-party apps to create invoices', - 'client_created': 'Client Created', - 'online_payment_email': 'Online Payment Email', - 'manual_payment_email': 'Manual Payment Email', - 'completed': 'Zakończone', - 'gross': 'Gross', - 'net_amount': 'Kwota netto', - 'net_balance': 'Net Balance', - 'client_settings': 'Client Settings', - 'selected_invoices': 'Selected Invoices', - 'selected_payments': 'Selected Payments', - 'selected_quotes': 'Selected Quotes', - 'selected_tasks': 'Selected Tasks', - 'selected_expenses': 'Selected Expenses', - 'upcoming_invoices': 'Nadchodzące faktury', - 'past_due_invoices': 'Past Due Invoices', - 'recent_payments': 'Ostatnie płatności', - 'upcoming_quotes': 'Nadchodzące oferty', - 'expired_quotes': 'Wygasłe oferty', - 'create_client': 'Create Client', - 'create_invoice': 'Utwórz Fakturę', - 'create_quote': 'Stwórz ofertę', - 'create_payment': 'Create Payment', - 'create_vendor': 'Utwórz dostawcę', - 'update_quote': 'Update Quote', - 'delete_quote': 'Usuń ofertę', - 'update_invoice': 'Update Invoice', - 'delete_invoice': 'Usuń fakturę', - 'update_client': 'Update Client', - 'delete_client': 'Usuń klienta', - 'delete_payment': 'Usuń płatność', - 'update_vendor': 'Update Vendor', - 'delete_vendor': 'Usuń dostawcę', - 'create_expense': 'Create Expense', - 'update_expense': 'Update Expense', - 'delete_expense': 'Usuń wydatek', - 'create_task': 'Stwórz zadanie', - 'update_task': 'Update Task', - 'delete_task': 'Usuń zadanie', - 'approve_quote': 'Approve Quote', - 'off': 'Wyłaczono', - 'when_paid': 'When Paid', - 'expires_on': 'Expires On', - 'free': 'Darmowe', - 'plan': 'Plan', - 'show_sidebar': 'Show Sidebar', - 'hide_sidebar': 'Hide Sidebar', - 'event_type': 'Event Type', - 'target_url': 'Target', - 'copy': 'Copy', - 'must_be_online': 'Uruchom ponownie aplikację po połączeniu z Internetem', - 'crons_not_enabled': 'The crons need to be enabled', - 'api_webhooks': 'API Webhooks', - 'search_webhooks': 'Search :count Webhooks', - 'search_webhook': 'Search 1 Webhook', - 'webhook': 'Webhook', - 'webhooks': 'Webhooks', - 'new_webhook': 'New Webhook', - 'edit_webhook': 'Edit Webhook', - 'created_webhook': 'Successfully created webhook', - 'updated_webhook': 'Successfully updated webhook', - 'archived_webhook': 'Successfully archived webhook', - 'deleted_webhook': 'Successfully deleted webhook', - 'removed_webhook': 'Successfully removed webhook', - 'restored_webhook': 'Successfully restored webhook', - 'archived_webhooks': 'Successfully archived :value webhooks', - 'deleted_webhooks': 'Successfully deleted :value webhooks', - 'removed_webhooks': 'Successfully removed :value webhooks', - 'restored_webhooks': 'Successfully restored :value webhooks', - 'api_tokens': 'Tokeny API', - 'api_docs': 'API Docs', - 'search_tokens': 'Search :count Tokens', - 'search_token': 'Search 1 Token', - 'token': 'Token', - 'tokens': 'Tokeny', - 'new_token': 'New Token', - 'edit_token': 'Edytuj token', - 'created_token': 'Token został utworzony', - 'updated_token': 'Token został zaktualizowany', - 'archived_token': 'Token został zarchiwizowany', - 'deleted_token': 'Token został usunięty', - 'removed_token': 'Successfully removed token', - 'restored_token': 'Successfully restored token', - 'archived_tokens': 'Successfully archived :value tokens', - 'deleted_tokens': 'Successfully deleted :value tokens', - 'restored_tokens': 'Successfully restored :value tokens', - 'client_registration': 'Client Registration', - 'client_registration_help': - 'Enable clients to self register in the portal', - 'customize_and_preview': 'Customize & Preview', - 'email_invoice': 'Wyślij fakturę', - 'email_quote': 'Wyślij ofertę', - 'email_credit': 'Email Credit', - 'email_payment': 'Email Payment', - 'client_email_not_set': 'Client does not have an email address set', + 'test_mode': 'Modo de teste', + 'opened': 'Aberto', + 'payment_reconciliation_failure': 'Falha de reconciliação', + 'payment_reconciliation_success': 'Sucesso de Reconciliação', + 'gateway_success': 'Sucesso do Portal', + 'gateway_failure': 'Falha do Portal', + 'gateway_error': 'Erro do Portal', + 'email_send': 'Email Enviado', + 'email_retry_queue': 'Fila de Repetição de Email', + 'failure': 'Falha', + 'quota_exceeded': 'Cota excedida', + 'upstream_failure': 'Falha Upstream', + 'system_logs': 'Logs de Sistema', + 'view_portal': 'Visualizar portal', + 'copy_link': 'Link de cópia', + 'token_billing': 'Salvar detalhes do cartão', + 'welcome_to_invoice_ninja': 'Bem-vindo ao Invoice Ninja', + 'always': 'Sempre', + 'optin': 'Autorizar', + 'optout': 'Desautorizar', + 'label': 'Rótulo', + 'client_number': 'Número do Cliente', + 'auto_convert': 'Auto Conversão', + 'company_name': 'Nome da Empresa', + 'reminder1_sent': 'Lembrete 1 Enviado', + 'reminder2_sent': 'Lembrete 2 Enviado', + 'reminder3_sent': 'Lembrete 3 Enviado', + 'reminder_last_sent': 'Último Lembrete Enviado', + 'pdf_page_info': 'Página: atual de: total', + 'emailed_invoices': 'Faturas enviadas por email com sucesso', + 'emailed_quotes': 'Orçamentos enviados por email com sucesso', + 'emailed_credits': 'Créditos enviados por e-mail com sucesso', + 'gateway': 'Gateway', + 'view_in_stripe': 'Ver em Listra', + 'rows_per_page': 'Linhas por Página', + 'hours': 'Horas', + 'statement': 'Declaração', + 'taxes': 'Impostos', + 'surcharge': 'Sobretaxa', + 'apply_payment': 'Aplicar Pagamento', + 'apply_credit': 'Aplicar Crédito', + 'apply': 'Aplicar', + 'unapplied': 'Não Aplicado', + 'select_label': 'Selecione o Rótulo', + 'custom_labels': 'Etiquetas Personalizadas', + 'record_type': 'Tipo de Registro', + 'record_name': 'Nome do Registro', + 'file_type': 'Tipo de Arquivo', + 'height': 'Altura', + 'width': 'Largura', + 'to': 'Para', + 'health_check': 'Exame de saúde', + 'payment_type_id': 'Tipo de Pagamento', + 'last_login_at': 'Último login em', + 'company_key': 'Chave da Empresa', + 'storefront': 'Vitrine', + 'storefront_help': 'Habilite aplicativos de terceiros para criar faturas', + 'client_created': 'Cliente Criado', + 'online_payment_email': 'Email de pagamento online', + 'manual_payment_email': 'Email de pagamento manual', + 'completed': 'Completado', + 'gross': 'Bruto', + 'net_amount': 'Valor líquido', + 'net_balance': 'Saldo Líquido', + 'client_settings': 'Configurações do cliente', + 'selected_invoices': 'Faturas Selecionadas', + 'selected_payments': 'Pagamentos Selecionados', + 'selected_quotes': 'Cotações Selecionadas', + 'selected_tasks': 'Tarefas Selecionadas', + 'selected_expenses': 'Despesas Selecionadas', + 'upcoming_invoices': 'Próximas Faturas', + 'past_due_invoices': 'Faturas Vencidas', + 'recent_payments': 'Pagamentos Recentes', + 'upcoming_quotes': 'Próximos Orçamentos', + 'expired_quotes': 'Orçamentos Expirados', + 'create_client': 'Criar Cliente', + 'create_invoice': 'Criar Fatura', + 'create_quote': 'Criar Orçamento', + 'create_payment': 'Criar Pagamento', + 'create_vendor': 'Criar fornecedor', + 'update_quote': 'Atualizar Cotação', + 'delete_quote': 'Excluir Orçamento', + 'update_invoice': 'Atualizar Fatura', + 'delete_invoice': 'Excluir Fatura', + 'update_client': 'Atualizar Cliente', + 'delete_client': 'Excluir Cliente', + 'delete_payment': 'Excluir Pagamento', + 'update_vendor': 'Atualizar Fornecedor', + 'delete_vendor': 'Excluir Fornecedor', + 'create_expense': 'Criar Despesa', + 'update_expense': 'Atualizar Despesa', + 'delete_expense': 'Excluir Despesa', + 'create_task': 'Criar Tarefa', + 'update_task': 'Atualizar Tarefa', + 'delete_task': 'Excluir Tarefa', + 'approve_quote': 'Aprovar Cotação', + 'off': 'Desligado', + 'when_paid': 'Quando Pago', + 'expires_on': 'Expira em', + 'free': 'Gratuito', + 'plan': 'Plano', + 'show_sidebar': 'Exibir Barra Lateral', + 'hide_sidebar': 'Ocultar Barra Lateral', + 'event_type': 'Tipo de Evento', + 'target_url': 'Alvo', + 'copy': 'Cópia', + 'must_be_online': + 'Reinicie o aplicativo assim que estiver conectado à internet', + 'crons_not_enabled': 'Os crons precisam ser habilitados', + 'api_webhooks': 'API Webhooks', + 'search_webhooks': 'Pesquisar: contar Webhooks', + 'search_webhook': 'Pesquisar 1 Webhook', + 'webhook': 'Webhook', + 'webhooks': 'Webhooks', + 'new_webhook': 'Nova Webhook', + 'edit_webhook': 'Editar Webhook', + 'created_webhook': 'Webhook Criada com Sucesso', + 'updated_webhook': 'Webhook Atualizada com Sucesso', + 'archived_webhook': 'Webhook Arquivada com Sucesso', + 'deleted_webhook': 'Webhook Excluída com Sucesso', + 'removed_webhook': 'Webhook Removida com Sucesso', + 'restored_webhook': 'Webhook Restaurada com Sucesso', + 'archived_webhooks': 'Successfully archived :value webhooks', + 'deleted_webhooks': 'Successfully deleted :value webhooks', + 'removed_webhooks': 'Successfully removed :value webhooks', + 'restored_webhooks': 'Successfully restored :value webhooks', + 'api_tokens': 'Tokens de API', + 'api_docs': 'API Docs', + 'search_tokens': 'Pesquisar: contar Tokens', + 'search_token': 'Pesquisar 1 Token', + 'token': 'Token', + 'tokens': 'Tokens', + 'new_token': 'Novo Token', + 'edit_token': 'Editar Token', + 'created_token': 'Token criado com sucesso', + 'updated_token': 'Token atualizado com sucesso', + 'archived_token': 'Token arquivado com sucesso', + 'deleted_token': 'Token excluído com sucesso', + 'removed_token': 'Token Removido com Sucesso', + 'restored_token': 'Token Restaurado com Sucesso', + 'archived_tokens': 'Successfully archived :value tokens', + 'deleted_tokens': 'Successfully deleted :value tokens', + 'restored_tokens': 'Successfully restored :value tokens', + 'client_registration': 'Registro de cliente', + 'client_registration_help': + 'Permitir que os clientes se auto-registrem no portal', + 'customize_and_preview': 'Personalizar & Visualizar', + 'email_invoice': 'Enviar Fatura por Email', + 'email_quote': 'Enviar Orçamento por Email', + 'email_credit': 'Crédito de Email', + 'email_payment': 'Pagamento por Email', + 'client_email_not_set': + 'O cliente não tem um endereço de e-mail definido', 'ledger': 'Ledger', - 'view_pdf': 'Wyświetl PDF', - 'all_records': 'All records', - 'owned_by_user': 'Owned by user', - 'credit_remaining': 'Credit Remaining', - 'contact_name': 'Nazwa kontaktu', - 'use_default': 'Use default', - 'reminder_endless': 'Endless Reminders', - 'number_of_days': 'Number of days', - 'configure_payment_terms': 'Configure Payment Terms', - 'payment_term': 'Payment Term', - 'new_payment_term': 'New Payment Term', - 'edit_payment_term': 'Edytuj warunki płatności', - 'created_payment_term': 'Utworzono termin płatności', - 'updated_payment_term': 'Zaktualizowano termin płatności', - 'archived_payment_term': 'Zarchiwizowano termin płatności', - 'deleted_payment_term': 'Successfully deleted payment term', - 'removed_payment_term': 'Successfully removed payment term', - 'restored_payment_term': 'Successfully restored payment term', + 'view_pdf': 'Ver PDF', + 'all_records': 'Todos os registros', + 'owned_by_user': 'Propriedade do usuário', + 'credit_remaining': 'Crédito Restante', + 'contact_name': 'Nome do Contato', + 'use_default': 'Use o padrão', + 'reminder_endless': 'Lembrete contínuo', + 'number_of_days': 'Número de dias', + 'configure_payment_terms': 'Configurar as condições de pagamento', + 'payment_term': 'Condição de Pagamento', + 'new_payment_term': 'Novo Condição de Pagamento', + 'edit_payment_term': 'Editar Condição de Pagamento', + 'created_payment_term': 'Condições de pagamento criadas com sucesso', + 'updated_payment_term': 'Condições de pagamento atualizadas com sucesso', + 'archived_payment_term': 'Condições de pagamento arquivadas com sucesso', + 'deleted_payment_term': 'Condição de pagamento excluídas com sucesso', + 'removed_payment_term': 'Condição de pagamento removida com sucesso', + 'restored_payment_term': 'Condição de pagamento restaurado com sucesso', 'archived_payment_terms': 'Successfully archived :value payment terms', 'deleted_payment_terms': 'Successfully deleted :value payment terms', 'restored_payment_terms': 'Successfully restored :value payment terms', - 'email_sign_in': 'Zaloguj się przez email', - 'change': 'Change', - 'change_to_mobile_layout': 'Change to the mobile layout?', - 'change_to_desktop_layout': 'Change to the desktop layout?', - 'send_from_gmail': 'Send from Gmail', - 'reversed': 'Reversed', - 'cancelled': 'Cancelled', - 'credit_amount': 'Kwota kredytu', - 'quote_amount': 'Quote Amount', - 'hosted': 'Hosted', - 'selfhosted': 'Self-Hosted', - 'exclusive': 'Doliczanie do kwoty', - 'inclusive': 'Wliczanie w kwotę', - 'hide_menu': 'Hide Menu', - 'show_menu': 'Show Menu', - 'partially_refunded': 'Partially Refunded', - 'search_documents': 'Search Documents', - 'search_designs': 'Search Designs', - 'search_invoices': 'Search Invoices', - 'search_clients': 'Search Clients', - 'search_products': 'Search Products', - 'search_quotes': 'Search Quotes', - 'search_credits': 'Search Credits', - 'search_vendors': 'Search Vendors', - 'search_users': 'Search Users', - 'search_tax_rates': 'Search Tax Rates', - 'search_tasks': 'Search Tasks', - 'search_settings': 'Search Settings', - 'search_projects': 'Search Projects', - 'search_expenses': 'Search Expenses', - 'search_payments': 'Search Payments', - 'search_groups': 'Search Groups', - 'search_company': 'Szukaj w firmie', - 'search_document': 'Search 1 Document', - 'search_design': 'Search 1 Design', - 'search_invoice': 'Search 1 Invoice', - 'search_client': 'Search 1 Client', - 'search_product': 'Search 1 Product', - 'search_quote': 'Search 1 Quote', - 'search_credit': 'Search 1 Credit', - 'search_vendor': 'Search 1 Vendor', - 'search_user': 'Search 1 User', - 'search_tax_rate': 'Search 1 Tax Rate', - 'search_task': 'Search 1 Tasks', - 'search_project': 'Search 1 Project', - 'search_expense': 'Search 1 Expense', - 'search_payment': 'Search 1 Payment', - 'search_group': 'Search 1 Group', - 'refund_payment': 'Zwrot płatności', - 'cancelled_invoice': 'Successfully cancelled invoice', - 'cancelled_invoices': 'Successfully cancelled invoices', - 'reversed_invoice': 'Successfully reversed invoice', - 'reversed_invoices': 'Successfully reversed invoices', - 'reverse': 'Reverse', - 'full_name': 'Pełna nazwa', - 'city_state_postal': 'Miasto/województwo/kod pocztowy', - 'postal_city_state': 'Kod pocztowy/Miasto/Województwo', - 'custom1': 'First Custom', - 'custom2': 'Second Custom', - 'custom3': 'Third Custom', - 'custom4': 'Fourth Custom', - 'optional': 'Optional', - 'license': 'License', - 'purge_data': 'Purge Data', - 'purge_successful': 'Successfully purged company data', + 'email_sign_in': 'Entrar com email', + 'change': 'Mudar', + 'change_to_mobile_layout': 'Mudar para o layout móvel?', + 'change_to_desktop_layout': 'Mudar para o layout da área de trabalho?', + 'send_from_gmail': 'Enviar do Gmail', + 'reversed': 'Invertido', + 'cancelled': 'Cancelado', + 'credit_amount': 'Quantia de Crédito', + 'quote_amount': 'Valor da cotação', + 'hosted': 'Hospedado', + 'selfhosted': 'Auto-hospedado', + 'exclusive': 'Exclusivo', + 'inclusive': 'Inclusivo', + 'hide_menu': 'Ocultar Menu', + 'show_menu': 'Exibir Menu', + 'partially_refunded': 'Parcialmente Reembolsado', + 'search_documents': 'Pesquisar Documentos', + 'search_designs': 'Pesquisar Designs', + 'search_invoices': 'Pesquisar Faturas', + 'search_clients': 'Pesquisar Clientes', + 'search_products': 'Pesquisar Produtos', + 'search_quotes': 'Pesquisar Cotações', + 'search_credits': 'Pesquisar Créditos', + 'search_vendors': 'Pesquisar Fornecedores', + 'search_users': 'Pesquisar Usuários', + 'search_tax_rates': 'Pesquisar taxas de impostos', + 'search_tasks': 'Pesquisar Tarefas', + 'search_settings': 'Pesquisar Configurações', + 'search_projects': 'Pesquisar Projetos', + 'search_expenses': 'Pesquisar Despesas', + 'search_payments': 'Pesquisar Pagamentos', + 'search_groups': 'Pesquisar Grupos', + 'search_company': 'Pesquisar Empresa', + 'search_document': 'Pesquisar 1 Documento', + 'search_design': 'Pesquisar 1 Design', + 'search_invoice': 'Pesquisar 1 Fatura', + 'search_client': 'Pesquisar 1 Cliente', + 'search_product': 'Pesquisar 1 Produto', + 'search_quote': 'Pesquisar 1 Cotação', + 'search_credit': 'Pesquisar 1 Crédito', + 'search_vendor': 'Pesquisar 1 Fornecedor', + 'search_user': 'Pesquisar 1 Usuário', + 'search_tax_rate': 'Pesquisar 1 Taxa de Imposto', + 'search_task': 'Pesquisar 1 Tarefa', + 'search_project': 'Pesquisar 1 Projeto', + 'search_expense': 'Pesquisar 1 Despesa', + 'search_payment': 'Pesquisar 1 Pagamento', + 'search_group': 'Pesquisar 1 Grupo', + 'refund_payment': 'Reembolsar Pagamento', + 'cancelled_invoice': 'Fatura Cancelada com Sucesso', + 'cancelled_invoices': 'Faturas Canceladas com Sucesso', + 'reversed_invoice': 'Fatura Revertida com Sucesso', + 'reversed_invoices': 'Faturas Revertidas com Sucesso', + 'reverse': 'Reverter', + 'full_name': 'Nome Completo', + 'city_state_postal': 'Cidade/Estado/CEP', + 'postal_city_state': 'CEP/Cidade/Estado', + 'custom1': 'Primeiro Personalizado', + 'custom2': 'Segundo Personalizado', + 'custom3': 'Terceiro Personalizado', + 'custom4': 'Quarto Personalizado', + 'optional': 'Opcional', + 'license': 'Licença', + 'purge_data': 'Limpar Dados', + 'purge_successful': 'Dados da empresa limpos com sucesso', 'purge_data_message': - 'Warning: This will permanently erase your data, there is no undo.', - 'invoice_balance': 'Invoice Balance', - 'age_group_0': '0 - 30 dni', - 'age_group_30': '30 - 60 dni', - 'age_group_60': '60 - 90 dni', - 'age_group_90': '90 - 120 dni', - 'age_group_120': 'ponad 120 dni', - 'refresh': 'Refresh', - 'saved_design': 'Successfully saved design', - 'client_details': 'Client Details', - 'company_address': 'Company Address', - 'invoice_details': 'Szczegóły faktury', - 'quote_details': 'Quote Details', - 'credit_details': 'Credit Details', - 'product_columns': 'Product Columns', - 'task_columns': 'Task Columns', - 'add_field': 'Add Field', - 'all_events': 'All Events', - 'permissions': 'Uprawnienia', - 'none': 'None', - 'owned': 'Owned', - 'payment_success': 'Payment Success', - 'payment_failure': 'Payment Failure', - 'invoice_sent': ':count wysłana faktura', - 'quote_sent': 'Quote Sent', - 'credit_sent': 'Credit Sent', - 'invoice_viewed': 'Invoice Viewed', - 'quote_viewed': 'Quote Viewed', - 'credit_viewed': 'Credit Viewed', - 'quote_approved': 'Quote Approved', - 'receive_all_notifications': 'Receive All Notifications', - 'purchase_license': 'Purchase License', - 'apply_license': 'Zastosuj licencję', - 'cancel_account': 'Anuluj konto', + 'Aviso: Isto irá apagar seus dados permanentemente, não há como defazer esta ação.', + 'invoice_balance': 'Saldo da fatura', + 'age_group_0': '0 - 30 Dias', + 'age_group_30': '30 - 60 Dias', + 'age_group_60': '60 - 90 Dias', + 'age_group_90': '90 - 120 Dias', + 'age_group_120': '120+ Dias', + 'refresh': 'Atualizar', + 'saved_design': 'Design salvo com sucesso', + 'client_details': 'Detalhes do cliente', + 'company_address': 'Endereço da companhia', + 'invoice_details': 'Detalhes da Fatura', + 'quote_details': 'Detalhes da cotação', + 'credit_details': 'Detalhes de crédito', + 'product_columns': 'Colunas de Produto', + 'task_columns': 'Colunas de Tarefas', + 'add_field': 'Adicionar campo', + 'all_events': 'Todos os eventos', + 'permissions': 'Permissões', + 'none': 'Nenhum', + 'owned': 'Possuído', + 'payment_success': 'Pagamento realizado com sucesso', + 'payment_failure': 'Falha de Pagamento', + 'invoice_sent': ':count fatura enviada', + 'quote_sent': 'Cotação enviada', + 'credit_sent': 'Crédito Enviado', + 'invoice_viewed': 'Fatura visualizada', + 'quote_viewed': 'Cotação visualizada', + 'credit_viewed': 'Crédito visualizado', + 'quote_approved': 'Cotação aprovada', + 'receive_all_notifications': 'Receber todas as notificações', + 'purchase_license': 'Comprar licença', + 'apply_license': 'Aplicar Licença', + 'cancel_account': 'Excluir Conta', 'cancel_account_message': - 'Ostrzeżenie: Nie można cofnąć tej operacji, wszystkie twoje dane zostaną usunięte.', - 'delete_company': 'Delete Company', + 'Aviso: Isso excluirá permanentemente sua conta, não há como desfazer esta ação.', + 'delete_company': 'Excluir Empresa', 'delete_company_message': - 'Warning: This will permanently delete your company, there is no undo.', + 'Aviso: Isto irá excluir permanentemente sua empresa, não há como desfazer esta ação.', 'enabled_modules': 'Enabled Modules', - 'converted_quote': 'Successfully converted quote', - 'credit_design': 'Credit Design', - 'includes': 'Includes', - 'header': 'Nagłówek', - 'load_design': 'Load Design', + 'converted_quote': 'Cotação convertida com sucesso', + 'credit_design': 'Design de Crédito', + 'includes': 'Inclui', + 'header': 'Cabeçalho', + 'load_design': 'Carregar Design', 'css_framework': 'CSS Framework', - 'custom_designs': 'Custom Designs', + 'custom_designs': 'Designs personalizados', 'designs': 'Designs', - 'new_design': 'New Design', - 'edit_design': 'Edit Design', - 'created_design': 'Successfully created design', - 'updated_design': 'Successfully updated design', - 'archived_design': 'Successfully archived design', - 'deleted_design': 'Successfully deleted design', - 'removed_design': 'Successfully removed design', - 'restored_design': 'Successfully restored design', + 'new_design': 'Novo Design', + 'edit_design': 'Editar Design', + 'created_design': 'Design criado com sucesso', + 'updated_design': 'Design atualizado com sucesso', + 'archived_design': 'Design arquivado com sucesso', + 'deleted_design': 'Design excluído com sucesso', + 'removed_design': 'Design removido com sucesso', + 'restored_design': 'Design restaurado com sucesso', 'archived_designs': 'Successfully archived :value designs', 'deleted_designs': 'Successfully deleted :value designs', 'restored_designs': 'Successfully restored :value designs', - 'proposals': 'Propozycje', + 'proposals': 'Propostas', 'tickets': 'Tickets', - 'recurring_quotes': 'Powtarzalne wyceny', - 'recurring_tasks': 'Recurring Tasks', - 'account_management': 'Zarządzanie kontem', - 'credit_date': 'Data kredytu', - 'credit': 'Kredyt', - 'credits': 'Kredyty', - 'new_credit': 'Wprowadź kredyt', - 'edit_credit': 'Edytuj kredyt', - 'created_credit': 'Kredyt został utworzony', - 'updated_credit': 'Zaktualizowano kredyt', - 'archived_credit': 'Kredyt zarchiwizowano', - 'deleted_credit': 'Kredyt został usunięty', - 'removed_credit': 'Successfully removed credit', - 'restored_credit': 'Kredyt został przywrócony', - 'archived_credits': 'Zarchiwizowano :count kredyty/kredytów', - 'deleted_credits': 'Usunięto :count kredyty/kredytów', + 'recurring_quotes': 'Orçamentos Recorrentes', + 'recurring_tasks': 'Tarefas Recorrentes', + 'account_management': 'Gerenciamento da Conta', + 'credit_date': 'Data do Crédito', + 'credit': 'Crédito', + 'credits': 'Créditos', + 'new_credit': 'Adicionar Crédito', + 'edit_credit': 'Editar Crédito', + 'created_credit': 'Crédito criado com sucesso', + 'updated_credit': 'Crédito atualizado com sucesso', + 'archived_credit': 'Crédito arquivado com sucesso', + 'deleted_credit': 'Crédito excluído com sucesso', + 'removed_credit': 'Crédito removido com sucesso', + 'restored_credit': 'Crédito restaurado com sucesso', + 'archived_credits': ':count créditos arquivados com sucesso', + 'deleted_credits': ':count créditos excluídos com sucesso', 'restored_credits': 'Successfully restored :value credits', - 'current_version': 'Aktualna wersja', - 'latest_version': 'Latest Version', - 'update_now': 'Update Now', - 'a_new_version_is_available': 'A new version of the web app is available', - 'update_available': 'Update Available', - 'app_updated': 'Update successfully completed', - 'learn_more': 'Więcej informacji', - 'integrations': 'Integrations', - 'tracking_id': 'Tracking Id', - 'slack_webhook_url': 'Slack Webhook URL', - 'credit_footer': 'Credit Footer', - 'credit_terms': 'Credit Terms', - 'new_company': 'Nowa firma', - 'added_company': 'Successfully added company', - 'company1': 'Custom Company 1', - 'company2': 'Custom Company 2', - 'company3': 'Custom Company 3', - 'company4': 'Custom Company 4', - 'product1': 'Custom Product 1', - 'product2': 'Custom Product 2', - 'product3': 'Custom Product 3', - 'product4': 'Custom Product 4', - 'client1': 'Custom Client 1', - 'client2': 'Custom Client 2', - 'client3': 'Custom Client 3', - 'client4': 'Custom Client 4', - 'contact1': 'Custom Contact 1', - 'contact2': 'Custom Contact 2', - 'contact3': 'Custom Contact 3', - 'contact4': 'Custom Contact 4', - 'task1': 'Custom Task 1', - 'task2': 'Custom Task 2', - 'task3': 'Custom Task 3', - 'task4': 'Custom Task 4', - 'project1': 'Custom Project 1', - 'project2': 'Custom Project 2', - 'project3': 'Custom Project 3', - 'project4': 'Custom Project 4', - 'expense1': 'Custom Expense 1', - 'expense2': 'Custom Expense 2', - 'expense3': 'Custom Expense 3', - 'expense4': 'Custom Expense 4', - 'vendor1': 'Custom Vendor 1', - 'vendor2': 'Custom Vendor 2', - 'vendor3': 'Custom Vendor 3', - 'vendor4': 'Custom Vendor 4', - 'invoice1': 'Custom Invoice 1', - 'invoice2': 'Custom Invoice 2', - 'invoice3': 'Custom Invoice 3', - 'invoice4': 'Custom Invoice 4', - 'payment1': 'Custom Payment 1', - 'payment2': 'Custom Payment 2', - 'payment3': 'Custom Payment 3', - 'payment4': 'Custom Payment 4', - 'surcharge1': 'Custom Surcharge 1', - 'surcharge2': 'Custom Surcharge 2', - 'surcharge3': 'Custom Surcharge 3', - 'surcharge4': 'Custom Surcharge 4', - 'group1': 'Custom Group 1', - 'group2': 'Custom Group 2', - 'group3': 'Custom Group 3', - 'group4': 'Custom Group 4', - 'reset': 'Reset', - 'number': 'Number', - 'export': 'Eksport', - 'chart': 'Wykres', - 'count': 'Count', - 'totals': 'Suma', - 'blank': 'Puste', - 'day': 'Dzień', - 'month': 'Miesiąc', - 'year': 'Rok', - 'subgroup': 'Subgroup', - 'is_active': 'Is Active', - 'group_by': 'Grupuj według', - 'credit_balance': 'Saldo kredytowe', - 'contact_last_login': 'Contact Last Login', - 'contact_full_name': 'Contact Full Name', - 'contact_phone': 'Numer telefonu kontaktu', - 'contact_custom_value1': 'Contact Custom Value 1', - 'contact_custom_value2': 'Contact Custom Value 2', - 'contact_custom_value3': 'Contact Custom Value 3', - 'contact_custom_value4': 'Contact Custom Value 4', - 'shipping_address1': 'Shipping Street', - 'shipping_address2': 'Shipping Apt/Suite', - 'shipping_city': 'Shipping City', - 'shipping_state': 'Shipping State/Province', - 'shipping_postal_code': 'Shipping Postal Code', - 'shipping_country': 'Shipping Country', - 'billing_address1': 'Billing Street', - 'billing_address2': 'Billing Apt/Suite', - 'billing_city': 'Billing City', - 'billing_state': 'Billing State/Province', - 'billing_postal_code': 'Billing Postal Code', - 'billing_country': 'Billing Country', - 'client_id': 'Numer klienta', - 'assigned_to': 'Assigned to', - 'created_by': 'Utworzono przez :name', - 'assigned_to_id': 'Assigned To Id', - 'created_by_id': 'Created By Id', - 'add_column': 'Add Column', - 'edit_columns': 'Edit Columns', - 'columns': 'Kolumny', - 'aging': 'Odkładanie', - 'profit_and_loss': 'Zysk i strata', - 'reports': 'Raporty', - 'report': 'Raport', - 'add_company': 'Dodaj firmę', - 'unpaid_invoice': 'Unpaid Invoice', - 'paid_invoice': 'Paid Invoice', - 'unapproved_quote': 'Unapproved Quote', - 'help': 'Pomoc', - 'refund': 'Zwrot', - 'refund_date': 'Refund Date', - 'filtered_by': 'Filtered by', - 'contact_email': 'Email kontaktowy', - 'multiselect': 'Multiselect', - 'entity_state': 'Stan', - 'verify_password': 'Verify Password', - 'applied': 'Applied', - 'include_recent_errors': 'Include recent errors from the logs', + 'current_version': 'Versão Atual', + 'latest_version': 'Última versão', + 'update_now': 'Atualize agora', + 'a_new_version_is_available': + 'Uma nova versão do aplicativo da web está disponível', + 'update_available': 'Atualização disponível', + 'app_updated': 'Atualização completada com sucesso', + 'learn_more': 'Saiba mais', + 'integrations': 'Integrações', + 'tracking_id': 'Id de rastreamento', + 'slack_webhook_url': 'URL Webhook do Slack', + 'credit_footer': 'Rodapé do Crédito', + 'credit_terms': 'Termos do Crédito', + 'new_company': 'Nova Empresa', + 'added_company': 'Empresa adicionada com sucesso', + 'company1': 'Companhia 1 Personalizada', + 'company2': 'Companhia 2 Personalizada', + 'company3': 'Companhia 3 Personalizada', + 'company4': 'Companhia 4 Personalizada', + 'product1': 'Produto 1 Personalizado', + 'product2': 'Produto 2 Personalizado', + 'product3': 'Produto 3 Personalizado', + 'product4': 'Produto 4 Personalizado', + 'client1': 'Cliente 1 Personalizado', + 'client2': 'Cliente 2 Personalizado', + 'client3': 'Cliente 3 Personalizado', + 'client4': 'Cliente 4 Personalizado', + 'contact1': 'Contato 1 Personalizado', + 'contact2': 'Contato 2 Personalizado', + 'contact3': 'Contato 3 Personalizado', + 'contact4': 'Contato 4 Personalizado', + 'task1': 'Tarefa 1 Personalizada', + 'task2': 'Tarefa 2 Personalizada', + 'task3': 'Tarefa 3 Personalizada', + 'task4': 'Tarefa 4 Personalizada', + 'project1': 'Projeto 1 Personalizado', + 'project2': 'Projeto 2 Personalizado', + 'project3': 'Projeto 3 Personalizado', + 'project4': 'Projeto 4 Personalizado', + 'expense1': 'Despesa 1 Personalizada', + 'expense2': 'Despesa 2 Personalizada', + 'expense3': 'Despesa 3 Personalizada', + 'expense4': 'Despesa 4 Personalizada', + 'vendor1': 'Vendedor 1 Personalizado', + 'vendor2': 'Vendedor 2 Personalizado', + 'vendor3': 'Vendedor 3 Personalizado', + 'vendor4': 'Vendedor 4 Personalizado', + 'invoice1': 'Fatura 1 Personalizada', + 'invoice2': 'Fatura 2 Personalizada', + 'invoice3': 'Fatura 3 Personalizada', + 'invoice4': 'Fatura 4 Personalizada', + 'payment1': 'Pagamento 1 Personalizado', + 'payment2': 'Pagamento 2 Personalizado', + 'payment3': 'Pagamento 3 Personalizado', + 'payment4': 'Pagamento 4 Personalizado', + 'surcharge1': 'Sobretaxa Personalizada 1', + 'surcharge2': 'Sobretaxa Personalizada 2', + 'surcharge3': 'Sobretaxa Personalizada 3', + 'surcharge4': 'Sobretaxa Personalizada 4', + 'group1': 'Grupo 1 Personalizado', + 'group2': 'Grupo 2 Personalizado', + 'group3': 'Grupo 3 Personalizado', + 'group4': 'Grupo 4 Personalizado', + 'reset': 'Redefinir', + 'number': 'Número', + 'export': 'Exportar', + 'chart': 'Gráfico', + 'count': 'Contagem', + 'totals': 'Totais', + 'blank': 'Vazio', + 'day': 'Dia', + 'month': 'Mês', + 'year': 'Ano', + 'subgroup': 'Subgrupo', + 'is_active': 'Ativo', + 'group_by': 'Agrupado por', + 'credit_balance': 'Saldo do Crédito', + 'contact_last_login': 'Último Login do Contato', + 'contact_full_name': 'Nome Completo do Contato', + 'contact_phone': 'Telefone de Contato', + 'contact_custom_value1': 'Valor personalizado do contato 1', + 'contact_custom_value2': 'Valor personalizado do contato 2', + 'contact_custom_value3': 'Valor personalizado do contato 3', + 'contact_custom_value4': 'Valor personalizado do contato 4', + 'shipping_address1': 'Rua de envio', + 'shipping_address2': 'Complemento de envio', + 'shipping_city': 'Cidade de envio', + 'shipping_state': 'Estado/Província de envio', + 'shipping_postal_code': 'CEP de envio', + 'shipping_country': 'País de envio', + 'billing_address1': 'Rua de cobrança', + 'billing_address2': 'Complemento de cobrança', + 'billing_city': 'Cidade de cobrança', + 'billing_state': 'Estado/Província de cobrança', + 'billing_postal_code': 'CEP de cobrança', + 'billing_country': 'País de cobrança', + 'client_id': 'Cód Cliente', + 'assigned_to': 'Atribuído para', + 'created_by': 'Criado por :name', + 'assigned_to_id': 'Atribuído ao ID', + 'created_by_id': 'Criado pelo ID', + 'add_column': 'Adicionar Coluna', + 'edit_columns': 'Editar Colunas', + 'columns': 'Colunas', + 'aging': 'Envelhecimento', + 'profit_and_loss': 'Lucro e Prejuízo', + 'reports': 'Relatórios', + 'report': 'Relatório', + 'add_company': 'Adicionar Empresa', + 'unpaid_invoice': 'Fatura não Paga', + 'paid_invoice': 'Fatura Paga', + 'unapproved_quote': 'Orçamento não Aprovado', + 'help': 'Ajuda', + 'refund': 'Reembolsar', + 'refund_date': 'Data de Reembolso', + 'filtered_by': 'Filtrado por', + 'contact_email': 'Email de Contato', + 'multiselect': 'Seleção múltipla', + 'entity_state': 'Estado', + 'verify_password': 'Verificar Senha', + 'applied': 'Aplicado', + 'include_recent_errors': 'Inclui erros recentes dos logs', 'your_message_has_been_received': - 'We have received your message and will try to respond promptly.', - 'message': 'Wiadomość', - 'from': 'Od', - 'show_product_details': 'Show Product Details', + 'Recebemos sua mensagem e tentaremos responder rapidamente.', + 'message': 'Mensagem', + 'from': 'De', + 'show_product_details': 'Mostrar Detalhes do Produto', 'show_product_details_help': - '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', - 'configure_settings': 'Configure Settings', - 'support_forum': 'forum wsparcia', - 'about': 'About', - 'documentation': 'Dokumentacja', - 'contact_us': 'Skontaktuj się z nami', - 'subtotal': 'Suma wartości netto', - 'line_total': 'Wartość', - 'item': 'Pozycja', - 'credit_email': 'Credit Email', - 'iframe_url': 'Strona internetowa', - 'domain_url': 'Domain URL', - 'password_is_too_short': 'Password is too short', + 'Inclua a descrição e o custo na lista suspensa do produto', + 'pdf_min_requirements': + 'A renderização de PDF precisa da versão :version', + 'adjust_fee_percent': 'Ajustar Porcentagem da Multa', + 'adjust_fee_percent_help': 'Ajustar o percentual de taxa a contabilizar', + 'configure_settings': 'Configurações Gerais', + 'support_forum': 'fórum de suporte', + 'about': 'Sobre', + 'documentation': 'Documentação', + 'contact_us': 'Contate-nos', + 'subtotal': 'Subtotal', + 'line_total': 'Total da Linha', + 'item': 'Item', + 'credit_email': 'E-mail de Crédito', + 'iframe_url': 'Website', + 'domain_url': 'URL do Domínio', + 'password_is_too_short': 'A senha é muito curta', 'password_is_too_easy': - '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', - 'deleted_logo': 'Successfully deleted logo', - 'yes': 'Tak', - 'no': 'Nie', - 'generate_number': 'Generate Number', - 'when_saved': 'When Saved', - 'when_sent': 'When Sent', - 'select_company': 'Select Company', - 'float': 'Float', - 'collapse': 'Collapse', - 'show_or_hide': 'Show/hide', - 'menu_sidebar': 'Menu Sidebar', - 'history_sidebar': 'History Sidebar', + 'A senha deve conter um caractere maiúsculo e um número', + 'client_portal_tasks': 'Tarefas do Portal do Cliente', + 'client_portal_dashboard': 'Painel do Portal do Cliente', + 'please_enter_a_value': 'Por favor digite um valor', + 'deleted_logo': 'Logo removido com sucesso', + 'yes': 'Sim', + 'no': 'Não', + 'generate_number': 'Gerar Número', + 'when_saved': 'Quando Salvo', + 'when_sent': 'Quando Enviado', + 'select_company': 'Selecionar Empresa', + 'float': 'Flutuante', + 'collapse': 'Fechar', + 'show_or_hide': 'Exibir/esconder', + 'menu_sidebar': 'Menu da Barra Lateral', + 'history_sidebar': 'Barra Lateral de Histórico', 'tablet': 'Tablet', - 'mobile': 'Mobile', + 'mobile': 'Móvel', 'desktop': 'Desktop', 'layout': 'Layout', - 'view': 'Podgląd', - 'module': 'Module', - 'first_custom': 'First Custom', - 'second_custom': 'Second Custom', - 'third_custom': 'Third Custom', - 'show_cost': 'Show Cost', + 'view': 'Visualizar', + 'module': 'Módulo', + 'first_custom': 'Primeiro Personalizado', + 'second_custom': 'Segundo Personalizado', + 'third_custom': 'Terceiro Personalizado', + 'show_cost': 'Mostrar Custo', 'show_product_cost': 'Show Product Cost', 'show_cost_help': - 'Display a product cost field to track the markup/profit', - 'show_product_quantity': 'Show Product Quantity', + 'Exibir um campo de custo do produto para rastrear a marcação/lucro', + 'show_product_quantity': 'Mostrar Quantidade do Produto', 'show_product_quantity_help': - 'Display a product quantity field, otherwise default to one', - 'show_invoice_quantity': 'Show Invoice Quantity', + 'Mostrar um campo de quantidade de produto, caso contrário o padrão de um', + 'show_invoice_quantity': 'Mostrar quantidade da fatura', 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', + 'Exibir um campo de quantidade de item de linha, caso contrário, o padrão é um', 'show_product_discount': 'Show Product Discount', 'show_product_discount_help': 'Display a line item discount field', - 'default_quantity': 'Default Quantity', + 'default_quantity': 'Quantidade Padrão', 'default_quantity_help': - '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', - 'default_tax_rate': 'Default Tax Rate', - 'user': 'Użytkownik', - 'invoice_tax': 'Invoice Tax', - 'line_item_tax': 'Line Item Tax', - 'inclusive_taxes': 'Inclusive Taxes', - 'invoice_tax_rates': 'Invoice Tax Rates', - 'item_tax_rates': 'Item Tax Rates', - 'no_client_selected': 'Wybierz klienta', - 'configure_rates': 'Configure rates', - 'configure_gateways': 'Configure Gateways', - 'tax_settings': 'Ustawienia podatków', - 'tax_settings_rates': 'Tax Rates', - 'accent_color': 'Accent Color', - 'switch': 'Zmień', - 'comma_sparated_list': 'Comma separated list', - 'options': 'Options', - 'single_line_text': 'Single-line text', - 'multi_line_text': 'Multi-line text', + 'Defina automaticamente a quantidade do item de linha para um', + 'one_tax_rate': 'Uma taxa de imposto', + 'two_tax_rates': 'Duas taxas de impostos', + 'three_tax_rates': 'Três taxas de impostos', + 'default_tax_rate': 'Taxa de imposto padrão', + 'user': 'Usuário', + 'invoice_tax': 'Imposto da Fatura', + 'line_item_tax': 'Imposto da Linha do Item', + 'inclusive_taxes': 'Impostos Inclusos', + 'invoice_tax_rates': 'Tarifa do Imposto da Fatura', + 'item_tax_rates': 'Tarifa do Imposto do Item', + 'no_client_selected': 'Selecione um cliente', + 'configure_rates': 'Configurar tarifas', + 'configure_gateways': 'Configurar métodos de pagamento', + 'tax_settings': 'Configurações de Impostos', + 'tax_settings_rates': 'Tarifas de Impostos', + 'accent_color': 'Cor de destaque', + 'switch': 'Mudar', + 'comma_sparated_list': 'Lista separada por vírgulas', + 'options': 'Opções', + 'single_line_text': 'Texto de linha única', + 'multi_line_text': 'Texto multilinha', 'dropdown': 'Dropdown', - 'field_type': 'Field Type', - 'recover_password_email_sent': 'A password recovery email has been sent', - 'submit': 'Wyślij', - 'recover_password': 'Odzyskaj swoje hasło', - 'late_fees': 'Late Fees', - 'credit_number': 'Credit Number', - 'payment_number': 'Payment Number', - 'late_fee_amount': 'Late Fee Amount', - 'late_fee_percent': 'Late Fee Percent', - 'schedule': 'Zaplanuj', - 'before_due_date': 'Before the due date', - 'after_due_date': 'After the due date', - 'after_invoice_date': 'After the invoice date', - 'days': 'Dni', - 'invoice_email': 'Email faktury', - 'payment_email': 'Email płatności', - 'partial_payment': 'Partial Payment', + 'field_type': 'Tipo de Campo', + 'recover_password_email_sent': + 'Foi enviado um e-mail de recuperação de senha', + 'submit': 'Enviar', + 'recover_password': 'Recupere sua senha', + 'late_fees': 'Taxas atrasadas', + 'credit_number': 'Número do Crédito', + 'payment_number': 'Pagamento Número', + 'late_fee_amount': 'Quantia da Multa', + 'late_fee_percent': 'Percentual de Multa', + 'schedule': 'Agendamento', + 'before_due_date': 'Até a data de vencimento', + 'after_due_date': 'Depois da data de vencimento', + 'after_invoice_date': 'Até a data da fatura', + 'days': 'Dias', + 'invoice_email': 'Email de Fatura', + 'payment_email': 'Email de Pagamento', + 'partial_payment': 'Pagamento parcial', 'payment_partial': 'Partial Payment', - 'partial_payment_email': 'Partial Payment Email', - 'quote_email': 'Email oferty', - 'endless_reminder': 'Endless Reminder', - 'filtered_by_user': 'Filtered by User', - 'administrator': 'Administrator', + 'partial_payment_email': 'Email de pagamento parcial', + 'quote_email': 'Email de Orçamento', + 'endless_reminder': 'Lembrete contínuo', + 'filtered_by_user': 'Filtrado por Usuário', + 'administrator': 'Administrador', 'administrator_help': - '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', - 'edit_user': 'Edytuj użytkownika', - 'created_user': 'Successfully created user', - 'updated_user': 'Użytkownik został zaktualizowany', - 'archived_user': 'Użytkownik został zarchiwizowany', - 'deleted_user': 'Użytkownik został usunięty', - 'removed_user': 'Successfully removed user', - 'restored_user': 'Użytkownik został przywrócony', + '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', + 'edit_user': 'Editar Usuário', + 'created_user': 'Usuário criado com sucesso', + 'updated_user': 'Usuário atualizado com sucesso', + 'archived_user': 'Usuário arquivado com sucesso', + 'deleted_user': 'Usuário excluído com sucesso', + 'removed_user': 'Usuário removido com sucesso', + 'restored_user': 'Usuário restaurado com sucesso', 'archived_users': 'Successfully archived :value users', 'deleted_users': 'Successfully deleted :value users', 'removed_users': 'Successfully removed :value users', 'restored_users': 'Successfully restored :value users', - 'general_settings': 'Ustawienia ogólne', - 'invoice_options': 'Opcje faktury', - 'hide_paid_to_date': 'Ukryj pole \"Zapłacono dotychczas\"', + 'general_settings': 'Configurações Gerais', + 'invoice_options': 'Opções da Fatura', + 'hide_paid_to_date': 'Ocultar Pago até Hoje', 'hide_paid_to_date_help': - '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', - 'all_pages_footer': 'Pokaż stopkę na', - 'first_page': 'Pierwsza strona', - 'all_pages': 'Wszystkie strony', - 'last_page': 'Ostatnia strona', - 'primary_font': 'Primary Font', - 'secondary_font': 'Secondary Font', - 'primary_color': 'Główny kolor', - 'secondary_color': 'Dodatkowy kolor', - 'page_size': 'Rozmiar strony', - 'font_size': 'Rozmiar fonta', - 'quote_design': 'Quote Design', - 'invoice_fields': 'Pola faktury', - 'product_fields': 'Pola produktów', - 'invoice_terms': 'Warunki do faktury', - 'invoice_footer': 'Stopka faktury', - 'quote_terms': 'Warunki oferty', - 'quote_footer': 'Stopka oferty', - 'auto_email_invoice': 'Auto Email', + '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', + 'all_pages_footer': 'Exibir Rodapé em', + 'first_page': 'Primeira página', + 'all_pages': 'Todas as páginas', + 'last_page': 'Última página', + 'primary_font': 'Fonte Primária', + 'secondary_font': 'Fonte Secundária', + 'primary_color': 'Cor Primária', + 'secondary_color': 'Cor Secundaria', + 'page_size': 'Tamanho da Página', + 'font_size': 'Tamanho da Fonte', + 'quote_design': 'Design do Orçamento', + 'invoice_fields': 'Campos da Fatura', + 'product_fields': 'Campos de Produtos', + 'invoice_terms': 'Condições da Fatura', + 'invoice_footer': 'Rodapé da Fatura', + 'quote_terms': 'Condições do Orçamento', + 'quote_footer': 'Rodapé do Orçamento', + 'auto_email_invoice': 'Email Automático', 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', - 'auto_archive_invoice': 'Auto Archive', + 'Enviar faturas recorrentes por email automaticamente quando forem criadas.', + 'auto_archive_invoice': 'Arquivar Automaticamente', 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', - 'auto_archive_quote': 'Auto Archive', + 'Arquivar automaticamente faturas quando forem pagas.', + 'auto_archive_quote': 'Arquivar Automaticamente', 'auto_archive_quote_help': - 'Automatically archive quotes when they are converted.', - 'auto_convert_quote': 'Automatycznie konwertuj', + 'Arquivar automaticamente orçamentos quando forem convertidos.', + 'auto_convert_quote': 'Auto Conversão', 'auto_convert_quote_help': - 'Utwórz automatycznie fakturę z oferty zaakceptowanej przez klienta.', - 'workflow_settings': 'Workflow Settings', - 'freq_daily': 'Codziennie', - 'freq_weekly': 'Co tydzień', - 'freq_two_weeks': 'Co dwa tygodnie', - 'freq_four_weeks': 'Co cztery tygodnie', - 'freq_monthly': 'Co miesiąc', - 'freq_two_months': 'Dwa miesiące', - 'freq_three_months': 'Co trzy miesiące', - 'freq_four_months': 'Four months', - 'freq_six_months': 'Co sześć miesięcy', - 'freq_annually': 'Co rok', - 'freq_two_years': 'Dwa lata', - 'freq_three_years': 'Three Years', - 'never': 'Nigdy', - 'company': 'Company', - 'generated_numbers': 'Wygenerowane numery', - 'charge_taxes': 'Obciąż podatkami', - 'next_reset': 'Następny reset', - 'reset_counter': 'Zresetuj licznik', - 'recurring_prefix': 'Recurring Prefix', - 'number_padding': 'Number Padding', - 'general': 'General', - 'surcharge_field': 'Surcharge Field', - 'company_field': 'Company Field', - 'company_value': 'Company Value', - 'credit_field': 'Credit Field', - 'invoice_field': 'Invoice Field', - 'invoice_surcharge': 'Invoice Surcharge', - 'client_field': 'Client Field', - 'product_field': 'Product Field', - 'payment_field': 'Payment Field', - 'contact_field': 'Contact Field', - 'vendor_field': 'Vendor Field', - 'expense_field': 'Expense Field', - 'project_field': 'Project Field', - 'task_field': 'Task Field', - 'group_field': 'Group Field', - 'number_counter': 'Number Counter', - 'prefix': 'Prefiks', - 'number_pattern': 'Number Pattern', - 'messages': 'Messages', - 'custom_css': 'Własny CSS', - 'custom_javascript': 'Custom JavaScript', - 'signature_on_pdf': 'Show on PDF', - 'signature_on_pdf_help': - '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.', - 'show_accept_quote_terms': 'Przycisk wyboru do warunków oferty', - 'show_accept_quote_terms_help': - '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', + 'Converter automaticamente um orçamento quando for aprovado pelo cliente.', + 'workflow_settings': 'Configurações de Fluxo de Trabalho', + 'freq_daily': 'Diariamente', + 'freq_weekly': 'Semanalmente', + 'freq_two_weeks': '2 semanas', + 'freq_four_weeks': '4 semanas', + 'freq_monthly': 'Mensalmente', + 'freq_two_months': 'Dois meses', + 'freq_three_months': '3 meses', + 'freq_four_months': '4 meses', + 'freq_six_months': '6 meses', + 'freq_annually': 'Anualmente', + 'freq_two_years': '2 anos', + 'freq_three_years': 'Três Anos', + 'never': 'Nunca', + 'company': 'Empresa', + 'generated_numbers': 'Números Gerados', + 'charge_taxes': 'Cobrar impostos', + 'next_reset': 'Próximo Reset', + 'reset_counter': 'Reiniciar Contador', + 'recurring_prefix': 'Prefixo da Recorrência', + 'number_padding': 'Preenchimento de número', + 'general': 'Geral', + 'surcharge_field': 'Campo de Sobretaxa', + 'company_field': 'Campo da Empresa', + 'company_value': 'Valor da Empresa', + 'credit_field': 'Campo de Crédito', + 'invoice_field': 'Campo da Fatura', + 'invoice_surcharge': 'Sobretaxa de Fatura', + 'client_field': 'Campo do Cliente', + 'product_field': 'Campo do Produto', + 'payment_field': 'Campo de Pagamento', + 'contact_field': 'Campo do Contato', + 'vendor_field': 'Campo do Fornecedor', + 'expense_field': 'Campo da Despesa', + 'project_field': 'Campo do Projeto', + 'task_field': 'Campo da Tarefa', + 'group_field': 'Campo de Grupo', + 'number_counter': 'Contador Numérico', + 'prefix': 'Prefixo', + 'number_pattern': 'Padrão de Numeração', + 'messages': 'Mensagens', + 'custom_css': 'CSS Personalizado', + 'custom_javascript': 'JavaScript Personalizado', + 'signature_on_pdf': 'Exibir em PDF', + 'signature_on_pdf_help': + '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.', + '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', + 'require_invoice_signature': 'Assinatura de Fatura', + 'require_invoice_signature_help': + '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': - '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.', - 'authorization': 'Autoryzacja', - 'subdomain': 'Subdomena', - 'domain': 'Domena', - 'portal_mode': 'Portal Mode', - 'email_signature': 'Z wyrazami szacunku,', + 'Permite definir uma senha para cada contato. Se uma senha for definida, o contato deverá informar uma senha antes de visualizar faturas.', + 'authorization': 'Autorização', + 'subdomain': 'Subdomínio', + 'domain': 'Domínio', + 'portal_mode': 'Modo Portal', + 'email_signature': 'Atenciosamente,', 'enable_email_markup_help': - 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', - 'plain': 'Zwykły', - 'light': 'Jasny', - 'dark': 'Ciemny', - 'email_design': 'Motyw email', - 'attach_pdf': 'Attach PDF', - 'attach_documents': 'Attach Documents', - 'attach_ubl': 'Attach UBL', - 'email_style': 'Email Style', - 'enable_email_markup': 'Aktywuj Markup', - 'reply_to_email': 'Odpowiedz do:', + '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', + 'email_design': 'Design do Email', + 'attach_pdf': 'Anexar PDF', + 'attach_documents': 'Anexar Documentos', + 'attach_ubl': 'Anexar UBL', + 'email_style': 'Estilo do E-mail', + 'enable_email_markup': 'Habilitar Marcação', + 'reply_to_email': 'Email para Resposta', 'reply_to_name': 'Reply-To Name', - 'bcc_email': 'UDW Email', - 'processed': 'Processed', - 'credit_card': 'Karta Kredytowa', - 'bank_transfer': 'Przelew bankowy', - 'priority': 'Priorytet', - 'fee_amount': 'Fee Amount', - 'fee_percent': 'Fee Percent', - 'fee_cap': 'Fee Cap', - 'limits_and_fees': 'Limits/Fees', - 'enable_min': 'Aktywuj min', - 'enable_max': 'Aktywuj max', - 'min_limit': 'Min: :min', - 'max_limit': 'Max: :max', + 'bcc_email': 'Email CCO', + 'processed': 'Processado', + 'credit_card': 'Cartão de Crédito', + 'bank_transfer': 'Transferência Bancária', + 'priority': 'Prioridade', + 'fee_amount': 'Valor da Multa', + 'fee_percent': 'Porcentagem da Multa', + 'fee_cap': 'Taxa máxima', + 'limits_and_fees': 'Limites/Multas', + 'enable_min': 'Habilitar mín', + 'enable_max': 'Habilitar máx', + 'min_limit': 'Mín: :min', + 'max_limit': 'Máx: :max', 'min': 'Min', - 'max': 'Max', - 'accepted_card_logos': 'Accepted Card Logos', - 'credentials': 'Credentials', - 'update_address': 'Aktualizuj adres', + 'max': 'Máx', + 'accepted_card_logos': 'Logos de Cartões Aceitos', + 'credentials': 'Credenciais', + 'update_address': 'Atualizar Endereço', 'update_address_help': - 'Zaktualizuj dane adresowe klienta na podstawie dostarczonych informacji', - 'rate': 'Stawka', - 'tax_rate': 'Stawka podatkowa', - 'new_tax_rate': 'Nowa stawka podatkowa', - 'edit_tax_rate': 'Edytuj stawkę podatkową', - 'created_tax_rate': 'Successfully created tax rate', - 'updated_tax_rate': 'Successfully updated tax rate', - 'archived_tax_rate': 'Zarchiwizowano stawkę podatkową', - 'deleted_tax_rate': 'Successfully deleted tax rate', - 'restored_tax_rate': 'Successfully restored tax rate', + 'Atualizar o endereço do cliente com os dados fornecidos', + 'rate': 'Taxa', + 'tax_rate': 'Taxa do Imposto', + 'new_tax_rate': 'Nova Taxa de Imposto', + 'edit_tax_rate': 'Editar Taxa do Imposto', + 'created_tax_rate': 'Taxa de imposto criada com sucesso', + 'updated_tax_rate': 'Taxa de imposto atualizada com sucesso', + 'archived_tax_rate': 'Taxa de imposto arquivada com sucesso', + 'deleted_tax_rate': 'Taxa de imposto excluída com sucesso', + 'restored_tax_rate': 'Taxa de imposto restaurada com sucesso', 'archived_tax_rates': 'Successfully archived :value tax rates', 'deleted_tax_rates': 'Successfully deleted :value tax rates', 'restored_tax_rates': 'Successfully restored :value tax rates', - 'fill_products': 'Automatycznie uzupełniaj produkty', + 'fill_products': 'Auto-preencher produtos', 'fill_products_help': - 'Wybieranie produktu automatycznie uzupełni opis i kwotę', - 'update_products': 'Automatycznie aktualizuj produkty', + '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': - 'Zaktualizowanie faktury automatycznie uaktualni produkt w bibliotece produktów', - 'convert_products': 'Convert Products', + 'Atualizar uma fatura irá automaticamenteatualizar a biblioteca de produtos', + 'convert_products': 'Converter Produtos', 'convert_products_help': - 'Automatycznie zamieniaj ceny produktu na walutę klienta', - 'fees': 'Opłaty', - 'limits': 'Limity', - 'provider': 'Provider', - 'company_gateway': 'Payment Gateway', - 'company_gateways': 'Payment Gateways', - 'new_company_gateway': 'New Gateway', - 'edit_company_gateway': 'Edit Gateway', - 'created_company_gateway': 'Successfully created gateway', - 'updated_company_gateway': 'Successfully updated gateway', - 'archived_company_gateway': 'Successfully archived gateway', - 'deleted_company_gateway': 'Successfully deleted gateway', - 'restored_company_gateway': 'Successfully restored gateway', + 'Converter automaticamente preços de produtos para a moeda do cliente', + 'fees': 'Taxas', + 'limits': 'Limites', + 'provider': 'Provedor', + 'company_gateway': 'Gateway de Pagamento', + 'company_gateways': 'Gateways de Pagamento', + 'new_company_gateway': 'Novo Gateway', + 'edit_company_gateway': 'Editar Gateway', + 'created_company_gateway': 'Gateway criado com sucesso', + 'updated_company_gateway': 'Gateway atualizado com sucesso', + 'archived_company_gateway': 'Gateway arquivado com sucesso', + 'deleted_company_gateway': 'Gateway excluído com sucesso', + 'restored_company_gateway': 'Gateway restaurado com sucesso', 'archived_company_gateways': 'Successfully archived :value gateways', 'deleted_company_gateways': 'Successfully deleted :value gateways', 'restored_company_gateways': 'Successfully restored :value gateways', - 'continue_editing': 'Continue Editing', - 'discard_changes': 'Discard Changes', - 'default_value': 'Default value', - 'disabled': 'Wyłączono', - 'currency_format': 'Currency Format', - 'first_day_of_the_week': 'First Day of the Week', - 'first_month_of_the_year': 'First Month of the Year', - 'sunday': 'Niedziela', - 'monday': 'Poniedziałek', - 'tuesday': 'Wtorek', - 'wednesday': 'Środa', - 'thursday': 'Czwartek', - 'friday': 'Piątek', - 'saturday': 'Sobota', - 'january': 'Styczeń', - 'february': 'Luty', - 'march': 'Marzec', - 'april': 'Kwiecień', - 'may': 'Maj', - 'june': 'Czerwiec', - 'july': 'Lipiec', - 'august': 'Sierpień', - 'september': 'Wrzesień', - 'october': 'Październik', - 'november': 'Listopad', - 'december': 'Grudzień', - 'symbol': 'Symbol', - 'ocde': 'Code', - 'date_format': 'Date Format', - 'datetime_format': 'Datetime Format', - 'military_time': '24 godzinny czas', - 'military_time_help': '24 Hour Display', - 'send_reminders': 'Send Reminders', - 'timezone': 'Timezone', - 'filtered_by_project': 'Filtered by Project', - 'filtered_by_group': 'Filtered by Group', - 'filtered_by_invoice': 'Filtered by Invoice', - 'filtered_by_client': 'Filtered by Client', - 'filtered_by_vendor': 'Filtered by Vendor', - 'group_settings': 'Group Settings', - 'group': 'Grupuj', - 'groups': 'Groups', - 'new_group': 'New Group', - 'edit_group': 'Edit Group', - 'created_group': 'Successfully created group', - 'updated_group': 'Successfully updated group', + 'continue_editing': 'Continuar Editando', + 'discard_changes': 'Descartar Mudanças', + 'default_value': 'Valor padrão', + 'disabled': 'Desabilitado', + 'currency_format': 'Formato de Moeda', + 'first_day_of_the_week': 'Primeiro dia da Semana', + 'first_month_of_the_year': 'Primeiro Mês do Ano', + 'sunday': 'Domingo', + 'monday': 'Segunda-Feira', + 'tuesday': 'Terça-Feira', + 'wednesday': 'Quarta-Feira', + 'thursday': 'Quinta-Feira', + 'friday': 'Sexta-Feira', + 'saturday': 'Sábado', + 'january': 'Janeiro', + 'february': 'Fevereiro', + 'march': 'Março', + 'april': 'Abril', + 'may': 'Maio', + 'june': 'Junho', + 'july': 'Julho', + 'august': 'Agosto', + 'september': 'Setembro', + 'october': 'Outubro', + 'november': 'Novembro', + 'december': 'Dezembro', + 'symbol': 'Símbolo', + 'ocde': 'Código', + 'date_format': 'Formato de Data', + 'datetime_format': 'Formato de Data/Hora', + 'military_time': 'Formato de Tempo 24h', + 'military_time_help': 'Formato de Hora 24h', + 'send_reminders': 'Enviar Lembretes', + 'timezone': 'Fuso Horário', + 'filtered_by_project': 'Filtrado por Projeto', + 'filtered_by_group': 'Filtrado por Grupo', + 'filtered_by_invoice': 'Filtrado por Fatura', + 'filtered_by_client': 'Filtrado por Cliente', + 'filtered_by_vendor': 'Filtrado por Vendedor', + 'group_settings': 'Configurações de Grupos', + 'group': 'Grupo', + 'groups': 'Grupos', + 'new_group': 'Novo Grupo', + 'edit_group': 'Editar Grupo', + 'created_group': 'Grupo criado com sucesso', + 'updated_group': 'Grupo atualizado com sucesso', 'archived_groups': 'Successfully archived :value groups', 'deleted_groups': 'Successfully deleted :value groups', 'restored_groups': 'Successfully restored :value groups', - 'archived_group': 'Successfully archived group', - 'deleted_group': 'Successfully deleted group', - 'restored_group': 'Successfully restored group', - 'upload_logo': 'Prześlij logo', - 'uploaded_logo': 'Successfully uploaded logo', + 'archived_group': 'Grupo arquivado com sucesso', + 'deleted_group': 'Grupo removido com sucesso', + 'restored_group': 'Grupo restaurado com sucesso', + 'upload_logo': 'Carregar Logo', + 'uploaded_logo': 'Logo carregado com sucesso', 'logo': 'Logo', - 'saved_settings': 'Successfully saved settings', - 'product_settings': 'Ustawienia produktu', - 'device_settings': 'Ustawienia urządzenia', - 'defaults': 'Domyślne', - 'basic_settings': 'Ustawienia podstawowe', - 'advanced_settings': 'Ustawienia zaawansowane', - 'company_details': 'Dane firmy', - 'user_details': 'Dane użytkownika', - 'localization': 'Lokalizacja', - 'online_payments': 'Płatności online', - 'tax_rates': 'Stawki podatkowe', - 'notifications': 'Powiadomienia', - 'import_export': 'Import | Eksport danych', - 'custom_fields': 'Dostosowane pola', - 'invoice_design': 'Motyw faktury', - 'buy_now_buttons': 'Przyciski Kup Teraz', - 'email_settings': 'Ustawienia e-mail', - 'templates_and_reminders': 'Szablony i przypomnienia', - 'credit_cards_and_banks': 'Credit Cards & Banks', - 'data_visualizations': 'Wizualizacje danych', - 'price': 'Cena', - 'email_sign_up': 'Email Sign Up', - 'google_sign_up': 'Google Sign Up', - 'thank_you_for_your_purchase': 'Thank you for your purchase!', - 'redeem': 'Redeem', - 'back': 'Back', - 'past_purchases': 'Past Purchases', - 'annual_subscription': 'Annual Subscription', - 'pro_plan': 'Pro Plan', - 'enterprise_plan': 'Enterprise Plan', - 'count_users': ':count users', + 'saved_settings': 'Configurações salvas com sucesso', + 'product_settings': 'Configurações de Produtos', + 'device_settings': 'Configurações do Dispositivo', + 'defaults': 'Padrões', + 'basic_settings': 'Configurações Básicas', + 'advanced_settings': 'Configurações Avançadas', + 'company_details': 'Detalhes da Empresa', + 'user_details': 'Detalhes do Usuário', + 'localization': 'Localização', + 'online_payments': 'Pagamentos Online', + 'tax_rates': 'Taxas de Impostos', + 'notifications': 'Notificações', + 'import_export': 'Importar | Exportar', + 'custom_fields': 'Campos Personalizados', + 'invoice_design': 'Design da Fatura', + 'buy_now_buttons': 'Botões Compre Já', + 'email_settings': 'Configurações de Email', + 'templates_and_reminders': 'Modelos e Lembretes', + 'credit_cards_and_banks': 'Cartões de Crédito & Bancos', + 'data_visualizations': 'Visualização de Dados', + 'price': 'Preço', + 'email_sign_up': 'Inscrição de Email', + 'google_sign_up': 'Inscrição no Google', + 'thank_you_for_your_purchase': 'Obrigado por sua compra!', + 'redeem': 'Resgatar', + 'back': 'Voltar', + 'past_purchases': 'Compras Passadas', + 'annual_subscription': 'Assinatura Anual', + 'pro_plan': 'Plano Pro', + 'enterprise_plan': 'Plano Empresarial', + 'count_users': ':count usuários', 'upgrade': 'Upgrade', - 'please_enter_a_first_name': 'Please enter a first name', - 'please_enter_a_last_name': 'Please enter a last name', + 'please_enter_a_first_name': 'Por favor digite o primeiro nome', + 'please_enter_a_last_name': 'Por favor digite o sobrenome', 'please_agree_to_terms_and_privacy': - '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': 'Warunki korzystania z Serwisu', - 'privacy_policy': 'Polityka prywatności', - 'sign_up': 'Zapisz się', - 'account_login': 'Logowanie', - 'view_website': 'View Website', - 'create_account': 'Create Account', - 'email_login': 'Email Login', - 'create_new': 'Dodaj nowy/nową', - 'no_record_selected': 'No record selected', - 'error_unsaved_changes': 'Please save or cancel your changes', - 'download': 'Pobierz', - 'requires_an_enterprise_plan': 'Requires an enterprise plan', - 'take_picture': 'Zrób zdjęcie', - 'upload_file': 'Upload File', - 'document': 'Dokument', - 'documents': 'Dokumenty', - 'new_document': 'Nowy dokument', - 'edit_document': 'Edytuj dokument', - 'uploaded_document': 'Successfully uploaded document', - 'updated_document': 'Successfully updated document', - 'archived_document': 'Successfully archived document', - 'deleted_document': 'Successfully deleted document', - 'restored_document': 'Successfully restored document', + 'Por favor, aceite os termos de serviço e política de privacidade para criar uma conta.', + 'i_agree_to_the': 'Aceito os', + 'terms_of_service': 'Condições do Serviço', + 'privacy_policy': 'Política de Privacidade', + 'sign_up': 'Cadastro', + 'account_login': 'Login na Conta', + 'view_website': 'Ver o Website', + 'create_account': 'Criar Conta', + 'email_login': 'E-mail de Login', + 'create_new': 'Criar Novo', + 'no_record_selected': 'Nenhum registro selecionado', + 'error_unsaved_changes': 'Por favor, salve ou cancele suas alterações', + 'download': 'Download', + 'requires_an_enterprise_plan': 'Necessita um plano empresarial', + 'take_picture': 'Tire uma Foto', + 'upload_file': 'Enviar Arquivo', + 'document': 'Documento', + 'documents': 'Documentos', + 'new_document': 'Novo Documento', + 'edit_document': 'Editar Documento', + 'uploaded_document': 'Documento enviado com sucesso', + 'updated_document': 'Documento atualizado com sucesso', + 'archived_document': 'Documento arquivado com sucesso', + 'deleted_document': 'Documento apagado com sucesso', + 'restored_document': 'Documento recuperado com sucesso', 'archived_documents': 'Successfully archived :value documents', 'deleted_documents': 'Successfully deleted :value documents', 'restored_documents': 'Successfully restored :value documents', - 'no_history': 'No History', - 'expense_date': 'Data obciążenia', - 'pending': 'Oczekuję', - 'expense_status_1': 'Logged', - 'expense_status_2': 'Pending', - 'expense_status_3': 'Invoiced', - 'converted': 'Skonwertowano', - 'add_documents_to_invoice': 'Dodaj dokumenty do faktury', - 'exchange_rate': 'Kurs wymiany', - 'convert_currency': 'Konwertuj walutę', - 'mark_paid': 'Oznacz jako zapłaconą', - 'category': 'Kategoria', - 'address': 'Adres', - 'new_vendor': 'Nowy dostawca', - 'created_vendor': 'Dostawca został utworzony', - 'updated_vendor': 'Zaktualizowano dostawcę', - 'archived_vendor': 'Dostawca został zarchiwizowany', - 'deleted_vendor': 'Dostawca został usunięty', - 'restored_vendor': 'Dostawca został przywrócony', - 'archived_vendors': 'Zarchiwizowano :count dostawców', - 'deleted_vendors': 'Usunięto :count dostawców', + 'no_history': 'Sem Histórico', + 'expense_date': 'Data da Despesa', + 'pending': 'Pendente', + 'expense_status_1': 'Autenticado', + 'expense_status_2': 'Pendente', + 'expense_status_3': 'Faturado', + 'converted': 'Convertido', + 'add_documents_to_invoice': 'Adicionar documentos à fatura', + 'exchange_rate': 'Taxa de Câmbio', + 'convert_currency': 'Converter moeda', + 'mark_paid': 'Marcar como Pago', + 'category': 'Categoria', + 'address': 'Endereço', + 'new_vendor': 'Novo Fornecedor', + 'created_vendor': 'Fornecedor criado com sucesso', + 'updated_vendor': 'Fornecedor atualizado com sucesso', + 'archived_vendor': 'Fornecedor arquivado com sucesso', + 'deleted_vendor': 'Fornecedor excluído com sucesso', + 'restored_vendor': 'Fornecedor restaurado com sucesso', + 'archived_vendors': ':count fornecedores arquivados com sucesso', + 'deleted_vendors': ':count fornecedores excluídos com sucesso', 'restored_vendors': 'Successfully restored :value vendors', - 'new_expense': 'Dodaj wydatek', - 'created_expense': 'Wydatek został utworzony', - 'updated_expense': 'Wydatek został zaktualizowany', - 'archived_expense': 'Wydatki zostały zarchiwizowane', - 'deleted_expense': 'Wydatki zostały usunięte', - 'restored_expense': 'Wydatek został przywrócony', - 'archived_expenses': 'Wydatki zostały zarchiwizowane', - 'deleted_expenses': 'Wydatki zostały usunięte', + 'new_expense': 'Informar Despesa', + 'created_expense': 'Despesa criada com sucesso', + 'updated_expense': 'Despesa atualizada com sucesso', + 'archived_expense': 'Despesa arquivada com sucesso', + 'deleted_expense': 'Despesa excluída com sucesso', + 'restored_expense': 'Despesa restaurada com sucesso', + 'archived_expenses': 'Despesas arquivadas com sucesso', + 'deleted_expenses': 'Despesas excluídas com sucesso', 'restored_expenses': 'Successfully restored :value expenses', - 'copy_shipping': 'Copy Shipping', - 'copy_billing': 'Copy Billing', + 'copy_shipping': 'Copiar Envio', + 'copy_billing': 'Copiar Cobrança', 'design': 'Design', - 'failed_to_find_record': 'Failed to find record', - 'invoiced': 'Zafakturowano', - 'logged': 'Zapisano', - 'running': 'W trakcie', - 'resume': 'Wznów', - 'task_errors': 'Proszę skoryguj nakładające się czasy', - 'start': 'Rozpocznij', - 'stop': 'Zatrzymaj', - 'started_task': 'Successfully started task', - 'stopped_task': 'Zakończono wykonywanie zadania', - 'resumed_task': 'Successfully resumed task', - 'now': 'Teraz', - 'auto_start_tasks': 'Auto Start Tasks', - 'timer': 'Odliczanie czasu', - 'manual': 'Wprowadź ręcznie', - 'budgeted': 'Budgeted', - 'start_time': 'Czas rozpoczęcia', - 'end_time': 'Zakończono', + 'failed_to_find_record': 'Falha ao procurar registro', + 'invoiced': 'Faturado', + 'logged': 'Registrado', + 'running': 'Executando', + 'resume': 'Retomar', + 'task_errors': 'Por favor corrija quaisquer tempos sobrepostos', + 'start': 'Iniciar', + 'stop': 'Parar', + 'started_task': 'Tarefa iniciada com sucesso', + 'stopped_task': 'Tarefa interrompida com sucesso', + 'resumed_task': 'Tarefa continuada com sucesso', + 'now': 'Agora', + 'auto_start_tasks': 'Iniciar Tarefas Automaticamente', + 'timer': 'Timer', + 'manual': 'Manual', + 'budgeted': 'Orçado', + 'start_time': 'Horário de Início', + 'end_time': 'Horário Final', 'date': 'Data', - 'times': 'Razy/Okresy', - 'duration': 'Czas trwania', - 'new_task': 'Nowe zadanie', - 'created_task': 'Pomyślnie utworzono zadanie', - 'updated_task': 'Pomyślnie zaktualizowano zadanie', - 'archived_task': 'Zadania zostało zarchiwizowane', - 'deleted_task': 'Usunięto zadanie', - 'restored_task': 'Zadanie zostało przywrócone', - 'archived_tasks': 'Zarchiwizowano :count zadania/zadań', - 'deleted_tasks': 'Usunięto :count zadania/zadań', + 'times': 'Vezes', + 'duration': 'Duração', + 'new_task': 'Nova Tarefa', + 'created_task': 'Tarefa criada com sucesso', + 'updated_task': 'Tarefa atualizada com sucesso', + 'archived_task': 'Tarefa arquivada com sucesso', + 'deleted_task': 'Tarefa excluída com sucesso', + 'restored_task': 'Tarefa restaurada com sucesso', + 'archived_tasks': ':count tarefas arquivadas com sucesso', + 'deleted_tasks': ':count tarefas excluídas com sucesso', 'restored_tasks': 'Successfully restored :value tasks', - 'please_enter_a_name': 'Please enter a name', - 'budgeted_hours': 'Budgeted Hours', - 'created_project': 'Utworzono projekt', - 'updated_project': 'Zaktualizowano projekt', - 'archived_project': 'Zarchiwizowano projekt', - 'deleted_project': 'Usunięto projekt', - 'restored_project': 'Przywrócono projekt', - 'archived_projects': 'Zarchiwizowano :count projektów', - 'deleted_projects': 'Usunięto :count projekty/projektów', + 'please_enter_a_name': 'Por favor digite um nome', + 'budgeted_hours': 'Horas Orçadas', + 'created_project': 'Projeto criado com sucesso', + 'updated_project': 'Projeto atualizado com sucesso', + 'archived_project': 'Projeto arquivado com sucesso', + 'deleted_project': 'Projeto excluído com sucesso', + 'restored_project': 'Projeto restaurado com sucesso', + 'archived_projects': ':count projetos arquivados com sucesso', + 'deleted_projects': ':count projetos excluídos com sucesso', 'restored_projects': 'Successfully restored :value projects', - 'new_project': 'Nowy projekt', - 'thank_you_for_using_our_app': 'Thank you for using our app!', - 'if_you_like_it': 'If you like it please', - 'click_here': 'kliknij tutaj', - 'click_here_capital': 'Click here', - 'to_rate_it': 'to rate it.', - 'average': 'Średnia', - 'unapproved': 'Unapproved', + 'new_project': 'Novo Projeto', + 'thank_you_for_using_our_app': 'Obrigado por usar nosso app!', + 'if_you_like_it': 'Se você desejar por favor', + 'click_here': 'clique aqui', + 'click_here_capital': 'Clique aqui', + 'to_rate_it': 'para dar uma nota.', + 'average': 'Médio', + 'unapproved': 'Não Aprovado', 'authenticate_to_change_setting': - 'Please authenticate to change this setting', - 'locked': 'Locked', - 'authenticate': 'Authenticate', - 'please_authenticate': 'Please authenticate', - 'biometric_authentication': 'Biometric Authentication', - 'footer': 'Stopka', - 'compare': 'Compare', - 'hosted_login': 'Hosted Login', - 'selfhost_login': 'Selfhost Login', - 'google_sign_in': 'Zaloguj się przez Google', - 'today': 'Today', - 'custom_range': 'Określony okres', - 'date_range': 'Zakres czasowy', - 'current': 'Obecny', - 'previous': 'Poprzedni', - 'current_period': 'Current Period', - 'comparison_period': 'Comparison Period', - 'previous_period': 'Previous Period', - 'previous_year': 'Previous Year', - 'compare_to': 'Compare to', - 'last7_days': 'Last 7 Days', - 'last_week': 'Last Week', - 'last30_days': 'Last 30 Days', - 'this_month': 'Ten miesiąc', - 'last_month': 'Ostatni miesiąc', - 'this_year': 'Ten rok', - 'last_year': 'Ostatni rok', - 'custom': 'Dostosowanie', - 'clone_to_invoice': 'Clone to Invoice', - 'clone_to_quote': 'Clone to Quote', - 'clone_to_credit': 'Clone to Credit', - 'view_invoice': 'Zobacz fakturę', - 'convert': 'Convert', - 'more': 'Więcej', - 'edit_client': 'Edytuj klienta', - 'edit_product': 'Edytuj produkt', - 'edit_invoice': 'Edytuj fakturę', - 'edit_quote': 'Edytuj ofertę', - 'edit_payment': 'Edytuj płatność', - 'edit_task': 'Edytuj zadanie', - 'edit_expense': 'Edytuj wydatek', - 'edit_vendor': 'Edytuj dostawcę', - 'edit_project': 'Edytuj projekt', - 'edit_recurring_quote': 'Edit Recurring Quote', - 'billing_address': 'Adres rozliczeniowy', - 'shipping_address': 'Shipping Address', - 'total_revenue': 'Całkowity dochód', - 'average_invoice': 'Średnia wartość', - 'outstanding': 'Zaległości', - 'invoices_sent': ':count wysłanych faktur', - 'active_clients': 'aktywni klienci', - 'close': 'Zamknij', + 'Por favor autentique-se para modificar esta configuração', + 'locked': 'Travado', + 'authenticate': 'Autenticar', + 'please_authenticate': 'Por favor autentique-se', + 'biometric_authentication': 'Autenticação Biométrica', + 'footer': 'Rodapé', + 'compare': 'Comparar', + 'hosted_login': 'Login Hospedado', + 'selfhost_login': 'Login Auto-Hospedado', + 'google_sign_in': 'Entrar com o Google', + 'today': 'Hoje', + 'custom_range': 'Período Personalizado', + 'date_range': 'Período', + 'current': 'Atual', + 'previous': 'Anterior', + 'current_period': 'Período Atual', + 'comparison_period': 'Período de Comparação', + 'previous_period': 'Período Anterior', + 'previous_year': 'Ano Anterior', + 'compare_to': 'Comparar com', + 'last7_days': 'Últimos 7 Dias', + 'last_week': 'Última Semana', + 'last30_days': 'Últimos 30 Dias', + 'this_month': 'Este Mês', + 'last_month': 'Último Mês', + 'this_year': 'Este Ano', + 'last_year': 'Último Ano', + 'custom': 'Personalizado', + 'clone_to_invoice': 'Clonar para Fatura', + 'clone_to_quote': 'Clonar ao Orçamento', + 'clone_to_credit': 'Clone para crédito', + 'view_invoice': 'Visualizar fatura', + 'convert': 'Converter', + 'more': 'Mais', + 'edit_client': 'Editar Cliente', + 'edit_product': 'Editar Produto', + 'edit_invoice': 'Editar Fatura', + 'edit_quote': 'Editar Orçamento', + 'edit_payment': 'Editar Pagamento', + 'edit_task': 'Editar Tarefa', + 'edit_expense': 'Editar Despesa', + 'edit_vendor': 'Editar Fornecedor', + 'edit_project': 'Editar Projeto', + 'edit_recurring_quote': 'Editar Orçamento Recorrente', + 'billing_address': 'Endereço de Cobrança', + 'shipping_address': 'Endereço de envio', + 'total_revenue': 'Faturamento Total', + 'average_invoice': 'Média por Fatura', + 'outstanding': 'Em Aberto', + 'invoices_sent': ':count faturas enviadas', + 'active_clients': 'clientes ativos', + 'close': 'Fechar', 'email': 'Email', - 'password': 'Hasło', + 'password': 'Senha', 'url': 'URL', - 'secret': 'Tajny', - 'name': 'Nazwa', - 'logout': 'Wyloguj się', - 'login': 'Zaloguj', - 'filter': 'Filtruj', - 'sort': 'Sortuj', - 'search': 'Szukaj', - 'active': 'Aktywny', - 'archived': 'Zarchiwizowano', - 'deleted': 'Usunięte', - 'dashboard': 'Pulpit', - 'archive': 'Archiwum', - 'delete': 'Usuń', - 'restore': 'Przywróć', - 'refresh_complete': 'Refresh Complete', - 'please_enter_your_email': 'Please enter your email', - 'please_enter_your_password': 'Please enter your password', - 'please_enter_your_url': 'Please enter your URL', - 'please_enter_a_product_key': 'Please enter a product key', - 'ascending': 'Ascending', - 'descending': 'Descending', - 'save': 'Zapisz', - 'an_error_occurred': 'An error occurred', - 'paid_to_date': 'Termin płatności', - 'balance_due': 'Do zapłaty', + 'secret': 'Segredo', + 'name': 'Nome', + 'logout': 'Sair', + 'login': 'Login', + 'filter': 'Filtrar', + 'sort': 'Ordenar', + 'search': 'Pesquisar', + 'active': 'Ativo', + 'archived': 'Arquivado', + 'deleted': 'Excluído', + 'dashboard': 'Painel', + 'archive': 'Arquivar', + 'delete': 'Excluir', + 'restore': 'Restaurar', + 'refresh_complete': 'Refresh Completo', + 'please_enter_your_email': 'Por favor digite seu email', + 'please_enter_your_password': 'Por favor digite sua senha', + 'please_enter_your_url': 'Por favor digite sua URL', + 'please_enter_a_product_key': 'Por favor digite uma chave de produto', + 'ascending': 'Ascendente', + 'descending': 'Descendente', + 'save': 'Salvar', + 'an_error_occurred': 'Um erro ocorreu', + 'paid_to_date': 'Pago até Hoje', + 'balance_due': 'Saldo Devedor', 'balance': 'Saldo', - 'overview': 'Podsumowanie', - 'details': 'Szczegóły', - 'phone': 'Telefon', - 'website': 'Strona internetowa', - 'vat_number': 'Numer NIP', - 'id_number': 'REGON', - 'create': 'Utwórz', - 'copied_to_clipboard': 'Copied :value to the clipboard', - 'error': 'Error', - 'could_not_launch': 'Could not launch', - 'contacts': 'Kontakty', - 'additional': 'Additional', - 'first_name': 'Imię', - 'last_name': 'Nazwisko', - 'add_contact': 'Dodaj kontakt', - 'are_you_sure': 'Jesteś pewny?', - 'cancel': 'Anuluj', + 'overview': 'Resumo', + 'details': 'Detalhes', + 'phone': 'Telefone', + 'website': 'Website', + 'vat_number': 'Inscrição Municipal', + 'id_number': 'CNPJ', + 'create': 'Criar', + 'copied_to_clipboard': ':value copiado para a área de transferência', + 'error': 'Erro', + 'could_not_launch': 'Não foi possível iniciar', + 'contacts': 'Contatos', + 'additional': 'Adicional', + 'first_name': 'Nome', + 'last_name': 'Sobrenome', + 'add_contact': 'Adicionar contato', + 'are_you_sure': 'Você tem certeza?', + 'cancel': 'Cancelar', 'ok': 'Ok', - 'remove': 'Usuń', - 'email_is_invalid': 'Email is invalid', - 'product': 'Produkt', - 'products': 'Produkty', - 'new_product': 'Nowy produkt', - 'created_product': 'Produkt został utworzony', - 'updated_product': 'Produkt został zaktualizowany', - 'archived_product': 'Produkt został zarchiwizowany', - 'deleted_product': 'Usunięto produkt', - 'restored_product': 'Przywrócono produkt', - 'archived_products': 'Successfully archived :count products', - 'deleted_products': 'Usunięto :count produktów', + 'remove': 'Remover', + 'email_is_invalid': 'Email é inválido', + 'product': 'Produto', + 'products': 'Produtos', + 'new_product': 'Novo Produto', + 'created_product': 'Produto criado com sucesso', + 'updated_product': 'Produto atualizado com sucesso', + 'archived_product': 'Produto arquivado com sucesso', + 'deleted_product': 'Produto excluído com sucesso', + 'restored_product': 'Produto restaurado com sucesso', + 'archived_products': ':count produtos arquivados com sucesso', + 'deleted_products': ':count produtos excluídos com sucesso', 'restored_products': 'Successfully restored :value products', - 'product_key': 'Produkt', - 'notes': 'Notatki', - 'cost': 'Koszt', - 'client': 'Klient', - 'clients': 'Klienci', - 'new_client': 'Nowy klient', - 'created_client': 'Klient został utworzony', - 'updated_client': 'Klient został zaktualizowany', - 'archived_client': 'Klient został zarchiwizowany', - 'archived_clients': 'Zarchiwizowano :count klientów', - 'deleted_client': 'Klient został usunięty', - 'deleted_clients': 'Usunięto :count klientów', - 'restored_client': 'Klient został przywrócony', + 'product_key': 'Produto', + 'notes': 'Notas', + 'cost': 'Custo', + 'client': 'Cliente', + 'clients': 'Clientes', + 'new_client': 'Novo Cliente', + 'created_client': 'Cliente criado com sucesso', + 'updated_client': 'Cliente atualizado com sucesso', + 'archived_client': 'Cliente arquivado com sucesso', + 'archived_clients': ':count clientes arquivados com sucesso', + 'deleted_client': 'Cliente excluído com sucesso', + 'deleted_clients': ':count clientes excluídos com sucesso', + 'restored_client': 'Cliente restaurado com sucesso', 'restored_clients': 'Successfully restored :value clients', - 'address1': 'Ulica', - 'address2': 'Nr', - 'city': 'Miasto', - 'state': 'Województwo', - 'postal_code': 'Kod pocztowy', - 'country': 'Kraj', - 'invoice': 'Faktura', - 'invoices': 'Faktury', - 'new_invoice': 'Nowa faktura', - 'created_invoice': 'Faktura została utworzona', - 'updated_invoice': 'Faktura została zaktualizowana', - 'archived_invoice': 'Faktura została zarchiwizowana', - 'deleted_invoice': 'Faktura została usunięta', - 'restored_invoice': 'Faktura została przywrócona', - 'archived_invoices': 'Zarchiwizowano :count faktury', - 'deleted_invoices': 'Usunięto :count faktury', + 'address1': 'Rua', + 'address2': 'Complemento', + 'city': 'Cidade', + 'state': 'Estado', + 'postal_code': 'CEP', + 'country': 'País', + 'invoice': 'Fatura', + 'invoices': 'Faturas', + 'new_invoice': 'Nova Fatura', + 'created_invoice': 'Fatura criada com sucesso', + 'updated_invoice': 'Fatura atualizada com sucesso', + 'archived_invoice': 'Fatura arquivada com sucesso', + 'deleted_invoice': 'Fatura excluída com sucesso', + 'restored_invoice': 'Fatura restaurada com sucesso', + 'archived_invoices': ':count faturas arquivadas com sucesso', + 'deleted_invoices': ':count faturas excluídas com sucesso', 'restored_invoices': 'Successfully restored :value invoices', - 'emailed_invoice': 'Faktura została wysłana', - 'emailed_payment': 'Successfully emailed payment', - 'amount': 'Kwota', - 'invoice_number': 'Numer Faktury', - 'invoice_date': 'Data Faktury', - 'discount': 'Rabat', - 'po_number': 'Numer zamówienia', - 'terms': 'Warunki', - 'public_notes': 'Notatki publiczne', - 'private_notes': 'Prywatne notatki', - 'frequency': 'Częstotliwość', - 'start_date': 'Początkowa data', - 'end_date': 'Końcowa data', - 'quote_number': 'Numer oferty', - 'quote_date': 'Data oferty', - 'valid_until': 'Ważny do', - 'items': 'Items', - 'partial_deposit': 'Partial/Deposit', - 'description': 'Opis towaru / usługi', - 'unit_cost': 'Cena j. brutto', - 'quantity': 'Ilość', - 'add_item': 'Add Item', - 'contact': 'Kontakt', - 'work_phone': 'Telefon służbowy', - 'total_amount': 'Total Amount', + 'emailed_invoice': 'Fatura enviada por email com sucesso', + 'emailed_payment': 'Pagamento enviado por email com sucesso', + 'amount': 'Valor', + 'invoice_number': 'Número da Fatura', + 'invoice_date': 'Data da Fatura', + 'discount': 'Desconto', + 'po_number': 'Nº Ordem de Serviço', + 'terms': 'Condições', + 'public_notes': 'Notas Públicas', + 'private_notes': 'Notas Privadas', + 'frequency': 'Frequência', + 'start_date': 'Data Inicial', + 'end_date': 'Data Final', + 'quote_number': 'Número do Orçamento', + 'quote_date': 'Data do Orçamento', + 'valid_until': 'Válido Até', + 'items': 'Itens', + 'partial_deposit': 'Parcial/Depósito', + 'description': 'Descrição', + 'unit_cost': 'Preço Unitário', + 'quantity': 'Quantidade', + 'add_item': 'Adicionar Item', + 'contact': 'Contato', + 'work_phone': 'Telefone', + 'total_amount': 'Quantia Total', 'pdf': 'PDF', - 'due_date': 'Termin', - 'partial_due_date': 'Partial Due Date', + 'due_date': 'Data de Vencimento', + 'partial_due_date': 'Data de Vencimento Parcial', 'status': 'Status', - 'invoice_status_id': 'Invoice Status', - 'quote_status': 'Quote Status', - 'click_plus_to_add_item': 'Click + to add an item', - 'click_plus_to_add_time': 'Click + to add time', - 'count_selected': ':count selected', - 'total': 'Suma', - 'percent': 'Procent', - 'edit': 'Edytuj', - 'dismiss': 'Dismiss', - 'please_select_a_date': 'Please select a date', - 'please_select_a_client': 'Please select a client', - 'please_select_an_invoice': 'Please select an invoice', - 'task_rate': 'Stawka zadania', - 'settings': 'Ustawienia', - 'language': 'Language', - 'currency': 'Waluta', - 'created_at': 'Data utworzenia', - 'created_on': 'Created On', - 'updated_at': 'Updated', - 'tax': 'Podatek', - 'please_enter_an_invoice_number': 'Please enter an invoice number', - 'please_enter_a_quote_number': 'Please enter a quote number', - 'past_due': 'Po terminie', - 'draft': 'Wersja robocza', - 'sent': 'Wysłane', - 'viewed': 'Viewed', - 'approved': 'Approved', - 'partial': 'Zaliczka/Opł.część', - 'paid': 'Zapłacone', - 'mark_sent': 'Oznacz jako wysłane', - 'marked_invoice_as_sent': 'Successfully marked invoice as sent', - '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': 'Gotowe', + 'invoice_status_id': 'Status da Fatura', + 'quote_status': 'Status do Orçamento', + 'click_plus_to_add_item': 'Clique + para adicionar um item', + 'click_plus_to_add_time': 'Clique + para adicionar tempo', + 'count_selected': ':count selecionados', + 'total': 'Total', + 'percent': 'Porcento', + 'edit': 'Editar', + 'dismiss': 'Dispensar', + 'please_select_a_date': 'Por favor digite uma data', + 'please_select_a_client': 'Por favor selecione um cliente', + 'please_select_an_invoice': 'Por favor escolha uma fatura', + 'task_rate': 'Taxa de Tarefas', + 'settings': 'Configurações', + 'language': 'Idioma', + 'currency': 'Moeda', + 'created_at': 'Data de Criação', + 'created_on': 'Criado em', + 'updated_at': 'Atualizado', + 'tax': 'Imposto', + 'please_enter_an_invoice_number': 'Por favor digite um número de fatura', + 'please_enter_a_quote_number': 'Por favor digite um número de orçamento', + 'past_due': 'Vencido', + 'draft': 'Rascunho', + 'sent': 'Enviado', + 'viewed': 'Visualizado', + 'approved': 'Aprovado', + 'partial': 'Depósito / Parcial', + 'paid': 'Pago', + 'mark_sent': 'Marcar como Enviada', + 'marked_invoice_as_sent': 'Fatura marcada como enviada com sucesso', + 'marked_invoice_as_paid': 'Sucesso! A fatura foi marcada como enviada.', + 'marked_invoices_as_sent': 'Faturas marcadas como enviadas com sucesso', + 'marked_invoices_as_paid': + 'Sucesso! As faturas foram marcadas como enviada.', + 'done': 'Concluído', '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ę', - 'refresh_data': 'Refresh Data', - 'blank_contact': 'Blank Contact', - 'activity': 'Dziennik aktywności', - 'no_records_found': 'No records found', - 'clone': 'Klonuj', - 'loading': 'Loading', - 'industry': 'Industry', - 'size': 'Rozmiar', - 'payment_terms': 'Warunki płatnicze', - 'payment_date': 'Data płatności', - 'payment_status': 'Payment Status', - 'payment_status_1': 'Pending', - 'payment_status_2': 'Voided', - 'payment_status_3': 'Failed', - 'payment_status_4': 'Completed', - 'payment_status_5': 'Partially Refunded', - 'payment_status_6': 'Refunded', - 'payment_status_-1': 'Unapplied', + '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', + 'blank_contact': 'Contato Vazio', + 'activity': 'Atividade', + 'no_records_found': 'Nenhum registro encontrado', + 'clone': 'Clonar', + 'loading': 'Carregando', + 'industry': 'Indústria', + 'size': 'Tamanho', + 'payment_terms': 'Condição de Pagamento', + 'payment_date': 'Data do Pagamento', + 'payment_status': 'Status do Pagamento', + 'payment_status_1': 'Pendente', + 'payment_status_2': 'Anulado', + 'payment_status_3': 'Falhou', + 'payment_status_4': 'Completado', + 'payment_status_5': 'Parcialmente Reembolsado', + 'payment_status_6': 'Reembolsado', + 'payment_status_-1': 'Não Aplicado', 'payment_status_-2': 'Partially Unapplied', - 'net': 'Suma netto', - 'client_portal': 'Portal klienta', - 'show_tasks': 'Pokaż zadania', - 'email_reminders': 'Email Reminders', - 'enabled': 'Aktywny', - 'recipients': 'Odbiorcy', - 'initial_email': 'Początkowy email', - 'first_reminder': 'Pierwsze przypomnienie', - 'second_reminder': 'Drugie przypomnienie', - 'third_reminder': 'Trzecie przypomnienie', - 'reminder1': 'First Reminder', - 'reminder2': 'Second Reminder', - 'reminder3': 'Third Reminder', - 'template': 'Szablon', - 'send': 'Send', - 'subject': 'Temat', - 'body': 'Treść', - 'send_email': 'Wyślij email', - 'email_receipt': 'Wyślij potwierdzenie zapłaty do klienta', - 'auto_billing': 'Auto billing', - 'button': 'Button', - 'preview': 'Preview', - 'customize': 'Dostosuj', - 'history': 'Historia', - 'payment': 'Płatność', - 'payments': 'Płatności', - 'refunded': 'Refunded', - 'payment_type': 'Typ płatności', - 'transaction_reference': 'Numer referencyjny transakcji', - 'enter_payment': 'Wprowadź płatność', - 'new_payment': 'Nowa płatność', - 'created_payment': 'Płatność została utworzona', - 'updated_payment': 'Płatność została zaktualizowana', - 'archived_payment': 'Płatność zostałą zarchiwizowana', - 'deleted_payment': 'Płatność została usunięta', - 'restored_payment': 'Płatność została przywrócona', - 'archived_payments': 'Zarchiwizowano :count płatności', - 'deleted_payments': 'Usunięto :count płatności', + 'net': 'Vencimento', + 'client_portal': 'Portal do Cliente', + 'show_tasks': 'Exibir tarefas', + 'email_reminders': 'Lembretes de Email', + 'enabled': 'Habilitado', + 'recipients': 'Destinatários', + 'initial_email': 'Email Inicial', + 'first_reminder': 'Primeiro Lembrete', + 'second_reminder': 'Segundo Lembrete', + 'third_reminder': 'Terceiro Lembrete', + 'reminder1': 'Primeiro Lembrete', + 'reminder2': 'Segundo Lembrete', + 'reminder3': 'Terceiro Lembrete', + 'template': 'Modelo', + 'send': 'Enviar', + 'subject': 'Assunto', + 'body': 'Corpo', + 'send_email': 'Enviar Email', + 'email_receipt': 'Enviar recibo de pagamento ao cliente por email', + 'auto_billing': 'Cobrança automática', + 'button': 'Botão', + 'preview': 'Preview', + 'customize': 'Personalizar', + 'history': 'Histórico', + 'payment': 'Pagamento', + 'payments': 'Pagamentos', + 'refunded': 'Reembolsado', + 'payment_type': 'Tipo de Pagamento', + 'transaction_reference': 'Referência da Transação', + 'enter_payment': 'Informar Pagamento', + 'new_payment': 'Adicionar Pagamento', + 'created_payment': 'Pagamento criado com sucesso', + 'updated_payment': 'Pagamento atualizado com sucesso', + 'archived_payment': 'Pagamento arquivado com sucesso', + 'deleted_payment': 'Pagamento excluído com sucesso', + 'restored_payment': 'Pagamento restaurado com sucesso', + 'archived_payments': ':count pagamentos arquivados com sucesso', + 'deleted_payments': ':count pagamentos excluídos com sucesso', 'restored_payments': 'Successfully restored :value payments', - 'quote': 'Oferta', - 'quotes': 'Oferty', - 'new_quote': 'Nowa oferta', - 'created_quote': 'Oferta została utworzona', - 'updated_quote': 'Oferta została zaktualizowana', - 'archived_quote': 'Oferta została zarchiwizowana', - 'deleted_quote': 'Oferta została usunięta', - 'restored_quote': 'Oferta została przywrócona', - 'archived_quotes': 'Zarchiwizowano :count ofert', - 'deleted_quotes': 'Usunięto :count ofert', + 'quote': 'Orçamento', + 'quotes': 'Orçamentos', + 'new_quote': 'Novo Orçamento', + 'created_quote': 'Orçamento criado com sucesso', + 'updated_quote': 'Orçamento atualizado com sucesso', + 'archived_quote': 'Orçamento aquivado com sucesso', + 'deleted_quote': 'Orçamento excluído com sucesso', + 'restored_quote': 'Orçamento restaurado com sucesso', + 'archived_quotes': ':count orçamentos arquivados com sucesso', + 'deleted_quotes': ':count orçamentos excluídos com sucesso', 'restored_quotes': 'Successfully restored :value quotes', - 'expense': 'Wydatek', - 'expenses': 'Wydatki', - 'vendor': 'Dostawca', - 'vendors': 'Dostawcy', - 'task': 'Zadanie', - 'tasks': 'Zadania', - 'project': 'Projekt', - 'projects': 'Projekty', - 'activity_1': ':user stworzył klienta :client', - 'activity_2': ':user zarchiwizował klienta :client', - 'activity_3': ':user usunął klienta :client', - 'activity_4': ':user stworzył fakturę :invoice', - 'activity_5': ':user zaktualizował fakturę :invoice', - 'activity_6': ':user emailed invoice :invoice for :client to :contact', - 'activity_7': ':contact viewed invoice :invoice for :client', - 'activity_8': ':user zarchiwizował fakturę :invoice', - 'activity_9': ':user usunął fakturę :invoice', + 'expense': 'Despesa', + 'expenses': 'Despesas', + 'vendor': 'Fornecedor', + 'vendors': 'Fornecedores', + 'task': 'Tarefa', + 'tasks': 'Tarefas', + 'project': 'Projeto', + 'projects': 'Projetos', + 'activity_1': ':user criou o cliente :client', + 'activity_2': ':user arquivou o cliente :client', + 'activity_3': ':user excluiu o cliente :client', + 'activity_4': ':user criou a fatura :invoice', + 'activity_5': ':user atualizou a fatura :invoice', + 'activity_6': ':user enviou a fatura :invoice para :client do :contact', + 'activity_7': ':contact viu a fatura :invoice para o :client', + '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', - 'activity_11': ':user zaktualizował płatność :payment', - 'activity_12': ':user zarchiwizował płatność :payment', - 'activity_13': ':user usunął płatność :payment', - 'activity_14': ':user wprowadził kredyt :credit', - 'activity_15': ':user zaktualizował kredyt :credit', - 'activity_16': ':user zarchiwizował kredyt :credit', - 'activity_17': ':user usunął kredyt :credit', - 'activity_18': ':user stworzył ofertę :quote', - 'activity_19': ':user zakatualizował ofertę :quote', - 'activity_20': ':user emailed quote :quote for :client to :contact', - 'activity_21': ':contact wyświetlił ofertę :quote', - 'activity_22': ':user zarchiwizował ofertę :quote', - 'activity_23': ':user usunął ofertę :quote', - 'activity_24': ':user przywrócił ofertę :quote', - 'activity_25': ':user przywrócił fakturę :invoice', - 'activity_26': ':user przywrócił klienta :client', - 'activity_27': ':user przywrócił płatność :payment', - 'activity_28': ':user przywrócił kredyt :credit', - 'activity_29': ':contact approved quote :quote for :client', - 'activity_30': ':user utworzył dostawcę :vendor', - 'activity_31': ':user zarchiwizował dostawcę :vendor', - 'activity_32': ':user usunął dostawcę :vendor', - 'activity_33': ':user przywrócił dostawcę :vendor', - 'activity_34': ':user utworzył wydatek :expense', - 'activity_35': ':user zarchiwizował wydatek :expense', - 'activity_36': ':user usunął wydatek :expense', - 'activity_37': ':user przywrócił wydatek :expense', - 'activity_39': ':user anulował płatność na :payment_amount nr. :payment', + ':contact efetuou o pagamento :payment de :payment_amount da fatura :invoice do cliente :client', + 'activity_11': ':user atualizou o pagamento :payment', + 'activity_12': ':user arquivou o pagamento :payment', + 'activity_13': ':user excluiu o pagamento :payment', + 'activity_14': ':user adicionou crédito :credit', + 'activity_15': ':user atualizou crédito :credit', + 'activity_16': ':user arquivou o crédito de :credit', + 'activity_17': ':user excluiu crédito :credit', + 'activity_18': ':user criou o orçamento :quote', + 'activity_19': ':user atualizou o orçamento :quote', + 'activity_20': + ':user enviou o orçamento :quote do cliente :client para o contato :contact', + 'activity_21': ':contact visualizou o orçamento :quote', + 'activity_22': ':user arquivou o orçamento :quote', + 'activity_23': ':user excluiu o orçamento :quote', + 'activity_24': ':user restaurou o orçamento :quote', + 'activity_25': ':user restaurou a fatura :invoice', + 'activity_26': ':user restaurou o cliente :client', + 'activity_27': ':user restaurou o pagamento :payment', + 'activity_28': ':user restaurou o crédito :credit', + 'activity_29': + ':contact aprovou o orçamento :quote para o cliente :client', + 'activity_30': ':user criou o fornecedor :vendor', + 'activity_31': ':user arquivou o fornecedor :vendor', + 'activity_32': ':user excluiu :vendor', + 'activity_33': ':user restaurou o fornecedor :vendor', + 'activity_34': ':user criou a despesa :expense', + 'activity_35': ':user arquivou a despesa :expense', + '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', 'activity_40': - ':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', - 'activity_44': ':user zarchiwizował zadanie :task', - 'activity_45': ':user usunął zadanie :task', - 'activity_46': ':user przywrócił zadanie :task', - 'activity_47': ':user zaktualizował wydatek :expense', - 'activity_48': ':user zaktualizował zgłoszenie :ticket', - 'activity_49': ':user zamknął zgłoszenie :ticket', - 'activity_50': ':user połączył zgłoszenie :ticket', - 'activity_51': ':user rozdzielił zgłoszenie :ticket', - 'activity_52': ':contact otworzył zgłoszenie :ticket', - 'activity_53': ':contact otworzył ponownie zgłoszenie :ticket', - 'activity_54': ':user otworzył zgłoszenie :ticket ponownie ', - 'activity_55': ':contact odpowiedział w zgłoszeniu :ticket', - 'activity_56': ':user oglądał zgłoszenie :ticket', - 'activity_57': 'System failed to email invoice :invoice', - 'activity_58': ':user reversed invoice :invoice', - 'activity_59': ':user cancelled invoice :invoice', + ':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', + 'activity_44': ':user arquivou a tarefa :task', + 'activity_45': ':user excluiu a tarefa :task', + 'activity_46': ':user restaurou a tarefa :task', + 'activity_47': ':user atualizou a despesa :expense', + 'activity_48': ':user atualizou o ticket :ticket', + 'activity_49': ':user fechou o ticket :ticket', + 'activity_50': ':user uniu o ticket :ticket', + 'activity_51': ':user dividiu o ticket :ticket', + 'activity_52': ':contact abriu o ticket :ticket', + 'activity_53': ':contact reabriu o ticket :ticket', + 'activity_54': ':user reabriu o ticket :ticket', + 'activity_55': ':contact respondeu o ticket :ticket', + 'activity_56': ':user visualizou o ticket :ticket', + 'activity_57': 'O sistema falhou ao enviar a fatura :invoice', + 'activity_58': ': fatura revertida pelo usuário: fatura', + 'activity_59': ': fatura cancelada pelo usuário: fatura', 'activity_60': ':contact viewed quote :quote', 'activity_61': ':user updated client :client', 'activity_62': ':user updated vendor :vendor', @@ -45485,111 +45982,136 @@ mixin LocalizationsProvider on LocaleCodeAware { 'activity_82': ':user archived subscription :subscription', 'activity_83': ':user deleted subscription :subscription', 'activity_84': ':user restored subscription :subscription', - 'one_time_password': 'One Time Password', - 'emailed_quote': 'Oferta została wysłana', - 'emailed_credit': 'Successfully emailed credit', - 'marked_quote_as_sent': 'Successfully marked quote as sent', - 'marked_credit_as_sent': 'Successfully marked credit as sent', - 'expired': 'Wygasło', - 'all': 'Wszystko', - 'select': 'Wybierz', - 'long_press_multiselect': 'Long-press Multiselect', - 'custom_value1': 'Custom Value', - 'custom_value2': 'Custom Value', - 'custom_value3': 'Custom Value 3', - 'custom_value4': 'Custom Value 4', - 'email_style_custom': 'Custom Email Style', - 'custom_message_dashboard': 'Custom Dashboard Message', - 'custom_message_unpaid_invoice': 'Custom Unpaid Invoice Message', - 'custom_message_paid_invoice': 'Custom Paid Invoice Message', - 'custom_message_unapproved_quote': 'Custom Unapproved Quote Message', - 'lock_invoices': 'Lock Invoices', - 'translations': 'Translations', - 'task_number_pattern': 'Task Number Pattern', - 'task_number_counter': 'Task Number Counter', - 'expense_number_pattern': 'Expense Number Pattern', - 'expense_number_counter': 'Expense Number Counter', - 'vendor_number_pattern': 'Vendor Number Pattern', - 'vendor_number_counter': 'Vendor Number Counter', - 'ticket_number_pattern': 'Ticket Number Pattern', - 'ticket_number_counter': 'Ticket Number Counter', - 'payment_number_pattern': 'Payment Number Pattern', - 'payment_number_counter': 'Payment Number Counter', - 'invoice_number_pattern': 'Invoice Number Pattern', - 'invoice_number_counter': 'Licznik numeru faktury', - 'quote_number_pattern': 'Quote Number Pattern', - 'quote_number_counter': 'Licznik numeru oferty', - 'client_number_pattern': 'Credit Number Pattern', - 'client_number_counter': 'Credit Number Counter', - 'credit_number_pattern': 'Credit Number Pattern', - 'credit_number_counter': 'Credit Number Counter', - 'reset_counter_date': 'Reset Counter Date', - 'counter_padding': 'Counter Padding', - 'shared_invoice_quote_counter': 'Shared Invoice Quote Counter', - 'default_tax_name_1': 'Default Tax Name 1', - 'default_tax_rate_1': 'Default Tax Rate 1', - 'default_tax_name_2': 'Default Tax Name 2', - 'default_tax_rate_2': 'Default Tax Rate 2', - 'default_tax_name_3': 'Default Tax Name 3', - 'default_tax_rate_3': 'Default Tax Rate 3', - 'email_subject_invoice': 'Email Invoice Subject', - 'email_subject_quote': 'Email Quote Subject', - 'email_subject_payment': 'Email Payment Subject', - 'email_subject_payment_partial': 'Email Partial Payment Subject', - 'show_table': 'Show Table', - 'show_list': 'Show List', - 'client_city': 'Client City', - 'client_state': 'Client State', - 'client_country': 'Client Country', - 'client_is_active': 'Client is Active', - 'client_balance': 'Client Balance', - 'client_address1': 'Client Street', - 'client_address2': 'Client Apt/Suite', + 'one_time_password': 'Senha One-Time (OTP)', + 'emailed_quote': 'Orçamento enviado por email com sucesso', + 'emailed_credit': 'Crédito enviado com sucesso', + 'marked_quote_as_sent': 'Orçamento marcado como enviado com sucesso', + 'marked_credit_as_sent': 'Crédito marcado com sucesso como enviado', + 'expired': 'Expirado', + 'all': 'Todos', + 'select': 'Selecionar', + 'long_press_multiselect': 'Seleção múltipla de longa pressão', + 'custom_value1': 'Valor Personalizado', + 'custom_value2': 'Valor Personalizado', + 'custom_value3': 'Valor Personalizado 3', + 'custom_value4': 'Valor Personalizado 4', + 'email_style_custom': 'Estilo de E-mail Personalizado', + 'custom_message_dashboard': 'Mensagem de Painel Personalizada', + 'custom_message_unpaid_invoice': + 'Mensagem Personalizada de Fatura Atrasada', + 'custom_message_paid_invoice': 'Mensagem Personalizada de Fatura Paga', + 'custom_message_unapproved_quote': + 'Mensagem Personalizada de Orçamento Não Aprovado', + 'lock_invoices': 'Bloquear Faturas', + 'translations': 'Traduções', + 'task_number_pattern': 'Padrão de Numeração de Tarefa', + 'task_number_counter': 'Contador Numérico de Tarefas', + 'expense_number_pattern': 'Padrão de Numeração de Despesa', + 'expense_number_counter': 'Contador Numérico de Despesas', + 'vendor_number_pattern': 'Padrão de Numeração de Vendedor', + 'vendor_number_counter': 'Contador Numérico de Vendedores', + 'ticket_number_pattern': 'Padrão de Numeração de Ticket', + 'ticket_number_counter': 'Contador Numérico de Tickets', + 'payment_number_pattern': 'Padrão de Numeração de Pagamento', + 'payment_number_counter': 'Contador Numérico de Pagamentos', + 'invoice_number_pattern': 'Padrão de Numeração de Fatura', + 'invoice_number_counter': 'Contador Numérico de Faturas', + 'quote_number_pattern': 'Padrão de Numeração de Orçamento', + 'quote_number_counter': 'Contador Numérico de Orçamentos', + 'client_number_pattern': 'Padrão de Numeração de Crédito', + 'client_number_counter': 'Contador Numérico de Créditos', + 'credit_number_pattern': 'Padrão de Numeração de Crédito', + 'credit_number_counter': 'Contador Numérico de Créditos', + 'reset_counter_date': 'Reiniciar Data do Contador', + 'counter_padding': 'Padrão do Contador', + 'shared_invoice_quote_counter': + 'Contador de cotação de fatura compartilhada', + 'default_tax_name_1': 'Nome fiscal padrão 1', + 'default_tax_rate_1': 'Taxa de imposto padrão 1', + 'default_tax_name_2': 'Nome fiscal padrão 2', + 'default_tax_rate_2': 'Taxa de imposto padrão 2', + 'default_tax_name_3': 'Nome fiscal padrão 3', + 'default_tax_rate_3': 'Taxa de imposto padrão 3', + 'email_subject_invoice': 'Assunto do E-mail de Fatura', + 'email_subject_quote': 'Assunto do E-mail de Orçamento', + 'email_subject_payment': 'Assunto do E-mail de Pagamento', + 'email_subject_payment_partial': 'Assunto de pagamento parcial por email', + 'show_table': 'Exibir Tabelas', + 'show_list': 'Exibir Lista', + 'client_city': 'Cidade do Cliente', + 'client_state': 'Estado do Cliente', + 'client_country': 'País do Cliente', + 'client_is_active': 'Cliente Ativo', + 'client_balance': 'Balanço do Cliente', + 'client_address1': 'Endereço do cliente', + 'client_address2': 'Complemento', 'vendor_address1': 'Vendor Street', 'vendor_address2': 'Vendor Apt/Suite', - 'client_shipping_address1': 'Client Shipping Street', - 'client_shipping_address2': 'Client Shipping Apt/Suite', - 'type': 'Typ', - 'invoice_amount': 'Kwota faktury', - 'invoice_due_date': 'Termin Płatności', - 'tax_rate1': 'Tax Rate 1', - 'tax_rate2': 'Tax Rate 2', - 'tax_rate3': 'Tax Rate 3', - 'auto_bill': 'Płatność Automatyczna', - 'archived_at': 'Archived At', - 'has_expenses': 'Has Expenses', - 'custom_taxes1': 'Custom Taxes 1', - 'custom_taxes2': 'Custom Taxes 2', - 'custom_taxes3': 'Custom Taxes 3', - 'custom_taxes4': 'Custom Taxes 4', - 'custom_surcharge1': 'Custom Surcharge 1', - 'custom_surcharge2': 'Custom Surcharge 2', - 'custom_surcharge3': 'Custom Surcharge 3', - 'custom_surcharge4': 'Custom Surcharge 4', - 'is_deleted': 'Is Deleted', - 'vendor_city': 'Vendor City', - 'vendor_state': 'Vendor State', - 'vendor_country': 'Vendor Country', - 'is_approved': 'Is Approved', - 'tax_name': 'Nazwa podatku', - 'tax_amount': 'Podatek', - 'tax_paid': 'Podatek zapłacony', - 'payment_amount': 'Kwota płatności', - 'age': 'Wiek', + 'client_shipping_address1': 'Endereço de entrega', + 'client_shipping_address2': 'Complemento', + 'type': 'Tipo', + 'invoice_amount': 'Valor da Fatura', + 'invoice_due_date': 'Data de Vencimento', + 'tax_rate1': 'Taxa de imposto 1', + 'tax_rate2': 'Taxa de imposto 2', + 'tax_rate3': 'Taxa de imposto 3', + 'auto_bill': 'Cobrança Automática', + 'archived_at': 'Arquivado em', + 'has_expenses': 'Tem despesas', + 'custom_taxes1': 'Impostos personalizados 1', + 'custom_taxes2': 'Impostos personalizados 2', + 'custom_taxes3': 'Impostos personalizados 3', + 'custom_taxes4': 'Impostos personalizados 4', + 'custom_surcharge1': 'Sobretaxa Personalizada 1', + 'custom_surcharge2': 'Sobretaxa Personalizada 2', + 'custom_surcharge3': 'Sobretaxa Personalizada 3', + 'custom_surcharge4': 'Sobretaxa Personalizada 4', + 'is_deleted': 'Excluído', + 'vendor_city': 'Cidade do Vendedor', + 'vendor_state': 'Estado do Vendedor', + 'vendor_country': 'País do Vendedor', + 'is_approved': 'Está aprovado', + 'tax_name': 'Nome do Imposto', + 'tax_amount': 'Quantia de Impostos', + 'tax_paid': 'Impostos pagos', + 'payment_amount': 'Quantia de Pagamento', + 'age': 'Idade', 'is_running': 'Is Running', - 'time_log': 'Rejestr czasu', - 'bank_id': 'Bank', + 'time_log': 'Log de Tempo', + 'bank_id': 'Banco', 'expense_category_id': 'Expense Category ID', - 'expense_category': 'Kategoria wydatku', + 'expense_category': 'Categoria de Despesa', 'invoice_currency_id': 'Invoice Currency ID', - 'tax_name1': 'Tax Name 1', - 'tax_name2': 'Tax Name 2', + 'tax_name1': 'Imposto 1', + 'tax_name2': 'Imposto 2', 'tax_name3': 'Tax Name 3', - 'transaction_id': 'Transaction ID', + 'transaction_id': 'ID de transação', 'status_color_theme': 'Status Color Theme', 'load_color_theme': 'Load Color Theme', }, - 'pt_BR': { + 'pt_PT': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'A taxa para :amount nota de pag. deve ser :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Aprovar', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -45605,7 +46127,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'convert_to': 'Convert To', 'client_currency': 'Client Currency', 'company_currency': 'Company Currency', - 'purged_client': 'Cliente limpo com sucesso', + 'purged_client': 'Cliente apagado com sucesso', 'custom_emails_disabled_help': 'To prevent spam we require upgrading to a paid account to customize the email', 'upgrade_to_add_company': 'Upgrade your plan to add companies', @@ -45641,7 +46163,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'giropay': 'GiroPay', 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', - 'set_password': 'Definir Senha', + 'set_password': 'Definir palavra-passe', 'recommend_desktop': 'We recommend using the desktop app for the best performance', 'recommend_mobile': @@ -45664,8 +46186,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'unauthorized_stripe_warning': 'Please authorize Stripe to accept online payments.', 'view_expense': 'Visualizar despesa # :expense', - 'view_statement': 'Ver Compras', - 'sepa': 'Débito direto SEPA', + 'view_statement': 'Visualizar declaração', + 'sepa': 'Débito Direto SEPA', 'ideal': 'iDEAL', 'przelewy24': 'Przelewy24', 'eps': 'EPS', @@ -45696,7 +46218,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'created_recurring_expense': 'Despesa recorrente criada com sucesso', 'updated_recurring_expense': 'Despesa recorrente atualizada com sucesso', 'archived_recurring_expense': 'Despesa recorrente arquivada com sucesso', - 'deleted_recurring_expense': 'Projeto excluído com sucesso', + 'deleted_recurring_expense': 'Projeto apagado com sucesso', 'removed_recurring_expense': 'Successfully removed recurring expense', 'restored_recurring_expense': 'Despesa recorrente restaurada com sucesso', 'search_recurring_expense': 'Search Recurring Expense', @@ -45720,7 +46242,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'expense_tax_help': 'Item tax rates are disabled', 'enable_markdown': 'Enable Markdown', 'enable_markdown_help': 'Convert markdown to HTML on the PDF', - 'user_guide': 'Guia do Usuário', + 'user_guide': 'Guia do Utilizador', 'add_second_contact': 'Add Second Contact', 'previous_page': 'Previous Page', 'next_page': 'Next Page', @@ -45776,11 +46298,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'step_2_authorize': 'Step 2: Authorize', 'account_id': 'Account ID', 'migration_not_yet_completed': 'The migration has not yet completed', - 'activity_100': ':user created recurring invoice :recurring_invoice', - 'activity_101': ':user updated recurring invoice :recurring_invoice', - 'activity_102': ':user archived recurring invoice :recurring_invoice', - 'activity_103': ':user deleted recurring invoice :recurring_invoice', - 'activity_104': ':user restored recurring invoice :recurring_invoice', + 'activity_100': + ':user criou uma nota de pagamento recorrente :recurring_invoice', + 'activity_101': + ':user atualizou uma nota de pagamento recorrente :recurring_invoice', + 'activity_102': + ':user arquivou uma nota de pagamento recorrente :recurring_invoice', + 'activity_103': + ':user apagou uma nota de pagamento recorrente :recurring_invoice', + 'activity_104': + ':user restaurou uma nota de pagamento recorrente :recurring_invoice', 'show_task_end_date': 'Show Task End Date', 'show_task_end_date_help': 'Enable specifying the task end date', 'gateway_setup': 'Gateway Setup', @@ -45798,21 +46325,21 @@ mixin LocalizationsProvider on LocaleCodeAware { 'last_updated': 'Última Atualização', 'invoice_item': 'Invoice Item', 'quote_item': 'Quote Item', - 'contact_first_name': 'Primeiro Nome do Contato', - 'contact_last_name': 'Último Nome do Contato', + 'contact_first_name': 'Primeiro Nome do Contacto', + 'contact_last_name': 'Último Nome do Contacto', 'order': 'Order', - 'unassigned': 'Não Designado', - 'partial_value': 'Precisa ser maior que zero e menor que o total', + 'unassigned': 'Não atribuído', + 'partial_value': 'Deve ser maior que zero e menor que o total', 'search_kanban': 'Search Kanban', 'search_kanbans': 'Search Kanban', 'kanban': 'Kanban', - 'enable': 'Habilitar', + 'enable': 'Ativar', 'move_top': 'Move Top', 'move_up': 'Move Up', 'move_down': 'Move Down', 'move_bottom': 'Move Bottom', 'subdomain_help': - 'Definir o subdomínio ou mostrar a fatura em seu próprio website', + 'Indique o subdomínio ou mostre a nota de pag. no seu site.', 'body_variable_missing': 'Error: the custom email must include a :body variable', 'add_body_variable_message': 'Make sure to include a :body variable', @@ -45837,7 +46364,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'header_key': 'Header Key', 'header_value': 'Header Value', 'recurring_products': 'Recurring Products', - 'promo_code': 'Promo code', + 'promo_code': 'Código Promocional', 'promo_discount': 'Promo Discount', 'allow_cancellation': 'Allow Cancellation', 'per_seat_enabled': 'Per Seat Enabled', @@ -45860,418 +46387,421 @@ mixin LocalizationsProvider on LocaleCodeAware { 'pdf_failed': 'PDF Failed', 'pdf_success': 'PDF Success', 'modified': 'Modified', - 'subscription': 'Assinatura', - 'subscriptions': 'Assinaturas', - 'new_subscription': 'Nova Assinatura', - 'edit_subscription': 'Ediar Assinatura', - 'created_subscription': 'Assinatura criada com sucesso', - 'updated_subscription': 'Assinatura atualizada com sucesso', - 'archived_subscription': 'Assinatura arquivada com sucesso', - 'deleted_subscription': 'Assinatura apagada com sucesso', - 'removed_subscription': 'Assinatura removida com sucesso', - 'restored_subscription': 'Assinatura restaurada com sucesso', - 'search_subscription': 'Search 1 Subscription', - 'search_subscriptions': 'Search :count Subscriptions', - 'subdomain_is_not_available': 'Subdomain is not available', - 'connect_gmail': 'Connect Gmail', - 'disconnect_gmail': 'Disconnect Gmail', + 'subscription': 'Subscrição', + 'subscriptions': 'Subscrições', + 'new_subscription': 'Nova Subscrição', + 'edit_subscription': 'Editar subscrição', + 'created_subscription': 'Subscrição criada com sucesso', + 'updated_subscription': 'Subscrição atualizada com sucesso', + 'archived_subscription': 'Subscrição arquivada com sucesso', + 'deleted_subscription': 'Subscrição Apagada com Sucesso', + 'removed_subscription': 'Subscrição Removida com Sucesso', + 'restored_subscription': 'Subscrição Restaurada com Sucesso', + 'search_subscription': 'Encontrada 1 Subscrição', + 'search_subscriptions': 'Encontradas :count Subscrições', + 'subdomain_is_not_available': 'Subdomínio não disponível', + 'connect_gmail': 'Associar Gmail', + 'disconnect_gmail': 'Desassociar Gmail', 'connected_gmail': 'Successfully connected Gmail', 'disconnected_gmail': 'Successfully disconnected Gmail', 'update_fail_help': 'Changes to the codebase may be blocking the update, you can run this command to discard the changes:', - 'client_id_number': 'Client ID Number', - 'count_minutes': ':count Minutes', - 'password_timeout': 'Password Timeout', + 'client_id_number': 'Número de Identificação do Cliente', + 'count_minutes': ':count Minutos', + 'password_timeout': 'Timeout da palavra-passe', 'shared_invoice_credit_counter': 'Shared Invoice/Credit Counter', - 'use_last_email': 'Use last email', - 'activate_company': 'Activate Company', + 'use_last_email': 'Usar último E-mail', + 'activate_company': 'Ativar Empresa', 'activate_company_help': - 'Enable emails, recurring invoices and notifications', - 'an_error_occurred_try_again': 'An error occurred, please try again', - 'please_first_set_a_password': 'Please first set a password', + 'Ativar E-mail, notas de pagamento recorrentes e notificações', + 'an_error_occurred_try_again': + 'Ocorreu um erro, por favor tente novamente', + 'please_first_set_a_password': 'Por favor defina uma palavra-passe', 'changing_phone_disables_two_factor': - 'Warning: Changing your phone number will disable 2FA', - 'help_translate': 'Help Translate', - 'please_select_a_country': 'Please select a country', - 'resend_invite': 'Reenviar Convite', - 'disabled_two_factor': 'Successfully disabled 2FA', + 'Aviso: A mudança de número de telemóvel vai desativar a autenticação de dois fatores (2FA).', + 'help_translate': 'Ajude a traduzir', + 'please_select_a_country': 'Por favor escolha um país', + 'resend_invite': 'Reenviar convite', + 'disabled_two_factor': + 'Autenticação de dois fatores (2FA) desativada com sucesso', 'connected_google': 'Successfully connected account', 'disconnected_google': 'Successfully disconnected account', - 'delivered': 'Delivered', + 'delivered': 'Entregue', 'bounced': 'Devolvido', 'spam': 'Spam', - 'view_docs': 'View Docs', + 'view_docs': 'Ver Documentos', 'enter_phone_to_enable_two_factor': - 'Please provide a mobile phone number to enable two factor authentication', - 'send_sms': 'Send SMS', - 'sms_code': 'SMS Code', + 'Por favor forneça um número de telemóvel para ativar a autenticação de dois fatores', + 'send_sms': 'Enviar SMS', + 'sms_code': 'Código SMS', 'two_factor_setup_help': - 'Eccaneie o código de barras com um app compatível com :link', - 'enabled_two_factor': - 'Ativação de Autenticação em 2 Fatores realizada com sucesso.', - 'connect_google': 'Connect Google', - 'disconnect_google': 'Disconnect Google', - 'enable_two_factor': 'Autenticação em 2 Fatores', - 'disable_two_factor': 'Disable Two Factor', + 'Ler o código de barras com uma :link aplicação compatível.', + 'enabled_two_factor': 'Autenticação de Dois Fatores ativada com sucesso', + 'connect_google': 'Associar Google', + 'disconnect_google': 'Desassociar Google', + 'enable_two_factor': 'Autenticação de Dois Fatores', + 'disable_two_factor': 'Desativar Dois Fatores', 'require_password_with_social_login': - 'Require Password with Social Login', - 'stay_logged_in': 'Stay Logged In', - 'session_about_to_expire': 'Warning: Your session is about to expire', - 'count_hours': ':count Hours', - 'count_day': '1 Day', - 'count_days': ':count Days', + 'Exigir Palavra-passe para Início de Sessão Social', + 'stay_logged_in': 'Continuar com sessão iniciada', + 'session_about_to_expire': 'Aviso: A sua sessão está prestes a expirar', + 'count_hours': ':count Horas', + 'count_day': '1 Dia', + 'count_days': ':count Dias', 'web_session_timeout': 'Web Session Timeout', - 'security_settings': 'Security Settings', - 'resend_email': 'Resend Email', - 'confirm_your_email_address': 'Please confirm your email address', + 'security_settings': 'Definições de Segurança', + 'resend_email': 'Reenviar E-mail', + 'confirm_your_email_address': + 'Por favor confirme o seu endereço de E-mail', 'refunded_payment': 'Pagamento Reembolsado', - 'partially_unapplied': 'Partially Unapplied', + 'partially_unapplied': 'Parcialmente Não Aplicado', 'select_a_gmail_user': 'Please select a user authenticated with Gmail', 'list_long_press': 'List Long Press', - 'show_actions': 'Show Actions', - 'start_multiselect': 'Start Multiselect', + 'show_actions': 'Mostrar Ações', + 'start_multiselect': 'Iniciar Multiseleção', 'email_sent_to_confirm_email': - 'An email has been sent to confirm the email address', + 'Um E-mail foi enviado para confirmar este endereço de correio eletrónico', 'counter_pattern_error': 'To use :client_counter please add either :client_number or :client_id_number to prevent conflicts', 'this_quarter': 'This Quarter', 'last_quarter': 'Último Quadrimestre', - 'to_update_run': 'To update run', - 'convert_to_invoice': 'Converter em Fatura', - 'registration_url': 'Registration URL', + 'to_update_run': 'Para atualizar corra', + 'convert_to_invoice': 'Converter em Nota de Pagamento', + 'registration_url': 'URL de Registo', 'invoice_project': 'Faturar Projeto', 'invoice_task': 'Faturar Tarefa', - 'invoice_expense': 'Faturar Despesa', - 'search_payment_term': 'Search 1 Payment Term', - 'search_payment_terms': 'Search :count Payment Terms', - 'save_and_preview': 'Save and Preview', - 'save_and_email': 'Save and Email', + 'invoice_expense': 'Nota de Pagamento da Despesa', + 'search_payment_term': 'Encontrado 1 Termo de Pagamento', + 'search_payment_terms': 'Encontrados :count Termos de Pagamento', + 'save_and_preview': 'Guardar e Prever', + 'save_and_email': 'Guardar e Enviar por E-mail', 'supported_events': 'Eventos com Suporte', - 'converted_amount': 'Quantia Convertida', - 'converted_balance': 'Converted Balance', + 'converted_amount': 'Valor convertido', + 'converted_balance': 'Saldo Convertido', 'converted_paid_to_date': 'Converted Paid to Date', - 'converted_credit_balance': 'Converted Credit Balance', - 'converted_total': 'Converted Total', - 'is_sent': 'Is Sent', - 'default_documents': 'Documentos Padrão', - 'document_upload': 'Document Upload', - 'document_upload_help': 'Enable clients to upload documents', - 'expense_total': 'Expense Total', - 'enter_taxes': 'Enter Taxes', - 'by_rate': 'By Rate', - 'by_amount': 'By Amount', - 'enter_amount': 'Enter Amount', - 'before_taxes': 'Before Taxes', - 'after_taxes': 'After Taxes', + 'converted_credit_balance': 'Saldo de Crédito Convertido', + 'converted_total': 'Total Convertido', + 'is_sent': 'Foi Enviado', + 'default_documents': 'Documentos Pré-Definidos', + 'document_upload': 'Upload de Documento', + 'document_upload_help': 'Permitir que clientes enviem documentos/anexos', + 'expense_total': 'Total das Despesas', + 'enter_taxes': 'Introduzir impostos', + 'by_rate': 'Por taxa', + 'by_amount': 'Por quantia', + 'enter_amount': 'Introduzir Quantia', + 'before_taxes': 'Sem impostos', + 'after_taxes': 'Com impostos', 'color': 'Cor', 'show': 'Mostrar', 'hide': 'Ocultar', - 'empty_columns': 'Empty Columns', - 'debug_mode_is_enabled': 'Debug mode is enabled', + 'empty_columns': 'Colunas Vazias', + 'debug_mode_is_enabled': 'O Modo de depuração está ativado', 'debug_mode_is_enabled_help': - 'Warning: it is intended for use on local machines, it can leak credentials. Click to learn more.', - 'running_tasks': 'Running Tasks', - 'recent_tasks': 'Recent Tasks', - 'recent_expenses': 'Recent Expenses', - 'upcoming_expenses': 'Upcoming Expenses', - 'update_app': 'Update App', - 'started_import': 'Successfully started import', - 'duplicate_column_mapping': 'Duplicate column mapping', - 'uses_inclusive_taxes': 'Uses Inclusive Taxes', + 'Aviso: este modo apenas deve ser usado em máquinas locais, pois pode ocorrer fuga de credenciais. Clique para saber mais', + 'running_tasks': 'Tarefas a correr', + 'recent_tasks': 'Tarefas Recentes', + 'recent_expenses': 'Despesas Recentes', + 'upcoming_expenses': 'Próximas Despesas', + 'update_app': 'Atualizar Aplicação', + 'started_import': 'Importação iniciou com sucesso', + 'duplicate_column_mapping': 'Duplicar mapeamento de colunas', + 'uses_inclusive_taxes': 'Usa Taxas Inclusivas', 'is_amount_discount': 'Is Amount Discount', 'column': 'Coluna', - 'sample': 'Amostra', + 'sample': 'Exemplo', 'map_to': 'Map To', 'import': 'Importar', - 'first_row_as_column_names': 'Use first row as column names', - 'select_file': 'Selecione um arquivo', - 'no_file_selected': 'No File Selected', - 'csv_file': 'Arquivo CSV', + 'first_row_as_column_names': 'Usar primeira linha como nome das colunas', + 'select_file': 'Por favor selecione um arquivo', + 'no_file_selected': 'Nenhum Ficheiro Selecionado', + 'csv_file': 'Ficheiro CSV', 'csv': 'CSV', 'freshbooks': 'FreshBooks', 'invoice2go': 'Invoice2go', 'invoicely': 'Invoicely', 'waveaccounting': 'Wave Accounting', 'zoho': 'Zoho', - 'accounting': 'Accounting', - 'required_files_missing': 'Please provide all CSVs.', - 'import_type': 'Import Type', + 'accounting': 'Contabilidade', + 'required_files_missing': 'Por favor forneça todos os CSVs', + 'import_type': 'Tipo de Importação', 'html_mode': 'HTML Mode', 'html_mode_help': 'Preview updates faster but is less accurate', - 'view_licenses': 'Ver licenças', + 'view_licenses': 'Ver Licenças', 'webhook_url': 'Webhook URL', - 'fullscreen_editor': 'Tela cheia', - 'sidebar_editor': 'Sidebar Editor', + 'fullscreen_editor': 'Editor em ecrã inteiro', + 'sidebar_editor': 'Editor da Barra Lateral', 'please_type_to_confirm': 'Please type \":value\" to confirm', - 'purge': 'Purge', + 'purge': 'Apagar', 'service': 'Serviço', - 'clone_to': 'Clonar para', - 'clone_to_other': 'Clonar para outro', + 'clone_to': 'Duplicar para', + 'clone_to_other': 'Duplicar para outro', 'labels': 'Etiquetas', - 'add_custom': 'Add Custom', - 'payment_tax': 'Payment Tax', - 'unpaid': 'Não Pago', - 'white_label': 'Sem marca', - 'delivery_note': 'Nota de Entrega', - 'sent_invoices_are_locked': 'Sent invoices are locked', - 'paid_invoices_are_locked': 'Paid invoices are locked', - 'source_code': 'Source Code', - 'app_platforms': 'App Platforms', - 'invoice_late': 'Invoice Late', - 'quote_expired': 'Proposta expirada', + 'add_custom': 'Adicionar Personalizado', + 'payment_tax': 'Imposto de Pagamento', + 'unpaid': 'Não pago', + 'white_label': 'White Label', + 'delivery_note': 'Nota de Envio', + 'sent_invoices_are_locked': + 'Notas de Pagamento Enviadas estão bloqueadas', + 'paid_invoices_are_locked': 'Faturas Pagas estão bloqueadas', + 'source_code': 'Código-fonte', + 'app_platforms': 'Plataformas da Aplicação', + 'invoice_late': 'Nota de Pagamento Atrasada', + 'quote_expired': 'Orçamento Expirado', 'partial_due': 'Vencimento Parcial', - 'invoice_total': 'Total da Fatura', + 'invoice_total': 'Total da Nota de Pag.', 'quote_total': 'Total do Orçamento', - 'credit_total': 'Total do Crédito', - 'recurring_invoice_total': 'Total da Fatura', + 'credit_total': 'Total em crédito', + 'recurring_invoice_total': 'Total da Nota de Pag.', 'actions': 'Ações', - 'expense_number': 'Nº da Despesa', - 'task_number': 'Nº da Tarefa', - 'project_number': 'Nº do Projeto', - 'project_name': 'Nome do projeto', + 'expense_number': 'N.º da Despesa', + 'task_number': 'N.º da Tarefa', + 'project_number': 'N.º do Projeto', + 'project_name': 'Nome do Projeto', 'warning': 'Aviso', 'view_settings': 'Ver definições', - 'company_disabled_warning': - 'Warning: this company has not yet been activated', - 'late_invoice': 'Late Invoice', - 'expired_quote': 'Expired Quote', - 'remind_invoice': 'Remind Invoice', + 'company_disabled_warning': 'Aviso: esta empresa ainda não foi ativada', + 'late_invoice': 'Nota de Pagamento Atrasada', + 'expired_quote': 'Orçamento Expirado', + 'remind_invoice': 'Enviar Lembrete da Nota de Pagamento', 'cvv': 'CVV', 'client_name': 'Nome do Cliente', - 'client_phone': 'Client Phone', - 'required_fields': 'Required Fields', + 'client_phone': 'Telefone do Cliente', + 'required_fields': 'Campos Necessários', 'calculated_rate': 'Taxa Calculada', - 'default_task_rate': 'Taxa de tarefa padrão', + 'default_task_rate': 'Taxa de Tarefa Pré-definida', 'clear_cache': 'Limpar cache', 'sort_order': 'Ordenar', - 'task_status': 'Situação', - 'task_statuses': 'Status da tarefa', - 'new_task_status': 'Novo Status da tarefa', - 'edit_task_status': 'Editar Status da Tarefa', - 'created_task_status': 'Status da tarefa criado com sucesso', - 'updated_task_status': 'Status da tarefa atualizado com sucesso', - 'archived_task_status': 'Status da tarefa arquivado com sucesso', - 'deleted_task_status': 'Status da tarefa apagado com sucesso', - 'removed_task_status': 'Status da tarefa removido com sucesso', - 'restored_task_status': 'Status da tarefa restaurado com sucesso', - 'archived_task_statuses': 'Successfully archived :value task statuses', - 'deleted_task_statuses': 'Successfully deleted :value task statuses', - 'restored_task_statuses': 'Successfully restored :value task statuses', - 'search_task_status': 'Encontrado 1 Status da Tarefa', - 'search_task_statuses': 'Encontrado :count Status da Tarefa', + 'task_status': 'Estado', + 'task_statuses': 'Estado da Tarefa', + 'new_task_status': 'Novo Estado da Tarefa', + 'edit_task_status': 'Editar Estado da Tarefa', + 'created_task_status': 'Estado da tarefa criado com sucesso', + 'updated_task_status': 'Estado da tarefa atualizado com sucesso', + 'archived_task_status': 'Estado da tarefa arquivado com sucesso', + 'deleted_task_status': 'Estado da tarefa apagado com sucesso', + 'removed_task_status': 'Estado da tarefa removido com sucesso', + 'restored_task_status': 'Estado da tarefa restaurado com sucesso', + 'archived_task_statuses': 'Estado das tarefas arquivados com sucesso', + 'deleted_task_statuses': 'Estado das tarefas apagados com sucesso', + 'restored_task_statuses': 'Estado das tarefas restaurados com sucesso', + 'search_task_status': 'Encontrado 1 Estado da Tarefa', + 'search_task_statuses': 'Encontados :count Estados da Tarefa', 'show_tasks_table': 'Mostrar Tabela de Tarefas', 'show_tasks_table_help': - 'Sempre mostrar a seção de tarefas ao criar faturas', - 'invoice_task_timelog': 'Registro das tarefas de fatura', + 'Sempre mostrar a seção de tarefas ao criar notas de pagamento', + 'invoice_task_timelog': 'Registo das tarefas da Nota de Pagamento', 'invoice_task_timelog_help': 'Add time details to the invoice line items', 'invoice_task_datelog': 'Invoice Task Datelog', - 'invoice_task_datelog_help': 'Add date details to the invoice line items', - 'auto_start_tasks_help': 'Start tasks before saving', - 'configure_statuses': 'Configure Statuses', - 'task_settings': 'Task Settings', - 'configure_categories': 'Configure Categories', + 'invoice_task_datelog_help': + 'Adicionar detalhes da data na linha dos items da Nota de Pagamento', + 'auto_start_tasks_help': 'Começar tarefas antes de guardar', + 'configure_statuses': 'Configurar Estados', + 'task_settings': 'Definições de tarefa', + 'configure_categories': 'Configurar Categorias', 'expense_categories': 'Categorias de Despesas', 'new_expense_category': 'Nova Categoria de Despesas', - 'edit_expense_category': 'Edit Expense Category', - 'created_expense_category': 'Categoria de despesas criada com sucesso', - 'updated_expense_category': - 'Categoria de despesas atualizada com sucesso', - 'archived_expense_category': - 'Categoria de despesas arquivada com sucesso', - 'deleted_expense_category': 'Categoria excluída com sucesso', - 'removed_expense_category': 'Successfully removed expense category', + 'edit_expense_category': 'Editar Categoria de Despesas', + 'created_expense_category': 'Categoria de despesa criada com sucesso', + 'updated_expense_category': 'Categoria de despesa atualizada com sucesso', + 'archived_expense_category': 'Categoria de despesa arquivada com sucesso', + 'deleted_expense_category': 'Categoria apagada com sucesso', + 'removed_expense_category': 'Categoria de despesa removida com sucesso', 'restored_expense_category': - 'Categoria de despesas restaurada com sucesso', + 'Categoria de despesa restaurada com sucesso', 'archived_expense_categories': - ':count categorias de despesas arquivadas com sucesso', + ':count categorias de despesa arquivadas com sucesso', 'deleted_expense_categories': 'Successfully deleted expense :value categories', 'restored_expense_categories': 'Successfully restored expense :value categories', - 'search_expense_category': 'Search 1 Expense Category', - 'search_expense_categories': 'Search :count Expense Categories', - 'use_available_credits': 'Use Available Credits', - 'show_option': 'Mostrar opção', + 'search_expense_category': 'Encontrada 1 Categoria de Despesa', + 'search_expense_categories': 'Encontrada :count Categorias de Despesa', + 'use_available_credits': 'Usar Créditos Disponíveis', + 'show_option': 'Mostrar Opção', 'negative_payment_error': 'The credit amount cannot exceed the payment amount', 'view_changes': 'Ver alterações', 'force_update': 'Forçar atualização', 'force_update_help': - 'Você está executando a versão mais recente, mas pode haver correções pendentes disponíveis.', + 'Está a usar a versão mais recente, mas pode haver correções pendentes disponíveis.', 'mark_paid_help': 'Acompanhe se a despesa foi paga', - 'should_be_invoiced': 'Deverá ser Faturada', + 'should_be_invoiced': 'Deve ser faturada', 'should_be_invoiced_help': 'Enable the expense to be invoiced', 'add_documents_to_invoice_help': 'Tornar os documentos visíveis', 'convert_currency_help': 'Defina uma taxa de câmbio', 'expense_settings': 'Configurações das despesas', - 'clone_to_recurring': 'Clonar recorrência', + 'clone_to_recurring': 'Duplicar recorrência', 'crypto': 'Criptomoeda', 'paypal': 'PayPal', 'alipay': 'Alipay', 'sofort': 'Sofort', 'apple_pay': 'Apple/Google Pay', - 'user_field': 'Campo do usuário', + 'user_field': 'Campo do utilizador', 'variables': 'Variável', - 'show_password': 'Mostrar senha', - 'hide_password': 'Esconder senha', + 'show_password': 'Mostrar Palavra-passe', + 'hide_password': 'Esconder Palavra-passe', 'copy_error': 'Copiar Erro', 'capture_card': 'Cartão de captura', - 'auto_bill_enabled': 'Cobrança automática habilitada', + 'auto_bill_enabled': 'Cobrança automática ativada', 'total_taxes': 'Impostos totais', - 'line_taxes': 'Line Taxes', + 'line_taxes': 'Item', 'total_fields': 'Campo Total', 'stopped_recurring_invoice': 'Fatura recorrente interrompida com sucesso', 'started_recurring_invoice': 'Fatura recorrente iniciada com sucesso', 'resumed_recurring_invoice': 'Fatura recorrente retomada com sucesso', - 'gateway_refund': 'Gateway Refund', - 'gateway_refund_help': 'Processe o reembolso com o portal de pagamento', - 'due_date_days': 'Data de vencimento', + 'gateway_refund': 'Reembolso do Terminal', + 'gateway_refund_help': 'Processe o reembolso com o terminal de pagamento', + 'due_date_days': 'Data de Vencimento', 'paused': 'Pausado', - 'mark_active': 'Marcar como Ativo', - 'day_count': 'Dia: contagem', + 'mark_active': 'Ativar', + 'day_count': 'Dia :count', 'first_day_of_the_month': 'Primeiro dia do Mês', 'last_day_of_the_month': 'Último dia do Mês', - 'use_payment_terms': 'Use Payment Terms', + 'use_payment_terms': 'Novo Condição de Pagamento', 'endless': 'Interminável', 'next_send_date': 'Próxima data de envio', 'remaining_cycles': 'Ciclos Restantes', - 'recurring_invoice': 'Fatura Recorrente', - 'recurring_invoices': 'Faturas Recorrentes', - 'new_recurring_invoice': 'Nova Fatura Recorrente', + 'recurring_invoice': 'Nota de Pagamento Recorrente', + 'recurring_invoices': 'Nota de Pagamento Recorrentes', + 'new_recurring_invoice': 'Nova Nota de Pagamento Recorrente', 'edit_recurring_invoice': 'Editar Fatura Recorrente', 'created_recurring_invoice': 'Fatura recorrente criada com sucesso', 'updated_recurring_invoice': 'Fatura recorrente atualizada com sucesso', - 'archived_recurring_invoice': 'Fatura Recorrente arquivada com sucesso', - 'deleted_recurring_invoice': 'Fatura recorrente excluída com sucesso', + 'archived_recurring_invoice': 'Nota de Pagamento Recorrente arquivada', + 'deleted_recurring_invoice': 'Nota de Pagamento Recorrente removida', 'removed_recurring_invoice': 'Fatura recorrente removida com sucesso', - 'restored_recurring_invoice': 'Fatura Recorrente restaurada com sucesso', + 'restored_recurring_invoice': 'Nota de Pagamento Recorrente restaurada', 'archived_recurring_invoices': - 'Successfully archived recurring :value invoices', + ':value Notas de pagamento recorrentes arquivadas com sucesso', 'deleted_recurring_invoices': - 'Successfully deleted recurring :value invoices', + ':value Notas de pagamento recorrentes apagadas com sucesso', 'restored_recurring_invoices': - 'Successfully restored recurring :value invoices', + ':value Notas de pagamento recorrentes restauradas com sucesso', 'search_recurring_invoice': 'Encontrado 1 Fatura recorrente', 'search_recurring_invoices': 'Encontrado :count Faturas recorrentes', 'send_date': 'Data de envio', 'auto_bill_on': 'Faturamento Automático Ativado', 'minimum_under_payment_amount': 'Valor mínimo abaixo do pagamento', 'profit': 'Lucro', - 'line_item': 'Item de linha', + 'line_item': 'Item', 'allow_over_payment': 'Permitir pagamento em excesso', - 'allow_over_payment_help': 'Support paying extra to accept tips', + 'allow_over_payment_help': + 'Suportar pagamentos com quantias superiores à pedida para aceitar gorjetas', 'allow_under_payment': 'Permitir pagamento menor', 'allow_under_payment_help': 'Support paying at minimum the partial/deposit amount', 'test_mode': 'Modo de teste', 'opened': 'Aberto', - 'payment_reconciliation_failure': 'Falha de reconciliação', - 'payment_reconciliation_success': 'Sucesso de Reconciliação', + 'payment_reconciliation_failure': 'Falha na reconciliação', + 'payment_reconciliation_success': 'Sucesso na Reconciliação', 'gateway_success': 'Sucesso do Portal', 'gateway_failure': 'Falha do Portal', 'gateway_error': 'Erro do Portal', 'email_send': 'Email Enviado', 'email_retry_queue': 'Fila de Repetição de Email', 'failure': 'Falha', - 'quota_exceeded': 'Cota excedida', + 'quota_exceeded': 'Quota ultrapassada', 'upstream_failure': 'Falha Upstream', 'system_logs': 'Logs de Sistema', - 'view_portal': 'Visualizar portal', - 'copy_link': 'Link de cópia', - 'token_billing': 'Salvar detalhes do cartão', + 'view_portal': 'View Portal', + 'copy_link': 'Copiar Link', + 'token_billing': 'Guardar detalhes do cartão', 'welcome_to_invoice_ninja': 'Bem-vindo ao Invoice Ninja', 'always': 'Sempre', 'optin': 'Autorizar', 'optout': 'Desautorizar', - 'label': 'Rótulo', - 'client_number': 'Número do Cliente', - 'auto_convert': 'Auto Conversão', + 'label': 'Etiqueta', + 'client_number': 'Nº Cliente', + 'auto_convert': 'Converter Automaticamente', 'company_name': 'Nome da Empresa', 'reminder1_sent': 'Lembrete 1 Enviado', 'reminder2_sent': 'Lembrete 2 Enviado', 'reminder3_sent': 'Lembrete 3 Enviado', 'reminder_last_sent': 'Último Lembrete Enviado', 'pdf_page_info': 'Página: atual de: total', - 'emailed_invoices': 'Faturas enviadas por email com sucesso', - 'emailed_quotes': 'Orçamentos enviados por email com sucesso', + 'emailed_invoices': 'Notas de pag. enviadas com sucesso', + 'emailed_quotes': 'Orçamentos enviados com sucesso', 'emailed_credits': 'Créditos enviados por e-mail com sucesso', 'gateway': 'Gateway', - 'view_in_stripe': 'Ver em Listra', - 'rows_per_page': 'Linhas por Página', + 'view_in_stripe': 'Ver em Formato Lista', + 'rows_per_page': 'Colunas por Página', 'hours': 'Horas', 'statement': 'Declaração', 'taxes': 'Impostos', 'surcharge': 'Sobretaxa', 'apply_payment': 'Aplicar Pagamento', - 'apply_credit': 'Aplicar Crédito', + 'apply_credit': 'Aplicar Nota de Crédito', 'apply': 'Aplicar', 'unapplied': 'Não Aplicado', - 'select_label': 'Selecione o Rótulo', + 'select_label': 'Selecione a Etiqueta', 'custom_labels': 'Etiquetas Personalizadas', - 'record_type': 'Tipo de Registro', - 'record_name': 'Nome do Registro', - 'file_type': 'Tipo de Arquivo', + 'record_type': 'Tipo de Registo', + 'record_name': 'Nome do Registo', + 'file_type': 'Tipo de Ficheiro', 'height': 'Altura', 'width': 'Largura', 'to': 'Para', - 'health_check': 'Exame de saúde', - 'payment_type_id': 'Tipo de Pagamento', - 'last_login_at': 'Último login em', + 'health_check': 'Examinar Saúde do Sistema', + 'payment_type_id': 'Tipo de pagamento', + 'last_login_at': 'Último Início de Sessão em', 'company_key': 'Chave da Empresa', 'storefront': 'Vitrine', - 'storefront_help': 'Habilite aplicativos de terceiros para criar faturas', + 'storefront_help': + 'Permitir aplicações de terceiros para criar notas de pagamento', 'client_created': 'Cliente Criado', - 'online_payment_email': 'Email de pagamento online', + 'online_payment_email': 'E-mail de pagamento online', 'manual_payment_email': 'Email de pagamento manual', - 'completed': 'Completado', + 'completed': 'Completo', 'gross': 'Bruto', 'net_amount': 'Valor líquido', 'net_balance': 'Saldo Líquido', 'client_settings': 'Configurações do cliente', 'selected_invoices': 'Faturas Selecionadas', 'selected_payments': 'Pagamentos Selecionados', - 'selected_quotes': 'Cotações Selecionadas', + 'selected_quotes': 'Orçamentos Selecionados', 'selected_tasks': 'Tarefas Selecionadas', 'selected_expenses': 'Despesas Selecionadas', - 'upcoming_invoices': 'Próximas Faturas', - 'past_due_invoices': 'Faturas Vencidas', + 'upcoming_invoices': 'Próximas Nota de Pagamento', + 'past_due_invoices': 'Notas de Pagamento Vencidas', 'recent_payments': 'Pagamentos Recentes', 'upcoming_quotes': 'Próximos Orçamentos', 'expired_quotes': 'Orçamentos Expirados', 'create_client': 'Criar Cliente', - 'create_invoice': 'Criar Fatura', + 'create_invoice': 'Criar Nota de Pagamento', 'create_quote': 'Criar Orçamento', 'create_payment': 'Criar Pagamento', 'create_vendor': 'Criar fornecedor', - 'update_quote': 'Atualizar Cotação', - 'delete_quote': 'Excluir Orçamento', - 'update_invoice': 'Atualizar Fatura', - 'delete_invoice': 'Excluir Fatura', + 'update_quote': 'Atualizar Orçamento', + 'delete_quote': 'Apagar Orçamento', + 'update_invoice': 'Atualizar Nota de Pagamento', + 'delete_invoice': 'Apagar Nota de Pagamento.', 'update_client': 'Atualizar Cliente', - 'delete_client': 'Excluir Cliente', - 'delete_payment': 'Excluir Pagamento', - 'update_vendor': 'Atualizar Fornecedor', - 'delete_vendor': 'Excluir Fornecedor', + 'delete_client': 'Apagar Cliente', + 'delete_payment': 'Apagar Pagamento', + 'update_vendor': 'Atualizar Fornecedores', + 'delete_vendor': 'Apagar Fornecedor', 'create_expense': 'Criar Despesa', 'update_expense': 'Atualizar Despesa', - 'delete_expense': 'Excluir Despesa', + 'delete_expense': 'Apagar Despesa', 'create_task': 'Criar Tarefa', 'update_task': 'Atualizar Tarefa', - 'delete_task': 'Excluir Tarefa', - 'approve_quote': 'Aprovar Cotação', - 'off': 'Desligado', + 'delete_task': 'Apagar Tarefa', + 'approve_quote': 'Aprovar Orçamento', + 'off': 'Off', 'when_paid': 'Quando Pago', 'expires_on': 'Expira em', - 'free': 'Gratuito', + 'free': 'Grátis', 'plan': 'Plano', - 'show_sidebar': 'Exibir Barra Lateral', + 'show_sidebar': 'Mostrar Barra Lateral', 'hide_sidebar': 'Ocultar Barra Lateral', 'event_type': 'Tipo de Evento', 'target_url': 'Alvo', 'copy': 'Cópia', 'must_be_online': - 'Reinicie o aplicativo assim que estiver conectado à internet', - 'crons_not_enabled': 'Os crons precisam ser habilitados', + 'Reinicie a aplicação assim que estiver conectado à internet', + 'crons_not_enabled': 'Os crons precisam de ser ativados', 'api_webhooks': 'API Webhooks', 'search_webhooks': 'Pesquisar: contar Webhooks', 'search_webhook': 'Pesquisar 1 Webhook', @@ -46282,87 +46812,90 @@ mixin LocalizationsProvider on LocaleCodeAware { 'created_webhook': 'Webhook Criada com Sucesso', 'updated_webhook': 'Webhook Atualizada com Sucesso', 'archived_webhook': 'Webhook Arquivada com Sucesso', - 'deleted_webhook': 'Webhook Excluída com Sucesso', + 'deleted_webhook': 'Webhook Apagada com Sucesso', 'removed_webhook': 'Webhook Removida com Sucesso', 'restored_webhook': 'Webhook Restaurada com Sucesso', - 'archived_webhooks': 'Successfully archived :value webhooks', - 'deleted_webhooks': 'Successfully deleted :value webhooks', - 'removed_webhooks': 'Successfully removed :value webhooks', - 'restored_webhooks': 'Successfully restored :value webhooks', - 'api_tokens': 'Tokens de API', - 'api_docs': 'API Docs', + 'archived_webhooks': ':value Webhooks arquivadas com sucesso', + 'deleted_webhooks': ':value Webhooks apagadas com sucesso', + 'removed_webhooks': ':value Webhooks removidas com sucesso', + 'restored_webhooks': ':value Webhooks restauradas com sucesso', + 'api_tokens': 'API Tokens', + 'api_docs': 'Documentação API', 'search_tokens': 'Pesquisar: contar Tokens', 'search_token': 'Pesquisar 1 Token', 'token': 'Token', 'tokens': 'Tokens', 'new_token': 'Novo Token', 'edit_token': 'Editar Token', - 'created_token': 'Token criado com sucesso', - 'updated_token': 'Token atualizado com sucesso', - 'archived_token': 'Token arquivado com sucesso', - 'deleted_token': 'Token excluído com sucesso', + 'created_token': 'Token criado', + 'updated_token': 'Token atualizado', + 'archived_token': 'Token arquivado', + 'deleted_token': 'Token apagado', 'removed_token': 'Token Removido com Sucesso', 'restored_token': 'Token Restaurado com Sucesso', - 'archived_tokens': 'Successfully archived :value tokens', - 'deleted_tokens': 'Successfully deleted :value tokens', - 'restored_tokens': 'Successfully restored :value tokens', - 'client_registration': 'Registro de cliente', + 'archived_tokens': ':value Tokens arquivadas com sucesso', + 'deleted_tokens': ':value Tokens apagadas com sucesso', + 'restored_tokens': ':value Tokens restauradas com sucesso', + 'client_registration': 'Registo de cliente', 'client_registration_help': - 'Permitir que os clientes se auto-registrem no portal', + 'Permitir que os clientes se auto-registem no portal', 'customize_and_preview': 'Personalizar & Visualizar', - 'email_invoice': 'Enviar Fatura por Email', - 'email_quote': 'Enviar Orçamento por Email', - 'email_credit': 'Crédito de Email', + 'email_invoice': 'Enviar Nota de Pagamento.', + 'email_quote': 'Enviar Orçamento', + 'email_credit': 'Crédito de E-mail', 'email_payment': 'Pagamento por Email', 'client_email_not_set': - 'O cliente não tem um endereço de e-mail definido', + 'O cliente não tem um endereço de E-mail definido', 'ledger': 'Ledger', 'view_pdf': 'Ver PDF', - 'all_records': 'Todos os registros', - 'owned_by_user': 'Propriedade do usuário', + 'all_records': 'Todos os registos', + 'owned_by_user': 'Propriedade do utilizador', 'credit_remaining': 'Crédito Restante', - 'contact_name': 'Nome do Contato', + 'contact_name': 'Nome do Contacto', 'use_default': 'Use o padrão', 'reminder_endless': 'Lembrete contínuo', 'number_of_days': 'Número de dias', 'configure_payment_terms': 'Configurar as condições de pagamento', 'payment_term': 'Condição de Pagamento', 'new_payment_term': 'Novo Condição de Pagamento', - 'edit_payment_term': 'Editar Condição de Pagamento', - 'created_payment_term': 'Condições de pagamento criadas com sucesso', - 'updated_payment_term': 'Condições de pagamento atualizadas com sucesso', - 'archived_payment_term': 'Condições de pagamento arquivadas com sucesso', - 'deleted_payment_term': 'Condição de pagamento excluídas com sucesso', + 'edit_payment_term': 'Editar Termo de Pagamento', + 'created_payment_term': 'Criado termo de pagamento com sucesso', + 'updated_payment_term': 'Atualizado termo de pagamento com sucesso', + 'archived_payment_term': 'Arquivado termo de pagamento com sucesso', + 'deleted_payment_term': 'Condição de pagamento apagadas com sucesso', 'removed_payment_term': 'Condição de pagamento removida com sucesso', 'restored_payment_term': 'Condição de pagamento restaurado com sucesso', - 'archived_payment_terms': 'Successfully archived :value payment terms', - 'deleted_payment_terms': 'Successfully deleted :value payment terms', - 'restored_payment_terms': 'Successfully restored :value payment terms', + 'archived_payment_terms': + ':value Termos de Pagamento arquivados com sucesso', + 'deleted_payment_terms': + ':value Termos de Pagamento apagados com sucesso', + 'restored_payment_terms': + ':value Termos de Pagamento restaurados com sucesso', 'email_sign_in': 'Entrar com email', 'change': 'Mudar', 'change_to_mobile_layout': 'Mudar para o layout móvel?', - 'change_to_desktop_layout': 'Mudar para o layout da área de trabalho?', + 'change_to_desktop_layout': 'Mudar para o layout de computador?', 'send_from_gmail': 'Enviar do Gmail', 'reversed': 'Invertido', 'cancelled': 'Cancelado', - 'credit_amount': 'Quantia de Crédito', - 'quote_amount': 'Valor da cotação', + 'credit_amount': 'Valor do Nota de Crédito', + 'quote_amount': 'Valor do Orçamento', 'hosted': 'Hospedado', 'selfhosted': 'Auto-hospedado', - 'exclusive': 'Exclusivo', - 'inclusive': 'Inclusivo', + 'exclusive': 'Exclusive', + 'inclusive': 'Inclusive', 'hide_menu': 'Ocultar Menu', - 'show_menu': 'Exibir Menu', + 'show_menu': 'Mostrar Menu', 'partially_refunded': 'Parcialmente Reembolsado', 'search_documents': 'Pesquisar Documentos', - 'search_designs': 'Pesquisar Designs', - 'search_invoices': 'Pesquisar Faturas', + 'search_designs': 'Pesquisar Modelos', + 'search_invoices': 'Pesquisar Notas de Pagamento', 'search_clients': 'Pesquisar Clientes', 'search_products': 'Pesquisar Produtos', - 'search_quotes': 'Pesquisar Cotações', + 'search_quotes': 'Pesquisar Orçamentos', 'search_credits': 'Pesquisar Créditos', - 'search_vendors': 'Pesquisar Fornecedores', - 'search_users': 'Pesquisar Usuários', + 'search_vendors': 'Procurar Fornecedores', + 'search_users': 'Pesquisar Utilizadores', 'search_tax_rates': 'Pesquisar taxas de impostos', 'search_tasks': 'Pesquisar Tarefas', 'search_settings': 'Pesquisar Configurações', @@ -46373,12 +46906,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'search_company': 'Pesquisar Empresa', 'search_document': 'Pesquisar 1 Documento', 'search_design': 'Pesquisar 1 Design', - 'search_invoice': 'Pesquisar 1 Fatura', + 'search_invoice': 'Pesquisar 1 Nota de Pagamento', 'search_client': 'Pesquisar 1 Cliente', 'search_product': 'Pesquisar 1 Produto', 'search_quote': 'Pesquisar 1 Cotação', 'search_credit': 'Pesquisar 1 Crédito', - 'search_vendor': 'Pesquisar 1 Fornecedor', + 'search_vendor': 'Procurar 1 Fornecedor', 'search_user': 'Pesquisar 1 Usuário', 'search_tax_rate': 'Pesquisar 1 Taxa de Imposto', 'search_task': 'Pesquisar 1 Tarefa', @@ -46387,24 +46920,23 @@ mixin LocalizationsProvider on LocaleCodeAware { 'search_payment': 'Pesquisar 1 Pagamento', 'search_group': 'Pesquisar 1 Grupo', 'refund_payment': 'Reembolsar Pagamento', - 'cancelled_invoice': 'Fatura Cancelada com Sucesso', - 'cancelled_invoices': 'Faturas Canceladas com Sucesso', - 'reversed_invoice': 'Fatura Revertida com Sucesso', - 'reversed_invoices': 'Faturas Revertidas com Sucesso', - 'reverse': 'Reverter', - 'full_name': 'Nome Completo', - 'city_state_postal': 'Cidade/Estado/CEP', - 'postal_city_state': 'CEP/Cidade/Estado', + 'cancelled_invoice': 'Nota de Pagamento Cancelada com Sucesso', + 'cancelled_invoices': 'Notas de Pagamento Canceladas com Sucesso', + 'reversed_invoice': 'Nota de Pagamento Revertida com Sucesso', + 'reversed_invoices': 'Notas de Pagamento Revertidas com Sucesso', + 'reverse': 'Reverter', + 'full_name': 'Nome completo', + 'city_state_postal': 'Cidade/Distrito/C. Postal', + 'postal_city_state': 'Código-Postal/Cidade/Distrito', 'custom1': 'Primeiro Personalizado', 'custom2': 'Segundo Personalizado', 'custom3': 'Terceiro Personalizado', 'custom4': 'Quarto Personalizado', 'optional': 'Opcional', 'license': 'Licença', - 'purge_data': 'Limpar Dados', + 'purge_data': 'Purgar dados', 'purge_successful': 'Dados da empresa limpos com sucesso', - 'purge_data_message': - 'Aviso: Isto irá apagar seus dados permanentemente, não há como defazer esta ação.', + 'purge_data_message': 'Aviso: apagará todos os seus dados.', 'invoice_balance': 'Saldo da fatura', 'age_group_0': '0 - 30 Dias', 'age_group_30': '30 - 60 Dias', @@ -46412,11 +46944,11 @@ mixin LocalizationsProvider on LocaleCodeAware { 'age_group_90': '90 - 120 Dias', 'age_group_120': '120+ Dias', 'refresh': 'Atualizar', - 'saved_design': 'Design salvo com sucesso', + 'saved_design': 'Design guardado com sucesso', 'client_details': 'Detalhes do cliente', - 'company_address': 'Endereço da companhia', - 'invoice_details': 'Detalhes da Fatura', - 'quote_details': 'Detalhes da cotação', + 'company_address': 'Endereço da Empresa', + 'invoice_details': 'Detalhes da nota de pag.', + 'quote_details': 'Detalhes do orçamento', 'credit_details': 'Detalhes de crédito', 'product_columns': 'Colunas de Produto', 'task_columns': 'Colunas de Tarefas', @@ -46426,125 +46958,125 @@ mixin LocalizationsProvider on LocaleCodeAware { 'none': 'Nenhum', 'owned': 'Possuído', 'payment_success': 'Pagamento realizado com sucesso', - 'payment_failure': 'Falha de Pagamento', - 'invoice_sent': ':count fatura enviada', - 'quote_sent': 'Cotação enviada', + 'payment_failure': 'Falha no Pagamento', + 'invoice_sent': ':count nota de pag. enviada', + 'quote_sent': 'Orçamento enviado', 'credit_sent': 'Crédito Enviado', - 'invoice_viewed': 'Fatura visualizada', - 'quote_viewed': 'Cotação visualizada', - 'credit_viewed': 'Crédito visualizado', - 'quote_approved': 'Cotação aprovada', + 'invoice_viewed': 'Nota de Pagamento Vista', + 'quote_viewed': 'Orçamento Visto', + 'credit_viewed': 'Crédito Visto', + 'quote_approved': 'Orçamento Aprovado', 'receive_all_notifications': 'Receber todas as notificações', 'purchase_license': 'Comprar licença', - 'apply_license': 'Aplicar Licença', - 'cancel_account': 'Excluir Conta', + 'apply_license': 'Aplicar Linceça', + 'cancel_account': 'Cancelar Conta', 'cancel_account_message': - 'Aviso: Isso excluirá permanentemente sua conta, não há como desfazer esta ação.', - 'delete_company': 'Excluir Empresa', + 'Aviso: Irá apagar permanentemente a sua conta.', + 'delete_company': 'Apagar Empresa', 'delete_company_message': - 'Aviso: Isto irá excluir permanentemente sua empresa, não há como desfazer esta ação.', - 'enabled_modules': 'Enabled Modules', - 'converted_quote': 'Cotação convertida com sucesso', + 'Aviso: Esta ação irá apagar permanentemente sua empresa, não há como desfazê-la.', + 'enabled_modules': 'Ativar Módulos', + 'converted_quote': 'Orçamento criado com sucesso', 'credit_design': 'Design de Crédito', 'includes': 'Inclui', 'header': 'Cabeçalho', 'load_design': 'Carregar Design', 'css_framework': 'CSS Framework', - 'custom_designs': 'Designs personalizados', - 'designs': 'Designs', - 'new_design': 'Novo Design', - 'edit_design': 'Editar Design', - 'created_design': 'Design criado com sucesso', - 'updated_design': 'Design atualizado com sucesso', - 'archived_design': 'Design arquivado com sucesso', - 'deleted_design': 'Design excluído com sucesso', - 'removed_design': 'Design removido com sucesso', - 'restored_design': 'Design restaurado com sucesso', - 'archived_designs': 'Successfully archived :value designs', - 'deleted_designs': 'Successfully deleted :value designs', - 'restored_designs': 'Successfully restored :value designs', + 'custom_designs': 'Modelos Personalizados', + 'designs': 'Modelos', + 'new_design': 'Novo Modelo', + 'edit_design': 'Editar Modelo', + 'created_design': 'Modelo criado com sucesso', + 'updated_design': 'Modelo atualizado com sucesso', + 'archived_design': 'Model arquivado com sucesso', + 'deleted_design': 'Modelo apagado com sucesso', + 'removed_design': 'Modelo removido com sucesso', + 'restored_design': 'Modelo restaurado com sucesso', + 'archived_designs': ':value Modelos arquivados com sucesso', + 'deleted_designs': ':value Modelos apagados com sucesso', + 'restored_designs': ':value Modelos restaurados com sucesso', 'proposals': 'Propostas', 'tickets': 'Tickets', 'recurring_quotes': 'Orçamentos Recorrentes', 'recurring_tasks': 'Tarefas Recorrentes', - 'account_management': 'Gerenciamento da Conta', - 'credit_date': 'Data do Crédito', - 'credit': 'Crédito', - 'credits': 'Créditos', - 'new_credit': 'Adicionar Crédito', - 'edit_credit': 'Editar Crédito', - 'created_credit': 'Crédito criado com sucesso', - 'updated_credit': 'Crédito atualizado com sucesso', - 'archived_credit': 'Crédito arquivado com sucesso', - 'deleted_credit': 'Crédito excluído com sucesso', + 'account_management': 'Gerir Conta', + 'credit_date': 'Data do Nota de Crédito', + 'credit': 'Nota de Crédito', + 'credits': 'Nota de Crédito', + 'new_credit': 'Introduzir Nota de Crédito', + 'edit_credit': 'Editar Nota de Crédito', + 'created_credit': 'Nota de Crédito criada com sucesso', + 'updated_credit': 'Nota de Crédito atualizado com sucesso', + 'archived_credit': 'Nota de Crédito arquivada com sucesso', + 'deleted_credit': 'Nota de Crédito apagada com sucesso', 'removed_credit': 'Crédito removido com sucesso', - 'restored_credit': 'Crédito restaurado com sucesso', - 'archived_credits': ':count créditos arquivados com sucesso', - 'deleted_credits': ':count créditos excluídos com sucesso', - 'restored_credits': 'Successfully restored :value credits', + 'restored_credit': 'Nota de Crédito restaurado', + 'archived_credits': ':count notas de crédito arquivadas com sucesso', + 'deleted_credits': ':count notas de crédito apagadas com sucesso', + 'restored_credits': ':value Créditos restaurados com sucesso', 'current_version': 'Versão Atual', 'latest_version': 'Última versão', 'update_now': 'Atualize agora', 'a_new_version_is_available': - 'Uma nova versão do aplicativo da web está disponível', + 'Uma nova versão da aplicação web está disponível', 'update_available': 'Atualização disponível', 'app_updated': 'Atualização completada com sucesso', - 'learn_more': 'Saiba mais', + 'learn_more': 'Saber mais', 'integrations': 'Integrações', - 'tracking_id': 'Id de rastreamento', + 'tracking_id': 'Id de acompanhamento', 'slack_webhook_url': 'URL Webhook do Slack', 'credit_footer': 'Rodapé do Crédito', 'credit_terms': 'Termos do Crédito', 'new_company': 'Nova Empresa', 'added_company': 'Empresa adicionada com sucesso', - 'company1': 'Companhia 1 Personalizada', - 'company2': 'Companhia 2 Personalizada', - 'company3': 'Companhia 3 Personalizada', - 'company4': 'Companhia 4 Personalizada', - 'product1': 'Produto 1 Personalizado', - 'product2': 'Produto 2 Personalizado', - 'product3': 'Produto 3 Personalizado', - 'product4': 'Produto 4 Personalizado', - 'client1': 'Cliente 1 Personalizado', - 'client2': 'Cliente 2 Personalizado', - 'client3': 'Cliente 3 Personalizado', - 'client4': 'Cliente 4 Personalizado', - 'contact1': 'Contato 1 Personalizado', - 'contact2': 'Contato 2 Personalizado', - 'contact3': 'Contato 3 Personalizado', - 'contact4': 'Contato 4 Personalizado', - 'task1': 'Tarefa 1 Personalizada', - 'task2': 'Tarefa 2 Personalizada', - 'task3': 'Tarefa 3 Personalizada', - 'task4': 'Tarefa 4 Personalizada', - 'project1': 'Projeto 1 Personalizado', - 'project2': 'Projeto 2 Personalizado', - 'project3': 'Projeto 3 Personalizado', - 'project4': 'Projeto 4 Personalizado', - 'expense1': 'Despesa 1 Personalizada', - 'expense2': 'Despesa 2 Personalizada', - 'expense3': 'Despesa 3 Personalizada', - 'expense4': 'Despesa 4 Personalizada', - 'vendor1': 'Vendedor 1 Personalizado', - 'vendor2': 'Vendedor 2 Personalizado', - 'vendor3': 'Vendedor 3 Personalizado', - 'vendor4': 'Vendedor 4 Personalizado', - 'invoice1': 'Fatura 1 Personalizada', - 'invoice2': 'Fatura 2 Personalizada', - 'invoice3': 'Fatura 3 Personalizada', - 'invoice4': 'Fatura 4 Personalizada', - 'payment1': 'Pagamento 1 Personalizado', - 'payment2': 'Pagamento 2 Personalizado', - 'payment3': 'Pagamento 3 Personalizado', - 'payment4': 'Pagamento 4 Personalizado', + 'company1': 'Empresa Personalizada 1', + 'company2': 'Empresa Personalizada 2', + 'company3': 'Empresa Personalizada 3', + 'company4': 'Empresa Personalizada 4', + 'product1': 'Produto Personalizado 1', + 'product2': 'Produto Personalizado 2', + 'product3': 'Produto Personalizado 3', + 'product4': 'Produto Personalizado 4', + 'client1': 'Cliente Personalizado 1', + 'client2': 'Cliente Personalizado 2', + 'client3': 'Cliente Personalizado 3', + 'client4': 'Cliente Personalizado 4', + 'contact1': 'Contacto Personalizado 1', + 'contact2': 'Contacto Personalizado 2', + 'contact3': 'Contacto Personalizado 3', + 'contact4': 'Contacto Personalizado 4', + 'task1': 'Tarefa Personalizada 1', + 'task2': 'Tarefa Personalizada 2', + 'task3': 'Tarefa Personalizada 3', + 'task4': 'Tarefa Personalizada 4', + 'project1': 'Projeto Personalizado 1', + 'project2': 'Projeto Personalizado 2', + 'project3': 'Projeto Personalizado 3', + 'project4': 'Projeto Personalizado 4', + 'expense1': 'Despesa Personalizada 1', + 'expense2': 'Despesa Personalizada 2', + 'expense3': 'Despesa Personalizada 3', + 'expense4': 'Despesa Personalizada 4', + 'vendor1': 'Fornecedor Personalizado 1', + 'vendor2': 'Fornecedor Personalizado 2', + 'vendor3': 'Fornecedor Personalizado 3', + 'vendor4': 'Fornecedor Personalizado 4', + 'invoice1': 'Nota de Pagamento Personalizada 1', + 'invoice2': 'Nota de Pagamento Personalizada 2', + 'invoice3': 'Nota de Pagamento Personalizada 3', + 'invoice4': 'Nota de Pagamento Personalizada 4', + 'payment1': 'Pagamento Personalizado 1', + 'payment2': 'Pagamento Personalizado 2', + 'payment3': 'Pagamento Personalizado 3', + 'payment4': 'Pagamento Personalizado 4', 'surcharge1': 'Sobretaxa Personalizada 1', 'surcharge2': 'Sobretaxa Personalizada 2', 'surcharge3': 'Sobretaxa Personalizada 3', 'surcharge4': 'Sobretaxa Personalizada 4', - 'group1': 'Grupo 1 Personalizado', - 'group2': 'Grupo 2 Personalizado', - 'group3': 'Grupo 3 Personalizado', - 'group4': 'Grupo 4 Personalizado', + 'group1': 'Grupo Personalizado 1', + 'group2': 'Grupo Personalizado 2', + 'group3': 'Grupo Personalizado 3', + 'group4': 'Grupo Personalizado 4', 'reset': 'Redefinir', 'number': 'Número', 'export': 'Exportar', @@ -46558,85 +47090,85 @@ mixin LocalizationsProvider on LocaleCodeAware { 'subgroup': 'Subgrupo', 'is_active': 'Ativo', 'group_by': 'Agrupado por', - 'credit_balance': 'Saldo do Crédito', - 'contact_last_login': 'Último Login do Contato', - 'contact_full_name': 'Nome Completo do Contato', - 'contact_phone': 'Telefone de Contato', - 'contact_custom_value1': 'Valor personalizado do contato 1', - 'contact_custom_value2': 'Valor personalizado do contato 2', - 'contact_custom_value3': 'Valor personalizado do contato 3', - 'contact_custom_value4': 'Valor personalizado do contato 4', - 'shipping_address1': 'Rua de envio', - 'shipping_address2': 'Complemento de envio', - 'shipping_city': 'Cidade de envio', - 'shipping_state': 'Estado/Província de envio', - 'shipping_postal_code': 'CEP de envio', - 'shipping_country': 'País de envio', - 'billing_address1': 'Rua de cobrança', - 'billing_address2': 'Complemento de cobrança', - 'billing_city': 'Cidade de cobrança', - 'billing_state': 'Estado/Província de cobrança', - 'billing_postal_code': 'CEP de cobrança', - 'billing_country': 'País de cobrança', - 'client_id': 'Cód Cliente', + 'credit_balance': 'Balanço do Nota de Crédito', + 'contact_last_login': 'Último Login do Contacto', + 'contact_full_name': 'Nome Completo do Contacto', + 'contact_phone': 'Contato telefónico', + 'contact_custom_value1': 'Valor personalizado do contacto 1', + 'contact_custom_value2': 'Valor personalizado do contacto 2', + 'contact_custom_value3': 'Valor personalizado do contacto 3', + 'contact_custom_value4': 'Valor personalizado do contacto 4', + 'shipping_address1': 'Rua de Faturação', + 'shipping_address2': 'Andar / Fração de Envio', + 'shipping_city': 'Cidade de Envio', + 'shipping_state': 'Distrito / Região de Envio', + 'shipping_postal_code': 'Código postal de Envio', + 'shipping_country': 'País de Envio', + 'billing_address1': 'Rua de Faturação', + 'billing_address2': 'Andar / Fração de Faturação', + 'billing_city': 'Cidade de Faturação', + 'billing_state': 'Distrito / Região de Faturação', + 'billing_postal_code': 'Código postal de Faturação', + 'billing_country': 'País de Faturação', + 'client_id': 'Client Id', 'assigned_to': 'Atribuído para', - 'created_by': 'Criado por :name', + 'created_by': 'Criado por :nome', 'assigned_to_id': 'Atribuído ao ID', 'created_by_id': 'Criado pelo ID', 'add_column': 'Adicionar Coluna', 'edit_columns': 'Editar Colunas', 'columns': 'Colunas', - 'aging': 'Envelhecimento', - 'profit_and_loss': 'Lucro e Prejuízo', + 'aging': 'Vencidas', + 'profit_and_loss': 'Lucro e prejuízo', 'reports': 'Relatórios', 'report': 'Relatório', 'add_company': 'Adicionar Empresa', - 'unpaid_invoice': 'Fatura não Paga', - 'paid_invoice': 'Fatura Paga', + 'unpaid_invoice': 'Nota de Pagamento não Paga', + 'paid_invoice': 'Nota de Pagamento Paga', 'unapproved_quote': 'Orçamento não Aprovado', 'help': 'Ajuda', 'refund': 'Reembolsar', 'refund_date': 'Data de Reembolso', 'filtered_by': 'Filtrado por', - 'contact_email': 'Email de Contato', + 'contact_email': 'Email', 'multiselect': 'Seleção múltipla', 'entity_state': 'Estado', - 'verify_password': 'Verificar Senha', + 'verify_password': 'Verificar Palavra-passe', 'applied': 'Aplicado', - 'include_recent_errors': 'Inclui erros recentes dos logs', + 'include_recent_errors': 'Incluir erros recentes dos registos', 'your_message_has_been_received': 'Recebemos sua mensagem e tentaremos responder rapidamente.', 'message': 'Mensagem', 'from': 'De', 'show_product_details': 'Mostrar Detalhes do Produto', 'show_product_details_help': - 'Inclua a descrição e o custo na lista suspensa do produto', + 'Incluir a descrição e o custo na lista suspensa do produto', 'pdf_min_requirements': 'A renderização de PDF precisa da versão :version', - 'adjust_fee_percent': 'Ajustar Porcentagem da Multa', - 'adjust_fee_percent_help': 'Ajustar o percentual de taxa a contabilizar', + 'adjust_fee_percent': 'Ajustar Percentagem da Multa', + 'adjust_fee_percent_help': 'Ajustar a percentagem da taxa a contabilizar', 'configure_settings': 'Configurações Gerais', 'support_forum': 'fórum de suporte', 'about': 'Sobre', 'documentation': 'Documentação', - 'contact_us': 'Contate-nos', + 'contact_us': 'Contacte-nos', 'subtotal': 'Subtotal', - 'line_total': 'Total da Linha', + 'line_total': 'Total', 'item': 'Item', 'credit_email': 'E-mail de Crédito', 'iframe_url': 'Website', 'domain_url': 'URL do Domínio', - 'password_is_too_short': 'A senha é muito curta', + 'password_is_too_short': 'A palavra-passe é muito curta', 'password_is_too_easy': - 'A senha deve conter um caractere maiúsculo e um número', + 'A palavra-passe deve conter um caractere maiúsculo e um número', 'client_portal_tasks': 'Tarefas do Portal do Cliente', 'client_portal_dashboard': 'Painel do Portal do Cliente', - 'please_enter_a_value': 'Por favor digite um valor', - 'deleted_logo': 'Logo removido com sucesso', + 'please_enter_a_value': 'Por favor introduza um valor', + 'deleted_logo': 'Logótipo removido com sucesso', 'yes': 'Sim', 'no': 'Não', 'generate_number': 'Gerar Número', - 'when_saved': 'Quando Salvo', + 'when_saved': 'Quando Guardado', 'when_sent': 'Quando Enviado', 'select_company': 'Selecionar Empresa', 'float': 'Flutuante', @@ -46654,16 +47186,16 @@ mixin LocalizationsProvider on LocaleCodeAware { 'second_custom': 'Segundo Personalizado', 'third_custom': 'Terceiro Personalizado', 'show_cost': 'Mostrar Custo', - 'show_product_cost': 'Show Product Cost', + 'show_product_cost': 'Mostrar Custo do Produto', 'show_cost_help': - 'Exibir um campo de custo do produto para rastrear a marcação/lucro', + 'Exibir um campo de custo do produto para acompanhar a marcação/lucro', 'show_product_quantity': 'Mostrar Quantidade do Produto', 'show_product_quantity_help': 'Mostrar um campo de quantidade de produto, caso contrário o padrão de um', 'show_invoice_quantity': 'Mostrar quantidade da fatura', 'show_invoice_quantity_help': 'Exibir um campo de quantidade de item de linha, caso contrário, o padrão é um', - 'show_product_discount': 'Show Product Discount', + 'show_product_discount': 'Mostrar Desconto do Produto', 'show_product_discount_help': 'Display a line item discount field', 'default_quantity': 'Quantidade Padrão', 'default_quantity_help': @@ -46671,20 +47203,20 @@ mixin LocalizationsProvider on LocaleCodeAware { 'one_tax_rate': 'Uma taxa de imposto', 'two_tax_rates': 'Duas taxas de impostos', 'three_tax_rates': 'Três taxas de impostos', - 'default_tax_rate': 'Taxa de imposto padrão', - 'user': 'Usuário', + 'default_tax_rate': 'Imposto Padrão', + 'user': 'Utilizador', 'invoice_tax': 'Imposto da Fatura', 'line_item_tax': 'Imposto da Linha do Item', 'inclusive_taxes': 'Impostos Inclusos', 'invoice_tax_rates': 'Tarifa do Imposto da Fatura', 'item_tax_rates': 'Tarifa do Imposto do Item', - 'no_client_selected': 'Selecione um cliente', + 'no_client_selected': 'Por favor selecione um cliente', 'configure_rates': 'Configurar tarifas', - 'configure_gateways': 'Configurar métodos de pagamento', - 'tax_settings': 'Configurações de Impostos', - 'tax_settings_rates': 'Tarifas de Impostos', + 'configure_gateways': 'Configurar Terminais', + 'tax_settings': 'Definições de Impostos', + 'tax_settings_rates': 'Impostos', 'accent_color': 'Cor de destaque', - 'switch': 'Mudar', + 'switch': 'Alterar', 'comma_sparated_list': 'Lista separada por vírgulas', 'options': 'Opções', 'single_line_text': 'Texto de linha única', @@ -46692,67 +47224,68 @@ mixin LocalizationsProvider on LocaleCodeAware { 'dropdown': 'Dropdown', 'field_type': 'Tipo de Campo', 'recover_password_email_sent': - 'Foi enviado um e-mail de recuperação de senha', - 'submit': 'Enviar', - 'recover_password': 'Recupere sua senha', + 'Foi enviado um e-mail de recuperação da palavra-passe', + 'submit': 'Submeter', + 'recover_password': 'Recuperar palavra-passe', 'late_fees': 'Taxas atrasadas', - 'credit_number': 'Número do Crédito', - 'payment_number': 'Pagamento Número', + 'credit_number': 'Nota de rédito número', + 'payment_number': 'Número do Pagamento', 'late_fee_amount': 'Quantia da Multa', - 'late_fee_percent': 'Percentual de Multa', + 'late_fee_percent': 'Percentagem da Multa', 'schedule': 'Agendamento', - 'before_due_date': 'Até a data de vencimento', + 'before_due_date': 'Até à data de vencimento', 'after_due_date': 'Depois da data de vencimento', - 'after_invoice_date': 'Até a data da fatura', + 'after_invoice_date': 'Depois da data da fatura', 'days': 'Dias', - 'invoice_email': 'Email de Fatura', - 'payment_email': 'Email de Pagamento', + 'invoice_email': 'E-mail para Nota de Pagamento', + 'payment_email': 'E-mail para Pagamentos', 'partial_payment': 'Pagamento parcial', - 'payment_partial': 'Partial Payment', - 'partial_payment_email': 'Email de pagamento parcial', - 'quote_email': 'Email de Orçamento', + 'payment_partial': 'Pagamento Parcial', + 'partial_payment_email': 'E-mail de pagamento parcial', + 'quote_email': 'E-mail para Orçamentos', 'endless_reminder': 'Lembrete contínuo', - 'filtered_by_user': 'Filtrado por Usuário', + 'filtered_by_user': 'Filtrado pelo Utilizador', 'administrator': 'Administrador', 'administrator_help': - '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', - 'edit_user': 'Editar Usuário', - 'created_user': 'Usuário criado com sucesso', - 'updated_user': 'Usuário atualizado com sucesso', - 'archived_user': 'Usuário arquivado com sucesso', - 'deleted_user': 'Usuário excluído com sucesso', - 'removed_user': 'Usuário removido com sucesso', - 'restored_user': 'Usuário restaurado com sucesso', - 'archived_users': 'Successfully archived :value users', - 'deleted_users': 'Successfully deleted :value users', - 'removed_users': 'Successfully removed :value users', - 'restored_users': 'Successfully restored :value users', - 'general_settings': 'Configurações Gerais', - 'invoice_options': 'Opções da Fatura', - 'hide_paid_to_date': 'Ocultar Pago até Hoje', + 'Permite ao utilizador gerir utilizadores, alterar definições e modificar registos.', + 'user_management': 'Gerir utilizadores', + 'users': 'Utilizadores', + 'new_user': 'Novo Utilizador', + 'edit_user': 'Editar Utilizador', + 'created_user': 'Utilizador criado com sucesso', + 'updated_user': 'Utilizador atualizado com sucesso', + 'archived_user': 'Utilizador arquivado', + 'deleted_user': 'Utilizador apagado', + 'removed_user': 'Utilizador removido com sucesso', + 'restored_user': 'Utilizador restaurado', + 'archived_users': ':value Créditos arquivados com sucesso', + 'deleted_users': ':value Utilizadores arquivados com sucesso', + 'removed_users': ':value Utilizadores removidos com sucesso', + 'restored_users': ':value Utilizadores restaurados com sucesso', + 'general_settings': 'Definições Gerais', + 'invoice_options': 'Opções da Nota de Pagamento', + 'hide_paid_to_date': 'Ocultar data de pagamento', 'hide_paid_to_date_help': - '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', - 'all_pages_footer': 'Exibir Rodapé em', - 'first_page': 'Primeira página', - 'all_pages': 'Todas as páginas', - 'last_page': 'Última página', + '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.', + 'all_pages_header': 'Mostrar cabeçalho ativo', + 'all_pages_footer': 'Mostrar rodapé ativo', + 'first_page': 'primeira página', + 'all_pages': 'todas as páginas', + 'last_page': 'última página', 'primary_font': 'Fonte Primária', 'secondary_font': 'Fonte Secundária', - 'primary_color': 'Cor Primária', - 'secondary_color': 'Cor Secundaria', + 'primary_color': 'Cor Principal', + 'secondary_color': 'Cor Secundária', 'page_size': 'Tamanho da Página', - 'font_size': 'Tamanho da Fonte', + 'font_size': 'Tamanho do Texto', 'quote_design': 'Design do Orçamento', - 'invoice_fields': 'Campos da Fatura', - 'product_fields': 'Campos de Produtos', - 'invoice_terms': 'Condições da Fatura', - 'invoice_footer': 'Rodapé da Fatura', + 'invoice_fields': 'Campos da Nota de Pagamento', + 'product_fields': 'Campos do produto', + 'invoice_terms': 'Condições da Nota de Pagamento', + 'invoice_footer': 'Rodapé da Nota de Pagamento', 'quote_terms': 'Condições do Orçamento', 'quote_footer': 'Rodapé do Orçamento', 'auto_email_invoice': 'Email Automático', @@ -46768,24 +47301,24 @@ mixin LocalizationsProvider on LocaleCodeAware { 'auto_convert_quote_help': 'Converter automaticamente um orçamento quando for aprovado pelo cliente.', 'workflow_settings': 'Configurações de Fluxo de Trabalho', - 'freq_daily': 'Diariamente', - 'freq_weekly': 'Semanalmente', + 'freq_daily': 'Diário', + 'freq_weekly': 'Semanal', 'freq_two_weeks': '2 semanas', 'freq_four_weeks': '4 semanas', - 'freq_monthly': 'Mensalmente', + 'freq_monthly': 'Mensal', 'freq_two_months': 'Dois meses', - 'freq_three_months': '3 meses', - 'freq_four_months': '4 meses', - 'freq_six_months': '6 meses', - 'freq_annually': 'Anualmente', - 'freq_two_years': '2 anos', + 'freq_three_months': 'Trimestral', + 'freq_four_months': 'Quatro Meses', + 'freq_six_months': 'Semestral', + 'freq_annually': 'Anual', + 'freq_two_years': 'Dois Anos', 'freq_three_years': 'Três Anos', 'never': 'Nunca', 'company': 'Empresa', - 'generated_numbers': 'Números Gerados', - 'charge_taxes': 'Cobrar impostos', - 'next_reset': 'Próximo Reset', - 'reset_counter': 'Reiniciar Contador', + 'generated_numbers': 'Números gerados', + 'charge_taxes': 'Impostos', + 'next_reset': 'Próxima redefinição', + 'reset_counter': 'Redefinir contador', 'recurring_prefix': 'Prefixo da Recorrência', 'number_padding': 'Preenchimento de número', 'general': 'Geral', @@ -46793,12 +47326,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'company_field': 'Campo da Empresa', 'company_value': 'Valor da Empresa', 'credit_field': 'Campo de Crédito', - 'invoice_field': 'Campo da Fatura', + 'invoice_field': 'Campo da Nota de Pagamento', 'invoice_surcharge': 'Sobretaxa de Fatura', 'client_field': 'Campo do Cliente', 'product_field': 'Campo do Produto', 'payment_field': 'Campo de Pagamento', - 'contact_field': 'Campo do Contato', + 'contact_field': 'Campo do Contacto', 'vendor_field': 'Campo do Fornecedor', 'expense_field': 'Campo da Despesa', 'project_field': 'Campo do Projeto', @@ -46810,102 +47343,101 @@ mixin LocalizationsProvider on LocaleCodeAware { 'messages': 'Mensagens', 'custom_css': 'CSS Personalizado', 'custom_javascript': 'JavaScript Personalizado', - 'signature_on_pdf': 'Exibir em PDF', + 'signature_on_pdf': 'Mostrar no PDF', 'signature_on_pdf_help': - 'Exibir a assinatura do cliente no PDF da fatura/orçamento.', - 'show_accept_invoice_terms': 'Checkbox para Condições de Fatura', + 'Mostrar a assinatura do cliente no PDF da nota de pagamento/orçamento.', + 'show_accept_invoice_terms': 'Checkbox para Termos da Nota de Pagamento', 'show_accept_invoice_terms_help': - 'Exigir que o cliente confirme que aceita as condições da fatura.', - 'show_accept_quote_terms': 'Checkbox de Condições do Orçamento', + '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': - 'Exigir que cliente confirme que aceita as Condições do Orçamento', - 'require_invoice_signature': 'Assinatura de Fatura', + 'Requer que o cliente confirme que aceita os termos do orçamento.', + 'require_invoice_signature': 'Assinatura da Nota de Pagamento', 'require_invoice_signature_help': - 'Exigir que o cliente providencie sua assinatura', + 'Requer que o cliente introduza a sua assinatura.', 'require_quote_signature': 'Assinatura de Orçamento', - 'enable_portal_password': 'Proteger Faturas com Senha', + 'enable_portal_password': 'Proteger notas de pag. com palavra-passe', '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 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.', 'authorization': 'Autorização', 'subdomain': 'Subdomínio', 'domain': 'Domínio', 'portal_mode': 'Modo Portal', - 'email_signature': 'Atenciosamente,', + 'email_signature': 'Cumprimentos,', '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 os pagamentos, acrescentando marcação schema.org a seus e-mails.', 'plain': 'Plano', 'light': 'Claro', 'dark': 'Escuro', - 'email_design': 'Design do Email', + 'email_design': 'Template de E-mail', 'attach_pdf': 'Anexar PDF', 'attach_documents': 'Anexar Documentos', 'attach_ubl': 'Anexar UBL', - 'email_style': 'Estilo do E-mail', - 'enable_email_markup': 'Habilitar Marcação', - 'reply_to_email': 'Email para Resposta', - 'reply_to_name': 'Reply-To Name', - 'bcc_email': 'Email CCO', + 'email_style': 'Estilo de e-mails', + 'enable_email_markup': 'Ativar Marcação', + 'reply_to_email': 'Email de resposta', + 'reply_to_name': 'Responder para nome', + 'bcc_email': 'Email BCC', 'processed': 'Processado', 'credit_card': 'Cartão de Crédito', 'bank_transfer': 'Transferência Bancária', 'priority': 'Prioridade', 'fee_amount': 'Valor da Multa', - 'fee_percent': 'Porcentagem da Multa', + 'fee_percent': 'Percentagem da Multa', 'fee_cap': 'Taxa máxima', 'limits_and_fees': 'Limites/Multas', - 'enable_min': 'Habilitar mín', - 'enable_max': 'Habilitar máx', - 'min_limit': 'Mín: :min', - 'max_limit': 'Máx: :max', + 'enable_min': 'Ativar min', + 'enable_max': 'Ativar max', + 'min_limit': 'Min: :min', + 'max_limit': 'Max: :max', 'min': 'Min', - 'max': 'Máx', - 'accepted_card_logos': 'Logos de Cartões Aceitos', + 'max': 'Max', + 'accepted_card_logos': 'Logótipos de Cartões Aceites', 'credentials': 'Credenciais', - 'update_address': 'Atualizar Endereço', - 'update_address_help': - 'Atualizar o endereço do cliente com os dados fornecidos', - 'rate': 'Taxa', - 'tax_rate': 'Taxa do Imposto', - 'new_tax_rate': 'Nova Taxa de Imposto', - 'edit_tax_rate': 'Editar Taxa do Imposto', - 'created_tax_rate': 'Taxa de imposto criada com sucesso', - 'updated_tax_rate': 'Taxa de imposto atualizada com sucesso', - 'archived_tax_rate': 'Taxa de imposto arquivada com sucesso', + 'update_address': 'Atualizar Morada', + 'update_address_help': 'Atualizar morada do cliente', + 'rate': 'Valor', + 'tax_rate': 'Imposto', + 'new_tax_rate': 'Novo Imposto', + 'edit_tax_rate': 'Editar Imposto', + 'created_tax_rate': 'Imposto Adicionado', + 'updated_tax_rate': 'Imposto Atualizado', + 'archived_tax_rate': 'Imposto Arquivado', 'deleted_tax_rate': 'Taxa de imposto excluída com sucesso', 'restored_tax_rate': 'Taxa de imposto restaurada com sucesso', - 'archived_tax_rates': 'Successfully archived :value tax rates', - 'deleted_tax_rates': 'Successfully deleted :value tax rates', - 'restored_tax_rates': 'Successfully restored :value tax rates', - 'fill_products': 'Auto-preencher produtos', + 'archived_tax_rates': ':value Taxas de Impostos arquivados com sucesso', + 'deleted_tax_rates': ':value Taxas de Impostos apagados com sucesso', + 'restored_tax_rates': ':value Taxas de Impostos restaurados com sucesso', + 'fill_products': 'Preencher automaticamente produtos', 'fill_products_help': - 'Ao selecionar um produto sua descrição e preço serão automaticamente preenchidos', + 'Ao selecionar o produto descrição e preço serão preenchidos automaticamente', 'update_products': 'Atualização automática dos produtos', 'update_products_help': - 'Atualizar uma fatura irá automaticamenteatualizar a biblioteca de produtos', + 'Ao atualizar a nota de pagamento o produto também será atualizado', 'convert_products': 'Converter Produtos', 'convert_products_help': 'Converter automaticamente preços de produtos para a moeda do cliente', 'fees': 'Taxas', 'limits': 'Limites', - 'provider': 'Provedor', - 'company_gateway': 'Gateway de Pagamento', - 'company_gateways': 'Gateways de Pagamento', - 'new_company_gateway': 'Novo Gateway', - 'edit_company_gateway': 'Editar Gateway', - 'created_company_gateway': 'Gateway criado com sucesso', - 'updated_company_gateway': 'Gateway atualizado com sucesso', - 'archived_company_gateway': 'Gateway arquivado com sucesso', - 'deleted_company_gateway': 'Gateway excluído com sucesso', - 'restored_company_gateway': 'Gateway restaurado com sucesso', - 'archived_company_gateways': 'Successfully archived :value gateways', - 'deleted_company_gateways': 'Successfully deleted :value gateways', - 'restored_company_gateways': 'Successfully restored :value gateways', - 'continue_editing': 'Continuar Editando', + 'provider': 'Fornecedor', + 'company_gateway': 'Terminal de Pagamento', + 'company_gateways': 'Terminais de Pagamento', + 'new_company_gateway': 'Novo Terminal', + 'edit_company_gateway': 'Editar Terminal', + 'created_company_gateway': 'Terminal Criado com Sucesso', + 'updated_company_gateway': 'Terminal Atualizado com Sucesso', + 'archived_company_gateway': 'Gateway Arquivado com Sucesso', + 'deleted_company_gateway': 'Terminal Apagado com Sucesso', + 'restored_company_gateway': 'Terminal Restaurado com Sucesso', + 'archived_company_gateways': ':value Terminais arquivados com sucesso', + 'deleted_company_gateways': ':value Terminais apagados com sucesso', + 'restored_company_gateways': ':value Terminais restaurados com sucesso', + 'continue_editing': 'Continuar a Editar', 'discard_changes': 'Descartar Mudanças', 'default_value': 'Valor padrão', - 'disabled': 'Desabilitado', + 'disabled': 'Desativado', 'currency_format': 'Formato de Moeda', - 'first_day_of_the_week': 'Primeiro dia da Semana', + 'first_day_of_the_week': 'Primeiro Dia da Semana', 'first_month_of_the_year': 'Primeiro Mês do Ano', 'sunday': 'Domingo', 'monday': 'Segunda-Feira', @@ -46928,9 +47460,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'december': 'Dezembro', 'symbol': 'Símbolo', 'ocde': 'Código', - 'date_format': 'Formato de Data', + 'date_format': 'Formato da Data', 'datetime_format': 'Formato de Data/Hora', - 'military_time': 'Formato de Tempo 24h', + 'military_time': '24h', 'military_time_help': 'Formato de Hora 24h', 'send_reminders': 'Enviar Lembretes', 'timezone': 'Fuso Horário', @@ -46946,65 +47478,65 @@ mixin LocalizationsProvider on LocaleCodeAware { 'edit_group': 'Editar Grupo', 'created_group': 'Grupo criado com sucesso', 'updated_group': 'Grupo atualizado com sucesso', - 'archived_groups': 'Successfully archived :value groups', - 'deleted_groups': 'Successfully deleted :value groups', - 'restored_groups': 'Successfully restored :value groups', + 'archived_groups': ':value Grupos arquivados com sucesso', + 'deleted_groups': ':value Grupos apagados com sucesso', + 'restored_groups': ':value Grupos restaurados com sucesso', 'archived_group': 'Grupo arquivado com sucesso', 'deleted_group': 'Grupo removido com sucesso', 'restored_group': 'Grupo restaurado com sucesso', - 'upload_logo': 'Carregar Logo', - 'uploaded_logo': 'Logo carregado com sucesso', + 'upload_logo': 'Carregar Logótipo', + 'uploaded_logo': 'Logótipo carregado com sucesso', 'logo': 'Logo', - 'saved_settings': 'Configurações salvas com sucesso', - 'product_settings': 'Configurações de Produtos', + 'saved_settings': 'Configurações guardadas com sucesso', + 'product_settings': 'Definições de Produtos', 'device_settings': 'Configurações do Dispositivo', 'defaults': 'Padrões', - 'basic_settings': 'Configurações Básicas', - 'advanced_settings': 'Configurações Avançadas', + 'basic_settings': 'Definições Básicas', + 'advanced_settings': 'Definições Avançadas', 'company_details': 'Detalhes da Empresa', - 'user_details': 'Detalhes do Usuário', + 'user_details': 'Detalhes do Utilizador', 'localization': 'Localização', 'online_payments': 'Pagamentos Online', - 'tax_rates': 'Taxas de Impostos', + 'tax_rates': 'Impostos', 'notifications': 'Notificações', - 'import_export': 'Importar | Exportar', + 'import_export': 'Importar/Exportar', 'custom_fields': 'Campos Personalizados', - 'invoice_design': 'Design da Fatura', - 'buy_now_buttons': 'Botões Compre Já', - 'email_settings': 'Configurações de Email', - 'templates_and_reminders': 'Modelos e Lembretes', - 'credit_cards_and_banks': 'Cartões de Crédito & Bancos', + 'invoice_design': 'Design das Notas de Pagamento', + 'buy_now_buttons': 'Botões Comprar Agora', + 'email_settings': 'Definições de E-mail', + 'templates_and_reminders': 'Modelos & Lembretes', + 'credit_cards_and_banks': 'Contas Bancárias', 'data_visualizations': 'Visualização de Dados', 'price': 'Preço', - 'email_sign_up': 'Inscrição de Email', - 'google_sign_up': 'Inscrição no Google', - 'thank_you_for_your_purchase': 'Obrigado por sua compra!', + 'email_sign_up': 'Registo com Email', + 'google_sign_up': 'Registo via Google', + 'thank_you_for_your_purchase': 'Obrigado pela sua compra!', 'redeem': 'Resgatar', 'back': 'Voltar', 'past_purchases': 'Compras Passadas', 'annual_subscription': 'Assinatura Anual', - 'pro_plan': 'Plano Pro', + 'pro_plan': 'Plano Profissional', 'enterprise_plan': 'Plano Empresarial', - 'count_users': ':count usuários', - 'upgrade': 'Upgrade', - 'please_enter_a_first_name': 'Por favor digite o primeiro nome', - 'please_enter_a_last_name': 'Por favor digite o sobrenome', + 'count_users': ':count utilizadores', + 'upgrade': 'Atualizar', + 'please_enter_a_first_name': 'Por favor introduza o primeiro nome', + 'please_enter_a_last_name': 'Por favor introduza o apelido', 'please_agree_to_terms_and_privacy': 'Por favor, aceite os termos de serviço e política de privacidade para criar uma conta.', 'i_agree_to_the': 'Aceito os', 'terms_of_service': 'Condições do Serviço', 'privacy_policy': 'Política de Privacidade', - 'sign_up': 'Cadastro', - 'account_login': 'Login na Conta', + 'sign_up': 'Registar', + 'account_login': 'Iniciar sessão', 'view_website': 'Ver o Website', 'create_account': 'Criar Conta', 'email_login': 'E-mail de Login', - 'create_new': 'Criar Novo', - 'no_record_selected': 'Nenhum registro selecionado', - 'error_unsaved_changes': 'Por favor, salve ou cancele suas alterações', - 'download': 'Download', - 'requires_an_enterprise_plan': 'Necessita um plano empresarial', - 'take_picture': 'Tire uma Foto', + 'create_new': 'Criar Nova', + 'no_record_selected': 'Nenhum registo selecionado', + 'error_unsaved_changes': 'Por favor, guarde ou cancele suas alterações', + 'download': 'Transferir', + 'requires_an_enterprise_plan': 'Necessita de um plano empresarial', + 'take_picture': 'Tirar Fotografia', 'upload_file': 'Enviar Arquivo', 'document': 'Documento', 'documents': 'Documentos', @@ -47015,32 +47547,32 @@ mixin LocalizationsProvider on LocaleCodeAware { 'archived_document': 'Documento arquivado com sucesso', 'deleted_document': 'Documento apagado com sucesso', 'restored_document': 'Documento recuperado com sucesso', - 'archived_documents': 'Successfully archived :value documents', - 'deleted_documents': 'Successfully deleted :value documents', - 'restored_documents': 'Successfully restored :value documents', + 'archived_documents': ':value Documentos arquivados com sucesso', + 'deleted_documents': ':value Documentos apagados com sucesso', + 'restored_documents': ':value Documentos restaurados com sucesso', 'no_history': 'Sem Histórico', 'expense_date': 'Data da Despesa', 'pending': 'Pendente', - 'expense_status_1': 'Autenticado', + 'expense_status_1': 'Em aberto', 'expense_status_2': 'Pendente', 'expense_status_3': 'Faturado', 'converted': 'Convertido', - 'add_documents_to_invoice': 'Adicionar documentos à fatura', + 'add_documents_to_invoice': 'Adicionar documento à nota de pag.', 'exchange_rate': 'Taxa de Câmbio', 'convert_currency': 'Converter moeda', 'mark_paid': 'Marcar como Pago', 'category': 'Categoria', - 'address': 'Endereço', + 'address': 'Morada', 'new_vendor': 'Novo Fornecedor', 'created_vendor': 'Fornecedor criado com sucesso', 'updated_vendor': 'Fornecedor atualizado com sucesso', 'archived_vendor': 'Fornecedor arquivado com sucesso', - 'deleted_vendor': 'Fornecedor excluído com sucesso', - 'restored_vendor': 'Fornecedor restaurado com sucesso', + 'deleted_vendor': 'Fornecedor removido com sucesso', + 'restored_vendor': 'Fornecedor restarurado com sucesso', 'archived_vendors': ':count fornecedores arquivados com sucesso', - 'deleted_vendors': ':count fornecedores excluídos com sucesso', - 'restored_vendors': 'Successfully restored :value vendors', - 'new_expense': 'Informar Despesa', + 'deleted_vendors': ':count fornecedores removidos com sucesso', + 'restored_vendors': ':value Fornecedores Restaurados com Sucesso', + 'new_expense': 'Introduzir Despesa', 'created_expense': 'Despesa criada com sucesso', 'updated_expense': 'Despesa atualizada com sucesso', 'archived_expense': 'Despesa arquivada com sucesso', @@ -47048,61 +47580,61 @@ mixin LocalizationsProvider on LocaleCodeAware { 'restored_expense': 'Despesa restaurada com sucesso', 'archived_expenses': 'Despesas arquivadas com sucesso', 'deleted_expenses': 'Despesas excluídas com sucesso', - 'restored_expenses': 'Successfully restored :value expenses', + 'restored_expenses': ':value Despesas restauradas com sucesso', 'copy_shipping': 'Copiar Envio', 'copy_billing': 'Copiar Cobrança', - 'design': 'Design', - 'failed_to_find_record': 'Falha ao procurar registro', + 'design': 'Modelo', + 'failed_to_find_record': 'Falha ao procurar registo', 'invoiced': 'Faturado', - 'logged': 'Registrado', - 'running': 'Executando', + 'logged': 'Em aberto', + 'running': 'Em execução', 'resume': 'Retomar', - 'task_errors': 'Por favor corrija quaisquer tempos sobrepostos', + 'task_errors': 'Corrija os tempos sobrepostos', 'start': 'Iniciar', 'stop': 'Parar', 'started_task': 'Tarefa iniciada com sucesso', - 'stopped_task': 'Tarefa interrompida com sucesso', + 'stopped_task': 'Tarefa interrompida', 'resumed_task': 'Tarefa continuada com sucesso', 'now': 'Agora', 'auto_start_tasks': 'Iniciar Tarefas Automaticamente', - 'timer': 'Timer', + 'timer': 'Temporizador', 'manual': 'Manual', 'budgeted': 'Orçado', - 'start_time': 'Horário de Início', - 'end_time': 'Horário Final', + 'start_time': 'Início', + 'end_time': 'Final', 'date': 'Data', - 'times': 'Vezes', + 'times': 'Tempo', 'duration': 'Duração', 'new_task': 'Nova Tarefa', - 'created_task': 'Tarefa criada com sucesso', - 'updated_task': 'Tarefa atualizada com sucesso', - 'archived_task': 'Tarefa arquivada com sucesso', - 'deleted_task': 'Tarefa excluída com sucesso', - 'restored_task': 'Tarefa restaurada com sucesso', - 'archived_tasks': ':count tarefas arquivadas com sucesso', - 'deleted_tasks': ':count tarefas excluídas com sucesso', - 'restored_tasks': 'Successfully restored :value tasks', - 'please_enter_a_name': 'Por favor digite um nome', + 'created_task': 'Tarefa criada', + 'updated_task': 'Tarefa atualizada', + 'archived_task': 'Tarefa arquivada', + 'deleted_task': 'Tarefa apagada', + 'restored_task': 'Tarefa restaurada', + 'archived_tasks': ':count Tarefas arquivadas', + 'deleted_tasks': ':count Tarefas apagadas', + 'restored_tasks': ':value Tarefas restauradas com sucesso', + 'please_enter_a_name': 'Por favor introduza um nome', 'budgeted_hours': 'Horas Orçadas', 'created_project': 'Projeto criado com sucesso', 'updated_project': 'Projeto atualizado com sucesso', 'archived_project': 'Projeto arquivado com sucesso', - 'deleted_project': 'Projeto excluído com sucesso', + 'deleted_project': 'Projeto apagado com sucesso', 'restored_project': 'Projeto restaurado com sucesso', 'archived_projects': ':count projetos arquivados com sucesso', - 'deleted_projects': ':count projetos excluídos com sucesso', - 'restored_projects': 'Successfully restored :value projects', + 'deleted_projects': ':count projectos apagadas com sucesso', + 'restored_projects': ':value Projetos restaurados com sucesso', 'new_project': 'Novo Projeto', - 'thank_you_for_using_our_app': 'Obrigado por usar nosso app!', - 'if_you_like_it': 'Se você desejar por favor', + 'thank_you_for_using_our_app': 'Obrigado por utilizar a nosso aplicação!', + 'if_you_like_it': 'Se gostou por favor', 'click_here': 'clique aqui', 'click_here_capital': 'Clique aqui', - 'to_rate_it': 'para dar uma nota.', - 'average': 'Médio', + 'to_rate_it': 'dê uma avaliação.', + 'average': 'Média', 'unapproved': 'Não Aprovado', 'authenticate_to_change_setting': 'Por favor autentique-se para modificar esta configuração', - 'locked': 'Travado', + 'locked': 'Bloqueado', 'authenticate': 'Autenticar', 'please_authenticate': 'Por favor autentique-se', 'biometric_authentication': 'Autenticação Biométrica', @@ -47110,10 +47642,10 @@ mixin LocalizationsProvider on LocaleCodeAware { 'compare': 'Comparar', 'hosted_login': 'Login Hospedado', 'selfhost_login': 'Login Auto-Hospedado', - 'google_sign_in': 'Entrar com o Google', + 'google_sign_in': 'Iniciar sessão através da Google', 'today': 'Hoje', - 'custom_range': 'Período Personalizado', - 'date_range': 'Período', + 'custom_range': 'Intervalo Personalizado', + 'date_range': 'Interevalo de Datas', 'current': 'Atual', 'previous': 'Anterior', 'current_period': 'Período Atual', @@ -47121,6289 +47653,346 @@ mixin LocalizationsProvider on LocaleCodeAware { 'previous_period': 'Período Anterior', 'previous_year': 'Ano Anterior', 'compare_to': 'Comparar com', - 'last7_days': 'Últimos 7 Dias', + 'last7_days': 'Últimos 7 dias', 'last_week': 'Última Semana', - 'last30_days': 'Últimos 30 Dias', + 'last30_days': 'Últimos 30 dias', 'this_month': 'Este Mês', 'last_month': 'Último Mês', - 'this_year': 'Este Ano', + 'this_year': 'Este ano', 'last_year': 'Último Ano', 'custom': 'Personalizado', - 'clone_to_invoice': 'Clonar para Fatura', - 'clone_to_quote': 'Clonar ao Orçamento', - 'clone_to_credit': 'Clone para crédito', - 'view_invoice': 'Visualizar fatura', - 'convert': 'Converter', - 'more': 'Mais', - 'edit_client': 'Editar Cliente', - 'edit_product': 'Editar Produto', - 'edit_invoice': 'Editar Fatura', - 'edit_quote': 'Editar Orçamento', - 'edit_payment': 'Editar Pagamento', - 'edit_task': 'Editar Tarefa', - 'edit_expense': 'Editar Despesa', - 'edit_vendor': 'Editar Fornecedor', - 'edit_project': 'Editar Projeto', - 'edit_recurring_quote': 'Editar Orçamento Recorrente', - 'billing_address': 'Endereço de Cobrança', - 'shipping_address': 'Endereço de envio', - 'total_revenue': 'Faturamento Total', - 'average_invoice': 'Média por Fatura', - 'outstanding': 'Em Aberto', - 'invoices_sent': ':count faturas enviadas', - 'active_clients': 'clientes ativos', - 'close': 'Fechar', - 'email': 'Email', - 'password': 'Senha', - 'url': 'URL', - 'secret': 'Segredo', - 'name': 'Nome', - 'logout': 'Sair', - 'login': 'Login', - 'filter': 'Filtrar', - 'sort': 'Ordenar', - 'search': 'Pesquisar', - 'active': 'Ativo', - 'archived': 'Arquivado', - 'deleted': 'Excluído', - 'dashboard': 'Painel', - 'archive': 'Arquivar', - 'delete': 'Excluir', - 'restore': 'Restaurar', - 'refresh_complete': 'Refresh Completo', - 'please_enter_your_email': 'Por favor digite seu email', - 'please_enter_your_password': 'Por favor digite sua senha', - 'please_enter_your_url': 'Por favor digite sua URL', - 'please_enter_a_product_key': 'Por favor digite uma chave de produto', - 'ascending': 'Ascendente', - 'descending': 'Descendente', - 'save': 'Salvar', - 'an_error_occurred': 'Um erro ocorreu', - 'paid_to_date': 'Pago até Hoje', - 'balance_due': 'Saldo Devedor', - 'balance': 'Saldo', - 'overview': 'Resumo', - 'details': 'Detalhes', - 'phone': 'Telefone', - 'website': 'Website', - 'vat_number': 'Inscrição Municipal', - 'id_number': 'CNPJ', - 'create': 'Criar', - 'copied_to_clipboard': ':value copiado para a área de transferência', - 'error': 'Erro', - 'could_not_launch': 'Não foi possível iniciar', - 'contacts': 'Contatos', - 'additional': 'Adicional', - 'first_name': 'Nome', - 'last_name': 'Sobrenome', - 'add_contact': 'Adicionar contato', - 'are_you_sure': 'Você tem certeza?', - 'cancel': 'Cancelar', - 'ok': 'Ok', - 'remove': 'Remover', - 'email_is_invalid': 'Email é inválido', - 'product': 'Produto', - 'products': 'Produtos', - 'new_product': 'Novo Produto', - 'created_product': 'Produto criado com sucesso', - 'updated_product': 'Produto atualizado com sucesso', - 'archived_product': 'Produto arquivado com sucesso', - 'deleted_product': 'Produto excluído com sucesso', - 'restored_product': 'Produto restaurado com sucesso', - 'archived_products': ':count produtos arquivados com sucesso', - 'deleted_products': ':count produtos excluídos com sucesso', - 'restored_products': 'Successfully restored :value products', - 'product_key': 'Produto', - 'notes': 'Notas', - 'cost': 'Custo', - 'client': 'Cliente', - 'clients': 'Clientes', - 'new_client': 'Novo Cliente', - 'created_client': 'Cliente criado com sucesso', - 'updated_client': 'Cliente atualizado com sucesso', - 'archived_client': 'Cliente arquivado com sucesso', - 'archived_clients': ':count clientes arquivados com sucesso', - 'deleted_client': 'Cliente excluído com sucesso', - 'deleted_clients': ':count clientes excluídos com sucesso', - 'restored_client': 'Cliente restaurado com sucesso', - 'restored_clients': 'Successfully restored :value clients', - 'address1': 'Rua', - 'address2': 'Complemento', - 'city': 'Cidade', - 'state': 'Estado', - 'postal_code': 'CEP', - 'country': 'País', - 'invoice': 'Fatura', - 'invoices': 'Faturas', - 'new_invoice': 'Nova Fatura', - 'created_invoice': 'Fatura criada com sucesso', - 'updated_invoice': 'Fatura atualizada com sucesso', - 'archived_invoice': 'Fatura arquivada com sucesso', - 'deleted_invoice': 'Fatura excluída com sucesso', - 'restored_invoice': 'Fatura restaurada com sucesso', - 'archived_invoices': ':count faturas arquivadas com sucesso', - 'deleted_invoices': ':count faturas excluídas com sucesso', - 'restored_invoices': 'Successfully restored :value invoices', - 'emailed_invoice': 'Fatura enviada por email com sucesso', - 'emailed_payment': 'Pagamento enviado por email com sucesso', - 'amount': 'Valor', - 'invoice_number': 'Número da Fatura', - 'invoice_date': 'Data da Fatura', - 'discount': 'Desconto', - 'po_number': 'Nº Ordem de Serviço', - 'terms': 'Condições', - 'public_notes': 'Notas Públicas', - 'private_notes': 'Notas Privadas', - 'frequency': 'Frequência', - 'start_date': 'Data Inicial', - 'end_date': 'Data Final', - 'quote_number': 'Número do Orçamento', - 'quote_date': 'Data do Orçamento', - 'valid_until': 'Válido Até', - 'items': 'Itens', - 'partial_deposit': 'Parcial/Depósito', - 'description': 'Descrição', - 'unit_cost': 'Preço Unitário', - 'quantity': 'Quantidade', - 'add_item': 'Adicionar Item', - 'contact': 'Contato', - 'work_phone': 'Telefone', - 'total_amount': 'Quantia Total', - 'pdf': 'PDF', - 'due_date': 'Data de Vencimento', - 'partial_due_date': 'Data de Vencimento Parcial', - 'status': 'Status', - 'invoice_status_id': 'Status da Fatura', - 'quote_status': 'Status do Orçamento', - 'click_plus_to_add_item': 'Clique + para adicionar um item', - 'click_plus_to_add_time': 'Clique + para adicionar tempo', - 'count_selected': ':count selecionados', - 'total': 'Total', - 'percent': 'Porcento', - 'edit': 'Editar', - 'dismiss': 'Dispensar', - 'please_select_a_date': 'Por favor digite uma data', - 'please_select_a_client': 'Por favor selecione um cliente', - 'please_select_an_invoice': 'Por favor escolha uma fatura', - 'task_rate': 'Taxa de Tarefas', - 'settings': 'Configurações', - 'language': 'Idioma', - 'currency': 'Moeda', - 'created_at': 'Data de Criação', - 'created_on': 'Criado em', - 'updated_at': 'Atualizado', - 'tax': 'Imposto', - 'please_enter_an_invoice_number': 'Por favor digite um número de fatura', - 'please_enter_a_quote_number': 'Por favor digite um número de orçamento', - 'past_due': 'Vencido', - 'draft': 'Rascunho', - 'sent': 'Enviado', - 'viewed': 'Visualizado', - 'approved': 'Aprovado', - 'partial': 'Depósito / Parcial', - 'paid': 'Pago', - 'mark_sent': 'Marcar como Enviada', - 'marked_invoice_as_sent': 'Fatura marcada como enviada com sucesso', - 'marked_invoice_as_paid': 'Sucesso! A fatura foi marcada como enviada.', - 'marked_invoices_as_sent': 'Faturas marcadas como enviadas com sucesso', - 'marked_invoices_as_paid': - 'Sucesso! As faturas foram marcadas como enviada.', - 'done': 'Concluído', - 'please_enter_a_client_or_contact_name': - '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', - 'blank_contact': 'Contato Vazio', - 'activity': 'Atividade', - 'no_records_found': 'Nenhum registro encontrado', - 'clone': 'Clonar', - 'loading': 'Carregando', - 'industry': 'Indústria', - 'size': 'Tamanho', - 'payment_terms': 'Condição de Pagamento', - 'payment_date': 'Data do Pagamento', - 'payment_status': 'Status do Pagamento', - 'payment_status_1': 'Pendente', - 'payment_status_2': 'Anulado', - 'payment_status_3': 'Falhou', - 'payment_status_4': 'Completado', - 'payment_status_5': 'Parcialmente Reembolsado', - 'payment_status_6': 'Reembolsado', - 'payment_status_-1': 'Não Aplicado', - 'payment_status_-2': 'Partially Unapplied', - 'net': 'Vencimento', - 'client_portal': 'Portal do Cliente', - 'show_tasks': 'Exibir tarefas', - 'email_reminders': 'Lembretes de Email', - 'enabled': 'Habilitado', - 'recipients': 'Destinatários', - 'initial_email': 'Email Inicial', - 'first_reminder': 'Primeiro Lembrete', - 'second_reminder': 'Segundo Lembrete', - 'third_reminder': 'Terceiro Lembrete', - 'reminder1': 'Primeiro Lembrete', - 'reminder2': 'Segundo Lembrete', - 'reminder3': 'Terceiro Lembrete', - 'template': 'Modelo', - 'send': 'Enviar', - 'subject': 'Assunto', - 'body': 'Corpo', - 'send_email': 'Enviar Email', - 'email_receipt': 'Enviar recibo de pagamento ao cliente por email', - 'auto_billing': 'Cobrança automática', - 'button': 'Botão', - 'preview': 'Preview', - 'customize': 'Personalizar', - 'history': 'Histórico', - 'payment': 'Pagamento', - 'payments': 'Pagamentos', - 'refunded': 'Reembolsado', - 'payment_type': 'Tipo de Pagamento', - 'transaction_reference': 'Referência da Transação', - 'enter_payment': 'Informar Pagamento', - 'new_payment': 'Adicionar Pagamento', - 'created_payment': 'Pagamento criado com sucesso', - 'updated_payment': 'Pagamento atualizado com sucesso', - 'archived_payment': 'Pagamento arquivado com sucesso', - 'deleted_payment': 'Pagamento excluído com sucesso', - 'restored_payment': 'Pagamento restaurado com sucesso', - 'archived_payments': ':count pagamentos arquivados com sucesso', - 'deleted_payments': ':count pagamentos excluídos com sucesso', - 'restored_payments': 'Successfully restored :value payments', - 'quote': 'Orçamento', - 'quotes': 'Orçamentos', - 'new_quote': 'Novo Orçamento', - 'created_quote': 'Orçamento criado com sucesso', - 'updated_quote': 'Orçamento atualizado com sucesso', - 'archived_quote': 'Orçamento aquivado com sucesso', - 'deleted_quote': 'Orçamento excluído com sucesso', - 'restored_quote': 'Orçamento restaurado com sucesso', - 'archived_quotes': ':count orçamentos arquivados com sucesso', - 'deleted_quotes': ':count orçamentos excluídos com sucesso', - 'restored_quotes': 'Successfully restored :value quotes', - 'expense': 'Despesa', - 'expenses': 'Despesas', - 'vendor': 'Fornecedor', - 'vendors': 'Fornecedores', - 'task': 'Tarefa', - 'tasks': 'Tarefas', - 'project': 'Projeto', - 'projects': 'Projetos', - 'activity_1': ':user criou o cliente :client', - 'activity_2': ':user arquivou o cliente :client', - 'activity_3': ':user excluiu o cliente :client', - 'activity_4': ':user criou a fatura :invoice', - 'activity_5': ':user atualizou a fatura :invoice', - 'activity_6': ':user enviou a fatura :invoice para :client do :contact', - 'activity_7': ':contact viu a fatura :invoice para o :client', - 'activity_8': ':user arquivou a fatura :invoice', - 'activity_9': ':user excluiu a fatura :invoice', - 'activity_10': - ':contact efetuou o pagamento :payment de :payment_amount da fatura :invoice do cliente :client', - 'activity_11': ':user atualizou o pagamento :payment', - 'activity_12': ':user arquivou o pagamento :payment', - 'activity_13': ':user excluiu o pagamento :payment', - 'activity_14': ':user adicionou crédito :credit', - 'activity_15': ':user atualizou crédito :credit', - 'activity_16': ':user arquivou o crédito de :credit', - 'activity_17': ':user excluiu crédito :credit', - 'activity_18': ':user criou o orçamento :quote', - 'activity_19': ':user atualizou o orçamento :quote', - 'activity_20': - ':user enviou o orçamento :quote do cliente :client para o contato :contact', - 'activity_21': ':contact visualizou o orçamento :quote', - 'activity_22': ':user arquivou o orçamento :quote', - 'activity_23': ':user excluiu o orçamento :quote', - 'activity_24': ':user restaurou o orçamento :quote', - 'activity_25': ':user restaurou a fatura :invoice', - 'activity_26': ':user restaurou o cliente :client', - 'activity_27': ':user restaurou o pagamento :payment', - 'activity_28': ':user restaurou o crédito :credit', - 'activity_29': - ':contact aprovou o orçamento :quote para o cliente :client', - 'activity_30': ':user criou o fornecedor :vendor', - 'activity_31': ':user arquivou o fornecedor :vendor', - 'activity_32': ':user excluiu :vendor', - 'activity_33': ':user restaurou o fornecedor :vendor', - 'activity_34': ':user criou a despesa :expense', - 'activity_35': ':user arquivou a despesa :expense', - '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', - 'activity_40': - ':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', - 'activity_44': ':user arquivou a tarefa :task', - 'activity_45': ':user excluiu a tarefa :task', - 'activity_46': ':user restaurou a tarefa :task', - 'activity_47': ':user atualizou a despesa :expense', - 'activity_48': ':user atualizou o ticket :ticket', - 'activity_49': ':user fechou o ticket :ticket', - 'activity_50': ':user uniu o ticket :ticket', - 'activity_51': ':user dividiu o ticket :ticket', - 'activity_52': ':contact abriu o ticket :ticket', - 'activity_53': ':contact reabriu o ticket :ticket', - 'activity_54': ':user reabriu o ticket :ticket', - 'activity_55': ':contact respondeu o ticket :ticket', - 'activity_56': ':user visualizou o ticket :ticket', - 'activity_57': 'O sistema falhou ao enviar a fatura :invoice', - 'activity_58': ': fatura revertida pelo usuário: fatura', - 'activity_59': ': fatura cancelada pelo usuário: fatura', - 'activity_60': ':contact viewed quote :quote', - 'activity_61': ':user updated client :client', - 'activity_62': ':user updated vendor :vendor', - 'activity_63': - ':user emailed first reminder for invoice :invoice to :contact', - 'activity_64': - ':user emailed second reminder for invoice :invoice to :contact', - 'activity_65': - ':user emailed third reminder for invoice :invoice to :contact', - 'activity_66': - ':user emailed endless reminder for invoice :invoice to :contact', - 'activity_80': ':user created subscription :subscription', - 'activity_81': ':user updated subscription :subscription', - 'activity_82': ':user archived subscription :subscription', - 'activity_83': ':user deleted subscription :subscription', - 'activity_84': ':user restored subscription :subscription', - 'one_time_password': 'Senha One-Time (OTP)', - 'emailed_quote': 'Orçamento enviado por email com sucesso', - 'emailed_credit': 'Crédito enviado com sucesso', - 'marked_quote_as_sent': 'Orçamento marcado como enviado com sucesso', - 'marked_credit_as_sent': 'Crédito marcado com sucesso como enviado', - 'expired': 'Expirado', - 'all': 'Todos', - 'select': 'Selecionar', - 'long_press_multiselect': 'Seleção múltipla de longa pressão', - 'custom_value1': 'Valor Personalizado', - 'custom_value2': 'Valor Personalizado', - 'custom_value3': 'Valor Personalizado 3', - 'custom_value4': 'Valor Personalizado 4', - 'email_style_custom': 'Estilo de E-mail Personalizado', - 'custom_message_dashboard': 'Mensagem de Painel Personalizada', - 'custom_message_unpaid_invoice': - 'Mensagem Personalizada de Fatura Atrasada', - 'custom_message_paid_invoice': 'Mensagem Personalizada de Fatura Paga', - 'custom_message_unapproved_quote': - 'Mensagem Personalizada de Orçamento Não Aprovado', - 'lock_invoices': 'Bloquear Faturas', - 'translations': 'Traduções', - 'task_number_pattern': 'Padrão de Numeração de Tarefa', - 'task_number_counter': 'Contador Numérico de Tarefas', - 'expense_number_pattern': 'Padrão de Numeração de Despesa', - 'expense_number_counter': 'Contador Numérico de Despesas', - 'vendor_number_pattern': 'Padrão de Numeração de Vendedor', - 'vendor_number_counter': 'Contador Numérico de Vendedores', - 'ticket_number_pattern': 'Padrão de Numeração de Ticket', - 'ticket_number_counter': 'Contador Numérico de Tickets', - 'payment_number_pattern': 'Padrão de Numeração de Pagamento', - 'payment_number_counter': 'Contador Numérico de Pagamentos', - 'invoice_number_pattern': 'Padrão de Numeração de Fatura', - 'invoice_number_counter': 'Contador Numérico de Faturas', - 'quote_number_pattern': 'Padrão de Numeração de Orçamento', - 'quote_number_counter': 'Contador Numérico de Orçamentos', - 'client_number_pattern': 'Padrão de Numeração de Crédito', - 'client_number_counter': 'Contador Numérico de Créditos', - 'credit_number_pattern': 'Padrão de Numeração de Crédito', - 'credit_number_counter': 'Contador Numérico de Créditos', - 'reset_counter_date': 'Reiniciar Data do Contador', - 'counter_padding': 'Padrão do Contador', - 'shared_invoice_quote_counter': - 'Contador de cotação de fatura compartilhada', - 'default_tax_name_1': 'Nome fiscal padrão 1', - 'default_tax_rate_1': 'Taxa de imposto padrão 1', - 'default_tax_name_2': 'Nome fiscal padrão 2', - 'default_tax_rate_2': 'Taxa de imposto padrão 2', - 'default_tax_name_3': 'Nome fiscal padrão 3', - 'default_tax_rate_3': 'Taxa de imposto padrão 3', - 'email_subject_invoice': 'Assunto do E-mail de Fatura', - 'email_subject_quote': 'Assunto do E-mail de Orçamento', - 'email_subject_payment': 'Assunto do E-mail de Pagamento', - 'email_subject_payment_partial': 'Assunto de pagamento parcial por email', - 'show_table': 'Exibir Tabelas', - 'show_list': 'Exibir Lista', - 'client_city': 'Cidade do Cliente', - 'client_state': 'Estado do Cliente', - 'client_country': 'País do Cliente', - 'client_is_active': 'Cliente Ativo', - 'client_balance': 'Balanço do Cliente', - 'client_address1': 'Endereço do cliente', - 'client_address2': 'Complemento', - 'vendor_address1': 'Vendor Street', - 'vendor_address2': 'Vendor Apt/Suite', - 'client_shipping_address1': 'Endereço de entrega', - 'client_shipping_address2': 'Complemento', - 'type': 'Tipo', - 'invoice_amount': 'Valor da Fatura', - 'invoice_due_date': 'Data de Vencimento', - 'tax_rate1': 'Taxa de imposto 1', - 'tax_rate2': 'Taxa de imposto 2', - 'tax_rate3': 'Taxa de imposto 3', - 'auto_bill': 'Cobrança Automática', - 'archived_at': 'Arquivado em', - 'has_expenses': 'Tem despesas', - 'custom_taxes1': 'Impostos personalizados 1', - 'custom_taxes2': 'Impostos personalizados 2', - 'custom_taxes3': 'Impostos personalizados 3', - 'custom_taxes4': 'Impostos personalizados 4', - 'custom_surcharge1': 'Sobretaxa Personalizada 1', - 'custom_surcharge2': 'Sobretaxa Personalizada 2', - 'custom_surcharge3': 'Sobretaxa Personalizada 3', - 'custom_surcharge4': 'Sobretaxa Personalizada 4', - 'is_deleted': 'Excluído', - 'vendor_city': 'Cidade do Vendedor', - 'vendor_state': 'Estado do Vendedor', - 'vendor_country': 'País do Vendedor', - 'is_approved': 'Está aprovado', - 'tax_name': 'Nome do Imposto', - 'tax_amount': 'Quantia de Impostos', - 'tax_paid': 'Impostos pagos', - 'payment_amount': 'Quantia de Pagamento', - 'age': 'Idade', - 'is_running': 'Is Running', - 'time_log': 'Log de Tempo', - 'bank_id': 'Banco', - 'expense_category_id': 'Expense Category ID', - 'expense_category': 'Categoria de Despesa', - 'invoice_currency_id': 'Invoice Currency ID', - 'tax_name1': 'Imposto 1', - 'tax_name2': 'Imposto 2', - 'tax_name3': 'Tax Name 3', - 'transaction_id': 'ID de transação', - 'status_color_theme': 'Status Color Theme', - 'load_color_theme': 'Load Color Theme', - }, - 'pt_PT': { - 'client_shipping_state': 'Client Shipping State', - 'client_shipping_city': 'Client Shipping City', - 'client_shipping_postal_code': 'Client Shipping Postal Code', - 'client_shipping_country': 'Client Shipping Country', - 'load_pdf': 'Load PDF', - 'start_free_trial': 'Start Free Trial', - 'start_free_trial_message': - 'Start your FREE 14 day trial of the pro plan', - 'due_on_receipt': 'Due on Receipt', - 'is_paid': 'Is Paid', - 'age_group_paid': 'Paid', - 'id': 'Id', - 'convert_to': 'Convert To', - 'client_currency': 'Client Currency', - 'company_currency': 'Company Currency', - 'purged_client': 'Cliente apagado com sucesso', - 'custom_emails_disabled_help': - 'To prevent spam we require upgrading to a paid account to customize the email', - 'upgrade_to_add_company': 'Upgrade your plan to add companies', - 'file_saved_in_downloads_folder': - 'The file has been saved in the downloads folder', - 'small': 'Small', - 'marked_credit_as_paid': 'Successfully marked credit as paid', - 'marked_credits_as_paid': 'Successfully marked credits as paid', - 'wait_for_loading': 'Data loading - please wait for it to complete', - 'wait_for_saving': 'Data saving - please wait for it to complete', - 'html_preview_warning': - 'Note: changes made here are only previewed, they must be applied in the tabs above to be saved', - 'remaining': 'Remaining', - 'invoice_paid': 'Invoice Paid', - 'activity_120': ':user created recurring expense :recurring_expense', - 'activity_121': ':user updated recurring expense :recurring_expense', - 'activity_122': ':user archived recurring expense :recurring_expense', - 'activity_123': ':user deleted recurring expense :recurring_expense', - 'activity_124': ':user restored recurring expense :recurring_expense', - 'normal': 'Normal', - 'large': 'Large', - 'extra_large': 'Extra Large', - 'show_pdf_preview': 'Show PDF Preview', - 'show_pdf_preview_help': 'Display PDF preview while editing invoices', - 'print_pdf': 'Print PDF', - 'remind_me': 'Remind Me', - 'instant_bank_pay': 'Instant Bank Pay', - 'click_selected': 'Click Selected', - 'hide_preview': 'Hide Preview', - 'edit_record': 'Edit Record', - 'credit_is_more_than_invoice': - 'The credit amount can not be more than the invoice amount', - 'giropay': 'GiroPay', - 'direct_debit': 'Direct Debit', - 'please_set_a_password': 'Please set an account password', - 'set_password': 'Definir palavra-passe', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', - 'disconnected_gateway': 'Successfully disconnected gateway', - 'disconnect': 'Disconnect', - 'add_to_invoices': 'Add to Invoices', - 'acss': 'Pre-authorized debit payments', - 'becs': 'BECS Direct Debit', - 'bulk_download': 'Download', - 'persist_data_help': - 'Save data locally to enable the app to start faster, disabling may improve performance in large accounts', - 'persist_ui': 'Persist UI', - 'persist_ui_help': - 'Save UI state locally to enable the app to start at the last location, disabling may improve performance', - 'client_postal_code': 'Client Postal Code', - 'client_vat_number': 'Client VAT Number', - 'has_tasks': 'Has Tasks', - 'registration': 'Registration', - 'unauthorized_stripe_warning': - 'Please authorize Stripe to accept online payments.', - 'view_expense': 'Visualizar despesa # :expense', - 'view_statement': 'Visualizar declaração', - 'sepa': 'Débito Direto SEPA', - 'ideal': 'iDEAL', - 'przelewy24': 'Przelewy24', - 'eps': 'EPS', - 'fpx': 'FPX', - 'update_all_records': 'Update all records', - 'system': 'Sistema', - 'set_default_company': 'Set Default Company', - 'updated_company': 'Successfully updated company', - 'kbc': 'KBC', - 'bancontact': 'Bancontact', - 'why_are_you_leaving': 'Help us improve by telling us why (optional)', - 'webhook_success': 'Webhook Success', - 'error_cross_client_tasks': 'Tasks must all belong to the same client', - 'error_cross_client_expenses': - 'Expenses must all belong to the same client', - 'app': 'App', - 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Gross line total', - 'bulk_email_invoice': 'Email Invoice', - 'bulk_email_quote': 'Email Quote', - 'bulk_email_credit': 'Email Credit', - 'from_name': 'Nome do Remetente', - 'clone_to_expense': 'Clone to expense', - 'recurring_expense': 'Despesa Recorrente', - 'recurring_expenses': 'Despesas Recorrentes', - 'new_recurring_expense': 'Nova Despesa Recorrente', - 'edit_recurring_expense': 'Editar Despesa Recorrente', - 'created_recurring_expense': 'Despesa recorrente criada com sucesso', - 'updated_recurring_expense': 'Despesa recorrente atualizada com sucesso', - 'archived_recurring_expense': 'Despesa recorrente arquivada com sucesso', - 'deleted_recurring_expense': 'Projeto apagado com sucesso', - 'removed_recurring_expense': 'Successfully removed recurring expense', - 'restored_recurring_expense': 'Despesa recorrente restaurada com sucesso', - 'search_recurring_expense': 'Search Recurring Expense', - 'search_recurring_expenses': 'Search Recurring Expenses', - 'last_sent_date': 'Last Sent Date', - 'include_drafts': 'Include Drafts', - 'include_drafts_help': 'Include draft records in reports', - 'is_invoiced': 'Is Invoiced', - 'change_plan': 'Change Plan', - 'persist_data': 'Persist Data', - 'customer_count': 'Customer Count', - 'verify_customers': 'Verify Customers', - 'google_analytics': 'Google Analytics', - 'google_analytics_tracking_id': 'Google Analytics Tracking ID', - 'decimal_comma': 'Decimal Comma', - 'use_comma_as_decimal_place': 'Use comma as decimal place in forms', - 'select_method': 'Select Method', - 'select_platform': 'Select Platform', - 'use_web_app_to_connect_gmail': - 'Please use the web app to connect to Gmail', - 'expense_tax_help': 'Item tax rates are disabled', - 'enable_markdown': 'Enable Markdown', - 'enable_markdown_help': 'Convert markdown to HTML on the PDF', - 'user_guide': 'Guia do Utilizador', - 'add_second_contact': 'Add Second Contact', - 'previous_page': 'Previous Page', - 'next_page': 'Next Page', - 'export_colors': 'Export Colors', - 'import_colors': 'Import Colors', - 'clear_all': 'Clear All', - 'contrast': 'Contrast', - 'custom_colors': 'Custom Colors', - 'colors': 'Colors', - 'sidebar_active_background_color': 'Sidebar Active Background Color', - 'sidebar_active_font_color': 'Sidebar Active Font Color', - 'sidebar_inactive_background_color': 'Sidebar Inactive Background Color', - 'sidebar_inactive_font_color': 'Sidebar Inactive Font Color', - 'table_alternate_row_background_color': - 'Table Alternate Row Background Color', - 'invoice_header_background_color': 'Invoice Header Background Color', - 'invoice_header_font_color': 'Invoice Header Font Color', - 'net_subtotal': 'Net', - 'review_app': 'Review App', - 'check_status': 'Check Status', - 'free_trial': 'Free Trial', - 'free_trial_ends_in_days': - 'The Pro plan trial ends in :count days, click to upgrade.', - 'free_trial_ends_today': - 'Today is the last day of the Pro plan trial, click to upgrade.', - 'change_email': 'Change Email', - 'client_portal_domain_hint': - 'Optionally configure a separate client portal domain', - 'tasks_shown_in_portal': 'Tasks Shown in Portal', - 'uninvoiced': 'Uninvoiced', - 'subdomain_guide': - 'The subdomain is used in the client portal to personalize links to match your brand. ie, https://your-brand.invoicing.co', - 'send_time': 'Send Time', - 'import_data': 'Importar Dados', - 'import_settings': 'Import Settings', - 'json_file_missing': 'Please provide the JSON file', - 'json_option_missing': 'Please select to import the settings and/or data', - 'json': 'JSON', - 'no_payment_types_enabled': 'No payment types enabled', - 'wait_for_data': 'Please wait for the data to finish loading', - 'net_total': 'Net Total', - 'has_taxes': 'Has Taxes', - 'import_customers': 'Import Customers', - 'imported_customers': 'Successfully started importing customers', - 'login_success': 'Successful Login', - 'login_failure': 'Failed Login', - 'exported_data': - 'Once the file is ready you\"ll receive an email with a download link', - 'include_deleted_clients': 'Include Deleted Clients', - 'include_deleted_clients_help': - 'Load records belonging to deleted clients', - 'step_1_sign_in': 'Step 1: Sign In', - 'step_2_authorize': 'Step 2: Authorize', - 'account_id': 'Account ID', - 'migration_not_yet_completed': 'The migration has not yet completed', - 'activity_100': - ':user criou uma nota de pagamento recorrente :recurring_invoice', - 'activity_101': - ':user atualizou uma nota de pagamento recorrente :recurring_invoice', - 'activity_102': - ':user arquivou uma nota de pagamento recorrente :recurring_invoice', - 'activity_103': - ':user apagou uma nota de pagamento recorrente :recurring_invoice', - 'activity_104': - ':user restaurou uma nota de pagamento recorrente :recurring_invoice', - 'show_task_end_date': 'Show Task End Date', - 'show_task_end_date_help': 'Enable specifying the task end date', - 'gateway_setup': 'Gateway Setup', - 'preview_sidebar': 'Preview Sidebar', - 'years_data_shown': 'Years Data Shown', - 'ended_all_sessions': 'Successfully ended all sessions', - 'end_all_sessions': 'End All Sessions', - 'count_session': '1 Session', - 'count_sessions': ':count Sessions', - 'invoice_created': 'Invoice Created', - 'quote_created': 'Quote Created', - 'credit_created': 'Credit Created', - 'pro': 'Pro', - 'enterprise': 'Enterprise', - 'last_updated': 'Última Atualização', - 'invoice_item': 'Invoice Item', - 'quote_item': 'Quote Item', - 'contact_first_name': 'Primeiro Nome do Contacto', - 'contact_last_name': 'Último Nome do Contacto', - 'order': 'Order', - 'unassigned': 'Não atribuído', - 'partial_value': 'Deve ser maior que zero e menor que o total', - 'search_kanban': 'Search Kanban', - 'search_kanbans': 'Search Kanban', - 'kanban': 'Kanban', - 'enable': 'Ativar', - 'move_top': 'Move Top', - 'move_up': 'Move Up', - 'move_down': 'Move Down', - 'move_bottom': 'Move Bottom', - 'subdomain_help': - 'Indique o subdomínio ou mostre a nota de pag. no seu site.', - 'body_variable_missing': - 'Error: the custom email must include a :body variable', - 'add_body_variable_message': 'Make sure to include a :body variable', - 'view_date_formats': 'View Date Formats', - 'is_viewed': 'Is Viewed', - 'letter': 'Letter', - 'legal': 'Legal', - 'page_layout': 'Page Layout', - 'portrait': 'Portrait', - 'landscape': 'Landscape', - 'owner_upgrade_to_paid_plan': - 'The account owner can upgrade to a paid plan to enable the advanced advanced settings', - 'upgrade_to_paid_plan': - 'Upgrade to a paid plan to enable the advanced settings', - 'invoice_payment_terms': 'Invoice Payment Terms', - 'quote_valid_until': 'Quote Valid Until', - 'no_headers': 'No Headers', - 'add_header': 'Add Header', - 'remove_header': 'Remove Header', - 'return_url': 'Return URL', - 'rest_method': 'REST Method', - 'header_key': 'Header Key', - 'header_value': 'Header Value', - 'recurring_products': 'Recurring Products', - 'promo_code': 'Código Promocional', - 'promo_discount': 'Promo Discount', - 'allow_cancellation': 'Allow Cancellation', - 'per_seat_enabled': 'Per Seat Enabled', - 'max_seats_limit': 'Max Seats Limit', - 'trial_enabled': 'Trial Enabled', - 'trial_duration': 'Trial Duration', - 'allow_query_overrides': 'Allow Query Overrides', - 'allow_plan_changes': 'Allow Plan Changes', - 'plan_map': 'Plan Map', - 'refund_period': 'Refund Period', - 'webhook_configuration': 'Webhook Configuration', - 'purchase_page': 'Purchase Page', - 'security': 'Segurança', - 'email_bounced': 'Email Bounced', - 'email_spam_complaint': 'Spam Complaint', - 'email_delivery': 'Email Delivery', - 'webhook_response': 'Webhook Response', - 'pdf_response': 'PDF Response', - 'authentication_failure': 'Authentication Failure', - 'pdf_failed': 'PDF Failed', - 'pdf_success': 'PDF Success', - 'modified': 'Modified', - 'subscription': 'Subscrição', - 'subscriptions': 'Subscrições', - 'new_subscription': 'Nova Subscrição', - 'edit_subscription': 'Editar subscrição', - 'created_subscription': 'Subscrição criada com sucesso', - 'updated_subscription': 'Subscrição atualizada com sucesso', - 'archived_subscription': 'Subscrição arquivada com sucesso', - 'deleted_subscription': 'Subscrição Apagada com Sucesso', - 'removed_subscription': 'Subscrição Removida com Sucesso', - 'restored_subscription': 'Subscrição Restaurada com Sucesso', - 'search_subscription': 'Encontrada 1 Subscrição', - 'search_subscriptions': 'Encontradas :count Subscrições', - 'subdomain_is_not_available': 'Subdomínio não disponível', - 'connect_gmail': 'Associar Gmail', - 'disconnect_gmail': 'Desassociar Gmail', - 'connected_gmail': 'Successfully connected Gmail', - 'disconnected_gmail': 'Successfully disconnected Gmail', - 'update_fail_help': - 'Changes to the codebase may be blocking the update, you can run this command to discard the changes:', - 'client_id_number': 'Número de Identificação do Cliente', - 'count_minutes': ':count Minutos', - 'password_timeout': 'Timeout da palavra-passe', - 'shared_invoice_credit_counter': 'Shared Invoice/Credit Counter', - 'use_last_email': 'Usar último E-mail', - 'activate_company': 'Ativar Empresa', - 'activate_company_help': - 'Ativar E-mail, notas de pagamento recorrentes e notificações', - 'an_error_occurred_try_again': - 'Ocorreu um erro, por favor tente novamente', - 'please_first_set_a_password': 'Por favor defina uma palavra-passe', - 'changing_phone_disables_two_factor': - 'Aviso: A mudança de número de telemóvel vai desativar a autenticação de dois fatores (2FA).', - 'help_translate': 'Ajude a traduzir', - 'please_select_a_country': 'Por favor escolha um país', - 'resend_invite': 'Reenviar convite', - 'disabled_two_factor': - 'Autenticação de dois fatores (2FA) desativada com sucesso', - 'connected_google': 'Successfully connected account', - 'disconnected_google': 'Successfully disconnected account', - 'delivered': 'Entregue', - 'bounced': 'Devolvido', - 'spam': 'Spam', - 'view_docs': 'Ver Documentos', - 'enter_phone_to_enable_two_factor': - 'Por favor forneça um número de telemóvel para ativar a autenticação de dois fatores', - 'send_sms': 'Enviar SMS', - 'sms_code': 'Código SMS', - 'two_factor_setup_help': - 'Ler o código de barras com uma :link aplicação compatível.', - 'enabled_two_factor': 'Autenticação de Dois Fatores ativada com sucesso', - 'connect_google': 'Associar Google', - 'disconnect_google': 'Desassociar Google', - 'enable_two_factor': 'Autenticação de Dois Fatores', - 'disable_two_factor': 'Desativar Dois Fatores', - 'require_password_with_social_login': - 'Exigir Palavra-passe para Início de Sessão Social', - 'stay_logged_in': 'Continuar com sessão iniciada', - 'session_about_to_expire': 'Aviso: A sua sessão está prestes a expirar', - 'count_hours': ':count Horas', - 'count_day': '1 Dia', - 'count_days': ':count Dias', - 'web_session_timeout': 'Web Session Timeout', - 'security_settings': 'Definições de Segurança', - 'resend_email': 'Reenviar E-mail', - 'confirm_your_email_address': - 'Por favor confirme o seu endereço de E-mail', - 'refunded_payment': 'Pagamento Reembolsado', - 'partially_unapplied': 'Parcialmente Não Aplicado', - 'select_a_gmail_user': 'Please select a user authenticated with Gmail', - 'list_long_press': 'List Long Press', - 'show_actions': 'Mostrar Ações', - 'start_multiselect': 'Iniciar Multiseleção', - 'email_sent_to_confirm_email': - 'Um E-mail foi enviado para confirmar este endereço de correio eletrónico', - 'counter_pattern_error': - 'To use :client_counter please add either :client_number or :client_id_number to prevent conflicts', - 'this_quarter': 'This Quarter', - 'last_quarter': 'Último Quadrimestre', - 'to_update_run': 'Para atualizar corra', - 'convert_to_invoice': 'Converter em Nota de Pagamento', - 'registration_url': 'URL de Registo', - 'invoice_project': 'Faturar Projeto', - 'invoice_task': 'Faturar Tarefa', - 'invoice_expense': 'Nota de Pagamento da Despesa', - 'search_payment_term': 'Encontrado 1 Termo de Pagamento', - 'search_payment_terms': 'Encontrados :count Termos de Pagamento', - 'save_and_preview': 'Guardar e Prever', - 'save_and_email': 'Guardar e Enviar por E-mail', - 'supported_events': 'Eventos com Suporte', - 'converted_amount': 'Valor convertido', - 'converted_balance': 'Saldo Convertido', - 'converted_paid_to_date': 'Converted Paid to Date', - 'converted_credit_balance': 'Saldo de Crédito Convertido', - 'converted_total': 'Total Convertido', - 'is_sent': 'Foi Enviado', - 'default_documents': 'Documentos Pré-Definidos', - 'document_upload': 'Upload de Documento', - 'document_upload_help': 'Permitir que clientes enviem documentos/anexos', - 'expense_total': 'Total das Despesas', - 'enter_taxes': 'Introduzir impostos', - 'by_rate': 'Por taxa', - 'by_amount': 'Por quantia', - 'enter_amount': 'Introduzir Quantia', - 'before_taxes': 'Sem impostos', - 'after_taxes': 'Com impostos', - 'color': 'Cor', - 'show': 'Mostrar', - 'hide': 'Ocultar', - 'empty_columns': 'Colunas Vazias', - 'debug_mode_is_enabled': 'O Modo de depuração está ativado', - 'debug_mode_is_enabled_help': - 'Aviso: este modo apenas deve ser usado em máquinas locais, pois pode ocorrer fuga de credenciais. Clique para saber mais', - 'running_tasks': 'Tarefas a correr', - 'recent_tasks': 'Tarefas Recentes', - 'recent_expenses': 'Despesas Recentes', - 'upcoming_expenses': 'Próximas Despesas', - 'update_app': 'Atualizar Aplicação', - 'started_import': 'Importação iniciou com sucesso', - 'duplicate_column_mapping': 'Duplicar mapeamento de colunas', - 'uses_inclusive_taxes': 'Usa Taxas Inclusivas', - 'is_amount_discount': 'Is Amount Discount', - 'column': 'Coluna', - 'sample': 'Exemplo', - 'map_to': 'Map To', - 'import': 'Importar', - 'first_row_as_column_names': 'Usar primeira linha como nome das colunas', - 'select_file': 'Por favor selecione um arquivo', - 'no_file_selected': 'Nenhum Ficheiro Selecionado', - 'csv_file': 'Ficheiro CSV', - 'csv': 'CSV', - 'freshbooks': 'FreshBooks', - 'invoice2go': 'Invoice2go', - 'invoicely': 'Invoicely', - 'waveaccounting': 'Wave Accounting', - 'zoho': 'Zoho', - 'accounting': 'Contabilidade', - 'required_files_missing': 'Por favor forneça todos os CSVs', - 'import_type': 'Tipo de Importação', - 'html_mode': 'HTML Mode', - 'html_mode_help': 'Preview updates faster but is less accurate', - 'view_licenses': 'Ver Licenças', - 'webhook_url': 'Webhook URL', - 'fullscreen_editor': 'Editor em ecrã inteiro', - 'sidebar_editor': 'Editor da Barra Lateral', - 'please_type_to_confirm': 'Please type \":value\" to confirm', - 'purge': 'Apagar', - 'service': 'Serviço', - 'clone_to': 'Duplicar para', - 'clone_to_other': 'Duplicar para outro', - 'labels': 'Etiquetas', - 'add_custom': 'Adicionar Personalizado', - 'payment_tax': 'Imposto de Pagamento', - 'unpaid': 'Não pago', - 'white_label': 'White Label', - 'delivery_note': 'Nota de Envio', - 'sent_invoices_are_locked': - 'Notas de Pagamento Enviadas estão bloqueadas', - 'paid_invoices_are_locked': 'Faturas Pagas estão bloqueadas', - 'source_code': 'Código-fonte', - 'app_platforms': 'Plataformas da Aplicação', - 'invoice_late': 'Nota de Pagamento Atrasada', - 'quote_expired': 'Orçamento Expirado', - 'partial_due': 'Vencimento Parcial', - 'invoice_total': 'Total da Nota de Pag.', - 'quote_total': 'Total do Orçamento', - 'credit_total': 'Total em crédito', - 'recurring_invoice_total': 'Total da Nota de Pag.', - 'actions': 'Ações', - 'expense_number': 'N.º da Despesa', - 'task_number': 'N.º da Tarefa', - 'project_number': 'N.º do Projeto', - 'project_name': 'Nome do Projeto', - 'warning': 'Aviso', - 'view_settings': 'Ver definições', - 'company_disabled_warning': 'Aviso: esta empresa ainda não foi ativada', - 'late_invoice': 'Nota de Pagamento Atrasada', - 'expired_quote': 'Orçamento Expirado', - 'remind_invoice': 'Enviar Lembrete da Nota de Pagamento', - 'cvv': 'CVV', - 'client_name': 'Nome do Cliente', - 'client_phone': 'Telefone do Cliente', - 'required_fields': 'Campos Necessários', - 'calculated_rate': 'Taxa Calculada', - 'default_task_rate': 'Taxa de Tarefa Pré-definida', - 'clear_cache': 'Limpar cache', - 'sort_order': 'Ordenar', - 'task_status': 'Estado', - 'task_statuses': 'Estado da Tarefa', - 'new_task_status': 'Novo Estado da Tarefa', - 'edit_task_status': 'Editar Estado da Tarefa', - 'created_task_status': 'Estado da tarefa criado com sucesso', - 'updated_task_status': 'Estado da tarefa atualizado com sucesso', - 'archived_task_status': 'Estado da tarefa arquivado com sucesso', - 'deleted_task_status': 'Estado da tarefa apagado com sucesso', - 'removed_task_status': 'Estado da tarefa removido com sucesso', - 'restored_task_status': 'Estado da tarefa restaurado com sucesso', - 'archived_task_statuses': 'Estado das tarefas arquivados com sucesso', - 'deleted_task_statuses': 'Estado das tarefas apagados com sucesso', - 'restored_task_statuses': 'Estado das tarefas restaurados com sucesso', - 'search_task_status': 'Encontrado 1 Estado da Tarefa', - 'search_task_statuses': 'Encontados :count Estados da Tarefa', - 'show_tasks_table': 'Mostrar Tabela de Tarefas', - 'show_tasks_table_help': - 'Sempre mostrar a seção de tarefas ao criar notas de pagamento', - 'invoice_task_timelog': 'Registo das tarefas da Nota de Pagamento', - 'invoice_task_timelog_help': 'Add time details to the invoice line items', - 'invoice_task_datelog': 'Invoice Task Datelog', - 'invoice_task_datelog_help': - 'Adicionar detalhes da data na linha dos items da Nota de Pagamento', - 'auto_start_tasks_help': 'Começar tarefas antes de guardar', - 'configure_statuses': 'Configurar Estados', - 'task_settings': 'Definições de tarefa', - 'configure_categories': 'Configurar Categorias', - 'expense_categories': 'Categorias de Despesas', - 'new_expense_category': 'Nova Categoria de Despesas', - 'edit_expense_category': 'Editar Categoria de Despesas', - 'created_expense_category': 'Categoria de despesa criada com sucesso', - 'updated_expense_category': 'Categoria de despesa atualizada com sucesso', - 'archived_expense_category': 'Categoria de despesa arquivada com sucesso', - 'deleted_expense_category': 'Categoria apagada com sucesso', - 'removed_expense_category': 'Categoria de despesa removida com sucesso', - 'restored_expense_category': - 'Categoria de despesa restaurada com sucesso', - 'archived_expense_categories': - ':count categorias de despesa arquivadas com sucesso', - 'deleted_expense_categories': - 'Successfully deleted expense :value categories', - 'restored_expense_categories': - 'Successfully restored expense :value categories', - 'search_expense_category': 'Encontrada 1 Categoria de Despesa', - 'search_expense_categories': 'Encontrada :count Categorias de Despesa', - 'use_available_credits': 'Usar Créditos Disponíveis', - 'show_option': 'Mostrar Opção', - 'negative_payment_error': - 'The credit amount cannot exceed the payment amount', - 'view_changes': 'Ver alterações', - 'force_update': 'Forçar atualização', - 'force_update_help': - 'Está a usar a versão mais recente, mas pode haver correções pendentes disponíveis.', - 'mark_paid_help': 'Acompanhe se a despesa foi paga', - 'should_be_invoiced': 'Deve ser faturada', - 'should_be_invoiced_help': 'Enable the expense to be invoiced', - 'add_documents_to_invoice_help': 'Tornar os documentos visíveis', - 'convert_currency_help': 'Defina uma taxa de câmbio', - 'expense_settings': 'Configurações das despesas', - 'clone_to_recurring': 'Duplicar recorrência', - 'crypto': 'Criptomoeda', - 'paypal': 'PayPal', - 'alipay': 'Alipay', - 'sofort': 'Sofort', - 'apple_pay': 'Apple/Google Pay', - 'user_field': 'Campo do utilizador', - 'variables': 'Variável', - 'show_password': 'Mostrar Palavra-passe', - 'hide_password': 'Esconder Palavra-passe', - 'copy_error': 'Copiar Erro', - 'capture_card': 'Cartão de captura', - 'auto_bill_enabled': 'Cobrança automática ativada', - 'total_taxes': 'Impostos totais', - 'line_taxes': 'Item', - 'total_fields': 'Campo Total', - 'stopped_recurring_invoice': 'Fatura recorrente interrompida com sucesso', - 'started_recurring_invoice': 'Fatura recorrente iniciada com sucesso', - 'resumed_recurring_invoice': 'Fatura recorrente retomada com sucesso', - 'gateway_refund': 'Reembolso do Terminal', - 'gateway_refund_help': 'Processe o reembolso com o terminal de pagamento', - 'due_date_days': 'Data de Vencimento', - 'paused': 'Pausado', - 'mark_active': 'Ativar', - 'day_count': 'Dia :count', - 'first_day_of_the_month': 'Primeiro dia do Mês', - 'last_day_of_the_month': 'Último dia do Mês', - 'use_payment_terms': 'Novo Condição de Pagamento', - 'endless': 'Interminável', - 'next_send_date': 'Próxima data de envio', - 'remaining_cycles': 'Ciclos Restantes', - 'recurring_invoice': 'Nota de Pagamento Recorrente', - 'recurring_invoices': 'Nota de Pagamento Recorrentes', - 'new_recurring_invoice': 'Nova Nota de Pagamento Recorrente', - 'edit_recurring_invoice': 'Editar Fatura Recorrente', - 'created_recurring_invoice': 'Fatura recorrente criada com sucesso', - 'updated_recurring_invoice': 'Fatura recorrente atualizada com sucesso', - 'archived_recurring_invoice': 'Nota de Pagamento Recorrente arquivada', - 'deleted_recurring_invoice': 'Nota de Pagamento Recorrente removida', - 'removed_recurring_invoice': 'Fatura recorrente removida com sucesso', - 'restored_recurring_invoice': 'Nota de Pagamento Recorrente restaurada', - 'archived_recurring_invoices': - ':value Notas de pagamento recorrentes arquivadas com sucesso', - 'deleted_recurring_invoices': - ':value Notas de pagamento recorrentes apagadas com sucesso', - 'restored_recurring_invoices': - ':value Notas de pagamento recorrentes restauradas com sucesso', - 'search_recurring_invoice': 'Encontrado 1 Fatura recorrente', - 'search_recurring_invoices': 'Encontrado :count Faturas recorrentes', - 'send_date': 'Data de envio', - 'auto_bill_on': 'Faturamento Automático Ativado', - 'minimum_under_payment_amount': 'Valor mínimo abaixo do pagamento', - 'profit': 'Lucro', - 'line_item': 'Item', - 'allow_over_payment': 'Permitir pagamento em excesso', - 'allow_over_payment_help': - 'Suportar pagamentos com quantias superiores à pedida para aceitar gorjetas', - 'allow_under_payment': 'Permitir pagamento menor', - 'allow_under_payment_help': - 'Support paying at minimum the partial/deposit amount', - 'test_mode': 'Modo de teste', - 'opened': 'Aberto', - 'payment_reconciliation_failure': 'Falha na reconciliação', - 'payment_reconciliation_success': 'Sucesso na Reconciliação', - 'gateway_success': 'Sucesso do Portal', - 'gateway_failure': 'Falha do Portal', - 'gateway_error': 'Erro do Portal', - 'email_send': 'Email Enviado', - 'email_retry_queue': 'Fila de Repetição de Email', - 'failure': 'Falha', - 'quota_exceeded': 'Quota ultrapassada', - 'upstream_failure': 'Falha Upstream', - 'system_logs': 'Logs de Sistema', - 'view_portal': 'View Portal', - 'copy_link': 'Copiar Link', - 'token_billing': 'Guardar detalhes do cartão', - 'welcome_to_invoice_ninja': 'Bem-vindo ao Invoice Ninja', - 'always': 'Sempre', - 'optin': 'Autorizar', - 'optout': 'Desautorizar', - 'label': 'Etiqueta', - 'client_number': 'Nº Cliente', - 'auto_convert': 'Converter Automaticamente', - 'company_name': 'Nome da Empresa', - 'reminder1_sent': 'Lembrete 1 Enviado', - 'reminder2_sent': 'Lembrete 2 Enviado', - 'reminder3_sent': 'Lembrete 3 Enviado', - 'reminder_last_sent': 'Último Lembrete Enviado', - 'pdf_page_info': 'Página: atual de: total', - 'emailed_invoices': 'Notas de pag. enviadas com sucesso', - 'emailed_quotes': 'Orçamentos enviados com sucesso', - 'emailed_credits': 'Créditos enviados por e-mail com sucesso', - 'gateway': 'Gateway', - 'view_in_stripe': 'Ver em Formato Lista', - 'rows_per_page': 'Colunas por Página', - 'hours': 'Horas', - 'statement': 'Declaração', - 'taxes': 'Impostos', - 'surcharge': 'Sobretaxa', - 'apply_payment': 'Aplicar Pagamento', - 'apply_credit': 'Aplicar Nota de Crédito', - 'apply': 'Aplicar', - 'unapplied': 'Não Aplicado', - 'select_label': 'Selecione a Etiqueta', - 'custom_labels': 'Etiquetas Personalizadas', - 'record_type': 'Tipo de Registo', - 'record_name': 'Nome do Registo', - 'file_type': 'Tipo de Ficheiro', - 'height': 'Altura', - 'width': 'Largura', - 'to': 'Para', - 'health_check': 'Examinar Saúde do Sistema', - 'payment_type_id': 'Tipo de pagamento', - 'last_login_at': 'Último Início de Sessão em', - 'company_key': 'Chave da Empresa', - 'storefront': 'Vitrine', - 'storefront_help': - 'Permitir aplicações de terceiros para criar notas de pagamento', - 'client_created': 'Cliente Criado', - 'online_payment_email': 'E-mail de pagamento online', - 'manual_payment_email': 'Email de pagamento manual', - 'completed': 'Completo', - 'gross': 'Bruto', - 'net_amount': 'Valor líquido', - 'net_balance': 'Saldo Líquido', - 'client_settings': 'Configurações do cliente', - 'selected_invoices': 'Faturas Selecionadas', - 'selected_payments': 'Pagamentos Selecionados', - 'selected_quotes': 'Orçamentos Selecionados', - 'selected_tasks': 'Tarefas Selecionadas', - 'selected_expenses': 'Despesas Selecionadas', - 'upcoming_invoices': 'Próximas Nota de Pagamento', - 'past_due_invoices': 'Notas de Pagamento Vencidas', - 'recent_payments': 'Pagamentos Recentes', - 'upcoming_quotes': 'Próximos Orçamentos', - 'expired_quotes': 'Orçamentos Expirados', - 'create_client': 'Criar Cliente', - 'create_invoice': 'Criar Nota de Pagamento', - 'create_quote': 'Criar Orçamento', - 'create_payment': 'Criar Pagamento', - 'create_vendor': 'Criar fornecedor', - 'update_quote': 'Atualizar Orçamento', - 'delete_quote': 'Apagar Orçamento', - 'update_invoice': 'Atualizar Nota de Pagamento', - 'delete_invoice': 'Apagar Nota de Pagamento.', - 'update_client': 'Atualizar Cliente', - 'delete_client': 'Apagar Cliente', - 'delete_payment': 'Apagar Pagamento', - 'update_vendor': 'Atualizar Fornecedores', - 'delete_vendor': 'Apagar Fornecedor', - 'create_expense': 'Criar Despesa', - 'update_expense': 'Atualizar Despesa', - 'delete_expense': 'Apagar Despesa', - 'create_task': 'Criar Tarefa', - 'update_task': 'Atualizar Tarefa', - 'delete_task': 'Apagar Tarefa', - 'approve_quote': 'Aprovar Orçamento', - 'off': 'Off', - 'when_paid': 'Quando Pago', - 'expires_on': 'Expira em', - 'free': 'Grátis', - 'plan': 'Plano', - 'show_sidebar': 'Mostrar Barra Lateral', - 'hide_sidebar': 'Ocultar Barra Lateral', - 'event_type': 'Tipo de Evento', - 'target_url': 'Alvo', - 'copy': 'Cópia', - 'must_be_online': - 'Reinicie a aplicação assim que estiver conectado à internet', - 'crons_not_enabled': 'Os crons precisam de ser ativados', - 'api_webhooks': 'API Webhooks', - 'search_webhooks': 'Pesquisar: contar Webhooks', - 'search_webhook': 'Pesquisar 1 Webhook', - 'webhook': 'Webhook', - 'webhooks': 'Webhooks', - 'new_webhook': 'Nova Webhook', - 'edit_webhook': 'Editar Webhook', - 'created_webhook': 'Webhook Criada com Sucesso', - 'updated_webhook': 'Webhook Atualizada com Sucesso', - 'archived_webhook': 'Webhook Arquivada com Sucesso', - 'deleted_webhook': 'Webhook Apagada com Sucesso', - 'removed_webhook': 'Webhook Removida com Sucesso', - 'restored_webhook': 'Webhook Restaurada com Sucesso', - 'archived_webhooks': ':value Webhooks arquivadas com sucesso', - 'deleted_webhooks': ':value Webhooks apagadas com sucesso', - 'removed_webhooks': ':value Webhooks removidas com sucesso', - 'restored_webhooks': ':value Webhooks restauradas com sucesso', - 'api_tokens': 'API Tokens', - 'api_docs': 'Documentação API', - 'search_tokens': 'Pesquisar: contar Tokens', - 'search_token': 'Pesquisar 1 Token', - 'token': 'Token', - 'tokens': 'Tokens', - 'new_token': 'Novo Token', - 'edit_token': 'Editar Token', - 'created_token': 'Token criado', - 'updated_token': 'Token atualizado', - 'archived_token': 'Token arquivado', - 'deleted_token': 'Token apagado', - 'removed_token': 'Token Removido com Sucesso', - 'restored_token': 'Token Restaurado com Sucesso', - 'archived_tokens': ':value Tokens arquivadas com sucesso', - 'deleted_tokens': ':value Tokens apagadas com sucesso', - 'restored_tokens': ':value Tokens restauradas com sucesso', - 'client_registration': 'Registo de cliente', - 'client_registration_help': - 'Permitir que os clientes se auto-registem no portal', - 'customize_and_preview': 'Personalizar & Visualizar', - 'email_invoice': 'Enviar Nota de Pagamento.', - 'email_quote': 'Enviar Orçamento', - 'email_credit': 'Crédito de E-mail', - 'email_payment': 'Pagamento por Email', - 'client_email_not_set': - 'O cliente não tem um endereço de E-mail definido', - 'ledger': 'Ledger', - 'view_pdf': 'Ver PDF', - 'all_records': 'Todos os registos', - 'owned_by_user': 'Propriedade do utilizador', - 'credit_remaining': 'Crédito Restante', - 'contact_name': 'Nome do Contacto', - 'use_default': 'Use o padrão', - 'reminder_endless': 'Lembrete contínuo', - 'number_of_days': 'Número de dias', - 'configure_payment_terms': 'Configurar as condições de pagamento', - 'payment_term': 'Condição de Pagamento', - 'new_payment_term': 'Novo Condição de Pagamento', - 'edit_payment_term': 'Editar Termo de Pagamento', - 'created_payment_term': 'Criado termo de pagamento com sucesso', - 'updated_payment_term': 'Atualizado termo de pagamento com sucesso', - 'archived_payment_term': 'Arquivado termo de pagamento com sucesso', - 'deleted_payment_term': 'Condição de pagamento apagadas com sucesso', - 'removed_payment_term': 'Condição de pagamento removida com sucesso', - 'restored_payment_term': 'Condição de pagamento restaurado com sucesso', - 'archived_payment_terms': - ':value Termos de Pagamento arquivados com sucesso', - 'deleted_payment_terms': - ':value Termos de Pagamento apagados com sucesso', - 'restored_payment_terms': - ':value Termos de Pagamento restaurados com sucesso', - 'email_sign_in': 'Entrar com email', - 'change': 'Mudar', - 'change_to_mobile_layout': 'Mudar para o layout móvel?', - 'change_to_desktop_layout': 'Mudar para o layout de computador?', - 'send_from_gmail': 'Enviar do Gmail', - 'reversed': 'Invertido', - 'cancelled': 'Cancelado', - 'credit_amount': 'Valor do Nota de Crédito', - 'quote_amount': 'Valor do Orçamento', - 'hosted': 'Hospedado', - 'selfhosted': 'Auto-hospedado', - 'exclusive': 'Exclusive', - 'inclusive': 'Inclusive', - 'hide_menu': 'Ocultar Menu', - 'show_menu': 'Mostrar Menu', - 'partially_refunded': 'Parcialmente Reembolsado', - 'search_documents': 'Pesquisar Documentos', - 'search_designs': 'Pesquisar Modelos', - 'search_invoices': 'Pesquisar Notas de Pagamento', - 'search_clients': 'Pesquisar Clientes', - 'search_products': 'Pesquisar Produtos', - 'search_quotes': 'Pesquisar Orçamentos', - 'search_credits': 'Pesquisar Créditos', - 'search_vendors': 'Procurar Fornecedores', - 'search_users': 'Pesquisar Utilizadores', - 'search_tax_rates': 'Pesquisar taxas de impostos', - 'search_tasks': 'Pesquisar Tarefas', - 'search_settings': 'Pesquisar Configurações', - 'search_projects': 'Pesquisar Projetos', - 'search_expenses': 'Pesquisar Despesas', - 'search_payments': 'Pesquisar Pagamentos', - 'search_groups': 'Pesquisar Grupos', - 'search_company': 'Pesquisar Empresa', - 'search_document': 'Pesquisar 1 Documento', - 'search_design': 'Pesquisar 1 Design', - 'search_invoice': 'Pesquisar 1 Nota de Pagamento', - 'search_client': 'Pesquisar 1 Cliente', - 'search_product': 'Pesquisar 1 Produto', - 'search_quote': 'Pesquisar 1 Cotação', - 'search_credit': 'Pesquisar 1 Crédito', - 'search_vendor': 'Procurar 1 Fornecedor', - 'search_user': 'Pesquisar 1 Usuário', - 'search_tax_rate': 'Pesquisar 1 Taxa de Imposto', - 'search_task': 'Pesquisar 1 Tarefa', - 'search_project': 'Pesquisar 1 Projeto', - 'search_expense': 'Pesquisar 1 Despesa', - 'search_payment': 'Pesquisar 1 Pagamento', - 'search_group': 'Pesquisar 1 Grupo', - 'refund_payment': 'Reembolsar Pagamento', - 'cancelled_invoice': 'Nota de Pagamento Cancelada com Sucesso', - 'cancelled_invoices': 'Notas de Pagamento Canceladas com Sucesso', - 'reversed_invoice': 'Nota de Pagamento Revertida com Sucesso', - 'reversed_invoices': 'Notas de Pagamento Revertidas com Sucesso', - 'reverse': 'Reverter', - 'full_name': 'Nome completo', - 'city_state_postal': 'Cidade/Distrito/C. Postal', - 'postal_city_state': 'Código-Postal/Cidade/Distrito', - 'custom1': 'Primeiro Personalizado', - 'custom2': 'Segundo Personalizado', - 'custom3': 'Terceiro Personalizado', - 'custom4': 'Quarto Personalizado', - 'optional': 'Opcional', - 'license': 'Licença', - 'purge_data': 'Purgar dados', - 'purge_successful': 'Dados da empresa limpos com sucesso', - 'purge_data_message': 'Aviso: apagará todos os seus dados.', - 'invoice_balance': 'Saldo da fatura', - 'age_group_0': '0 - 30 Dias', - 'age_group_30': '30 - 60 Dias', - 'age_group_60': '60 - 90 Dias', - 'age_group_90': '90 - 120 Dias', - 'age_group_120': '120+ Dias', - 'refresh': 'Atualizar', - 'saved_design': 'Design guardado com sucesso', - 'client_details': 'Detalhes do cliente', - 'company_address': 'Endereço da Empresa', - 'invoice_details': 'Detalhes da nota de pag.', - 'quote_details': 'Detalhes do orçamento', - 'credit_details': 'Detalhes de crédito', - 'product_columns': 'Colunas de Produto', - 'task_columns': 'Colunas de Tarefas', - 'add_field': 'Adicionar campo', - 'all_events': 'Todos os eventos', - 'permissions': 'Permissões', - 'none': 'Nenhum', - 'owned': 'Possuído', - 'payment_success': 'Pagamento realizado com sucesso', - 'payment_failure': 'Falha no Pagamento', - 'invoice_sent': ':count nota de pag. enviada', - 'quote_sent': 'Orçamento enviado', - 'credit_sent': 'Crédito Enviado', - 'invoice_viewed': 'Nota de Pagamento Vista', - 'quote_viewed': 'Orçamento Visto', - 'credit_viewed': 'Crédito Visto', - 'quote_approved': 'Orçamento Aprovado', - 'receive_all_notifications': 'Receber todas as notificações', - 'purchase_license': 'Comprar licença', - 'apply_license': 'Aplicar Linceça', - 'cancel_account': 'Cancelar Conta', - 'cancel_account_message': - 'Aviso: Irá apagar permanentemente a sua conta.', - 'delete_company': 'Apagar Empresa', - 'delete_company_message': - 'Aviso: Esta ação irá apagar permanentemente sua empresa, não há como desfazê-la.', - 'enabled_modules': 'Ativar Módulos', - 'converted_quote': 'Orçamento criado com sucesso', - 'credit_design': 'Design de Crédito', - 'includes': 'Inclui', - 'header': 'Cabeçalho', - 'load_design': 'Carregar Design', - 'css_framework': 'CSS Framework', - 'custom_designs': 'Modelos Personalizados', - 'designs': 'Modelos', - 'new_design': 'Novo Modelo', - 'edit_design': 'Editar Modelo', - 'created_design': 'Modelo criado com sucesso', - 'updated_design': 'Modelo atualizado com sucesso', - 'archived_design': 'Model arquivado com sucesso', - 'deleted_design': 'Modelo apagado com sucesso', - 'removed_design': 'Modelo removido com sucesso', - 'restored_design': 'Modelo restaurado com sucesso', - 'archived_designs': ':value Modelos arquivados com sucesso', - 'deleted_designs': ':value Modelos apagados com sucesso', - 'restored_designs': ':value Modelos restaurados com sucesso', - 'proposals': 'Propostas', - 'tickets': 'Tickets', - 'recurring_quotes': 'Orçamentos Recorrentes', - 'recurring_tasks': 'Tarefas Recorrentes', - 'account_management': 'Gerir Conta', - 'credit_date': 'Data do Nota de Crédito', - 'credit': 'Nota de Crédito', - 'credits': 'Nota de Crédito', - 'new_credit': 'Introduzir Nota de Crédito', - 'edit_credit': 'Editar Nota de Crédito', - 'created_credit': 'Nota de Crédito criada com sucesso', - 'updated_credit': 'Nota de Crédito atualizado com sucesso', - 'archived_credit': 'Nota de Crédito arquivada com sucesso', - 'deleted_credit': 'Nota de Crédito apagada com sucesso', - 'removed_credit': 'Crédito removido com sucesso', - 'restored_credit': 'Nota de Crédito restaurado', - 'archived_credits': ':count notas de crédito arquivadas com sucesso', - 'deleted_credits': ':count notas de crédito apagadas com sucesso', - 'restored_credits': ':value Créditos restaurados com sucesso', - 'current_version': 'Versão Atual', - 'latest_version': 'Última versão', - 'update_now': 'Atualize agora', - 'a_new_version_is_available': - 'Uma nova versão da aplicação web está disponível', - 'update_available': 'Atualização disponível', - 'app_updated': 'Atualização completada com sucesso', - 'learn_more': 'Saber mais', - 'integrations': 'Integrações', - 'tracking_id': 'Id de acompanhamento', - 'slack_webhook_url': 'URL Webhook do Slack', - 'credit_footer': 'Rodapé do Crédito', - 'credit_terms': 'Termos do Crédito', - 'new_company': 'Nova Empresa', - 'added_company': 'Empresa adicionada com sucesso', - 'company1': 'Empresa Personalizada 1', - 'company2': 'Empresa Personalizada 2', - 'company3': 'Empresa Personalizada 3', - 'company4': 'Empresa Personalizada 4', - 'product1': 'Produto Personalizado 1', - 'product2': 'Produto Personalizado 2', - 'product3': 'Produto Personalizado 3', - 'product4': 'Produto Personalizado 4', - 'client1': 'Cliente Personalizado 1', - 'client2': 'Cliente Personalizado 2', - 'client3': 'Cliente Personalizado 3', - 'client4': 'Cliente Personalizado 4', - 'contact1': 'Contacto Personalizado 1', - 'contact2': 'Contacto Personalizado 2', - 'contact3': 'Contacto Personalizado 3', - 'contact4': 'Contacto Personalizado 4', - 'task1': 'Tarefa Personalizada 1', - 'task2': 'Tarefa Personalizada 2', - 'task3': 'Tarefa Personalizada 3', - 'task4': 'Tarefa Personalizada 4', - 'project1': 'Projeto Personalizado 1', - 'project2': 'Projeto Personalizado 2', - 'project3': 'Projeto Personalizado 3', - 'project4': 'Projeto Personalizado 4', - 'expense1': 'Despesa Personalizada 1', - 'expense2': 'Despesa Personalizada 2', - 'expense3': 'Despesa Personalizada 3', - 'expense4': 'Despesa Personalizada 4', - 'vendor1': 'Fornecedor Personalizado 1', - 'vendor2': 'Fornecedor Personalizado 2', - 'vendor3': 'Fornecedor Personalizado 3', - 'vendor4': 'Fornecedor Personalizado 4', - 'invoice1': 'Nota de Pagamento Personalizada 1', - 'invoice2': 'Nota de Pagamento Personalizada 2', - 'invoice3': 'Nota de Pagamento Personalizada 3', - 'invoice4': 'Nota de Pagamento Personalizada 4', - 'payment1': 'Pagamento Personalizado 1', - 'payment2': 'Pagamento Personalizado 2', - 'payment3': 'Pagamento Personalizado 3', - 'payment4': 'Pagamento Personalizado 4', - 'surcharge1': 'Sobretaxa Personalizada 1', - 'surcharge2': 'Sobretaxa Personalizada 2', - 'surcharge3': 'Sobretaxa Personalizada 3', - 'surcharge4': 'Sobretaxa Personalizada 4', - 'group1': 'Grupo Personalizado 1', - 'group2': 'Grupo Personalizado 2', - 'group3': 'Grupo Personalizado 3', - 'group4': 'Grupo Personalizado 4', - 'reset': 'Redefinir', - 'number': 'Número', - 'export': 'Exportar', - 'chart': 'Gráfico', - 'count': 'Contagem', - 'totals': 'Totais', - 'blank': 'Vazio', - 'day': 'Dia', - 'month': 'Mês', - 'year': 'Ano', - 'subgroup': 'Subgrupo', - 'is_active': 'Ativo', - 'group_by': 'Agrupado por', - 'credit_balance': 'Balanço do Nota de Crédito', - 'contact_last_login': 'Último Login do Contacto', - 'contact_full_name': 'Nome Completo do Contacto', - 'contact_phone': 'Contato telefónico', - 'contact_custom_value1': 'Valor personalizado do contacto 1', - 'contact_custom_value2': 'Valor personalizado do contacto 2', - 'contact_custom_value3': 'Valor personalizado do contacto 3', - 'contact_custom_value4': 'Valor personalizado do contacto 4', - 'shipping_address1': 'Rua de Faturação', - 'shipping_address2': 'Andar / Fração de Envio', - 'shipping_city': 'Cidade de Envio', - 'shipping_state': 'Distrito / Região de Envio', - 'shipping_postal_code': 'Código postal de Envio', - 'shipping_country': 'País de Envio', - 'billing_address1': 'Rua de Faturação', - 'billing_address2': 'Andar / Fração de Faturação', - 'billing_city': 'Cidade de Faturação', - 'billing_state': 'Distrito / Região de Faturação', - 'billing_postal_code': 'Código postal de Faturação', - 'billing_country': 'País de Faturação', - 'client_id': 'Client Id', - 'assigned_to': 'Atribuído para', - 'created_by': 'Criado por :nome', - 'assigned_to_id': 'Atribuído ao ID', - 'created_by_id': 'Criado pelo ID', - 'add_column': 'Adicionar Coluna', - 'edit_columns': 'Editar Colunas', - 'columns': 'Colunas', - 'aging': 'Vencidas', - 'profit_and_loss': 'Lucro e prejuízo', - 'reports': 'Relatórios', - 'report': 'Relatório', - 'add_company': 'Adicionar Empresa', - 'unpaid_invoice': 'Nota de Pagamento não Paga', - 'paid_invoice': 'Nota de Pagamento Paga', - 'unapproved_quote': 'Orçamento não Aprovado', - 'help': 'Ajuda', - 'refund': 'Reembolsar', - 'refund_date': 'Data de Reembolso', - 'filtered_by': 'Filtrado por', - 'contact_email': 'Email', - 'multiselect': 'Seleção múltipla', - 'entity_state': 'Estado', - 'verify_password': 'Verificar Palavra-passe', - 'applied': 'Aplicado', - 'include_recent_errors': 'Incluir erros recentes dos registos', - 'your_message_has_been_received': - 'Recebemos sua mensagem e tentaremos responder rapidamente.', - 'message': 'Mensagem', - 'from': 'De', - 'show_product_details': 'Mostrar Detalhes do Produto', - 'show_product_details_help': - 'Incluir a descrição e o custo na lista suspensa do produto', - 'pdf_min_requirements': - 'A renderização de PDF precisa da versão :version', - 'adjust_fee_percent': 'Ajustar Percentagem da Multa', - 'adjust_fee_percent_help': 'Ajustar a percentagem da taxa a contabilizar', - 'configure_settings': 'Configurações Gerais', - 'support_forum': 'fórum de suporte', - 'about': 'Sobre', - 'documentation': 'Documentação', - 'contact_us': 'Contacte-nos', - 'subtotal': 'Subtotal', - 'line_total': 'Total', - 'item': 'Item', - 'credit_email': 'E-mail de Crédito', - 'iframe_url': 'Website', - 'domain_url': 'URL do Domínio', - 'password_is_too_short': 'A palavra-passe é muito curta', - 'password_is_too_easy': - 'A palavra-passe deve conter um caractere maiúsculo e um número', - 'client_portal_tasks': 'Tarefas do Portal do Cliente', - 'client_portal_dashboard': 'Painel do Portal do Cliente', - 'please_enter_a_value': 'Por favor introduza um valor', - 'deleted_logo': 'Logótipo removido com sucesso', - 'yes': 'Sim', - 'no': 'Não', - 'generate_number': 'Gerar Número', - 'when_saved': 'Quando Guardado', - 'when_sent': 'Quando Enviado', - 'select_company': 'Selecionar Empresa', - 'float': 'Flutuante', - 'collapse': 'Fechar', - 'show_or_hide': 'Exibir/esconder', - 'menu_sidebar': 'Menu da Barra Lateral', - 'history_sidebar': 'Barra Lateral de Histórico', - 'tablet': 'Tablet', - 'mobile': 'Móvel', - 'desktop': 'Desktop', - 'layout': 'Layout', - 'view': 'Visualizar', - 'module': 'Módulo', - 'first_custom': 'Primeiro Personalizado', - 'second_custom': 'Segundo Personalizado', - 'third_custom': 'Terceiro Personalizado', - 'show_cost': 'Mostrar Custo', - 'show_product_cost': 'Mostrar Custo do Produto', - 'show_cost_help': - 'Exibir um campo de custo do produto para acompanhar a marcação/lucro', - 'show_product_quantity': 'Mostrar Quantidade do Produto', - 'show_product_quantity_help': - 'Mostrar um campo de quantidade de produto, caso contrário o padrão de um', - 'show_invoice_quantity': 'Mostrar quantidade da fatura', - 'show_invoice_quantity_help': - 'Exibir um campo de quantidade de item de linha, caso contrário, o padrão é um', - 'show_product_discount': 'Mostrar Desconto do Produto', - 'show_product_discount_help': 'Display a line item discount field', - 'default_quantity': 'Quantidade Padrão', - 'default_quantity_help': - 'Defina automaticamente a quantidade do item de linha para um', - 'one_tax_rate': 'Uma taxa de imposto', - 'two_tax_rates': 'Duas taxas de impostos', - 'three_tax_rates': 'Três taxas de impostos', - 'default_tax_rate': 'Imposto Padrão', - 'user': 'Utilizador', - 'invoice_tax': 'Imposto da Fatura', - 'line_item_tax': 'Imposto da Linha do Item', - 'inclusive_taxes': 'Impostos Inclusos', - 'invoice_tax_rates': 'Tarifa do Imposto da Fatura', - 'item_tax_rates': 'Tarifa do Imposto do Item', - 'no_client_selected': 'Por favor selecione um cliente', - 'configure_rates': 'Configurar tarifas', - 'configure_gateways': 'Configurar Terminais', - 'tax_settings': 'Definições de Impostos', - 'tax_settings_rates': 'Impostos', - 'accent_color': 'Cor de destaque', - 'switch': 'Alterar', - 'comma_sparated_list': 'Lista separada por vírgulas', - 'options': 'Opções', - 'single_line_text': 'Texto de linha única', - 'multi_line_text': 'Texto multilinha', - 'dropdown': 'Dropdown', - 'field_type': 'Tipo de Campo', - 'recover_password_email_sent': - 'Foi enviado um e-mail de recuperação da palavra-passe', - 'submit': 'Submeter', - 'recover_password': 'Recuperar palavra-passe', - 'late_fees': 'Taxas atrasadas', - 'credit_number': 'Nota de rédito número', - 'payment_number': 'Número do Pagamento', - 'late_fee_amount': 'Quantia da Multa', - 'late_fee_percent': 'Percentagem da Multa', - 'schedule': 'Agendamento', - 'before_due_date': 'Até à data de vencimento', - 'after_due_date': 'Depois da data de vencimento', - 'after_invoice_date': 'Depois da data da fatura', - 'days': 'Dias', - 'invoice_email': 'E-mail para Nota de Pagamento', - 'payment_email': 'E-mail para Pagamentos', - 'partial_payment': 'Pagamento parcial', - 'payment_partial': 'Pagamento Parcial', - 'partial_payment_email': 'E-mail de pagamento parcial', - 'quote_email': 'E-mail para Orçamentos', - 'endless_reminder': 'Lembrete contínuo', - 'filtered_by_user': 'Filtrado pelo Utilizador', - 'administrator': 'Administrador', - 'administrator_help': - 'Permite ao utilizador gerir utilizadores, alterar definições e modificar registos.', - 'user_management': 'Gerir utilizadores', - 'users': 'Utilizadores', - 'new_user': 'Novo Utilizador', - 'edit_user': 'Editar Utilizador', - 'created_user': 'Utilizador criado com sucesso', - 'updated_user': 'Utilizador atualizado com sucesso', - 'archived_user': 'Utilizador arquivado', - 'deleted_user': 'Utilizador apagado', - 'removed_user': 'Utilizador removido com sucesso', - 'restored_user': 'Utilizador restaurado', - 'archived_users': ':value Créditos arquivados com sucesso', - 'deleted_users': ':value Utilizadores arquivados com sucesso', - 'removed_users': ':value Utilizadores removidos com sucesso', - 'restored_users': ':value Utilizadores restaurados com sucesso', - 'general_settings': 'Definições Gerais', - 'invoice_options': 'Opções da Nota de Pagamento', - '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.', - 'invoice_embed_documents': 'Documentos Embutidos', - 'invoice_embed_documents_help': - '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', - 'all_pages': 'todas as páginas', - 'last_page': 'última página', - 'primary_font': 'Fonte Primária', - 'secondary_font': 'Fonte Secundária', - 'primary_color': 'Cor Principal', - 'secondary_color': 'Cor Secundária', - 'page_size': 'Tamanho da Página', - 'font_size': 'Tamanho do Texto', - 'quote_design': 'Design do Orçamento', - 'invoice_fields': 'Campos da Nota de Pagamento', - 'product_fields': 'Campos do produto', - 'invoice_terms': 'Condições da Nota de Pagamento', - 'invoice_footer': 'Rodapé da Nota de Pagamento', - 'quote_terms': 'Condições do Orçamento', - '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.', - 'auto_archive_invoice': 'Arquivar Automaticamente', - 'auto_archive_invoice_help': - 'Arquivar automaticamente faturas quando forem pagas.', - 'auto_archive_quote': 'Arquivar Automaticamente', - 'auto_archive_quote_help': - '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.', - 'workflow_settings': 'Configurações de Fluxo de Trabalho', - 'freq_daily': 'Diário', - 'freq_weekly': 'Semanal', - 'freq_two_weeks': '2 semanas', - 'freq_four_weeks': '4 semanas', - 'freq_monthly': 'Mensal', - 'freq_two_months': 'Dois meses', - 'freq_three_months': 'Trimestral', - 'freq_four_months': 'Quatro Meses', - 'freq_six_months': 'Semestral', - 'freq_annually': 'Anual', - 'freq_two_years': 'Dois Anos', - 'freq_three_years': 'Três Anos', - 'never': 'Nunca', - 'company': 'Empresa', - 'generated_numbers': 'Números gerados', - 'charge_taxes': 'Impostos', - 'next_reset': 'Próxima redefinição', - 'reset_counter': 'Redefinir contador', - 'recurring_prefix': 'Prefixo da Recorrência', - 'number_padding': 'Preenchimento de número', - 'general': 'Geral', - 'surcharge_field': 'Campo de Sobretaxa', - 'company_field': 'Campo da Empresa', - 'company_value': 'Valor da Empresa', - 'credit_field': 'Campo de Crédito', - 'invoice_field': 'Campo da Nota de Pagamento', - 'invoice_surcharge': 'Sobretaxa de Fatura', - 'client_field': 'Campo do Cliente', - 'product_field': 'Campo do Produto', - 'payment_field': 'Campo de Pagamento', - 'contact_field': 'Campo do Contacto', - 'vendor_field': 'Campo do Fornecedor', - 'expense_field': 'Campo da Despesa', - 'project_field': 'Campo do Projeto', - 'task_field': 'Campo da Tarefa', - 'group_field': 'Campo de Grupo', - 'number_counter': 'Contador Numérico', - 'prefix': 'Prefixo', - 'number_pattern': 'Padrão de Numeração', - 'messages': 'Mensagens', - 'custom_css': 'CSS Personalizado', - 'custom_javascript': 'JavaScript Personalizado', - 'signature_on_pdf': 'Mostrar no PDF', - 'signature_on_pdf_help': - 'Mostrar a assinatura do cliente no PDF da nota de pagamento/orçamento.', - '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.', - '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.', - 'require_invoice_signature': 'Assinatura da Nota de Pagamento', - 'require_invoice_signature_help': - '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.', - 'authorization': 'Autorização', - 'subdomain': 'Subdomínio', - 'domain': 'Domínio', - 'portal_mode': 'Modo Portal', - 'email_signature': 'Cumprimentos,', - 'enable_email_markup_help': - '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', - 'email_design': 'Template de E-mail', - 'attach_pdf': 'Anexar PDF', - 'attach_documents': 'Anexar Documentos', - 'attach_ubl': 'Anexar UBL', - 'email_style': 'Estilo de e-mails', - 'enable_email_markup': 'Ativar Marcação', - 'reply_to_email': 'Email de resposta', - 'reply_to_name': 'Responder para nome', - 'bcc_email': 'Email BCC', - 'processed': 'Processado', - 'credit_card': 'Cartão de Crédito', - 'bank_transfer': 'Transferência Bancária', - 'priority': 'Prioridade', - 'fee_amount': 'Valor da Multa', - 'fee_percent': 'Percentagem da Multa', - 'fee_cap': 'Taxa máxima', - 'limits_and_fees': 'Limites/Multas', - 'enable_min': 'Ativar min', - 'enable_max': 'Ativar max', - 'min_limit': 'Min: :min', - 'max_limit': 'Max: :max', - 'min': 'Min', - 'max': 'Max', - 'accepted_card_logos': 'Logótipos de Cartões Aceites', - 'credentials': 'Credenciais', - 'update_address': 'Atualizar Morada', - 'update_address_help': 'Atualizar morada do cliente', - 'rate': 'Valor', - 'tax_rate': 'Imposto', - 'new_tax_rate': 'Novo Imposto', - 'edit_tax_rate': 'Editar Imposto', - 'created_tax_rate': 'Imposto Adicionado', - 'updated_tax_rate': 'Imposto Atualizado', - 'archived_tax_rate': 'Imposto Arquivado', - 'deleted_tax_rate': 'Taxa de imposto excluída com sucesso', - 'restored_tax_rate': 'Taxa de imposto restaurada com sucesso', - 'archived_tax_rates': ':value Taxas de Impostos arquivados com sucesso', - 'deleted_tax_rates': ':value Taxas de Impostos apagados com sucesso', - 'restored_tax_rates': ':value Taxas de Impostos restaurados com sucesso', - 'fill_products': 'Preencher automaticamente produtos', - 'fill_products_help': - 'Ao selecionar o produto descrição e preço serão preenchidos automaticamente', - 'update_products': 'Atualização automática dos produtos', - 'update_products_help': - 'Ao atualizar a nota de pagamento o produto também será atualizado', - 'convert_products': 'Converter Produtos', - 'convert_products_help': - 'Converter automaticamente preços de produtos para a moeda do cliente', - 'fees': 'Taxas', - 'limits': 'Limites', - 'provider': 'Fornecedor', - 'company_gateway': 'Terminal de Pagamento', - 'company_gateways': 'Terminais de Pagamento', - 'new_company_gateway': 'Novo Terminal', - 'edit_company_gateway': 'Editar Terminal', - 'created_company_gateway': 'Terminal Criado com Sucesso', - 'updated_company_gateway': 'Terminal Atualizado com Sucesso', - 'archived_company_gateway': 'Gateway Arquivado com Sucesso', - 'deleted_company_gateway': 'Terminal Apagado com Sucesso', - 'restored_company_gateway': 'Terminal Restaurado com Sucesso', - 'archived_company_gateways': ':value Terminais arquivados com sucesso', - 'deleted_company_gateways': ':value Terminais apagados com sucesso', - 'restored_company_gateways': ':value Terminais restaurados com sucesso', - 'continue_editing': 'Continuar a Editar', - 'discard_changes': 'Descartar Mudanças', - 'default_value': 'Valor padrão', - 'disabled': 'Desativado', - 'currency_format': 'Formato de Moeda', - 'first_day_of_the_week': 'Primeiro Dia da Semana', - 'first_month_of_the_year': 'Primeiro Mês do Ano', - 'sunday': 'Domingo', - 'monday': 'Segunda-Feira', - 'tuesday': 'Terça-Feira', - 'wednesday': 'Quarta-Feira', - 'thursday': 'Quinta-Feira', - 'friday': 'Sexta-Feira', - 'saturday': 'Sábado', - 'january': 'Janeiro', - 'february': 'Fevereiro', - 'march': 'Março', - 'april': 'Abril', - 'may': 'Maio', - 'june': 'Junho', - 'july': 'Julho', - 'august': 'Agosto', - 'september': 'Setembro', - 'october': 'Outubro', - 'november': 'Novembro', - 'december': 'Dezembro', - 'symbol': 'Símbolo', - 'ocde': 'Código', - 'date_format': 'Formato da Data', - 'datetime_format': 'Formato de Data/Hora', - 'military_time': '24h', - 'military_time_help': 'Formato de Hora 24h', - 'send_reminders': 'Enviar Lembretes', - 'timezone': 'Fuso Horário', - 'filtered_by_project': 'Filtrado por Projeto', - 'filtered_by_group': 'Filtrado por Grupo', - 'filtered_by_invoice': 'Filtrado por Fatura', - 'filtered_by_client': 'Filtrado por Cliente', - 'filtered_by_vendor': 'Filtrado por Vendedor', - 'group_settings': 'Configurações de Grupos', - 'group': 'Grupo', - 'groups': 'Grupos', - 'new_group': 'Novo Grupo', - 'edit_group': 'Editar Grupo', - 'created_group': 'Grupo criado com sucesso', - 'updated_group': 'Grupo atualizado com sucesso', - 'archived_groups': ':value Grupos arquivados com sucesso', - 'deleted_groups': ':value Grupos apagados com sucesso', - 'restored_groups': ':value Grupos restaurados com sucesso', - 'archived_group': 'Grupo arquivado com sucesso', - 'deleted_group': 'Grupo removido com sucesso', - 'restored_group': 'Grupo restaurado com sucesso', - 'upload_logo': 'Carregar Logótipo', - 'uploaded_logo': 'Logótipo carregado com sucesso', - 'logo': 'Logo', - 'saved_settings': 'Configurações guardadas com sucesso', - 'product_settings': 'Definições de Produtos', - 'device_settings': 'Configurações do Dispositivo', - 'defaults': 'Padrões', - 'basic_settings': 'Definições Básicas', - 'advanced_settings': 'Definições Avançadas', - 'company_details': 'Detalhes da Empresa', - 'user_details': 'Detalhes do Utilizador', - 'localization': 'Localização', - 'online_payments': 'Pagamentos Online', - 'tax_rates': 'Impostos', - 'notifications': 'Notificações', - 'import_export': 'Importar/Exportar', - 'custom_fields': 'Campos Personalizados', - 'invoice_design': 'Design das Notas de Pagamento', - 'buy_now_buttons': 'Botões Comprar Agora', - 'email_settings': 'Definições de E-mail', - 'templates_and_reminders': 'Modelos & Lembretes', - 'credit_cards_and_banks': 'Contas Bancárias', - 'data_visualizations': 'Visualização de Dados', - 'price': 'Preço', - 'email_sign_up': 'Registo com Email', - 'google_sign_up': 'Registo via Google', - 'thank_you_for_your_purchase': 'Obrigado pela sua compra!', - 'redeem': 'Resgatar', - 'back': 'Voltar', - 'past_purchases': 'Compras Passadas', - 'annual_subscription': 'Assinatura Anual', - 'pro_plan': 'Plano Profissional', - 'enterprise_plan': 'Plano Empresarial', - 'count_users': ':count utilizadores', - 'upgrade': 'Atualizar', - 'please_enter_a_first_name': 'Por favor introduza o primeiro nome', - 'please_enter_a_last_name': 'Por favor introduza o apelido', - 'please_agree_to_terms_and_privacy': - 'Por favor, aceite os termos de serviço e política de privacidade para criar uma conta.', - 'i_agree_to_the': 'Aceito os', - 'terms_of_service': 'Condições do Serviço', - 'privacy_policy': 'Política de Privacidade', - 'sign_up': 'Registar', - 'account_login': 'Iniciar sessão', - 'view_website': 'Ver o Website', - 'create_account': 'Criar Conta', - 'email_login': 'E-mail de Login', - 'create_new': 'Criar Nova', - 'no_record_selected': 'Nenhum registo selecionado', - 'error_unsaved_changes': 'Por favor, guarde ou cancele suas alterações', - 'download': 'Transferir', - 'requires_an_enterprise_plan': 'Necessita de um plano empresarial', - 'take_picture': 'Tirar Fotografia', - 'upload_file': 'Enviar Arquivo', - 'document': 'Documento', - 'documents': 'Documentos', - 'new_document': 'Novo Documento', - 'edit_document': 'Editar Documento', - 'uploaded_document': 'Documento enviado com sucesso', - 'updated_document': 'Documento atualizado com sucesso', - 'archived_document': 'Documento arquivado com sucesso', - 'deleted_document': 'Documento apagado com sucesso', - 'restored_document': 'Documento recuperado com sucesso', - 'archived_documents': ':value Documentos arquivados com sucesso', - 'deleted_documents': ':value Documentos apagados com sucesso', - 'restored_documents': ':value Documentos restaurados com sucesso', - 'no_history': 'Sem Histórico', - 'expense_date': 'Data da Despesa', - 'pending': 'Pendente', - 'expense_status_1': 'Em aberto', - 'expense_status_2': 'Pendente', - 'expense_status_3': 'Faturado', - 'converted': 'Convertido', - 'add_documents_to_invoice': 'Adicionar documento à nota de pag.', - 'exchange_rate': 'Taxa de Câmbio', - 'convert_currency': 'Converter moeda', - 'mark_paid': 'Marcar como Pago', - 'category': 'Categoria', - 'address': 'Morada', - 'new_vendor': 'Novo Fornecedor', - 'created_vendor': 'Fornecedor criado com sucesso', - 'updated_vendor': 'Fornecedor atualizado com sucesso', - 'archived_vendor': 'Fornecedor arquivado com sucesso', - 'deleted_vendor': 'Fornecedor removido com sucesso', - 'restored_vendor': 'Fornecedor restarurado com sucesso', - 'archived_vendors': ':count fornecedores arquivados com sucesso', - 'deleted_vendors': ':count fornecedores removidos com sucesso', - 'restored_vendors': ':value Fornecedores Restaurados com Sucesso', - 'new_expense': 'Introduzir Despesa', - 'created_expense': 'Despesa criada com sucesso', - 'updated_expense': 'Despesa atualizada com sucesso', - 'archived_expense': 'Despesa arquivada com sucesso', - 'deleted_expense': 'Despesa excluída com sucesso', - 'restored_expense': 'Despesa restaurada com sucesso', - 'archived_expenses': 'Despesas arquivadas com sucesso', - 'deleted_expenses': 'Despesas excluídas com sucesso', - 'restored_expenses': ':value Despesas restauradas com sucesso', - 'copy_shipping': 'Copiar Envio', - 'copy_billing': 'Copiar Cobrança', - 'design': 'Modelo', - 'failed_to_find_record': 'Falha ao procurar registo', - 'invoiced': 'Faturado', - 'logged': 'Em aberto', - 'running': 'Em execução', - 'resume': 'Retomar', - 'task_errors': 'Corrija os tempos sobrepostos', - 'start': 'Iniciar', - 'stop': 'Parar', - 'started_task': 'Tarefa iniciada com sucesso', - 'stopped_task': 'Tarefa interrompida', - 'resumed_task': 'Tarefa continuada com sucesso', - 'now': 'Agora', - 'auto_start_tasks': 'Iniciar Tarefas Automaticamente', - 'timer': 'Temporizador', - 'manual': 'Manual', - 'budgeted': 'Orçado', - 'start_time': 'Início', - 'end_time': 'Final', - 'date': 'Data', - 'times': 'Tempo', - 'duration': 'Duração', - 'new_task': 'Nova Tarefa', - 'created_task': 'Tarefa criada', - 'updated_task': 'Tarefa atualizada', - 'archived_task': 'Tarefa arquivada', - 'deleted_task': 'Tarefa apagada', - 'restored_task': 'Tarefa restaurada', - 'archived_tasks': ':count Tarefas arquivadas', - 'deleted_tasks': ':count Tarefas apagadas', - 'restored_tasks': ':value Tarefas restauradas com sucesso', - 'please_enter_a_name': 'Por favor introduza um nome', - 'budgeted_hours': 'Horas Orçadas', - 'created_project': 'Projeto criado com sucesso', - 'updated_project': 'Projeto atualizado com sucesso', - 'archived_project': 'Projeto arquivado com sucesso', - 'deleted_project': 'Projeto apagado com sucesso', - 'restored_project': 'Projeto restaurado com sucesso', - 'archived_projects': ':count projetos arquivados com sucesso', - 'deleted_projects': ':count projectos apagadas com sucesso', - 'restored_projects': ':value Projetos restaurados com sucesso', - 'new_project': 'Novo Projeto', - 'thank_you_for_using_our_app': 'Obrigado por utilizar a nosso aplicação!', - 'if_you_like_it': 'Se gostou por favor', - 'click_here': 'clique aqui', - 'click_here_capital': 'Clique aqui', - 'to_rate_it': 'dê uma avaliação.', - 'average': 'Média', - 'unapproved': 'Não Aprovado', - 'authenticate_to_change_setting': - 'Por favor autentique-se para modificar esta configuração', - 'locked': 'Bloqueado', - 'authenticate': 'Autenticar', - 'please_authenticate': 'Por favor autentique-se', - 'biometric_authentication': 'Autenticação Biométrica', - 'footer': 'Rodapé', - 'compare': 'Comparar', - 'hosted_login': 'Login Hospedado', - 'selfhost_login': 'Login Auto-Hospedado', - 'google_sign_in': 'Iniciar sessão através da Google', - 'today': 'Hoje', - 'custom_range': 'Intervalo Personalizado', - 'date_range': 'Interevalo de Datas', - 'current': 'Atual', - 'previous': 'Anterior', - 'current_period': 'Período Atual', - 'comparison_period': 'Período de Comparação', - 'previous_period': 'Período Anterior', - 'previous_year': 'Ano Anterior', - 'compare_to': 'Comparar com', - 'last7_days': 'Últimos 7 dias', - 'last_week': 'Última Semana', - 'last30_days': 'Últimos 30 dias', - 'this_month': 'Este Mês', - 'last_month': 'Último Mês', - 'this_year': 'Este ano', - 'last_year': 'Último Ano', - 'custom': 'Personalizado', - 'clone_to_invoice': 'Duplicar para Nota de Pagamento', - 'clone_to_quote': 'Duplicar para Orçamento', - 'clone_to_credit': 'Duplicar para crédito', - 'view_invoice': 'Visualizar Nota de Pagamento', - 'convert': 'Converter', - 'more': 'Mais', - 'edit_client': 'Editar Cliente', - 'edit_product': 'Editar Produto', - 'edit_invoice': 'Editar Nota de Pagamento', - 'edit_quote': 'Editar Orçamento', - 'edit_payment': 'Editar Pagamento', - 'edit_task': 'Editar Tarefa', - 'edit_expense': 'Editar Despesa', - 'edit_vendor': 'Editar Fornecedor', - 'edit_project': 'Editar Projeto', - 'edit_recurring_quote': 'Editar Orçamento Recorrente', - 'billing_address': 'Morada de faturação', - 'shipping_address': 'Endereço de envio', - 'total_revenue': 'Total faturado', - 'average_invoice': 'Média por Nota de Pagamento', - 'outstanding': 'Em Aberto', - 'invoices_sent': ':count notas de pag. enviadas', - 'active_clients': 'Clientes ativos', - 'close': 'Fechar', - 'email': 'E-mail', - 'password': 'Palavra-passe', - 'url': 'URL', - 'secret': 'Secret', - 'name': 'Nome', - 'logout': 'Sair', - 'login': 'Iniciar sessão', - 'filter': 'Filtrar', - 'sort': 'Ordenar', - 'search': 'Pesquisa', - 'active': 'Ativo', - 'archived': 'Arquivado', - 'deleted': 'Apagado', - 'dashboard': 'Painel', - 'archive': 'Arquivar', - 'delete': 'Apagar', - 'restore': 'Restaurar', - 'refresh_complete': 'Recarregar Completo', - 'please_enter_your_email': 'Por favor introduza o seu E-mail', - 'please_enter_your_password': 'Por favor introduza a sua palavra-passe', - 'please_enter_your_url': 'Por favor introduza o seu URL', - 'please_enter_a_product_key': 'Por favor introduza uma chave de produto', - 'ascending': 'Ascendente', - 'descending': 'Descendente', - 'save': 'Guardar', - 'an_error_occurred': 'Ocorreu um erro', - 'paid_to_date': 'Pago até à data', - 'balance_due': 'Valor', - 'balance': 'Saldo', - 'overview': 'Resumo', - 'details': 'Detalhes', - 'phone': 'Telefone', - 'website': 'Website', - 'vat_number': 'NIF', - 'id_number': 'Número de Identificação', - 'create': 'Criar', - 'copied_to_clipboard': ':value copiado para a área de transferência', - 'error': 'Erro', - 'could_not_launch': 'Não foi possível iniciar', - 'contacts': 'Contactos', - 'additional': 'Adicional', - 'first_name': 'Primeiro Nome', - 'last_name': 'Apelido', - 'add_contact': 'Adicionar contacto', - 'are_you_sure': 'Tem a certeza?', - 'cancel': 'Cancelar', - 'ok': 'Ok', - 'remove': 'Remover', - 'email_is_invalid': 'Email é inválido', - 'product': 'Produto', - 'products': 'Produtos', - 'new_product': 'Novo Produto', - 'created_product': 'Produto criado', - 'updated_product': 'Produto atualizado', - 'archived_product': 'Produto arquivado', - 'deleted_product': 'Producto apagado com sucesso', - 'restored_product': 'Produto restaurado com sucesso', - 'archived_products': ':count Produtos arquivados com sucesso', - 'deleted_products': ':count produtos apagados com sucesso', - 'restored_products': ':value Produtos restaurados com sucesso', - 'product_key': 'Produto', - 'notes': 'Observações', - 'cost': 'Custo', - 'client': 'Cliente', - 'clients': 'Clientes', - 'new_client': 'Novo Cliente', - 'created_client': 'Cliente criado com sucesso', - 'updated_client': 'Cliente atualizado com sucesso', - 'archived_client': 'Cliente arquivado com sucesso', - 'archived_clients': ':count clientes arquivados com sucesso', - 'deleted_client': 'Clientes removidos com sucesso', - 'deleted_clients': ':count clientes removidos com sucesso', - 'restored_client': 'Cliente restaurado', - 'restored_clients': ':value Clientes restaurados com sucesso', - 'address1': 'Rua', - 'address2': 'Complemento', - 'city': 'Cidade', - 'state': 'Distrito/Província', - 'postal_code': 'Código Postal', - 'country': 'País', - 'invoice': 'Nota Pagamento', - 'invoices': 'Notas Pag.', - 'new_invoice': 'Nova Nota de Pagamento', - 'created_invoice': 'Nota de pagamento criada com sucesso', - 'updated_invoice': 'Nota de pagamento atualizada com sucesso', - 'archived_invoice': 'Nota de pagamento arquivada com sucesso', - 'deleted_invoice': 'Notas de Pagamento apagadas com sucesso', - 'restored_invoice': 'Nota de pagamento restaurada com sucesso', - 'archived_invoices': ':count notas de pagamento arquivadas com sucesso', - 'deleted_invoices': ':count notas de pagamento apagadas com sucesso', - 'restored_invoices': ':value Notas de Pagamento restaurados com sucesso', - 'emailed_invoice': 'Nota de pagamento enviada por e-mail com sucesso', - 'emailed_payment': 'Pagamento enviado por email com sucesso', - 'amount': 'Valor', - 'invoice_number': 'Número NP', - 'invoice_date': 'Data da NP', - 'discount': 'Desconto', - 'po_number': 'Núm. Ordem de Serviço', - 'terms': 'Condições', - 'public_notes': 'Notas Públicas', - 'private_notes': 'Notas Privadas', - 'frequency': 'Frequência', - 'start_date': 'Data Inicial', - 'end_date': 'Data Final', - 'quote_number': 'Número do Orçamento', - 'quote_date': 'Data do Orçamento', - 'valid_until': 'Válido até', - 'items': 'Itens', - 'partial_deposit': 'Depósito/Parcial', - 'description': 'Descrição', - 'unit_cost': 'Preço Unitário', - 'quantity': 'Quantidade', - 'add_item': 'Adicionar Item', - 'contact': 'Contacto', - 'work_phone': 'Telefone', - 'total_amount': 'Quantia Total', - 'pdf': 'PDF', - 'due_date': 'Data de Vencimento', - 'partial_due_date': 'Data de Vencimento Parcial', - 'status': 'Estado', - 'invoice_status_id': 'Estado da Nota de Pagamento', - 'quote_status': 'Estado do Orçamento', - 'click_plus_to_add_item': 'Clique + para adicionar um item', - 'click_plus_to_add_time': 'Clique + para adicionar tempo', - 'count_selected': ':count selecionados', - 'total': 'Total', - 'percent': 'Percentagem', - 'edit': 'Editar', - 'dismiss': 'Dispensar', - 'please_select_a_date': 'Por favor selecione uma data', - 'please_select_a_client': 'Por favor selecione um cliente', - 'please_select_an_invoice': 'Por favor escolha uma nota de pagamento', - 'task_rate': 'Taxa de Tarefas', - 'settings': 'Definições', - 'language': 'Idioma', - 'currency': 'Moeda', - 'created_at': 'Data de Criação', - 'created_on': 'Criado em', - 'updated_at': 'Atualizado', - 'tax': 'Imposto', - 'please_enter_an_invoice_number': - 'Por favor digite um número de nota de pagamento', - 'please_enter_a_quote_number': 'Por favor digite um número de orçamento', - 'past_due': 'Vencido', - 'draft': 'Rascunho', - 'sent': 'Enviado', - 'viewed': 'Visto', - 'approved': 'Aprovado', - 'partial': 'Depósito/Parcial', - 'paid': 'Pago', - 'mark_sent': 'Marcar como Enviada', - 'marked_invoice_as_sent': - 'Sucesso! A nota de pagamento foi marcada como enviada.', - 'marked_invoice_as_paid': - 'Excelente! A nota de pagamento foi marcada como enviada.', - 'marked_invoices_as_sent': - 'Excelente! As notas de pagamento foram marcadas como enviada.', - 'marked_invoices_as_paid': - 'Excelente! As notas de pagamento foram marcadas como enviada.', - 'done': 'Concluído', - 'please_enter_a_client_or_contact_name': - 'Por favor introduza um cliente ou nome de contacto', - 'dark_mode': 'Modo Escuro', - 'restart_app_to_apply_change': - 'Reinicie a aplicação para aplicar a mudança', - 'refresh_data': 'Atualizar Dados', - 'blank_contact': 'Contato Vazio', - 'activity': 'Atividade', - 'no_records_found': 'Nenhum registo encontrado', - 'clone': 'Duplicar', - 'loading': 'A Carregar', - 'industry': 'Indústria', - 'size': 'Tamanho', - 'payment_terms': 'Condições de Pagamento', - 'payment_date': 'Data do Pagamento', - 'payment_status': 'Estado do Pagamento', - 'payment_status_1': 'Pendente', - 'payment_status_2': 'Anulado', - 'payment_status_3': 'Falhou', - 'payment_status_4': 'Completo', - 'payment_status_5': 'Parcialmente Reembolsado', - 'payment_status_6': 'Reembolsado', - 'payment_status_-1': 'Não Aplicado', - 'payment_status_-2': 'Parcialmente Não Aplicado', - 'net': 'Net', - 'client_portal': 'Portal do Cliente', - 'show_tasks': 'Exibir tarefas', - 'email_reminders': 'Lembretes de E-mail', - 'enabled': 'Ativo', - 'recipients': 'Destinatários', - 'initial_email': 'Email inicial', - 'first_reminder': 'Primeiro Lembrete', - 'second_reminder': 'Segundo Lembrete', - 'third_reminder': 'Terceiro Lembrete', - 'reminder1': 'Primeiro Lembrete', - 'reminder2': 'Segundo Lembrete', - 'reminder3': 'Terceiro Lembrete', - 'template': 'Template', - 'send': 'Enviar', - 'subject': 'Assunto', - 'body': 'Conteúdo', - 'send_email': 'Enviar email', - 'email_receipt': 'E-mail para envio do recibo de pagamento', - 'auto_billing': 'Cobrança automática', - 'button': 'Botão', - 'preview': 'Pré-visualizar', - 'customize': 'Personalizar', - 'history': 'Histórico', - 'payment': 'Pagamento', - 'payments': 'Pagamentos', - 'refunded': 'Reembolsado', - 'payment_type': 'Tipo de Pagamento', - 'transaction_reference': 'Referência da Transação', - 'enter_payment': 'Introduzir Pag.', - 'new_payment': 'Introduzir Pagamento', - 'created_payment': 'Pagamento criado com sucesso', - 'updated_payment': 'Pagamento atualizado com sucesso', - 'archived_payment': 'Pagamento arquivado com sucesso', - 'deleted_payment': 'Pagamento apagado com sucesso', - 'restored_payment': 'Pagamento restaurado', - 'archived_payments': ':count pagamentos arquivados com sucesso', - 'deleted_payments': ':count pagamentos apagados com sucesso', - 'restored_payments': ':value Pagamentos restaurados com sucesso', - 'quote': 'Orçamento', - 'quotes': 'Orçamentos', - 'new_quote': 'Novo Orçamento', - 'created_quote': 'Orçamento criado', - 'updated_quote': 'Orçamento atualizado', - 'archived_quote': 'Orçamento arquivado', - 'deleted_quote': 'Orçamento apagado com sucesso', - 'restored_quote': 'Orçamento restaurado', - 'archived_quotes': ':count orçamentos arquivados com sucesso', - 'deleted_quotes': ':count orçamentos apagados com sucesso', - 'restored_quotes': ':value Orçamentos restaurados com sucesso', - 'expense': 'Despesa', - 'expenses': 'Despesas', - 'vendor': 'Fornecedor', - 'vendors': 'Fornecedor', - 'task': 'Tarefa', - 'tasks': 'Tarefas', - 'project': 'Projeto', - 'projects': 'Projetos', - 'activity_1': ':user criou o cliente :client', - 'activity_2': ':user arquivou o cliente :client', - 'activity_3': ':user removeu o cliente :client', - 'activity_4': ':user criou a nota de pagamento :invoice', - 'activity_5': ':user atualizou a nota de pagamento :invoice', - 'activity_6': - ':user enviou nota de pagamento :invoice para :client, :contact', - 'activity_7': ':contact viu a nota de pagamento :invoice para :client', - 'activity_8': ':user arquivou a nota de pagamento :invoice', - 'activity_9': ':user removeu a nota de pagamento :invoice', - 'activity_10': - ':contact introduziu pagamento :payment para :payment_amount na nota de pagamento :invoice para :cliente', - 'activity_11': ':user atualizou o pagamento :payment', - 'activity_12': ':user arquivou o pagamento :payment', - 'activity_13': ':user removeu o pagamento :payment', - 'activity_14': ':user adicionou nota de crédito :credit', - 'activity_15': ':user atualizou nota de crédito :credit', - 'activity_16': ':user arquivou nota de crédito :credit', - 'activity_17': ':user removeu nota de crédito :credit', - 'activity_18': ':user adicionou o orçamento :quote', - 'activity_19': ':user atualizou o orçamento :quote', - 'activity_20': - ':user enviou orçamento :quote por E-mail para :client, :contact', - 'activity_21': ':contact visualizou o orçamento :quote', - 'activity_22': ':user arquivou o orçamento :quote', - 'activity_23': ':user removeu o orçamento :quote', - 'activity_24': ':user restaurou o orçamento :quote', - 'activity_25': ':user restaurou a nota de pagamento :invoice', - 'activity_26': ':user restaurou o cliente :client', - 'activity_27': ':user restaurou o pagamento :payment', - 'activity_28': ':user restaurou a nota de crédito :credit', - 'activity_29': ':contact aprovou o orçamento :quote para :cliente', - 'activity_30': ':user criou o fornecedor :vendor', - 'activity_31': ':user arquivou o fornecedor :vendor', - 'activity_32': ':user apagou o fornecedor :vendor', - 'activity_33': ':user restaurou o fornecedor :vendor', - 'activity_34': ':user criou a despesa :expense', - 'activity_35': ':user arquivou a despesa :expense', - 'activity_36': ':user apagou a despesa :expense', - 'activity_37': ':user restaurou a despesa :expense', - 'activity_39': - ':user cancelou um pagamento de :payment_amount em :payment', - 'activity_40': - ':user reembolsou :adjustment de um pagamento :payment_amount em :payment', - 'activity_41': 'pagamento (:payment) de :payment_amount falhou', - 'activity_42': ':user criou a tarefa :task', - 'activity_43': ':user atualizou a tarefa :task', - 'activity_44': ':user arquivou a tarefa :task', - 'activity_45': ':user apagou a tarefa :task', - 'activity_46': ':user restaurou a tarefa :task', - 'activity_47': ':user atualizou a despesa :expense', - 'activity_48': ':user atualizou o ticket :ticket', - 'activity_49': ':user fechou o ticket :ticket', - 'activity_50': ':user uniu o ticket :ticket', - 'activity_51': ':user dividiu o ticket :ticket', - 'activity_52': ':contact abriu o ticket :ticket', - 'activity_53': ':contact reabriu o ticket :ticket', - 'activity_54': ':user reabriu o ticket :ticket', - 'activity_55': ':contact respondeu ao ticket :ticket', - 'activity_56': ':user visualizou o ticket :ticket', - 'activity_57': 'O sistema falhou ao enviar a nota de pagamento :invoice', - 'activity_58': ':invoice revertida pelo utilizador: user', - 'activity_59': ':invoice cancelada pelo utilizador :user', - 'activity_60': ':contact viu o orçamento :quota', - 'activity_61': ':user atualizou o cliente :client', - 'activity_62': ':user atualizou fornecedor :vendor', - 'activity_63': - ':user emailed first reminder for invoice :invoice to :contact', - 'activity_64': - ':user emailed second reminder for invoice :invoice to :contact', - 'activity_65': - ':user emailed third reminder for invoice :invoice to :contact', - 'activity_66': - ':user emailed endless reminder for invoice :invoice to :contact', - 'activity_80': ':user criou a subscrição :subscription', - 'activity_81': ':user atualizou a subscrição :subscription', - 'activity_82': ':user arquivou a subscrição :subscription', - 'activity_83': ':user apagou a subscrição :subscription', - 'activity_84': ':user restaurou a subscrição :subscription', - 'one_time_password': 'Palavra-passe descartável', - 'emailed_quote': 'Orçamento enviado', - 'emailed_credit': 'Crédito enviado com sucesso', - 'marked_quote_as_sent': 'Orçamento marcado como enviado com sucesso', - 'marked_credit_as_sent': 'Crédito marcado com sucesso como enviado', - 'expired': 'Expirada', - 'all': 'Todos', - 'select': 'Selecionar', - 'long_press_multiselect': 'Seleção múltipla de longa pressão', - 'custom_value1': 'Valor personalizado', - 'custom_value2': 'Valor personalizado', - 'custom_value3': 'Valor Personalizado 3', - 'custom_value4': 'Valor Personalizado 4', - 'email_style_custom': 'Estilo de E-mail Personalizado', - 'custom_message_dashboard': 'Mensagem de Painel Personalizada', - 'custom_message_unpaid_invoice': - 'Mensagem Personalizada de Nota de Pagamento Atrasada', - 'custom_message_paid_invoice': - 'Mensagem Personalizada de Nota de Pagamento Paga', - 'custom_message_unapproved_quote': - 'Mensagem Personalizada de Orçamento Não Aprovado', - 'lock_invoices': 'Bloquear Notas de Pagamento', - 'translations': 'Traduções', - 'task_number_pattern': 'Padrão de Numeração de Tarefa', - 'task_number_counter': 'Contador Numérico de Tarefas', - 'expense_number_pattern': 'Padrão de Numeração de Despesa', - 'expense_number_counter': 'Contador Numérico de Despesas', - 'vendor_number_pattern': 'Padrão Número Fornecedor', - 'vendor_number_counter': 'Contador Número Fornecedor', - 'ticket_number_pattern': 'Padrão de Numeração de Ticket', - 'ticket_number_counter': 'Contador Numérico de Tickets', - 'payment_number_pattern': 'Padrão de Numeração de Pagamento', - 'payment_number_counter': 'Contador Numérico de Pagamentos', - 'invoice_number_pattern': 'Padrão de Numeração de Fatura', - 'invoice_number_counter': 'Numeração das', - 'quote_number_pattern': 'Padrão de Numeração de Orçamento', - 'quote_number_counter': 'Numeração dos Orçamentos', - 'client_number_pattern': 'Padrão de Numeração de Crédito', - 'client_number_counter': 'Contador Numérico de Créditos', - 'credit_number_pattern': 'Padrão de Numeração de Crédito', - 'credit_number_counter': 'Contador Numérico de Créditos', - 'reset_counter_date': 'Reiniciar Data do Contador', - 'counter_padding': 'Padrão do Contador', - 'shared_invoice_quote_counter': - 'Contador de cotação de fatura compartilhada', - 'default_tax_name_1': 'Nome fiscal padrão 1', - 'default_tax_rate_1': 'Taxa de imposto padrão 1', - 'default_tax_name_2': 'Nome fiscal padrão 2', - 'default_tax_rate_2': 'Taxa de imposto padrão 2', - 'default_tax_name_3': 'Nome fiscal padrão 3', - 'default_tax_rate_3': 'Taxa de imposto padrão 3', - 'email_subject_invoice': 'Assunto do E-mail de Fatura', - 'email_subject_quote': 'Assunto do E-mail de Orçamento', - 'email_subject_payment': 'Assunto do E-mail de Pagamento', - 'email_subject_payment_partial': 'Assunto de pagamento parcial por email', - 'show_table': 'Mostrar Tabelas', - 'show_list': 'Mostrar Lista', - 'client_city': 'Cidade do Cliente', - 'client_state': 'Distrito do Cliente', - 'client_country': 'País do Cliente', - 'client_is_active': 'Cliente Ativo', - 'client_balance': 'Saldo do Cliente', - 'client_address1': 'Endereço do cliente', - 'client_address2': 'Andar / Fração do Cliente', - 'vendor_address1': 'Morada Fornecedor', - 'vendor_address2': 'Andar / Fração Fornecedor', - 'client_shipping_address1': 'Endereço de entrega', - 'client_shipping_address2': 'Andar / Fração do Cliente', - 'type': 'Tipo', - 'invoice_amount': 'Total da Nota de Pagamento', - 'invoice_due_date': 'Data de vencimento', - 'tax_rate1': 'Taxa de imposto 1', - 'tax_rate2': 'Taxa de imposto 2', - 'tax_rate3': 'Taxa de imposto 3', - 'auto_bill': 'Cobrança Automática', - 'archived_at': 'Arquivado em', - 'has_expenses': 'Tem despesas', - 'custom_taxes1': 'Impostos personalizados 1', - 'custom_taxes2': 'Impostos personalizados 2', - 'custom_taxes3': 'Impostos personalizados 3', - 'custom_taxes4': 'Impostos personalizados 4', - 'custom_surcharge1': 'Sobretaxa Personalizada 1', - 'custom_surcharge2': 'Sobretaxa Personalizada 2', - 'custom_surcharge3': 'Sobretaxa Personalizada 3', - 'custom_surcharge4': 'Sobretaxa Personalizada 4', - 'is_deleted': 'Apagado', - 'vendor_city': 'Cidade Fornecedor', - 'vendor_state': 'Distrito Fornecedor', - 'vendor_country': 'País Fornecedor', - 'is_approved': 'Está aprovado', - 'tax_name': 'Nome do Imposto', - 'tax_amount': 'Quantia de Impostos', - 'tax_paid': 'Impostos pagos', - 'payment_amount': 'Valor do Pagamento', - 'age': 'Idade', - 'is_running': 'Em execução', - 'time_log': 'Registo de Tempo', - 'bank_id': 'Banco', - 'expense_category_id': 'ID da Categoria de Despesa', - 'expense_category': 'Categoria de Despesas', - 'invoice_currency_id': 'ID da Moeda da Nota de Pagamento', - 'tax_name1': 'Imposto 1', - 'tax_name2': 'Imposto 2', - 'tax_name3': 'Imposto 3', - 'transaction_id': 'ID de transação', - 'status_color_theme': 'Status Color Theme', - 'load_color_theme': 'Load Color Theme', - }, - 'ro': { - 'client_shipping_state': 'Client Shipping State', - 'client_shipping_city': 'Client Shipping City', - 'client_shipping_postal_code': 'Client Shipping Postal Code', - 'client_shipping_country': 'Client Shipping Country', - 'load_pdf': 'Load PDF', - 'start_free_trial': 'Start Free Trial', - 'start_free_trial_message': - 'Start your FREE 14 day trial of the pro plan', - 'due_on_receipt': 'Due on Receipt', - 'is_paid': 'Is Paid', - 'age_group_paid': 'Paid', - 'id': 'Id', - 'convert_to': 'Convert To', - 'client_currency': 'Client Currency', - 'company_currency': 'Company Currency', - 'purged_client': 'Successfully purged client', - 'custom_emails_disabled_help': - 'To prevent spam we require upgrading to a paid account to customize the email', - 'upgrade_to_add_company': 'Upgrade your plan to add companies', - 'file_saved_in_downloads_folder': - 'The file has been saved in the downloads folder', - 'small': 'Small', - 'marked_credit_as_paid': 'Successfully marked credit as paid', - 'marked_credits_as_paid': 'Successfully marked credits as paid', - 'wait_for_loading': 'Data loading - please wait for it to complete', - 'wait_for_saving': 'Data saving - please wait for it to complete', - 'html_preview_warning': - 'Note: changes made here are only previewed, they must be applied in the tabs above to be saved', - 'remaining': 'Remaining', - 'invoice_paid': 'Invoice Paid', - 'activity_120': ':user created recurring expense :recurring_expense', - 'activity_121': ':user updated recurring expense :recurring_expense', - 'activity_122': ':user archived recurring expense :recurring_expense', - 'activity_123': ':user deleted recurring expense :recurring_expense', - 'activity_124': ':user restored recurring expense :recurring_expense', - 'normal': 'Normal', - 'large': 'Large', - 'extra_large': 'Extra Large', - 'show_pdf_preview': 'Show PDF Preview', - 'show_pdf_preview_help': 'Display PDF preview while editing invoices', - 'print_pdf': 'Print PDF', - 'remind_me': 'Remind Me', - 'instant_bank_pay': 'Instant Bank Pay', - 'click_selected': 'Click Selected', - 'hide_preview': 'Hide Preview', - 'edit_record': 'Edit Record', - 'credit_is_more_than_invoice': - 'The credit amount can not be more than the invoice amount', - 'giropay': 'GiroPay', - 'direct_debit': 'Direct Debit', - 'please_set_a_password': 'Please set an account password', - 'set_password': 'Stabilește Parola', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', - 'disconnected_gateway': 'Successfully disconnected gateway', - 'disconnect': 'Disconnect', - 'add_to_invoices': 'Add to Invoices', - 'acss': 'Pre-authorized debit payments', - 'becs': 'BECS Direct Debit', - 'bulk_download': 'Download', - 'persist_data_help': - 'Save data locally to enable the app to start faster, disabling may improve performance in large accounts', - 'persist_ui': 'Persist UI', - 'persist_ui_help': - 'Save UI state locally to enable the app to start at the last location, disabling may improve performance', - 'client_postal_code': 'Client Postal Code', - 'client_vat_number': 'Client VAT Number', - 'has_tasks': 'Has Tasks', - 'registration': 'Registration', - 'unauthorized_stripe_warning': - 'Please authorize Stripe to accept online payments.', - 'view_expense': 'View expense # :expense', - 'view_statement': 'Vezi Extras', - 'sepa': 'SEPA Direct Debit', - 'ideal': 'iDEAL', - 'przelewy24': 'Przelewy24', - 'eps': 'EPS', - 'fpx': 'FPX', - 'update_all_records': 'Update all records', - 'system': 'Sistem', - 'set_default_company': 'Set Default Company', - 'updated_company': 'Successfully updated company', - 'kbc': 'KBC', - 'bancontact': 'Bancontact', - 'why_are_you_leaving': 'Help us improve by telling us why (optional)', - 'webhook_success': 'Webhook Success', - 'error_cross_client_tasks': 'Tasks must all belong to the same client', - 'error_cross_client_expenses': - 'Expenses must all belong to the same client', - 'app': 'App', - 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Gross line total', - 'bulk_email_invoice': 'Email Invoice', - 'bulk_email_quote': 'Email Quote', - 'bulk_email_credit': 'Email Credit', - 'from_name': 'From Name', - 'clone_to_expense': 'Clone to expense', - 'recurring_expense': 'Recurring Expense', - 'recurring_expenses': 'Recurring Expenses', - 'new_recurring_expense': 'New Recurring Expense', - 'edit_recurring_expense': 'Edit Recurring Expense', - 'created_recurring_expense': 'Successfully created recurring expense', - 'updated_recurring_expense': 'Successfully updated recurring expense', - 'archived_recurring_expense': 'Successfully archived recurring expense', - 'deleted_recurring_expense': 'Successfully deleted project', - 'removed_recurring_expense': 'Successfully removed recurring expense', - 'restored_recurring_expense': 'Successfully restored recurring expense', - 'search_recurring_expense': 'Search Recurring Expense', - 'search_recurring_expenses': 'Search Recurring Expenses', - 'last_sent_date': 'Last Sent Date', - 'include_drafts': 'Include Drafts', - 'include_drafts_help': 'Include draft records in reports', - 'is_invoiced': 'Is Invoiced', - 'change_plan': 'Change Plan', - 'persist_data': 'Persist Data', - 'customer_count': 'Customer Count', - 'verify_customers': 'Verify Customers', - 'google_analytics': 'Google Analytics', - 'google_analytics_tracking_id': 'Google Analytics Tracking ID', - 'decimal_comma': 'Decimal Comma', - 'use_comma_as_decimal_place': 'Use comma as decimal place in forms', - 'select_method': 'Select Method', - 'select_platform': 'Select Platform', - 'use_web_app_to_connect_gmail': - 'Please use the web app to connect to Gmail', - 'expense_tax_help': 'Item tax rates are disabled', - 'enable_markdown': 'Enable Markdown', - 'enable_markdown_help': 'Convert markdown to HTML on the PDF', - 'user_guide': 'User Guide', - 'add_second_contact': 'Add Second Contact', - 'previous_page': 'Previous Page', - 'next_page': 'Next Page', - 'export_colors': 'Export Colors', - 'import_colors': 'Import Colors', - 'clear_all': 'Clear All', - 'contrast': 'Contrast', - 'custom_colors': 'Custom Colors', - 'colors': 'Colors', - 'sidebar_active_background_color': 'Sidebar Active Background Color', - 'sidebar_active_font_color': 'Sidebar Active Font Color', - 'sidebar_inactive_background_color': 'Sidebar Inactive Background Color', - 'sidebar_inactive_font_color': 'Sidebar Inactive Font Color', - 'table_alternate_row_background_color': - 'Table Alternate Row Background Color', - 'invoice_header_background_color': 'Invoice Header Background Color', - 'invoice_header_font_color': 'Invoice Header Font Color', - 'net_subtotal': 'Net', - 'review_app': 'Review App', - 'check_status': 'Check Status', - 'free_trial': 'Free Trial', - 'free_trial_ends_in_days': - 'The Pro plan trial ends in :count days, click to upgrade.', - 'free_trial_ends_today': - 'Today is the last day of the Pro plan trial, click to upgrade.', - 'change_email': 'Change Email', - 'client_portal_domain_hint': - 'Optionally configure a separate client portal domain', - 'tasks_shown_in_portal': 'Tasks Shown in Portal', - 'uninvoiced': 'Uninvoiced', - 'subdomain_guide': - 'The subdomain is used in the client portal to personalize links to match your brand. ie, https://your-brand.invoicing.co', - 'send_time': 'Send Time', - 'import_data': 'Importă Date', - 'import_settings': 'Import Settings', - 'json_file_missing': 'Please provide the JSON file', - 'json_option_missing': 'Please select to import the settings and/or data', - 'json': 'JSON', - 'no_payment_types_enabled': 'No payment types enabled', - 'wait_for_data': 'Please wait for the data to finish loading', - 'net_total': 'Net Total', - 'has_taxes': 'Has Taxes', - 'import_customers': 'Import Customers', - 'imported_customers': 'Successfully started importing customers', - 'login_success': 'Successful Login', - 'login_failure': 'Failed Login', - 'exported_data': - 'Once the file is ready you\"ll receive an email with a download link', - 'include_deleted_clients': 'Include Deleted Clients', - 'include_deleted_clients_help': - 'Load records belonging to deleted clients', - 'step_1_sign_in': 'Step 1: Sign In', - 'step_2_authorize': 'Step 2: Authorize', - 'account_id': 'Account ID', - 'migration_not_yet_completed': 'The migration has not yet completed', - 'activity_100': ':user created recurring invoice :recurring_invoice', - 'activity_101': ':user updated recurring invoice :recurring_invoice', - 'activity_102': ':user archived recurring invoice :recurring_invoice', - 'activity_103': ':user deleted recurring invoice :recurring_invoice', - 'activity_104': ':user restored recurring invoice :recurring_invoice', - 'show_task_end_date': 'Show Task End Date', - 'show_task_end_date_help': 'Enable specifying the task end date', - 'gateway_setup': 'Gateway Setup', - 'preview_sidebar': 'Preview Sidebar', - 'years_data_shown': 'Years Data Shown', - 'ended_all_sessions': 'Successfully ended all sessions', - 'end_all_sessions': 'End All Sessions', - 'count_session': '1 Session', - 'count_sessions': ':count Sessions', - 'invoice_created': 'Invoice Created', - 'quote_created': 'Quote Created', - 'credit_created': 'Credit Created', - 'pro': 'Pro', - 'enterprise': 'Enterprise', - 'last_updated': 'Last Updated', - 'invoice_item': 'Invoice Item', - 'quote_item': 'Quote Item', - 'contact_first_name': 'Contact First Name', - 'contact_last_name': 'Contact Last Name', - 'order': 'Order', - 'unassigned': 'Unassigned', - 'partial_value': 'Trebuie să fie mai mare ca zero și mai mic ca totalul', - 'search_kanban': 'Search Kanban', - 'search_kanbans': 'Search Kanban', - 'kanban': 'Kanban', - 'enable': 'Activeaza', - 'move_top': 'Move Top', - 'move_up': 'Move Up', - 'move_down': 'Move Down', - 'move_bottom': 'Move Bottom', - 'subdomain_help': - 'Set the subdomain or display the invoice on your own website.', - 'body_variable_missing': - 'Error: the custom email must include a :body variable', - 'add_body_variable_message': 'Make sure to include a :body variable', - 'view_date_formats': 'View Date Formats', - 'is_viewed': 'Is Viewed', - 'letter': 'Letter', - 'legal': 'Legal', - 'page_layout': 'Page Layout', - 'portrait': 'Portrait', - 'landscape': 'Landscape', - 'owner_upgrade_to_paid_plan': - 'The account owner can upgrade to a paid plan to enable the advanced advanced settings', - 'upgrade_to_paid_plan': - 'Upgrade to a paid plan to enable the advanced settings', - 'invoice_payment_terms': 'Invoice Payment Terms', - 'quote_valid_until': 'Quote Valid Until', - 'no_headers': 'No Headers', - 'add_header': 'Add Header', - 'remove_header': 'Remove Header', - 'return_url': 'Return URL', - 'rest_method': 'REST Method', - 'header_key': 'Header Key', - 'header_value': 'Header Value', - 'recurring_products': 'Recurring Products', - 'promo_code': 'Promo code', - 'promo_discount': 'Promo Discount', - 'allow_cancellation': 'Allow Cancellation', - 'per_seat_enabled': 'Per Seat Enabled', - 'max_seats_limit': 'Max Seats Limit', - 'trial_enabled': 'Trial Enabled', - 'trial_duration': 'Trial Duration', - 'allow_query_overrides': 'Allow Query Overrides', - 'allow_plan_changes': 'Allow Plan Changes', - 'plan_map': 'Plan Map', - 'refund_period': 'Refund Period', - 'webhook_configuration': 'Webhook Configuration', - 'purchase_page': 'Purchase Page', - 'security': 'Security', - 'email_bounced': 'Email Bounced', - 'email_spam_complaint': 'Spam Complaint', - 'email_delivery': 'Email Delivery', - 'webhook_response': 'Webhook Response', - 'pdf_response': 'PDF Response', - 'authentication_failure': 'Authentication Failure', - 'pdf_failed': 'PDF Failed', - 'pdf_success': 'PDF Success', - 'modified': 'Modified', - 'subscription': 'Subscription', - 'subscriptions': 'Subscriptions', - 'new_subscription': 'New Subscription', - 'edit_subscription': 'Edit Subscription', - 'created_subscription': 'Successfully created subscription', - 'updated_subscription': 'Successfully updated subscription', - 'archived_subscription': 'Successfully archived subscription', - 'deleted_subscription': 'Successfully deleted subscription', - 'removed_subscription': 'Successfully removed subscription', - 'restored_subscription': 'Successfully restored subscription', - 'search_subscription': 'Search 1 Subscription', - 'search_subscriptions': 'Search :count Subscriptions', - 'subdomain_is_not_available': 'Subdomain is not available', - 'connect_gmail': 'Connect Gmail', - 'disconnect_gmail': 'Disconnect Gmail', - 'connected_gmail': 'Successfully connected Gmail', - 'disconnected_gmail': 'Successfully disconnected Gmail', - 'update_fail_help': - 'Changes to the codebase may be blocking the update, you can run this command to discard the changes:', - 'client_id_number': 'Client ID Number', - 'count_minutes': ':count Minutes', - 'password_timeout': 'Password Timeout', - 'shared_invoice_credit_counter': 'Shared Invoice/Credit Counter', - 'use_last_email': 'Use last email', - 'activate_company': 'Activate Company', - 'activate_company_help': - 'Enable emails, recurring invoices and notifications', - 'an_error_occurred_try_again': 'An error occurred, please try again', - 'please_first_set_a_password': 'Please first set a password', - 'changing_phone_disables_two_factor': - 'Warning: Changing your phone number will disable 2FA', - 'help_translate': 'Help Translate', - 'please_select_a_country': 'Please select a country', - 'resend_invite': 'Resend Invitation', - 'disabled_two_factor': 'Successfully disabled 2FA', - 'connected_google': 'Successfully connected account', - 'disconnected_google': 'Successfully disconnected account', - 'delivered': 'Delivered', - 'bounced': 'Bounced', - 'spam': 'Spam', - 'view_docs': 'View Docs', - 'enter_phone_to_enable_two_factor': - 'Please provide a mobile phone number to enable two factor authentication', - 'send_sms': 'Send SMS', - 'sms_code': 'SMS Code', - 'two_factor_setup_help': 'Scan the bar code with a :link compatible app.', - 'enabled_two_factor': 'Successfully enabled Two-Factor Authentication', - 'connect_google': 'Connect Google', - 'disconnect_google': 'Disconnect Google', - 'enable_two_factor': 'Two-Factor Authentication', - 'disable_two_factor': 'Disable Two Factor', - 'require_password_with_social_login': - 'Require Password with Social Login', - 'stay_logged_in': 'Stay Logged In', - 'session_about_to_expire': 'Warning: Your session is about to expire', - 'count_hours': ':count Hours', - 'count_day': '1 Day', - 'count_days': ':count Days', - 'web_session_timeout': 'Web Session Timeout', - 'security_settings': 'Security Settings', - 'resend_email': 'Resend Email', - 'confirm_your_email_address': 'Please confirm your email address', - 'refunded_payment': 'Refunded Payment', - 'partially_unapplied': 'Partially Unapplied', - 'select_a_gmail_user': 'Please select a user authenticated with Gmail', - 'list_long_press': 'List Long Press', - 'show_actions': 'Show Actions', - 'start_multiselect': 'Start Multiselect', - 'email_sent_to_confirm_email': - 'An email has been sent to confirm the email address', - 'counter_pattern_error': - 'To use :client_counter please add either :client_number or :client_id_number to prevent conflicts', - 'this_quarter': 'This Quarter', - 'last_quarter': 'Last Quarter', - 'to_update_run': 'To update run', - 'convert_to_invoice': 'Transformă în Factură', - 'registration_url': 'Registration URL', - 'invoice_project': 'Invoice Project', - 'invoice_task': 'Făcturează task', - 'invoice_expense': 'Invoice Expense', - 'search_payment_term': 'Search 1 Payment Term', - 'search_payment_terms': 'Search :count Payment Terms', - 'save_and_preview': 'Save and Preview', - 'save_and_email': 'Save and Email', - 'supported_events': 'Supported Events', - 'converted_amount': 'Converted Amount', - 'converted_balance': 'Converted Balance', - 'converted_paid_to_date': 'Converted Paid to Date', - 'converted_credit_balance': 'Converted Credit Balance', - 'converted_total': 'Converted Total', - 'is_sent': 'Is Sent', - 'default_documents': 'Default Documents', - 'document_upload': 'Document Upload', - 'document_upload_help': 'Enable clients to upload documents', - 'expense_total': 'Expense Total', - 'enter_taxes': 'Enter Taxes', - 'by_rate': 'By Rate', - 'by_amount': 'By Amount', - 'enter_amount': 'Enter Amount', - 'before_taxes': 'Before Taxes', - 'after_taxes': 'After Taxes', - 'color': 'Color', - 'show': 'Show', - 'hide': 'Ascunde', - 'empty_columns': 'Empty Columns', - 'debug_mode_is_enabled': 'Debug mode is enabled', - 'debug_mode_is_enabled_help': - 'Warning: it is intended for use on local machines, it can leak credentials. Click to learn more.', - 'running_tasks': 'Running Tasks', - 'recent_tasks': 'Recent Tasks', - 'recent_expenses': 'Recent Expenses', - 'upcoming_expenses': 'Upcoming Expenses', - 'update_app': 'Update App', - 'started_import': 'Successfully started import', - 'duplicate_column_mapping': 'Duplicate column mapping', - 'uses_inclusive_taxes': 'Uses Inclusive Taxes', - 'is_amount_discount': 'Is Amount Discount', - 'column': 'Coloana', - 'sample': 'Exemplar', - 'map_to': 'Map To', - 'import': 'Importa', - 'first_row_as_column_names': 'Use first row as column names', - 'select_file': 'Alege un fisier', - 'no_file_selected': 'No File Selected', - 'csv_file': 'fisier CSV', - 'csv': 'CSV', - 'freshbooks': 'FreshBooks', - 'invoice2go': 'Invoice2go', - 'invoicely': 'Invoicely', - 'waveaccounting': 'Wave Accounting', - 'zoho': 'Zoho', - 'accounting': 'Accounting', - 'required_files_missing': 'Please provide all CSVs.', - 'import_type': 'Import Type', - 'html_mode': 'HTML Mode', - 'html_mode_help': 'Preview updates faster but is less accurate', - 'view_licenses': 'View Licenses', - 'webhook_url': 'Webhook URL', - 'fullscreen_editor': 'Fullscreen Editor', - 'sidebar_editor': 'Sidebar Editor', - 'please_type_to_confirm': 'Please type \":value\" to confirm', - 'purge': 'Purge', - 'service': 'Service', - 'clone_to': 'Clone To', - 'clone_to_other': 'Clone to Other', - 'labels': 'Labels', - 'add_custom': 'Add Custom', - 'payment_tax': 'Payment Tax', - 'unpaid': 'Unpaid', - 'white_label': 'White Label', - 'delivery_note': 'Delivery Note', - 'sent_invoices_are_locked': 'Sent invoices are locked', - 'paid_invoices_are_locked': 'Paid invoices are locked', - 'source_code': 'Source Code', - 'app_platforms': 'App Platforms', - 'invoice_late': 'Invoice Late', - 'quote_expired': 'Quote Expired', - 'partial_due': 'Partial Due', - 'invoice_total': 'Total factura', - 'quote_total': 'Total Proforma', - 'credit_total': 'Credit Total', - 'recurring_invoice_total': 'Invoice Total', - 'actions': 'Actions', - 'expense_number': 'Expense Number', - 'task_number': 'Task Number', - 'project_number': 'Project Number', - 'project_name': 'Project Name', - 'warning': 'Warning', - 'view_settings': 'View Settings', - 'company_disabled_warning': - 'Warning: this company has not yet been activated', - 'late_invoice': 'Late Invoice', - 'expired_quote': 'Expired Quote', - 'remind_invoice': 'Remind Invoice', - 'cvv': 'CVV', - 'client_name': 'Nume Client', - 'client_phone': 'Client Phone', - 'required_fields': 'Required Fields', - 'calculated_rate': 'Calculated Rate', - 'default_task_rate': 'Default Task Rate', - 'clear_cache': 'Clear Cache', - 'sort_order': 'Sort Order', - 'task_status': 'Status', - 'task_statuses': 'Task Statuses', - 'new_task_status': 'New Task Status', - 'edit_task_status': 'Edit Task Status', - 'created_task_status': 'Successfully created task status', - 'updated_task_status': 'Successfully update task status', - 'archived_task_status': 'Successfully archived task status', - 'deleted_task_status': 'Successfully deleted task status', - 'removed_task_status': 'Successfully removed task status', - 'restored_task_status': 'Successfully restored task status', - 'archived_task_statuses': 'Successfully archived :value task statuses', - 'deleted_task_statuses': 'Successfully deleted :value task statuses', - 'restored_task_statuses': 'Successfully restored :value task statuses', - 'search_task_status': 'Search 1 Task Status', - 'search_task_statuses': 'Search :count Task Statuses', - 'show_tasks_table': 'Show Tasks Table', - 'show_tasks_table_help': - 'Always show the tasks section when creating invoices', - 'invoice_task_timelog': 'Invoice Task Timelog', - 'invoice_task_timelog_help': 'Add time details to the invoice line items', - 'invoice_task_datelog': 'Invoice Task Datelog', - 'invoice_task_datelog_help': 'Add date details to the invoice line items', - 'auto_start_tasks_help': 'Start tasks before saving', - 'configure_statuses': 'Configure Statuses', - 'task_settings': 'Task Settings', - 'configure_categories': 'Configure Categories', - 'expense_categories': 'Expense Categories', - 'new_expense_category': 'New Expense Category', - 'edit_expense_category': 'Edit Expense Category', - 'created_expense_category': 'Successfully created expense category', - 'updated_expense_category': 'Successfully updated expense category', - 'archived_expense_category': 'Successfully archived expense category', - 'deleted_expense_category': 'Successfully deleted category', - 'removed_expense_category': 'Successfully removed expense category', - 'restored_expense_category': 'Successfully restored expense category', - 'archived_expense_categories': - 'Successfully archived :count expense category', - 'deleted_expense_categories': - 'Successfully deleted expense :value categories', - 'restored_expense_categories': - 'Successfully restored expense :value categories', - 'search_expense_category': 'Search 1 Expense Category', - 'search_expense_categories': 'Search :count Expense Categories', - 'use_available_credits': 'Use Available Credits', - 'show_option': 'Show Option', - 'negative_payment_error': - 'The credit amount cannot exceed the payment amount', - 'view_changes': 'View Changes', - 'force_update': 'Force Update', - 'force_update_help': - 'You are running the latest version but there may be pending fixes available.', - 'mark_paid_help': 'Track the expense has been paid', - 'should_be_invoiced': 'Should be invoiced', - 'should_be_invoiced_help': 'Enable the expense to be invoiced', - 'add_documents_to_invoice_help': 'Make the documents visible', - 'convert_currency_help': 'Set an exchange rate', - 'expense_settings': 'Expense Settings', - 'clone_to_recurring': 'Clone to Recurring', - 'crypto': 'Crypto', - 'paypal': 'PayPal', - 'alipay': 'Alipay', - 'sofort': 'Sofort', - 'apple_pay': 'Apple/Google Pay', - 'user_field': 'User Field', - 'variables': 'Variables', - 'show_password': 'Show Password', - 'hide_password': 'Hide Password', - 'copy_error': 'Copy Error', - 'capture_card': 'Capture Card', - 'auto_bill_enabled': 'Auto Bill Enabled', - 'total_taxes': 'Total Taxes', - 'line_taxes': 'Line Taxes', - 'total_fields': 'Total Fields', - 'stopped_recurring_invoice': 'Successfully stopped recurring invoice', - 'started_recurring_invoice': 'Successfully started recurring invoice', - 'resumed_recurring_invoice': 'Successfully resumed recurring invoice', - 'gateway_refund': 'Gateway Refund', - 'gateway_refund_help': 'Process the refund with the payment gateway', - 'due_date_days': 'Due Date', - 'paused': 'Paused', - 'mark_active': 'Mark Active', - 'day_count': 'Day :count', - 'first_day_of_the_month': 'First Day of the Month', - 'last_day_of_the_month': 'Last Day of the Month', - 'use_payment_terms': 'Use Payment Terms', - 'endless': 'Endless', - 'next_send_date': 'Next Send Date', - 'remaining_cycles': 'Remaining Cycles', - 'recurring_invoice': 'Factura Recurenta', - 'recurring_invoices': 'Facturi Recurente', - 'new_recurring_invoice': 'Adauga Factura Recurenta', - 'edit_recurring_invoice': 'Editare factura recurenta', - 'created_recurring_invoice': 'Successfully created recurring invoice', - 'updated_recurring_invoice': 'Successfully updated recurring invoice', - 'archived_recurring_invoice': 'Factură recurentă arhivată cu succes', - 'deleted_recurring_invoice': 'Factură recurentă ștearsă cu succes', - 'removed_recurring_invoice': 'Successfully removed recurring invoice', - 'restored_recurring_invoice': 'Factură recurentă restaurată cu succes', - 'archived_recurring_invoices': - 'Successfully archived recurring :value invoices', - 'deleted_recurring_invoices': - 'Successfully deleted recurring :value invoices', - 'restored_recurring_invoices': - 'Successfully restored recurring :value invoices', - 'search_recurring_invoice': 'Search 1 Recurring Invoice', - 'search_recurring_invoices': 'Search :count Recurring Invoices', - 'send_date': 'Send Date', - 'auto_bill_on': 'Auto Bill On', - 'minimum_under_payment_amount': 'Minimum Under Payment Amount', - 'profit': 'Profit', - 'line_item': 'Line Item', - 'allow_over_payment': 'Allow Over Payment', - 'allow_over_payment_help': 'Support paying extra to accept tips', - 'allow_under_payment': 'Allow Under Payment', - 'allow_under_payment_help': - 'Support paying at minimum the partial/deposit amount', - 'test_mode': 'Test Mode', - 'opened': 'Opened', - 'payment_reconciliation_failure': 'Reconciliation Failure', - 'payment_reconciliation_success': 'Reconciliation Success', - 'gateway_success': 'Gateway Success', - 'gateway_failure': 'Gateway Failure', - 'gateway_error': 'Gateway Error', - 'email_send': 'Email Send', - 'email_retry_queue': 'Email Retry Queue', - 'failure': 'Failure', - 'quota_exceeded': 'Quota Exceeded', - 'upstream_failure': 'Upstream Failure', - 'system_logs': 'System Logs', - 'view_portal': 'View Portal', - 'copy_link': 'Copy Link', - 'token_billing': 'Salvează datele cardului', - 'welcome_to_invoice_ninja': 'Welcome to Invoice Ninja', - 'always': 'Always', - 'optin': 'Opt-In', - 'optout': 'Opt-Out', - 'label': 'Label', - 'client_number': 'Client Number', - 'auto_convert': 'Auto Convert', - 'company_name': 'Company Name', - 'reminder1_sent': 'Reminder 1 Sent', - 'reminder2_sent': 'Reminder 2 Sent', - 'reminder3_sent': 'Reminder 3 Sent', - 'reminder_last_sent': 'Reminder Last Sent', - 'pdf_page_info': 'Page :current of :total', - 'emailed_invoices': 'Successfully emailed invoices', - 'emailed_quotes': 'Successfully emailed quotes', - 'emailed_credits': 'Successfully emailed credits', - 'gateway': 'Gateway', - 'view_in_stripe': 'View in Stripe', - 'rows_per_page': 'Rows Per Page', - 'hours': 'Ore', - 'statement': 'Extras', - 'taxes': 'Taxe', - 'surcharge': 'Surcharge', - 'apply_payment': 'Apply Payment', - 'apply_credit': 'Apply Credit', - 'apply': 'Apply', - 'unapplied': 'Unapplied', - 'select_label': 'Select Label', - 'custom_labels': 'Custom Labels', - 'record_type': 'Record Type', - 'record_name': 'Record Name', - 'file_type': 'File Type', - 'height': 'Height', - 'width': 'Width', - 'to': 'Către', - 'health_check': 'Health Check', - 'payment_type_id': 'Tip plata', - 'last_login_at': 'Last Login At', - 'company_key': 'Company Key', - 'storefront': 'Storefront', - 'storefront_help': 'Enable third-party apps to create invoices', - 'client_created': 'Client Created', - 'online_payment_email': 'Online Payment Email', - 'manual_payment_email': 'Manual Payment Email', - 'completed': 'Completed', - 'gross': 'Gross', - 'net_amount': 'Net Amount', - 'net_balance': 'Net Balance', - 'client_settings': 'Client Settings', - 'selected_invoices': 'Selected Invoices', - 'selected_payments': 'Selected Payments', - 'selected_quotes': 'Selected Quotes', - 'selected_tasks': 'Selected Tasks', - 'selected_expenses': 'Selected Expenses', - 'upcoming_invoices': 'Facturi urmatoare', - 'past_due_invoices': 'Past Due Invoices', - 'recent_payments': 'Plati recente', - 'upcoming_quotes': 'Proforme următoare', - 'expired_quotes': 'Proforme expirate', - 'create_client': 'Create Client', - 'create_invoice': 'Creaza factura', - 'create_quote': 'Creaza Proforma', - 'create_payment': 'Create Payment', - 'create_vendor': 'Create vendor', - 'update_quote': 'Update Quote', - 'delete_quote': 'Sterge Proforma', - 'update_invoice': 'Update Invoice', - 'delete_invoice': 'Sterge factura', - 'update_client': 'Update Client', - 'delete_client': 'Sterge client', - 'delete_payment': 'Sterge plata', - 'update_vendor': 'Update Vendor', - 'delete_vendor': 'Șterge Furnizor', - 'create_expense': 'Create Expense', - 'update_expense': 'Update Expense', - 'delete_expense': 'Delete Expense', - 'create_task': 'Crează Task', - 'update_task': 'Update Task', - 'delete_task': 'Șterge Task', - 'approve_quote': 'Approve Quote', - 'off': 'Off', - 'when_paid': 'When Paid', - 'expires_on': 'Expires On', - 'free': 'Gratis', - 'plan': 'Plan', - 'show_sidebar': 'Show Sidebar', - 'hide_sidebar': 'Hide Sidebar', - 'event_type': 'Event Type', - 'target_url': 'Target', - 'copy': 'Copy', - 'must_be_online': 'Please restart the app once connected to the internet', - 'crons_not_enabled': 'The crons need to be enabled', - 'api_webhooks': 'API Webhooks', - 'search_webhooks': 'Search :count Webhooks', - 'search_webhook': 'Search 1 Webhook', - 'webhook': 'Webhook', - 'webhooks': 'Webhooks', - 'new_webhook': 'New Webhook', - 'edit_webhook': 'Edit Webhook', - 'created_webhook': 'Successfully created webhook', - 'updated_webhook': 'Successfully updated webhook', - 'archived_webhook': 'Successfully archived webhook', - 'deleted_webhook': 'Successfully deleted webhook', - 'removed_webhook': 'Successfully removed webhook', - 'restored_webhook': 'Successfully restored webhook', - 'archived_webhooks': 'Successfully archived :value webhooks', - 'deleted_webhooks': 'Successfully deleted :value webhooks', - 'removed_webhooks': 'Successfully removed :value webhooks', - 'restored_webhooks': 'Successfully restored :value webhooks', - 'api_tokens': 'Token API', - 'api_docs': 'API Docs', - 'search_tokens': 'Search :count Tokens', - 'search_token': 'Search 1 Token', - 'token': 'Token', - 'tokens': 'Token-uri', - 'new_token': 'New Token', - 'edit_token': 'Modifica token', - 'created_token': 'Token creat', - 'updated_token': 'Actualizează token', - 'archived_token': 'Successfully archived token', - 'deleted_token': 'Token șters', - 'removed_token': 'Successfully removed token', - 'restored_token': 'Successfully restored token', - 'archived_tokens': 'Successfully archived :value tokens', - 'deleted_tokens': 'Successfully deleted :value tokens', - 'restored_tokens': 'Successfully restored :value tokens', - 'client_registration': 'Client Registration', - 'client_registration_help': - 'Enable clients to self register in the portal', - 'customize_and_preview': 'Customize & Preview', - 'email_invoice': 'Trimite email', - 'email_quote': 'Trimite Proforma', - 'email_credit': 'Email Credit', - 'email_payment': 'Email Payment', - 'client_email_not_set': 'Client does not have an email address set', - 'ledger': 'Ledger', - 'view_pdf': 'View PDF', - 'all_records': 'All records', - 'owned_by_user': 'Owned by user', - 'credit_remaining': 'Credit Remaining', - 'contact_name': 'Contact Name', - 'use_default': 'Use default', - 'reminder_endless': 'Endless Reminders', - 'number_of_days': 'Number of days', - 'configure_payment_terms': 'Configure Payment Terms', - 'payment_term': 'Payment Term', - 'new_payment_term': 'New Payment Term', - 'edit_payment_term': 'Edit Payment Term', - 'created_payment_term': 'Successfully created payment term', - 'updated_payment_term': 'Successfully updated payment term', - 'archived_payment_term': 'Successfully archived payment term', - 'deleted_payment_term': 'Successfully deleted payment term', - 'removed_payment_term': 'Successfully removed payment term', - 'restored_payment_term': 'Successfully restored payment term', - 'archived_payment_terms': 'Successfully archived :value payment terms', - 'deleted_payment_terms': 'Successfully deleted :value payment terms', - 'restored_payment_terms': 'Successfully restored :value payment terms', - 'email_sign_in': 'Sign in with email', - 'change': 'Change', - 'change_to_mobile_layout': 'Change to the mobile layout?', - 'change_to_desktop_layout': 'Change to the desktop layout?', - 'send_from_gmail': 'Send from Gmail', - 'reversed': 'Reversed', - 'cancelled': 'Cancelled', - 'credit_amount': 'Valoare credit', - 'quote_amount': 'Quote Amount', - 'hosted': 'Hosted', - 'selfhosted': 'Self-Hosted', - 'exclusive': 'Exclusive', - 'inclusive': 'Inclusive', - 'hide_menu': 'Hide Menu', - 'show_menu': 'Show Menu', - 'partially_refunded': 'Partially Refunded', - 'search_documents': 'Search Documents', - 'search_designs': 'Search Designs', - 'search_invoices': 'Search Invoices', - 'search_clients': 'Search Clients', - 'search_products': 'Search Products', - 'search_quotes': 'Search Quotes', - 'search_credits': 'Search Credits', - 'search_vendors': 'Search Vendors', - 'search_users': 'Search Users', - 'search_tax_rates': 'Search Tax Rates', - 'search_tasks': 'Search Tasks', - 'search_settings': 'Search Settings', - 'search_projects': 'Search Projects', - 'search_expenses': 'Search Expenses', - 'search_payments': 'Search Payments', - 'search_groups': 'Search Groups', - 'search_company': 'Search Company', - 'search_document': 'Search 1 Document', - 'search_design': 'Search 1 Design', - 'search_invoice': 'Search 1 Invoice', - 'search_client': 'Search 1 Client', - 'search_product': 'Search 1 Product', - 'search_quote': 'Search 1 Quote', - 'search_credit': 'Search 1 Credit', - 'search_vendor': 'Search 1 Vendor', - 'search_user': 'Search 1 User', - 'search_tax_rate': 'Search 1 Tax Rate', - 'search_task': 'Search 1 Tasks', - 'search_project': 'Search 1 Project', - 'search_expense': 'Search 1 Expense', - 'search_payment': 'Search 1 Payment', - 'search_group': 'Search 1 Group', - 'refund_payment': 'Refund Payment', - 'cancelled_invoice': 'Successfully cancelled invoice', - 'cancelled_invoices': 'Successfully cancelled invoices', - 'reversed_invoice': 'Successfully reversed invoice', - 'reversed_invoices': 'Successfully reversed invoices', - 'reverse': 'Reverse', - 'full_name': 'Full Name', - 'city_state_postal': 'City/State/Postal', - 'postal_city_state': 'Postal/City/State', - 'custom1': 'First Custom', - 'custom2': 'Second Custom', - 'custom3': 'Third Custom', - 'custom4': 'Fourth Custom', - 'optional': 'Optional', - 'license': 'License', - 'purge_data': 'Purge Data', - 'purge_successful': 'Successfully purged company data', - 'purge_data_message': - 'Warning: This will permanently erase your data, there is no undo.', - 'invoice_balance': 'Invoice Balance', - 'age_group_0': '0 - 30 Days', - 'age_group_30': '30 - 60 Days', - 'age_group_60': '60 - 90 Days', - 'age_group_90': '90 - 120 Days', - 'age_group_120': '120+ Days', - 'refresh': 'Refresh', - 'saved_design': 'Successfully saved design', - 'client_details': 'Client Details', - 'company_address': 'Company Address', - 'invoice_details': 'Invoice Details', - 'quote_details': 'Quote Details', - 'credit_details': 'Credit Details', - 'product_columns': 'Product Columns', - 'task_columns': 'Task Columns', - 'add_field': 'Add Field', - 'all_events': 'All Events', - 'permissions': 'Permissions', - 'none': 'None', - 'owned': 'Owned', - 'payment_success': 'Payment Success', - 'payment_failure': 'Payment Failure', - 'invoice_sent': ':count factură trimisă', - 'quote_sent': 'Quote Sent', - 'credit_sent': 'Credit Sent', - 'invoice_viewed': 'Invoice Viewed', - 'quote_viewed': 'Quote Viewed', - 'credit_viewed': 'Credit Viewed', - 'quote_approved': 'Quote Approved', - 'receive_all_notifications': 'Receive All Notifications', - 'purchase_license': 'Purchase License', - 'apply_license': 'Aplică Licență', - 'cancel_account': 'Șterge cont', - 'cancel_account_message': - 'ATENȚIE: Toate datele vor fi șterse definitiv, nu se pot recupera.', - 'delete_company': 'Delete Company', - 'delete_company_message': - 'Warning: This will permanently delete your company, there is no undo.', - 'enabled_modules': 'Enabled Modules', - 'converted_quote': 'Successfully converted quote', - 'credit_design': 'Credit Design', - 'includes': 'Includes', - 'header': 'Antet', - 'load_design': 'Load Design', - 'css_framework': 'CSS Framework', - 'custom_designs': 'Custom Designs', - 'designs': 'Designs', - 'new_design': 'New Design', - 'edit_design': 'Edit Design', - 'created_design': 'Successfully created design', - 'updated_design': 'Successfully updated design', - 'archived_design': 'Successfully archived design', - 'deleted_design': 'Successfully deleted design', - 'removed_design': 'Successfully removed design', - 'restored_design': 'Successfully restored design', - 'archived_designs': 'Successfully archived :value designs', - 'deleted_designs': 'Successfully deleted :value designs', - 'restored_designs': 'Successfully restored :value designs', - 'proposals': 'Proposals', - 'tickets': 'Tickets', - 'recurring_quotes': 'Proforme Recurente', - 'recurring_tasks': 'Recurring Tasks', - 'account_management': 'Administrare cont', - 'credit_date': 'Data Creditului', - 'credit': 'Credit', - 'credits': 'Credite', - 'new_credit': 'Adaugă Credit', - 'edit_credit': 'Edit Credit', - 'created_credit': 'Credit adăugat cu succes', - 'updated_credit': 'Successfully updated credit', - 'archived_credit': 'Credit arhivat cu succes', - 'deleted_credit': 'Credit șters', - 'removed_credit': 'Successfully removed credit', - 'restored_credit': 'Credit restaurat', - 'archived_credits': ':count credite au fost arhivate cu succes', - 'deleted_credits': ':count șters', - 'restored_credits': 'Successfully restored :value credits', - 'current_version': 'Versiunea Curentă', - 'latest_version': 'Latest Version', - 'update_now': 'Update Now', - 'a_new_version_is_available': 'A new version of the web app is available', - 'update_available': 'Update Available', - 'app_updated': 'Update successfully completed', - 'learn_more': 'Afla mai mult', - 'integrations': 'Integrations', - 'tracking_id': 'Tracking Id', - 'slack_webhook_url': 'Slack Webhook URL', - 'credit_footer': 'Credit Footer', - 'credit_terms': 'Credit Terms', - 'new_company': 'Firmă nouă', - 'added_company': 'Successfully added company', - 'company1': 'Custom Company 1', - 'company2': 'Custom Company 2', - 'company3': 'Custom Company 3', - 'company4': 'Custom Company 4', - 'product1': 'Custom Product 1', - 'product2': 'Custom Product 2', - 'product3': 'Custom Product 3', - 'product4': 'Custom Product 4', - 'client1': 'Custom Client 1', - 'client2': 'Custom Client 2', - 'client3': 'Custom Client 3', - 'client4': 'Custom Client 4', - 'contact1': 'Custom Contact 1', - 'contact2': 'Custom Contact 2', - 'contact3': 'Custom Contact 3', - 'contact4': 'Custom Contact 4', - 'task1': 'Custom Task 1', - 'task2': 'Custom Task 2', - 'task3': 'Custom Task 3', - 'task4': 'Custom Task 4', - 'project1': 'Custom Project 1', - 'project2': 'Custom Project 2', - 'project3': 'Custom Project 3', - 'project4': 'Custom Project 4', - 'expense1': 'Custom Expense 1', - 'expense2': 'Custom Expense 2', - 'expense3': 'Custom Expense 3', - 'expense4': 'Custom Expense 4', - 'vendor1': 'Custom Vendor 1', - 'vendor2': 'Custom Vendor 2', - 'vendor3': 'Custom Vendor 3', - 'vendor4': 'Custom Vendor 4', - 'invoice1': 'Custom Invoice 1', - 'invoice2': 'Custom Invoice 2', - 'invoice3': 'Custom Invoice 3', - 'invoice4': 'Custom Invoice 4', - 'payment1': 'Custom Payment 1', - 'payment2': 'Custom Payment 2', - 'payment3': 'Custom Payment 3', - 'payment4': 'Custom Payment 4', - 'surcharge1': 'Custom Surcharge 1', - 'surcharge2': 'Custom Surcharge 2', - 'surcharge3': 'Custom Surcharge 3', - 'surcharge4': 'Custom Surcharge 4', - 'group1': 'Custom Group 1', - 'group2': 'Custom Group 2', - 'group3': 'Custom Group 3', - 'group4': 'Custom Group 4', - 'reset': 'Resetează', - 'number': 'Number', - 'export': 'Exportă', - 'chart': 'Grafic', - 'count': 'Count', - 'totals': 'Total', - 'blank': 'Blank', - 'day': 'Zi', - 'month': 'Lună', - 'year': 'An', - 'subgroup': 'Subgroup', - 'is_active': 'Is Active', - 'group_by': 'Grupează după', - 'credit_balance': 'Soldul Creditului', - 'contact_last_login': 'Contact Last Login', - 'contact_full_name': 'Contact Full Name', - 'contact_phone': 'Contact Phone', - 'contact_custom_value1': 'Contact Custom Value 1', - 'contact_custom_value2': 'Contact Custom Value 2', - 'contact_custom_value3': 'Contact Custom Value 3', - 'contact_custom_value4': 'Contact Custom Value 4', - 'shipping_address1': 'Shipping Street', - 'shipping_address2': 'Shipping Apt/Suite', - 'shipping_city': 'Shipping City', - 'shipping_state': 'Shipping State/Province', - 'shipping_postal_code': 'Shipping Postal Code', - 'shipping_country': 'Shipping Country', - 'billing_address1': 'Billing Street', - 'billing_address2': 'Billing Apt/Suite', - 'billing_city': 'Billing City', - 'billing_state': 'Billing State/Province', - 'billing_postal_code': 'Billing Postal Code', - 'billing_country': 'Billing Country', - 'client_id': 'Client Id', - 'assigned_to': 'Asignare lui', - 'created_by': 'Created by :name', - 'assigned_to_id': 'Assigned To Id', - 'created_by_id': 'Created By Id', - 'add_column': 'Add Column', - 'edit_columns': 'Edit Columns', - 'columns': 'Columns', - 'aging': 'Aging', - 'profit_and_loss': 'Profit și Pierdere', - 'reports': 'Reports', - 'report': 'Raport', - 'add_company': 'Adaugă Firmă', - 'unpaid_invoice': 'Unpaid Invoice', - 'paid_invoice': 'Paid Invoice', - 'unapproved_quote': 'Unapproved Quote', - 'help': 'Ajutor', - 'refund': 'Refund', - 'refund_date': 'Refund Date', - 'filtered_by': 'Filtered by', - 'contact_email': 'Contact Email', - 'multiselect': 'Multiselect', - 'entity_state': 'State', - 'verify_password': 'Verify Password', - '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.', - 'message': 'Mesaj', - 'from': 'De la', - 'show_product_details': 'Show Product Details', - 'show_product_details_help': - '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', - 'configure_settings': 'Configure Settings', - 'support_forum': 'forum suport', - 'about': 'About', - 'documentation': 'Documentație', - 'contact_us': 'Contact Us', - 'subtotal': 'Subtotal', - 'line_total': 'Total linie', - 'item': 'Element', - 'credit_email': 'Credit Email', - 'iframe_url': 'Website', - 'domain_url': 'Domain URL', - 'password_is_too_short': 'Password is too short', - 'password_is_too_easy': - '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', - 'deleted_logo': 'Successfully deleted logo', - 'yes': 'Da', - 'no': 'Nu', - 'generate_number': 'Generate Number', - 'when_saved': 'When Saved', - 'when_sent': 'When Sent', - 'select_company': 'Select Company', - 'float': 'Float', - 'collapse': 'Collapse', - 'show_or_hide': 'Show/hide', - 'menu_sidebar': 'Menu Sidebar', - 'history_sidebar': 'History Sidebar', - 'tablet': 'Tablet', - 'mobile': 'Mobile', - 'desktop': 'Desktop', - 'layout': 'Layout', - 'view': 'Vezi', - 'module': 'Module', - 'first_custom': 'First Custom', - 'second_custom': 'Second Custom', - 'third_custom': 'Third Custom', - 'show_cost': 'Show Cost', - 'show_product_cost': 'Show Product Cost', - 'show_cost_help': - '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', - 'show_invoice_quantity': 'Show Invoice Quantity', - 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', - 'show_product_discount': 'Show Product Discount', - 'show_product_discount_help': 'Display a line item discount field', - 'default_quantity': 'Default Quantity', - 'default_quantity_help': - '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', - 'default_tax_rate': 'Default Tax Rate', - 'user': 'Utilizator', - 'invoice_tax': 'Invoice Tax', - 'line_item_tax': 'Line Item Tax', - 'inclusive_taxes': 'Inclusive Taxes', - 'invoice_tax_rates': 'Invoice Tax Rates', - 'item_tax_rates': 'Item Tax Rates', - 'no_client_selected': 'Alege un client', - 'configure_rates': 'Configure rates', - 'configure_gateways': 'Configure Gateways', - 'tax_settings': 'Setari Taxe', - 'tax_settings_rates': 'Tax Rates', - 'accent_color': 'Accent Color', - 'switch': 'Switch', - 'comma_sparated_list': 'Comma separated list', - 'options': 'Options', - 'single_line_text': 'Single-line text', - 'multi_line_text': 'Multi-line text', - 'dropdown': 'Dropdown', - 'field_type': 'Field Type', - 'recover_password_email_sent': 'A password recovery email has been sent', - 'submit': 'Submit', - 'recover_password': 'Recuperează parola', - 'late_fees': 'Late Fees', - 'credit_number': 'Credit Number', - 'payment_number': 'Payment Number', - 'late_fee_amount': 'Late Fee Amount', - 'late_fee_percent': 'Late Fee Percent', - 'schedule': 'Schedule', - 'before_due_date': 'Before the due date', - 'after_due_date': 'After the due date', - 'after_invoice_date': 'After the invoice date', - 'days': 'Days', - 'invoice_email': 'Email Factură', - 'payment_email': 'Email Plată', - 'partial_payment': 'Partial Payment', - 'payment_partial': 'Partial Payment', - 'partial_payment_email': 'Partial Payment Email', - 'quote_email': 'Email Ofertă', - 'endless_reminder': 'Endless Reminder', - 'filtered_by_user': 'Filtered by User', - 'administrator': 'Administrator', - 'administrator_help': - 'Allow user to manage users, change settings and modify all records', - 'user_management': 'Utilizatori', - 'users': 'Utilizatori', - 'new_user': 'New User', - 'edit_user': 'Modifică Utilizator', - 'created_user': 'Successfully created user', - 'updated_user': 'Utilizator actualizat', - 'archived_user': 'Arhivare utilizator cu succes', - 'deleted_user': 'Utilizator șters', - 'removed_user': 'Successfully removed user', - 'restored_user': 'Utilizator restaurat', - 'archived_users': 'Successfully archived :value users', - 'deleted_users': 'Successfully deleted :value users', - 'removed_users': 'Successfully removed :value users', - 'restored_users': 'Successfully restored :value users', - 'general_settings': 'Optiuni Generale', - '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ă.', - 'invoice_embed_documents': 'Embed Documents', - 'invoice_embed_documents_help': 'Include attached images in the invoice.', - 'all_pages_header': 'Show Header on', - 'all_pages_footer': 'Show Footer on', - 'first_page': 'Prima pagină', - 'all_pages': 'Toate paginile', - 'last_page': 'Ultima pagină', - 'primary_font': 'Primary Font', - 'secondary_font': 'Secondary Font', - 'primary_color': 'Culoare Principală', - 'secondary_color': 'Culoare Secundară', - 'page_size': 'Dimensiune Pagină', - 'font_size': 'Dimensiune Font', - 'quote_design': 'Quote Design', - 'invoice_fields': 'Câmpuri Factură', - 'product_fields': 'Product Fields', - 'invoice_terms': 'Termeni facturare', - 'invoice_footer': 'Subsol Factură', - 'quote_terms': 'Termeni Proformă', - 'quote_footer': 'Subsol Proformă', - 'auto_email_invoice': 'Auto Email', - 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', - 'auto_archive_invoice': 'Auto Archive', - 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', - 'auto_archive_quote': 'Auto Archive', - 'auto_archive_quote_help': - '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.', - 'workflow_settings': 'Workflow Settings', - 'freq_daily': 'Zilnic', - 'freq_weekly': 'Săptămânal', - 'freq_two_weeks': 'Două Săptămâni', - 'freq_four_weeks': 'Patru Săptămâni', - 'freq_monthly': 'Lunar', - 'freq_two_months': 'Două Luni', - 'freq_three_months': 'Trei Luni', - 'freq_four_months': 'Patru Luni', - 'freq_six_months': 'Șase Luni', - 'freq_annually': 'Anual', - 'freq_two_years': 'Doi Ani', - 'freq_three_years': 'Three Years', - 'never': 'Niciodată', - 'company': 'Company', - 'generated_numbers': 'Generated Numbers', - 'charge_taxes': 'Taxe', - 'next_reset': 'Next Reset', - 'reset_counter': 'Reset Counter', - 'recurring_prefix': 'Recurring Prefix', - 'number_padding': 'Number Padding', - 'general': 'General', - 'surcharge_field': 'Surcharge Field', - 'company_field': 'Company Field', - 'company_value': 'Company Value', - 'credit_field': 'Credit Field', - 'invoice_field': 'Invoice Field', - 'invoice_surcharge': 'Invoice Surcharge', - 'client_field': 'Client Field', - 'product_field': 'Product Field', - 'payment_field': 'Payment Field', - 'contact_field': 'Contact Field', - 'vendor_field': 'Vendor Field', - 'expense_field': 'Expense Field', - 'project_field': 'Project Field', - 'task_field': 'Task Field', - 'group_field': 'Group Field', - 'number_counter': 'Number Counter', - 'prefix': 'Prefix', - 'number_pattern': 'Number Pattern', - 'messages': 'Messages', - 'custom_css': 'Editeaza CSS', - 'custom_javascript': 'Custom JavaScript', - 'signature_on_pdf': 'Show on PDF', - 'signature_on_pdf_help': - '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.', - 'show_accept_quote_terms': 'Quote Terms Checkbox', - 'show_accept_quote_terms_help': - '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_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.', - '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.', - 'plain': 'Plain', - 'light': 'Deschisa', - 'dark': 'Intunecata', - 'email_design': 'Design Email', - 'attach_pdf': 'Attach PDF', - 'attach_documents': 'Attach Documents', - 'attach_ubl': 'Attach UBL', - 'email_style': 'Email Style', - 'enable_email_markup': 'Enable Markup', - 'reply_to_email': 'Reply-To Email', - 'reply_to_name': 'Reply-To Name', - 'bcc_email': 'BCC Email', - 'processed': 'Processed', - 'credit_card': 'Card de Credit', - 'bank_transfer': 'Transfer Bancar', - 'priority': 'Prioritate', - 'fee_amount': 'Fee Amount', - 'fee_percent': 'Fee Percent', - 'fee_cap': 'Fee Cap', - 'limits_and_fees': 'Limits/Fees', - 'enable_min': 'Enable min', - 'enable_max': 'Enable max', - 'min_limit': 'Min: :min', - 'max_limit': 'Max: :max', - 'min': 'Min', - 'max': 'Max', - 'accepted_card_logos': 'Accepted Card Logos', - 'credentials': 'Credentials', - 'update_address': 'Actualizează Adresa', - 'update_address_help': - 'Actualizează adresa clientului cu detaliile trimise', - 'rate': 'Valoare', - 'tax_rate': 'Valoare Taxă', - 'new_tax_rate': 'New Tax Rate', - 'edit_tax_rate': 'Editează valoare taxă', - 'created_tax_rate': 'Valoare taxă creată cu succes', - 'updated_tax_rate': 'Valoare taxă actualizată cu succes', - 'archived_tax_rate': 'Valoare taxă arhivată cu succes', - 'deleted_tax_rate': 'Successfully deleted tax rate', - 'restored_tax_rate': 'Successfully restored tax rate', - 'archived_tax_rates': 'Successfully archived :value tax rates', - 'deleted_tax_rates': 'Successfully deleted :value tax rates', - 'restored_tax_rates': 'Successfully restored :value tax rates', - 'fill_products': 'Completează automat produsele', - 'fill_products_help': - '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', - 'convert_products': 'Convert Products', - 'convert_products_help': - 'Automatically convert product prices to the client\'s currency', - 'fees': 'Fees', - 'limits': 'Limits', - 'provider': 'Provider', - 'company_gateway': 'Payment Gateway', - 'company_gateways': 'Payment Gateways', - 'new_company_gateway': 'New Gateway', - 'edit_company_gateway': 'Edit Gateway', - 'created_company_gateway': 'Successfully created gateway', - 'updated_company_gateway': 'Successfully updated gateway', - 'archived_company_gateway': 'Successfully archived gateway', - 'deleted_company_gateway': 'Successfully deleted gateway', - 'restored_company_gateway': 'Successfully restored gateway', - 'archived_company_gateways': 'Successfully archived :value gateways', - 'deleted_company_gateways': 'Successfully deleted :value gateways', - 'restored_company_gateways': 'Successfully restored :value gateways', - 'continue_editing': 'Continue Editing', - 'discard_changes': 'Discard Changes', - 'default_value': 'Default value', - 'disabled': 'Dezactivat', - 'currency_format': 'Currency Format', - 'first_day_of_the_week': 'First Day of the Week', - 'first_month_of_the_year': 'First Month of the Year', - 'sunday': 'Duminică', - 'monday': 'Luni', - 'tuesday': 'Marți', - 'wednesday': 'Miercuri', - 'thursday': 'Joi', - 'friday': 'Vineri', - 'saturday': 'Sâmbătă', - 'january': 'Ianuarie', - 'february': 'Februarie', - 'march': 'Martie', - 'april': 'Aprilie', - 'may': 'Mai', - 'june': 'Iunie', - 'july': 'Iulie', - 'august': 'August', - 'september': 'Septembrie', - 'october': 'Octombrie', - 'november': 'Noiembrie', - 'december': 'Decembrie', - 'symbol': 'Symbol', - 'ocde': 'Code', - 'date_format': 'Date Format', - 'datetime_format': 'Datetime Format', - 'military_time': 'Format 24 Ore', - 'military_time_help': '24 Hour Display', - 'send_reminders': 'Send Reminders', - 'timezone': 'Timezone', - 'filtered_by_project': 'Filtered by Project', - 'filtered_by_group': 'Filtered by Group', - 'filtered_by_invoice': 'Filtered by Invoice', - 'filtered_by_client': 'Filtered by Client', - 'filtered_by_vendor': 'Filtered by Vendor', - 'group_settings': 'Group Settings', - 'group': 'Group', - 'groups': 'Groups', - 'new_group': 'New Group', - 'edit_group': 'Edit Group', - 'created_group': 'Successfully created group', - 'updated_group': 'Successfully updated group', - 'archived_groups': 'Successfully archived :value groups', - 'deleted_groups': 'Successfully deleted :value groups', - 'restored_groups': 'Successfully restored :value groups', - 'archived_group': 'Successfully archived group', - 'deleted_group': 'Successfully deleted group', - 'restored_group': 'Successfully restored group', - 'upload_logo': 'Upload Logo', - 'uploaded_logo': 'Successfully uploaded logo', - 'logo': 'Logo', - 'saved_settings': 'Successfully saved settings', - 'product_settings': 'Opțiuni Produs', - 'device_settings': 'Device Settings', - 'defaults': 'Implicit', - 'basic_settings': 'Opțiuni de bază', - 'advanced_settings': 'Opțiuni avansate', - 'company_details': 'Detalii companie', - 'user_details': 'Detalii utilizator', - 'localization': 'Localizare', - 'online_payments': 'Plati online', - 'tax_rates': 'Valori taxa', - 'notifications': 'Notificări', - 'import_export': 'Import | Export', - 'custom_fields': 'Câmpuri personalizate', - 'invoice_design': 'Design factură', - 'buy_now_buttons': 'Buy Now Buttons', - 'email_settings': 'Setari email', - 'templates_and_reminders': 'Șabloane & Notificări', - 'credit_cards_and_banks': 'Credit Cards & Banks', - 'data_visualizations': 'Vizualizare Date', - 'price': 'Price', - 'email_sign_up': 'Email Sign Up', - 'google_sign_up': 'Google Sign Up', - 'thank_you_for_your_purchase': 'Thank you for your purchase!', - 'redeem': 'Redeem', - 'back': 'Back', - 'past_purchases': 'Past Purchases', - 'annual_subscription': 'Annual Subscription', - 'pro_plan': 'Pro Plan', - 'enterprise_plan': 'Enterprise Plan', - 'count_users': ':count users', - 'upgrade': 'Upgrade', - '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.', - 'i_agree_to_the': 'I agree to the', - 'terms_of_service': 'Termenii Serviciului', - 'privacy_policy': 'Privacy Policy', - 'sign_up': 'Inscrie-te', - 'account_login': 'Autentificare', - 'view_website': 'View Website', - 'create_account': 'Create Account', - 'email_login': 'Email Login', - 'create_new': 'Create New', - 'no_record_selected': 'No record selected', - 'error_unsaved_changes': 'Please save or cancel your changes', - 'download': 'Descarca', - 'requires_an_enterprise_plan': 'Requires an enterprise plan', - 'take_picture': 'Take Picture', - 'upload_file': 'Upload File', - 'document': 'Document', - 'documents': 'Documents', - 'new_document': 'New Document', - 'edit_document': 'Edit Document', - 'uploaded_document': 'Successfully uploaded document', - 'updated_document': 'Successfully updated document', - 'archived_document': 'Successfully archived document', - 'deleted_document': 'Successfully deleted document', - 'restored_document': 'Successfully restored document', - 'archived_documents': 'Successfully archived :value documents', - 'deleted_documents': 'Successfully deleted :value documents', - 'restored_documents': 'Successfully restored :value documents', - 'no_history': 'No History', - 'expense_date': 'Expense Date', - 'pending': 'În așteptare', - 'expense_status_1': 'Logged', - 'expense_status_2': 'Pending', - 'expense_status_3': 'Invoiced', - 'converted': 'Transformă', - 'add_documents_to_invoice': 'Add documents to invoice', - 'exchange_rate': 'Curs Valutar', - 'convert_currency': 'Transformă moneda', - 'mark_paid': 'Mark Paid', - 'category': 'Category', - 'address': 'Adresă', - 'new_vendor': 'Furnizor Nou', - 'created_vendor': 'Furnizor creat cu succes', - 'updated_vendor': 'Furnizor actualizat cu succes', - 'archived_vendor': 'Furnizor arhivat cu succes', - 'deleted_vendor': 'Furnizor șters cu succes', - 'restored_vendor': 'Successfully restored vendor', - 'archived_vendors': ':count furnizori arhivați cu succes', - 'deleted_vendors': ':count furnizori ștersi cu succes', - 'restored_vendors': 'Successfully restored :value vendors', - 'new_expense': 'Introdu Cheltuială', - 'created_expense': 'Successfully created expense', - 'updated_expense': 'Successfully updated expense', - 'archived_expense': 'Cheltuială arhivată cu succes', - 'deleted_expense': 'Cheltuială ștearsă cu succes', - 'restored_expense': 'Successfully restored expense', - 'archived_expenses': 'Cheltuieli arhivate cu succes', - 'deleted_expenses': 'Cheltuieli șterse cu succes', - 'restored_expenses': 'Successfully restored :value expenses', - 'copy_shipping': 'Copy Shipping', - 'copy_billing': 'Copy Billing', - 'design': 'Design', - 'failed_to_find_record': 'Failed to find record', - 'invoiced': 'Facturat', - 'logged': 'Înregistrat', - 'running': 'În derulare', - 'resume': 'Continuă', - 'task_errors': 'Te rog corectează suprapunerea timpilor', - 'start': 'Start', - 'stop': 'Stop', - 'started_task': 'Successfully started task', - 'stopped_task': 'Task oprit', - 'resumed_task': 'Successfully resumed task', - 'now': 'Acum', - 'auto_start_tasks': 'Auto Start Tasks', - 'timer': 'Cronometru', - 'manual': 'Manual', - 'budgeted': 'Budgeted', - 'start_time': 'Timp pornire', - 'end_time': 'Timp încheiere', - 'date': 'Data', - 'times': 'Times', - 'duration': 'Durată', - 'new_task': 'Task nou', - 'created_task': 'Task creat', - 'updated_task': 'Task actualizat', - 'archived_task': 'Task arhivat', - 'deleted_task': 'Task șters', - 'restored_task': 'Task restaurat', - 'archived_tasks': 'Arhivat :count task-uri', - 'deleted_tasks': 'Șters :count task-uri', - 'restored_tasks': 'Successfully restored :value tasks', - 'please_enter_a_name': 'Please enter a name', - 'budgeted_hours': 'Budgeted Hours', - 'created_project': 'Successfully created project', - 'updated_project': 'Successfully updated project', - 'archived_project': 'Successfully archived project', - 'deleted_project': 'Successfully deleted project', - 'restored_project': 'Successfully restored project', - 'archived_projects': 'Successfully archived :count projects', - 'deleted_projects': 'Successfully deleted :count projects', - 'restored_projects': 'Successfully restored :value projects', - 'new_project': 'Proiect nou', - 'thank_you_for_using_our_app': 'Thank you for using our app!', - 'if_you_like_it': 'If you like it please', - 'click_here': 'apasă aici', - 'click_here_capital': 'Click here', - 'to_rate_it': 'to rate it.', - 'average': 'Average', - 'unapproved': 'Unapproved', - 'authenticate_to_change_setting': - 'Please authenticate to change this setting', - 'locked': 'Locked', - 'authenticate': 'Authenticate', - 'please_authenticate': 'Please authenticate', - 'biometric_authentication': 'Biometric Authentication', - 'footer': 'Subsol', - 'compare': 'Compară', - 'hosted_login': 'Hosted Login', - 'selfhost_login': 'Selfhost Login', - 'google_sign_in': 'Sign in with Google', - 'today': 'Astăzi', - 'custom_range': 'Custom Range', - 'date_range': 'Date Range', - 'current': 'Curent', - 'previous': 'Anterior', - 'current_period': 'Perioada Curentă', - 'comparison_period': 'Perioada Comparării', - 'previous_period': 'Perioada Anterioară', - 'previous_year': 'Anul Anterior', - 'compare_to': 'Compară cu', - 'last7_days': 'Ultimele 7 Zile', - 'last_week': 'Săptămâna Trecută', - 'last30_days': 'Ultimele 30 Zile', - 'this_month': 'Luna curentă', - 'last_month': 'Luna trecută', - 'this_year': 'Anul Curent', - 'last_year': 'Anul Trecut', - 'custom': 'Personalizat', - 'clone_to_invoice': 'Clone to Invoice', - 'clone_to_quote': 'Clone to Quote', - 'clone_to_credit': 'Clone to Credit', - 'view_invoice': 'Vizualizare Factură', - 'convert': 'Convert', - 'more': 'More', - 'edit_client': 'Modifica client', - 'edit_product': 'Modifica produs', - 'edit_invoice': 'Modifica factura', - 'edit_quote': 'Modifica Proforma', - 'edit_payment': 'Modifică Plata', - 'edit_task': 'Modifică Task', - 'edit_expense': 'Edit Expense', - 'edit_vendor': 'Editează Furnizor', - 'edit_project': 'Editează Proiect', - 'edit_recurring_quote': 'Editare oferta recurenta', - 'billing_address': 'Adresă de facturare', - 'shipping_address': 'Shipping Address', - 'total_revenue': 'Venituri Totale', - 'average_invoice': 'Medie facturi', - 'outstanding': 'Restante', - 'invoices_sent': ':count facturi trimise', - 'active_clients': 'clienti activi', - 'close': 'Inchide', - 'email': 'Email', - 'password': 'Parola', - 'url': 'URL', - 'secret': 'Secret', - 'name': 'Nume', - 'logout': 'Deconectare', - 'login': 'Autentificare', - 'filter': 'Filtreaza', - 'sort': 'Sort', - 'search': 'Cauta', - 'active': 'Activ', - 'archived': 'Arhivat', - 'deleted': 'Șters', - 'dashboard': 'Panou Control', - 'archive': 'Arhiva', - 'delete': 'Sterge', - 'restore': 'Restaurează', - 'refresh_complete': 'Refresh Complete', - 'please_enter_your_email': 'Please enter your email', - 'please_enter_your_password': 'Please enter your password', - 'please_enter_your_url': 'Please enter your URL', - 'please_enter_a_product_key': 'Please enter a product key', - 'ascending': 'Ascending', - 'descending': 'Descending', - 'save': 'Salveaza', - 'an_error_occurred': 'An error occurred', - 'paid_to_date': 'Plătit Pâna Acum', - 'balance_due': 'Total De Plată', - 'balance': 'Balanta', - 'overview': 'Overview', - 'details': 'Detalii', - 'phone': 'Telefon', - 'website': 'Site web', - 'vat_number': 'C.I.F.', - 'id_number': 'Nr. Reg. Com.', - 'create': 'Creaza', - 'copied_to_clipboard': 'Copied :value to the clipboard', - 'error': 'Error', - 'could_not_launch': 'Could not launch', - 'contacts': 'Contacte', - 'additional': 'Additional', - 'first_name': 'Prenume', - 'last_name': 'Nume', - 'add_contact': 'Adauga contact', - 'are_you_sure': 'Sigur?', - 'cancel': 'Renunta', - 'ok': 'Ok', - 'remove': 'Remove', - 'email_is_invalid': 'Email is invalid', - 'product': 'Produs', - 'products': 'Produse', - 'new_product': 'New Product', - 'created_product': 'Produs creat cu succes', - 'updated_product': 'Produs actualizat cu succes', - 'archived_product': 'Produs arhivat cu succes', - 'deleted_product': 'Successfully deleted product', - 'restored_product': 'Successfully restored product', - 'archived_products': 'Successfully archived :count products', - 'deleted_products': 'Successfully deleted :count products', - 'restored_products': 'Successfully restored :value products', - 'product_key': 'Produs', - 'notes': 'Notițe', - 'cost': 'Cost', - 'client': 'Client', - 'clients': 'Clienti', - 'new_client': 'Client nou', - 'created_client': 'S-a creat clientul cu succes', - 'updated_client': 'Client actualizat cu succes.', - 'archived_client': 'Client arhivat cu succes.', - 'archived_clients': ':count clienti arhivat cu succes.', - 'deleted_client': 'Client sters cu succes.', - 'deleted_clients': ':count clienti stersi cu succes.', - 'restored_client': 'Client restaurat', - 'restored_clients': 'Successfully restored :value clients', - 'address1': 'Strada', - 'address2': 'Apartament', - 'city': 'Localitate', - 'state': 'Județ/Sector', - 'postal_code': 'Cod poștal', - 'country': 'Tara', - 'invoice': 'Factură', - 'invoices': 'Facturi', - 'new_invoice': 'Factura noua', - 'created_invoice': 'Factura creata cu succes.', - 'updated_invoice': 'Factura actualiazata cu succes.', - 'archived_invoice': 'Factura arhivata cu succes.', - 'deleted_invoice': 'Factura stearsa cu succes.', - 'restored_invoice': 'Factură restaurată', - 'archived_invoices': ':count facturi arhivate cu succes.', - 'deleted_invoices': ':count facturi sterse cu succes', - 'restored_invoices': 'Successfully restored :value invoices', - 'emailed_invoice': 'Factura trimisa pe email cu succes', - 'emailed_payment': 'Successfully emailed payment', - 'amount': 'Valoare', - 'invoice_number': 'Număr factură', - 'invoice_date': 'Data factură', - 'discount': 'Discount', - 'po_number': 'Ordin de cumpărare nr', - 'terms': 'Termeni', - 'public_notes': 'Public Notes', - 'private_notes': 'Note particulare', - 'frequency': 'Frecventa', - 'start_date': 'Data inceput', - 'end_date': 'Data sfirsit', - 'quote_number': 'Numar Proforma', - 'quote_date': 'Data Proforma', - 'valid_until': 'Valabil până la', - 'items': 'Items', - 'partial_deposit': 'Partial/Deposit', - 'description': 'Descriere', - 'unit_cost': 'Preț unitar', - 'quantity': 'Cantitate', - 'add_item': 'Add Item', - 'contact': 'Contact', - 'work_phone': 'Telefon', - 'total_amount': 'Total Amount', - 'pdf': 'PDF', - 'due_date': 'Scadența', - 'partial_due_date': 'Partial Due Date', - 'status': 'Stare', - 'invoice_status_id': 'Invoice Status', - 'quote_status': 'Status oferta', - 'click_plus_to_add_item': 'Click + to add an item', - 'click_plus_to_add_time': 'Click + to add time', - 'count_selected': ':count selected', - 'total': 'Total', - 'percent': 'Percent', - 'edit': 'Modifica', - 'dismiss': 'Dismiss', - 'please_select_a_date': 'Please select a date', - 'please_select_a_client': 'Please select a client', - 'please_select_an_invoice': 'Te rugam selecteaza o oferta', - 'task_rate': 'Task Rate', - 'settings': 'Setari', - 'language': 'Language', - 'currency': 'Currency', - 'created_at': 'Date Created', - 'created_on': 'Created On', - 'updated_at': 'Updated', - 'tax': 'Taxă', - 'please_enter_an_invoice_number': 'Please enter an invoice number', - 'please_enter_a_quote_number': 'Please enter a quote number', - 'past_due': 'Past Due', - 'draft': 'Draft', - 'sent': 'Trimis', - 'viewed': 'Viewed', - 'approved': 'Approved', - 'partial': 'Parțial/Depunere', - 'paid': 'Plătit', - 'mark_sent': 'Marchează ca trimis', - 'marked_invoice_as_sent': 'Successfully marked invoice as sent', - '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': 'Gata', - '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': 'Reactualizeaza datele', - 'blank_contact': 'Contact gol', - 'activity': 'Activitate', - 'no_records_found': 'Nu exista inregistrari', - 'clone': 'Multiplică', - 'loading': 'Loading', - 'industry': 'Industrie', - 'size': 'Size', - 'payment_terms': 'Termeni de plată', - 'payment_date': 'Data platii', - 'payment_status': 'Status plata', - 'payment_status_1': 'Pending', - 'payment_status_2': 'Voided', - 'payment_status_3': 'Failed', - 'payment_status_4': 'Completed', - 'payment_status_5': 'Partially Refunded', - 'payment_status_6': 'Refunded', - 'payment_status_-1': 'Unapplied', - 'payment_status_-2': 'Partially Unapplied', - 'net': 'Net', - 'client_portal': 'Portal Client', - 'show_tasks': 'Arata sarcini', - 'email_reminders': 'Email Reminders', - 'enabled': 'Enabled', - 'recipients': 'Recipients', - 'initial_email': 'Initial Email', - 'first_reminder': 'Prima Notificare', - 'second_reminder': 'A Doua Notificare', - 'third_reminder': 'A Treia Notificare', - 'reminder1': 'First Reminder', - 'reminder2': 'Second Reminder', - 'reminder3': 'Third Reminder', - 'template': 'Șablon', - 'send': 'Trimite', - 'subject': 'Subiect', - 'body': 'Mesaj', - 'send_email': 'Trimite Email', - 'email_receipt': 'Trimite pe email dovada plății', - 'auto_billing': 'Auto billing', - 'button': 'Buton', - 'preview': 'Previzualizare', - 'customize': 'Personalizeaza', - 'history': 'Istoric', - 'payment': 'Plata', - 'payments': 'Plati', - 'refunded': 'Refunded', - 'payment_type': 'Payment Type', - 'transaction_reference': 'Referinta tranzactie', - 'enter_payment': 'Introdu plata', - 'new_payment': 'Introdu plata', - 'created_payment': 'Plata creata cu succes.', - 'updated_payment': 'Plată actualizată', - 'archived_payment': 'Plata arhivata cu succes', - 'deleted_payment': 'Plata stearsa cu succes.', - 'restored_payment': 'Plată restaurată', - 'archived_payments': ':count plati arhivate cu succes', - 'deleted_payments': ':count plati sterse cu succes.', - 'restored_payments': 'Successfully restored :value payments', - 'quote': 'Proforma', - 'quotes': 'Proforme', - 'new_quote': 'Proforma Nou', - 'created_quote': 'Proformă creată cu succes', - 'updated_quote': 'Proformă actualizată cu succes', - 'archived_quote': 'Proformă arhivată cu succes', - 'deleted_quote': 'Proformă ștearsă', - 'restored_quote': 'Proformă restaurată', - 'archived_quotes': ':count proforme arhivate cu succes', - 'deleted_quotes': ':count proforme șterse cu succes', - 'restored_quotes': 'Successfully restored :value quotes', - 'expense': 'Cheltuială', - 'expenses': 'Cheltuieli', - 'vendor': 'Furnizor', - 'vendors': 'Furnizori', - 'task': 'Task', - 'tasks': 'Task-uri', - 'project': 'Proiect', - 'projects': 'Proiecte', - 'activity_1': ':user a creat clientul :client', - 'activity_2': ':user a arhivat clientul :client', - 'activity_3': ':user a șters clientul :client', - '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', - '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', - 'activity_11': ':user a actualizat plata :payment', - 'activity_12': ':user a arhivat plata :payment', - 'activity_13': ':user a șters plata :payment', - 'activity_14': ':user a încărcat :credit credite', - 'activity_15': ':user a actualizat :credit credite', - 'activity_16': ':user a arhivat :credit credite', - 'activity_17': ':user a șters :credit credite', - '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', - 'activity_21': ':contact a vizualizat proforma :quote', - 'activity_22': ':user a arhivat proforma :quote', - 'activity_23': ':user a șters proforma :quote', - 'activity_24': ':user a restaurat proforma :quote', - 'activity_25': ':user a restaurat factura :invoice', - 'activity_26': ':user a restaurat clientul :client', - 'activity_27': ':user a restaurat plata :payment', - 'activity_28': ':user a restaurat :credit credite', - 'activity_29': ':contact a aprobat proforma :quote pentru :client', - 'activity_30': ':user a creat furnizorul :vendor', - 'activity_31': ':user a arhivat furnizorul :vendor', - 'activity_32': ':user a șters furnizorul :vendor', - 'activity_33': ':user a restaurat furnizorul :vendor', - 'activity_34': ':user a creat cheltuiala :expense', - 'activity_35': ':user a arhivat cheltuiala :expense', - 'activity_36': ':user a șters cheltuiala :expense', - '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', - 'activity_41': ':payment_amount payment (:payment) failed', - 'activity_42': ':user created task :task', - 'activity_43': ':user updated task :task', - 'activity_44': ':user archived task :task', - 'activity_45': ':user deleted task :task', - 'activity_46': ':user restored task :task', - 'activity_47': ':user updated expense :expense', - 'activity_48': ':user updated ticket :ticket', - 'activity_49': ':user closed ticket :ticket', - 'activity_50': ':user merged ticket :ticket', - 'activity_51': ':user split ticket :ticket', - 'activity_52': ':contact opened ticket :ticket', - 'activity_53': ':contact reopened ticket :ticket', - 'activity_54': ':user reopened ticket :ticket', - 'activity_55': ':contact replied ticket :ticket', - 'activity_56': ':user viewed ticket :ticket', - 'activity_57': 'System failed to email invoice :invoice', - 'activity_58': ':user reversed invoice :invoice', - 'activity_59': ':user cancelled invoice :invoice', - 'activity_60': ':contact viewed quote :quote', - 'activity_61': ':user updated client :client', - 'activity_62': ':user updated vendor :vendor', - 'activity_63': - ':user emailed first reminder for invoice :invoice to :contact', - 'activity_64': - ':user emailed second reminder for invoice :invoice to :contact', - 'activity_65': - ':user emailed third reminder for invoice :invoice to :contact', - 'activity_66': - ':user emailed endless reminder for invoice :invoice to :contact', - 'activity_80': ':user created subscription :subscription', - 'activity_81': ':user updated subscription :subscription', - 'activity_82': ':user archived subscription :subscription', - 'activity_83': ':user deleted subscription :subscription', - 'activity_84': ':user restored subscription :subscription', - 'one_time_password': 'One Time Password', - 'emailed_quote': 'Proformă trimisă cu succes', - 'emailed_credit': 'Successfully emailed credit', - 'marked_quote_as_sent': 'Successfully marked quote as sent', - 'marked_credit_as_sent': 'Successfully marked credit as sent', - 'expired': 'Expired', - 'all': 'All', - 'select': 'Selecteaza', - 'long_press_multiselect': 'Long-press Multiselect', - 'custom_value1': 'Custom Value', - 'custom_value2': 'Custom Value', - 'custom_value3': 'Custom Value 3', - 'custom_value4': 'Custom Value 4', - 'email_style_custom': 'Custom Email Style', - 'custom_message_dashboard': 'Custom Dashboard Message', - 'custom_message_unpaid_invoice': 'Custom Unpaid Invoice Message', - 'custom_message_paid_invoice': 'Custom Paid Invoice Message', - 'custom_message_unapproved_quote': 'Custom Unapproved Quote Message', - 'lock_invoices': 'Lock Invoices', - 'translations': 'Translations', - 'task_number_pattern': 'Task Number Pattern', - 'task_number_counter': 'Task Number Counter', - 'expense_number_pattern': 'Expense Number Pattern', - 'expense_number_counter': 'Expense Number Counter', - 'vendor_number_pattern': 'Vendor Number Pattern', - 'vendor_number_counter': 'Vendor Number Counter', - 'ticket_number_pattern': 'Ticket Number Pattern', - 'ticket_number_counter': 'Ticket Number Counter', - 'payment_number_pattern': 'Payment Number Pattern', - 'payment_number_counter': 'Payment Number Counter', - 'invoice_number_pattern': 'Invoice Number Pattern', - 'invoice_number_counter': 'Plajă număr factură', - 'quote_number_pattern': 'Quote Number Pattern', - 'quote_number_counter': 'Plajă număr proformă', - 'client_number_pattern': 'Credit Number Pattern', - 'client_number_counter': 'Credit Number Counter', - 'credit_number_pattern': 'Credit Number Pattern', - 'credit_number_counter': 'Credit Number Counter', - 'reset_counter_date': 'Reset Counter Date', - 'counter_padding': 'Counter Padding', - 'shared_invoice_quote_counter': 'Shared Invoice Quote Counter', - 'default_tax_name_1': 'Default Tax Name 1', - 'default_tax_rate_1': 'Default Tax Rate 1', - 'default_tax_name_2': 'Default Tax Name 2', - 'default_tax_rate_2': 'Default Tax Rate 2', - 'default_tax_name_3': 'Default Tax Name 3', - 'default_tax_rate_3': 'Default Tax Rate 3', - 'email_subject_invoice': 'Email Invoice Subject', - 'email_subject_quote': 'Email Quote Subject', - 'email_subject_payment': 'Email Payment Subject', - 'email_subject_payment_partial': 'Email Partial Payment Subject', - 'show_table': 'Show Table', - 'show_list': 'Show List', - 'client_city': 'Client City', - 'client_state': 'Client State', - 'client_country': 'Client Country', - 'client_is_active': 'Client is Active', - 'client_balance': 'Client Balance', - 'client_address1': 'Client Street', - 'client_address2': 'Client Apt/Suite', - 'vendor_address1': 'Vendor Street', - 'vendor_address2': 'Vendor Apt/Suite', - 'client_shipping_address1': 'Client Shipping Street', - 'client_shipping_address2': 'Client Shipping Apt/Suite', - 'type': 'Tip', - 'invoice_amount': 'Valoare Factură', - 'invoice_due_date': 'Data Scadenta', - 'tax_rate1': 'Tax Rate 1', - 'tax_rate2': 'Tax Rate 2', - 'tax_rate3': 'Tax Rate 3', - 'auto_bill': 'Auto Facturare', - 'archived_at': 'Archived At', - 'has_expenses': 'Has Expenses', - 'custom_taxes1': 'Custom Taxes 1', - 'custom_taxes2': 'Custom Taxes 2', - 'custom_taxes3': 'Custom Taxes 3', - 'custom_taxes4': 'Custom Taxes 4', - 'custom_surcharge1': 'Custom Surcharge 1', - 'custom_surcharge2': 'Custom Surcharge 2', - 'custom_surcharge3': 'Custom Surcharge 3', - 'custom_surcharge4': 'Custom Surcharge 4', - 'is_deleted': 'Is Deleted', - 'vendor_city': 'Vendor City', - 'vendor_state': 'Vendor State', - 'vendor_country': 'Vendor Country', - 'is_approved': 'Is Approved', - 'tax_name': 'Tax Name', - 'tax_amount': 'Tax Amount', - 'tax_paid': 'Tax Paid', - 'payment_amount': 'Valoare plata', - 'age': 'Age', - 'is_running': 'Is Running', - 'time_log': 'Log Timp', - 'bank_id': 'Banca', - 'expense_category_id': 'Expense Category ID', - 'expense_category': 'Expense Category', - 'invoice_currency_id': 'Invoice Currency ID', - 'tax_name1': 'Tax Name 1', - 'tax_name2': 'Tax Name 2', - 'tax_name3': 'Tax Name 3', - 'transaction_id': 'Transaction ID', - 'status_color_theme': 'Status Color Theme', - 'load_color_theme': 'Load Color Theme', - }, - 'ru_RU': { - 'client_shipping_state': 'Client Shipping State', - 'client_shipping_city': 'Client Shipping City', - 'client_shipping_postal_code': 'Client Shipping Postal Code', - 'client_shipping_country': 'Client Shipping Country', - 'load_pdf': 'Load PDF', - 'start_free_trial': 'Start Free Trial', - 'start_free_trial_message': - 'Start your FREE 14 day trial of the pro plan', - 'due_on_receipt': 'Due on Receipt', - 'is_paid': 'Is Paid', - 'age_group_paid': 'Paid', - 'id': 'Id', - 'convert_to': 'Convert To', - 'client_currency': 'Client Currency', - 'company_currency': 'Company Currency', - 'purged_client': 'Successfully purged client', - 'custom_emails_disabled_help': - 'To prevent spam we require upgrading to a paid account to customize the email', - 'upgrade_to_add_company': 'Upgrade your plan to add companies', - 'file_saved_in_downloads_folder': - 'The file has been saved in the downloads folder', - 'small': 'Small', - 'marked_credit_as_paid': 'Successfully marked credit as paid', - 'marked_credits_as_paid': 'Successfully marked credits as paid', - 'wait_for_loading': 'Data loading - please wait for it to complete', - 'wait_for_saving': 'Data saving - please wait for it to complete', - 'html_preview_warning': - 'Note: changes made here are only previewed, they must be applied in the tabs above to be saved', - 'remaining': 'Remaining', - 'invoice_paid': 'Invoice Paid', - 'activity_120': ':user created recurring expense :recurring_expense', - 'activity_121': ':user updated recurring expense :recurring_expense', - 'activity_122': ':user archived recurring expense :recurring_expense', - 'activity_123': ':user deleted recurring expense :recurring_expense', - 'activity_124': ':user restored recurring expense :recurring_expense', - 'normal': 'Normal', - 'large': 'Large', - 'extra_large': 'Extra Large', - 'show_pdf_preview': 'Show PDF Preview', - 'show_pdf_preview_help': 'Display PDF preview while editing invoices', - 'print_pdf': 'Print PDF', - 'remind_me': 'Remind Me', - 'instant_bank_pay': 'Instant Bank Pay', - 'click_selected': 'Click Selected', - 'hide_preview': 'Hide Preview', - 'edit_record': 'Edit Record', - 'credit_is_more_than_invoice': - 'The credit amount can not be more than the invoice amount', - 'giropay': 'GiroPay', - 'direct_debit': 'Direct Debit', - 'please_set_a_password': 'Please set an account password', - 'set_password': 'Установить пароль', - 'recommend_desktop': - 'We recommend using the desktop app for the best performance', - 'recommend_mobile': - 'We recommend using the mobile app for the best performance', - 'disconnected_gateway': 'Successfully disconnected gateway', - 'disconnect': 'Disconnect', - 'add_to_invoices': 'Add to Invoices', - 'acss': 'Pre-authorized debit payments', - 'becs': 'BECS Direct Debit', - 'bulk_download': 'Download', - 'persist_data_help': - 'Save data locally to enable the app to start faster, disabling may improve performance in large accounts', - 'persist_ui': 'Persist UI', - 'persist_ui_help': - 'Save UI state locally to enable the app to start at the last location, disabling may improve performance', - 'client_postal_code': 'Client Postal Code', - 'client_vat_number': 'Client VAT Number', - 'has_tasks': 'Has Tasks', - 'registration': 'Registration', - 'unauthorized_stripe_warning': - 'Please authorize Stripe to accept online payments.', - 'view_expense': 'View expense # :expense', - 'view_statement': 'View Statement', - 'sepa': 'SEPA Direct Debit', - 'ideal': 'iDEAL', - 'przelewy24': 'Przelewy24', - 'eps': 'EPS', - 'fpx': 'FPX', - 'update_all_records': 'Update all records', - 'system': 'Сичтема', - 'set_default_company': 'Set Default Company', - 'updated_company': 'Successfully updated company', - 'kbc': 'KBC', - 'bancontact': 'Bancontact', - 'why_are_you_leaving': 'Help us improve by telling us why (optional)', - 'webhook_success': 'Webhook Success', - 'error_cross_client_tasks': 'Tasks must all belong to the same client', - 'error_cross_client_expenses': - 'Expenses must all belong to the same client', - 'app': 'App', - 'for_best_performance': 'For the best performance download the :app app', - 'gross_line_total': 'Gross line total', - 'bulk_email_invoice': 'Email Invoice', - 'bulk_email_quote': 'Email Quote', - 'bulk_email_credit': 'Email Credit', - 'from_name': 'From Name', - 'clone_to_expense': 'Clone to expense', - 'recurring_expense': 'Recurring Expense', - 'recurring_expenses': 'Recurring Expenses', - 'new_recurring_expense': 'New Recurring Expense', - 'edit_recurring_expense': 'Edit Recurring Expense', - 'created_recurring_expense': 'Successfully created recurring expense', - 'updated_recurring_expense': 'Повторяющаяся Затрата успешно обновлена', - 'archived_recurring_expense': 'Successfully archived recurring expense', - 'deleted_recurring_expense': 'Проект успешно удален', - 'removed_recurring_expense': 'Successfully removed recurring expense', - 'restored_recurring_expense': 'Successfully restored recurring expense', - 'search_recurring_expense': 'Search Recurring Expense', - 'search_recurring_expenses': 'Search Recurring Expenses', - 'last_sent_date': 'Last Sent Date', - 'include_drafts': 'Include Drafts', - 'include_drafts_help': 'Include draft records in reports', - 'is_invoiced': 'Is Invoiced', - 'change_plan': 'Change Plan', - 'persist_data': 'Persist Data', - 'customer_count': 'Customer Count', - 'verify_customers': 'Verify Customers', - 'google_analytics': 'Google Analytics', - 'google_analytics_tracking_id': 'Google Analytics Tracking ID', - 'decimal_comma': 'Decimal Comma', - 'use_comma_as_decimal_place': 'Use comma as decimal place in forms', - 'select_method': 'Select Method', - 'select_platform': 'Select Platform', - 'use_web_app_to_connect_gmail': - 'Please use the web app to connect to Gmail', - 'expense_tax_help': 'Item tax rates are disabled', - 'enable_markdown': 'Enable Markdown', - 'enable_markdown_help': 'Convert markdown to HTML on the PDF', - 'user_guide': 'Руководство пользователя', - 'add_second_contact': 'Add Second Contact', - 'previous_page': 'Previous Page', - 'next_page': 'Next Page', - 'export_colors': 'Export Colors', - 'import_colors': 'Import Colors', - 'clear_all': 'Clear All', - 'contrast': 'Contrast', - 'custom_colors': 'Custom Colors', - 'colors': 'Colors', - 'sidebar_active_background_color': 'Sidebar Active Background Color', - 'sidebar_active_font_color': 'Sidebar Active Font Color', - 'sidebar_inactive_background_color': 'Sidebar Inactive Background Color', - 'sidebar_inactive_font_color': 'Sidebar Inactive Font Color', - 'table_alternate_row_background_color': - 'Table Alternate Row Background Color', - 'invoice_header_background_color': 'Invoice Header Background Color', - 'invoice_header_font_color': 'Invoice Header Font Color', - 'net_subtotal': 'Net', - 'review_app': 'Review App', - 'check_status': 'Check Status', - 'free_trial': 'Free Trial', - 'free_trial_ends_in_days': - 'The Pro plan trial ends in :count days, click to upgrade.', - 'free_trial_ends_today': - 'Today is the last day of the Pro plan trial, click to upgrade.', - 'change_email': 'Change Email', - 'client_portal_domain_hint': - 'Optionally configure a separate client portal domain', - 'tasks_shown_in_portal': 'Tasks Shown in Portal', - 'uninvoiced': 'Uninvoiced', - 'subdomain_guide': - 'The subdomain is used in the client portal to personalize links to match your brand. ie, https://your-brand.invoicing.co', - 'send_time': 'Send Time', - 'import_data': 'Импорт данных', - 'import_settings': 'Import Settings', - 'json_file_missing': 'Please provide the JSON file', - 'json_option_missing': 'Please select to import the settings and/or data', - 'json': 'JSON', - 'no_payment_types_enabled': 'No payment types enabled', - 'wait_for_data': 'Please wait for the data to finish loading', - 'net_total': 'Net Total', - 'has_taxes': 'Has Taxes', - 'import_customers': 'Import Customers', - 'imported_customers': 'Successfully started importing customers', - 'login_success': 'Successful Login', - 'login_failure': 'Failed Login', - 'exported_data': - 'Once the file is ready you\"ll receive an email with a download link', - 'include_deleted_clients': 'Include Deleted Clients', - 'include_deleted_clients_help': - 'Load records belonging to deleted clients', - 'step_1_sign_in': 'Step 1: Sign In', - 'step_2_authorize': 'Step 2: Authorize', - 'account_id': 'Account ID', - 'migration_not_yet_completed': 'The migration has not yet completed', - 'activity_100': ':user created recurring invoice :recurring_invoice', - 'activity_101': ':user updated recurring invoice :recurring_invoice', - 'activity_102': ':user archived recurring invoice :recurring_invoice', - 'activity_103': ':user deleted recurring invoice :recurring_invoice', - 'activity_104': ':user restored recurring invoice :recurring_invoice', - 'show_task_end_date': 'Show Task End Date', - 'show_task_end_date_help': 'Enable specifying the task end date', - 'gateway_setup': 'Gateway Setup', - 'preview_sidebar': 'Preview Sidebar', - 'years_data_shown': 'Years Data Shown', - 'ended_all_sessions': 'Successfully ended all sessions', - 'end_all_sessions': 'End All Sessions', - 'count_session': '1 Session', - 'count_sessions': ':count Sessions', - 'invoice_created': 'Invoice Created', - 'quote_created': 'Quote Created', - 'credit_created': 'Credit Created', - 'pro': 'Pro', - 'enterprise': 'Enterprise', - 'last_updated': 'Последнее обновление', - 'invoice_item': 'Invoice Item', - 'quote_item': 'Quote Item', - 'contact_first_name': 'Contact First Name', - 'contact_last_name': 'Contact Last Name', - 'order': 'Order', - 'unassigned': 'Unassigned', - 'partial_value': 'Должно быть больше нуля и меньше, чем всего', - 'search_kanban': 'Search Kanban', - 'search_kanbans': 'Search Kanban', - 'kanban': 'Kanban', - 'enable': 'Включить', - 'move_top': 'Move Top', - 'move_up': 'Move Up', - 'move_down': 'Move Down', - 'move_bottom': 'Move Bottom', - 'subdomain_help': - 'Set the subdomain or display the invoice on your own website.', - 'body_variable_missing': - 'Error: the custom email must include a :body variable', - 'add_body_variable_message': 'Make sure to include a :body variable', - 'view_date_formats': 'View Date Formats', - 'is_viewed': 'Is Viewed', - 'letter': 'Letter', - 'legal': 'Legal', - 'page_layout': 'Page Layout', - 'portrait': 'Portrait', - 'landscape': 'Landscape', - 'owner_upgrade_to_paid_plan': - 'The account owner can upgrade to a paid plan to enable the advanced advanced settings', - 'upgrade_to_paid_plan': - 'Upgrade to a paid plan to enable the advanced settings', - 'invoice_payment_terms': 'Invoice Payment Terms', - 'quote_valid_until': 'Quote Valid Until', - 'no_headers': 'No Headers', - 'add_header': 'Add Header', - 'remove_header': 'Remove Header', - 'return_url': 'Return URL', - 'rest_method': 'REST Method', - 'header_key': 'Header Key', - 'header_value': 'Header Value', - 'recurring_products': 'Recurring Products', - 'promo_code': 'Promo code', - 'promo_discount': 'Promo Discount', - 'allow_cancellation': 'Allow Cancellation', - 'per_seat_enabled': 'Per Seat Enabled', - 'max_seats_limit': 'Max Seats Limit', - 'trial_enabled': 'Trial Enabled', - 'trial_duration': 'Trial Duration', - 'allow_query_overrides': 'Allow Query Overrides', - 'allow_plan_changes': 'Allow Plan Changes', - 'plan_map': 'Plan Map', - 'refund_period': 'Refund Period', - 'webhook_configuration': 'Webhook Configuration', - 'purchase_page': 'Purchase Page', - 'security': 'Security', - 'email_bounced': 'Email Bounced', - 'email_spam_complaint': 'Spam Complaint', - 'email_delivery': 'Email Delivery', - 'webhook_response': 'Webhook Response', - 'pdf_response': 'PDF Response', - 'authentication_failure': 'Authentication Failure', - 'pdf_failed': 'PDF Failed', - 'pdf_success': 'PDF Success', - 'modified': 'Modified', - 'subscription': 'Subscription', - 'subscriptions': 'Subscriptions', - 'new_subscription': 'New Subscription', - 'edit_subscription': 'Edit Subscription', - 'created_subscription': 'Successfully created subscription', - 'updated_subscription': 'Successfully updated subscription', - 'archived_subscription': 'Successfully archived subscription', - 'deleted_subscription': 'Successfully deleted subscription', - 'removed_subscription': 'Successfully removed subscription', - 'restored_subscription': 'Successfully restored subscription', - 'search_subscription': 'Search 1 Subscription', - 'search_subscriptions': 'Search :count Subscriptions', - 'subdomain_is_not_available': 'Subdomain is not available', - 'connect_gmail': 'Connect Gmail', - 'disconnect_gmail': 'Disconnect Gmail', - 'connected_gmail': 'Successfully connected Gmail', - 'disconnected_gmail': 'Successfully disconnected Gmail', - 'update_fail_help': - 'Changes to the codebase may be blocking the update, you can run this command to discard the changes:', - 'client_id_number': 'Client ID Number', - 'count_minutes': ':count Minutes', - 'password_timeout': 'Password Timeout', - 'shared_invoice_credit_counter': 'Shared Invoice/Credit Counter', - 'use_last_email': 'Use last email', - 'activate_company': 'Activate Company', - 'activate_company_help': - 'Enable emails, recurring invoices and notifications', - 'an_error_occurred_try_again': 'An error occurred, please try again', - 'please_first_set_a_password': 'Please first set a password', - 'changing_phone_disables_two_factor': - 'Warning: Changing your phone number will disable 2FA', - 'help_translate': 'Help Translate', - 'please_select_a_country': 'Please select a country', - 'resend_invite': 'Послать приглашение еще раз', - 'disabled_two_factor': 'Successfully disabled 2FA', - 'connected_google': 'Successfully connected account', - 'disconnected_google': 'Successfully disconnected account', - 'delivered': 'Delivered', - 'bounced': 'Bounced', - 'spam': 'Spam', - 'view_docs': 'View Docs', - 'enter_phone_to_enable_two_factor': - 'Please provide a mobile phone number to enable two factor authentication', - 'send_sms': 'Send SMS', - 'sms_code': 'SMS Code', - 'two_factor_setup_help': 'Scan the bar code with a :link compatible app.', - 'enabled_two_factor': 'Successfully enabled Two-Factor Authentication', - 'connect_google': 'Connect Google', - 'disconnect_google': 'Disconnect Google', - 'enable_two_factor': 'Two-Factor Authentication', - 'disable_two_factor': 'Disable Two Factor', - 'require_password_with_social_login': - 'Require Password with Social Login', - 'stay_logged_in': 'Stay Logged In', - 'session_about_to_expire': 'Warning: Your session is about to expire', - 'count_hours': ':count Hours', - 'count_day': '1 Day', - 'count_days': ':count Days', - 'web_session_timeout': 'Web Session Timeout', - 'security_settings': 'Security Settings', - 'resend_email': 'Resend Email', - 'confirm_your_email_address': 'Please confirm your email address', - 'refunded_payment': 'Refunded Payment', - 'partially_unapplied': 'Partially Unapplied', - 'select_a_gmail_user': 'Please select a user authenticated with Gmail', - 'list_long_press': 'List Long Press', - 'show_actions': 'Show Actions', - 'start_multiselect': 'Start Multiselect', - 'email_sent_to_confirm_email': - 'An email has been sent to confirm the email address', - 'counter_pattern_error': - 'To use :client_counter please add either :client_number or :client_id_number to prevent conflicts', - 'this_quarter': 'This Quarter', - 'last_quarter': 'Last Quarter', - 'to_update_run': 'To update run', - 'convert_to_invoice': 'Конвертировать в счёт', - 'registration_url': 'Registration URL', - 'invoice_project': 'Invoice Project', - 'invoice_task': 'Включить в счет', - 'invoice_expense': 'Invoice Expense', - 'search_payment_term': 'Search 1 Payment Term', - 'search_payment_terms': 'Search :count Payment Terms', - 'save_and_preview': 'Save and Preview', - 'save_and_email': 'Save and Email', - 'supported_events': 'Supported Events', - 'converted_amount': 'Converted Amount', - 'converted_balance': 'Converted Balance', - 'converted_paid_to_date': 'Converted Paid to Date', - 'converted_credit_balance': 'Converted Credit Balance', - 'converted_total': 'Converted Total', - 'is_sent': 'Is Sent', - 'default_documents': 'Документы по умолчанию', - 'document_upload': 'Document Upload', - 'document_upload_help': 'Enable clients to upload documents', - 'expense_total': 'Expense Total', - 'enter_taxes': 'Enter Taxes', - 'by_rate': 'By Rate', - 'by_amount': 'By Amount', - 'enter_amount': 'Enter Amount', - 'before_taxes': 'Before Taxes', - 'after_taxes': 'After Taxes', - 'color': 'Color', - 'show': 'Show', - 'hide': 'Скрыть', - 'empty_columns': 'Empty Columns', - 'debug_mode_is_enabled': 'Debug mode is enabled', - 'debug_mode_is_enabled_help': - 'Warning: it is intended for use on local machines, it can leak credentials. Click to learn more.', - 'running_tasks': 'Running Tasks', - 'recent_tasks': 'Recent Tasks', - 'recent_expenses': 'Recent Expenses', - 'upcoming_expenses': 'Upcoming Expenses', - 'update_app': 'Update App', - 'started_import': 'Successfully started import', - 'duplicate_column_mapping': 'Duplicate column mapping', - 'uses_inclusive_taxes': 'Uses Inclusive Taxes', - 'is_amount_discount': 'Is Amount Discount', - 'column': 'Столбец', - 'sample': 'Пример', - 'map_to': 'Map To', - 'import': 'Импорт', - 'first_row_as_column_names': 'Use first row as column names', - 'select_file': 'Укажите файл', - 'no_file_selected': 'No File Selected', - 'csv_file': 'CSV-файл', - 'csv': 'CSV', - 'freshbooks': 'FreshBooks', - 'invoice2go': 'Invoice2go', - 'invoicely': 'Invoicely', - 'waveaccounting': 'Wave Accounting', - 'zoho': 'Zoho', - 'accounting': 'Accounting', - 'required_files_missing': 'Please provide all CSVs.', - 'import_type': 'Import Type', - 'html_mode': 'HTML Mode', - 'html_mode_help': 'Preview updates faster but is less accurate', - 'view_licenses': 'View Licenses', - 'webhook_url': 'Webhook URL', - 'fullscreen_editor': 'Fullscreen Editor', - 'sidebar_editor': 'Sidebar Editor', - 'please_type_to_confirm': 'Please type \":value\" to confirm', - 'purge': 'Purge', - 'service': 'Услуга', - 'clone_to': 'Clone To', - 'clone_to_other': 'Clone to Other', - 'labels': 'Labels', - 'add_custom': 'Add Custom', - 'payment_tax': 'Payment Tax', - 'unpaid': 'Неоплачено', - 'white_label': 'White Label', - 'delivery_note': 'Delivery Note', - 'sent_invoices_are_locked': 'Sent invoices are locked', - 'paid_invoices_are_locked': 'Paid invoices are locked', - 'source_code': 'Source Code', - 'app_platforms': 'App Platforms', - 'invoice_late': 'Invoice Late', - 'quote_expired': 'Quote Expired', - 'partial_due': 'Partial Due', - 'invoice_total': 'Итого счёта', - 'quote_total': 'Всего', - 'credit_total': 'Credit Total', - 'recurring_invoice_total': 'Invoice Total', - 'actions': 'Actions', - 'expense_number': 'Expense Number', - 'task_number': 'Task Number', - 'project_number': 'Project Number', - 'project_name': 'Project Name', - 'warning': 'Warning', - 'view_settings': 'View Settings', - 'company_disabled_warning': - 'Warning: this company has not yet been activated', - 'late_invoice': 'Late Invoice', - 'expired_quote': 'Expired Quote', - 'remind_invoice': 'Remind Invoice', - 'cvv': 'CVV', - 'client_name': 'Имя клиента', - 'client_phone': 'Client Phone', - 'required_fields': 'Required Fields', - 'calculated_rate': 'Calculated Rate', - 'default_task_rate': 'Default Task Rate', - 'clear_cache': 'Clear Cache', - 'sort_order': 'Sort Order', - 'task_status': 'Status', - 'task_statuses': 'Task Statuses', - 'new_task_status': 'New Task Status', - 'edit_task_status': 'Edit Task Status', - 'created_task_status': 'Successfully created task status', - 'updated_task_status': 'Successfully update task status', - 'archived_task_status': 'Successfully archived task status', - 'deleted_task_status': 'Successfully deleted task status', - 'removed_task_status': 'Successfully removed task status', - 'restored_task_status': 'Successfully restored task status', - 'archived_task_statuses': 'Successfully archived :value task statuses', - 'deleted_task_statuses': 'Successfully deleted :value task statuses', - 'restored_task_statuses': 'Successfully restored :value task statuses', - 'search_task_status': 'Search 1 Task Status', - 'search_task_statuses': 'Search :count Task Statuses', - 'show_tasks_table': 'Show Tasks Table', - 'show_tasks_table_help': - 'Always show the tasks section when creating invoices', - 'invoice_task_timelog': 'Invoice Task Timelog', - 'invoice_task_timelog_help': 'Add time details to the invoice line items', - 'invoice_task_datelog': 'Invoice Task Datelog', - 'invoice_task_datelog_help': 'Add date details to the invoice line items', - 'auto_start_tasks_help': 'Start tasks before saving', - 'configure_statuses': 'Configure Statuses', - 'task_settings': 'Task Settings', - 'configure_categories': 'Configure Categories', - 'expense_categories': 'Категория Затрат', - 'new_expense_category': 'New Expense Category', - 'edit_expense_category': 'Edit Expense Category', - 'created_expense_category': 'Successfully created expense category', - 'updated_expense_category': 'Категория Затрат успешно обновлена', - 'archived_expense_category': 'Successfully archived expense category', - 'deleted_expense_category': 'Successfully deleted category', - 'removed_expense_category': 'Successfully removed expense category', - 'restored_expense_category': 'Successfully restored expense category', - 'archived_expense_categories': - 'Successfully archived :count expense category', - 'deleted_expense_categories': - 'Successfully deleted expense :value categories', - 'restored_expense_categories': - 'Successfully restored expense :value categories', - 'search_expense_category': 'Search 1 Expense Category', - 'search_expense_categories': 'Search :count Expense Categories', - 'use_available_credits': 'Use Available Credits', - 'show_option': 'Show Option', - 'negative_payment_error': - 'The credit amount cannot exceed the payment amount', - 'view_changes': 'View Changes', - 'force_update': 'Force Update', - 'force_update_help': - 'You are running the latest version but there may be pending fixes available.', - 'mark_paid_help': 'Track the expense has been paid', - 'should_be_invoiced': 'Should be invoiced', - 'should_be_invoiced_help': 'Enable the expense to be invoiced', - 'add_documents_to_invoice_help': 'Make the documents visible', - 'convert_currency_help': 'Set an exchange rate', - 'expense_settings': 'Expense Settings', - 'clone_to_recurring': 'Clone to Recurring', - 'crypto': 'Crypto', - 'paypal': 'PayPal', - 'alipay': 'Alipay', - 'sofort': 'Sofort', - 'apple_pay': 'Apple/Google Pay', - 'user_field': 'User Field', - 'variables': 'Variables', - 'show_password': 'Show Password', - 'hide_password': 'Hide Password', - 'copy_error': 'Copy Error', - 'capture_card': 'Capture Card', - 'auto_bill_enabled': 'Auto Bill Enabled', - 'total_taxes': 'Total Taxes', - 'line_taxes': 'Line Taxes', - 'total_fields': 'Total Fields', - 'stopped_recurring_invoice': 'Successfully stopped recurring invoice', - 'started_recurring_invoice': 'Successfully started recurring invoice', - 'resumed_recurring_invoice': 'Successfully resumed recurring invoice', - 'gateway_refund': 'Gateway Refund', - 'gateway_refund_help': 'Process the refund with the payment gateway', - 'due_date_days': 'Due Date', - 'paused': 'Paused', - 'mark_active': 'Mark Active', - 'day_count': 'Day :count', - 'first_day_of_the_month': 'First Day of the Month', - 'last_day_of_the_month': 'Last Day of the Month', - 'use_payment_terms': 'Use Payment Terms', - 'endless': 'Endless', - 'next_send_date': 'Next Send Date', - 'remaining_cycles': 'Remaining Cycles', - 'recurring_invoice': 'Повторяющийся счет', - 'recurring_invoices': 'Повторяющиеся счета', - 'new_recurring_invoice': 'Создать повторяющийся счет', - 'edit_recurring_invoice': 'Edit Recurring Invoice', - 'created_recurring_invoice': 'Successfully created recurring invoice', - 'updated_recurring_invoice': 'Successfully updated recurring invoice', - 'archived_recurring_invoice': 'Successfully archived recurring invoice', - 'deleted_recurring_invoice': 'Successfully deleted recurring invoice', - 'removed_recurring_invoice': 'Successfully removed recurring invoice', - 'restored_recurring_invoice': 'Successfully restored recurring invoice', - 'archived_recurring_invoices': - 'Successfully archived recurring :value invoices', - 'deleted_recurring_invoices': - 'Successfully deleted recurring :value invoices', - 'restored_recurring_invoices': - 'Successfully restored recurring :value invoices', - 'search_recurring_invoice': 'Search 1 Recurring Invoice', - 'search_recurring_invoices': 'Search :count Recurring Invoices', - 'send_date': 'Send Date', - 'auto_bill_on': 'Auto Bill On', - 'minimum_under_payment_amount': 'Minimum Under Payment Amount', - 'profit': 'Profit', - 'line_item': 'Line Item', - 'allow_over_payment': 'Allow Over Payment', - 'allow_over_payment_help': 'Support paying extra to accept tips', - 'allow_under_payment': 'Allow Under Payment', - 'allow_under_payment_help': - 'Support paying at minimum the partial/deposit amount', - 'test_mode': 'Test Mode', - 'opened': 'Opened', - 'payment_reconciliation_failure': 'Reconciliation Failure', - 'payment_reconciliation_success': 'Reconciliation Success', - 'gateway_success': 'Gateway Success', - 'gateway_failure': 'Gateway Failure', - 'gateway_error': 'Gateway Error', - 'email_send': 'Email Send', - 'email_retry_queue': 'Email Retry Queue', - 'failure': 'Failure', - 'quota_exceeded': 'Quota Exceeded', - 'upstream_failure': 'Upstream Failure', - 'system_logs': 'System Logs', - 'view_portal': 'View Portal', - 'copy_link': 'Copy Link', - 'token_billing': 'Сохранить данные карты', - 'welcome_to_invoice_ninja': 'Welcome to Invoice Ninja', - 'always': 'Always', - 'optin': 'Opt-In', - 'optout': 'Opt-Out', - 'label': 'Label', - 'client_number': 'Client Number', - 'auto_convert': 'Auto Convert', - 'company_name': 'Company Name', - 'reminder1_sent': 'Reminder 1 Sent', - 'reminder2_sent': 'Reminder 2 Sent', - 'reminder3_sent': 'Reminder 3 Sent', - 'reminder_last_sent': 'Reminder Last Sent', - 'pdf_page_info': 'Page :current of :total', - 'emailed_invoices': 'Successfully emailed invoices', - 'emailed_quotes': 'Successfully emailed quotes', - 'emailed_credits': 'Successfully emailed credits', - 'gateway': 'Шлюз', - 'view_in_stripe': 'View in Stripe', - 'rows_per_page': 'Rows Per Page', - 'hours': 'Часы', - 'statement': 'Statement', - 'taxes': 'Налоги', - 'surcharge': 'Surcharge', - 'apply_payment': 'Apply Payment', - 'apply_credit': 'Apply Credit', - 'apply': 'Apply', - 'unapplied': 'Unapplied', - 'select_label': 'Выбрать ярлык', - 'custom_labels': 'Custom Labels', - 'record_type': 'Record Type', - 'record_name': 'Record Name', - 'file_type': 'File Type', - 'height': 'Height', - 'width': 'Width', - 'to': 'Кому', - 'health_check': 'Health Check', - 'payment_type_id': 'Способ оплаты', - 'last_login_at': 'Last Login At', - 'company_key': 'Company Key', - 'storefront': 'Storefront', - 'storefront_help': 'Enable third-party apps to create invoices', - 'client_created': 'Client Created', - 'online_payment_email': 'Online Payment Email', - 'manual_payment_email': 'Manual Payment Email', - 'completed': 'Completed', - 'gross': 'Gross', - 'net_amount': 'Net Amount', - 'net_balance': 'Net Balance', - 'client_settings': 'Client Settings', - 'selected_invoices': 'Selected Invoices', - 'selected_payments': 'Selected Payments', - 'selected_quotes': 'Selected Quotes', - 'selected_tasks': 'Selected Tasks', - 'selected_expenses': 'Selected Expenses', - 'upcoming_invoices': 'Текущие счета', - 'past_due_invoices': 'Past Due Invoices', - 'recent_payments': 'Последние платежи', - 'upcoming_quotes': 'Входящие Прайс-листы', - 'expired_quotes': 'Expired Quotes', - 'create_client': 'Create Client', - 'create_invoice': 'Создать счёт', - 'create_quote': 'Создать котировку', - 'create_payment': 'Create Payment', - 'create_vendor': 'Создать поставщика', - 'update_quote': 'Update Quote', - 'delete_quote': 'Удалить котировку', - 'update_invoice': 'Update Invoice', - 'delete_invoice': 'Удалить счёт', - 'update_client': 'Update Client', - 'delete_client': 'Удалить клиента', - 'delete_payment': 'Удалить оплату', - 'update_vendor': 'Update Vendor', - 'delete_vendor': 'Delete Vendor', - 'create_expense': 'Create Expense', - 'update_expense': 'Update Expense', - 'delete_expense': 'Удалить затраты', - 'create_task': 'Создать задание', - 'update_task': 'Update Task', - 'delete_task': 'Удалить задание', - 'approve_quote': 'Approve Quote', - 'off': 'Off', - 'when_paid': 'When Paid', - 'expires_on': 'Expires On', - 'free': 'Бесплатно', - 'plan': 'Plan', - 'show_sidebar': 'Show Sidebar', - 'hide_sidebar': 'Hide Sidebar', - 'event_type': 'Event Type', - 'target_url': 'Цель', - 'copy': 'Copy', - 'must_be_online': 'Please restart the app once connected to the internet', - 'crons_not_enabled': 'The crons need to be enabled', - 'api_webhooks': 'API Webhooks', - 'search_webhooks': 'Search :count Webhooks', - 'search_webhook': 'Search 1 Webhook', - 'webhook': 'Webhook', - 'webhooks': 'Webhooks', - 'new_webhook': 'New Webhook', - 'edit_webhook': 'Edit Webhook', - 'created_webhook': 'Successfully created webhook', - 'updated_webhook': 'Successfully updated webhook', - 'archived_webhook': 'Successfully archived webhook', - 'deleted_webhook': 'Successfully deleted webhook', - 'removed_webhook': 'Successfully removed webhook', - 'restored_webhook': 'Successfully restored webhook', - 'archived_webhooks': 'Successfully archived :value webhooks', - 'deleted_webhooks': 'Successfully deleted :value webhooks', - 'removed_webhooks': 'Successfully removed :value webhooks', - 'restored_webhooks': 'Successfully restored :value webhooks', - 'api_tokens': 'API токены', - 'api_docs': 'API Docs', - 'search_tokens': 'Search :count Tokens', - 'search_token': 'Search 1 Token', - 'token': 'Права', - 'tokens': 'Токены', - 'new_token': 'New Token', - 'edit_token': 'Изменить права', - 'created_token': 'Токен создан', - 'updated_token': 'Токен обновлён', - 'archived_token': 'Successfully archived token', - 'deleted_token': 'Токен успешно удалён', - 'removed_token': 'Successfully removed token', - 'restored_token': 'Successfully restored token', - 'archived_tokens': 'Successfully archived :value tokens', - 'deleted_tokens': 'Successfully deleted :value tokens', - 'restored_tokens': 'Successfully restored :value tokens', - 'client_registration': 'Client Registration', - 'client_registration_help': - 'Enable clients to self register in the portal', - 'customize_and_preview': 'Customize & Preview', - 'email_invoice': 'Отправить счёт', - 'email_quote': 'Отправить прайс-лист', - 'email_credit': 'Email Credit', - 'email_payment': 'Email Payment', - 'client_email_not_set': 'Client does not have an email address set', - 'ledger': 'Ledger', - 'view_pdf': 'View PDF', - 'all_records': 'All records', - 'owned_by_user': 'Owned by user', - 'credit_remaining': 'Credit Remaining', - 'contact_name': 'Contact Name', - 'use_default': 'Use default', - 'reminder_endless': 'Endless Reminders', - 'number_of_days': 'Number of days', - 'configure_payment_terms': 'Configure Payment Terms', - 'payment_term': 'Payment Term', - 'new_payment_term': 'New Payment Term', - 'edit_payment_term': 'Edit Payment Term', - 'created_payment_term': 'Successfully created payment term', - 'updated_payment_term': 'Successfully updated payment term', - 'archived_payment_term': 'Successfully archived payment term', - 'deleted_payment_term': 'Successfully deleted payment term', - 'removed_payment_term': 'Successfully removed payment term', - 'restored_payment_term': 'Successfully restored payment term', - 'archived_payment_terms': 'Successfully archived :value payment terms', - 'deleted_payment_terms': 'Successfully deleted :value payment terms', - 'restored_payment_terms': 'Successfully restored :value payment terms', - 'email_sign_in': 'Sign in with email', - 'change': 'Change', - 'change_to_mobile_layout': 'Change to the mobile layout?', - 'change_to_desktop_layout': 'Change to the desktop layout?', - 'send_from_gmail': 'Send from Gmail', - 'reversed': 'Reversed', - 'cancelled': 'Cancelled', - 'credit_amount': 'Сумма кредита', - 'quote_amount': 'Quote Amount', - 'hosted': 'Hosted', - 'selfhosted': 'Self-Hosted', - 'exclusive': 'Exclusive', - 'inclusive': 'Inclusive', - 'hide_menu': 'Hide Menu', - 'show_menu': 'Show Menu', - 'partially_refunded': 'Partially Refunded', - 'search_documents': 'Search Documents', - 'search_designs': 'Search Designs', - 'search_invoices': 'Search Invoices', - 'search_clients': 'Search Clients', - 'search_products': 'Search Products', - 'search_quotes': 'Search Quotes', - 'search_credits': 'Search Credits', - 'search_vendors': 'Search Vendors', - 'search_users': 'Search Users', - 'search_tax_rates': 'Search Tax Rates', - 'search_tasks': 'Search Tasks', - 'search_settings': 'Search Settings', - 'search_projects': 'Search Projects', - 'search_expenses': 'Search Expenses', - 'search_payments': 'Search Payments', - 'search_groups': 'Search Groups', - 'search_company': 'Search Company', - 'search_document': 'Search 1 Document', - 'search_design': 'Search 1 Design', - 'search_invoice': 'Search 1 Invoice', - 'search_client': 'Search 1 Client', - 'search_product': 'Search 1 Product', - 'search_quote': 'Search 1 Quote', - 'search_credit': 'Search 1 Credit', - 'search_vendor': 'Search 1 Vendor', - 'search_user': 'Search 1 User', - 'search_tax_rate': 'Search 1 Tax Rate', - 'search_task': 'Search 1 Tasks', - 'search_project': 'Search 1 Project', - 'search_expense': 'Search 1 Expense', - 'search_payment': 'Search 1 Payment', - 'search_group': 'Search 1 Group', - 'refund_payment': 'Refund Payment', - 'cancelled_invoice': 'Successfully cancelled invoice', - 'cancelled_invoices': 'Successfully cancelled invoices', - 'reversed_invoice': 'Successfully reversed invoice', - 'reversed_invoices': 'Successfully reversed invoices', - 'reverse': 'Reverse', - 'full_name': 'Полное имя', - 'city_state_postal': 'City/State/Postal', - 'postal_city_state': 'Индекс/Город/Страна', - 'custom1': 'First Custom', - 'custom2': 'Second Custom', - 'custom3': 'Third Custom', - 'custom4': 'Fourth Custom', - 'optional': 'Optional', - 'license': 'License', - 'purge_data': 'Purge Data', - 'purge_successful': 'Информация о компании успешно удалена', - 'purge_data_message': - 'Warning: This will permanently erase your data, there is no undo.', - 'invoice_balance': 'Invoice Balance', - 'age_group_0': '0-30 дней', - 'age_group_30': '30-60 дней', - 'age_group_60': '60-90 дней', - 'age_group_90': '90-120 дней', - 'age_group_120': '120+ дней', - 'refresh': 'Refresh', - 'saved_design': 'Successfully saved design', - 'client_details': 'Client Details', - 'company_address': 'Company Address', - 'invoice_details': 'Детали счёта', - 'quote_details': 'Quote Details', - 'credit_details': 'Credit Details', - 'product_columns': 'Product Columns', - 'task_columns': 'Task Columns', - 'add_field': 'Add Field', - 'all_events': 'All Events', - 'permissions': 'Permissions', - 'none': 'None', - 'owned': 'Owned', - 'payment_success': 'Payment Success', - 'payment_failure': 'Payment Failure', - 'invoice_sent': ':count счет отправлен', - 'quote_sent': 'Quote Sent', - 'credit_sent': 'Credit Sent', - 'invoice_viewed': 'Invoice Viewed', - 'quote_viewed': 'Quote Viewed', - 'credit_viewed': 'Credit Viewed', - 'quote_approved': 'Quote Approved', - 'receive_all_notifications': 'Receive All Notifications', - 'purchase_license': 'Purchase License', - 'apply_license': 'Apply License', - 'cancel_account': 'Удалить аккаунт', - 'cancel_account_message': - 'Внимание: это приведет к безвозвратному удалению вашего аккаунта.', - 'delete_company': 'Удалить компанию', - 'delete_company_message': - 'Внимание: это приведет к безвозвратному удалению вашего аккаунта.', - 'enabled_modules': 'Enabled Modules', - 'converted_quote': 'Successfully converted quote', - 'credit_design': 'Credit Design', - 'includes': 'Includes', - 'header': 'Заголовок', - 'load_design': 'Загрузить шаблон', - 'css_framework': 'CSS Framework', - 'custom_designs': 'Custom Designs', - 'designs': 'Designs', - 'new_design': 'New Design', - 'edit_design': 'Edit Design', - 'created_design': 'Successfully created design', - 'updated_design': 'Successfully updated design', - 'archived_design': 'Successfully archived design', - 'deleted_design': 'Successfully deleted design', - 'removed_design': 'Successfully removed design', - 'restored_design': 'Successfully restored design', - 'archived_designs': 'Successfully archived :value designs', - 'deleted_designs': 'Successfully deleted :value designs', - 'restored_designs': 'Successfully restored :value designs', - 'proposals': 'Коммерческие предложения', - 'tickets': 'Тикеты', - 'recurring_quotes': 'Повторяющиеся Прайс-листы', - 'recurring_tasks': 'Recurring Tasks', - 'account_management': 'Account Management', - 'credit_date': 'Дата кредита', - 'credit': 'Кредит', - 'credits': 'Кредиты', - 'new_credit': 'Добавить кредит', - 'edit_credit': 'Edit Credit', - 'created_credit': 'Кредит успешно создан', - 'updated_credit': 'Successfully updated credit', - 'archived_credit': 'Кредит успешно архивирован', - 'deleted_credit': 'Кредит успешно удален', - 'removed_credit': 'Successfully removed credit', - 'restored_credit': 'Кредит восстановлен', - 'archived_credits': 'Успешно архивировано :count кредита(ов)', - 'deleted_credits': 'Успешно удалено :count кредита(ов)', - 'restored_credits': 'Successfully restored :value credits', - 'current_version': 'Текущая версия', - 'latest_version': 'Latest Version', - 'update_now': 'Update Now', - 'a_new_version_is_available': 'A new version of the web app is available', - 'update_available': 'Update Available', - 'app_updated': 'Update successfully completed', - 'learn_more': 'Узнать больше', - 'integrations': 'Integrations', - 'tracking_id': 'Tracking Id', - 'slack_webhook_url': 'Slack Webhook URL', - 'credit_footer': 'Credit Footer', - 'credit_terms': 'Credit Terms', - 'new_company': 'Новая компания', - 'added_company': 'Successfully added company', - 'company1': 'Custom Company 1', - 'company2': 'Custom Company 2', - 'company3': 'Custom Company 3', - 'company4': 'Custom Company 4', - 'product1': 'Custom Product 1', - 'product2': 'Custom Product 2', - 'product3': 'Custom Product 3', - 'product4': 'Custom Product 4', - 'client1': 'Custom Client 1', - 'client2': 'Custom Client 2', - 'client3': 'Custom Client 3', - 'client4': 'Custom Client 4', - 'contact1': 'Custom Contact 1', - 'contact2': 'Custom Contact 2', - 'contact3': 'Custom Contact 3', - 'contact4': 'Custom Contact 4', - 'task1': 'Custom Task 1', - 'task2': 'Custom Task 2', - 'task3': 'Custom Task 3', - 'task4': 'Custom Task 4', - 'project1': 'Custom Project 1', - 'project2': 'Custom Project 2', - 'project3': 'Custom Project 3', - 'project4': 'Custom Project 4', - 'expense1': 'Custom Expense 1', - 'expense2': 'Custom Expense 2', - 'expense3': 'Custom Expense 3', - 'expense4': 'Custom Expense 4', - 'vendor1': 'Custom Vendor 1', - 'vendor2': 'Custom Vendor 2', - 'vendor3': 'Custom Vendor 3', - 'vendor4': 'Custom Vendor 4', - 'invoice1': 'Custom Invoice 1', - 'invoice2': 'Custom Invoice 2', - 'invoice3': 'Custom Invoice 3', - 'invoice4': 'Custom Invoice 4', - 'payment1': 'Custom Payment 1', - 'payment2': 'Custom Payment 2', - 'payment3': 'Custom Payment 3', - 'payment4': 'Custom Payment 4', - 'surcharge1': 'Custom Surcharge 1', - 'surcharge2': 'Custom Surcharge 2', - 'surcharge3': 'Custom Surcharge 3', - 'surcharge4': 'Custom Surcharge 4', - 'group1': 'Custom Group 1', - 'group2': 'Custom Group 2', - 'group3': 'Custom Group 3', - 'group4': 'Custom Group 4', - 'reset': 'Сбросить', - 'number': 'Number', - 'export': 'Экспорт', - 'chart': 'График', - 'count': 'Count', - 'totals': 'Итого', - 'blank': 'Blank', - 'day': 'День', - 'month': 'Месяц', - 'year': 'Год', - 'subgroup': 'Subgroup', - 'is_active': 'Is Active', - 'group_by': 'Группировать', - 'credit_balance': 'Баланс кредита', - 'contact_last_login': 'Contact Last Login', - 'contact_full_name': 'Contact Full Name', - 'contact_phone': 'Контактный номер', - 'contact_custom_value1': 'Contact Custom Value 1', - 'contact_custom_value2': 'Contact Custom Value 2', - 'contact_custom_value3': 'Contact Custom Value 3', - 'contact_custom_value4': 'Contact Custom Value 4', - 'shipping_address1': 'Shipping Street', - 'shipping_address2': 'Shipping Apt/Suite', - 'shipping_city': 'Shipping City', - 'shipping_state': 'Shipping State/Province', - 'shipping_postal_code': 'Shipping Postal Code', - 'shipping_country': 'Shipping Country', - 'billing_address1': 'Billing Street', - 'billing_address2': 'Billing Apt/Suite', - 'billing_city': 'Billing City', - 'billing_state': 'Billing State/Province', - 'billing_postal_code': 'Billing Postal Code', - 'billing_country': 'Billing Country', - 'client_id': 'Client Id', - 'assigned_to': 'Назначен', - 'created_by': 'Created by :name', - 'assigned_to_id': 'Assigned To Id', - 'created_by_id': 'Created By Id', - 'add_column': 'Add Column', - 'edit_columns': 'Edit Columns', - 'columns': 'Столбцы', - 'aging': 'Aging', - 'profit_and_loss': 'Прибыли и убытки', - 'reports': 'Reports', - 'report': 'Отчет', - 'add_company': 'Добавить компанию', - 'unpaid_invoice': 'Unpaid Invoice', - 'paid_invoice': 'Оплаченные счета', - 'unapproved_quote': 'Unapproved Quote', - 'help': 'Помощь', - 'refund': 'Refund', - 'refund_date': 'Refund Date', - 'filtered_by': 'Filtered by', - 'contact_email': 'Почта для связи', - 'multiselect': 'Multiselect', - 'entity_state': 'State', - 'verify_password': 'Verify Password', - '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.', - 'message': 'Сообщение', - 'from': 'От', - 'show_product_details': 'Show Product Details', - 'show_product_details_help': - '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', - 'configure_settings': 'Configure Settings', - 'support_forum': 'Форум поддержки', - 'about': 'About', - 'documentation': 'Документация', - 'contact_us': 'Свяжитесь с нами', - 'subtotal': 'Промежуточный итог', - 'line_total': 'Всего', - 'item': 'Название', - 'credit_email': 'Credit Email', - 'iframe_url': 'Веб-сайт', - 'domain_url': 'Domain URL', - 'password_is_too_short': 'Password is too short', - 'password_is_too_easy': - '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', - 'deleted_logo': 'Successfully deleted logo', - 'yes': 'Yes', - 'no': 'No', - 'generate_number': 'Generate Number', - 'when_saved': 'When Saved', - 'when_sent': 'When Sent', - 'select_company': 'Select Company', - 'float': 'Float', - 'collapse': 'Collapse', - 'show_or_hide': 'Show/hide', - 'menu_sidebar': 'Menu Sidebar', - 'history_sidebar': 'History Sidebar', - 'tablet': 'Tablet', - 'mobile': 'Mobile', - 'desktop': 'Рабочий стол', - 'layout': 'Layout', - 'view': 'View', - 'module': 'Module', - 'first_custom': 'First Custom', - 'second_custom': 'Second Custom', - 'third_custom': 'Third Custom', - 'show_cost': 'Show Cost', - 'show_product_cost': 'Show Product Cost', - 'show_cost_help': - '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', - 'show_invoice_quantity': 'Show Invoice Quantity', - 'show_invoice_quantity_help': - 'Display a line item quantity field, otherwise default to one', - 'show_product_discount': 'Show Product Discount', - 'show_product_discount_help': 'Display a line item discount field', - 'default_quantity': 'Default Quantity', - 'default_quantity_help': - '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', - 'default_tax_rate': 'Default Tax Rate', - 'user': 'Пользователь', - 'invoice_tax': 'Invoice Tax', - 'line_item_tax': 'Line Item Tax', - 'inclusive_taxes': 'Inclusive Taxes', - 'invoice_tax_rates': 'Invoice Tax Rates', - 'item_tax_rates': 'Item Tax Rates', - 'no_client_selected': 'Please select a client', - 'configure_rates': 'Configure rates', - 'configure_gateways': 'Configure Gateways', - 'tax_settings': 'Настройки налогов', - 'tax_settings_rates': 'Tax Rates', - 'accent_color': 'Accent Color', - 'switch': 'Switch', - 'comma_sparated_list': 'Comma separated list', - 'options': 'Настройки', - 'single_line_text': 'Single-line text', - 'multi_line_text': 'Multi-line text', - 'dropdown': 'Dropdown', - 'field_type': 'Field Type', - 'recover_password_email_sent': 'A password recovery email has been sent', - 'submit': 'Submit', - 'recover_password': 'Восстановить пароль', - 'late_fees': 'Late Fees', - 'credit_number': 'Credit Number', - 'payment_number': 'Payment Number', - 'late_fee_amount': 'Сумма пени', - 'late_fee_percent': 'Процент пени', - 'schedule': 'Schedule', - 'before_due_date': 'Before the due date', - 'after_due_date': 'After the due date', - 'after_invoice_date': 'After the invoice date', - 'days': 'Дни', - 'invoice_email': 'Письмо', - 'payment_email': 'Платежный адрес эл. почты', - 'partial_payment': 'Partial Payment', - 'payment_partial': 'Partial Payment', - 'partial_payment_email': 'Partial Payment Email', - 'quote_email': 'Quote Email', - 'endless_reminder': 'Endless Reminder', - 'filtered_by_user': 'Filtered by User', - 'administrator': 'Administrator', - 'administrator_help': - 'Allow user to manage users, change settings and modify all records', - 'user_management': 'Управление пользователями', - 'users': 'Пользователи', - 'new_user': 'New User', - 'edit_user': 'Редактировать', - 'created_user': 'Successfully created user', - 'updated_user': 'Профиль пользователя успешно обновлён', - 'archived_user': 'Successfully archived user', - 'deleted_user': 'Пользователь удалён', - 'removed_user': 'Successfully removed user', - 'restored_user': 'Пользователь успешно восстановлен', - 'archived_users': 'Successfully archived :value users', - 'deleted_users': 'Successfully deleted :value users', - 'removed_users': 'Successfully removed :value users', - 'restored_users': 'Successfully restored :value users', - 'general_settings': 'Общие настройки', - 'invoice_options': 'Настройки счета', - 'hide_paid_to_date': 'Скрыть \"Оплатить до\"', - 'hide_paid_to_date_help': - 'Показывать только «Оплатить до» в ваших счетах после получения платежа.', - 'invoice_embed_documents': 'Embed Documents', - 'invoice_embed_documents_help': 'Include attached images in the invoice.', - 'all_pages_header': 'Show Header on', - 'all_pages_footer': 'Show Footer on', - 'first_page': 'First page', - 'all_pages': 'All pages', - 'last_page': 'Last page', - 'primary_font': 'Primary Font', - 'secondary_font': 'Secondary Font', - 'primary_color': 'Основной цвет', - 'secondary_color': 'Второстепенный цвет', - 'page_size': 'Page Size', - 'font_size': 'Размер шрифта', - 'quote_design': 'Шаблон котировок', - 'invoice_fields': 'Поля счёта', - 'product_fields': 'Поля товара/услуги', - 'invoice_terms': 'Условия счёта', - 'invoice_footer': 'Нижний колонтитул счета', - 'quote_terms': 'Quote Terms', - 'quote_footer': 'Quote Footer', - 'auto_email_invoice': 'Auto Email', - 'auto_email_invoice_help': - 'Automatically email recurring invoices when they are created.', - 'auto_archive_invoice': 'Auto Archive', - 'auto_archive_invoice_help': - 'Automatically archive invoices when they are paid.', - 'auto_archive_quote': 'Auto Archive', - 'auto_archive_quote_help': - '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.', - 'workflow_settings': 'Workflow Settings', - 'freq_daily': 'Daily', - 'freq_weekly': 'Еженедельно', - 'freq_two_weeks': 'Две недели', - 'freq_four_weeks': 'Четыре недели', - 'freq_monthly': 'Ежемесячно', - 'freq_two_months': 'Два месяца', - 'freq_three_months': 'Три месяца', - 'freq_four_months': 'Четыре месяца', - 'freq_six_months': 'Полгода', - 'freq_annually': 'Annually', - 'freq_two_years': 'Two years', - 'freq_three_years': 'Three Years', - 'never': 'Never', - 'company': 'Компания', - 'generated_numbers': 'Generated Numbers', - 'charge_taxes': 'Расчёт налогов', - 'next_reset': 'Next Reset', - 'reset_counter': 'Reset Counter', - 'recurring_prefix': 'Повторяющийся префикс', - 'number_padding': 'Number Padding', - 'general': 'General', - 'surcharge_field': 'Surcharge Field', - 'company_field': 'Поле Компании', - 'company_value': 'Company Value', - 'credit_field': 'Credit Field', - 'invoice_field': 'Поле Счёта', - 'invoice_surcharge': 'Invoice Surcharge', - 'client_field': 'Client Field', - 'product_field': 'Поле товара/услуги', - 'payment_field': 'Payment Field', - 'contact_field': 'Contact Field', - 'vendor_field': 'Поле Поставщика', - 'expense_field': 'Expense Field', - 'project_field': 'Project Field', - 'task_field': 'Task Field', - 'group_field': 'Group Field', - 'number_counter': 'Number Counter', - 'prefix': 'Префикс', - 'number_pattern': 'Number Pattern', - 'messages': 'Сообщения', - 'custom_css': 'Пользовательские CSS', - 'custom_javascript': 'Custom JavaScript', - 'signature_on_pdf': 'Show on PDF', - 'signature_on_pdf_help': - '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.', - 'show_accept_quote_terms': 'Quote Terms Checkbox', - 'show_accept_quote_terms_help': - '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_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.', - '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.', - 'plain': 'Plain', - 'light': 'Light', - 'dark': 'Dark', - 'email_design': 'Email Design', - 'attach_pdf': 'Attach PDF', - 'attach_documents': 'Attach Documents', - 'attach_ubl': 'Attach UBL', - 'email_style': 'Email Style', - 'enable_email_markup': 'Enable Markup', - 'reply_to_email': 'Ответить на сообщение', - 'reply_to_name': 'Reply-To Name', - 'bcc_email': 'BCC Email', - 'processed': 'Processed', - 'credit_card': 'Credit Card', - 'bank_transfer': 'Bank Transfer', - 'priority': 'Приоритет', - 'fee_amount': 'Fee Amount', - 'fee_percent': 'Fee Percent', - 'fee_cap': 'Fee Cap', - 'limits_and_fees': 'Limits/Fees', - 'enable_min': 'Enable min', - 'enable_max': 'Enable max', - 'min_limit': 'Min: :min', - 'max_limit': 'Max: :max', - 'min': 'Min', - 'max': 'Max', - 'accepted_card_logos': 'Accepted Card Logos', - 'credentials': 'Credentials', - 'update_address': 'Обновить адрес', - 'update_address_help': - 'Обновить адрес клиента предоставленными сведениями', - 'rate': 'Ставка', - 'tax_rate': 'Налоговая ставка', - 'new_tax_rate': 'New Tax Rate', - 'edit_tax_rate': 'Изменить налоговую ставку', - 'created_tax_rate': 'Налоговая ставка создана', - 'updated_tax_rate': 'Налоговая ставка обновлена', - 'archived_tax_rate': 'Налоговая ставка добавлена в архив', - 'deleted_tax_rate': 'Successfully deleted tax rate', - 'restored_tax_rate': 'Successfully restored tax rate', - 'archived_tax_rates': 'Successfully archived :value tax rates', - 'deleted_tax_rates': 'Successfully deleted :value tax rates', - 'restored_tax_rates': 'Successfully restored :value tax rates', - 'fill_products': 'Автозаполнение товаров/услуг', - 'fill_products_help': - 'Выбор товара/услуги автоматически заполнит описание и стоимость', - 'update_products': 'Автообновление товаров/услуг', - 'update_products_help': - 'Обновление счета автоматически обновит библиотеку товаров/услуг', - 'convert_products': 'Конвертировать товар/услугу', - 'convert_products_help': - 'Автоматически конвертировать цену продукта в валюту клиента', - 'fees': 'Платы', - 'limits': 'Лимиты', - 'provider': 'Provider', - 'company_gateway': 'Payment Gateway', - 'company_gateways': 'Payment Gateways', - 'new_company_gateway': 'New Gateway', - 'edit_company_gateway': 'Edit Gateway', - 'created_company_gateway': 'Successfully created gateway', - 'updated_company_gateway': 'Successfully updated gateway', - 'archived_company_gateway': 'Successfully archived gateway', - 'deleted_company_gateway': 'Successfully deleted gateway', - 'restored_company_gateway': 'Successfully restored gateway', - 'archived_company_gateways': 'Successfully archived :value gateways', - 'deleted_company_gateways': 'Successfully deleted :value gateways', - 'restored_company_gateways': 'Successfully restored :value gateways', - 'continue_editing': 'Continue Editing', - 'discard_changes': 'Discard Changes', - 'default_value': 'Default value', - 'disabled': 'Disabled', - 'currency_format': 'Currency Format', - 'first_day_of_the_week': 'First Day of the Week', - 'first_month_of_the_year': 'First Month of the Year', - 'sunday': 'Воскресенье', - 'monday': 'Понедельник', - 'tuesday': 'Вторник', - 'wednesday': 'Среда', - 'thursday': 'Четверг', - 'friday': 'Пятница', - 'saturday': 'Суббота', - 'january': 'January', - 'february': 'February', - 'march': 'March', - 'april': 'April', - 'may': 'May', - 'june': 'June', - 'july': 'July', - 'august': 'August', - 'september': 'September', - 'october': 'October', - 'november': 'November', - 'december': 'December', - 'symbol': 'Symbol', - 'ocde': 'Code', - 'date_format': 'Date Format', - 'datetime_format': 'Datetime Format', - 'military_time': '24-часовой формат', - 'military_time_help': '24 Hour Display', - 'send_reminders': 'Send Reminders', - 'timezone': 'Timezone', - 'filtered_by_project': 'Filtered by Project', - 'filtered_by_group': 'Filtered by Group', - 'filtered_by_invoice': 'Filtered by Invoice', - 'filtered_by_client': 'Filtered by Client', - 'filtered_by_vendor': 'Filtered by Vendor', - 'group_settings': 'Group Settings', - 'group': 'Группа', - 'groups': 'Groups', - 'new_group': 'New Group', - 'edit_group': 'Edit Group', - 'created_group': 'Successfully created group', - 'updated_group': 'Successfully updated group', - 'archived_groups': 'Successfully archived :value groups', - 'deleted_groups': 'Successfully deleted :value groups', - 'restored_groups': 'Successfully restored :value groups', - 'archived_group': 'Successfully archived group', - 'deleted_group': 'Successfully deleted group', - 'restored_group': 'Successfully restored group', - 'upload_logo': 'Upload Logo', - 'uploaded_logo': 'Successfully uploaded logo', - 'logo': 'Логотип', - 'saved_settings': 'Successfully saved settings', - 'product_settings': 'Настройки товара/услуги', - 'device_settings': 'Device Settings', - 'defaults': 'По умолчанию', - 'basic_settings': 'Основные настройки', - 'advanced_settings': 'Расширенные настройки', - 'company_details': 'Детали компании', - 'user_details': 'Данные пользователя', - 'localization': 'Локализация', - 'online_payments': 'Онлайн платежи', - 'tax_rates': 'Налоговые ставки', - 'notifications': 'Оповещения', - 'import_export': 'Импорт | Экспорт', - 'custom_fields': 'Настраиваемые поля', - 'invoice_design': 'Дизайн счёта', - 'buy_now_buttons': 'Buy Now Buttons', - 'email_settings': 'Настройки эл. почты', - 'templates_and_reminders': 'Шаблоны и Напоминания', - 'credit_cards_and_banks': 'Credit Cards & Banks', - 'data_visualizations': 'Представление данных', - 'price': 'Price', - 'email_sign_up': 'Email Sign Up', - 'google_sign_up': 'Google Sign Up', - 'thank_you_for_your_purchase': 'Thank you for your purchase!', - 'redeem': 'Redeem', - 'back': 'Back', - 'past_purchases': 'Past Purchases', - 'annual_subscription': 'Annual Subscription', - 'pro_plan': 'Pro Plan', - 'enterprise_plan': 'Enterprise Plan', - 'count_users': ':count users', - 'upgrade': 'Upgrade', - '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.', - 'i_agree_to_the': 'I agree to the', - 'terms_of_service': 'Условия использования', - 'privacy_policy': 'Privacy Policy', - 'sign_up': 'Зарегистрироваться', - 'account_login': 'Логин', - 'view_website': 'View Website', - 'create_account': 'Create Account', - 'email_login': 'Email Login', - 'create_new': 'Create New', - 'no_record_selected': 'No record selected', - 'error_unsaved_changes': 'Please save or cancel your changes', - 'download': 'Скачать', - 'requires_an_enterprise_plan': 'Requires an enterprise plan', - 'take_picture': 'Take Picture', - 'upload_file': 'Upload File', - 'document': 'Document', - 'documents': 'Документы', - 'new_document': 'New Document', - 'edit_document': 'Edit Document', - 'uploaded_document': 'Successfully uploaded document', - 'updated_document': 'Successfully updated document', - 'archived_document': 'Successfully archived document', - 'deleted_document': 'Successfully deleted document', - 'restored_document': 'Successfully restored document', - 'archived_documents': 'Successfully archived :value documents', - 'deleted_documents': 'Successfully deleted :value documents', - 'restored_documents': 'Successfully restored :value documents', - 'no_history': 'No History', - 'expense_date': 'Дата Затрат', - 'pending': 'Ожидающий', - 'expense_status_1': 'Logged', - 'expense_status_2': 'Pending', - 'expense_status_3': 'Invoiced', - 'converted': 'Преобразован', - 'add_documents_to_invoice': 'Добавить документы в Счёт', - 'exchange_rate': 'Exchange Rate', - 'convert_currency': 'Convert currency', - 'mark_paid': 'Отметить оплаченным', - 'category': 'Категория', - 'address': 'Адрес', - 'new_vendor': 'Новый поставщик', - 'created_vendor': 'Поставщик успешно создан', - 'updated_vendor': 'Поставщик успешно обновлён', - 'archived_vendor': 'Поставщик успешно архивирован', - 'deleted_vendor': 'Поставщик успешно удалён', - 'restored_vendor': 'Successfully restored vendor', - 'archived_vendors': 'Успешно архивировано :count поставщика(ов)', - 'deleted_vendors': 'Успешно удалено :count поставщика(ов)', - 'restored_vendors': 'Successfully restored :value vendors', - 'new_expense': 'Добавить затраты', - 'created_expense': 'Successfully created expense', - 'updated_expense': 'Затраты успешно обновлены', - 'archived_expense': 'Successfully archived expense', - 'deleted_expense': 'Затраты успешно удалены', - 'restored_expense': 'Successfully restored expense', - 'archived_expenses': 'Successfully archived expenses', - 'deleted_expenses': 'Затраты успешно удалены', - 'restored_expenses': 'Successfully restored :value expenses', - 'copy_shipping': 'Copy Shipping', - 'copy_billing': 'Copy Billing', - 'design': 'Design', - 'failed_to_find_record': 'Failed to find record', - 'invoiced': 'Выставлен счёт', - 'logged': 'Учтено', - 'running': 'Выполняется', - 'resume': 'Назад', - 'task_errors': 'Пожалуйста, исправьте перекрывающиеся интервалы', - 'start': 'Старт', - 'stop': 'Стоп', - 'started_task': 'Successfully started task', - 'stopped_task': 'Задание успешно остановлено', - 'resumed_task': 'Задание успешно возобновлено', - 'now': 'Сейчас', - 'auto_start_tasks': 'Auto Start Tasks', - 'timer': 'Таймер', - 'manual': 'Руководство', - 'budgeted': 'Budgeted', - 'start_time': 'Время начала', - 'end_time': 'Время завершения', - 'date': 'Дата', - 'times': 'Время', - 'duration': 'Длительность', - 'new_task': 'Новое задание', - 'created_task': 'Задание успешно создано', - 'updated_task': 'Задание успешно обновлено', - 'archived_task': 'Задание перенесено в архив', - 'deleted_task': 'Задание удалено', - 'restored_task': 'Задание успешно восстановлено', - 'archived_tasks': 'Перенесено в архив :count заданий', - 'deleted_tasks': 'Удалено :count заданий', - 'restored_tasks': 'Successfully restored :value tasks', - 'please_enter_a_name': 'Please enter a name', - 'budgeted_hours': 'Budgeted Hours', - 'created_project': 'Successfully created project', - 'updated_project': 'Successfully updated project', - 'archived_project': 'Successfully archived project', - 'deleted_project': 'Successfully deleted project', - 'restored_project': 'Successfully restored project', - 'archived_projects': 'Successfully archived :count projects', - 'deleted_projects': 'Successfully deleted :count projects', - 'restored_projects': 'Successfully restored :value projects', - 'new_project': 'New Project', - 'thank_you_for_using_our_app': 'Спасибо что используете наше приложение!', - 'if_you_like_it': 'If you like it please', - 'click_here': 'нажмите сюда', - 'click_here_capital': 'Click here', - 'to_rate_it': 'to rate it.', - 'average': 'Average', - 'unapproved': 'Неподтверждённые', - 'authenticate_to_change_setting': - 'Please authenticate to change this setting', - 'locked': 'Заблокировано', - 'authenticate': 'Authenticate', - 'please_authenticate': 'Please authenticate', - 'biometric_authentication': 'Biometric Authentication', - 'footer': 'Нижний колонтитул', - 'compare': 'Сравнить', - 'hosted_login': 'Hosted Login', - 'selfhost_login': 'Selfhost Login', - 'google_sign_in': 'Sign in with Google', - 'today': 'Сегодня', - 'custom_range': 'Custom Range', - 'date_range': 'Date Range', - 'current': 'Текущий', - 'previous': 'Предыдущий', - 'current_period': 'Текущий период', - 'comparison_period': 'Период сравнения', - 'previous_period': 'Прошлый период', - 'previous_year': 'Преддуший год', - 'compare_to': 'Сравнить с', - 'last7_days': 'Последние 7 дней', - 'last_week': 'За последнюю неделю', - 'last30_days': 'Последние 30 дней', - 'this_month': 'Текущий месяц', - 'last_month': 'Прошлый месяц', - 'this_year': 'This Year', - 'last_year': 'Прошлый год', - 'custom': 'Настроить', - 'clone_to_invoice': 'Добавить в счёт', - 'clone_to_quote': 'Добавить в Прайс-лист', - 'clone_to_credit': 'Clone to Credit', - 'view_invoice': 'Посмотреть счет', - 'convert': 'Конвертирован', - 'more': 'More', - 'edit_client': 'Изменить клиента', - 'edit_product': 'Редактировать товар/услугу', - 'edit_invoice': 'Изменить счёт', - 'edit_quote': 'Изменить котировку', - 'edit_payment': 'Редактировать оплату', - 'edit_task': 'Редактировать задание', - 'edit_expense': 'Редактировать затраты', - 'edit_vendor': 'Редактировать Поставщика', - 'edit_project': 'Edit Project', - 'edit_recurring_quote': 'Edit Recurring Quote', - 'billing_address': 'Адрес для выставления счетов', - 'shipping_address': 'Shipping Address', - 'total_revenue': 'Совокупный доход', - 'average_invoice': 'Средний счёт', - 'outstanding': 'Исходящие', - 'invoices_sent': ':count счетов отправлено', - 'active_clients': 'активные клиенты', - 'close': 'Закрыть', - 'email': 'Эл. почта', - 'password': 'Пароль', - 'url': 'URL', - 'secret': 'Secret', - 'name': 'Название', - 'logout': 'Выйти', - 'login': 'Логин', - 'filter': 'Фильтр', - 'sort': 'Сортировка', - 'search': 'Искать', - 'active': 'Активный', - 'archived': 'Архив', - 'deleted': 'Удален', - 'dashboard': 'Главная', - 'archive': 'Архивировать', - 'delete': 'Удалить', - 'restore': 'Восстановить', - 'refresh_complete': 'Refresh Complete', - 'please_enter_your_email': 'Please enter your email', - 'please_enter_your_password': 'Please enter your password', - 'please_enter_your_url': 'Please enter your URL', - 'please_enter_a_product_key': 'Пожалуйста, введите код товара/услуги', - 'ascending': 'Ascending', - 'descending': 'Descending', - 'save': 'Сохранить', - 'an_error_occurred': 'An error occurred', - 'paid_to_date': 'Оплачено', - 'balance_due': 'Неоплачено', - 'balance': 'К оплате', - 'overview': 'Overview', - 'details': 'Детали', - 'phone': 'Телефон', - 'website': 'Веб-сайт', - 'vat_number': 'регистрационный номер плательщика НДС', - 'id_number': 'Идентификационный номер', - 'create': 'Создать', - 'copied_to_clipboard': 'Copied :value to the clipboard', - 'error': 'Ошибка', - 'could_not_launch': 'Could not launch', - 'contacts': 'Контакты', - 'additional': 'Additional', - 'first_name': 'Имя', - 'last_name': 'Фамилия', - 'add_contact': 'Добавить контакт', - 'are_you_sure': 'Вы уверены?', - 'cancel': 'Отмена', + 'clone_to_invoice': 'Duplicar para Nota de Pagamento', + 'clone_to_quote': 'Duplicar para Orçamento', + 'clone_to_credit': 'Duplicar para crédito', + 'view_invoice': 'Visualizar Nota de Pagamento', + 'convert': 'Converter', + 'more': 'Mais', + 'edit_client': 'Editar Cliente', + 'edit_product': 'Editar Produto', + 'edit_invoice': 'Editar Nota de Pagamento', + 'edit_quote': 'Editar Orçamento', + 'edit_payment': 'Editar Pagamento', + 'edit_task': 'Editar Tarefa', + 'edit_expense': 'Editar Despesa', + 'edit_vendor': 'Editar Fornecedor', + 'edit_project': 'Editar Projeto', + 'edit_recurring_quote': 'Editar Orçamento Recorrente', + 'billing_address': 'Morada de faturação', + 'shipping_address': 'Endereço de envio', + 'total_revenue': 'Total faturado', + 'average_invoice': 'Média por Nota de Pagamento', + 'outstanding': 'Em Aberto', + 'invoices_sent': ':count notas de pag. enviadas', + 'active_clients': 'Clientes ativos', + 'close': 'Fechar', + 'email': 'E-mail', + 'password': 'Palavra-passe', + 'url': 'URL', + 'secret': 'Secret', + 'name': 'Nome', + 'logout': 'Sair', + 'login': 'Iniciar sessão', + 'filter': 'Filtrar', + 'sort': 'Ordenar', + 'search': 'Pesquisa', + 'active': 'Ativo', + 'archived': 'Arquivado', + 'deleted': 'Apagado', + 'dashboard': 'Painel', + 'archive': 'Arquivar', + 'delete': 'Apagar', + 'restore': 'Restaurar', + 'refresh_complete': 'Recarregar Completo', + 'please_enter_your_email': 'Por favor introduza o seu E-mail', + 'please_enter_your_password': 'Por favor introduza a sua palavra-passe', + 'please_enter_your_url': 'Por favor introduza o seu URL', + 'please_enter_a_product_key': 'Por favor introduza uma chave de produto', + 'ascending': 'Ascendente', + 'descending': 'Descendente', + 'save': 'Guardar', + 'an_error_occurred': 'Ocorreu um erro', + 'paid_to_date': 'Pago até à data', + 'balance_due': 'Valor', + 'balance': 'Saldo', + 'overview': 'Resumo', + 'details': 'Detalhes', + 'phone': 'Telefone', + 'website': 'Website', + 'vat_number': 'NIF', + 'id_number': 'Número de Identificação', + 'create': 'Criar', + 'copied_to_clipboard': ':value copiado para a área de transferência', + 'error': 'Erro', + 'could_not_launch': 'Não foi possível iniciar', + 'contacts': 'Contactos', + 'additional': 'Adicional', + 'first_name': 'Primeiro Nome', + 'last_name': 'Apelido', + 'add_contact': 'Adicionar contacto', + 'are_you_sure': 'Tem a certeza?', + 'cancel': 'Cancelar', 'ok': 'Ok', - 'remove': 'Remove', - 'email_is_invalid': 'Email is invalid', - 'product': 'Товар/услуга', - 'products': 'Товары/Услуги', - 'new_product': 'Новый товар/услуга', - 'created_product': 'Товар/услуга успешно создан', - 'updated_product': 'Информация о товаре/услуге успешно обновлёна', - 'archived_product': 'Товар/услуга перенесен в архив', - 'deleted_product': 'Товар/услуга успешно удалены', - 'restored_product': 'Successfully restored product', - 'archived_products': 'Successfully archived :count products', - 'deleted_products': 'Successfully deleted :count products', - 'restored_products': 'Successfully restored :value products', - 'product_key': 'Товар/услуга', - 'notes': 'Заметки', - 'cost': 'Cost', - 'client': 'Клиент', - 'clients': 'Клиенты', - 'new_client': 'Новый клиент', - 'created_client': 'Клиент успешно создан', - 'updated_client': 'Клиент успешно обновлён', - 'archived_client': 'Клиент успешно архивирован', - 'archived_clients': 'Успешно архивировано :count клиента(ов)', - 'deleted_client': 'Клиент успешно удалён', - 'deleted_clients': 'Успешно удалено :count клиента(ов)', - 'restored_client': 'Клиент восстановлен', - 'restored_clients': 'Successfully restored :value clients', - 'address1': 'Улица', - 'address2': 'Дом/Офис', - 'city': 'Город', - 'state': 'Район', - 'postal_code': 'Почтовый код', - 'country': 'Страна', - 'invoice': 'Счёт', - 'invoices': 'Счета', - 'new_invoice': 'Новый счёт', - 'created_invoice': 'Счет успешно создан', - 'updated_invoice': 'Счет успешно обновлён', - 'archived_invoice': 'Счет успешно архивирован', - 'deleted_invoice': 'Счет успешно удалён', - 'restored_invoice': 'Счёт успешно восстановлен', - 'archived_invoices': 'Успешно архивировано :count счта(ов)', - 'deleted_invoices': 'Успешно удалено :count счта(ов)', - 'restored_invoices': 'Successfully restored :value invoices', - 'emailed_invoice': 'Счет успешно отправлен по почте', - 'emailed_payment': 'Successfully emailed payment', - 'amount': 'Всего', - 'invoice_number': 'Номер счёта', - 'invoice_date': 'Дата счёта', - 'discount': 'Скидка', - 'po_number': 'Номер платежного поручения', - 'terms': 'Условия', - 'public_notes': 'Публичные заметки', - 'private_notes': 'Персональные заметки', - 'frequency': 'Периодичность', - 'start_date': 'Дата начала', - 'end_date': 'Дата завершения', - 'quote_number': 'Номер котировки', - 'quote_date': 'Дата котировки', - 'valid_until': 'Действителен до', - 'items': 'Items', - 'partial_deposit': 'Частичная оплата', - 'description': 'Описание', - 'unit_cost': 'Стоимость за единицу', - 'quantity': 'Количество', - 'add_item': 'Add Item', - 'contact': 'Контакт', - 'work_phone': 'Телефон', - 'total_amount': 'Total Amount', + 'remove': 'Remover', + 'email_is_invalid': 'Email é inválido', + 'product': 'Produto', + 'products': 'Produtos', + 'new_product': 'Novo Produto', + 'created_product': 'Produto criado', + 'updated_product': 'Produto atualizado', + 'archived_product': 'Produto arquivado', + 'deleted_product': 'Producto apagado com sucesso', + 'restored_product': 'Produto restaurado com sucesso', + 'archived_products': ':count Produtos arquivados com sucesso', + 'deleted_products': ':count produtos apagados com sucesso', + 'restored_products': ':value Produtos restaurados com sucesso', + 'product_key': 'Produto', + 'notes': 'Observações', + 'cost': 'Custo', + 'client': 'Cliente', + 'clients': 'Clientes', + 'new_client': 'Novo Cliente', + 'created_client': 'Cliente criado com sucesso', + 'updated_client': 'Cliente atualizado com sucesso', + 'archived_client': 'Cliente arquivado com sucesso', + 'archived_clients': ':count clientes arquivados com sucesso', + 'deleted_client': 'Clientes removidos com sucesso', + 'deleted_clients': ':count clientes removidos com sucesso', + 'restored_client': 'Cliente restaurado', + 'restored_clients': ':value Clientes restaurados com sucesso', + 'address1': 'Rua', + 'address2': 'Complemento', + 'city': 'Cidade', + 'state': 'Distrito/Província', + 'postal_code': 'Código Postal', + 'country': 'País', + 'invoice': 'Nota Pagamento', + 'invoices': 'Notas Pag.', + 'new_invoice': 'Nova Nota de Pagamento', + 'created_invoice': 'Nota de pagamento criada com sucesso', + 'updated_invoice': 'Nota de pagamento atualizada com sucesso', + 'archived_invoice': 'Nota de pagamento arquivada com sucesso', + 'deleted_invoice': 'Notas de Pagamento apagadas com sucesso', + 'restored_invoice': 'Nota de pagamento restaurada com sucesso', + 'archived_invoices': ':count notas de pagamento arquivadas com sucesso', + 'deleted_invoices': ':count notas de pagamento apagadas com sucesso', + 'restored_invoices': ':value Notas de Pagamento restaurados com sucesso', + 'emailed_invoice': 'Nota de pagamento enviada por e-mail com sucesso', + 'emailed_payment': 'Pagamento enviado por email com sucesso', + 'amount': 'Valor', + 'invoice_number': 'Número NP', + 'invoice_date': 'Data da NP', + 'discount': 'Desconto', + 'po_number': 'Núm. Ordem de Serviço', + 'terms': 'Condições', + 'public_notes': 'Notas Públicas', + 'private_notes': 'Notas Privadas', + 'frequency': 'Frequência', + 'start_date': 'Data Inicial', + 'end_date': 'Data Final', + 'quote_number': 'Número do Orçamento', + 'quote_date': 'Data do Orçamento', + 'valid_until': 'Válido até', + 'items': 'Itens', + 'partial_deposit': 'Depósito/Parcial', + 'description': 'Descrição', + 'unit_cost': 'Preço Unitário', + 'quantity': 'Quantidade', + 'add_item': 'Adicionar Item', + 'contact': 'Contacto', + 'work_phone': 'Telefone', + 'total_amount': 'Quantia Total', 'pdf': 'PDF', - 'due_date': 'Срок оплаты', - 'partial_due_date': 'Partial Due Date', - 'status': 'Статус', - 'invoice_status_id': 'Статус Счёта', - 'quote_status': 'Quote Status', - 'click_plus_to_add_item': 'Click + to add an item', - 'click_plus_to_add_time': 'Click + to add time', - 'count_selected': ':count selected', - 'total': 'Всего', - 'percent': 'Процент', - 'edit': 'Редактировать', - 'dismiss': 'Dismiss', - 'please_select_a_date': 'Пожалуйста, выбирите дату', - 'please_select_a_client': 'Пожалуйста, выбирите клиента', - 'please_select_an_invoice': 'Please select an invoice', - 'task_rate': 'Task Rate', - 'settings': 'Настройки', - 'language': 'Язык', - 'currency': 'Валюта', - 'created_at': 'Дата создания', - 'created_on': 'Created On', - 'updated_at': 'Updated', - 'tax': 'Налог', - 'please_enter_an_invoice_number': 'Please enter an invoice number', - 'please_enter_a_quote_number': 'Please enter a quote number', - 'past_due': 'Past Due', - 'draft': 'Черновик', - 'sent': 'Отправить', - 'viewed': 'Viewed', - 'approved': 'Approved', - 'partial': 'Частичная оплата', - 'paid': 'Оплачено', - 'mark_sent': 'Отметить отправленным', - 'marked_invoice_as_sent': 'Successfully marked invoice as sent', - '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': 'Готово', + 'due_date': 'Data de Vencimento', + 'partial_due_date': 'Data de Vencimento Parcial', + 'status': 'Estado', + 'invoice_status_id': 'Estado da Nota de Pagamento', + 'quote_status': 'Estado do Orçamento', + 'click_plus_to_add_item': 'Clique + para adicionar um item', + 'click_plus_to_add_time': 'Clique + para adicionar tempo', + 'count_selected': ':count selecionados', + 'total': 'Total', + 'percent': 'Percentagem', + 'edit': 'Editar', + 'dismiss': 'Dispensar', + 'please_select_a_date': 'Por favor selecione uma data', + 'please_select_a_client': 'Por favor selecione um cliente', + 'please_select_an_invoice': 'Por favor escolha uma nota de pagamento', + 'task_rate': 'Taxa de Tarefas', + 'settings': 'Definições', + 'language': 'Idioma', + 'currency': 'Moeda', + 'created_at': 'Data de Criação', + 'created_on': 'Criado em', + 'updated_at': 'Atualizado', + 'tax': 'Imposto', + 'please_enter_an_invoice_number': + 'Por favor digite um número de nota de pagamento', + 'please_enter_a_quote_number': 'Por favor digite um número de orçamento', + 'past_due': 'Vencido', + 'draft': 'Rascunho', + 'sent': 'Enviado', + 'viewed': 'Visto', + 'approved': 'Aprovado', + 'partial': 'Depósito/Parcial', + 'paid': 'Pago', + 'mark_sent': 'Marcar como Enviada', + 'marked_invoice_as_sent': + 'Sucesso! A nota de pagamento foi marcada como enviada.', + 'marked_invoice_as_paid': + 'Excelente! A nota de pagamento foi marcada como enviada.', + 'marked_invoices_as_sent': + 'Excelente! As notas de pagamento foram marcadas como enviada.', + 'marked_invoices_as_paid': + 'Excelente! As notas de pagamento foram marcadas como enviada.', + 'done': 'Concluído', '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': 'Обновить Данные', - 'blank_contact': 'Blank Contact', - 'activity': 'Активность', - 'no_records_found': 'No records found', - 'clone': 'Копировать', - 'loading': 'Загружается', - 'industry': 'Industry', - 'size': 'Размер', - 'payment_terms': 'Условия оплаты', - 'payment_date': 'Дата платежа', - 'payment_status': 'Статус Платежа', - 'payment_status_1': 'Pending', - 'payment_status_2': 'Voided', - 'payment_status_3': 'Failed', - 'payment_status_4': 'Completed', - 'payment_status_5': 'Partially Refunded', - 'payment_status_6': 'Refunded', - 'payment_status_-1': 'Unapplied', - 'payment_status_-2': 'Partially Unapplied', + 'Por favor introduza um cliente ou nome de contacto', + 'dark_mode': 'Modo Escuro', + 'restart_app_to_apply_change': + 'Reinicie a aplicação para aplicar a mudança', + 'refresh_data': 'Atualizar Dados', + 'blank_contact': 'Contato Vazio', + 'activity': 'Atividade', + 'no_records_found': 'Nenhum registo encontrado', + 'clone': 'Duplicar', + 'loading': 'A Carregar', + 'industry': 'Indústria', + 'size': 'Tamanho', + 'payment_terms': 'Condições de Pagamento', + 'payment_date': 'Data do Pagamento', + 'payment_status': 'Estado do Pagamento', + 'payment_status_1': 'Pendente', + 'payment_status_2': 'Anulado', + 'payment_status_3': 'Falhou', + 'payment_status_4': 'Completo', + 'payment_status_5': 'Parcialmente Reembolsado', + 'payment_status_6': 'Reembolsado', + 'payment_status_-1': 'Não Aplicado', + 'payment_status_-2': 'Parcialmente Não Aplicado', 'net': 'Net', - 'client_portal': 'Client Portal', - 'show_tasks': 'Show tasks', - 'email_reminders': 'Email Reminders', - 'enabled': 'Enabled', - 'recipients': 'Получатели', - 'initial_email': 'Initial Email', - 'first_reminder': 'Первое напоминание', - 'second_reminder': 'Второе напоминание', - 'third_reminder': 'Третье напоминание', - 'reminder1': 'First Reminder', - 'reminder2': 'Second Reminder', - 'reminder3': 'Third Reminder', - 'template': 'Шаблон', - 'send': 'Send', - 'subject': 'Тема', - 'body': 'Содержание', - 'send_email': 'Отправить эл.почту', - 'email_receipt': 'Отправлять клиенту квитанцию об оплате по эл.почте', - 'auto_billing': 'Auto billing', - 'button': 'Кнопка', - 'preview': 'Preview', - 'customize': 'Настроить', - 'history': 'История', - 'payment': 'Платёж', - 'payments': 'Оплаты', - 'refunded': 'Refunded', - 'payment_type': 'Payment Type', - 'transaction_reference': 'Референс транзакции', - 'enter_payment': 'Добавить оплату', - 'new_payment': 'Добавить оплату', - 'created_payment': 'Платёж успешно создан', - 'updated_payment': 'Платёж успешно обновлён', - 'archived_payment': 'Платёж успешно архивирован', - 'deleted_payment': 'Платёж успешно удалён', - 'restored_payment': 'Платёж восстановлен', - 'archived_payments': 'Успешно архивировано :count платежа(ей)', - 'deleted_payments': 'Успешно удалено :count платежа(ей)', - 'restored_payments': 'Successfully restored :value payments', - 'quote': 'Котировка', - 'quotes': 'Прайс-листы', - 'new_quote': 'Новая котировка', - 'created_quote': 'Прайс-лист успешно создан', - 'updated_quote': 'Прайс-лист успешно обновлён', - 'archived_quote': 'Прайс-лист перемещен в архив', - 'deleted_quote': 'Котировка успешно удалена', - 'restored_quote': 'Successfully restored quote', - 'archived_quotes': 'Перенесено в архив :count котировок', - 'deleted_quotes': 'Successfully deleted :count quotes', - 'restored_quotes': 'Successfully restored :value quotes', - 'expense': 'Затрата', - 'expenses': 'Затраты', - 'vendor': 'Vendor', - 'vendors': 'Поставщики', - 'task': 'Task', - 'tasks': 'Задание', - 'project': 'Project', - 'projects': 'Projects', - 'activity_1': ':user Создал Клиента :client', - 'activity_2': ':user archived client :client', - 'activity_3': ':user deleted client :client', - 'activity_4': ':user Создал Счёт :invoice', - 'activity_5': ':user Обновил счёт :invoice', - 'activity_6': ':user emailed invoice :invoice for :client to :contact', - 'activity_7': ':contact viewed invoice :invoice for :client', - 'activity_8': ':user archived invoice :invoice', - 'activity_9': ':user deleted invoice :invoice', + 'client_portal': 'Portal do Cliente', + 'show_tasks': 'Exibir tarefas', + 'email_reminders': 'Lembretes de E-mail', + 'enabled': 'Ativo', + 'recipients': 'Destinatários', + 'initial_email': 'Email inicial', + 'first_reminder': 'Primeiro Lembrete', + 'second_reminder': 'Segundo Lembrete', + 'third_reminder': 'Terceiro Lembrete', + 'reminder1': 'Primeiro Lembrete', + 'reminder2': 'Segundo Lembrete', + 'reminder3': 'Terceiro Lembrete', + 'template': 'Template', + 'send': 'Enviar', + 'subject': 'Assunto', + 'body': 'Conteúdo', + 'send_email': 'Enviar email', + 'email_receipt': 'E-mail para envio do recibo de pagamento', + 'auto_billing': 'Cobrança automática', + 'button': 'Botão', + 'preview': 'Pré-visualizar', + 'customize': 'Personalizar', + 'history': 'Histórico', + 'payment': 'Pagamento', + 'payments': 'Pagamentos', + 'refunded': 'Reembolsado', + 'payment_type': 'Tipo de Pagamento', + 'transaction_reference': 'Referência da Transação', + 'enter_payment': 'Introduzir Pag.', + 'new_payment': 'Introduzir Pagamento', + 'created_payment': 'Pagamento criado com sucesso', + 'updated_payment': 'Pagamento atualizado com sucesso', + 'archived_payment': 'Pagamento arquivado com sucesso', + 'deleted_payment': 'Pagamento apagado com sucesso', + 'restored_payment': 'Pagamento restaurado', + 'archived_payments': ':count pagamentos arquivados com sucesso', + 'deleted_payments': ':count pagamentos apagados com sucesso', + 'restored_payments': ':value Pagamentos restaurados com sucesso', + 'quote': 'Orçamento', + 'quotes': 'Orçamentos', + 'new_quote': 'Novo Orçamento', + 'created_quote': 'Orçamento criado', + 'updated_quote': 'Orçamento atualizado', + 'archived_quote': 'Orçamento arquivado', + 'deleted_quote': 'Orçamento apagado com sucesso', + 'restored_quote': 'Orçamento restaurado', + 'archived_quotes': ':count orçamentos arquivados com sucesso', + 'deleted_quotes': ':count orçamentos apagados com sucesso', + 'restored_quotes': ':value Orçamentos restaurados com sucesso', + 'expense': 'Despesa', + 'expenses': 'Despesas', + 'vendor': 'Fornecedor', + 'vendors': 'Fornecedor', + 'task': 'Tarefa', + 'tasks': 'Tarefas', + 'project': 'Projeto', + 'projects': 'Projetos', + 'activity_1': ':user criou o cliente :client', + 'activity_2': ':user arquivou o cliente :client', + 'activity_3': ':user removeu o cliente :client', + 'activity_4': ':user criou a nota de pagamento :invoice', + 'activity_5': ':user atualizou a nota de pagamento :invoice', + 'activity_6': + ':user enviou nota de pagamento :invoice para :client, :contact', + 'activity_7': ':contact viu a nota de pagamento :invoice para :client', + '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', - 'activity_11': ':user updated payment :payment', - 'activity_12': ':user archived payment :payment', - 'activity_13': ':user deleted payment :payment', - 'activity_14': ':user entered :credit credit', - 'activity_15': ':user updated :credit credit', - 'activity_16': ':user archived :credit credit', - 'activity_17': ':user deleted :credit credit', - 'activity_18': ':user created quote :quote', - 'activity_19': ':user updated quote :quote', - 'activity_20': ':user emailed quote :quote for :client to :contact', - 'activity_21': ':contact viewed quote :quote', - 'activity_22': ':user archived quote :quote', - 'activity_23': ':user deleted quote :quote', - 'activity_24': ':user restored quote :quote', - 'activity_25': ':user restored invoice :invoice', - 'activity_26': ':user restored client :client', - 'activity_27': ':user restored payment :payment', - 'activity_28': ':user restored :credit credit', - 'activity_29': ':contact approved quote :quote for :client', - 'activity_30': ':user created vendor :vendor', - 'activity_31': ':user archived vendor :vendor', - 'activity_32': ':user deleted vendor :vendor', - 'activity_33': ':user restored vendor :vendor', - 'activity_34': ':user created expense :expense', - 'activity_35': ':user archived expense :expense', - 'activity_36': ':user Удалил Затраты :expense', - 'activity_37': ':user restored expense :expense', - 'activity_39': ':user cancelled a :payment_amount payment :payment', + ':contact introduziu pagamento :payment para :payment_amount na nota de pagamento :invoice para :cliente', + 'activity_11': ':user atualizou o pagamento :payment', + 'activity_12': ':user arquivou o pagamento :payment', + 'activity_13': ':user removeu o pagamento :payment', + 'activity_14': ':user adicionou nota de crédito :credit', + 'activity_15': ':user atualizou nota de crédito :credit', + 'activity_16': ':user arquivou nota de crédito :credit', + 'activity_17': ':user removeu nota de crédito :credit', + 'activity_18': ':user adicionou o orçamento :quote', + 'activity_19': ':user atualizou o orçamento :quote', + 'activity_20': + ':user enviou orçamento :quote por E-mail para :client, :contact', + 'activity_21': ':contact visualizou o orçamento :quote', + 'activity_22': ':user arquivou o orçamento :quote', + 'activity_23': ':user removeu o orçamento :quote', + 'activity_24': ':user restaurou o orçamento :quote', + 'activity_25': ':user restaurou a nota de pagamento :invoice', + 'activity_26': ':user restaurou o cliente :client', + 'activity_27': ':user restaurou o pagamento :payment', + 'activity_28': ':user restaurou a nota de crédito :credit', + 'activity_29': ':contact aprovou o orçamento :quote para :cliente', + 'activity_30': ':user criou o fornecedor :vendor', + 'activity_31': ':user arquivou o fornecedor :vendor', + 'activity_32': ':user apagou o fornecedor :vendor', + 'activity_33': ':user restaurou o fornecedor :vendor', + 'activity_34': ':user criou a despesa :expense', + 'activity_35': ':user arquivou a despesa :expense', + 'activity_36': ':user apagou a despesa :expense', + 'activity_37': ':user restaurou a despesa :expense', + 'activity_39': + ':user cancelou um pagamento de :payment_amount em :payment', 'activity_40': - ':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', - 'activity_44': ':user archived task :task', - 'activity_45': ':user deleted task :task', - 'activity_46': ':user restored task :task', - 'activity_47': ':user Обновил Затраты :expense', - 'activity_48': ':user updated ticket :ticket', - 'activity_49': ':user closed ticket :ticket', - 'activity_50': ':user merged ticket :ticket', - 'activity_51': ':user split ticket :ticket', - 'activity_52': ':contact opened ticket :ticket', - 'activity_53': ':contact reopened ticket :ticket', - 'activity_54': ':user reopened ticket :ticket', - 'activity_55': ':contact replied ticket :ticket', - 'activity_56': ':user viewed ticket :ticket', - 'activity_57': 'System failed to email invoice :invoice', - 'activity_58': ':user reversed invoice :invoice', - 'activity_59': ':user cancelled invoice :invoice', - 'activity_60': ':contact viewed quote :quote', - 'activity_61': ':user updated client :client', - 'activity_62': ':user updated vendor :vendor', + ':user reembolsou :adjustment de um pagamento :payment_amount em :payment', + 'activity_41': 'pagamento (:payment) de :payment_amount falhou', + 'activity_42': ':user criou a tarefa :task', + 'activity_43': ':user atualizou a tarefa :task', + 'activity_44': ':user arquivou a tarefa :task', + 'activity_45': ':user apagou a tarefa :task', + 'activity_46': ':user restaurou a tarefa :task', + 'activity_47': ':user atualizou a despesa :expense', + 'activity_48': ':user atualizou o ticket :ticket', + 'activity_49': ':user fechou o ticket :ticket', + 'activity_50': ':user uniu o ticket :ticket', + 'activity_51': ':user dividiu o ticket :ticket', + 'activity_52': ':contact abriu o ticket :ticket', + 'activity_53': ':contact reabriu o ticket :ticket', + 'activity_54': ':user reabriu o ticket :ticket', + 'activity_55': ':contact respondeu ao ticket :ticket', + 'activity_56': ':user visualizou o ticket :ticket', + 'activity_57': 'O sistema falhou ao enviar a nota de pagamento :invoice', + 'activity_58': ':invoice revertida pelo utilizador: user', + 'activity_59': ':invoice cancelada pelo utilizador :user', + 'activity_60': ':contact viu o orçamento :quota', + 'activity_61': ':user atualizou o cliente :client', + 'activity_62': ':user atualizou fornecedor :vendor', 'activity_63': ':user emailed first reminder for invoice :invoice to :contact', 'activity_64': @@ -53412,116 +48001,142 @@ mixin LocalizationsProvider on LocaleCodeAware { ':user emailed third reminder for invoice :invoice to :contact', 'activity_66': ':user emailed endless reminder for invoice :invoice to :contact', - 'activity_80': ':user created subscription :subscription', - 'activity_81': ':user updated subscription :subscription', - 'activity_82': ':user archived subscription :subscription', - 'activity_83': ':user deleted subscription :subscription', - 'activity_84': ':user restored subscription :subscription', - 'one_time_password': 'One Time Password', - 'emailed_quote': 'Прайс-лист успешно отправлен', - 'emailed_credit': 'Successfully emailed credit', - 'marked_quote_as_sent': 'Successfully marked quote as sent', - 'marked_credit_as_sent': 'Successfully marked credit as sent', - 'expired': 'Expired', - 'all': 'All', - 'select': 'Выбрать', - 'long_press_multiselect': 'Long-press Multiselect', - 'custom_value1': 'Custom Value', - 'custom_value2': 'Custom Value', - 'custom_value3': 'Custom Value 3', - 'custom_value4': 'Custom Value 4', - 'email_style_custom': 'Custom Email Style', - 'custom_message_dashboard': 'Custom Dashboard Message', - 'custom_message_unpaid_invoice': 'Custom Unpaid Invoice Message', - 'custom_message_paid_invoice': 'Custom Paid Invoice Message', - 'custom_message_unapproved_quote': 'Custom Unapproved Quote Message', - 'lock_invoices': 'Lock Invoices', - 'translations': 'Translations', - 'task_number_pattern': 'Task Number Pattern', - 'task_number_counter': 'Task Number Counter', - 'expense_number_pattern': 'Expense Number Pattern', - 'expense_number_counter': 'Expense Number Counter', - 'vendor_number_pattern': 'Vendor Number Pattern', - 'vendor_number_counter': 'Vendor Number Counter', - 'ticket_number_pattern': 'Ticket Number Pattern', - 'ticket_number_counter': 'Ticket Number Counter', - 'payment_number_pattern': 'Payment Number Pattern', - 'payment_number_counter': 'Payment Number Counter', - 'invoice_number_pattern': 'Invoice Number Pattern', - 'invoice_number_counter': 'Счетчик номера счёта', - 'quote_number_pattern': 'Quote Number Pattern', - 'quote_number_counter': 'Quote Number Counter', - 'client_number_pattern': 'Credit Number Pattern', - 'client_number_counter': 'Credit Number Counter', - 'credit_number_pattern': 'Credit Number Pattern', - 'credit_number_counter': 'Credit Number Counter', - 'reset_counter_date': 'Reset Counter Date', - 'counter_padding': 'Counter Padding', - 'shared_invoice_quote_counter': 'Shared Invoice Quote Counter', - 'default_tax_name_1': 'Default Tax Name 1', - 'default_tax_rate_1': 'Default Tax Rate 1', - 'default_tax_name_2': 'Default Tax Name 2', - 'default_tax_rate_2': 'Default Tax Rate 2', - 'default_tax_name_3': 'Default Tax Name 3', - 'default_tax_rate_3': 'Default Tax Rate 3', - 'email_subject_invoice': 'Email Invoice Subject', - 'email_subject_quote': 'Email Quote Subject', - 'email_subject_payment': 'Email Payment Subject', - 'email_subject_payment_partial': 'Email Partial Payment Subject', - 'show_table': 'Show Table', - 'show_list': 'Show List', - 'client_city': 'Client City', - 'client_state': 'Client State', - 'client_country': 'Client Country', - 'client_is_active': 'Client is Active', - 'client_balance': 'Client Balance', - 'client_address1': 'Client Street', - 'client_address2': 'Client Apt/Suite', - 'vendor_address1': 'Vendor Street', - 'vendor_address2': 'Vendor Apt/Suite', - 'client_shipping_address1': 'Client Shipping Street', - 'client_shipping_address2': 'Client Shipping Apt/Suite', - 'type': 'Тип', - 'invoice_amount': 'Invoice Amount', - 'invoice_due_date': 'Срок оплаты', - 'tax_rate1': 'Tax Rate 1', - 'tax_rate2': 'Tax Rate 2', - 'tax_rate3': 'Tax Rate 3', - 'auto_bill': 'Авто-счет', - 'archived_at': 'Archived At', - 'has_expenses': 'Has Expenses', - 'custom_taxes1': 'Custom Taxes 1', - 'custom_taxes2': 'Custom Taxes 2', - 'custom_taxes3': 'Custom Taxes 3', - 'custom_taxes4': 'Custom Taxes 4', - 'custom_surcharge1': 'Custom Surcharge 1', - 'custom_surcharge2': 'Custom Surcharge 2', - 'custom_surcharge3': 'Custom Surcharge 3', - 'custom_surcharge4': 'Custom Surcharge 4', - 'is_deleted': 'Is Deleted', - 'vendor_city': 'Vendor City', - 'vendor_state': 'Vendor State', - 'vendor_country': 'Vendor Country', - 'is_approved': 'Is Approved', - 'tax_name': 'Tax Name', - 'tax_amount': 'Tax Amount', - 'tax_paid': 'Tax Paid', - 'payment_amount': 'Сумма платежа', - 'age': 'Возраст', - 'is_running': 'Is Running', - 'time_log': 'Time Log', - 'bank_id': 'Bank', - 'expense_category_id': 'Expense Category ID', - 'expense_category': 'Категория затрат', - 'invoice_currency_id': 'Invoice Currency ID', - 'tax_name1': 'Tax Name 1', - 'tax_name2': 'Tax Name 2', - 'tax_name3': 'Tax Name 3', - 'transaction_id': 'Transaction ID', + 'activity_80': ':user criou a subscrição :subscription', + 'activity_81': ':user atualizou a subscrição :subscription', + 'activity_82': ':user arquivou a subscrição :subscription', + 'activity_83': ':user apagou a subscrição :subscription', + 'activity_84': ':user restaurou a subscrição :subscription', + 'one_time_password': 'Palavra-passe descartável', + 'emailed_quote': 'Orçamento enviado', + 'emailed_credit': 'Crédito enviado com sucesso', + 'marked_quote_as_sent': 'Orçamento marcado como enviado com sucesso', + 'marked_credit_as_sent': 'Crédito marcado com sucesso como enviado', + 'expired': 'Expirada', + 'all': 'Todos', + 'select': 'Selecionar', + 'long_press_multiselect': 'Seleção múltipla de longa pressão', + 'custom_value1': 'Valor personalizado', + 'custom_value2': 'Valor personalizado', + 'custom_value3': 'Valor Personalizado 3', + 'custom_value4': 'Valor Personalizado 4', + 'email_style_custom': 'Estilo de E-mail Personalizado', + 'custom_message_dashboard': 'Mensagem de Painel Personalizada', + 'custom_message_unpaid_invoice': + 'Mensagem Personalizada de Nota de Pagamento Atrasada', + 'custom_message_paid_invoice': + 'Mensagem Personalizada de Nota de Pagamento Paga', + 'custom_message_unapproved_quote': + 'Mensagem Personalizada de Orçamento Não Aprovado', + 'lock_invoices': 'Bloquear Notas de Pagamento', + 'translations': 'Traduções', + 'task_number_pattern': 'Padrão de Numeração de Tarefa', + 'task_number_counter': 'Contador Numérico de Tarefas', + 'expense_number_pattern': 'Padrão de Numeração de Despesa', + 'expense_number_counter': 'Contador Numérico de Despesas', + 'vendor_number_pattern': 'Padrão Número Fornecedor', + 'vendor_number_counter': 'Contador Número Fornecedor', + 'ticket_number_pattern': 'Padrão de Numeração de Ticket', + 'ticket_number_counter': 'Contador Numérico de Tickets', + 'payment_number_pattern': 'Padrão de Numeração de Pagamento', + 'payment_number_counter': 'Contador Numérico de Pagamentos', + 'invoice_number_pattern': 'Padrão de Numeração de Fatura', + 'invoice_number_counter': 'Numeração das', + 'quote_number_pattern': 'Padrão de Numeração de Orçamento', + 'quote_number_counter': 'Numeração dos Orçamentos', + 'client_number_pattern': 'Padrão de Numeração de Crédito', + 'client_number_counter': 'Contador Numérico de Créditos', + 'credit_number_pattern': 'Padrão de Numeração de Crédito', + 'credit_number_counter': 'Contador Numérico de Créditos', + 'reset_counter_date': 'Reiniciar Data do Contador', + 'counter_padding': 'Padrão do Contador', + 'shared_invoice_quote_counter': + 'Contador de cotação de fatura compartilhada', + 'default_tax_name_1': 'Nome fiscal padrão 1', + 'default_tax_rate_1': 'Taxa de imposto padrão 1', + 'default_tax_name_2': 'Nome fiscal padrão 2', + 'default_tax_rate_2': 'Taxa de imposto padrão 2', + 'default_tax_name_3': 'Nome fiscal padrão 3', + 'default_tax_rate_3': 'Taxa de imposto padrão 3', + 'email_subject_invoice': 'Assunto do E-mail de Fatura', + 'email_subject_quote': 'Assunto do E-mail de Orçamento', + 'email_subject_payment': 'Assunto do E-mail de Pagamento', + 'email_subject_payment_partial': 'Assunto de pagamento parcial por email', + 'show_table': 'Mostrar Tabelas', + 'show_list': 'Mostrar Lista', + 'client_city': 'Cidade do Cliente', + 'client_state': 'Distrito do Cliente', + 'client_country': 'País do Cliente', + 'client_is_active': 'Cliente Ativo', + 'client_balance': 'Saldo do Cliente', + 'client_address1': 'Endereço do cliente', + 'client_address2': 'Andar / Fração do Cliente', + 'vendor_address1': 'Morada Fornecedor', + 'vendor_address2': 'Andar / Fração Fornecedor', + 'client_shipping_address1': 'Endereço de entrega', + 'client_shipping_address2': 'Andar / Fração do Cliente', + 'type': 'Tipo', + 'invoice_amount': 'Total da Nota de Pagamento', + 'invoice_due_date': 'Data de vencimento', + 'tax_rate1': 'Taxa de imposto 1', + 'tax_rate2': 'Taxa de imposto 2', + 'tax_rate3': 'Taxa de imposto 3', + 'auto_bill': 'Cobrança Automática', + 'archived_at': 'Arquivado em', + 'has_expenses': 'Tem despesas', + 'custom_taxes1': 'Impostos personalizados 1', + 'custom_taxes2': 'Impostos personalizados 2', + 'custom_taxes3': 'Impostos personalizados 3', + 'custom_taxes4': 'Impostos personalizados 4', + 'custom_surcharge1': 'Sobretaxa Personalizada 1', + 'custom_surcharge2': 'Sobretaxa Personalizada 2', + 'custom_surcharge3': 'Sobretaxa Personalizada 3', + 'custom_surcharge4': 'Sobretaxa Personalizada 4', + 'is_deleted': 'Apagado', + 'vendor_city': 'Cidade Fornecedor', + 'vendor_state': 'Distrito Fornecedor', + 'vendor_country': 'País Fornecedor', + 'is_approved': 'Está aprovado', + 'tax_name': 'Nome do Imposto', + 'tax_amount': 'Quantia de Impostos', + 'tax_paid': 'Impostos pagos', + 'payment_amount': 'Valor do Pagamento', + 'age': 'Idade', + 'is_running': 'Em execução', + 'time_log': 'Registo de Tempo', + 'bank_id': 'Banco', + 'expense_category_id': 'ID da Categoria de Despesa', + 'expense_category': 'Categoria de Despesas', + 'invoice_currency_id': 'ID da Moeda da Nota de Pagamento', + 'tax_name1': 'Imposto 1', + 'tax_name2': 'Imposto 2', + 'tax_name3': 'Imposto 3', + 'transaction_id': 'ID de transação', 'status_color_theme': 'Status Color Theme', 'load_color_theme': 'Load Color Theme', }, - 'sr': { + 'ro': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'The fee for a :amount invoice would be :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Aprobă', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -53537,7 +48152,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'convert_to': 'Convert To', 'client_currency': 'Client Currency', 'company_currency': 'Company Currency', - 'purged_client': 'Uspešno očišćen klijent', + 'purged_client': 'Successfully purged client', 'custom_emails_disabled_help': 'To prevent spam we require upgrading to a paid account to customize the email', 'upgrade_to_add_company': 'Upgrade your plan to add companies', @@ -53571,9 +48186,9 @@ mixin LocalizationsProvider on LocaleCodeAware { 'credit_is_more_than_invoice': 'The credit amount can not be more than the invoice amount', 'giropay': 'GiroPay', - 'direct_debit': 'Direktni dug', + 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', - 'set_password': 'Postavi lozinku', + 'set_password': 'Stabilește Parola', 'recommend_desktop': 'We recommend using the desktop app for the best performance', 'recommend_mobile': @@ -53581,8 +48196,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'disconnected_gateway': 'Successfully disconnected gateway', 'disconnect': 'Disconnect', 'add_to_invoices': 'Add to Invoices', - 'acss': 'Debitna plaćanja po prethodnom ovlašćenju', - 'becs': 'BECS direktno zaduživanje', + 'acss': 'Pre-authorized debit payments', + 'becs': 'BECS Direct Debit', 'bulk_download': 'Download', 'persist_data_help': 'Save data locally to enable the app to start faster, disabling may improve performance in large accounts', @@ -53595,8 +48210,8 @@ mixin LocalizationsProvider on LocaleCodeAware { 'registration': 'Registration', 'unauthorized_stripe_warning': 'Please authorize Stripe to accept online payments.', - 'view_expense': 'Pregled troška # :expense', - 'view_statement': 'Pogledajte izjavu', + 'view_expense': 'View expense # :expense', + 'view_statement': 'Vezi Extras', 'sepa': 'SEPA Direct Debit', 'ideal': 'iDEAL', 'przelewy24': 'Przelewy24', @@ -53619,18 +48234,18 @@ mixin LocalizationsProvider on LocaleCodeAware { 'bulk_email_invoice': 'Email Invoice', 'bulk_email_quote': 'Email Quote', 'bulk_email_credit': 'Email Credit', - 'from_name': 'Od Ime', - 'clone_to_expense': 'Kloniraj u troškove', - 'recurring_expense': 'Ponavljajući trošak', - 'recurring_expenses': 'Ponavljajući troškovi', - 'new_recurring_expense': 'Novi ponavljajući trošak', - 'edit_recurring_expense': 'Izmeni ponavljajući trošak', - 'created_recurring_expense': 'Ponavljajući trošak uspešno kreiran', - 'updated_recurring_expense': 'Ponavljajući trošak uspešno izmenjen', - 'archived_recurring_expense': 'Ponavljajući trošak uspešno arhiviran', - 'deleted_recurring_expense': 'Projekat uspešno obrisan', + 'from_name': 'From Name', + 'clone_to_expense': 'Clone to expense', + 'recurring_expense': 'Recurring Expense', + 'recurring_expenses': 'Recurring Expenses', + 'new_recurring_expense': 'New Recurring Expense', + 'edit_recurring_expense': 'Edit Recurring Expense', + 'created_recurring_expense': 'Successfully created recurring expense', + 'updated_recurring_expense': 'Successfully updated recurring expense', + 'archived_recurring_expense': 'Successfully archived recurring expense', + 'deleted_recurring_expense': 'Successfully deleted project', 'removed_recurring_expense': 'Successfully removed recurring expense', - 'restored_recurring_expense': 'Ponavljajući trošak uspešno povraćen', + 'restored_recurring_expense': 'Successfully restored recurring expense', 'search_recurring_expense': 'Search Recurring Expense', 'search_recurring_expenses': 'Search Recurring Expenses', 'last_sent_date': 'Last Sent Date', @@ -53641,7 +48256,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'persist_data': 'Persist Data', 'customer_count': 'Customer Count', 'verify_customers': 'Verify Customers', - 'google_analytics': 'Google analitika', + 'google_analytics': 'Google Analytics', 'google_analytics_tracking_id': 'Google Analytics Tracking ID', 'decimal_comma': 'Decimal Comma', 'use_comma_as_decimal_place': 'Use comma as decimal place in forms', @@ -53652,7 +48267,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'expense_tax_help': 'Item tax rates are disabled', 'enable_markdown': 'Enable Markdown', 'enable_markdown_help': 'Convert markdown to HTML on the PDF', - 'user_guide': 'Uputstvo za upotrebu', + 'user_guide': 'User Guide', 'add_second_contact': 'Add Second Contact', 'previous_page': 'Previous Page', 'next_page': 'Next Page', @@ -53670,7 +48285,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Table Alternate Row Background Color', 'invoice_header_background_color': 'Invoice Header Background Color', 'invoice_header_font_color': 'Invoice Header Font Color', - 'net_subtotal': 'Neto', + 'net_subtotal': 'Net', 'review_app': 'Review App', 'check_status': 'Check Status', 'free_trial': 'Free Trial', @@ -53686,7 +48301,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'subdomain_guide': 'The subdomain is used in the client portal to personalize links to match your brand. ie, https://your-brand.invoicing.co', 'send_time': 'Send Time', - 'import_data': 'Uvezi podatke', + 'import_data': 'Importă Date', 'import_settings': 'Import Settings', 'json_file_missing': 'Please provide the JSON file', 'json_option_missing': 'Please select to import the settings and/or data', @@ -53700,7 +48315,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'login_success': 'Successful Login', 'login_failure': 'Failed Login', 'exported_data': - 'Kada fajl bude spreman primićete mejl sa linkom za preuzimanje.', + 'Once the file is ready you\"ll receive an email with a download link', 'include_deleted_clients': 'Include Deleted Clients', 'include_deleted_clients_help': 'Load records belonging to deleted clients', @@ -53708,11 +48323,11 @@ mixin LocalizationsProvider on LocaleCodeAware { 'step_2_authorize': 'Step 2: Authorize', 'account_id': 'Account ID', 'migration_not_yet_completed': 'The migration has not yet completed', - 'activity_100': ':user je kreirao redovni račun :recurring_invoice', - 'activity_101': ':user je ažurirao redovni račun :recurring_invoice', - 'activity_102': ':user je arhivirao redovni račun :recurring_invoice', - 'activity_103': ':user je obrisao redovni račun :recurring_invoice', - 'activity_104': ':user je vratio redovni račun :recurring_invoice', + 'activity_100': ':user created recurring invoice :recurring_invoice', + 'activity_101': ':user updated recurring invoice :recurring_invoice', + 'activity_102': ':user archived recurring invoice :recurring_invoice', + 'activity_103': ':user deleted recurring invoice :recurring_invoice', + 'activity_104': ':user restored recurring invoice :recurring_invoice', 'show_task_end_date': 'Show Task End Date', 'show_task_end_date_help': 'Enable specifying the task end date', 'gateway_setup': 'Gateway Setup', @@ -53727,24 +48342,24 @@ mixin LocalizationsProvider on LocaleCodeAware { 'credit_created': 'Credit Created', 'pro': 'Pro', 'enterprise': 'Enterprise', - 'last_updated': 'Poslednja izmena', + 'last_updated': 'Last Updated', 'invoice_item': 'Invoice Item', 'quote_item': 'Quote Item', - 'contact_first_name': 'Ime kontakta', - 'contact_last_name': 'Prezime kontakta', + 'contact_first_name': 'Contact First Name', + 'contact_last_name': 'Contact Last Name', 'order': 'Order', - 'unassigned': 'Nije dodeljen.', - 'partial_value': 'Mora biti veće od nula i manje od sume', + 'unassigned': 'Unassigned', + 'partial_value': 'Trebuie să fie mai mare ca zero și mai mic ca totalul', 'search_kanban': 'Search Kanban', 'search_kanbans': 'Search Kanban', 'kanban': 'Kanban', - 'enable': 'Omogući', + 'enable': 'Activeaza', 'move_top': 'Move Top', 'move_up': 'Move Up', 'move_down': 'Move Down', 'move_bottom': 'Move Bottom', 'subdomain_help': - 'Postavite poddomen ili prikažite račun na vašoj internet stranici.', + 'Set the subdomain or display the invoice on your own website.', 'body_variable_missing': 'Error: the custom email must include a :body variable', 'add_body_variable_message': 'Make sure to include a :body variable', @@ -53769,7 +48384,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'header_key': 'Header Key', 'header_value': 'Header Value', 'recurring_products': 'Recurring Products', - 'promo_code': 'Promotivni kod', + 'promo_code': 'Promo code', 'promo_discount': 'Promo Discount', 'allow_cancellation': 'Allow Cancellation', 'per_seat_enabled': 'Per Seat Enabled', @@ -53782,7 +48397,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'refund_period': 'Refund Period', 'webhook_configuration': 'Webhook Configuration', 'purchase_page': 'Purchase Page', - 'security': 'Bezbednost', + 'security': 'Security', 'email_bounced': 'Email Bounced', 'email_spam_complaint': 'Spam Complaint', 'email_delivery': 'Email Delivery', @@ -53792,1714 +48407,1730 @@ mixin LocalizationsProvider on LocaleCodeAware { 'pdf_failed': 'PDF Failed', 'pdf_success': 'PDF Success', 'modified': 'Modified', - 'subscription': 'Pretplata', - 'subscriptions': 'Pretplate', - 'new_subscription': 'Nova pretplata', - 'edit_subscription': 'Izmeni Pretplatu', - 'created_subscription': 'Pretplata uspešno kreirana', - 'updated_subscription': 'Pretplata uspešno ažurirana', - 'archived_subscription': 'Uspešno arhivirana pretplata', - 'deleted_subscription': 'Uspešno obrisana pretplata', - 'removed_subscription': 'Uspešno uklonjena pretplata', - 'restored_subscription': 'Uspešno vraćena pretplata', - 'search_subscription': 'Pretraga 1 Pretplata', - 'search_subscriptions': 'Traži :count pretplate', - 'subdomain_is_not_available': 'Poddomen nije dostupan', - 'connect_gmail': 'Povežite Gmail', - 'disconnect_gmail': 'Prekinite vezu sa Gmail-om', - 'connected_gmail': 'Gmail je uspešno povezan', - 'disconnected_gmail': 'Uspešno je prekinuta veza sa Gmail-om', + 'subscription': 'Subscription', + 'subscriptions': 'Subscriptions', + 'new_subscription': 'New Subscription', + 'edit_subscription': 'Edit Subscription', + 'created_subscription': 'Successfully created subscription', + 'updated_subscription': 'Successfully updated subscription', + 'archived_subscription': 'Successfully archived subscription', + 'deleted_subscription': 'Successfully deleted subscription', + 'removed_subscription': 'Successfully removed subscription', + 'restored_subscription': 'Successfully restored subscription', + 'search_subscription': 'Search 1 Subscription', + 'search_subscriptions': 'Search :count Subscriptions', + 'subdomain_is_not_available': 'Subdomain is not available', + 'connect_gmail': 'Connect Gmail', + 'disconnect_gmail': 'Disconnect Gmail', + 'connected_gmail': 'Successfully connected Gmail', + 'disconnected_gmail': 'Successfully disconnected Gmail', 'update_fail_help': - 'Promene u bazi koda možda blokiraju ažuriranje, možete pokrenuti ovu komandu da biste odbacili promene:', - 'client_id_number': 'ID broj klijenta', - 'count_minutes': ':count minuti', - 'password_timeout': 'Vreme isteka lozinke', - 'shared_invoice_credit_counter': 'Zajednički brojač računa/kredita', - 'use_last_email': 'Koristite poslednju e-poštu', - 'activate_company': 'Aktivirajte kompaniju', + 'Changes to the codebase may be blocking the update, you can run this command to discard the changes:', + 'client_id_number': 'Client ID Number', + 'count_minutes': ':count Minutes', + 'password_timeout': 'Password Timeout', + 'shared_invoice_credit_counter': 'Shared Invoice/Credit Counter', + 'use_last_email': 'Use last email', + 'activate_company': 'Activate Company', 'activate_company_help': - 'Omogućite e-pošte, redovne račune i obaveštenja', - 'an_error_occurred_try_again': 'Došlo je do greške, pokušajte ponovo', - 'please_first_set_a_password': 'Molimo prvo postavite lozinku', + 'Enable emails, recurring invoices and notifications', + 'an_error_occurred_try_again': 'An error occurred, please try again', + 'please_first_set_a_password': 'Please first set a password', 'changing_phone_disables_two_factor': - 'Upozorenje: Promena vašeg broja telefona će onemogućiti 2FA', + 'Warning: Changing your phone number will disable 2FA', 'help_translate': 'Help Translate', - 'please_select_a_country': 'Molimo odaberite državu', - 'resend_invite': 'Ponovo pošaljite pozivnicu', - 'disabled_two_factor': 'Uspešno onemogućen 2FA', - 'connected_google': 'Uspešno povezan nalog', - 'disconnected_google': 'Uspešno prekinuta veza sa nalogom', - 'delivered': 'Dostavljeno', - 'bounced': 'Odbijene', - 'spam': 'Nepoželjna e-pošta', - 'view_docs': 'Pregled dokumenata', + 'please_select_a_country': 'Please select a country', + 'resend_invite': 'Resend Invitation', + 'disabled_two_factor': 'Successfully disabled 2FA', + 'connected_google': 'Successfully connected account', + 'disconnected_google': 'Successfully disconnected account', + 'delivered': 'Delivered', + 'bounced': 'Bounced', + 'spam': 'Spam', + 'view_docs': 'View Docs', 'enter_phone_to_enable_two_factor': - 'Molimo navedite broj mobilnog telefona da biste omogućili dvofaktorsku potvrdu', - 'send_sms': 'Pošalji SMS poruku', - 'sms_code': 'SMS kod', - 'two_factor_setup_help': - 'Očitajte bar kod uz pomoć :link odgovarajuće aplikacije.', - 'enabled_two_factor': 'Dvostepena autorizacija uspešno aktivirana', - 'connect_google': 'Povežite Google', - 'disconnect_google': 'Prekinite vezu sa Google-om', - 'enable_two_factor': 'Dvostepena autorizacija', - 'disable_two_factor': 'Onemogućite dva faktora', + 'Please provide a mobile phone number to enable two factor authentication', + 'send_sms': 'Send SMS', + 'sms_code': 'SMS Code', + 'two_factor_setup_help': 'Scan the bar code with a :link compatible app.', + 'enabled_two_factor': 'Successfully enabled Two-Factor Authentication', + 'connect_google': 'Connect Google', + 'disconnect_google': 'Disconnect Google', + 'enable_two_factor': 'Two-Factor Authentication', + 'disable_two_factor': 'Disable Two Factor', 'require_password_with_social_login': 'Require Password with Social Login', - 'stay_logged_in': 'Ostanite prijavljeni', - 'session_about_to_expire': 'Upozorenje: Vaša sesija uskoro ističe', - 'count_hours': ':count sati', - 'count_day': '1 dan', - 'count_days': ':count dani', + 'stay_logged_in': 'Stay Logged In', + 'session_about_to_expire': 'Warning: Your session is about to expire', + 'count_hours': ':count Hours', + 'count_day': '1 Day', + 'count_days': ':count Days', 'web_session_timeout': 'Web Session Timeout', - 'security_settings': 'Bezbednosne postavke', - 'resend_email': 'Ponovo pošalji e-poštu', - 'confirm_your_email_address': 'Molimo potvrdite adresu svoje e-pošte', - 'refunded_payment': 'Refundirana uplata', - 'partially_unapplied': 'Delimično neprimenjeno', - 'select_a_gmail_user': - 'Izaberite korisnika koji je potvrđen pomoću Gmail-a', + 'security_settings': 'Security Settings', + 'resend_email': 'Resend Email', + 'confirm_your_email_address': 'Please confirm your email address', + 'refunded_payment': 'Refunded Payment', + 'partially_unapplied': 'Partially Unapplied', + 'select_a_gmail_user': 'Please select a user authenticated with Gmail', 'list_long_press': 'List Long Press', - 'show_actions': 'Prikaži radnje', - 'start_multiselect': 'Pokrenite opciju više izbora', + 'show_actions': 'Show Actions', + 'start_multiselect': 'Start Multiselect', 'email_sent_to_confirm_email': - 'E-pošta je poslata za potvrdu adrese e-pošte', + 'An email has been sent to confirm the email address', 'counter_pattern_error': - 'Da biste koristili :client_counter, dodajte ili :client_number ili :client_id_number da biste sprečili sukobe', - 'this_quarter': 'Ovaj kvartal', - 'last_quarter': 'Poslednji kvartal', - 'to_update_run': 'Za ažuriranje pokrenite', - 'convert_to_invoice': 'Pretvori u račun', - 'registration_url': 'URL za registraciju', - 'invoice_project': 'Naplati Projekat', - 'invoice_task': 'Fakturiši zadatak', - 'invoice_expense': 'Trošak računa', - 'search_payment_term': 'Pretraga 1 uslovi plaćanja', - 'search_payment_terms': 'Pretraži :count uslove plaćanja', - 'save_and_preview': 'Sačuvaj i pregledaj', - 'save_and_email': 'Sačuvaj i pošalji e-poštom', - 'supported_events': 'Podržani događaji', - 'converted_amount': 'Konvertovani iznos', - 'converted_balance': 'Konvertovano stanje', - 'converted_paid_to_date': 'Pretvoreno u plaćeno do danas', - 'converted_credit_balance': 'Konvertovano kreditno stanje', - 'converted_total': 'Ukupno konvertovano', - 'is_sent': 'Je poslato', - 'default_documents': 'Podrazumevani dokumenti', - 'document_upload': 'Otpremiti dokument', - 'document_upload_help': 'Dozvoli klijentima da pošalju dokumente', - 'expense_total': 'Ukupni troškovi', - 'enter_taxes': 'Unesite poreze', - 'by_rate': 'Prema stopi', - 'by_amount': 'Prema iznosu', - 'enter_amount': 'Unesite iznos', - 'before_taxes': 'Pre poreza', - 'after_taxes': 'Posle poreza', - 'color': 'Boja', - 'show': 'Prikaži', - 'hide': 'Sakrij', - 'empty_columns': 'Prazne kolone', - 'debug_mode_is_enabled': 'Režim za otklanjanje grešaka je omogućen', + 'To use :client_counter please add either :client_number or :client_id_number to prevent conflicts', + 'this_quarter': 'This Quarter', + 'last_quarter': 'Last Quarter', + 'to_update_run': 'To update run', + 'convert_to_invoice': 'Transformă în Factură', + 'registration_url': 'Registration URL', + 'invoice_project': 'Invoice Project', + 'invoice_task': 'Făcturează task', + 'invoice_expense': 'Invoice Expense', + 'search_payment_term': 'Search 1 Payment Term', + 'search_payment_terms': 'Search :count Payment Terms', + 'save_and_preview': 'Save and Preview', + 'save_and_email': 'Save and Email', + 'supported_events': 'Supported Events', + 'converted_amount': 'Converted Amount', + 'converted_balance': 'Converted Balance', + 'converted_paid_to_date': 'Converted Paid to Date', + 'converted_credit_balance': 'Converted Credit Balance', + 'converted_total': 'Converted Total', + 'is_sent': 'Is Sent', + 'default_documents': 'Default Documents', + 'document_upload': 'Document Upload', + 'document_upload_help': 'Enable clients to upload documents', + 'expense_total': 'Expense Total', + 'enter_taxes': 'Enter Taxes', + 'by_rate': 'By Rate', + 'by_amount': 'By Amount', + 'enter_amount': 'Enter Amount', + 'before_taxes': 'Before Taxes', + 'after_taxes': 'After Taxes', + 'color': 'Color', + 'show': 'Show', + 'hide': 'Ascunde', + 'empty_columns': 'Empty Columns', + 'debug_mode_is_enabled': 'Debug mode is enabled', 'debug_mode_is_enabled_help': - 'Upozorenje: Namenjeno da se koristi na lokalnim mašinama, što može dovesti do odavanja pristupnih parametara. Kliknite da biste saznali više.', - 'running_tasks': 'Aktivni zadaci', - 'recent_tasks': 'Nedavni zadaci', - 'recent_expenses': 'Nedavni troškovi', - 'upcoming_expenses': 'Nadolazeći troškovi', - 'update_app': 'Ažuriraj aplikaciju', - 'started_import': 'Uspešno pokrenut uvoz', - 'duplicate_column_mapping': 'Mapiranje duplikata kolona', - 'uses_inclusive_taxes': 'Koristi inkluzivne poreze', - 'is_amount_discount': 'Je popust na iznos', - 'column': 'Kolona', - 'sample': 'Uzorak', - 'map_to': 'Mapiraj u', - 'import': 'Uvoz', - 'first_row_as_column_names': 'Koristite prvi red kao nazive kolona', - 'select_file': 'Mollim odaberite datoteku', - 'no_file_selected': 'Nijedna datoteka nije odabrana', - 'csv_file': 'CSV datoteka', + 'Warning: it is intended for use on local machines, it can leak credentials. Click to learn more.', + 'running_tasks': 'Running Tasks', + 'recent_tasks': 'Recent Tasks', + 'recent_expenses': 'Recent Expenses', + 'upcoming_expenses': 'Upcoming Expenses', + 'update_app': 'Update App', + 'started_import': 'Successfully started import', + 'duplicate_column_mapping': 'Duplicate column mapping', + 'uses_inclusive_taxes': 'Uses Inclusive Taxes', + 'is_amount_discount': 'Is Amount Discount', + 'column': 'Coloana', + 'sample': 'Exemplar', + 'map_to': 'Map To', + 'import': 'Importa', + 'first_row_as_column_names': 'Use first row as column names', + 'select_file': 'Alege un fisier', + 'no_file_selected': 'No File Selected', + 'csv_file': 'fisier CSV', 'csv': 'CSV', 'freshbooks': 'FreshBooks', 'invoice2go': 'Invoice2go', - 'invoicely': 'Po računu', - 'waveaccounting': 'Wave računovodstvo', + 'invoicely': 'Invoicely', + 'waveaccounting': 'Wave Accounting', 'zoho': 'Zoho', - 'accounting': 'Računovodstvo', - 'required_files_missing': 'Molimo navedite sve CSV datoteke.', - 'import_type': 'Tip uvoza', + 'accounting': 'Accounting', + 'required_files_missing': 'Please provide all CSVs.', + 'import_type': 'Import Type', 'html_mode': 'HTML Mode', 'html_mode_help': 'Preview updates faster but is less accurate', - 'view_licenses': 'Prikaži licence', + 'view_licenses': 'View Licenses', 'webhook_url': 'Webhook URL', - 'fullscreen_editor': 'Uređivač preko celog ekrana', - 'sidebar_editor': 'Uređivač na bočnoj traci', - 'please_type_to_confirm': 'Molimo unesite \":value\" da biste potvrdili', - 'purge': 'Očistiti', - 'service': 'Usluga', - 'clone_to': 'Kloniraj u', - 'clone_to_other': 'Kloniraj u drugo', - 'labels': 'Oznake', - 'add_custom': 'Dodaj prilagođeno', - 'payment_tax': 'Porez na plaćanje', - 'unpaid': 'Neplaćeno', - 'white_label': 'Licenca bez brendiranja', - 'delivery_note': 'Otpremnica', - 'sent_invoices_are_locked': 'Poslati računi su zaključani', - 'paid_invoices_are_locked': 'Plaćeni računi su zaključani', - 'source_code': 'Izvorni kod', - 'app_platforms': 'Dodaj platforme', - 'invoice_late': 'Zakasneli račun', - 'quote_expired': 'Ponuda je istekla', - 'partial_due': 'Datum avansa', - 'invoice_total': 'Račun sveukupno', - 'quote_total': 'Ukupna ponuda', + 'fullscreen_editor': 'Fullscreen Editor', + 'sidebar_editor': 'Sidebar Editor', + 'please_type_to_confirm': 'Please type \":value\" to confirm', + 'purge': 'Purge', + 'service': 'Service', + 'clone_to': 'Clone To', + 'clone_to_other': 'Clone to Other', + 'labels': 'Labels', + 'add_custom': 'Add Custom', + 'payment_tax': 'Payment Tax', + 'unpaid': 'Unpaid', + 'white_label': 'White Label', + 'delivery_note': 'Delivery Note', + 'sent_invoices_are_locked': 'Sent invoices are locked', + 'paid_invoices_are_locked': 'Paid invoices are locked', + 'source_code': 'Source Code', + 'app_platforms': 'App Platforms', + 'invoice_late': 'Invoice Late', + 'quote_expired': 'Quote Expired', + 'partial_due': 'Partial Due', + 'invoice_total': 'Total factura', + 'quote_total': 'Total Proforma', 'credit_total': 'Credit Total', - 'recurring_invoice_total': 'Račun sveukupno', - 'actions': 'Akcije', - 'expense_number': 'Broj troška', - 'task_number': 'Broj zadatka', - 'project_number': 'Broj projekta', - 'project_name': 'Naziv projekta', - 'warning': 'Upozorenje', - 'view_settings': 'Prikaži podešavanja', + 'recurring_invoice_total': 'Invoice Total', + 'actions': 'Actions', + 'expense_number': 'Expense Number', + 'task_number': 'Task Number', + 'project_number': 'Project Number', + 'project_name': 'Project Name', + 'warning': 'Warning', + 'view_settings': 'View Settings', 'company_disabled_warning': - 'Upozorenje: ovo preduzeće još nije aktivirano', - 'late_invoice': 'Zakasneli račun', - 'expired_quote': 'Istekla ponuda', + 'Warning: this company has not yet been activated', + 'late_invoice': 'Late Invoice', + 'expired_quote': 'Expired Quote', 'remind_invoice': 'Remind Invoice', 'cvv': 'CVV', - 'client_name': 'Ime klijenta', - 'client_phone': 'Broj telefona klijenta', - 'required_fields': 'Obavezna polja', - 'calculated_rate': 'Izračunata stopa', - 'default_task_rate': 'Podrazumevana stopa zadatka', - 'clear_cache': 'Očistite keš memoriju', - 'sort_order': 'Redosled sortiranja', + 'client_name': 'Nume Client', + 'client_phone': 'Client Phone', + 'required_fields': 'Required Fields', + 'calculated_rate': 'Calculated Rate', + 'default_task_rate': 'Default Task Rate', + 'clear_cache': 'Clear Cache', + 'sort_order': 'Sort Order', 'task_status': 'Status', - 'task_statuses': 'Statusi zadataka', - 'new_task_status': 'Status novog zadatka', - 'edit_task_status': 'Uredi status zadatka', - 'created_task_status': 'Uspešno kreiran status zadatka', - 'updated_task_status': 'Uspešno ažuriran status zadatka', - 'archived_task_status': 'Uspešno arhiviran status zadatka', - 'deleted_task_status': 'Uspešno obrisan status zadatka', - 'removed_task_status': 'Uspešno uklonjen status zadatka', - 'restored_task_status': 'Uspešno vraćen status zadatka', - 'archived_task_statuses': 'Statusi zadataka :value su uspešno arhivirani', - 'deleted_task_statuses': 'Statusi zadataka :value su uspešno obrisani', - 'restored_task_statuses': 'Statusi zadataka :value su uspešno vraćeni', - 'search_task_status': 'Pretraga 1 status zadatka', - 'search_task_statuses': 'Pretraži :count statuse zadataka', - 'show_tasks_table': 'Prikaži tabelu zadataka', + 'task_statuses': 'Task Statuses', + 'new_task_status': 'New Task Status', + 'edit_task_status': 'Edit Task Status', + 'created_task_status': 'Successfully created task status', + 'updated_task_status': 'Successfully update task status', + 'archived_task_status': 'Successfully archived task status', + 'deleted_task_status': 'Successfully deleted task status', + 'removed_task_status': 'Successfully removed task status', + 'restored_task_status': 'Successfully restored task status', + 'archived_task_statuses': 'Successfully archived :value task statuses', + 'deleted_task_statuses': 'Successfully deleted :value task statuses', + 'restored_task_statuses': 'Successfully restored :value task statuses', + 'search_task_status': 'Search 1 Task Status', + 'search_task_statuses': 'Search :count Task Statuses', + 'show_tasks_table': 'Show Tasks Table', 'show_tasks_table_help': - 'Uvek prikažite odeljak sa zadacima kada kreirate račune', - 'invoice_task_timelog': 'Vremenski dnevnik zadatka računa', - 'invoice_task_timelog_help': 'Dodajte detalje o vremenu stavkama računa', + 'Always show the tasks section when creating invoices', + 'invoice_task_timelog': 'Invoice Task Timelog', + 'invoice_task_timelog_help': 'Add time details to the invoice line items', 'invoice_task_datelog': 'Invoice Task Datelog', - 'invoice_task_datelog_help': 'Dodajte detalje o datumu u stavke računa', - 'auto_start_tasks_help': 'Započnite zadatke pre čuvanja', - 'configure_statuses': 'Konfigurišite statuse', - 'task_settings': 'Postavke zadatka', - 'configure_categories': 'Konfigurišite kategorije', - 'expense_categories': 'Kategorije troškova', - 'new_expense_category': 'Nova kategorija troškova', - 'edit_expense_category': 'Kategorija izmene troškova', - 'created_expense_category': 'Kategorija troškova uspešno napravljena', - 'updated_expense_category': 'Kategorija troškova uspešno izmenjena', - 'archived_expense_category': 'Kategorija troškova uspešno arhivirana', - 'deleted_expense_category': 'Kategorija uspešno obrisana', - 'removed_expense_category': 'Uspešno uklonjena kategorija troškova', - 'restored_expense_category': 'Kategorija troškova uspešno vraćena', + 'invoice_task_datelog_help': 'Add date details to the invoice line items', + 'auto_start_tasks_help': 'Start tasks before saving', + 'configure_statuses': 'Configure Statuses', + 'task_settings': 'Task Settings', + 'configure_categories': 'Configure Categories', + 'expense_categories': 'Expense Categories', + 'new_expense_category': 'New Expense Category', + 'edit_expense_category': 'Edit Expense Category', + 'created_expense_category': 'Successfully created expense category', + 'updated_expense_category': 'Successfully updated expense category', + 'archived_expense_category': 'Successfully archived expense category', + 'deleted_expense_category': 'Successfully deleted category', + 'removed_expense_category': 'Successfully removed expense category', + 'restored_expense_category': 'Successfully restored expense category', 'archived_expense_categories': - 'Uspešno arhivirano :count kategorija troškova', + 'Successfully archived :count expense category', 'deleted_expense_categories': - 'Uspešno obrisana kategorija troškova :value', + 'Successfully deleted expense :value categories', 'restored_expense_categories': - 'Uspešno vraćena kategorija troškova :value', - 'search_expense_category': 'Pretraga 1 kategorija troškova', - 'search_expense_categories': 'Pretražiti :count kategorije troškova', - 'use_available_credits': 'Koristite dostupne kredite', - 'show_option': 'Prikaži opciju', + 'Successfully restored expense :value categories', + 'search_expense_category': 'Search 1 Expense Category', + 'search_expense_categories': 'Search :count Expense Categories', + 'use_available_credits': 'Use Available Credits', + 'show_option': 'Show Option', 'negative_payment_error': - 'Iznos kredita ne može biti veći od iznosa uplate', - 'view_changes': 'Prikaži promene', - 'force_update': 'Prisilno ažuriranje', + 'The credit amount cannot exceed the payment amount', + 'view_changes': 'View Changes', + 'force_update': 'Force Update', 'force_update_help': - 'Pokrećete najnoviju verziju, ali možda postoje ispravke na čekanju.', - 'mark_paid_help': 'Pratite trošak koji je plaćen', - 'should_be_invoiced': 'Treba biti fakturisan', - 'should_be_invoiced_help': 'Omogućite da se trošak fakturiše', - 'add_documents_to_invoice_help': 'Učinite dokumente vidljivim', - 'convert_currency_help': 'Podesite kurs', - 'expense_settings': 'Podešavanja troškova', - 'clone_to_recurring': 'Kloniraj u ponavljajuće', + 'You are running the latest version but there may be pending fixes available.', + 'mark_paid_help': 'Track the expense has been paid', + 'should_be_invoiced': 'Should be invoiced', + 'should_be_invoiced_help': 'Enable the expense to be invoiced', + 'add_documents_to_invoice_help': 'Make the documents visible', + 'convert_currency_help': 'Set an exchange rate', + 'expense_settings': 'Expense Settings', + 'clone_to_recurring': 'Clone to Recurring', 'crypto': 'Crypto', 'paypal': 'PayPal', 'alipay': 'Alipay', 'sofort': 'Sofort', 'apple_pay': 'Apple/Google Pay', - 'user_field': 'Polje korisnika', - 'variables': 'Varijable', - 'show_password': 'Prikaži lozinku', - 'hide_password': 'Sakrij lozinku', - 'copy_error': 'Kopiraj grešku', + 'user_field': 'User Field', + 'variables': 'Variables', + 'show_password': 'Show Password', + 'hide_password': 'Hide Password', + 'copy_error': 'Copy Error', 'capture_card': 'Capture Card', - 'auto_bill_enabled': 'Automatski obračun je omogućen', - 'total_taxes': 'Ukupni porezi', + 'auto_bill_enabled': 'Auto Bill Enabled', + 'total_taxes': 'Total Taxes', 'line_taxes': 'Line Taxes', - 'total_fields': 'Ukupno polja', - 'stopped_recurring_invoice': 'Uspešno zaustavljen redovni račun', - 'started_recurring_invoice': 'Uspešno započet redovni račun', - 'resumed_recurring_invoice': - 'Uspešno je nastavljena ponavljajuća faktura', + 'total_fields': 'Total Fields', + 'stopped_recurring_invoice': 'Successfully stopped recurring invoice', + 'started_recurring_invoice': 'Successfully started recurring invoice', + 'resumed_recurring_invoice': 'Successfully resumed recurring invoice', 'gateway_refund': 'Gateway Refund', - 'gateway_refund_help': 'Obradite povraćaj preko kanala za plaćanje', - 'due_date_days': 'Datum dospeća', - 'paused': 'Pauzirano', - 'mark_active': 'Označiti aktivno', - 'day_count': 'Dan :count', - 'first_day_of_the_month': 'Prvi dan u mesecu', - 'last_day_of_the_month': 'Poslednji dan u mesecu', - 'use_payment_terms': 'Koristite uslove plaćanja', - 'endless': 'Beskonačno', - 'next_send_date': 'Sledeći datum slanja', - 'remaining_cycles': 'Preostali ciklusi', - 'recurring_invoice': 'Ponavljajući račun', - 'recurring_invoices': 'Ponavljajući računi', - 'new_recurring_invoice': 'Novi ponavljajući račun', - 'edit_recurring_invoice': 'Izmeni ponavljajući račun', - 'created_recurring_invoice': 'Uspešno napravljen redovni račun', - 'updated_recurring_invoice': 'Uspešno ažuriran redovni račun', - 'archived_recurring_invoice': 'Redovni račun uspešno arhiviran', - 'deleted_recurring_invoice': 'Redovni račun uspešno obrisan', - 'removed_recurring_invoice': 'Uspešno uklonjen redovni račun', - 'restored_recurring_invoice': 'Redovni račun uspešno obnovljen', + 'gateway_refund_help': 'Process the refund with the payment gateway', + 'due_date_days': 'Due Date', + 'paused': 'Paused', + 'mark_active': 'Mark Active', + 'day_count': 'Day :count', + 'first_day_of_the_month': 'First Day of the Month', + 'last_day_of_the_month': 'Last Day of the Month', + 'use_payment_terms': 'Use Payment Terms', + 'endless': 'Endless', + 'next_send_date': 'Next Send Date', + 'remaining_cycles': 'Remaining Cycles', + 'recurring_invoice': 'Factura Recurenta', + 'recurring_invoices': 'Facturi Recurente', + 'new_recurring_invoice': 'Adauga Factura Recurenta', + 'edit_recurring_invoice': 'Editare factura recurenta', + 'created_recurring_invoice': 'Successfully created recurring invoice', + 'updated_recurring_invoice': 'Successfully updated recurring invoice', + 'archived_recurring_invoice': 'Factură recurentă arhivată cu succes', + 'deleted_recurring_invoice': 'Factură recurentă ștearsă cu succes', + 'removed_recurring_invoice': 'Successfully removed recurring invoice', + 'restored_recurring_invoice': 'Factură recurentă restaurată cu succes', 'archived_recurring_invoices': - 'Redovni :value računi su uspešno arhivirani', - 'deleted_recurring_invoices': 'Redovni :value računi su uspešno obrisani', - 'restored_recurring_invoices': 'Redovni :value računi su uspešno vraćeni', - 'search_recurring_invoice': 'Pretraga 1 redovni račun', - 'search_recurring_invoices': 'Pretraži :count redovne račune', - 'send_date': 'Datum slanja', - 'auto_bill_on': 'Automatska naplata uključena', - 'minimum_under_payment_amount': 'Minimalni iznos plaćanja', - 'profit': 'Zarada', - 'line_item': 'Stavka', - 'allow_over_payment': 'Dozvoli preplatu', - 'allow_over_payment_help': - 'Podržite dodatno plaćanje za prihvatanje saveta', + 'Successfully archived recurring :value invoices', + 'deleted_recurring_invoices': + 'Successfully deleted recurring :value invoices', + 'restored_recurring_invoices': + 'Successfully restored recurring :value invoices', + 'search_recurring_invoice': 'Search 1 Recurring Invoice', + 'search_recurring_invoices': 'Search :count Recurring Invoices', + 'send_date': 'Send Date', + 'auto_bill_on': 'Auto Bill On', + 'minimum_under_payment_amount': 'Minimum Under Payment Amount', + 'profit': 'Profit', + 'line_item': 'Line Item', + 'allow_over_payment': 'Allow Over Payment', + 'allow_over_payment_help': 'Support paying extra to accept tips', 'allow_under_payment': 'Allow Under Payment', 'allow_under_payment_help': - 'Podrška plaćanja delimičnog minimalnog iznosa /depozita', - 'test_mode': 'Način testiranja', - 'opened': 'Otvoreno', - 'payment_reconciliation_failure': 'Izmirenje nije uspelo', - 'payment_reconciliation_success': 'Izmirenje je uspelo', + 'Support paying at minimum the partial/deposit amount', + 'test_mode': 'Test Mode', + 'opened': 'Opened', + 'payment_reconciliation_failure': 'Reconciliation Failure', + 'payment_reconciliation_success': 'Reconciliation Success', 'gateway_success': 'Gateway Success', 'gateway_failure': 'Gateway Failure', 'gateway_error': 'Gateway Error', - 'email_send': 'Pošalji e-poštu', - 'email_retry_queue': 'Red za ponovni pokušaj e-pošte', - 'failure': 'Neuspeh', - 'quota_exceeded': 'Kvota je premašena', + 'email_send': 'Email Send', + 'email_retry_queue': 'Email Retry Queue', + 'failure': 'Failure', + 'quota_exceeded': 'Quota Exceeded', 'upstream_failure': 'Upstream Failure', 'system_logs': 'System Logs', - 'view_portal': 'Pogledaj portal', - 'copy_link': 'Kopiraj link', - 'token_billing': 'Sačuvaj detalje kartice', - 'welcome_to_invoice_ninja': 'Dobrodošli u Invoice Ninja-u', - 'always': 'Uvek', + 'view_portal': 'View Portal', + 'copy_link': 'Copy Link', + 'token_billing': 'Salvează datele cardului', + 'welcome_to_invoice_ninja': 'Welcome to Invoice Ninja', + 'always': 'Always', 'optin': 'Opt-In', 'optout': 'Opt-Out', - 'label': 'Oznaka', - 'client_number': 'Broj klijenta', - 'auto_convert': 'Auto konverzija', - 'company_name': 'Ime preduzeća', - 'reminder1_sent': 'Podsetnik 1 poslat', - 'reminder2_sent': 'Podsetnik 2 poslat', - 'reminder3_sent': 'Podsetnik 3 poslat', - 'reminder_last_sent': 'Podsetnik koji je poslednji poslat', - 'pdf_page_info': 'Stranica :current od :total', - 'emailed_invoices': 'Račun uspešno poslat e-poštom', - 'emailed_quotes': 'Predračun je uspešno poslat e-poštom', - 'emailed_credits': 'Krediti uspešno poslati e-poštom', - 'gateway': 'Kanal prodaje', - 'view_in_stripe': 'Pogledaj u Stripe-u', - 'rows_per_page': 'Redovi po stranici', - 'hours': 'Sati', - 'statement': 'Izjava', - 'taxes': 'Porezi', - 'surcharge': 'Doplata', - 'apply_payment': 'Primeni plaćanje', - 'apply_credit': 'Primeni kredit', - 'apply': 'Primeni', - 'unapplied': 'Neprimenjeno', - 'select_label': 'Izaberi oznaku', - 'custom_labels': 'Prilagođene oznake', - 'record_type': 'Tip zapisa', - 'record_name': 'Naziv zapisa', - 'file_type': 'Tip datoteke', - 'height': 'Visina', - 'width': 'Širina', - 'to': 'Prima', - 'health_check': 'Zdravstveni pregled', - 'payment_type_id': 'Tip uplate', - 'last_login_at': 'Poslednje prijavljivanje na', - 'company_key': 'Ključ preduzeća', - 'storefront': 'Izlog', - 'storefront_help': - 'Omogućite aplikacijama trećih strana da kreiraju račune', - 'client_created': 'Klijent kreiran', - 'online_payment_email': 'E-pošta za onlajn plaćanje', - 'manual_payment_email': 'E-pošta za ručno plaćanje', - 'completed': 'Završeno', - 'gross': 'Bruto', - 'net_amount': 'Neto iznos', - 'net_balance': 'Neto stanje', - 'client_settings': 'Podešavanja klijenta', - 'selected_invoices': 'Izabrani računi', - 'selected_payments': 'Izabrana plaćanja', - 'selected_quotes': 'Izabrane ponude', - 'selected_tasks': 'Izabrani zadaci', - 'selected_expenses': 'Izabrani troškovi', - 'upcoming_invoices': 'Dolazni računi', - 'past_due_invoices': 'Računi van valute', - 'recent_payments': 'Nedavne uplate', - 'upcoming_quotes': 'Nadolazeći predračuni', - 'expired_quotes': 'Istekli predračuni', - 'create_client': 'Kreiraj klijenta', - 'create_invoice': 'Kreiraj račun', - 'create_quote': 'Napravi ponudu', - 'create_payment': 'Kreiraj plaćanje', - 'create_vendor': 'Napravi dobavljača', - 'update_quote': 'Ažurirati ponudu', - 'delete_quote': 'Obriši ponudu', - 'update_invoice': 'Ažurirati račun', - 'delete_invoice': 'Obriši račun', - 'update_client': 'Ažurirati klijenta', - 'delete_client': 'Obriši klijenta', - 'delete_payment': 'Obriši uplatu', - 'update_vendor': 'Ažurirati dobavljača', - 'delete_vendor': 'Obriši dobavljača', - 'create_expense': 'Kreiraj trošak', - 'update_expense': 'Ažuriraj trošak', - 'delete_expense': 'Obriši trošak', - 'create_task': 'Kreiraj zadatak', - 'update_task': 'Ažuriraj Zadatak', - 'delete_task': 'Obriši zadatak', - 'approve_quote': 'Odobri ponudu', - 'off': 'Isključeno', - 'when_paid': 'Kada je plaćena', - 'expires_on': 'Ističe', - 'free': 'Besplatan', + 'label': 'Label', + 'client_number': 'Client Number', + 'auto_convert': 'Auto Convert', + 'company_name': 'Company Name', + 'reminder1_sent': 'Reminder 1 Sent', + 'reminder2_sent': 'Reminder 2 Sent', + 'reminder3_sent': 'Reminder 3 Sent', + 'reminder_last_sent': 'Reminder Last Sent', + 'pdf_page_info': 'Page :current of :total', + 'emailed_invoices': 'Successfully emailed invoices', + 'emailed_quotes': 'Successfully emailed quotes', + 'emailed_credits': 'Successfully emailed credits', + 'gateway': 'Gateway', + 'view_in_stripe': 'View in Stripe', + 'rows_per_page': 'Rows Per Page', + 'hours': 'Ore', + 'statement': 'Extras', + 'taxes': 'Taxe', + 'surcharge': 'Surcharge', + 'apply_payment': 'Apply Payment', + 'apply_credit': 'Apply Credit', + 'apply': 'Apply', + 'unapplied': 'Unapplied', + 'select_label': 'Select Label', + 'custom_labels': 'Custom Labels', + 'record_type': 'Record Type', + 'record_name': 'Record Name', + 'file_type': 'File Type', + 'height': 'Height', + 'width': 'Width', + 'to': 'Către', + 'health_check': 'Health Check', + 'payment_type_id': 'Tip plata', + 'last_login_at': 'Last Login At', + 'company_key': 'Company Key', + 'storefront': 'Storefront', + 'storefront_help': 'Enable third-party apps to create invoices', + 'client_created': 'Client Created', + 'online_payment_email': 'Online Payment Email', + 'manual_payment_email': 'Manual Payment Email', + 'completed': 'Completed', + 'gross': 'Gross', + 'net_amount': 'Net Amount', + 'net_balance': 'Net Balance', + 'client_settings': 'Client Settings', + 'selected_invoices': 'Selected Invoices', + 'selected_payments': 'Selected Payments', + 'selected_quotes': 'Selected Quotes', + 'selected_tasks': 'Selected Tasks', + 'selected_expenses': 'Selected Expenses', + 'upcoming_invoices': 'Facturi urmatoare', + 'past_due_invoices': 'Past Due Invoices', + 'recent_payments': 'Plati recente', + 'upcoming_quotes': 'Proforme următoare', + 'expired_quotes': 'Proforme expirate', + 'create_client': 'Create Client', + 'create_invoice': 'Creaza factura', + 'create_quote': 'Creaza Proforma', + 'create_payment': 'Create Payment', + 'create_vendor': 'Create vendor', + 'update_quote': 'Update Quote', + 'delete_quote': 'Sterge Proforma', + 'update_invoice': 'Update Invoice', + 'delete_invoice': 'Sterge factura', + 'update_client': 'Update Client', + 'delete_client': 'Sterge client', + 'delete_payment': 'Sterge plata', + 'update_vendor': 'Update Vendor', + 'delete_vendor': 'Șterge Furnizor', + 'create_expense': 'Create Expense', + 'update_expense': 'Update Expense', + 'delete_expense': 'Delete Expense', + 'create_task': 'Crează Task', + 'update_task': 'Update Task', + 'delete_task': 'Șterge Task', + 'approve_quote': 'Approve Quote', + 'off': 'Off', + 'when_paid': 'When Paid', + 'expires_on': 'Expires On', + 'free': 'Gratis', 'plan': 'Plan', - 'show_sidebar': 'Prikaži bočnu traku', - 'hide_sidebar': 'Sakrij bočnu traku', - 'event_type': 'Tip događaja', - 'target_url': 'Cilj', - 'copy': 'Kopiraj', - 'must_be_online': - 'Molimo ponovo pokrenite aplikaciju kada se povežete na internet', - 'crons_not_enabled': 'Crons treba da bude omogućena', + 'show_sidebar': 'Show Sidebar', + 'hide_sidebar': 'Hide Sidebar', + 'event_type': 'Event Type', + 'target_url': 'Target', + 'copy': 'Copy', + 'must_be_online': 'Please restart the app once connected to the internet', + 'crons_not_enabled': 'The crons need to be enabled', 'api_webhooks': 'API Webhooks', - 'search_webhooks': 'Traži :count Webhooks', - 'search_webhook': 'Traži 1 Webhook', + 'search_webhooks': 'Search :count Webhooks', + 'search_webhook': 'Search 1 Webhook', 'webhook': 'Webhook', 'webhooks': 'Webhooks', - 'new_webhook': 'Novi Webhook', - 'edit_webhook': 'Uredi Webhook', - 'created_webhook': 'Uspešno kreiran webhook', - 'updated_webhook': 'Uspešno ažuriran webhook', - 'archived_webhook': 'Uspešno arhiviran webhook', - 'deleted_webhook': 'Uspešno obrisan webhook', - 'removed_webhook': 'Uspešno uklonjen webhook', - 'restored_webhook': 'Uspešno vraćen webhook', - 'archived_webhooks': 'Uspešno arhiviran :value webhook', - 'deleted_webhooks': 'Uspešno obrisan :value webhook', - 'removed_webhooks': 'Uspešno uklonjen :value webhook', - 'restored_webhooks': 'Uspešno vraćen :value webhook', - 'api_tokens': 'API tokeni', - 'api_docs': 'API dokumenti', - 'search_tokens': 'Pretraži :count tokene', - 'search_token': 'Pretraži 1 token', + 'new_webhook': 'New Webhook', + 'edit_webhook': 'Edit Webhook', + 'created_webhook': 'Successfully created webhook', + 'updated_webhook': 'Successfully updated webhook', + 'archived_webhook': 'Successfully archived webhook', + 'deleted_webhook': 'Successfully deleted webhook', + 'removed_webhook': 'Successfully removed webhook', + 'restored_webhook': 'Successfully restored webhook', + 'archived_webhooks': 'Successfully archived :value webhooks', + 'deleted_webhooks': 'Successfully deleted :value webhooks', + 'removed_webhooks': 'Successfully removed :value webhooks', + 'restored_webhooks': 'Successfully restored :value webhooks', + 'api_tokens': 'Token API', + 'api_docs': 'API Docs', + 'search_tokens': 'Search :count Tokens', + 'search_token': 'Search 1 Token', 'token': 'Token', - 'tokens': 'Tokeni', - 'new_token': 'Novi token', - 'edit_token': 'Izmeni token', - 'created_token': 'Uspešno kreiran token', - 'updated_token': 'Uspešno ažuriran token', - 'archived_token': 'Uspešno arhiviran token', - 'deleted_token': 'Uspešno obrisan token', - 'removed_token': 'Uspešno uklonjen token', - 'restored_token': 'Uspešno vraćen token', - 'archived_tokens': 'Uspešno arhivirane :value tokena', - 'deleted_tokens': 'Uspešno obrisane :value tokena', - 'restored_tokens': 'Uspešno vraćene :value tokena', - 'client_registration': 'Registracija klijenta', + 'tokens': 'Token-uri', + 'new_token': 'New Token', + 'edit_token': 'Modifica token', + 'created_token': 'Token creat', + 'updated_token': 'Actualizează token', + 'archived_token': 'Successfully archived token', + 'deleted_token': 'Token șters', + 'removed_token': 'Successfully removed token', + 'restored_token': 'Successfully restored token', + 'archived_tokens': 'Successfully archived :value tokens', + 'deleted_tokens': 'Successfully deleted :value tokens', + 'restored_tokens': 'Successfully restored :value tokens', + 'client_registration': 'Client Registration', 'client_registration_help': - 'Omogućite klijentima da se sami registruju na portalu', - 'customize_and_preview': 'Prilagodite i pregledajte', - 'email_invoice': 'Pošalji e-poštom', - 'email_quote': 'Pošalji ponudu e-poštom', + 'Enable clients to self register in the portal', + 'customize_and_preview': 'Customize & Preview', + 'email_invoice': 'Trimite email', + 'email_quote': 'Trimite Proforma', 'email_credit': 'Email Credit', - 'email_payment': 'Pošalji uplatu e-poštom', - 'client_email_not_set': 'Klijent nema podešenu adresu e-pošte', + 'email_payment': 'Email Payment', + 'client_email_not_set': 'Client does not have an email address set', 'ledger': 'Ledger', - 'view_pdf': 'Vidi PDF', - 'all_records': 'Svi zapisi', - 'owned_by_user': 'Vlasništvo korisnika', - 'credit_remaining': 'Preostali kredit', - 'contact_name': 'Ime kontakta', - 'use_default': 'Koristi kao podrazumevano', - 'reminder_endless': 'Beskrajni podsetnici', - 'number_of_days': 'Broj dana', - 'configure_payment_terms': 'Konfigurišite uslove plaćanja', - 'payment_term': 'Uslov plaćanja', - 'new_payment_term': 'Novi uslov plaćanja', - 'edit_payment_term': 'Uredi uslov plaćanja', - 'created_payment_term': 'Uspešno kreiran rok plaćanja', - 'updated_payment_term': 'Uspešno ažuriran rok plaćanja', - 'archived_payment_term': 'Uspešno arhiviran rok plaćanja', - 'deleted_payment_term': 'Uspešno obrisan uslov plaćanja', - 'removed_payment_term': 'Uspešno uklonjen uslov plaćanja', - 'restored_payment_term': 'Uspešno vraćen uslov plaćanja', - 'archived_payment_terms': 'Uslovi plaćanja :value su uspešno arhivirani', - 'deleted_payment_terms': 'Uslovi plaćanja :value su uspešno obrisani', - 'restored_payment_terms': 'Uslovi plaćanja :value su uspešno vraćeni', - 'email_sign_in': 'Prijavite se putem e-pošte', - 'change': 'Promeniti', + 'view_pdf': 'View PDF', + 'all_records': 'All records', + 'owned_by_user': 'Owned by user', + 'credit_remaining': 'Credit Remaining', + 'contact_name': 'Contact Name', + 'use_default': 'Use default', + 'reminder_endless': 'Endless Reminders', + 'number_of_days': 'Number of days', + 'configure_payment_terms': 'Configure Payment Terms', + 'payment_term': 'Payment Term', + 'new_payment_term': 'New Payment Term', + 'edit_payment_term': 'Edit Payment Term', + 'created_payment_term': 'Successfully created payment term', + 'updated_payment_term': 'Successfully updated payment term', + 'archived_payment_term': 'Successfully archived payment term', + 'deleted_payment_term': 'Successfully deleted payment term', + 'removed_payment_term': 'Successfully removed payment term', + 'restored_payment_term': 'Successfully restored payment term', + 'archived_payment_terms': 'Successfully archived :value payment terms', + 'deleted_payment_terms': 'Successfully deleted :value payment terms', + 'restored_payment_terms': 'Successfully restored :value payment terms', + 'email_sign_in': 'Sign in with email', + 'change': 'Change', 'change_to_mobile_layout': 'Change to the mobile layout?', - 'change_to_desktop_layout': 'Promeniti u izgled radne površine?', - 'send_from_gmail': 'Poslati sa Gmail-a', - 'reversed': 'Obrnuto', - 'cancelled': 'Otkazano', - 'credit_amount': 'Iznos kredita', - 'quote_amount': 'Iznos ponude', + 'change_to_desktop_layout': 'Change to the desktop layout?', + 'send_from_gmail': 'Send from Gmail', + 'reversed': 'Reversed', + 'cancelled': 'Cancelled', + 'credit_amount': 'Valoare credit', + 'quote_amount': 'Quote Amount', 'hosted': 'Hosted', 'selfhosted': 'Self-Hosted', 'exclusive': 'Exclusive', 'inclusive': 'Inclusive', - 'hide_menu': 'Sakrij meni', - 'show_menu': 'Prikaži meni', - 'partially_refunded': 'Delimično refundirano', - 'search_documents': 'Pretraži dokumenta', - 'search_designs': 'Pretraži dizajne', - 'search_invoices': 'Pretraži račune', - 'search_clients': 'Pretraži klijente', - 'search_products': 'Pretraži proizvode', - 'search_quotes': 'Pretraži ponude', - 'search_credits': 'Pretraži kredite', - 'search_vendors': 'Pretraži dobavljače', - 'search_users': 'Pretraži korisnike', - 'search_tax_rates': 'Pretraži poreske stope', - 'search_tasks': 'Pretraži zadatke', - 'search_settings': 'Pretraži postavke', - 'search_projects': 'Pretraži projekte', - 'search_expenses': 'Pretraži troškove', - 'search_payments': 'Pretraži plaćanja', - 'search_groups': 'Pretraži grupe', - 'search_company': 'Pretraži preduzeće', - 'search_document': 'Pretraga 1 dokument', - 'search_design': 'Pretraga 1 dizajn', - 'search_invoice': 'Pretraga 1 račun', - 'search_client': 'Pretraga 1 klijent', - 'search_product': 'Pretraga 1 proizvod', - 'search_quote': 'Pretraga 1 ponuda', - 'search_credit': 'Pretraga 1 kredit', - 'search_vendor': 'Pretraga 1 dobavljač', - 'search_user': 'Pretraga 1 korisnik', - 'search_tax_rate': 'Pretraga 1 poreska stopa', - 'search_task': 'Pretraga 1 zadaci', - 'search_project': 'Pretraži 1 projekat', - 'search_expense': 'Pretraga 1 trošak', - 'search_payment': 'Pretraga 1 plaćanje', - 'search_group': 'Pretraga 1 grupa', - 'refund_payment': 'Isplata povraćaja novca', - 'cancelled_invoice': 'Uspešno otkazan račun', - 'cancelled_invoices': 'Uspešno otkazani računi', - 'reversed_invoice': 'Uspešno promenjen račun', - 'reversed_invoices': 'Uspešno promenjeni računi', - 'reverse': 'Promeniti', - 'full_name': 'Puno ime', - 'city_state_postal': 'Grad/država/poštanski broj', - 'postal_city_state': 'Poštanski broj/Grad/Država', - 'custom1': 'Prvo prilagođeno', - 'custom2': 'Drugo prilagođeno', - 'custom3': 'Treće prilagođeno', - 'custom4': 'Četvrtvo prilagođeno', - 'optional': 'Opciono', - 'license': 'Licenca', - 'purge_data': 'Očistiti podatke', - 'purge_successful': 'Uspešno očišćeni podaci kompanije', + 'hide_menu': 'Hide Menu', + 'show_menu': 'Show Menu', + 'partially_refunded': 'Partially Refunded', + 'search_documents': 'Search Documents', + 'search_designs': 'Search Designs', + 'search_invoices': 'Search Invoices', + 'search_clients': 'Search Clients', + 'search_products': 'Search Products', + 'search_quotes': 'Search Quotes', + 'search_credits': 'Search Credits', + 'search_vendors': 'Search Vendors', + 'search_users': 'Search Users', + 'search_tax_rates': 'Search Tax Rates', + 'search_tasks': 'Search Tasks', + 'search_settings': 'Search Settings', + 'search_projects': 'Search Projects', + 'search_expenses': 'Search Expenses', + 'search_payments': 'Search Payments', + 'search_groups': 'Search Groups', + 'search_company': 'Search Company', + 'search_document': 'Search 1 Document', + 'search_design': 'Search 1 Design', + 'search_invoice': 'Search 1 Invoice', + 'search_client': 'Search 1 Client', + 'search_product': 'Search 1 Product', + 'search_quote': 'Search 1 Quote', + 'search_credit': 'Search 1 Credit', + 'search_vendor': 'Search 1 Vendor', + 'search_user': 'Search 1 User', + 'search_tax_rate': 'Search 1 Tax Rate', + 'search_task': 'Search 1 Tasks', + 'search_project': 'Search 1 Project', + 'search_expense': 'Search 1 Expense', + 'search_payment': 'Search 1 Payment', + 'search_group': 'Search 1 Group', + 'refund_payment': 'Refund Payment', + 'cancelled_invoice': 'Successfully cancelled invoice', + 'cancelled_invoices': 'Successfully cancelled invoices', + 'reversed_invoice': 'Successfully reversed invoice', + 'reversed_invoices': 'Successfully reversed invoices', + 'reverse': 'Reverse', + 'full_name': 'Full Name', + 'city_state_postal': 'City/State/Postal', + 'postal_city_state': 'Postal/City/State', + 'custom1': 'First Custom', + 'custom2': 'Second Custom', + 'custom3': 'Third Custom', + 'custom4': 'Fourth Custom', + 'optional': 'Optional', + 'license': 'License', + 'purge_data': 'Purge Data', + 'purge_successful': 'Successfully purged company data', 'purge_data_message': - 'Upozorenje: Ovo će trajno izbrisati Vaše podatke, nema mogućnosti povratka podataka.', - 'invoice_balance': 'Stanje računa', - 'age_group_0': '0 - 30 Dana', - 'age_group_30': '30 - 60 Dana', - 'age_group_60': '60 - 90 Dana', - 'age_group_90': '90 - 120 Dana', - 'age_group_120': '120+ Dana', - 'refresh': 'Osveži', - 'saved_design': 'Uspešno sačuvan dizajn', - 'client_details': 'Detalji klijenta', - 'company_address': 'Adresa preduzeća', - 'invoice_details': 'Detalji računa', - 'quote_details': 'Detalji ponude', - 'credit_details': 'Detalji kredita', - 'product_columns': 'Kolone proizvoda', - 'task_columns': 'Kolone zadataka', - 'add_field': 'Dodaj polje', - 'all_events': 'Svi događaji', - 'permissions': 'Dozvole', - 'none': 'Nijedan', - 'owned': 'Vlasništvo', - 'payment_success': 'Uspešno plaćanje', - 'payment_failure': 'Neuspešno plaćanje', - 'invoice_sent': ':count račun poslat', - 'quote_sent': 'Ponuda poslata', - 'credit_sent': 'Kredit poslat', - 'invoice_viewed': 'Pregledan račun', - 'quote_viewed': 'Pregledana ponuda', - 'credit_viewed': 'Pregledan kredit', - 'quote_approved': 'Ponuda odobrena', - 'receive_all_notifications': 'Primi sva obaveštenja', - 'purchase_license': 'Kupi licencu', - 'apply_license': 'Primeni licencu', - 'cancel_account': 'Obriši nalog', + 'Warning: This will permanently erase your data, there is no undo.', + 'invoice_balance': 'Invoice Balance', + 'age_group_0': '0 - 30 Days', + 'age_group_30': '30 - 60 Days', + 'age_group_60': '60 - 90 Days', + 'age_group_90': '90 - 120 Days', + 'age_group_120': '120+ Days', + 'refresh': 'Refresh', + 'saved_design': 'Successfully saved design', + 'client_details': 'Client Details', + 'company_address': 'Company Address', + 'invoice_details': 'Invoice Details', + 'quote_details': 'Quote Details', + 'credit_details': 'Credit Details', + 'product_columns': 'Product Columns', + 'task_columns': 'Task Columns', + 'add_field': 'Add Field', + 'all_events': 'All Events', + 'permissions': 'Permissions', + 'none': 'None', + 'owned': 'Owned', + 'payment_success': 'Payment Success', + 'payment_failure': 'Payment Failure', + 'invoice_sent': ':count factură trimisă', + 'quote_sent': 'Quote Sent', + 'credit_sent': 'Credit Sent', + 'invoice_viewed': 'Invoice Viewed', + 'quote_viewed': 'Quote Viewed', + 'credit_viewed': 'Credit Viewed', + 'quote_approved': 'Quote Approved', + 'receive_all_notifications': 'Receive All Notifications', + 'purchase_license': 'Purchase License', + 'apply_license': 'Aplică Licență', + 'cancel_account': 'Șterge cont', 'cancel_account_message': - 'Upozorenje: Ovo će trajno obrisati vaš nalog, bez opcije povraćaja podataka.', - 'delete_company': 'Izbriši kompaniju', + 'ATENȚIE: Toate datele vor fi șterse definitiv, nu se pot recupera.', + 'delete_company': 'Delete Company', 'delete_company_message': - 'Upozorenje: Ovo će potpuno obrisati podatke o Vašoj kompaniji, nema mogućnosti povratka podataka.', - 'enabled_modules': 'Dozvoljeni moduli', - 'converted_quote': 'Uspešno konvertovana ponuda', - 'credit_design': 'Dizajn kredita', - 'includes': 'Uključuje', - 'header': 'Zaglavlje', - 'load_design': 'Učitaj Dizajn', - 'css_framework': 'CSS Okvir', - 'custom_designs': 'Prilagođeni Dizajni', - 'designs': 'Dizajni', - 'new_design': 'Novi dizajn', - 'edit_design': 'Izmeni dizajn', - 'created_design': 'Uspešno kreiran dizajn', - 'updated_design': 'Uspešno izmenjen dizajn', - 'archived_design': 'Uspešno arhiviran dizajn', - 'deleted_design': 'Uspešno obrisan dizajn', - 'removed_design': 'Uspešno uklonjen dizajn', - 'restored_design': 'Uspešno vraćen dizajn', - 'archived_designs': 'Uspešno arhivirane :value dizajna', - 'deleted_designs': 'Uspešno obrisane :value dizajna', - 'restored_designs': 'Uspešno vraćene :value dizajna', - 'proposals': 'Ponude', - 'tickets': 'Tiketi', - 'recurring_quotes': 'Ponavljajuća ponuda', - 'recurring_tasks': 'Ponavljajući zadaci', - 'account_management': 'Upravljanje računom', - 'credit_date': 'Datum kredita', - 'credit': 'Kredit', - 'credits': 'Krediti', - 'new_credit': 'Unesi kredit', - 'edit_credit': 'Uredi kredit', - 'created_credit': 'Uspešno kreiran kredit', - 'updated_credit': 'Kredit uspešno izmenjen', - 'archived_credit': 'Uspešno arhiviran kredit', - 'deleted_credit': 'Uspešno obrisan kredit', - 'removed_credit': 'Uspešno uklonjen kredit', - 'restored_credit': 'Uspešno vraćen kredit', - 'archived_credits': 'Uspešno arhivirano :count kredita', - 'deleted_credits': 'Uspešno obrisano :count kredita', - 'restored_credits': 'Uspešno vraćene :value kredita', - 'current_version': 'Trenutna verzija', - 'latest_version': 'Poslednja verzija', - 'update_now': 'Ažuriraj odmah', - 'a_new_version_is_available': 'Dostupna je nova verzija veb aplikacije', - 'update_available': 'Ažuriranje dostupno', - 'app_updated': 'Ažuriranje je uspešno završeno', - 'learn_more': 'Više informacija', - 'integrations': 'Integracije', - 'tracking_id': 'ID praćenja', + 'Warning: This will permanently delete your company, there is no undo.', + 'enabled_modules': 'Enabled Modules', + 'converted_quote': 'Successfully converted quote', + 'credit_design': 'Credit Design', + 'includes': 'Includes', + 'header': 'Antet', + 'load_design': 'Load Design', + 'css_framework': 'CSS Framework', + 'custom_designs': 'Custom Designs', + 'designs': 'Designs', + 'new_design': 'New Design', + 'edit_design': 'Edit Design', + 'created_design': 'Successfully created design', + 'updated_design': 'Successfully updated design', + 'archived_design': 'Successfully archived design', + 'deleted_design': 'Successfully deleted design', + 'removed_design': 'Successfully removed design', + 'restored_design': 'Successfully restored design', + 'archived_designs': 'Successfully archived :value designs', + 'deleted_designs': 'Successfully deleted :value designs', + 'restored_designs': 'Successfully restored :value designs', + 'proposals': 'Proposals', + 'tickets': 'Tickets', + 'recurring_quotes': 'Proforme Recurente', + 'recurring_tasks': 'Recurring Tasks', + 'account_management': 'Administrare cont', + 'credit_date': 'Data Creditului', + 'credit': 'Credit', + 'credits': 'Credite', + 'new_credit': 'Adaugă Credit', + 'edit_credit': 'Edit Credit', + 'created_credit': 'Credit adăugat cu succes', + 'updated_credit': 'Successfully updated credit', + 'archived_credit': 'Credit arhivat cu succes', + 'deleted_credit': 'Credit șters', + 'removed_credit': 'Successfully removed credit', + 'restored_credit': 'Credit restaurat', + 'archived_credits': ':count credite au fost arhivate cu succes', + 'deleted_credits': ':count șters', + 'restored_credits': 'Successfully restored :value credits', + 'current_version': 'Versiunea Curentă', + 'latest_version': 'Latest Version', + 'update_now': 'Update Now', + 'a_new_version_is_available': 'A new version of the web app is available', + 'update_available': 'Update Available', + 'app_updated': 'Update successfully completed', + 'learn_more': 'Afla mai mult', + 'integrations': 'Integrations', + 'tracking_id': 'Tracking Id', 'slack_webhook_url': 'Slack Webhook URL', 'credit_footer': 'Credit Footer', - 'credit_terms': 'Uslovi za kredit', - 'new_company': 'Novo preduzeće', - 'added_company': 'Uspešno dodano preduzeće', - 'company1': 'Prilagođena kompanija 1', - 'company2': 'Prilagođena kompanija 2', - 'company3': 'Prilagođena kompanija 3', - 'company4': 'Prilagođena kompanija 4', - 'product1': 'Prilogođen proizvod 1', - 'product2': 'Prilogođen proizvod 2', - 'product3': 'Prilogođen proizvod 3', - 'product4': 'Prilogođen proizvod 4', - 'client1': 'Prilagođen klijent 1', - 'client2': 'Prilagođen klijent 2', - 'client3': 'Prilagođen klijent 3', - 'client4': 'Prilagođen klijent 4', - 'contact1': 'Prilagođen kontakt 1', - 'contact2': 'Prilagođen kontakt 2', - 'contact3': 'Prilagođen kontakt 3', - 'contact4': 'Prilagođen kontakt 4', - 'task1': 'Prilagođen zadatak 1', - 'task2': 'Prilagođen zadatak 2', - 'task3': 'Prilagođen zadatak 3', - 'task4': 'Prilagođen zadatak 4', - 'project1': 'Prilagođen projekat 1', - 'project2': 'Prilagođen projekat 2', - 'project3': 'Prilagođen projekat 3', - 'project4': 'Prilagođen projekat 4', - 'expense1': 'Prilagođen trošak 1', - 'expense2': 'Prilagođen trošak 2', - 'expense3': 'Prilagođen trošak 3', - 'expense4': 'Prilagođen trošak 4', - 'vendor1': 'Prilagođen dobavljač 1', - 'vendor2': 'Prilagođen dobavljač 2', - 'vendor3': 'Prilagođen dobavljač 3', - 'vendor4': 'Prilagođen dobavljač 4', - 'invoice1': 'Prilagođen račun 1', - 'invoice2': 'Prilagođen račun 2', - 'invoice3': 'Prilagođen račun 3', - 'invoice4': 'Prilagođen račun 4', - 'payment1': 'Prilagođeno plaćanje 1', - 'payment2': 'Prilagođeno plaćanje 2', - 'payment3': 'Prilagođeno plaćanje 3', - 'payment4': 'Prilagođeno plaćanje 4', - 'surcharge1': 'Prilagođena doplata 1', - 'surcharge2': 'Prilagođena doplata 2', - 'surcharge3': 'Prilagođena doplata 3', - 'surcharge4': 'Prilagođena doplata 4', - 'group1': 'Prilagođena grupa 1', - 'group2': 'Prilagođena grupa 2', - 'group3': 'Prilagođena grupa 3', - 'group4': 'Prilagođena grupa 4', - 'reset': 'Resetuj', - 'number': 'Broj', - 'export': 'Izvoz', - 'chart': 'Grafikon', - 'count': 'Brojati', - 'totals': 'Totali', - 'blank': 'Prazno', - 'day': 'Dan', - 'month': 'Mesec', - 'year': 'Godina', - 'subgroup': 'Podgrupa', - 'is_active': 'je aktivno', - 'group_by': 'Grupiši po', - 'credit_balance': 'Stanje kredita', - 'contact_last_login': 'Poslednja prijava kontakta', - 'contact_full_name': 'Puno ime kontakta', - 'contact_phone': 'Kontakt telefon', - 'contact_custom_value1': 'Kontaktirajte prilagođenu vrednost 1', - 'contact_custom_value2': 'Kontaktirajte prilagođenu vrednost 2', - 'contact_custom_value3': 'Kontaktirajte prilagođenu vrednost 3', - 'contact_custom_value4': 'Kontaktirajte prilagođenu vrednost 4', - 'shipping_address1': 'Adresa za isporuku- ulica', - 'shipping_address2': 'Adresa za isporuku- stan/apartman', - 'shipping_city': 'Adresa za isporuku- grad', - 'shipping_state': 'Adresa za isporuku- Država/Pokrajina', - 'shipping_postal_code': 'Adresa za isporuku- poštanski broj', - 'shipping_country': 'Adresa za isporuku- država', - 'billing_address1': 'Adresa naplate - Ulica', - 'billing_address2': 'Adresa računa - Stan/Apartman', - 'billing_city': 'Adresa naplate - Grad', - 'billing_state': 'Adresa naplate - Država/Pokrajina', - 'billing_postal_code': 'Adresa naplate - Poštanski broj', - 'billing_country': 'Adresa naplate - Država', - 'client_id': 'ID klijenta', - 'assigned_to': 'Dodeljeno za', - 'created_by': 'Kreiran od :name', - 'assigned_to_id': 'Dodeljeno za Id', - 'created_by_id': 'Kreirano od Id', - 'add_column': 'Dodaj kolonu', - 'edit_columns': 'Izmeni kolone', - 'columns': 'Kolone', - 'aging': 'Zastarevanje', - 'profit_and_loss': 'Zarada i gubitak', - 'reports': 'Izveštaji', - 'report': 'Izveštaj', - 'add_company': 'Dodaj preduzeće', - 'unpaid_invoice': 'Neplaćeni račun', - 'paid_invoice': 'Plaćeni račun', - 'unapproved_quote': 'Neodobrena ponuda', - 'help': 'Pomoć', - 'refund': 'Povraćaj novca', - 'refund_date': 'Datum povraćaja novca', - 'filtered_by': 'Filtrirano po', - 'contact_email': 'Kontakt email', - 'multiselect': 'Više izbora', - 'entity_state': 'Država', - 'verify_password': 'Potvrdi lozinku', - 'applied': 'Primenjeno', - 'include_recent_errors': 'Uključite nedavne greške iz prijava', + 'credit_terms': 'Credit Terms', + 'new_company': 'Firmă nouă', + 'added_company': 'Successfully added company', + 'company1': 'Custom Company 1', + 'company2': 'Custom Company 2', + 'company3': 'Custom Company 3', + 'company4': 'Custom Company 4', + 'product1': 'Custom Product 1', + 'product2': 'Custom Product 2', + 'product3': 'Custom Product 3', + 'product4': 'Custom Product 4', + 'client1': 'Custom Client 1', + 'client2': 'Custom Client 2', + 'client3': 'Custom Client 3', + 'client4': 'Custom Client 4', + 'contact1': 'Custom Contact 1', + 'contact2': 'Custom Contact 2', + 'contact3': 'Custom Contact 3', + 'contact4': 'Custom Contact 4', + 'task1': 'Custom Task 1', + 'task2': 'Custom Task 2', + 'task3': 'Custom Task 3', + 'task4': 'Custom Task 4', + 'project1': 'Custom Project 1', + 'project2': 'Custom Project 2', + 'project3': 'Custom Project 3', + 'project4': 'Custom Project 4', + 'expense1': 'Custom Expense 1', + 'expense2': 'Custom Expense 2', + 'expense3': 'Custom Expense 3', + 'expense4': 'Custom Expense 4', + 'vendor1': 'Custom Vendor 1', + 'vendor2': 'Custom Vendor 2', + 'vendor3': 'Custom Vendor 3', + 'vendor4': 'Custom Vendor 4', + 'invoice1': 'Custom Invoice 1', + 'invoice2': 'Custom Invoice 2', + 'invoice3': 'Custom Invoice 3', + 'invoice4': 'Custom Invoice 4', + 'payment1': 'Custom Payment 1', + 'payment2': 'Custom Payment 2', + 'payment3': 'Custom Payment 3', + 'payment4': 'Custom Payment 4', + 'surcharge1': 'Custom Surcharge 1', + 'surcharge2': 'Custom Surcharge 2', + 'surcharge3': 'Custom Surcharge 3', + 'surcharge4': 'Custom Surcharge 4', + 'group1': 'Custom Group 1', + 'group2': 'Custom Group 2', + 'group3': 'Custom Group 3', + 'group4': 'Custom Group 4', + 'reset': 'Resetează', + 'number': 'Number', + 'export': 'Exportă', + 'chart': 'Grafic', + 'count': 'Count', + 'totals': 'Total', + 'blank': 'Blank', + 'day': 'Zi', + 'month': 'Lună', + 'year': 'An', + 'subgroup': 'Subgroup', + 'is_active': 'Is Active', + 'group_by': 'Grupează după', + 'credit_balance': 'Soldul Creditului', + 'contact_last_login': 'Contact Last Login', + 'contact_full_name': 'Contact Full Name', + 'contact_phone': 'Contact Phone', + 'contact_custom_value1': 'Contact Custom Value 1', + 'contact_custom_value2': 'Contact Custom Value 2', + 'contact_custom_value3': 'Contact Custom Value 3', + 'contact_custom_value4': 'Contact Custom Value 4', + 'shipping_address1': 'Shipping Street', + 'shipping_address2': 'Shipping Apt/Suite', + 'shipping_city': 'Shipping City', + 'shipping_state': 'Shipping State/Province', + 'shipping_postal_code': 'Shipping Postal Code', + 'shipping_country': 'Shipping Country', + 'billing_address1': 'Billing Street', + 'billing_address2': 'Billing Apt/Suite', + 'billing_city': 'Billing City', + 'billing_state': 'Billing State/Province', + 'billing_postal_code': 'Billing Postal Code', + 'billing_country': 'Billing Country', + 'client_id': 'Client Id', + 'assigned_to': 'Asignare lui', + 'created_by': 'Created by :name', + 'assigned_to_id': 'Assigned To Id', + 'created_by_id': 'Created By Id', + 'add_column': 'Add Column', + 'edit_columns': 'Edit Columns', + 'columns': 'Columns', + 'aging': 'Aging', + 'profit_and_loss': 'Profit și Pierdere', + 'reports': 'Reports', + 'report': 'Raport', + 'add_company': 'Adaugă Firmă', + 'unpaid_invoice': 'Unpaid Invoice', + 'paid_invoice': 'Paid Invoice', + 'unapproved_quote': 'Unapproved Quote', + 'help': 'Ajutor', + 'refund': 'Refund', + 'refund_date': 'Refund Date', + 'filtered_by': 'Filtered by', + 'contact_email': 'Contact Email', + 'multiselect': 'Multiselect', + 'entity_state': 'State', + 'verify_password': 'Verify Password', + 'applied': 'Applied', + 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'Primili smo vašu poruku i pokušaćemo da odgovorimo što pre.', - 'message': 'Poruka', - 'from': 'Šalje', - 'show_product_details': 'Prikaži detalje proizvoda', + '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': - 'Prikaži opis i cenu u padajućoj listi proizvoda', - 'pdf_min_requirements': 'PDF renderer zahteva :version', - 'adjust_fee_percent': 'Podesite procenat naknade', - 'adjust_fee_percent_help': - 'Podesite procenat da biste uzeli u obzir naknadu', - 'configure_settings': 'Konfigurišite podešavanja ', - 'support_forum': 'forum podrške', - 'about': 'O', - 'documentation': 'Dokumentacija', - 'contact_us': 'Kontaktirajte nas', - 'subtotal': 'Sveukupno', - 'line_total': 'Ukupno', - 'item': 'Stavka', - 'credit_email': 'E-pošta za kreditiranje', - 'iframe_url': 'Sajt', - 'domain_url': 'Domen URL', - 'password_is_too_short': 'Lozinka je prekratka', - 'password_is_too_easy': 'Lozinka mora da sadrži veliko slovo i broj', - 'client_portal_tasks': 'Zadaci klijentskog portala', - 'client_portal_dashboard': 'Kontrolna tabla portala za klijente', - 'please_enter_a_value': 'Molimo unesite vrednost', - 'deleted_logo': 'Logo je uspešno obrisan', + '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', + 'configure_settings': 'Configure Settings', + 'support_forum': 'forum suport', + 'about': 'About', + 'documentation': 'Documentație', + 'contact_us': 'Contact Us', + 'subtotal': 'Subtotal', + 'line_total': 'Total linie', + 'item': 'Element', + 'credit_email': 'Credit Email', + 'iframe_url': 'Website', + 'domain_url': 'Domain URL', + 'password_is_too_short': 'Password is too short', + 'password_is_too_easy': + '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', + 'deleted_logo': 'Successfully deleted logo', 'yes': 'Da', - 'no': 'Ne', - 'generate_number': 'Generišite broj', - 'when_saved': 'kada je sačuvan', - 'when_sent': 'kada je poslat', - 'select_company': 'Izaberi kompaniju', - 'float': 'Plutajući', - 'collapse': 'Padajući', - 'show_or_hide': 'Prikaži/sakrij', - 'menu_sidebar': 'Bočna traka menija', - 'history_sidebar': 'Bočna traka istorije', + 'no': 'Nu', + 'generate_number': 'Generate Number', + 'when_saved': 'When Saved', + 'when_sent': 'When Sent', + 'select_company': 'Select Company', + 'float': 'Float', + 'collapse': 'Collapse', + 'show_or_hide': 'Show/hide', + 'menu_sidebar': 'Menu Sidebar', + 'history_sidebar': 'History Sidebar', 'tablet': 'Tablet', - 'mobile': 'Mobilni', + 'mobile': 'Mobile', 'desktop': 'Desktop', - 'layout': 'Raspored', - 'view': 'Pregled', - 'module': 'Modul', - 'first_custom': 'Prvo prilagođeno', - 'second_custom': 'Drugo prilagođeno', - 'third_custom': 'Treće prilagođeno', - 'show_cost': 'Prikaži cenu', - 'show_product_cost': 'Prikaži cenu proizvoda', + 'layout': 'Layout', + 'view': 'Vezi', + 'module': 'Module', + 'first_custom': 'First Custom', + 'second_custom': 'Second Custom', + 'third_custom': 'Third Custom', + 'show_cost': 'Show Cost', + 'show_product_cost': 'Show Product Cost', 'show_cost_help': - 'Prikažite polje cene proizvoda da biste pratili maržu/profit', - 'show_product_quantity': 'Prikaži količinu proizvoda', + 'Display a product cost field to track the markup/profit', + 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Prikažite polje za količinu proizvoda, inače podrazumevan je jedan', - 'show_invoice_quantity': 'Prikaži količinu računa', + 'Display a product quantity field, otherwise default to one', + 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Prikažite polje za količinu stavke, inače podrazumevana je jedna', - 'show_product_discount': 'Prikaži popust na proizvod', - 'show_product_discount_help': 'Prikažite polje za popust na stavku', - 'default_quantity': 'Podrazumevana količina', - 'default_quantity_help': 'Automatski podesite količinu stavke na jednu', - 'one_tax_rate': 'Jedna poreska stopa', - 'two_tax_rates': 'Dve poreske stope', - 'three_tax_rates': 'Tri poreske stope', - 'default_tax_rate': 'Zadata poreska stopa', - 'user': 'Korisnik', - 'invoice_tax': 'Porez na račun', - 'line_item_tax': 'Porez na stavku', - 'inclusive_taxes': 'Sa uračunatim porezima', - 'invoice_tax_rates': 'Stope poreza na račun', - 'item_tax_rates': 'Poreske stope stavke', - 'no_client_selected': 'Molimo izaberite klijenta', - 'configure_rates': 'Konfigurišite stope', - 'configure_gateways': 'Konfigurišite platne kanale', - 'tax_settings': 'Podešavanja poreza', - 'tax_settings_rates': 'Poreske stope', - 'accent_color': 'Naglasiti boju', - 'switch': 'Prebaci', - 'comma_sparated_list': 'Lista odvojena zarezima', - 'options': 'Opcije', - 'single_line_text': 'Tekst u jednom redu', - 'multi_line_text': 'Tekst u više redova', - 'dropdown': 'Padajući meni', - 'field_type': 'Tip polja', - 'recover_password_email_sent': 'Poruka za povraćaj lozinke je poslata', - 'submit': 'Podneti', - 'recover_password': 'Povratite vašu lozinku', - 'late_fees': 'Zakasnele takse', - 'credit_number': 'Broj kredita', - 'payment_number': 'Broj plaćanja', - 'late_fee_amount': 'Vrednost troška kašnjenja', - 'late_fee_percent': 'Procenat troška kašnjenja', - 'schedule': 'Raspored', - 'before_due_date': 'Pre roka', - 'after_due_date': 'Posle roka', - 'after_invoice_date': 'Posle datuma računa', - 'days': 'Dani', - 'invoice_email': 'E-pošta računa', - 'payment_email': 'E-pošta uplate', - 'partial_payment': 'Delimično plaćanje', - 'payment_partial': 'Delimično plaćanje', - 'partial_payment_email': 'Delimično plaćanje putem e-pošte', - 'quote_email': 'E-pošta ponuda', - 'endless_reminder': 'Beskrajni podsetnik', - 'filtered_by_user': 'Filtrirano po korisniku', + 'Display a line item quantity field, otherwise default to one', + 'show_product_discount': 'Show Product Discount', + 'show_product_discount_help': 'Display a line item discount field', + 'default_quantity': 'Default Quantity', + 'default_quantity_help': + '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', + 'default_tax_rate': 'Default Tax Rate', + 'user': 'Utilizator', + 'invoice_tax': 'Invoice Tax', + 'line_item_tax': 'Line Item Tax', + 'inclusive_taxes': 'Inclusive Taxes', + 'invoice_tax_rates': 'Invoice Tax Rates', + 'item_tax_rates': 'Item Tax Rates', + 'no_client_selected': 'Alege un client', + 'configure_rates': 'Configure rates', + 'configure_gateways': 'Configure Gateways', + 'tax_settings': 'Setari Taxe', + 'tax_settings_rates': 'Tax Rates', + 'accent_color': 'Accent Color', + 'switch': 'Switch', + 'comma_sparated_list': 'Comma separated list', + 'options': 'Options', + 'single_line_text': 'Single-line text', + 'multi_line_text': 'Multi-line text', + 'dropdown': 'Dropdown', + 'field_type': 'Field Type', + 'recover_password_email_sent': 'A password recovery email has been sent', + 'submit': 'Submit', + 'recover_password': 'Recuperează parola', + 'late_fees': 'Late Fees', + 'credit_number': 'Credit Number', + 'payment_number': 'Payment Number', + 'late_fee_amount': 'Late Fee Amount', + 'late_fee_percent': 'Late Fee Percent', + 'schedule': 'Schedule', + 'before_due_date': 'Before the due date', + 'after_due_date': 'After the due date', + 'after_invoice_date': 'After the invoice date', + 'days': 'Days', + 'invoice_email': 'Email Factură', + 'payment_email': 'Email Plată', + 'partial_payment': 'Partial Payment', + 'payment_partial': 'Partial Payment', + 'partial_payment_email': 'Partial Payment Email', + 'quote_email': 'Email Ofertă', + 'endless_reminder': 'Endless Reminder', + 'filtered_by_user': 'Filtered by User', 'administrator': 'Administrator', 'administrator_help': - 'Dozvolite korisniku da upravlja korisnicima, menja postavke i menja sve zapise', - 'user_management': 'Upravljanje korisnicima', - 'users': 'Korisnici', - 'new_user': 'Novi korisnik', - 'edit_user': 'Uredi korisnika', - 'created_user': 'Uspešno kreiran korisnik', - 'updated_user': 'Korisnik je uspešno ažuriran', - 'archived_user': 'Uspešno arhiviran korisnik', - 'deleted_user': 'Korisnik je uspešno obrisan', - 'removed_user': 'Uspešno uklonjen korisnik', - 'restored_user': 'Uspešno obnovljen korisnik', - 'archived_users': 'Uspešno arhivirane :value korisnika', - 'deleted_users': 'Uspešno obrisane :value korisnika', - 'removed_users': 'Uspešno uklonjene :value korisnika', - 'restored_users': 'Uspešno vraćene :value korisnika', - 'general_settings': 'Opšte postavke', - 'invoice_options': 'Opcije računa', - 'hide_paid_to_date': 'Sakrij datum plaćanja', + 'Allow user to manage users, change settings and modify all records', + 'user_management': 'Utilizatori', + 'users': 'Utilizatori', + 'new_user': 'New User', + 'edit_user': 'Modifică Utilizator', + 'created_user': 'Successfully created user', + 'updated_user': 'Utilizator actualizat', + 'archived_user': 'Arhivare utilizator cu succes', + 'deleted_user': 'Utilizator șters', + 'removed_user': 'Successfully removed user', + 'restored_user': 'Utilizator restaurat', + 'archived_users': 'Successfully archived :value users', + 'deleted_users': 'Successfully deleted :value users', + 'removed_users': 'Successfully removed :value users', + 'restored_users': 'Successfully restored :value users', + 'general_settings': 'Optiuni Generale', + 'invoice_options': 'Opțiuni Factură', + 'hide_paid_to_date': 'Ascunde câmpul \"Plătit până la\"', 'hide_paid_to_date_help': - 'Prikažite \"Datum plaćanja\" na računima, onda kada je uplata primljena.', - 'invoice_embed_documents': 'Priložite dokumente', - 'invoice_embed_documents_help': 'Uključite priložene slike u fakturu.', - 'all_pages_header': 'Prikaži zaglavlje na', - 'all_pages_footer': 'Prikaži podnožje na', - 'first_page': 'Prva stranica', - 'all_pages': 'Sve stranice', - 'last_page': 'Poslednja stranica', - 'primary_font': 'Primarni font', - 'secondary_font': 'Sekundarni font', - 'primary_color': 'Primarna boja', - 'secondary_color': 'Sekundarna boja', - 'page_size': 'Veličina stranice', - 'font_size': 'Veličina fonta', - 'quote_design': 'Dizajn ponude', - 'invoice_fields': 'Polja računa', - 'product_fields': 'Polja proizvoda', - 'invoice_terms': 'Uslovi računa', - 'invoice_footer': 'Podnožje računa', - 'quote_terms': 'Uslovi predračuna', - 'quote_footer': 'Podnožje ponude', - 'auto_email_invoice': 'Automatsko slanje ePošte', + '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', + 'all_pages_footer': 'Show Footer on', + 'first_page': 'Prima pagină', + 'all_pages': 'Toate paginile', + 'last_page': 'Ultima pagină', + 'primary_font': 'Primary Font', + 'secondary_font': 'Secondary Font', + 'primary_color': 'Culoare Principală', + 'secondary_color': 'Culoare Secundară', + 'page_size': 'Dimensiune Pagină', + 'font_size': 'Dimensiune Font', + 'quote_design': 'Quote Design', + 'invoice_fields': 'Câmpuri Factură', + 'product_fields': 'Product Fields', + 'invoice_terms': 'Termeni facturare', + 'invoice_footer': 'Subsol Factură', + 'quote_terms': 'Termeni Proformă', + 'quote_footer': 'Subsol Proformă', + 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automatski pošalji e-poštom ponavljajuće račune u momentu kreiranja.', - 'auto_archive_invoice': 'Automatsko Arhiviranje', + 'Automatically email recurring invoices when they are created.', + 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automatski arhiviraj račune kada su plaćeni.', - 'auto_archive_quote': 'Automatsko Arhiviranje', + 'Automatically archive invoices when they are paid.', + 'auto_archive_quote': 'Auto Archive', 'auto_archive_quote_help': - 'Automatski arhiviraj ponude kada su konvertovane.', - 'auto_convert_quote': 'Auto konverzija', + 'Automatically archive quotes when they are converted.', + 'auto_convert_quote': 'Auto Convert', 'auto_convert_quote_help': - 'Automatski konvertujte predračun u račun nakon što je odobren od strane klijenta.', - 'workflow_settings': 'Podešavanje toka rada', - 'freq_daily': 'Dnevni', - 'freq_weekly': 'Nedeljni', - 'freq_two_weeks': 'Dve nedelje', - 'freq_four_weeks': 'Četiri nedelje', - 'freq_monthly': 'Mesečno', - 'freq_two_months': 'Dva meseca', - 'freq_three_months': 'Tri meseca', - 'freq_four_months': 'Četiri meseca', - 'freq_six_months': 'Šest meseci', - 'freq_annually': 'Godišnje', - 'freq_two_years': 'Dve godine', - 'freq_three_years': 'Tri godine', - 'never': 'Nikada', - 'company': 'Kompanija', - 'generated_numbers': 'Generisani brojevi', - 'charge_taxes': 'Naplati poreze', - 'next_reset': 'Sledeće ponovno podešavanje', - 'reset_counter': 'Ponovo podesite brojač', - 'recurring_prefix': 'Prefiks koji se ponavlja', - 'number_padding': 'Pading broja', - 'general': 'Opšti', - 'surcharge_field': 'Polje doplate', - 'company_field': 'Polje kompanije', - 'company_value': 'Vrednost kompanije', - 'credit_field': 'Polje kredita', - 'invoice_field': 'Polje računa', - 'invoice_surcharge': 'Doplata za račun', - 'client_field': 'Polje klijenta', - 'product_field': 'Polje proizvoda', - 'payment_field': 'Polje plaćanja', - 'contact_field': 'Kontakt polje', - 'vendor_field': 'Polje dobavljača', - 'expense_field': 'Polje troškova', - 'project_field': 'Polje Projekta', - 'task_field': 'Polje zadatka', - 'group_field': 'Grupno polje', - 'number_counter': 'Brojač brojeva', - 'prefix': 'Prefiks', - 'number_pattern': 'Šablon broja', - 'messages': 'Poruke', - 'custom_css': 'Prilagođeni CSS', - 'custom_javascript': 'Prilagođeni JavaScript', - 'signature_on_pdf': 'Prikaži na PDF-u', + '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', + 'freq_two_weeks': 'Două Săptămâni', + 'freq_four_weeks': 'Patru Săptămâni', + 'freq_monthly': 'Lunar', + 'freq_two_months': 'Două Luni', + 'freq_three_months': 'Trei Luni', + 'freq_four_months': 'Patru Luni', + 'freq_six_months': 'Șase Luni', + 'freq_annually': 'Anual', + 'freq_two_years': 'Doi Ani', + 'freq_three_years': 'Three Years', + 'never': 'Niciodată', + 'company': 'Company', + 'generated_numbers': 'Generated Numbers', + 'charge_taxes': 'Taxe', + 'next_reset': 'Next Reset', + 'reset_counter': 'Reset Counter', + 'recurring_prefix': 'Recurring Prefix', + 'number_padding': 'Number Padding', + 'general': 'General', + 'surcharge_field': 'Surcharge Field', + 'company_field': 'Company Field', + 'company_value': 'Company Value', + 'credit_field': 'Credit Field', + 'invoice_field': 'Invoice Field', + 'invoice_surcharge': 'Invoice Surcharge', + 'client_field': 'Client Field', + 'product_field': 'Product Field', + 'payment_field': 'Payment Field', + 'contact_field': 'Contact Field', + 'vendor_field': 'Vendor Field', + 'expense_field': 'Expense Field', + 'project_field': 'Project Field', + 'task_field': 'Task Field', + 'group_field': 'Group Field', + 'number_counter': 'Number Counter', + 'prefix': 'Prefix', + 'number_pattern': 'Number Pattern', + 'messages': 'Messages', + 'custom_css': 'Editeaza CSS', + 'custom_javascript': 'Custom JavaScript', + 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Prikazite potpis klijenta na PDF-u računa/ponude.', - 'show_accept_invoice_terms': 'Polje za potvrdu uslova računa', + 'Show the client signature on the invoice/quote PDF.', + 'show_accept_invoice_terms': 'Invoice Terms Checkbox', 'show_accept_invoice_terms_help': - 'Zahtevajte od klijenata da potvrde da prihvataju uslove računa.', - 'show_accept_quote_terms': 'Polje za potvrdu uslova predračuna', + 'Require client to confirm that they accept the invoice terms.', + 'show_accept_quote_terms': 'Quote Terms Checkbox', 'show_accept_quote_terms_help': - 'Zahtevajte od klijenata da potvrde da prihvataju uslove predračuna.', - 'require_invoice_signature': 'Potpis računa', + 'Require client to confirm that they accept the quote terms.', + 'require_invoice_signature': 'Invoice Signature', 'require_invoice_signature_help': - 'Zahtevajte od klijenata da dostave potpis.', - 'require_quote_signature': 'Potpis predračuna', - 'enable_portal_password': 'Računi zaštićeni lozinkom', + 'Require client to provide their signature.', + 'require_quote_signature': 'Quote Signature', + 'enable_portal_password': 'Password Protect Invoices', 'enable_portal_password_help': - 'Omogućava vam da postavite lozinku za svaki kontakt. Ako je lozinka postavljena, kontakt će morati da unese lozinku pre nego što pregleda račune.', - 'authorization': 'Ovlašćenje', - 'subdomain': 'Poddomen', - 'domain': 'Domen', - 'portal_mode': 'Režim portala', - 'email_signature': 'Sa poštovanjem,', + '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.', + 'authorization': 'Authorization', + 'subdomain': 'Subdomeniu', + 'domain': 'Domain', + 'portal_mode': 'Portal Mode', + 'email_signature': 'În legătură cu,', 'enable_email_markup_help': - 'Olakšajte svojim klijentima plaćanje dodavanjem schema.org markapa vašoj e-pošti.', - 'plain': 'Obično', - 'light': 'Svetlo', - 'dark': 'Tamno', - 'email_design': 'Dizajn e-pošte', - 'attach_pdf': 'Zakači PDF', - 'attach_documents': 'Zakači dokumenta', - 'attach_ubl': 'Zakači UBL', - 'email_style': 'Stil e-pošte', - 'enable_email_markup': 'Omogući markap', - 'reply_to_email': 'Odgovori na email', - 'reply_to_name': 'Odgovori na ime', + 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', + 'plain': 'Plain', + 'light': 'Deschisa', + 'dark': 'Intunecata', + 'email_design': 'Design Email', + 'attach_pdf': 'Attach PDF', + 'attach_documents': 'Attach Documents', + 'attach_ubl': 'Attach UBL', + 'email_style': 'Email Style', + 'enable_email_markup': 'Enable Markup', + 'reply_to_email': 'Reply-To Email', + 'reply_to_name': 'Reply-To Name', 'bcc_email': 'BCC Email', - 'processed': 'Obrađeno', - 'credit_card': 'Kreditna Kartica', - 'bank_transfer': 'Bankovni prenos', - 'priority': 'Prioritet', - 'fee_amount': 'Iznos takse', - 'fee_percent': 'Procenat takse', - 'fee_cap': 'Granica takse', - 'limits_and_fees': 'Ograničenja/takse', - 'enable_min': 'Omogući minimum', - 'enable_max': 'Omogući maksimum', + 'processed': 'Processed', + 'credit_card': 'Card de Credit', + 'bank_transfer': 'Transfer Bancar', + 'priority': 'Prioritate', + 'fee_amount': 'Fee Amount', + 'fee_percent': 'Fee Percent', + 'fee_cap': 'Fee Cap', + 'limits_and_fees': 'Limits/Fees', + 'enable_min': 'Enable min', + 'enable_max': 'Enable max', 'min_limit': 'Min: :min', - 'max_limit': 'Maks: :max', + 'max_limit': 'Max: :max', 'min': 'Min', - 'max': 'Maks', - 'accepted_card_logos': 'Logoi prihvaćenih kartica', - 'credentials': 'Podaci', - 'update_address': 'Ažuriraj adresu', + 'max': 'Max', + 'accepted_card_logos': 'Accepted Card Logos', + 'credentials': 'Credentials', + 'update_address': 'Actualizează Adresa', 'update_address_help': - 'Ažuriraj adresu klijenta sa dostavljenim detaljima', - 'rate': 'Stopa', - 'tax_rate': 'Poreska stopa', - 'new_tax_rate': 'Nova poreska stopa', - 'edit_tax_rate': 'Uredi poresku stopu', - 'created_tax_rate': 'Uspešno kreirana poreska stopa', - 'updated_tax_rate': 'Uspešno ažurirana poreska stopa', - 'archived_tax_rate': 'Uspešno arhivirana poreska stopa', - 'deleted_tax_rate': 'Poreska stopa uspešno obrisana', - 'restored_tax_rate': 'Poreska stopa uspešno povraćena', - 'archived_tax_rates': 'Uspešno arhivirane :value poreskih stopa', - 'deleted_tax_rates': 'Uspešno obrisane :value poreskih stopa', - 'restored_tax_rates': 'Uspešno vraćene :value poreskih stopa', - 'fill_products': 'Automatski popuni proizvode', + 'Actualizează adresa clientului cu detaliile trimise', + 'rate': 'Valoare', + 'tax_rate': 'Valoare Taxă', + 'new_tax_rate': 'New Tax Rate', + 'edit_tax_rate': 'Editează valoare taxă', + 'created_tax_rate': 'Valoare taxă creată cu succes', + 'updated_tax_rate': 'Valoare taxă actualizată cu succes', + 'archived_tax_rate': 'Valoare taxă arhivată cu succes', + 'deleted_tax_rate': 'Successfully deleted tax rate', + 'restored_tax_rate': 'Successfully restored tax rate', + 'archived_tax_rates': 'Successfully archived :value tax rates', + 'deleted_tax_rates': 'Successfully deleted :value tax rates', + 'restored_tax_rates': 'Successfully restored :value tax rates', + 'fill_products': 'Completează automat produsele', 'fill_products_help': - 'Odabir proizvoda će automatski ispuniti opis i cijenu', - 'update_products': 'Automatski ažuriraj proizvode', + 'Alegând un produs descrierea și prețul vor fi completate automat', + 'update_products': 'Actualizare automată a produselor', 'update_products_help': - 'Ažuriranje računa automatski će ažurirati registar proizvoda', - 'convert_products': 'Konvertuj proizvode', + 'Actualizând o factură se va actualiza si librăria de produse', + 'convert_products': 'Convert Products', 'convert_products_help': - 'Automatski konvertuj cene proizvoda u valutu klijenta', - 'fees': 'Naknade', - 'limits': 'Ograničenja', - 'provider': 'Snadbevač', - 'company_gateway': 'Platni kanal', - 'company_gateways': 'Platni kanali', - 'new_company_gateway': 'Novi platni kanal', - 'edit_company_gateway': 'Uredi platni kanal', - 'created_company_gateway': 'Platni kanal uspešno kreiran', - 'updated_company_gateway': 'Platni kanal uspešno ažuriran', - 'archived_company_gateway': 'Platni kanal uspešno arhiviran', - 'deleted_company_gateway': 'Platni kanal uspešno obrisan', - 'restored_company_gateway': 'Platni kanal uspešno povraćen', - 'archived_company_gateways': 'Uspešno arhivirana :value platnih kanala', - 'deleted_company_gateways': 'Uspešno obrisana :value platnih kanala', - 'restored_company_gateways': 'Uspešno vraćena :value platnih kanala', - 'continue_editing': 'Nastavi izmene', - 'discard_changes': 'Otkaži izmene', - 'default_value': 'Podrazumevana vrednost', - 'disabled': 'Onemogućeno', - 'currency_format': 'Format valute', - 'first_day_of_the_week': 'Prvi dan u nedelji', - 'first_month_of_the_year': 'Prvi mesec u godini', - 'sunday': 'Nedelja', - 'monday': 'Ponedeljak', - 'tuesday': 'Utorak', - 'wednesday': 'Sreda', - 'thursday': 'Četvrtak', - 'friday': 'Petak', - 'saturday': 'Subota', - 'january': 'Januar', - 'february': 'Februar', - 'march': 'Mart', - 'april': 'April', - 'may': 'Maj', - 'june': 'Jun', - 'july': 'Jul', - 'august': 'Avgust', - 'september': 'Septembar', - 'october': 'Oktobar', - 'november': 'Novembar', - 'december': 'Decembar', - 'symbol': 'Simbol', - 'ocde': 'Kod', - 'date_format': 'Format datuma', - 'datetime_format': 'Format datuma i vremena', - 'military_time': '24 satno vreme', - 'military_time_help': '24-časovni prikaz', - 'send_reminders': 'Pošalji podsetnike', - 'timezone': 'Vremenska zona', - 'filtered_by_project': 'Filtrirano po projektu', - 'filtered_by_group': 'Filtrirano po grupi', - 'filtered_by_invoice': 'Filtrirano po računu', - 'filtered_by_client': 'Filtrirano po klijentu', - 'filtered_by_vendor': 'Filtrirano po dobavljaču', - 'group_settings': 'Podešavanja grupe', - 'group': 'Grupa', - 'groups': 'Grupe', - 'new_group': 'Nova grupa', - 'edit_group': 'Uredi grupu', - 'created_group': 'Grupa je uspešno kreirana', - 'updated_group': 'Grupa je uspešno ažurirana', - 'archived_groups': 'Uspešno arhivirane :value grupa', - 'deleted_groups': 'Uspešno obrisane :value grupa', - 'restored_groups': 'Uspešno vraćene :value grupa', - 'archived_group': 'Grupa je uspešno arhivirana', - 'deleted_group': 'Grupa je uspešno obrisana', - 'restored_group': 'Grupa je uspešno vraćena', - 'upload_logo': 'Otpremi logo', - 'uploaded_logo': 'Logo je uspešno otpremljen', + 'Automatically convert product prices to the client\'s currency', + 'fees': 'Fees', + 'limits': 'Limits', + 'provider': 'Provider', + 'company_gateway': 'Payment Gateway', + 'company_gateways': 'Payment Gateways', + 'new_company_gateway': 'New Gateway', + 'edit_company_gateway': 'Edit Gateway', + 'created_company_gateway': 'Successfully created gateway', + 'updated_company_gateway': 'Successfully updated gateway', + 'archived_company_gateway': 'Successfully archived gateway', + 'deleted_company_gateway': 'Successfully deleted gateway', + 'restored_company_gateway': 'Successfully restored gateway', + 'archived_company_gateways': 'Successfully archived :value gateways', + 'deleted_company_gateways': 'Successfully deleted :value gateways', + 'restored_company_gateways': 'Successfully restored :value gateways', + 'continue_editing': 'Continue Editing', + 'discard_changes': 'Discard Changes', + 'default_value': 'Default value', + 'disabled': 'Dezactivat', + 'currency_format': 'Currency Format', + 'first_day_of_the_week': 'First Day of the Week', + 'first_month_of_the_year': 'First Month of the Year', + 'sunday': 'Duminică', + 'monday': 'Luni', + 'tuesday': 'Marți', + 'wednesday': 'Miercuri', + 'thursday': 'Joi', + 'friday': 'Vineri', + 'saturday': 'Sâmbătă', + 'january': 'Ianuarie', + 'february': 'Februarie', + 'march': 'Martie', + 'april': 'Aprilie', + 'may': 'Mai', + 'june': 'Iunie', + 'july': 'Iulie', + 'august': 'August', + 'september': 'Septembrie', + 'october': 'Octombrie', + 'november': 'Noiembrie', + 'december': 'Decembrie', + 'symbol': 'Symbol', + 'ocde': 'Code', + 'date_format': 'Date Format', + 'datetime_format': 'Datetime Format', + 'military_time': 'Format 24 Ore', + 'military_time_help': '24 Hour Display', + 'send_reminders': 'Send Reminders', + 'timezone': 'Timezone', + 'filtered_by_project': 'Filtered by Project', + 'filtered_by_group': 'Filtered by Group', + 'filtered_by_invoice': 'Filtered by Invoice', + 'filtered_by_client': 'Filtered by Client', + 'filtered_by_vendor': 'Filtered by Vendor', + 'group_settings': 'Group Settings', + 'group': 'Group', + 'groups': 'Groups', + 'new_group': 'New Group', + 'edit_group': 'Edit Group', + 'created_group': 'Successfully created group', + 'updated_group': 'Successfully updated group', + 'archived_groups': 'Successfully archived :value groups', + 'deleted_groups': 'Successfully deleted :value groups', + 'restored_groups': 'Successfully restored :value groups', + 'archived_group': 'Successfully archived group', + 'deleted_group': 'Successfully deleted group', + 'restored_group': 'Successfully restored group', + 'upload_logo': 'Upload Logo', + 'uploaded_logo': 'Successfully uploaded logo', 'logo': 'Logo', - 'saved_settings': 'Postavke su uspešno sačuvane', - 'product_settings': 'Postavke proizvoda', - 'device_settings': 'Postavke uređaja', - 'defaults': 'Podrazumevano', - 'basic_settings': 'Osnovna podešavanja', - 'advanced_settings': 'Napredne postavke', - 'company_details': 'Detalji preduzeća', - 'user_details': 'Detalji korisnika', - 'localization': 'Lokalizacija', - 'online_payments': 'Online uplate', - 'tax_rates': 'Porezne stope', - 'notifications': 'Obaveštenja', - 'import_export': 'Uvoz i Izvoz', - 'custom_fields': 'Prilagođena polja', - 'invoice_design': 'Dizajn računa', - 'buy_now_buttons': 'Dugmad za kupovinu odmah', - 'email_settings': 'Postavke e-pošte', - 'templates_and_reminders': 'Šabloni & podsetnici', - 'credit_cards_and_banks': 'Kreditne kartice & banke', - 'data_visualizations': 'Vizualizacije podataka', - 'price': 'Cena', - 'email_sign_up': 'Prijavita putem e-pošte', - 'google_sign_up': 'Prijava putem Google-a', - 'thank_you_for_your_purchase': 'Hvala Vam na kupovini!', - 'redeem': 'Iskoristi', - 'back': 'Nazad', - 'past_purchases': 'Ranije kupovine', - 'annual_subscription': 'Godišnja pretplata', - 'pro_plan': 'Pro plan', - 'enterprise_plan': 'Plan preduzeća', - 'count_users': ':count korisnika', - 'upgrade': 'Nadogradi', - 'please_enter_a_first_name': 'Unesite ime', - 'please_enter_a_last_name': 'Unesite prezime', + 'saved_settings': 'Successfully saved settings', + 'product_settings': 'Opțiuni Produs', + 'device_settings': 'Device Settings', + 'defaults': 'Implicit', + 'basic_settings': 'Opțiuni de bază', + 'advanced_settings': 'Opțiuni avansate', + 'company_details': 'Detalii companie', + 'user_details': 'Detalii utilizator', + 'localization': 'Localizare', + 'online_payments': 'Plati online', + 'tax_rates': 'Valori taxa', + 'notifications': 'Notificări', + 'import_export': 'Import | Export', + 'custom_fields': 'Câmpuri personalizate', + 'invoice_design': 'Design factură', + 'buy_now_buttons': 'Buy Now Buttons', + 'email_settings': 'Setari email', + 'templates_and_reminders': 'Șabloane & Notificări', + 'credit_cards_and_banks': 'Credit Cards & Banks', + 'data_visualizations': 'Vizualizare Date', + 'price': 'Price', + 'email_sign_up': 'Email Sign Up', + 'google_sign_up': 'Google Sign Up', + 'thank_you_for_your_purchase': 'Thank you for your purchase!', + 'redeem': 'Redeem', + 'back': 'Back', + 'past_purchases': 'Past Purchases', + 'annual_subscription': 'Annual Subscription', + 'pro_plan': 'Pro Plan', + 'enterprise_plan': 'Enterprise Plan', + 'count_users': ':count users', + 'upgrade': 'Upgrade', + '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': - 'Molimo prihvatite uslove korišćenja i politiku privatnosti da biste registrovali korisnički nalog.', - 'i_agree_to_the': 'Slažem se sa', - 'terms_of_service': 'Uslovi korištenja usluge', - 'privacy_policy': 'Politika privatnosti', - 'sign_up': 'Prijava', - 'account_login': 'Korisnička prijava', - 'view_website': 'Poseti internet stranicu', - 'create_account': 'Napravi nalog', - 'email_login': 'Prijava putem e-pošte', - 'create_new': 'Kreiraj novo', - 'no_record_selected': 'Nijedan zapis nije odabran', - 'error_unsaved_changes': 'Molimo sačuvajte ili otkažite izmene', - 'download': 'Preuzmi', - 'requires_an_enterprise_plan': 'Zahteva plan preduzeća', - 'take_picture': 'Fotografiši', - 'upload_file': 'Otpremi datoteku', - 'document': 'Dokument', - 'documents': 'Dokumenti', - 'new_document': 'Novi dokument', - 'edit_document': 'Izmeni dokument', - 'uploaded_document': 'Uspešno otpremljen dokument', - 'updated_document': 'Uspešno ažuriran dokument', - 'archived_document': 'Uspešno arhiviran dokument', - 'deleted_document': 'Uspešno obrisan dokument', - 'restored_document': 'Uspešno vraćen dokument', - 'archived_documents': 'Uspešno arhivirane :value dokumenata', - 'deleted_documents': 'Uspešno obrisane :value dokumenata', - 'restored_documents': 'Uspešno vraćene :value dokumenata', - 'no_history': 'Nema istorije', - 'expense_date': 'Datum troška', - 'pending': 'Na čekanju', - 'expense_status_1': 'Prijavljen', - 'expense_status_2': 'Na čekanju', - 'expense_status_3': 'Fakturisano', - 'converted': 'Konvertovano', - 'add_documents_to_invoice': 'Dodaj dokumente uz Račun', - 'exchange_rate': 'Kurs', - 'convert_currency': 'Konvertuj valutu', - 'mark_paid': 'Označiti kao plaćeno', - 'category': 'Kategorija', - 'address': 'Adresa', - 'new_vendor': 'Novi dobavljač', - 'created_vendor': 'Uspešno kreiran dobavljač', - 'updated_vendor': 'Uspešno ažuriran dobavljač', - 'archived_vendor': 'Uspešno arhiviran dobavljač', - 'deleted_vendor': 'Uspešno obrisan dobavljač', - 'restored_vendor': 'Uspešno obnovljen dobavljač', - 'archived_vendors': 'Uspešno arhivirano :count dobavljača', - 'deleted_vendors': 'Uspešno obrisano :count dobavljača', - 'restored_vendors': 'Uspešno vraćene :value dobavljača', - 'new_expense': 'Unesi trošak', - 'created_expense': 'Uspešno kreiran trošak', - 'updated_expense': 'Uspešno ažuriran trošak', - 'archived_expense': 'Uspešno arhiviran trošak', - 'deleted_expense': 'Uspešno obrisan trošak', - 'restored_expense': 'Uspešno obnovljen trošak', - 'archived_expenses': 'Uspešno arhivirani troškovi', - 'deleted_expenses': 'Uspešno obrisani troškovi', - 'restored_expenses': 'Uspešno vraćene :value troškova', - 'copy_shipping': 'Kopiraj adresu za isporuku', - 'copy_billing': 'Kopiraj adresu za naplatu', - 'design': 'Dizajn', - 'failed_to_find_record': 'Zapis nije pronađen', - 'invoiced': 'Fakturisano', - 'logged': 'Prijavljen', - 'running': 'Pokrenuto', - 'resume': 'Nastavi', - 'task_errors': 'Molimo korigujte vremena koja se poklapaju', - 'start': 'Početak', - 'stop': 'Završetak', - 'started_task': 'Zadatak uspešno pokrenut', - 'stopped_task': 'Uspešno završen zadatak', - 'resumed_task': 'Uspešno nastavljen zadatak', - 'now': 'Sada', - 'auto_start_tasks': 'Automatsko pokretanje zadataka', - 'timer': 'Štoperica', - 'manual': 'Ručno', - 'budgeted': 'Budžetirano', - 'start_time': 'Početno vreme', - 'end_time': 'Vreme završetka', - 'date': 'Datum', - 'times': 'Vremena', - 'duration': 'Trajanje', - 'new_task': 'Novi zadatak', - 'created_task': 'Uspešno kreiran zadatak', - 'updated_task': 'Uspešno ažuriran zadatak', - 'archived_task': 'Uspešno arhiviran zadatak', - 'deleted_task': 'Uspešno obrisan zadatak', - 'restored_task': 'Uspešno obnovljen zadatak', - 'archived_tasks': 'Uspešno arhivirano :count zadataka', - 'deleted_tasks': 'Uspešno obrisano :count zadataka', - 'restored_tasks': 'Uspešno vraćene :value zadataka', - 'please_enter_a_name': 'Molimo unesite ime', - 'budgeted_hours': 'Budžetirani sati', - 'created_project': 'Projekat je uspešno kreiran', - 'updated_project': 'Projekat je uspešno ažuriran', - 'archived_project': 'Projekat je uspešno arhiviran', - 'deleted_project': 'Projekat uspešno obrisan', - 'restored_project': 'Projekat uspešno vraćen', - 'archived_projects': 'Uspešno arhivirano :count projekata', - 'deleted_projects': 'Uspešno obrisano :count projekata', - 'restored_projects': 'Uspešno vraćene :value projekata', - 'new_project': 'Novi projekat', - 'thank_you_for_using_our_app': 'Hvala Vam što koristite našu aplikaciju!', - 'if_you_like_it': 'Ako Vam se dopada molimo Vas', - 'click_here': 'kliknite ovde', - 'click_here_capital': 'Kliknite ovde', - 'to_rate_it': 'da je ocenite.', - 'average': 'Prosek', - 'unapproved': 'Neodobreno', + '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': 'Termenii Serviciului', + 'privacy_policy': 'Privacy Policy', + 'sign_up': 'Inscrie-te', + 'account_login': 'Autentificare', + 'view_website': 'View Website', + 'create_account': 'Create Account', + 'email_login': 'Email Login', + 'create_new': 'Create New', + 'no_record_selected': 'No record selected', + 'error_unsaved_changes': 'Please save or cancel your changes', + 'download': 'Descarca', + 'requires_an_enterprise_plan': 'Requires an enterprise plan', + 'take_picture': 'Take Picture', + 'upload_file': 'Upload File', + 'document': 'Document', + 'documents': 'Documents', + 'new_document': 'New Document', + 'edit_document': 'Edit Document', + 'uploaded_document': 'Successfully uploaded document', + 'updated_document': 'Successfully updated document', + 'archived_document': 'Successfully archived document', + 'deleted_document': 'Successfully deleted document', + 'restored_document': 'Successfully restored document', + 'archived_documents': 'Successfully archived :value documents', + 'deleted_documents': 'Successfully deleted :value documents', + 'restored_documents': 'Successfully restored :value documents', + 'no_history': 'No History', + 'expense_date': 'Expense Date', + 'pending': 'În așteptare', + 'expense_status_1': 'Logged', + 'expense_status_2': 'Pending', + 'expense_status_3': 'Invoiced', + 'converted': 'Transformă', + 'add_documents_to_invoice': 'Add documents to invoice', + 'exchange_rate': 'Curs Valutar', + 'convert_currency': 'Transformă moneda', + 'mark_paid': 'Mark Paid', + 'category': 'Category', + 'address': 'Adresă', + 'new_vendor': 'Furnizor Nou', + 'created_vendor': 'Furnizor creat cu succes', + 'updated_vendor': 'Furnizor actualizat cu succes', + 'archived_vendor': 'Furnizor arhivat cu succes', + 'deleted_vendor': 'Furnizor șters cu succes', + 'restored_vendor': 'Successfully restored vendor', + 'archived_vendors': ':count furnizori arhivați cu succes', + 'deleted_vendors': ':count furnizori ștersi cu succes', + 'restored_vendors': 'Successfully restored :value vendors', + 'new_expense': 'Introdu Cheltuială', + 'created_expense': 'Successfully created expense', + 'updated_expense': 'Successfully updated expense', + 'archived_expense': 'Cheltuială arhivată cu succes', + 'deleted_expense': 'Cheltuială ștearsă cu succes', + 'restored_expense': 'Successfully restored expense', + 'archived_expenses': 'Cheltuieli arhivate cu succes', + 'deleted_expenses': 'Cheltuieli șterse cu succes', + 'restored_expenses': 'Successfully restored :value expenses', + 'copy_shipping': 'Copy Shipping', + 'copy_billing': 'Copy Billing', + 'design': 'Design', + 'failed_to_find_record': 'Failed to find record', + 'invoiced': 'Facturat', + 'logged': 'Înregistrat', + 'running': 'În derulare', + 'resume': 'Continuă', + 'task_errors': 'Te rog corectează suprapunerea timpilor', + 'start': 'Start', + 'stop': 'Stop', + 'started_task': 'Successfully started task', + 'stopped_task': 'Task oprit', + 'resumed_task': 'Successfully resumed task', + 'now': 'Acum', + 'auto_start_tasks': 'Auto Start Tasks', + 'timer': 'Cronometru', + 'manual': 'Manual', + 'budgeted': 'Budgeted', + 'start_time': 'Timp pornire', + 'end_time': 'Timp încheiere', + 'date': 'Data', + 'times': 'Times', + 'duration': 'Durată', + 'new_task': 'Task nou', + 'created_task': 'Task creat', + 'updated_task': 'Task actualizat', + 'archived_task': 'Task arhivat', + 'deleted_task': 'Task șters', + 'restored_task': 'Task restaurat', + 'archived_tasks': 'Arhivat :count task-uri', + 'deleted_tasks': 'Șters :count task-uri', + 'restored_tasks': 'Successfully restored :value tasks', + 'please_enter_a_name': 'Please enter a name', + 'budgeted_hours': 'Budgeted Hours', + 'created_project': 'Successfully created project', + 'updated_project': 'Successfully updated project', + 'archived_project': 'Successfully archived project', + 'deleted_project': 'Successfully deleted project', + 'restored_project': 'Successfully restored project', + 'archived_projects': 'Successfully archived :count projects', + 'deleted_projects': 'Successfully deleted :count projects', + 'restored_projects': 'Successfully restored :value projects', + 'new_project': 'Proiect nou', + 'thank_you_for_using_our_app': 'Thank you for using our app!', + 'if_you_like_it': 'If you like it please', + 'click_here': 'apasă aici', + 'click_here_capital': 'Click here', + 'to_rate_it': 'to rate it.', + 'average': 'Average', + 'unapproved': 'Unapproved', 'authenticate_to_change_setting': - 'Molimo potvrdite autentičnost da biste promenili ovo podešavanje', - 'locked': 'Zaključano', - 'authenticate': 'Potvrditi autentičnost', - 'please_authenticate': 'Molimo potvrdite autentičnost', - 'biometric_authentication': 'Biometrijska potvrda autentičnosti', - 'footer': 'Podnožje', - 'compare': 'Uporedi', - 'hosted_login': 'Hostovani login', - 'selfhost_login': 'Samohostovani login', - 'google_sign_in': 'Prijavite se pomoću Google-a', - 'today': 'Danas', - 'custom_range': 'Prilagođeni opseg', - 'date_range': 'Opseg datuma', - 'current': 'Tekući', - 'previous': 'Prethodni', - 'current_period': 'Tekući period', - 'comparison_period': 'Period za upoređivanje', - 'previous_period': 'Prethodni period', - 'previous_year': 'Prethodna godina', - 'compare_to': 'Uporedi sa', - 'last7_days': 'Poslednjih 7 dana', - 'last_week': 'Prošle nedelje', - 'last30_days': 'Poslednjih 30 dana', - 'this_month': 'Ovog meseca', - 'last_month': 'Prošlog meseca', - 'this_year': 'Ove godine', - 'last_year': 'Prošle godine', - 'custom': 'Prilagođeno', - 'clone_to_invoice': 'Kloniraj u račun', - 'clone_to_quote': 'Kloniraj u ponudu', + 'Please authenticate to change this setting', + 'locked': 'Locked', + 'authenticate': 'Authenticate', + 'please_authenticate': 'Please authenticate', + 'biometric_authentication': 'Biometric Authentication', + 'footer': 'Subsol', + 'compare': 'Compară', + 'hosted_login': 'Hosted Login', + 'selfhost_login': 'Selfhost Login', + 'google_sign_in': 'Sign in with Google', + 'today': 'Astăzi', + 'custom_range': 'Custom Range', + 'date_range': 'Date Range', + 'current': 'Curent', + 'previous': 'Anterior', + 'current_period': 'Perioada Curentă', + 'comparison_period': 'Perioada Comparării', + 'previous_period': 'Perioada Anterioară', + 'previous_year': 'Anul Anterior', + 'compare_to': 'Compară cu', + 'last7_days': 'Ultimele 7 Zile', + 'last_week': 'Săptămâna Trecută', + 'last30_days': 'Ultimele 30 Zile', + 'this_month': 'Luna curentă', + 'last_month': 'Luna trecută', + 'this_year': 'Anul Curent', + 'last_year': 'Anul Trecut', + 'custom': 'Personalizat', + 'clone_to_invoice': 'Clone to Invoice', + 'clone_to_quote': 'Clone to Quote', 'clone_to_credit': 'Clone to Credit', - 'view_invoice': 'Pregled računa', - 'convert': 'Konvertuj', - 'more': 'Više', - 'edit_client': 'Uredi klijenta', - 'edit_product': 'Uredi proizvod', - 'edit_invoice': 'Uredi račun', - 'edit_quote': 'Uredi ponudu', - 'edit_payment': 'Izmeni uplatu', - 'edit_task': 'Uredi zadatak', - 'edit_expense': 'Izmeni trošak', - 'edit_vendor': 'Uredi dobavljača', - 'edit_project': 'Uredi projekat', - 'edit_recurring_quote': 'Izmeni ponavljajuću ponudu', - 'billing_address': 'Adresa računa', - 'shipping_address': 'Adresa za slanje', - 'total_revenue': 'Ukupni prihod', - 'average_invoice': 'Prosečni račun', - 'outstanding': 'Nenaplaćeno', - 'invoices_sent': ':count računi poslati', - 'active_clients': 'aktivni klijenti', - 'close': 'Zatvori', + 'view_invoice': 'Vizualizare Factură', + 'convert': 'Convert', + 'more': 'More', + 'edit_client': 'Modifica client', + 'edit_product': 'Modifica produs', + 'edit_invoice': 'Modifica factura', + 'edit_quote': 'Modifica Proforma', + 'edit_payment': 'Modifică Plata', + 'edit_task': 'Modifică Task', + 'edit_expense': 'Edit Expense', + 'edit_vendor': 'Editează Furnizor', + 'edit_project': 'Editează Proiect', + 'edit_recurring_quote': 'Editare oferta recurenta', + 'billing_address': 'Adresă de facturare', + 'shipping_address': 'Shipping Address', + 'total_revenue': 'Venituri Totale', + 'average_invoice': 'Medie facturi', + 'outstanding': 'Restante', + 'invoices_sent': ':count facturi trimise', + 'active_clients': 'clienti activi', + 'close': 'Inchide', 'email': 'Email', - 'password': 'Lozinka', + 'password': 'Parola', 'url': 'URL', 'secret': 'Secret', - 'name': 'Ime', - 'logout': 'Odjava', - 'login': 'Prijava', - 'filter': 'Filter', - 'sort': 'Sortiranje', - 'search': 'Pretraga', - 'active': 'Aktivan', - 'archived': 'Arhivirano', - 'deleted': 'Obrisano', - 'dashboard': 'Kontrolna tabla', + 'name': 'Nume', + 'logout': 'Deconectare', + 'login': 'Autentificare', + 'filter': 'Filtreaza', + 'sort': 'Sort', + 'search': 'Cauta', + 'active': 'Activ', + 'archived': 'Arhivat', + 'deleted': 'Șters', + 'dashboard': 'Panou Control', 'archive': 'Arhiva', - 'delete': 'Obriši', - 'restore': 'Vrati', - 'refresh_complete': 'Osvežavanje završeno', - 'please_enter_your_email': 'Molimo, unesite svoju adresu e-pošte', - 'please_enter_your_password': 'Molimo, unesite svoju lozinku', - 'please_enter_your_url': 'Molimo, unesite svoj URL', - 'please_enter_a_product_key': 'Molimo, unesite šifru proizvoda', - 'ascending': 'Rastuće', - 'descending': 'Opadajuće', - 'save': 'Snimi', - 'an_error_occurred': 'Došlo je do greške', - 'paid_to_date': 'Plaćeno na vreme', - 'balance_due': 'Stanje duga', - 'balance': 'Stanje', - 'overview': 'Pregled', - 'details': 'Detalji', + 'delete': 'Sterge', + 'restore': 'Restaurează', + 'refresh_complete': 'Refresh Complete', + 'please_enter_your_email': 'Please enter your email', + 'please_enter_your_password': 'Please enter your password', + 'please_enter_your_url': 'Please enter your URL', + 'please_enter_a_product_key': 'Please enter a product key', + 'ascending': 'Ascending', + 'descending': 'Descending', + 'save': 'Salveaza', + 'an_error_occurred': 'An error occurred', + 'paid_to_date': 'Plătit Pâna Acum', + 'balance_due': 'Total De Plată', + 'balance': 'Balanta', + 'overview': 'Overview', + 'details': 'Detalii', 'phone': 'Telefon', - 'website': 'Sajt', - 'vat_number': 'PIB', - 'id_number': 'Matični broj', - 'create': 'Kreiraj', - 'copied_to_clipboard': 'Vrednost :value kopirana na radnu tablu', - 'error': 'Greška', - 'could_not_launch': 'Pokretanje nije uspelo', - 'contacts': 'Kontakti', - 'additional': 'Dodatno', - 'first_name': 'Ime', - 'last_name': 'Prezime', - 'add_contact': 'Dodaj kontakt', - 'are_you_sure': 'Da li ste sigurni?', - 'cancel': 'Odustani', + 'website': 'Site web', + 'vat_number': 'C.I.F.', + 'id_number': 'Nr. Reg. Com.', + 'create': 'Creaza', + 'copied_to_clipboard': 'Copied :value to the clipboard', + 'error': 'Error', + 'could_not_launch': 'Could not launch', + 'contacts': 'Contacte', + 'additional': 'Additional', + 'first_name': 'Prenume', + 'last_name': 'Nume', + 'add_contact': 'Adauga contact', + 'are_you_sure': 'Sigur?', + 'cancel': 'Renunta', 'ok': 'Ok', - 'remove': 'Ukloni', - 'email_is_invalid': 'Adresa e-pošte nije validna', - 'product': 'Proizvod', - 'products': 'Proizvodi', - 'new_product': 'Novi proizvod', - 'created_product': 'Proizvod je uspešno kreiran', - 'updated_product': 'Proizvod je uspešno ažuriran', - 'archived_product': 'Proizvod je uspešno arhiviran', - 'deleted_product': 'Proizvod uspešno obrisan', - 'restored_product': 'Proizvod uspešno vraćen', - 'archived_products': 'Uspešno arhivirano :count proizvoda', - 'deleted_products': 'Uspešno obrisano :count proizvoda', - 'restored_products': 'Uspešno vraćene :value proizvoda', - 'product_key': 'Proizvod', - 'notes': 'Beleške', - 'cost': 'Cena', - 'client': 'Klijent', - 'clients': 'Klijenti', - 'new_client': 'Novi klijent', - 'created_client': 'Klijent je uspešno kreiran', - 'updated_client': 'Uspešno ažuriranje klijenta', - 'archived_client': 'Uspešno arhiviran klijent', - 'archived_clients': 'Uspešno arhivirano :count klijenata', - 'deleted_client': 'Uspešno obrisan klijent', - 'deleted_clients': 'Uspešno obrisano :count klijenata', - 'restored_client': 'Uspešno vraćen klijent', - 'restored_clients': 'Uspešno vraćene :value klijenata', - 'address1': 'Ulica', - 'address2': 'Stan', - 'city': 'Grad', - 'state': 'Regija/provincija', - 'postal_code': 'Poštanski broj', - 'country': 'Država', - 'invoice': 'Račun', - 'invoices': 'Računi', - 'new_invoice': 'Novi račun', - 'created_invoice': 'Uspešno kreiran račun', - 'updated_invoice': 'Uspešno ažuriran račun', - 'archived_invoice': 'Uspešno arhiviran račun', - 'deleted_invoice': 'Uspešno obrisan račun', - 'restored_invoice': 'Uspešno vraćen račun', - 'archived_invoices': 'Uspešno arhivirano :count računa', - 'deleted_invoices': 'Uspešno obrisano :count računa', - 'restored_invoices': 'Uspešno vraćene :value računa', - 'emailed_invoice': 'Račun uspešno poslat e-poštom', - 'emailed_payment': 'Uplata uspešno poslata putem e-pošte', - 'amount': 'Iznos', - 'invoice_number': 'Broj računa', - 'invoice_date': 'Datum računa', - 'discount': 'Popust', - 'po_number': 'Broj narudžbe', - 'terms': 'Uslovi', - 'public_notes': 'Javne beleške', - 'private_notes': 'Privatne beleške', - 'frequency': 'Učestalost', - 'start_date': 'Početni datum', - 'end_date': 'Završni datum', - 'quote_number': 'Broj ponude', - 'quote_date': 'Datum ponude', - 'valid_until': 'Važi do', - 'items': 'Stavke', - 'partial_deposit': 'Avans/Depozit', - 'description': 'Opis', - 'unit_cost': 'Jedinična cena', - 'quantity': 'Količina', - 'add_item': 'Dodaj stavku', - 'contact': 'Kontakt', + 'remove': 'Remove', + 'email_is_invalid': 'Email is invalid', + 'product': 'Produs', + 'products': 'Produse', + 'new_product': 'New Product', + 'created_product': 'Produs creat cu succes', + 'updated_product': 'Produs actualizat cu succes', + 'archived_product': 'Produs arhivat cu succes', + 'deleted_product': 'Successfully deleted product', + 'restored_product': 'Successfully restored product', + 'archived_products': 'Successfully archived :count products', + 'deleted_products': 'Successfully deleted :count products', + 'restored_products': 'Successfully restored :value products', + 'product_key': 'Produs', + 'notes': 'Notițe', + 'cost': 'Cost', + 'client': 'Client', + 'clients': 'Clienti', + 'new_client': 'Client nou', + 'created_client': 'S-a creat clientul cu succes', + 'updated_client': 'Client actualizat cu succes.', + 'archived_client': 'Client arhivat cu succes.', + 'archived_clients': ':count clienti arhivat cu succes.', + 'deleted_client': 'Client sters cu succes.', + 'deleted_clients': ':count clienti stersi cu succes.', + 'restored_client': 'Client restaurat', + 'restored_clients': 'Successfully restored :value clients', + 'address1': 'Strada', + 'address2': 'Apartament', + 'city': 'Localitate', + 'state': 'Județ/Sector', + 'postal_code': 'Cod poștal', + 'country': 'Tara', + 'invoice': 'Factură', + 'invoices': 'Facturi', + 'new_invoice': 'Factura noua', + 'created_invoice': 'Factura creata cu succes.', + 'updated_invoice': 'Factura actualiazata cu succes.', + 'archived_invoice': 'Factura arhivata cu succes.', + 'deleted_invoice': 'Factura stearsa cu succes.', + 'restored_invoice': 'Factură restaurată', + 'archived_invoices': ':count facturi arhivate cu succes.', + 'deleted_invoices': ':count facturi sterse cu succes', + 'restored_invoices': 'Successfully restored :value invoices', + 'emailed_invoice': 'Factura trimisa pe email cu succes', + 'emailed_payment': 'Successfully emailed payment', + 'amount': 'Valoare', + 'invoice_number': 'Număr factură', + 'invoice_date': 'Data factură', + 'discount': 'Discount', + 'po_number': 'Ordin de cumpărare nr', + 'terms': 'Termeni', + 'public_notes': 'Public Notes', + 'private_notes': 'Note particulare', + 'frequency': 'Frecventa', + 'start_date': 'Data inceput', + 'end_date': 'Data sfirsit', + 'quote_number': 'Numar Proforma', + 'quote_date': 'Data Proforma', + 'valid_until': 'Valabil până la', + 'items': 'Items', + 'partial_deposit': 'Partial/Deposit', + 'description': 'Descriere', + 'unit_cost': 'Preț unitar', + 'quantity': 'Cantitate', + 'add_item': 'Add Item', + 'contact': 'Contact', 'work_phone': 'Telefon', - 'total_amount': 'Ukupan iznos', + 'total_amount': 'Total Amount', 'pdf': 'PDF', - 'due_date': 'Datum dospeća', - 'partial_due_date': 'Datum dospeća avansa', - 'status': 'Status', - 'invoice_status_id': 'Status računa', - 'quote_status': 'Status ponude', - 'click_plus_to_add_item': 'Kliknite + za dodavanje stavke', - 'click_plus_to_add_time': 'Kliknite + za dodavanje vremena', - 'count_selected': ':count odabrano', - 'total': 'Sveukupno', - 'percent': 'Procenat', - 'edit': 'Uredi', - 'dismiss': 'Odbaci', - 'please_select_a_date': 'Molimo, izaberite datum', - 'please_select_a_client': 'Molimo izaberite klijenta', - 'please_select_an_invoice': 'Izaberite račun', - 'task_rate': 'Stopa zadatka', - 'settings': 'Podešavanja', - 'language': 'Jezik', - 'currency': 'Valuta', - 'created_at': 'Datum kreiranja', - 'created_on': 'Napravljeno dana', - 'updated_at': 'Ažurirano', - 'tax': 'Porez', - 'please_enter_an_invoice_number': 'Molimo, unesite broj računa', - 'please_enter_a_quote_number': 'Molimo, unesite broj ponude', - 'past_due': 'Rok istekao', - 'draft': 'Nacrt', - 'sent': 'Poslato', - 'viewed': 'Pregledano', - 'approved': 'Odobreno', - 'partial': 'Avans/Depozit', - 'paid': 'Plaćeno', - 'mark_sent': 'Označi kao poslato', - 'marked_invoice_as_sent': 'Račun uspešno obeležen kao poslat', - 'marked_invoice_as_paid': 'Račun je uspešno označen kao poslat', - 'marked_invoices_as_sent': 'Računi su uspešno označeni kao poslati', - 'marked_invoices_as_paid': 'Računi su uspešno označeni kao poslati', - 'done': 'Završeno', + 'due_date': 'Scadența', + 'partial_due_date': 'Partial Due Date', + 'status': 'Stare', + 'invoice_status_id': 'Invoice Status', + 'quote_status': 'Status oferta', + 'click_plus_to_add_item': 'Click + to add an item', + 'click_plus_to_add_time': 'Click + to add time', + 'count_selected': ':count selected', + 'total': 'Total', + 'percent': 'Percent', + 'edit': 'Modifica', + 'dismiss': 'Dismiss', + 'please_select_a_date': 'Please select a date', + 'please_select_a_client': 'Please select a client', + 'please_select_an_invoice': 'Te rugam selecteaza o oferta', + 'task_rate': 'Task Rate', + 'settings': 'Setari', + 'language': 'Language', + 'currency': 'Currency', + 'created_at': 'Date Created', + 'created_on': 'Created On', + 'updated_at': 'Updated', + 'tax': 'Taxă', + 'please_enter_an_invoice_number': 'Please enter an invoice number', + 'please_enter_a_quote_number': 'Please enter a quote number', + 'past_due': 'Past Due', + 'draft': 'Draft', + 'sent': 'Trimis', + 'viewed': 'Viewed', + 'approved': 'Approved', + 'partial': 'Parțial/Depunere', + 'paid': 'Plătit', + 'mark_sent': 'Marchează ca trimis', + 'marked_invoice_as_sent': 'Successfully marked invoice as sent', + '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': 'Gata', 'please_enter_a_client_or_contact_name': - 'Molimo, unesite klijenta ili ime kontakta', - 'dark_mode': 'Tamni prikaz', - 'restart_app_to_apply_change': - 'Ponovo pokrenite aplikaciju da pokrenuli promenu', - 'refresh_data': 'Osveži podatke', - 'blank_contact': 'Prazan kontakt', - 'activity': 'Aktivnost', - 'no_records_found': 'Nema zapisa', - 'clone': 'Kloniraj', - 'loading': 'Učitavanje', - 'industry': 'Delatnost', - 'size': 'Veličina', - 'payment_terms': 'Uslovi plaćanja', - 'payment_date': 'Datum uplate', - 'payment_status': 'Status plaćanja', - 'payment_status_1': 'Na čekanju', - 'payment_status_2': 'Storno', - 'payment_status_3': 'Neuspešno', - 'payment_status_4': 'Završeno', - 'payment_status_5': 'Delimično refundirano', - 'payment_status_6': 'Refundirano', - 'payment_status_-1': 'Neprimenjeno', - 'payment_status_-2': 'Delimično neprimenjeno', + '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': 'Reactualizeaza datele', + 'blank_contact': 'Contact gol', + 'activity': 'Activitate', + 'no_records_found': 'Nu exista inregistrari', + 'clone': 'Multiplică', + 'loading': 'Loading', + 'industry': 'Industrie', + 'size': 'Size', + 'payment_terms': 'Termeni de plată', + 'payment_date': 'Data platii', + 'payment_status': 'Status plata', + 'payment_status_1': 'Pending', + 'payment_status_2': 'Voided', + 'payment_status_3': 'Failed', + 'payment_status_4': 'Completed', + 'payment_status_5': 'Partially Refunded', + 'payment_status_6': 'Refunded', + 'payment_status_-1': 'Unapplied', + 'payment_status_-2': 'Partially Unapplied', 'net': 'Net', - 'client_portal': 'Portal Klijenta', - 'show_tasks': 'Prikaži zadatke', - 'email_reminders': 'Podsetnici putem e-pošte', - 'enabled': 'Omogućeno', - 'recipients': 'Primaoci', - 'initial_email': 'Inicijalna poruka e-poštom', - 'first_reminder': 'Prvi podsetnik', - 'second_reminder': 'Drugi podsetnik', - 'third_reminder': 'Treći podsetnik', - 'reminder1': 'Prvi podsetnik', - 'reminder2': 'Drugi podsetnik', - 'reminder3': 'Treći podsetnik', - 'template': 'Šablon', - 'send': 'Pošalji', - 'subject': 'Naslov', - 'body': 'Telo poruke', - 'send_email': 'Poslati Email', - 'email_receipt': 'Pošalji e-poštom račun klijentu', - 'auto_billing': 'Automatski račun', - 'button': 'Dugme', - 'preview': 'Pregled', - 'customize': 'Prilagodi', - 'history': 'Istorija', - 'payment': 'Uplata', - 'payments': 'Uplate', - 'refunded': 'Refundirano', - 'payment_type': 'Tip uplate', - 'transaction_reference': 'Referenca transakcije', - 'enter_payment': 'Unesi uplatu', - 'new_payment': 'Unesi uplatu', - 'created_payment': 'Uspešno kreirana uplata', - 'updated_payment': 'Uspešno ažurirana uplata', - 'archived_payment': 'Uspešno arhivirana uplata', - 'deleted_payment': 'Uspešno obrisana uplata', - 'restored_payment': 'Uspešno vraćena uplata', - 'archived_payments': 'Uspešno arhivirana :count uplata', - 'deleted_payments': 'Uspešno obrisano :count uplata', - 'restored_payments': 'Uspešno vraćene :value plaćanja', - 'quote': 'Ponuda', - 'quotes': 'Ponude', - 'new_quote': 'Nova ponuda', - 'created_quote': 'Predračun je uspešno kreiran', - 'updated_quote': 'Predračun je uspešno ažuriran', - 'archived_quote': 'Predračun je uspešno arhiviran', - 'deleted_quote': 'Predračun uspešno obrisan', - 'restored_quote': 'Uspešno vraćen predračun', - 'archived_quotes': 'Uspešno arhivirano :count predračuna', - 'deleted_quotes': 'Uspešno obrisano :count predračuna', - 'restored_quotes': 'Uspešno vraćene :value ponuda', - 'expense': 'Trošak', - 'expenses': 'Troškovi', - 'vendor': 'Dobavljač', - 'vendors': 'Dobavljači', - 'task': 'Zadatak', - 'tasks': 'Zadaci', - 'project': 'Projekat', - 'projects': 'Projekti', - 'activity_1': ':user kreirao klijenta :client', - 'activity_2': ':user arhivirao klijenta :client', - 'activity_3': ':user obrisao klijenta :client', - 'activity_4': ':user kreirao račun :invoice', - 'activity_5': ':user ažurirao račun :invoice', + 'client_portal': 'Portal Client', + 'show_tasks': 'Arata sarcini', + 'email_reminders': 'Email Reminders', + 'enabled': 'Enabled', + 'recipients': 'Recipients', + 'initial_email': 'Initial Email', + 'first_reminder': 'Prima Notificare', + 'second_reminder': 'A Doua Notificare', + 'third_reminder': 'A Treia Notificare', + 'reminder1': 'First Reminder', + 'reminder2': 'Second Reminder', + 'reminder3': 'Third Reminder', + 'template': 'Șablon', + 'send': 'Trimite', + 'subject': 'Subiect', + 'body': 'Mesaj', + 'send_email': 'Trimite Email', + 'email_receipt': 'Trimite pe email dovada plății', + 'auto_billing': 'Auto billing', + 'button': 'Buton', + 'preview': 'Previzualizare', + 'customize': 'Personalizeaza', + 'history': 'Istoric', + 'payment': 'Plata', + 'payments': 'Plati', + 'refunded': 'Refunded', + 'payment_type': 'Payment Type', + 'transaction_reference': 'Referinta tranzactie', + 'enter_payment': 'Introdu plata', + 'new_payment': 'Introdu plata', + 'created_payment': 'Plata creata cu succes.', + 'updated_payment': 'Plată actualizată', + 'archived_payment': 'Plata arhivata cu succes', + 'deleted_payment': 'Plata stearsa cu succes.', + 'restored_payment': 'Plată restaurată', + 'archived_payments': ':count plati arhivate cu succes', + 'deleted_payments': ':count plati sterse cu succes.', + 'restored_payments': 'Successfully restored :value payments', + 'quote': 'Proforma', + 'quotes': 'Proforme', + 'new_quote': 'Proforma Nou', + 'created_quote': 'Proformă creată cu succes', + 'updated_quote': 'Proformă actualizată cu succes', + 'archived_quote': 'Proformă arhivată cu succes', + 'deleted_quote': 'Proformă ștearsă', + 'restored_quote': 'Proformă restaurată', + 'archived_quotes': ':count proforme arhivate cu succes', + 'deleted_quotes': ':count proforme șterse cu succes', + 'restored_quotes': 'Successfully restored :value quotes', + 'expense': 'Cheltuială', + 'expenses': 'Cheltuieli', + 'vendor': 'Furnizor', + 'vendors': 'Furnizori', + 'task': 'Task', + 'tasks': 'Task-uri', + 'project': 'Proiect', + 'projects': 'Proiecte', + 'activity_1': ':user a creat clientul :client', + 'activity_2': ':user a arhivat clientul :client', + 'activity_3': ':user a șters clientul :client', + 'activity_4': ':user a creat factura :invoice', + 'activity_5': ':user a actualizat factura :invoice', 'activity_6': - ':user je poslao račun :invoice za :client kontaktu :contact', - 'activity_7': ':contact je pregledao račun :invoice za :client', - 'activity_8': ':user arhivirao račun :invoice', - 'activity_9': ':user obrisao račun :invoice', + ':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 uneo plaćanje :payment za :payment_amount na računu :invoice za :client', - 'activity_11': ':user ažurirao uplatu :payment', - 'activity_12': ':user ahivirao uplatu :payment', - 'activity_13': ':user obrisao uplatu :payment', - 'activity_14': ':user uneo :credit kredit', - 'activity_15': ':user ažurirao :credit kredit', - 'activity_16': ':user arhivirao :credit kredit', - 'activity_17': ':user obrisao :credit kredit', - 'activity_18': ':user kreirao predračun :quote', - 'activity_19': ':user ažurirao predračun :quote', + ':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', + 'activity_14': ':user a încărcat :credit credite', + 'activity_15': ':user a actualizat :credit credite', + 'activity_16': ':user a arhivat :credit credite', + 'activity_17': ':user a șters :credit credite', + 'activity_18': ':user a creat proforma :quote', + 'activity_19': ':user a actualizat proforma :quote', 'activity_20': - ':user je poslao predračun putem e-pošte :quote za :client kontaktu :contact', - 'activity_21': ':contact pregledao predračun :quote', - 'activity_22': ':user arhivirao predračun :quote', - 'activity_23': ':user obrisao predračun :quote', - 'activity_24': ':user obnovio predračun :quote', - 'activity_25': ':user obnovio račun :invoice', - 'activity_26': ':user obnovio klijenta :client', - 'activity_27': ':user obnovio uplatu :payment', - 'activity_28': ':user obnovio :credit kredit', - 'activity_29': ':contact odobrio predračun :quote za :client', - 'activity_30': ':user je kreirao dobavljača/prodavca :vendor', - 'activity_31': ':user arhivirao dobavljača/prodavca :vendor', - 'activity_32': ':user obrisao dobavljača/prodavca :vendor', - 'activity_33': ':user obnovio dobavljača/prodavca :vendor', - 'activity_34': ':user kreirao trošak :expense', - 'activity_35': ':user arhivirao trošak :expense', - 'activity_36': ':user obrisao trošak :expense', - 'activity_37': ':user obnovio trošak :expense', - 'activity_39': ':user je otkazao :payment_amount plaćanje :payment', + ':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', + 'activity_24': ':user a restaurat proforma :quote', + 'activity_25': ':user a restaurat factura :invoice', + 'activity_26': ':user a restaurat clientul :client', + 'activity_27': ':user a restaurat plata :payment', + 'activity_28': ':user a restaurat :credit credite', + 'activity_29': ':contact a aprobat proforma :quote pentru :client', + 'activity_30': ':user a creat furnizorul :vendor', + 'activity_31': ':user a arhivat furnizorul :vendor', + 'activity_32': ':user a șters furnizorul :vendor', + 'activity_33': ':user a restaurat furnizorul :vendor', + 'activity_34': ':user a creat cheltuiala :expense', + 'activity_35': ':user a arhivat cheltuiala :expense', + 'activity_36': ':user a șters cheltuiala :expense', + 'activity_37': ':user a restaurat cheltuiala :expense', + 'activity_39': ':user cancelled a :payment_amount payment :payment', 'activity_40': - ':user vratio :adjustment od :payment_amount plaćanja :payment', - 'activity_41': ':payment_amount plaćanje (:payment) nije uspelo', - 'activity_42': ':user kreirao zadatak :task', - 'activity_43': ':user ažurirao zadatak :task', - 'activity_44': ':user arhivirao zadatak :task', - 'activity_45': ':user obrisao zadatak :task', - 'activity_46': ':user obnovio zadatak :task', - 'activity_47': ':user ažurirao trošak :expense', - 'activity_48': ':user ažurirao tiket :ticket', - 'activity_49': ':user zatvorio tiket :ticket', - 'activity_50': ':user spojio tiket :ticket', - 'activity_51': ':user podelio tiket :ticket', - 'activity_52': ':contact otvorio tiket :ticket', - 'activity_53': ':contact obnovio tiket :ticket', - 'activity_54': ':user obnovio tiket :ticket', - 'activity_55': ':contact odgovorio na tiket :ticket', - 'activity_56': ':user pogledao tiket :ticket', - 'activity_57': 'Sistem nije uspeo da pošalje račun e-poštom :invoice', - 'activity_58': ':user promenio račun :invoice', - 'activity_59': ':user otkazao račun :invoice', - 'activity_60': ':contact pregledao predračun :quote', - 'activity_61': ':user ažurirao klijenta :client', - 'activity_62': ':user je ažurirao dobavljača :vendor', + ':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', + 'activity_44': ':user archived task :task', + 'activity_45': ':user deleted task :task', + 'activity_46': ':user restored task :task', + 'activity_47': ':user updated expense :expense', + 'activity_48': ':user updated ticket :ticket', + 'activity_49': ':user closed ticket :ticket', + 'activity_50': ':user merged ticket :ticket', + 'activity_51': ':user split ticket :ticket', + 'activity_52': ':contact opened ticket :ticket', + 'activity_53': ':contact reopened ticket :ticket', + 'activity_54': ':user reopened ticket :ticket', + 'activity_55': ':contact replied ticket :ticket', + 'activity_56': ':user viewed ticket :ticket', + 'activity_57': 'System failed to email invoice :invoice', + 'activity_58': ':user reversed invoice :invoice', + 'activity_59': ':user cancelled invoice :invoice', + 'activity_60': ':contact viewed quote :quote', + 'activity_61': ':user updated client :client', + 'activity_62': ':user updated vendor :vendor', 'activity_63': - ':user je e-poštom poslao prvi podsetnik za račun :invoice na :contact', + ':user emailed first reminder for invoice :invoice to :contact', 'activity_64': - ':user je e-poštom poslao drugi podsetnik za račun :invoice na :contact', + ':user emailed second reminder for invoice :invoice to :contact', 'activity_65': - ':user je e-poštom poslao treći podsetnik za račun :invoice na :contact', + ':user emailed third reminder for invoice :invoice to :contact', 'activity_66': - ':user je e-poštom poslao konstantan podsetnik za račun :invoice na :contact', - 'activity_80': ':user je kreirao pretplatu :subscription', - 'activity_81': ':user je ažurirao pretplatu :subscription', - 'activity_82': ':user je arhivirao pretplatu :subscription', - 'activity_83': ':user je obrisao pretplatu :subscription', - 'activity_84': ':user je vratio pretplatu :subscription', - 'one_time_password': 'Jednokratna lozinka', - 'emailed_quote': 'Predračun je uspešno poslat e-poštom', - 'emailed_credit': 'Kredit je uspešno poslat e-poštom', - 'marked_quote_as_sent': 'Ponuda uspešno obeležena kao poslata', - 'marked_credit_as_sent': 'Kredit je uspešno označen kao poslat', - 'expired': 'Isteklo', - 'all': 'Sve', - 'select': 'Odaberi', - 'long_press_multiselect': 'Dugo pritisnite Multiselect', - 'custom_value1': 'Prilagođena Vrednost', - 'custom_value2': 'Prilagođena Vrednost', - 'custom_value3': 'Prilagođena Vrednost 3', - 'custom_value4': 'Prilagođena Vrednost 4', - 'email_style_custom': 'Prilagođeni stil e-pošte', - 'custom_message_dashboard': 'Prilagođena poruka na kontrolnoj tabli', - 'custom_message_unpaid_invoice': - 'Prilagođena poruka o neplaćenom računu', - 'custom_message_paid_invoice': 'Prilagođena poruka o plaćenom računu', - 'custom_message_unapproved_quote': - 'Prilagođena poruka o neodobrenoj ponudi', - 'lock_invoices': 'Zaključaj račune', - 'translations': 'Prevodi', - 'task_number_pattern': 'Obrazac broja zadatka', - 'task_number_counter': 'Brojač broja zadataka', - 'expense_number_pattern': 'Obrazac broja troškova', - 'expense_number_counter': 'Brojač broja troškova', - 'vendor_number_pattern': 'Obrazac broja dobavljača', - 'vendor_number_counter': 'Brojač broja dobavljača', - 'ticket_number_pattern': 'Obrazac broja tiketa', - 'ticket_number_counter': 'Brojač broja tiketa', - 'payment_number_pattern': 'Obrazac broja plaćanja', - 'payment_number_counter': 'Brojač broja plaćanja', - 'invoice_number_pattern': 'Obrazac broja računa', - 'invoice_number_counter': 'Brojač računa', - 'quote_number_pattern': 'Obrazac broja ponude', - 'quote_number_counter': 'Brojač ponuda', - 'client_number_pattern': 'Obrazac broja kredita', - 'client_number_counter': 'Brojač broja kredita', - 'credit_number_pattern': 'Obrazac broja kredita', - 'credit_number_counter': 'Brojač broja kredita', - 'reset_counter_date': 'Ponovo podesite datum brojača', - 'counter_padding': 'Ispuna ispred broja brojača', - 'shared_invoice_quote_counter': 'Zajednički brojač ponuda računa', - 'default_tax_name_1': 'Podrazumevani naziv poreza 1', - 'default_tax_rate_1': 'Podrazumevana poreska stopa 1', - 'default_tax_name_2': 'Podrazumevani naziv poreza 2', - 'default_tax_rate_2': 'Podrazumevana poreska stopa 2', - 'default_tax_name_3': 'Podrazumevani naziv poreza 3', - 'default_tax_rate_3': 'Podrazumevana poreska stopa 3', - 'email_subject_invoice': 'Pošalji e-poštom predmet fakture', - 'email_subject_quote': 'Pošalji e-poštom predmet ponude', - 'email_subject_payment': 'Pošalji e-poštom predmet plaćanja', - 'email_subject_payment_partial': 'Predmet delimičnog plaćanja e-pošte', - 'show_table': 'Prikaži tabelu', - 'show_list': 'Prikažu listu', - 'client_city': 'Grad klijenta', - 'client_state': 'Država klijenta', - 'client_country': 'Država klijenta', - 'client_is_active': 'Klijent je aktivan', - 'client_balance': 'Stanje klijenta', - 'client_address1': 'Ulica klijenta', - 'client_address2': 'Stan/Apartman klijenta', - 'vendor_address1': 'Ulica dobavljača', - 'vendor_address2': 'Stan/apartman dobavljača', - 'client_shipping_address1': 'Adresa za isporuku klijentu', - 'client_shipping_address2': 'Adresa za isporuku- stan/apartman klijentu', + ':user emailed endless reminder for invoice :invoice to :contact', + 'activity_80': ':user created subscription :subscription', + 'activity_81': ':user updated subscription :subscription', + 'activity_82': ':user archived subscription :subscription', + 'activity_83': ':user deleted subscription :subscription', + 'activity_84': ':user restored subscription :subscription', + 'one_time_password': 'One Time Password', + 'emailed_quote': 'Proformă trimisă cu succes', + 'emailed_credit': 'Successfully emailed credit', + 'marked_quote_as_sent': 'Successfully marked quote as sent', + 'marked_credit_as_sent': 'Successfully marked credit as sent', + 'expired': 'Expired', + 'all': 'All', + 'select': 'Selecteaza', + 'long_press_multiselect': 'Long-press Multiselect', + 'custom_value1': 'Custom Value', + 'custom_value2': 'Custom Value', + 'custom_value3': 'Custom Value 3', + 'custom_value4': 'Custom Value 4', + 'email_style_custom': 'Custom Email Style', + 'custom_message_dashboard': 'Custom Dashboard Message', + 'custom_message_unpaid_invoice': 'Custom Unpaid Invoice Message', + 'custom_message_paid_invoice': 'Custom Paid Invoice Message', + 'custom_message_unapproved_quote': 'Custom Unapproved Quote Message', + 'lock_invoices': 'Lock Invoices', + 'translations': 'Translations', + 'task_number_pattern': 'Task Number Pattern', + 'task_number_counter': 'Task Number Counter', + 'expense_number_pattern': 'Expense Number Pattern', + 'expense_number_counter': 'Expense Number Counter', + 'vendor_number_pattern': 'Vendor Number Pattern', + 'vendor_number_counter': 'Vendor Number Counter', + 'ticket_number_pattern': 'Ticket Number Pattern', + 'ticket_number_counter': 'Ticket Number Counter', + 'payment_number_pattern': 'Payment Number Pattern', + 'payment_number_counter': 'Payment Number Counter', + 'invoice_number_pattern': 'Invoice Number Pattern', + 'invoice_number_counter': 'Plajă număr factură', + 'quote_number_pattern': 'Quote Number Pattern', + 'quote_number_counter': 'Plajă număr proformă', + 'client_number_pattern': 'Credit Number Pattern', + 'client_number_counter': 'Credit Number Counter', + 'credit_number_pattern': 'Credit Number Pattern', + 'credit_number_counter': 'Credit Number Counter', + 'reset_counter_date': 'Reset Counter Date', + 'counter_padding': 'Counter Padding', + 'shared_invoice_quote_counter': 'Shared Invoice Quote Counter', + 'default_tax_name_1': 'Default Tax Name 1', + 'default_tax_rate_1': 'Default Tax Rate 1', + 'default_tax_name_2': 'Default Tax Name 2', + 'default_tax_rate_2': 'Default Tax Rate 2', + 'default_tax_name_3': 'Default Tax Name 3', + 'default_tax_rate_3': 'Default Tax Rate 3', + 'email_subject_invoice': 'Email Invoice Subject', + 'email_subject_quote': 'Email Quote Subject', + 'email_subject_payment': 'Email Payment Subject', + 'email_subject_payment_partial': 'Email Partial Payment Subject', + 'show_table': 'Show Table', + 'show_list': 'Show List', + 'client_city': 'Client City', + 'client_state': 'Client State', + 'client_country': 'Client Country', + 'client_is_active': 'Client is Active', + 'client_balance': 'Client Balance', + 'client_address1': 'Client Street', + 'client_address2': 'Client Apt/Suite', + 'vendor_address1': 'Vendor Street', + 'vendor_address2': 'Vendor Apt/Suite', + 'client_shipping_address1': 'Client Shipping Street', + 'client_shipping_address2': 'Client Shipping Apt/Suite', 'type': 'Tip', - 'invoice_amount': 'Iznos računa', - 'invoice_due_date': 'Datum dospeća', - 'tax_rate1': 'Poreska stopa 1', - 'tax_rate2': 'Poreska stopa 2', - 'tax_rate3': 'Poreska stopa 3', - 'auto_bill': 'Auto naplata', - 'archived_at': 'Arhivirano u', - 'has_expenses': 'Ima troškove', - 'custom_taxes1': 'Prilagođeni porezi 1', - 'custom_taxes2': 'Prilagođeni porezi 2', - 'custom_taxes3': 'Prilagođeni porezi 3', - 'custom_taxes4': 'Prilagođeni porezi 4', - 'custom_surcharge1': 'Prilagođena doplata 1', - 'custom_surcharge2': 'Prilagođena doplata 2', - 'custom_surcharge3': 'Prilagođena doplata 3', - 'custom_surcharge4': 'Prilagođena doplata 4', - 'is_deleted': 'Je obrisan', - 'vendor_city': 'Grad dobavljača', - 'vendor_state': 'Država dobavljača', - 'vendor_country': 'Država dobavljača', - 'is_approved': 'Je odobren', - 'tax_name': 'Naziv poreza', - 'tax_amount': 'Iznos poreza', - 'tax_paid': 'Porez Plaćen', - 'payment_amount': 'Iznos uplate', - 'age': 'Period', - 'is_running': 'je pokrenuto', - 'time_log': 'Vremenski zapisi', - 'bank_id': 'Banka', - 'expense_category_id': 'ID kategorije troškova', - 'expense_category': 'Kategorija troškova', - 'invoice_currency_id': 'ID valute računa', - 'tax_name1': 'Naziv poreza 1', - 'tax_name2': 'Naziv poreza 2', - 'tax_name3': 'Naziv poreza 3', - 'transaction_id': 'ID transakcije', + 'invoice_amount': 'Valoare Factură', + 'invoice_due_date': 'Data Scadenta', + 'tax_rate1': 'Tax Rate 1', + 'tax_rate2': 'Tax Rate 2', + 'tax_rate3': 'Tax Rate 3', + 'auto_bill': 'Auto Facturare', + 'archived_at': 'Archived At', + 'has_expenses': 'Has Expenses', + 'custom_taxes1': 'Custom Taxes 1', + 'custom_taxes2': 'Custom Taxes 2', + 'custom_taxes3': 'Custom Taxes 3', + 'custom_taxes4': 'Custom Taxes 4', + 'custom_surcharge1': 'Custom Surcharge 1', + 'custom_surcharge2': 'Custom Surcharge 2', + 'custom_surcharge3': 'Custom Surcharge 3', + 'custom_surcharge4': 'Custom Surcharge 4', + 'is_deleted': 'Is Deleted', + 'vendor_city': 'Vendor City', + 'vendor_state': 'Vendor State', + 'vendor_country': 'Vendor Country', + 'is_approved': 'Is Approved', + 'tax_name': 'Tax Name', + 'tax_amount': 'Tax Amount', + 'tax_paid': 'Tax Paid', + 'payment_amount': 'Valoare plata', + 'age': 'Age', + 'is_running': 'Is Running', + 'time_log': 'Log Timp', + 'bank_id': 'Banca', + 'expense_category_id': 'Expense Category ID', + 'expense_category': 'Expense Category', + 'invoice_currency_id': 'Invoice Currency ID', + 'tax_name1': 'Tax Name 1', + 'tax_name2': 'Tax Name 2', + 'tax_name3': 'Tax Name 3', + 'transaction_id': 'Transaction ID', 'status_color_theme': 'Status Color Theme', 'load_color_theme': 'Load Color Theme', }, - 'sk': { + 'ru_RU': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'The fee for a :amount invoice would be :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Одобрить', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -55515,7 +50146,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'convert_to': 'Convert To', 'client_currency': 'Client Currency', 'company_currency': 'Company Currency', - 'purged_client': 'Klient bol úspešne vyčistený', + 'purged_client': 'Successfully purged client', 'custom_emails_disabled_help': 'To prevent spam we require upgrading to a paid account to customize the email', 'upgrade_to_add_company': 'Upgrade your plan to add companies', @@ -55551,7 +50182,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'giropay': 'GiroPay', 'direct_debit': 'Direct Debit', 'please_set_a_password': 'Please set an account password', - 'set_password': 'Nastaviť heslo', + 'set_password': 'Установить пароль', 'recommend_desktop': 'We recommend using the desktop app for the best performance', 'recommend_mobile': @@ -55573,15 +50204,15 @@ mixin LocalizationsProvider on LocaleCodeAware { 'registration': 'Registration', 'unauthorized_stripe_warning': 'Please authorize Stripe to accept online payments.', - 'view_expense': 'Zobraziť výdaje # :expense', - 'view_statement': 'Zobraziť Výkaz', - 'sepa': 'platba SEPA', + 'view_expense': 'View expense # :expense', + 'view_statement': 'View Statement', + 'sepa': 'SEPA Direct Debit', 'ideal': 'iDEAL', 'przelewy24': 'Przelewy24', 'eps': 'EPS', 'fpx': 'FPX', 'update_all_records': 'Update all records', - 'system': 'Systém', + 'system': 'Сичтема', 'set_default_company': 'Set Default Company', 'updated_company': 'Successfully updated company', 'kbc': 'KBC', @@ -55597,18 +50228,18 @@ mixin LocalizationsProvider on LocaleCodeAware { 'bulk_email_invoice': 'Email Invoice', 'bulk_email_quote': 'Email Quote', 'bulk_email_credit': 'Email Credit', - 'from_name': 'Meno odosielateľa', + 'from_name': 'From Name', 'clone_to_expense': 'Clone to expense', - 'recurring_expense': 'Pravidelné výdaje', - 'recurring_expenses': 'Pravidelné výdaje', - 'new_recurring_expense': 'Nové pravidelné výdaje', - 'edit_recurring_expense': 'Upraviť pravidelné výdaje', - 'created_recurring_expense': 'Pravidelné výdaje úspešne vytvorené', - 'updated_recurring_expense': 'Pravidelné výdaje úspešne upravené', - 'archived_recurring_expense': 'Pravidelné výdaje úspešne archivované', - 'deleted_recurring_expense': 'Projekt úspešne zmazaný', + 'recurring_expense': 'Recurring Expense', + 'recurring_expenses': 'Recurring Expenses', + 'new_recurring_expense': 'New Recurring Expense', + 'edit_recurring_expense': 'Edit Recurring Expense', + 'created_recurring_expense': 'Successfully created recurring expense', + 'updated_recurring_expense': 'Повторяющаяся Затрата успешно обновлена', + 'archived_recurring_expense': 'Successfully archived recurring expense', + 'deleted_recurring_expense': 'Проект успешно удален', 'removed_recurring_expense': 'Successfully removed recurring expense', - 'restored_recurring_expense': 'Pravidelné výdaje úspešne obnovené', + 'restored_recurring_expense': 'Successfully restored recurring expense', 'search_recurring_expense': 'Search Recurring Expense', 'search_recurring_expenses': 'Search Recurring Expenses', 'last_sent_date': 'Last Sent Date', @@ -55630,7 +50261,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'expense_tax_help': 'Item tax rates are disabled', 'enable_markdown': 'Enable Markdown', 'enable_markdown_help': 'Convert markdown to HTML on the PDF', - 'user_guide': 'Užívateľská príručka', + 'user_guide': 'Руководство пользователя', 'add_second_contact': 'Add Second Contact', 'previous_page': 'Previous Page', 'next_page': 'Next Page', @@ -55648,7 +50279,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Table Alternate Row Background Color', 'invoice_header_background_color': 'Invoice Header Background Color', 'invoice_header_font_color': 'Invoice Header Font Color', - 'net_subtotal': 'Netto', + 'net_subtotal': 'Net', 'review_app': 'Review App', 'check_status': 'Check Status', 'free_trial': 'Free Trial', @@ -55664,7 +50295,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'subdomain_guide': 'The subdomain is used in the client portal to personalize links to match your brand. ie, https://your-brand.invoicing.co', 'send_time': 'Send Time', - 'import_data': 'Importovať údaje', + 'import_data': 'Импорт данных', 'import_settings': 'Import Settings', 'json_file_missing': 'Please provide the JSON file', 'json_option_missing': 'Please select to import the settings and/or data', @@ -55705,24 +50336,24 @@ mixin LocalizationsProvider on LocaleCodeAware { 'credit_created': 'Credit Created', 'pro': 'Pro', 'enterprise': 'Enterprise', - 'last_updated': 'Naposledy upravený', + 'last_updated': 'Последнее обновление', 'invoice_item': 'Invoice Item', 'quote_item': 'Quote Item', - 'contact_first_name': 'Krstné meno kontaktu', - 'contact_last_name': 'Priezvisko kontaktu', + 'contact_first_name': 'Contact First Name', + 'contact_last_name': 'Contact Last Name', 'order': 'Order', - 'unassigned': 'Nepridelené', - 'partial_value': 'Musí byť väčšie ako 0 a menej ako celkový súčet', + 'unassigned': 'Unassigned', + 'partial_value': 'Должно быть больше нуля и меньше, чем всего', 'search_kanban': 'Search Kanban', 'search_kanbans': 'Search Kanban', 'kanban': 'Kanban', - 'enable': 'Povoliť', + 'enable': 'Включить', 'move_top': 'Move Top', 'move_up': 'Move Up', 'move_down': 'Move Down', 'move_bottom': 'Move Bottom', 'subdomain_help': - 'Nastavte subdoménu alebo zobrazte faktúru na vlastnom webe.', + 'Set the subdomain or display the invoice on your own website.', 'body_variable_missing': 'Error: the custom email must include a :body variable', 'add_body_variable_message': 'Make sure to include a :body variable', @@ -55760,7 +50391,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'refund_period': 'Refund Period', 'webhook_configuration': 'Webhook Configuration', 'purchase_page': 'Purchase Page', - 'security': 'Zabezpečenie', + 'security': 'Security', 'email_bounced': 'Email Bounced', 'email_spam_complaint': 'Spam Complaint', 'email_delivery': 'Email Delivery', @@ -55771,12 +50402,12 @@ mixin LocalizationsProvider on LocaleCodeAware { 'pdf_success': 'PDF Success', 'modified': 'Modified', 'subscription': 'Subscription', - 'subscriptions': 'Predplatné', + 'subscriptions': 'Subscriptions', 'new_subscription': 'New Subscription', - 'edit_subscription': 'Aktualizovať predplatné', - 'created_subscription': 'Predplatné úspešne vytvorené', - 'updated_subscription': 'Predplatné úspešne aktualizované', - 'archived_subscription': 'Predplatné úspešne aktualizované', + 'edit_subscription': 'Edit Subscription', + 'created_subscription': 'Successfully created subscription', + 'updated_subscription': 'Successfully updated subscription', + 'archived_subscription': 'Successfully archived subscription', 'deleted_subscription': 'Successfully deleted subscription', 'removed_subscription': 'Successfully removed subscription', 'restored_subscription': 'Successfully restored subscription', @@ -55803,100 +50434,98 @@ mixin LocalizationsProvider on LocaleCodeAware { 'Warning: Changing your phone number will disable 2FA', 'help_translate': 'Help Translate', 'please_select_a_country': 'Please select a country', - 'resend_invite': 'Znova odoslať Pozvánku', + 'resend_invite': 'Послать приглашение еще раз', 'disabled_two_factor': 'Successfully disabled 2FA', 'connected_google': 'Successfully connected account', 'disconnected_google': 'Successfully disconnected account', 'delivered': 'Delivered', - 'bounced': 'Odmietnuté', + 'bounced': 'Bounced', 'spam': 'Spam', 'view_docs': 'View Docs', 'enter_phone_to_enable_two_factor': 'Please provide a mobile phone number to enable two factor authentication', 'send_sms': 'Send SMS', 'sms_code': 'SMS Code', - 'two_factor_setup_help': - 'Naskenujte čiarový kód pomocou aplikácie kompatibilnej s :link.', - 'enabled_two_factor': 'Dvojfaktorové overovanie úspešne nastavené', + 'two_factor_setup_help': 'Scan the bar code with a :link compatible app.', + 'enabled_two_factor': 'Successfully enabled Two-Factor Authentication', 'connect_google': 'Connect Google', 'disconnect_google': 'Disconnect Google', - 'enable_two_factor': 'Dvojfaktorové overovanie', + 'enable_two_factor': 'Two-Factor Authentication', 'disable_two_factor': 'Disable Two Factor', 'require_password_with_social_login': 'Require Password with Social Login', - 'stay_logged_in': 'Zostať prihlásený', - 'session_about_to_expire': 'Varovanie: Vaša relácia čoskoro vyprší.', - 'count_hours': ':count hodín', - 'count_day': '1 deň', - 'count_days': ':count dní', - 'web_session_timeout': 'čas relácie vypršal', - 'security_settings': 'Nastavenia zabezpečenia', - 'resend_email': 'Preposlať email', - 'confirm_your_email_address': 'Prosím, potvrďte svoju emailovú adresu', - 'refunded_payment': 'Vrátená platba', + 'stay_logged_in': 'Stay Logged In', + 'session_about_to_expire': 'Warning: Your session is about to expire', + 'count_hours': ':count Hours', + 'count_day': '1 Day', + 'count_days': ':count Days', + 'web_session_timeout': 'Web Session Timeout', + 'security_settings': 'Security Settings', + 'resend_email': 'Resend Email', + 'confirm_your_email_address': 'Please confirm your email address', + 'refunded_payment': 'Refunded Payment', 'partially_unapplied': 'Partially Unapplied', - 'select_a_gmail_user': - 'Prosím vyber používateľskú autentifikáciu cez Gmail', + 'select_a_gmail_user': 'Please select a user authenticated with Gmail', 'list_long_press': 'List Long Press', - 'show_actions': 'Ukáž akciu', - 'start_multiselect': 'Začať viacnásobný výber', + 'show_actions': 'Show Actions', + 'start_multiselect': 'Start Multiselect', 'email_sent_to_confirm_email': 'An email has been sent to confirm the email address', 'counter_pattern_error': - 'Ak chcete použiť :client_counter, pridajte buď :client_number alebo :client_id_number, aby ste predišli konfliktom', - 'this_quarter': 'Tento štvrťrok', - 'last_quarter': 'Posledný Štvrťrok', - 'to_update_run': 'Ak chcete aktualizovať spustite', - 'convert_to_invoice': 'Previesť na faktúru', - 'registration_url': 'Registračná adresa URL', - 'invoice_project': 'Faktúrovať projekt', - 'invoice_task': 'Fakturovať úlohu', - 'invoice_expense': 'Faktúrovať výdaje', - 'search_payment_term': 'Hľadať 1 platobný termín', - 'search_payment_terms': 'Hľadať :count platobné podmienky', - 'save_and_preview': 'Uložiť a zobraziť ukážku', - 'save_and_email': 'Uložiť a poslať e-mailom', - 'supported_events': 'Podporované udalosti', - 'converted_amount': 'Konvertovaná suma', - 'converted_balance': 'Prepočítaný zostatok', + 'To use :client_counter please add either :client_number or :client_id_number to prevent conflicts', + 'this_quarter': 'This Quarter', + 'last_quarter': 'Last Quarter', + 'to_update_run': 'To update run', + 'convert_to_invoice': 'Конвертировать в счёт', + 'registration_url': 'Registration URL', + 'invoice_project': 'Invoice Project', + 'invoice_task': 'Включить в счет', + 'invoice_expense': 'Invoice Expense', + 'search_payment_term': 'Search 1 Payment Term', + 'search_payment_terms': 'Search :count Payment Terms', + 'save_and_preview': 'Save and Preview', + 'save_and_email': 'Save and Email', + 'supported_events': 'Supported Events', + 'converted_amount': 'Converted Amount', + 'converted_balance': 'Converted Balance', 'converted_paid_to_date': 'Converted Paid to Date', 'converted_credit_balance': 'Converted Credit Balance', 'converted_total': 'Converted Total', - 'is_sent': 'Je odoslaná', - 'default_documents': 'Predvolené dokumenty', - 'document_upload': 'Nahratie dokumentu', - 'document_upload_help': 'Umožnite klientom nahrávať dokumenty', - 'expense_total': 'Celkové náklady', - 'enter_taxes': 'Zadajte dane', - 'by_rate': 'Podľa sadzby', - 'by_amount': 'Podľa sumy', - 'enter_amount': 'Zadajte čiastku', - 'before_taxes': 'Pred zdanením', - 'after_taxes': 'Po zdanení', - 'color': 'Farba', - 'show': 'Zobraziť', - 'hide': 'Skryť', - 'empty_columns': 'Prázdne stĺpce', - 'debug_mode_is_enabled': 'Režim ladenia je povolený', + 'is_sent': 'Is Sent', + 'default_documents': 'Документы по умолчанию', + 'document_upload': 'Document Upload', + 'document_upload_help': 'Enable clients to upload documents', + 'expense_total': 'Expense Total', + 'enter_taxes': 'Enter Taxes', + 'by_rate': 'By Rate', + 'by_amount': 'By Amount', + 'enter_amount': 'Enter Amount', + 'before_taxes': 'Before Taxes', + 'after_taxes': 'After Taxes', + 'color': 'Color', + 'show': 'Show', + 'hide': 'Скрыть', + 'empty_columns': 'Empty Columns', + 'debug_mode_is_enabled': 'Debug mode is enabled', 'debug_mode_is_enabled_help': - 'Upozornenie: je to určené na použitie na lokálnych počítačoch, môže dôjsť k úniku poverení. Kliknutím sa dozviete viac.', - 'running_tasks': 'Spustené úlohy', - 'recent_tasks': 'Nedávne úlohy', - 'recent_expenses': 'Nedávne výdavky', - 'upcoming_expenses': 'Nadchádzajúce výdavky', - 'update_app': 'Aktualizovať aplikáciu', - 'started_import': 'Import bol úspešne spustený', - 'duplicate_column_mapping': 'Duplicitné mapovanie stĺpcov', - 'uses_inclusive_taxes': 'Používa inkluzívne dane', - 'is_amount_discount': 'Je zľava vo výške', - 'column': 'Stĺpec', - 'sample': 'Vzorka', - 'map_to': 'Mapovať', - 'import': 'Import', - 'first_row_as_column_names': 'Ako názvy stĺpcov použite prvý riadok', - 'select_file': 'Vyberte súbor', - 'no_file_selected': 'Nie je zvolený žiadny súbor', - 'csv_file': 'Súbor CSV', + 'Warning: it is intended for use on local machines, it can leak credentials. Click to learn more.', + 'running_tasks': 'Running Tasks', + 'recent_tasks': 'Recent Tasks', + 'recent_expenses': 'Recent Expenses', + 'upcoming_expenses': 'Upcoming Expenses', + 'update_app': 'Update App', + 'started_import': 'Successfully started import', + 'duplicate_column_mapping': 'Duplicate column mapping', + 'uses_inclusive_taxes': 'Uses Inclusive Taxes', + 'is_amount_discount': 'Is Amount Discount', + 'column': 'Столбец', + 'sample': 'Пример', + 'map_to': 'Map To', + 'import': 'Импорт', + 'first_row_as_column_names': 'Use first row as column names', + 'select_file': 'Укажите файл', + 'no_file_selected': 'No File Selected', + 'csv_file': 'CSV-файл', 'csv': 'CSV', 'freshbooks': 'FreshBooks', 'invoice2go': 'Invoice2go', @@ -55905,1576 +50534,1595 @@ mixin LocalizationsProvider on LocaleCodeAware { 'zoho': 'Zoho', 'accounting': 'Accounting', 'required_files_missing': 'Please provide all CSVs.', - 'import_type': 'Typ importu', + 'import_type': 'Import Type', 'html_mode': 'HTML Mode', 'html_mode_help': 'Preview updates faster but is less accurate', - 'view_licenses': 'Zobraziť licencie', + 'view_licenses': 'View Licenses', 'webhook_url': 'Webhook URL', - 'fullscreen_editor': 'Celoobrazovkový editor', - 'sidebar_editor': 'Editor bočného panelu', - 'please_type_to_confirm': 'Potvrďte zadaním „:value“.', - 'purge': 'Vyčistiť', - 'service': 'Služba', - 'clone_to': 'Klonovať do', - 'clone_to_other': 'Klonovať do iného', - 'labels': 'Štítky', - 'add_custom': 'Pridať vlastné', - 'payment_tax': 'Platba dane', - 'unpaid': 'Nezaplatené', - 'white_label': 'Biely štítok', - 'delivery_note': 'Dodací list', - 'sent_invoices_are_locked': 'Odoslané faktúry sú uzamknuté', - 'paid_invoices_are_locked': 'Zaplatené faktúry sú uzamknuté', - 'source_code': 'Zdrojový kód', - 'app_platforms': 'Platformy aplikácií', - 'invoice_late': 'Oneskorená faktúra', - 'quote_expired': 'Platnosť ponuky vypršala', - 'partial_due': 'Čiastočná splatnosť', - 'invoice_total': 'Celkom k úhrade', - 'quote_total': 'Ponuka celkom', - 'credit_total': 'Celkový kredit', - 'recurring_invoice_total': 'Celková faktúra', - 'actions': 'Akcie', - 'expense_number': 'Číslo výdavku', - 'task_number': 'Číslo úlohy', - 'project_number': 'Čislo projektu', - 'project_name': 'Názov projektu', - 'warning': 'Varovanie', - 'view_settings': 'Zobraziť nastavenia', + 'fullscreen_editor': 'Fullscreen Editor', + 'sidebar_editor': 'Sidebar Editor', + 'please_type_to_confirm': 'Please type \":value\" to confirm', + 'purge': 'Purge', + 'service': 'Услуга', + 'clone_to': 'Clone To', + 'clone_to_other': 'Clone to Other', + 'labels': 'Labels', + 'add_custom': 'Add Custom', + 'payment_tax': 'Payment Tax', + 'unpaid': 'Неоплачено', + 'white_label': 'White Label', + 'delivery_note': 'Delivery Note', + 'sent_invoices_are_locked': 'Sent invoices are locked', + 'paid_invoices_are_locked': 'Paid invoices are locked', + 'source_code': 'Source Code', + 'app_platforms': 'App Platforms', + 'invoice_late': 'Invoice Late', + 'quote_expired': 'Quote Expired', + 'partial_due': 'Partial Due', + 'invoice_total': 'Итого счёта', + 'quote_total': 'Всего', + 'credit_total': 'Credit Total', + 'recurring_invoice_total': 'Invoice Total', + 'actions': 'Actions', + 'expense_number': 'Expense Number', + 'task_number': 'Task Number', + 'project_number': 'Project Number', + 'project_name': 'Project Name', + 'warning': 'Warning', + 'view_settings': 'View Settings', 'company_disabled_warning': - 'Upozornenie: Táto spoločnosť ešte nebola aktivovaná', - 'late_invoice': 'Oneskorená faktúra', - 'expired_quote': 'Platnosť cenovej ponuky vypršala', - 'remind_invoice': 'Pripomenúť faktúru', - 'cvv': 'CVC kód', - 'client_name': 'Meno zákazníka', - 'client_phone': 'Telefón klienta', - 'required_fields': 'Povinné polia', - 'calculated_rate': 'Vypočítaná sadzba', - 'default_task_rate': 'Predvolená miera úloh', - 'clear_cache': 'Vymazať vyrovnávaciu pamäť', - 'sort_order': 'Poradie zoradenia', - 'task_status': 'Stav', - 'task_statuses': 'Stavy úloh', - 'new_task_status': 'Stav novej úlohy', - 'edit_task_status': 'Upraviť stav úlohy', - 'created_task_status': 'Stav úlohy bol úspešne vytvorený', - 'updated_task_status': 'Úspešne aktualizovať stav úlohy', - 'archived_task_status': 'Stav úlohy bol úspešne archivovaný', - 'deleted_task_status': 'Stav úlohy bol úspešne odstránený', - 'removed_task_status': 'Stav úlohy bol úspešne odstránený', - 'restored_task_status': 'Stav úlohy bol úspešne obnovený', - 'archived_task_statuses': 'Stavy úloh :value boli úspešne archivované', - 'deleted_task_statuses': 'Stavy úloh :value boli úspešne odstránené', - 'restored_task_statuses': 'Stavy úloh :value boli úspešne obnovené', - 'search_task_status': 'Hľadať 1 stav úlohy', - 'search_task_statuses': 'Hľadať: count stavy úloh', - 'show_tasks_table': 'Zobraziť tabuľku úloh', + 'Warning: this company has not yet been activated', + 'late_invoice': 'Late Invoice', + 'expired_quote': 'Expired Quote', + 'remind_invoice': 'Remind Invoice', + 'cvv': 'CVV', + 'client_name': 'Имя клиента', + 'client_phone': 'Client Phone', + 'required_fields': 'Required Fields', + 'calculated_rate': 'Calculated Rate', + 'default_task_rate': 'Default Task Rate', + 'clear_cache': 'Clear Cache', + 'sort_order': 'Sort Order', + 'task_status': 'Status', + 'task_statuses': 'Task Statuses', + 'new_task_status': 'New Task Status', + 'edit_task_status': 'Edit Task Status', + 'created_task_status': 'Successfully created task status', + 'updated_task_status': 'Successfully update task status', + 'archived_task_status': 'Successfully archived task status', + 'deleted_task_status': 'Successfully deleted task status', + 'removed_task_status': 'Successfully removed task status', + 'restored_task_status': 'Successfully restored task status', + 'archived_task_statuses': 'Successfully archived :value task statuses', + 'deleted_task_statuses': 'Successfully deleted :value task statuses', + 'restored_task_statuses': 'Successfully restored :value task statuses', + 'search_task_status': 'Search 1 Task Status', + 'search_task_statuses': 'Search :count Task Statuses', + 'show_tasks_table': 'Show Tasks Table', 'show_tasks_table_help': - 'Pri vytváraní faktúr vždy zobrazovať sekciu úloh', - 'invoice_task_timelog': 'Časový denník fakturačnej úlohy', - 'invoice_task_timelog_help': - 'Pridajte časové údaje do riadkových položiek faktúry', + 'Always show the tasks section when creating invoices', + 'invoice_task_timelog': 'Invoice Task Timelog', + 'invoice_task_timelog_help': 'Add time details to the invoice line items', 'invoice_task_datelog': 'Invoice Task Datelog', 'invoice_task_datelog_help': 'Add date details to the invoice line items', - 'auto_start_tasks_help': 'Pred uložením začnite úlohy', - 'configure_statuses': 'Konfigurovať stavy', - 'task_settings': 'Nastavenia úlohy', - 'configure_categories': 'Konfigurovať kategórie', - 'expense_categories': 'Kategórie výdajov', - 'new_expense_category': 'Nová kategória výdajov', - 'edit_expense_category': 'Upraviť kategóriu výdavkov', - 'created_expense_category': 'Kategória výdajov bola úspešne vytvorená', - 'updated_expense_category': - 'Kategória výdajov bola úspešne aktualizovaná', - 'archived_expense_category': 'Kategória výdajov bola úspešne archivovaná', - 'deleted_expense_category': 'Kategória bola úspešne zmazaná', - 'removed_expense_category': 'Kategória výdavkov bola úspešne odstránená', - 'restored_expense_category': 'Kategória výdajov bola úspešne obnovená', + 'auto_start_tasks_help': 'Start tasks before saving', + 'configure_statuses': 'Configure Statuses', + 'task_settings': 'Task Settings', + 'configure_categories': 'Configure Categories', + 'expense_categories': 'Категория Затрат', + 'new_expense_category': 'New Expense Category', + 'edit_expense_category': 'Edit Expense Category', + 'created_expense_category': 'Successfully created expense category', + 'updated_expense_category': 'Категория Затрат успешно обновлена', + 'archived_expense_category': 'Successfully archived expense category', + 'deleted_expense_category': 'Successfully deleted category', + 'removed_expense_category': 'Successfully removed expense category', + 'restored_expense_category': 'Successfully restored expense category', 'archived_expense_categories': - 'Počet úspešne archivovaných kategorii výdajov: :count', + 'Successfully archived :count expense category', 'deleted_expense_categories': - 'Úspešne odstránené kategórie výdavkov :value', + 'Successfully deleted expense :value categories', 'restored_expense_categories': - 'Úspešne obnovené kategórie nákladov :value', - 'search_expense_category': 'Vyhľadajte 1 kategóriu výdavkov', - 'search_expense_categories': 'Hľadať :count kategórie výdavkov', - 'use_available_credits': 'Použite dostupné kredity', - 'show_option': 'Zobraziť možnosť', - 'negative_payment_error': 'Suma kreditu nemôže presiahnuť sumu platby', - 'view_changes': 'Zobraziť zmeny', - 'force_update': 'Vynútiť aktualizáciu', + 'Successfully restored expense :value categories', + 'search_expense_category': 'Search 1 Expense Category', + 'search_expense_categories': 'Search :count Expense Categories', + 'use_available_credits': 'Use Available Credits', + 'show_option': 'Show Option', + 'negative_payment_error': + 'The credit amount cannot exceed the payment amount', + 'view_changes': 'View Changes', + 'force_update': 'Force Update', 'force_update_help': - 'Používate najnovšiu verziu, ale môžu byť k dispozícii čakajúce opravy.', - 'mark_paid_help': 'Sledujte, či bol výdavok zaplatený', - 'should_be_invoiced': 'Treba fakturovať', - 'should_be_invoiced_help': 'Povoliť fakturáciu výdavku', - 'add_documents_to_invoice_help': 'Zviditeľnite dokumenty', - 'convert_currency_help': 'Nastavte výmenný kurz', - 'expense_settings': 'Nastavenia výdavkov', - 'clone_to_recurring': 'Klonovať na opakujúce sa', - 'crypto': 'Kryptomeny', + 'You are running the latest version but there may be pending fixes available.', + 'mark_paid_help': 'Track the expense has been paid', + 'should_be_invoiced': 'Should be invoiced', + 'should_be_invoiced_help': 'Enable the expense to be invoiced', + 'add_documents_to_invoice_help': 'Make the documents visible', + 'convert_currency_help': 'Set an exchange rate', + 'expense_settings': 'Expense Settings', + 'clone_to_recurring': 'Clone to Recurring', + 'crypto': 'Crypto', 'paypal': 'PayPal', 'alipay': 'Alipay', 'sofort': 'Sofort', 'apple_pay': 'Apple/Google Pay', - 'user_field': 'Používateľské pole', - 'variables': 'Premenné', - 'show_password': 'Ukázať heslo', - 'hide_password': 'Skryť heslo', - 'copy_error': 'Chyba kopírovania', - 'capture_card': 'Zachytiť kartu', - 'auto_bill_enabled': 'Automatické účtovanie je povolené', - 'total_taxes': 'Celkové dane', - 'line_taxes': 'Riadkové dane', - 'total_fields': 'Polia celkom', - 'stopped_recurring_invoice': 'Opakovaná faktúra bola úspešne zastavená', - 'started_recurring_invoice': 'Opakovaná faktúra bola úspešne spustená', - 'resumed_recurring_invoice': 'Opakovaná faktúra bola úspešne obnovená', - 'gateway_refund': 'Vrátenie platby za bránu', - 'gateway_refund_help': - 'Spracujte vrátenie platby prostredníctvom platobnej brány', - 'due_date_days': 'Dátum splatnosti', - 'paused': 'Pozastavené', - 'mark_active': 'Označť ako Aktívne', - 'day_count': 'Deň :count', - 'first_day_of_the_month': 'Prvý deň v mesiaci', - 'last_day_of_the_month': 'Posledný deň v mesiaci', - 'use_payment_terms': 'Použite platobné podmienky', - 'endless': 'Nekonečné', - 'next_send_date': 'Dátum ďalšieho odoslania', - 'remaining_cycles': 'Zostávajúce cykly', - 'recurring_invoice': 'Pravidelná faktúra', - 'recurring_invoices': 'Pravidelné faktúry', - 'new_recurring_invoice': 'Nová pravidelná faktúra', - 'edit_recurring_invoice': 'Upraviť pravidelnú faktúru', - 'created_recurring_invoice': 'Opakovaná faktúra bola úspešne vytvorená', - 'updated_recurring_invoice': - 'Opakovaná faktúra bola úspešne aktualizovaná', - 'archived_recurring_invoice': 'Pravidelná faktúra úspešne archivovaná', - 'deleted_recurring_invoice': 'Pravidelná faktúra úspešne vymazaná', - 'removed_recurring_invoice': 'Opakovaná faktúra bola úspešne odstránená', - 'restored_recurring_invoice': 'Pravidelná faktúra úspešne obnovená', + 'user_field': 'User Field', + 'variables': 'Variables', + 'show_password': 'Show Password', + 'hide_password': 'Hide Password', + 'copy_error': 'Copy Error', + 'capture_card': 'Capture Card', + 'auto_bill_enabled': 'Auto Bill Enabled', + 'total_taxes': 'Total Taxes', + 'line_taxes': 'Line Taxes', + 'total_fields': 'Total Fields', + 'stopped_recurring_invoice': 'Successfully stopped recurring invoice', + 'started_recurring_invoice': 'Successfully started recurring invoice', + 'resumed_recurring_invoice': 'Successfully resumed recurring invoice', + 'gateway_refund': 'Gateway Refund', + 'gateway_refund_help': 'Process the refund with the payment gateway', + 'due_date_days': 'Due Date', + 'paused': 'Paused', + 'mark_active': 'Mark Active', + 'day_count': 'Day :count', + 'first_day_of_the_month': 'First Day of the Month', + 'last_day_of_the_month': 'Last Day of the Month', + 'use_payment_terms': 'Use Payment Terms', + 'endless': 'Endless', + 'next_send_date': 'Next Send Date', + 'remaining_cycles': 'Remaining Cycles', + 'recurring_invoice': 'Повторяющийся счет', + 'recurring_invoices': 'Повторяющиеся счета', + 'new_recurring_invoice': 'Создать повторяющийся счет', + 'edit_recurring_invoice': 'Edit Recurring Invoice', + 'created_recurring_invoice': 'Successfully created recurring invoice', + 'updated_recurring_invoice': 'Successfully updated recurring invoice', + 'archived_recurring_invoice': 'Successfully archived recurring invoice', + 'deleted_recurring_invoice': 'Successfully deleted recurring invoice', + 'removed_recurring_invoice': 'Successfully removed recurring invoice', + 'restored_recurring_invoice': 'Successfully restored recurring invoice', 'archived_recurring_invoices': - 'Úspešne archivované opakujúce sa :value faktúry', + 'Successfully archived recurring :value invoices', 'deleted_recurring_invoices': - 'Úspešne odstránené opakujúce sa :value faktúry', + 'Successfully deleted recurring :value invoices', 'restored_recurring_invoices': - 'Úspešne obnovené opakujúce sa :value faktúry', - 'search_recurring_invoice': 'Vyhľadať 1 opakujúcu sa faktúru', - 'search_recurring_invoices': 'Hľadať :count opakujúce sa faktúry', - 'send_date': 'Dátum odoslania', - 'auto_bill_on': 'Zapnúť Automatické účtovanie', - 'minimum_under_payment_amount': 'Minimálna čiastka platby', - 'profit': 'Zisk', - 'line_item': 'Položka v riadku', - 'allow_over_payment': 'Povoliť preplatenie', - 'allow_over_payment_help': 'Podporte platenie navyše za prijímanie tipov', - 'allow_under_payment': 'Povoliť platbu', - 'allow_under_payment_help': 'Podpora platenia minimálnej čiastky/vkladu', - 'test_mode': 'Testovací mód', - 'opened': 'Otvorené', - 'payment_reconciliation_failure': 'Zlyhanie zmierenia', - 'payment_reconciliation_success': 'Úspech zmierenia', - 'gateway_success': 'Úspech brány', - 'gateway_failure': 'Porucha brány', - 'gateway_error': 'Chyba brány', - 'email_send': 'Odoslať email', - 'email_retry_queue': 'Zoznam opakovania e-mailu', - 'failure': 'Neúspech', - 'quota_exceeded': 'Prekročená kvóta', - 'upstream_failure': 'Zlyhanie Upstream', - 'system_logs': 'Systémové záznamy', - 'view_portal': 'Zobraziť portál', - 'copy_link': 'Skopírovať odkaz', - 'token_billing': 'Uložiť podrobnosti kreditnej karty', - 'welcome_to_invoice_ninja': 'Vitajte v Invoice Ninja', - 'always': 'Vždy', + 'Successfully restored recurring :value invoices', + 'search_recurring_invoice': 'Search 1 Recurring Invoice', + 'search_recurring_invoices': 'Search :count Recurring Invoices', + 'send_date': 'Send Date', + 'auto_bill_on': 'Auto Bill On', + 'minimum_under_payment_amount': 'Minimum Under Payment Amount', + 'profit': 'Profit', + 'line_item': 'Line Item', + 'allow_over_payment': 'Allow Over Payment', + 'allow_over_payment_help': 'Support paying extra to accept tips', + 'allow_under_payment': 'Allow Under Payment', + 'allow_under_payment_help': + 'Support paying at minimum the partial/deposit amount', + 'test_mode': 'Test Mode', + 'opened': 'Opened', + 'payment_reconciliation_failure': 'Reconciliation Failure', + 'payment_reconciliation_success': 'Reconciliation Success', + 'gateway_success': 'Gateway Success', + 'gateway_failure': 'Gateway Failure', + 'gateway_error': 'Gateway Error', + 'email_send': 'Email Send', + 'email_retry_queue': 'Email Retry Queue', + 'failure': 'Failure', + 'quota_exceeded': 'Quota Exceeded', + 'upstream_failure': 'Upstream Failure', + 'system_logs': 'System Logs', + 'view_portal': 'View Portal', + 'copy_link': 'Copy Link', + 'token_billing': 'Сохранить данные карты', + 'welcome_to_invoice_ninja': 'Welcome to Invoice Ninja', + 'always': 'Always', 'optin': 'Opt-In', 'optout': 'Opt-Out', - 'label': 'Štítok', - 'client_number': 'Číslo zákazníka', - 'auto_convert': 'Automatická konverzia', - 'company_name': 'Názov spoločnosti', - 'reminder1_sent': 'Pripomienka 1 odoslaná', - 'reminder2_sent': 'Pripomienka 2 odoslaná', - 'reminder3_sent': 'Pripomienka 3 odoslaná', - 'reminder_last_sent': 'Naposledy odoslaná pripomienka', - 'pdf_page_info': 'Strana :current z :total', - 'emailed_invoices': 'Faktúra úspešne odoslaná', - 'emailed_quotes': 'Ponuka úspešne odoslaná', - 'emailed_credits': 'Úspešne zaslané kredity e-mailom', - 'gateway': 'Brána', - 'view_in_stripe': 'Zobraziť v Stripe', - 'rows_per_page': 'Počet riadkov na stránku', - 'hours': 'Hodiny', - 'statement': 'Výkaz', - 'taxes': 'Dane', - 'surcharge': 'Príplatok', - 'apply_payment': 'Použiť platbu', - 'apply_credit': 'Použiť kredit', - 'apply': 'Použiť', - 'unapplied': 'Neaplikované', - 'select_label': 'Vybrať štítok', - 'custom_labels': 'Vlastné štítky', - 'record_type': 'Typ záznamu', - 'record_name': 'Názov záznamu', - 'file_type': 'Typ súboru', - 'height': 'Výška', - 'width': 'Šírka', - 'to': 'Komu', - 'health_check': 'Kontrola zdravia', - 'payment_type_id': 'Typ platby', - 'last_login_at': 'Posledné prihlásenie o', - 'company_key': 'Kľúč spoločnosti', + 'label': 'Label', + 'client_number': 'Client Number', + 'auto_convert': 'Auto Convert', + 'company_name': 'Company Name', + 'reminder1_sent': 'Reminder 1 Sent', + 'reminder2_sent': 'Reminder 2 Sent', + 'reminder3_sent': 'Reminder 3 Sent', + 'reminder_last_sent': 'Reminder Last Sent', + 'pdf_page_info': 'Page :current of :total', + 'emailed_invoices': 'Successfully emailed invoices', + 'emailed_quotes': 'Successfully emailed quotes', + 'emailed_credits': 'Successfully emailed credits', + 'gateway': 'Шлюз', + 'view_in_stripe': 'View in Stripe', + 'rows_per_page': 'Rows Per Page', + 'hours': 'Часы', + 'statement': 'Statement', + 'taxes': 'Налоги', + 'surcharge': 'Surcharge', + 'apply_payment': 'Apply Payment', + 'apply_credit': 'Apply Credit', + 'apply': 'Apply', + 'unapplied': 'Unapplied', + 'select_label': 'Выбрать ярлык', + 'custom_labels': 'Custom Labels', + 'record_type': 'Record Type', + 'record_name': 'Record Name', + 'file_type': 'File Type', + 'height': 'Height', + 'width': 'Width', + 'to': 'Кому', + 'health_check': 'Health Check', + 'payment_type_id': 'Способ оплаты', + 'last_login_at': 'Last Login At', + 'company_key': 'Company Key', 'storefront': 'Storefront', - 'storefront_help': 'Povoľte aplikáciám tretích strán vytvárať faktúry', - 'client_created': 'Klient vytvorený', - 'online_payment_email': 'Online platobný e-mail', - 'manual_payment_email': 'E-mail s manuálnou platbou', - 'completed': 'Dokončené', - 'gross': 'Hrubý', - 'net_amount': 'Čistá čiastka', - 'net_balance': 'Čistý zostatok', - 'client_settings': 'Nastavenia klienta', - 'selected_invoices': 'Vybrané faktúry', - 'selected_payments': 'Vybrané platby', - 'selected_quotes': 'Vybrané ponuky', - 'selected_tasks': 'Vybrané úlohy', - 'selected_expenses': 'Vybrané výdavky', - 'upcoming_invoices': 'Budúce faktúry', - 'past_due_invoices': 'Faktúry po splatnosti', - 'recent_payments': 'Nedávne platby', - 'upcoming_quotes': 'Budúce ponuky', - 'expired_quotes': 'Vypršané ponuky', - 'create_client': 'Vytvoriť zákazníka', - 'create_invoice': 'Vytvorenie faktúry', - 'create_quote': 'Vytvoriť ponuku', - 'create_payment': 'Vytvoriť platbu', - 'create_vendor': 'Vytvoriť dodávateľa', - 'update_quote': 'Aktualizovať cenovú ponuku', - 'delete_quote': 'Vymazať ponuku', - 'update_invoice': 'Aktualizovať faktúru', - 'delete_invoice': 'Odstrániť faktúru', - 'update_client': 'Aktualizovať klienta', - 'delete_client': 'Odstrániť zákazníkov', - 'delete_payment': 'Odstrániť platbu', - 'update_vendor': 'Aktualizovať dodávateľa', - 'delete_vendor': 'Odstrániť dodávateľa', - 'create_expense': 'Vytvorte náklady', - 'update_expense': 'Aktualizovať výdavky', - 'delete_expense': 'Zmazať výdaje', - 'create_task': 'Vytvoriť úlohu', - 'update_task': 'Aktualizovať úlohu', - 'delete_task': 'Odstrániť úlohu', - 'approve_quote': 'Schváliť cenovú ponuku', - 'off': 'Vypnuté', - 'when_paid': 'Keď zaplatené', - 'expires_on': 'Vyprší', - 'free': 'Zdarma', - 'plan': 'Plán', - 'show_sidebar': 'Zobraziť bočný panel', - 'hide_sidebar': 'Skryť bočný panel', - 'event_type': 'Typ udalosti', - 'target_url': 'Cieľ', - 'copy': 'Kopírovať', - 'must_be_online': 'Po pripojení k internetu reštartujte aplikáciu', - 'crons_not_enabled': 'Je potrebné povoliť crony', + 'storefront_help': 'Enable third-party apps to create invoices', + 'client_created': 'Client Created', + 'online_payment_email': 'Online Payment Email', + 'manual_payment_email': 'Manual Payment Email', + 'completed': 'Completed', + 'gross': 'Gross', + 'net_amount': 'Net Amount', + 'net_balance': 'Net Balance', + 'client_settings': 'Client Settings', + 'selected_invoices': 'Selected Invoices', + 'selected_payments': 'Selected Payments', + 'selected_quotes': 'Selected Quotes', + 'selected_tasks': 'Selected Tasks', + 'selected_expenses': 'Selected Expenses', + 'upcoming_invoices': 'Текущие счета', + 'past_due_invoices': 'Past Due Invoices', + 'recent_payments': 'Последние платежи', + 'upcoming_quotes': 'Входящие Прайс-листы', + 'expired_quotes': 'Expired Quotes', + 'create_client': 'Create Client', + 'create_invoice': 'Создать счёт', + 'create_quote': 'Создать котировку', + 'create_payment': 'Create Payment', + 'create_vendor': 'Создать поставщика', + 'update_quote': 'Update Quote', + 'delete_quote': 'Удалить котировку', + 'update_invoice': 'Update Invoice', + 'delete_invoice': 'Удалить счёт', + 'update_client': 'Update Client', + 'delete_client': 'Удалить клиента', + 'delete_payment': 'Удалить оплату', + 'update_vendor': 'Update Vendor', + 'delete_vendor': 'Delete Vendor', + 'create_expense': 'Create Expense', + 'update_expense': 'Update Expense', + 'delete_expense': 'Удалить затраты', + 'create_task': 'Создать задание', + 'update_task': 'Update Task', + 'delete_task': 'Удалить задание', + 'approve_quote': 'Approve Quote', + 'off': 'Off', + 'when_paid': 'When Paid', + 'expires_on': 'Expires On', + 'free': 'Бесплатно', + 'plan': 'Plan', + 'show_sidebar': 'Show Sidebar', + 'hide_sidebar': 'Hide Sidebar', + 'event_type': 'Event Type', + 'target_url': 'Цель', + 'copy': 'Copy', + 'must_be_online': 'Please restart the app once connected to the internet', + 'crons_not_enabled': 'The crons need to be enabled', 'api_webhooks': 'API Webhooks', - 'search_webhooks': 'Hľadať :count Webhooky', - 'search_webhook': 'Hľadať 1 webhook', + 'search_webhooks': 'Search :count Webhooks', + 'search_webhook': 'Search 1 Webhook', 'webhook': 'Webhook', 'webhooks': 'Webhooks', - 'new_webhook': 'Nový webhook', - 'edit_webhook': 'Upraviť webhook', - 'created_webhook': 'Webhook bol úspešne vytvorený', - 'updated_webhook': 'Webhook bol úspešne aktualizovaný', - 'archived_webhook': 'Webhook bol úspešne archivovaný', - 'deleted_webhook': 'Webhook bol úspešne vymazaný', - 'removed_webhook': 'Webhook bol úspešne odstránený', - 'restored_webhook': 'Webhook bol úspešne obnovený', - 'archived_webhooks': 'Webhooky :value boli úspešne archivované', - 'deleted_webhooks': 'Webhooky :value boli úspešne odstránené', - 'removed_webhooks': 'Webhooky :value boli úspešne odstránené', - 'restored_webhooks': 'Webhooky :value boli úspešne obnovené', - 'api_tokens': 'Tokeny API', - 'api_docs': 'Dokumenty API', - 'search_tokens': 'Hšadať :count tokeny', - 'search_token': 'Vyhľadať 1 token', - 'token': 'Token', - 'tokens': 'Tokeny', - 'new_token': 'Nový token', - 'edit_token': 'Upraviť token', - 'created_token': 'Token úspešne vytvorený', - 'updated_token': 'Token úspešne upravený', - 'archived_token': 'Token úspešne archivovaný', - 'deleted_token': 'Token úspešne vymazaný', - 'removed_token': 'Token bol úspešne odstránený', - 'restored_token': 'Token bol úspešne obnovený', - 'archived_tokens': 'Úspešne archivované :value tokeny', - 'deleted_tokens': 'Tokeny :value boli úspešne odstránené', - 'restored_tokens': 'Úspešne obnovené :value tokeny', - 'client_registration': 'Registrácia klienta', + 'new_webhook': 'New Webhook', + 'edit_webhook': 'Edit Webhook', + 'created_webhook': 'Successfully created webhook', + 'updated_webhook': 'Successfully updated webhook', + 'archived_webhook': 'Successfully archived webhook', + 'deleted_webhook': 'Successfully deleted webhook', + 'removed_webhook': 'Successfully removed webhook', + 'restored_webhook': 'Successfully restored webhook', + 'archived_webhooks': 'Successfully archived :value webhooks', + 'deleted_webhooks': 'Successfully deleted :value webhooks', + 'removed_webhooks': 'Successfully removed :value webhooks', + 'restored_webhooks': 'Successfully restored :value webhooks', + 'api_tokens': 'API токены', + 'api_docs': 'API Docs', + 'search_tokens': 'Search :count Tokens', + 'search_token': 'Search 1 Token', + 'token': 'Права', + 'tokens': 'Токены', + 'new_token': 'New Token', + 'edit_token': 'Изменить права', + 'created_token': 'Токен создан', + 'updated_token': 'Токен обновлён', + 'archived_token': 'Successfully archived token', + 'deleted_token': 'Токен успешно удалён', + 'removed_token': 'Successfully removed token', + 'restored_token': 'Successfully restored token', + 'archived_tokens': 'Successfully archived :value tokens', + 'deleted_tokens': 'Successfully deleted :value tokens', + 'restored_tokens': 'Successfully restored :value tokens', + 'client_registration': 'Client Registration', 'client_registration_help': - 'Umožnite klientom samoregistráciu na portáli', - 'customize_and_preview': 'Prispôsobiť a zobraziť ukážku', - 'email_invoice': 'Odoslať faktúru', - 'email_quote': 'Odoslať ponuku', - 'email_credit': 'E-mailový kredit', - 'email_payment': 'Platba e-mailom', - 'client_email_not_set': 'Klient nemá nastavenú emailovú adresu', - 'ledger': 'Hlavná kniha', - 'view_pdf': 'Zobraziť PDF', - 'all_records': 'Všetky záznamy', - 'owned_by_user': 'Vlastnené používateľom', - 'credit_remaining': 'Zostávajúci kredit', - 'contact_name': 'Meno kontaktu', - 'use_default': 'Použi predvolené', - 'reminder_endless': 'Nekonečné pripomienky', - 'number_of_days': 'Počet dní', - 'configure_payment_terms': 'Konfigurácia platobných podmienok', - 'payment_term': 'Lehota splatnosti', - 'new_payment_term': 'Nový platobný termín', - 'edit_payment_term': 'Upraviť platobné obdobie', - 'created_payment_term': 'Úspešne vytvorené platobné obdobie', - 'updated_payment_term': 'Úspešne aktualizované platobné obdobie', - 'archived_payment_term': 'Úspešne archivované platobné obdobie', - 'deleted_payment_term': 'Platobný termín bol úspešne odstránený', - 'removed_payment_term': 'Platobný termín bol úspešne odstránený', - 'restored_payment_term': 'Platobný termín bol úspešne obnovený', - 'archived_payment_terms': 'Úspešne archivované :value platobné podmienky', - 'deleted_payment_terms': 'Úspešne vymazané :value platobné podmienky', - 'restored_payment_terms': 'Úspešne obnovené :value platobné podmienky', - 'email_sign_in': 'Prihláste sa e-mailom', - 'change': 'Zmeniť', - 'change_to_mobile_layout': - 'Chcete zmeniť rozloženie pre mobilné zariadenia?', - 'change_to_desktop_layout': 'Chcete zmeniť na rozloženie desktop?', - 'send_from_gmail': 'Odoslať z Gmailu', - 'reversed': 'Obrátené', - 'cancelled': 'Zrušené', - 'credit_amount': 'Čiastka dobropisu', - 'quote_amount': 'Suma ponuky', - 'hosted': 'Hosťované', - 'selfhosted': 'Vlasný hosting', - 'exclusive': 'Výhradne', - 'inclusive': 'Vrátane', - 'hide_menu': 'Skryť ponuku', - 'show_menu': 'Zobraziť menu', - 'partially_refunded': 'Čiastočne vrátené', - 'search_documents': 'Hľadať v dokumentoch', - 'search_designs': 'Hľadať vzhľady', - 'search_invoices': 'Vyhľadať faktúry', - 'search_clients': 'Vyhľadajte klientov', - 'search_products': 'Hľadať produkty', - 'search_quotes': 'Vyhľadať ponuky', - 'search_credits': 'Hľadať kredity', - 'search_vendors': 'Hľadať predajcov', - 'search_users': 'Hľadať používateľov', - 'search_tax_rates': 'Vyhľadajte daňové sadzby', - 'search_tasks': 'Hľadať úlohy', - 'search_settings': 'Nastavenia vyhľadávania', - 'search_projects': 'Hľadať projekty', - 'search_expenses': 'Hľadať výdavky', - 'search_payments': 'Hľadajte platby', - 'search_groups': 'Hľadať v skupinách', - 'search_company': 'Hľadať spoločnosť', - 'search_document': 'Vyhľadať 1 dokument', - 'search_design': 'Vyhľadať 1 vzhľad', - 'search_invoice': 'Vyhľadať 1 faktúru', - 'search_client': 'Vyhľadať 1 klienta', - 'search_product': 'Vyhľadať 1 produkt', - 'search_quote': 'Vyhľadať 1 ponuku', - 'search_credit': 'Vyhľadať 1 kredit', - 'search_vendor': 'Vyhľadať 1 dodávateľa', - 'search_user': 'Vyhľadať 1 používateľa', - 'search_tax_rate': 'Vyhľadať 1 daňovú sadzbu', - 'search_task': 'Vyhľadať 1 úlohy', - 'search_project': 'Vyhľadať 1 projekt', - 'search_expense': 'Vyhľadať 1 výdavok', - 'search_payment': 'Vyhľadať 1 platbu', - 'search_group': 'Vyhľadať 1 skupinu', - 'refund_payment': 'Vrátiť platbu', - 'cancelled_invoice': 'Úspešne stornovaná faktúra', - 'cancelled_invoices': 'Faktúra úspešne odstránená', - 'reversed_invoice': 'Úspešne stornovaná faktúra', - 'reversed_invoices': 'Úspešne stornované faktúry', - 'reverse': 'Opak', - 'full_name': 'Celé Meno', - 'city_state_postal': 'Mesto/Štát/PSČ', - 'postal_city_state': 'PSČ/Mesto/Štát', - 'custom1': 'Prvé vlastné', - 'custom2': 'Druhé vlastné', - 'custom3': 'Tretie vlastné', - 'custom4': 'Štvrté vlastné', - 'optional': 'Voliteľné', - 'license': 'Licencia', - 'purge_data': 'Vyčistiť údaje', - 'purge_successful': 'Údaje spoločnosti boli úspešne vymazané', + 'Enable clients to self register in the portal', + 'customize_and_preview': 'Customize & Preview', + 'email_invoice': 'Отправить счёт', + 'email_quote': 'Отправить прайс-лист', + 'email_credit': 'Email Credit', + 'email_payment': 'Email Payment', + 'client_email_not_set': 'Client does not have an email address set', + 'ledger': 'Ledger', + 'view_pdf': 'View PDF', + 'all_records': 'All records', + 'owned_by_user': 'Owned by user', + 'credit_remaining': 'Credit Remaining', + 'contact_name': 'Contact Name', + 'use_default': 'Use default', + 'reminder_endless': 'Endless Reminders', + 'number_of_days': 'Number of days', + 'configure_payment_terms': 'Configure Payment Terms', + 'payment_term': 'Payment Term', + 'new_payment_term': 'New Payment Term', + 'edit_payment_term': 'Edit Payment Term', + 'created_payment_term': 'Successfully created payment term', + 'updated_payment_term': 'Successfully updated payment term', + 'archived_payment_term': 'Successfully archived payment term', + 'deleted_payment_term': 'Successfully deleted payment term', + 'removed_payment_term': 'Successfully removed payment term', + 'restored_payment_term': 'Successfully restored payment term', + 'archived_payment_terms': 'Successfully archived :value payment terms', + 'deleted_payment_terms': 'Successfully deleted :value payment terms', + 'restored_payment_terms': 'Successfully restored :value payment terms', + 'email_sign_in': 'Sign in with email', + 'change': 'Change', + 'change_to_mobile_layout': 'Change to the mobile layout?', + 'change_to_desktop_layout': 'Change to the desktop layout?', + 'send_from_gmail': 'Send from Gmail', + 'reversed': 'Reversed', + 'cancelled': 'Cancelled', + 'credit_amount': 'Сумма кредита', + 'quote_amount': 'Quote Amount', + 'hosted': 'Hosted', + 'selfhosted': 'Self-Hosted', + 'exclusive': 'Exclusive', + 'inclusive': 'Inclusive', + 'hide_menu': 'Hide Menu', + 'show_menu': 'Show Menu', + 'partially_refunded': 'Partially Refunded', + 'search_documents': 'Search Documents', + 'search_designs': 'Search Designs', + 'search_invoices': 'Search Invoices', + 'search_clients': 'Search Clients', + 'search_products': 'Search Products', + 'search_quotes': 'Search Quotes', + 'search_credits': 'Search Credits', + 'search_vendors': 'Search Vendors', + 'search_users': 'Search Users', + 'search_tax_rates': 'Search Tax Rates', + 'search_tasks': 'Search Tasks', + 'search_settings': 'Search Settings', + 'search_projects': 'Search Projects', + 'search_expenses': 'Search Expenses', + 'search_payments': 'Search Payments', + 'search_groups': 'Search Groups', + 'search_company': 'Search Company', + 'search_document': 'Search 1 Document', + 'search_design': 'Search 1 Design', + 'search_invoice': 'Search 1 Invoice', + 'search_client': 'Search 1 Client', + 'search_product': 'Search 1 Product', + 'search_quote': 'Search 1 Quote', + 'search_credit': 'Search 1 Credit', + 'search_vendor': 'Search 1 Vendor', + 'search_user': 'Search 1 User', + 'search_tax_rate': 'Search 1 Tax Rate', + 'search_task': 'Search 1 Tasks', + 'search_project': 'Search 1 Project', + 'search_expense': 'Search 1 Expense', + 'search_payment': 'Search 1 Payment', + 'search_group': 'Search 1 Group', + 'refund_payment': 'Refund Payment', + 'cancelled_invoice': 'Successfully cancelled invoice', + 'cancelled_invoices': 'Successfully cancelled invoices', + 'reversed_invoice': 'Successfully reversed invoice', + 'reversed_invoices': 'Successfully reversed invoices', + 'reverse': 'Reverse', + 'full_name': 'Полное имя', + 'city_state_postal': 'City/State/Postal', + 'postal_city_state': 'Индекс/Город/Страна', + 'custom1': 'First Custom', + 'custom2': 'Second Custom', + 'custom3': 'Third Custom', + 'custom4': 'Fourth Custom', + 'optional': 'Optional', + 'license': 'License', + 'purge_data': 'Purge Data', + 'purge_successful': 'Информация о компании успешно удалена', 'purge_data_message': - 'Upozornenie: Týmto natrvalo vymažete vaše údaje, nie je možné vrátiť späť.', - 'invoice_balance': 'Fakturačný zostatok', - 'age_group_0': '0 - 30 Dní', - 'age_group_30': '30 - 60 Dní', - 'age_group_60': '60 - 90 Dní', - 'age_group_90': '90 - 120 Dní', - 'age_group_120': '120+ Dní', - 'refresh': 'Obnoviť', - 'saved_design': 'Dizajn bol úspešne uložený', - 'client_details': 'Podrobnosti o klientovi', - 'company_address': 'Adresa firmy', - 'invoice_details': 'Detaily Faktúry', - 'quote_details': 'Podrobnosti ponuky', - 'credit_details': 'Podrobnosti o úvere', - 'product_columns': 'Produktové stĺpce', - 'task_columns': 'Stĺpce úloh', - 'add_field': 'Pridať pole', - 'all_events': 'Všetky udalosti', - 'permissions': 'Oprávnenia', - 'none': 'Žiadne', - 'owned': 'Vlastnené', - 'payment_success': 'Úspešnosť platby', - 'payment_failure': 'Zlyhanie platby', - 'invoice_sent': ':count faktúra odoslaná', - 'quote_sent': 'Cenová ponuka bola odoslaná', - 'credit_sent': 'Kredit odoslaný', - 'invoice_viewed': 'Zobrazená faktúra', - 'quote_viewed': 'Zobrazená ponuka', - 'credit_viewed': 'Zobrazený kredit', - 'quote_approved': 'Cenová ponuka bola schválená', - 'receive_all_notifications': 'Prijímať všetky upozornenia', - 'purchase_license': 'Zakúpiť licenciu', - 'apply_license': 'Aplikovať licenciu', - 'cancel_account': 'Vymazať účet', + 'Warning: This will permanently erase your data, there is no undo.', + 'invoice_balance': 'Invoice Balance', + 'age_group_0': '0-30 дней', + 'age_group_30': '30-60 дней', + 'age_group_60': '60-90 дней', + 'age_group_90': '90-120 дней', + 'age_group_120': '120+ дней', + 'refresh': 'Refresh', + 'saved_design': 'Successfully saved design', + 'client_details': 'Client Details', + 'company_address': 'Company Address', + 'invoice_details': 'Детали счёта', + 'quote_details': 'Quote Details', + 'credit_details': 'Credit Details', + 'product_columns': 'Product Columns', + 'task_columns': 'Task Columns', + 'add_field': 'Add Field', + 'all_events': 'All Events', + 'permissions': 'Permissions', + 'none': 'None', + 'owned': 'Owned', + 'payment_success': 'Payment Success', + 'payment_failure': 'Payment Failure', + 'invoice_sent': ':count счет отправлен', + 'quote_sent': 'Quote Sent', + 'credit_sent': 'Credit Sent', + 'invoice_viewed': 'Invoice Viewed', + 'quote_viewed': 'Quote Viewed', + 'credit_viewed': 'Credit Viewed', + 'quote_approved': 'Quote Approved', + 'receive_all_notifications': 'Receive All Notifications', + 'purchase_license': 'Purchase License', + 'apply_license': 'Apply License', + 'cancel_account': 'Удалить аккаунт', 'cancel_account_message': - 'Upozornenie: Tým sa natrvalo odstráni váš účet, nie je možné ho vrátiť späť.', - 'delete_company': 'Odstrániť spoločnosť', + 'Внимание: это приведет к безвозвратному удалению вашего аккаунта.', + 'delete_company': 'Удалить компанию', 'delete_company_message': - 'Upozornenie: Tým sa natrvalo zmaže spoločnosť, nieje možné ju vrátiť späť.', - 'enabled_modules': 'Povolené moduly', - 'converted_quote': 'Úspešne konvertovaná cenová ponuka', - 'credit_design': 'Kreditný dizajn', - 'includes': 'Zahŕňa', - 'header': 'Hlavička', - 'load_design': 'Načítať vzhľad', + 'Внимание: это приведет к безвозвратному удалению вашего аккаунта.', + 'enabled_modules': 'Enabled Modules', + 'converted_quote': 'Successfully converted quote', + 'credit_design': 'Credit Design', + 'includes': 'Includes', + 'header': 'Заголовок', + 'load_design': 'Загрузить шаблон', 'css_framework': 'CSS Framework', - 'custom_designs': 'Vlastné vzhľady', - 'designs': 'Vzhľady', - 'new_design': 'Nový vzhľad', - 'edit_design': 'Upraviť vzhľad', - 'created_design': 'Úspešne vytvorený vzhľad', - 'updated_design': 'Úspešne aktualizovaný vzhľad', - 'archived_design': 'Vzhľad bol úspešne archivovaný', - 'deleted_design': 'Vzhľad bol úspešne odstránený', - 'removed_design': 'Vzhľad bol úspešne odstránený', - 'restored_design': 'Úspešne obnovený vzhľad', - 'archived_designs': 'Úspešne archivované :value vzhľady', - 'deleted_designs': 'Vzhľady :value boli úspešne odstránené', - 'restored_designs': 'Úspešne obnovené :value vzhľady', - 'proposals': 'Návrhy', - 'tickets': 'Tikety', - 'recurring_quotes': 'Pravidelné ponuky', - 'recurring_tasks': 'Opakujúce sa', - 'account_management': 'Správa účtu', - 'credit_date': 'Dátum dobropisu', - 'credit': 'Dobropis', - 'credits': 'Dobropisy', - 'new_credit': 'Nový dobropis', - 'edit_credit': 'Upraviť dobropis', - 'created_credit': 'Dobropis úspešne vytvorený', - 'updated_credit': 'Dobropis úspešne aktualizovaný', - 'archived_credit': 'Dobropis úspešne archivovaný', - 'deleted_credit': 'Dobropis úspešne odstránený', - 'removed_credit': 'Kredit bol úspešne odstránený', - 'restored_credit': 'Dobropis úspešne obnovený', - 'archived_credits': 'Počet úspešne archivovaných dobropisov: :count', - 'deleted_credits': 'Počet úspešne odstránených dobropisov: :count', - 'restored_credits': 'Úspešne obnovené :value kredity', - 'current_version': 'Aktuálna verzia', - 'latest_version': 'Najnovšia verzia', - 'update_now': 'Teraz aktualizovať', - 'a_new_version_is_available': - 'K dispozícii je nová verzia webovej aplikácie', - 'update_available': 'Aktualizácia k dispozícii', - 'app_updated': 'Aktualizácia bola úspešne dokončená', - 'learn_more': 'Zobraziť viac', - 'integrations': 'Integrácia', - 'tracking_id': 'Id pre sledovanie', + 'custom_designs': 'Custom Designs', + 'designs': 'Designs', + 'new_design': 'New Design', + 'edit_design': 'Edit Design', + 'created_design': 'Successfully created design', + 'updated_design': 'Successfully updated design', + 'archived_design': 'Successfully archived design', + 'deleted_design': 'Successfully deleted design', + 'removed_design': 'Successfully removed design', + 'restored_design': 'Successfully restored design', + 'archived_designs': 'Successfully archived :value designs', + 'deleted_designs': 'Successfully deleted :value designs', + 'restored_designs': 'Successfully restored :value designs', + 'proposals': 'Коммерческие предложения', + 'tickets': 'Тикеты', + 'recurring_quotes': 'Повторяющиеся Прайс-листы', + 'recurring_tasks': 'Recurring Tasks', + 'account_management': 'Account Management', + 'credit_date': 'Дата кредита', + 'credit': 'Кредит', + 'credits': 'Кредиты', + 'new_credit': 'Добавить кредит', + 'edit_credit': 'Edit Credit', + 'created_credit': 'Кредит успешно создан', + 'updated_credit': 'Successfully updated credit', + 'archived_credit': 'Кредит успешно архивирован', + 'deleted_credit': 'Кредит успешно удален', + 'removed_credit': 'Successfully removed credit', + 'restored_credit': 'Кредит восстановлен', + 'archived_credits': 'Успешно архивировано :count кредита(ов)', + 'deleted_credits': 'Успешно удалено :count кредита(ов)', + 'restored_credits': 'Successfully restored :value credits', + 'current_version': 'Текущая версия', + 'latest_version': 'Latest Version', + 'update_now': 'Update Now', + 'a_new_version_is_available': 'A new version of the web app is available', + 'update_available': 'Update Available', + 'app_updated': 'Update successfully completed', + 'learn_more': 'Узнать больше', + 'integrations': 'Integrations', + 'tracking_id': 'Tracking Id', 'slack_webhook_url': 'Slack Webhook URL', 'credit_footer': 'Credit Footer', - 'credit_terms': 'Úverové podmienky', - 'new_company': 'Nová spoločnosť', - 'added_company': 'Spoločnosť bola úspešne pridaná', - 'company1': 'Vlastná spoločnosť 1', - 'company2': 'Vlastná spoločnosť 2', - 'company3': 'Vlastná spoločnosť 3', - 'company4': 'Vlastná spoločnosť 4', - 'product1': 'Produkt na mieru 1', - 'product2': 'Produkt na mieru 2', - 'product3': 'Produkt na mieru 3', - 'product4': 'Produkt na mieru 4', - 'client1': 'Vlastný klient 1', - 'client2': 'Vlastný klient 2', - 'client3': 'Vlastný klient 3', - 'client4': 'Vlastný klient 4', - 'contact1': 'Vlastný kontakt 1', - 'contact2': 'Vlastný kontakt 2', - 'contact3': 'Vlastný kontakt 3', - 'contact4': 'Vlastný kontakt 4', - 'task1': 'Vlastná úloha 1', - 'task2': 'Vlastná úloha 2', - 'task3': 'Vlastná úloha 3', - 'task4': 'Vlastná úloha 4', - 'project1': 'Vlastný projekt 1', - 'project2': 'Vlastný projekt 2', - 'project3': 'Vlastný projekt 3', - 'project4': 'Vlastný projekt 4', - 'expense1': 'Vlastné náklady 1', - 'expense2': 'Vlastné náklady 2', - 'expense3': 'Vlastné náklady 3', - 'expense4': 'Vlastné náklady 4', - 'vendor1': 'Vlastný dodávateľ 1', - 'vendor2': 'Vlastný dodávateľ 2', - 'vendor3': 'Vlastný dodávateľ 3', - 'vendor4': 'Vlastný dodávateľ 4', - 'invoice1': 'Vlastná faktúra 1', - 'invoice2': 'Vlastná faktúra 2', - 'invoice3': 'Vlastná faktúra 3', - 'invoice4': 'Vlastná faktúra 4', - 'payment1': 'Vlastná platba 1', - 'payment2': 'Vlastná platba 2', - 'payment3': 'Vlastná platba 3', - 'payment4': 'Vlastná platba 4', - 'surcharge1': 'Vlastný príplatok 1', - 'surcharge2': 'Vlastný príplatok 2', - 'surcharge3': 'Vlastný príplatok 3', - 'surcharge4': 'Vlastný príplatok 4', - 'group1': 'Vlastná skupina 1', - 'group2': 'Vlastná skupina 2', - 'group3': 'Vlastná skupina 3', - 'group4': 'Vlastná skupina 4', - 'reset': 'Resetovať', - 'number': 'Číslo', - 'export': 'Exportovať', - 'chart': 'Graf', - 'count': 'Počítať', - 'totals': 'Súčty', - 'blank': 'Prázdne', - 'day': 'Deň', - 'month': 'Mesiac', - 'year': 'Rok', - 'subgroup': 'Podskupina', - 'is_active': 'Je aktívne', - 'group_by': 'Zoskupiť podľa', - 'credit_balance': 'Zostatok kreditu', - 'contact_last_login': 'Posledné prihlásenie kontaktu', - 'contact_full_name': 'Celé meno kontaktu', - 'contact_phone': 'Kontaktný telefón', - 'contact_custom_value1': 'Vlastná hodnota kontaktu 1', - 'contact_custom_value2': 'Vlastná hodnota kontaktu 2', - 'contact_custom_value3': 'Vlastná hodnota kontaktu 3', - 'contact_custom_value4': 'Vlastná hodnota kontaktu 4', - 'shipping_address1': 'Ulica dodania', - 'shipping_address2': 'Byt/Apartmán dodania', - 'shipping_city': 'Mesto pre dodanie', - 'shipping_state': 'Kraj pre dodanie', - 'shipping_postal_code': 'PSČ pre dodanie', - 'shipping_country': 'Krajina dodania', - 'billing_address1': 'Fakturačná ulica', - 'billing_address2': 'Fakturačný byt/apartmán', - 'billing_city': 'Fakturačné mesto', - 'billing_state': 'Fakturačný kraj', - 'billing_postal_code': 'Fakturačné PSČ', - 'billing_country': 'Fakturačná krajina', - 'client_id': 'ID zákazníka', - 'assigned_to': 'Priradený', - 'created_by': 'Vytvoril :name', - 'assigned_to_id': 'Priradené k Id', - 'created_by_id': 'Vytvoril Id', - 'add_column': 'Pridať stĺpec', - 'edit_columns': 'Upraviť stĺpce', - 'columns': 'Stĺpce', - 'aging': 'Starnutie', - 'profit_and_loss': 'Zisk a Strata', - 'reports': 'Reporty', - 'report': 'Správa', - 'add_company': 'Pridať spoločnosť', - 'unpaid_invoice': 'Nezaplatená faktúra', - 'paid_invoice': 'Zaplatená faktúra', - 'unapproved_quote': 'Neschválená ponuka', - 'help': 'Pomoc', - 'refund': 'Vrátiť', - 'refund_date': 'Dátum vrátenia peňazí', - 'filtered_by': 'Filtrované podľa', - 'contact_email': 'Kontaktný email', - 'multiselect': 'Viacnásobný výber', - 'entity_state': 'Štát', - 'verify_password': 'Overte heslo', - 'applied': 'Aplikované', - 'include_recent_errors': 'Zahrnúť nedávne chyby z logov', + 'credit_terms': 'Credit Terms', + 'new_company': 'Новая компания', + 'added_company': 'Successfully added company', + 'company1': 'Custom Company 1', + 'company2': 'Custom Company 2', + 'company3': 'Custom Company 3', + 'company4': 'Custom Company 4', + 'product1': 'Custom Product 1', + 'product2': 'Custom Product 2', + 'product3': 'Custom Product 3', + 'product4': 'Custom Product 4', + 'client1': 'Custom Client 1', + 'client2': 'Custom Client 2', + 'client3': 'Custom Client 3', + 'client4': 'Custom Client 4', + 'contact1': 'Custom Contact 1', + 'contact2': 'Custom Contact 2', + 'contact3': 'Custom Contact 3', + 'contact4': 'Custom Contact 4', + 'task1': 'Custom Task 1', + 'task2': 'Custom Task 2', + 'task3': 'Custom Task 3', + 'task4': 'Custom Task 4', + 'project1': 'Custom Project 1', + 'project2': 'Custom Project 2', + 'project3': 'Custom Project 3', + 'project4': 'Custom Project 4', + 'expense1': 'Custom Expense 1', + 'expense2': 'Custom Expense 2', + 'expense3': 'Custom Expense 3', + 'expense4': 'Custom Expense 4', + 'vendor1': 'Custom Vendor 1', + 'vendor2': 'Custom Vendor 2', + 'vendor3': 'Custom Vendor 3', + 'vendor4': 'Custom Vendor 4', + 'invoice1': 'Custom Invoice 1', + 'invoice2': 'Custom Invoice 2', + 'invoice3': 'Custom Invoice 3', + 'invoice4': 'Custom Invoice 4', + 'payment1': 'Custom Payment 1', + 'payment2': 'Custom Payment 2', + 'payment3': 'Custom Payment 3', + 'payment4': 'Custom Payment 4', + 'surcharge1': 'Custom Surcharge 1', + 'surcharge2': 'Custom Surcharge 2', + 'surcharge3': 'Custom Surcharge 3', + 'surcharge4': 'Custom Surcharge 4', + 'group1': 'Custom Group 1', + 'group2': 'Custom Group 2', + 'group3': 'Custom Group 3', + 'group4': 'Custom Group 4', + 'reset': 'Сбросить', + 'number': 'Number', + 'export': 'Экспорт', + 'chart': 'График', + 'count': 'Count', + 'totals': 'Итого', + 'blank': 'Blank', + 'day': 'День', + 'month': 'Месяц', + 'year': 'Год', + 'subgroup': 'Subgroup', + 'is_active': 'Is Active', + 'group_by': 'Группировать', + 'credit_balance': 'Баланс кредита', + 'contact_last_login': 'Contact Last Login', + 'contact_full_name': 'Contact Full Name', + 'contact_phone': 'Контактный номер', + 'contact_custom_value1': 'Contact Custom Value 1', + 'contact_custom_value2': 'Contact Custom Value 2', + 'contact_custom_value3': 'Contact Custom Value 3', + 'contact_custom_value4': 'Contact Custom Value 4', + 'shipping_address1': 'Shipping Street', + 'shipping_address2': 'Shipping Apt/Suite', + 'shipping_city': 'Shipping City', + 'shipping_state': 'Shipping State/Province', + 'shipping_postal_code': 'Shipping Postal Code', + 'shipping_country': 'Shipping Country', + 'billing_address1': 'Billing Street', + 'billing_address2': 'Billing Apt/Suite', + 'billing_city': 'Billing City', + 'billing_state': 'Billing State/Province', + 'billing_postal_code': 'Billing Postal Code', + 'billing_country': 'Billing Country', + 'client_id': 'Client Id', + 'assigned_to': 'Назначен', + 'created_by': 'Created by :name', + 'assigned_to_id': 'Assigned To Id', + 'created_by_id': 'Created By Id', + 'add_column': 'Add Column', + 'edit_columns': 'Edit Columns', + 'columns': 'Столбцы', + 'aging': 'Aging', + 'profit_and_loss': 'Прибыли и убытки', + 'reports': 'Reports', + 'report': 'Отчет', + 'add_company': 'Добавить компанию', + 'unpaid_invoice': 'Unpaid Invoice', + 'paid_invoice': 'Оплаченные счета', + 'unapproved_quote': 'Unapproved Quote', + 'help': 'Помощь', + 'refund': 'Refund', + 'refund_date': 'Refund Date', + 'filtered_by': 'Filtered by', + 'contact_email': 'Почта для связи', + 'multiselect': 'Multiselect', + 'entity_state': 'State', + 'verify_password': 'Verify Password', + 'applied': 'Applied', + 'include_recent_errors': 'Include recent errors from the logs', 'your_message_has_been_received': - 'Dostali sme vašu správu a pokúsime sa rýchlo odpovedať.', - 'message': 'Správa', - 'from': 'Od', - 'show_product_details': 'Zobraziť podrobnosti o produkte', + 'We have received your message and will try to respond promptly.', + 'message': 'Сообщение', + 'from': 'От', + 'show_product_details': 'Show Product Details', 'show_product_details_help': - 'V rozbaľovacej ponuke produktu uveďte popis a cenu', - 'pdf_min_requirements': 'PDF renderer vyžaduje :version', - 'adjust_fee_percent': 'Upravte percento poplatku', - 'adjust_fee_percent_help': - 'Upravte percento, aby ste zohľadnili poplatok', - 'configure_settings': 'Konfigurovať nastavenia', - 'support_forum': 'podporné fórum', - 'about': 'O', - 'documentation': 'Dokumentácia', - 'contact_us': 'Kontaktujte nás', - 'subtotal': 'Medzisúčet', - 'line_total': 'Spolu', - 'item': 'Položka', - 'credit_email': 'Kreditný email', - 'iframe_url': 'Webová lokalita', - 'domain_url': 'Adresa URL domény', - 'password_is_too_short': 'Heslo je príliš krátke', - 'password_is_too_easy': 'Heslo musí obsahovať veľké písmeno a číslo', - 'client_portal_tasks': 'Úlohy klientskeho portálu', - 'client_portal_dashboard': 'Panel klientskeho portálu', - 'please_enter_a_value': 'Zadajte hodnotu', - 'deleted_logo': 'Logo bolo úspešne odstránené', - 'yes': 'Áno', - 'no': 'Nie', - 'generate_number': 'Generovať číslo', - 'when_saved': 'Po uložení', - 'when_sent': 'Keď odoslané', - 'select_company': 'Vyberte Spoločnosť', + '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', + 'configure_settings': 'Configure Settings', + 'support_forum': 'Форум поддержки', + 'about': 'About', + 'documentation': 'Документация', + 'contact_us': 'Свяжитесь с нами', + 'subtotal': 'Промежуточный итог', + 'line_total': 'Всего', + 'item': 'Название', + 'credit_email': 'Credit Email', + 'iframe_url': 'Веб-сайт', + 'domain_url': 'Domain URL', + 'password_is_too_short': 'Password is too short', + 'password_is_too_easy': + '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', + 'deleted_logo': 'Successfully deleted logo', + 'yes': 'Yes', + 'no': 'No', + 'generate_number': 'Generate Number', + 'when_saved': 'When Saved', + 'when_sent': 'When Sent', + 'select_company': 'Select Company', 'float': 'Float', - 'collapse': 'Zbaliť', - 'show_or_hide': 'Ukázať/skryť', - 'menu_sidebar': 'Bočný panel ponuky', - 'history_sidebar': 'Bočný panel histórie', + 'collapse': 'Collapse', + 'show_or_hide': 'Show/hide', + 'menu_sidebar': 'Menu Sidebar', + 'history_sidebar': 'History Sidebar', 'tablet': 'Tablet', - 'mobile': 'Mobil', - 'desktop': 'Desktop', - 'layout': 'Rozloženie', - 'view': 'Zobraziť', - 'module': 'Modul', - 'first_custom': 'Prvé vlastné', - 'second_custom': 'Druhé vlastné', - 'third_custom': 'Tretie vlastné', - 'show_cost': 'Zobraziť cenu', - 'show_product_cost': 'Zobraziť cenu produktu', + 'mobile': 'Mobile', + 'desktop': 'Рабочий стол', + 'layout': 'Layout', + 'view': 'View', + 'module': 'Module', + 'first_custom': 'First Custom', + 'second_custom': 'Second Custom', + 'third_custom': 'Third Custom', + 'show_cost': 'Show Cost', + 'show_product_cost': 'Show Product Cost', 'show_cost_help': - 'Zobrazte pole s cenou produktu na sledovanie prirážky/zisk', - 'show_product_quantity': 'Zobraziť množstvo produktu', + 'Display a product cost field to track the markup/profit', + 'show_product_quantity': 'Show Product Quantity', 'show_product_quantity_help': - 'Zobrazte pole množstva produktu, inak je predvolené jedno', - 'show_invoice_quantity': 'Zobraziť množstvo na faktúre', + 'Display a product quantity field, otherwise default to one', + 'show_invoice_quantity': 'Show Invoice Quantity', 'show_invoice_quantity_help': - 'Zobrazte pole množstva riadkovej položky, inak je predvolene nastavené jedno', - 'show_product_discount': 'Zobraziť zľavu na produkt', - 'show_product_discount_help': 'Zobrazte pole zľavy riadkovej položky', - 'default_quantity': 'Predvolené množstvo', + 'Display a line item quantity field, otherwise default to one', + 'show_product_discount': 'Show Product Discount', + 'show_product_discount_help': 'Display a line item discount field', + 'default_quantity': 'Default Quantity', 'default_quantity_help': - 'Automaticky nastaviť množstvo riadkovej položky na jednu', - 'one_tax_rate': 'Jedna daňová sadzba', - 'two_tax_rates': 'Dve daňové sadzby', - 'three_tax_rates': 'Tri daňové sadzby', - 'default_tax_rate': 'Predvolená sadzba dane', - 'user': 'Používateľ', - 'invoice_tax': 'Daň na faktúre', - 'line_item_tax': 'Daň riadkovej položky', - 'inclusive_taxes': 'Vrátane daní', - 'invoice_tax_rates': 'Fakturačné sadzby dane', - 'item_tax_rates': 'Sadzby dane z položiek', - 'no_client_selected': 'Vyberte kontakt', - 'configure_rates': 'Konfigurovať sadzby', - 'configure_gateways': 'Nakonfigurujte brány', - 'tax_settings': 'Nastavenia daní', - 'tax_settings_rates': 'Sadzby dane', - 'accent_color': 'Farba zvýraznenia', - 'switch': 'Prepnúť', - 'comma_sparated_list': 'Zoznam oddelený čiarkami', - 'options': 'Možnosti', - 'single_line_text': 'Jednoriadkový text', - 'multi_line_text': 'Viacriadkový text', - 'dropdown': 'Rozbaľovacia ponuka', - 'field_type': 'Typ poľa', - 'recover_password_email_sent': 'E-mail na obnovenie hesla bol odoslaný', - 'submit': 'Potvrdiť', - 'recover_password': 'Obnoviť heslo', - 'late_fees': 'Poplatky za oneskorenie', - 'credit_number': 'Číslo dobropisu', - 'payment_number': 'Číslo platby', - 'late_fee_amount': 'Výška poplatku z omeškania', - 'late_fee_percent': 'Poplatok za oneskorenie v percentách', - 'schedule': 'Plán', - 'before_due_date': 'Pred dátumom splatnosti', + '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', + 'default_tax_rate': 'Default Tax Rate', + 'user': 'Пользователь', + 'invoice_tax': 'Invoice Tax', + 'line_item_tax': 'Line Item Tax', + 'inclusive_taxes': 'Inclusive Taxes', + 'invoice_tax_rates': 'Invoice Tax Rates', + 'item_tax_rates': 'Item Tax Rates', + 'no_client_selected': 'Please select a client', + 'configure_rates': 'Configure rates', + 'configure_gateways': 'Configure Gateways', + 'tax_settings': 'Настройки налогов', + 'tax_settings_rates': 'Tax Rates', + 'accent_color': 'Accent Color', + 'switch': 'Switch', + 'comma_sparated_list': 'Comma separated list', + 'options': 'Настройки', + 'single_line_text': 'Single-line text', + 'multi_line_text': 'Multi-line text', + 'dropdown': 'Dropdown', + 'field_type': 'Field Type', + 'recover_password_email_sent': 'A password recovery email has been sent', + 'submit': 'Submit', + 'recover_password': 'Восстановить пароль', + 'late_fees': 'Late Fees', + 'credit_number': 'Credit Number', + 'payment_number': 'Payment Number', + 'late_fee_amount': 'Сумма пени', + 'late_fee_percent': 'Процент пени', + 'schedule': 'Schedule', + 'before_due_date': 'Before the due date', 'after_due_date': 'After the due date', - 'after_invoice_date': 'Po dátume faktúry', - 'days': 'Dni', - 'invoice_email': 'Fakturačný email', - 'payment_email': 'Fakturačný email', - 'partial_payment': 'Čiastočná platba', - 'payment_partial': 'Čiastočná platba', - 'partial_payment_email': 'E-mail s čiastočnou platbou', - 'quote_email': 'Email pre ponuky', - 'endless_reminder': 'Nekonečná pripomienka', - 'filtered_by_user': 'Filtrované podľa používateľa', - 'administrator': 'Správca', + 'after_invoice_date': 'After the invoice date', + 'days': 'Дни', + 'invoice_email': 'Письмо', + 'payment_email': 'Платежный адрес эл. почты', + 'partial_payment': 'Partial Payment', + 'payment_partial': 'Partial Payment', + 'partial_payment_email': 'Partial Payment Email', + 'quote_email': 'Quote Email', + 'endless_reminder': 'Endless Reminder', + 'filtered_by_user': 'Filtered by User', + 'administrator': 'Administrator', 'administrator_help': - 'Umožnite používateľovi spravovať používateľov, meniť nastavenia a upravovať všetky záznamy', - 'user_management': 'Správa používateľov', - 'users': 'Užívatelia', - 'new_user': 'Nový užívaťeľ', - 'edit_user': 'Upraviť používateľa', - 'created_user': 'Užívateľ úspešne vytvorený', - 'updated_user': 'Používateľ úspešne upravený', - 'archived_user': 'Používateľ úspešne archivovaný', - 'deleted_user': 'Používateľ úspešne vymazaný', - 'removed_user': 'Používateľ bol úspešne odstránený', - 'restored_user': 'Používateľ úspešne obnovený', - 'archived_users': 'Úspešne archivované :value používatelia', - 'deleted_users': 'Používatelia :value boli úspešne odstránení', - 'removed_users': 'Používatelia :value boli úspešne odstránení', - 'restored_users': 'Používatelia :value boli úspešne obnovení', - 'general_settings': 'Všeobecné nastavenia', - 'invoice_options': 'Možnosti faktúry', - 'hide_paid_to_date': 'Skryť Uhradené k dátumu', + 'Allow user to manage users, change settings and modify all records', + 'user_management': 'Управление пользователями', + 'users': 'Пользователи', + 'new_user': 'New User', + 'edit_user': 'Редактировать', + 'created_user': 'Successfully created user', + 'updated_user': 'Профиль пользователя успешно обновлён', + 'archived_user': 'Successfully archived user', + 'deleted_user': 'Пользователь удалён', + 'removed_user': 'Successfully removed user', + 'restored_user': 'Пользователь успешно восстановлен', + 'archived_users': 'Successfully archived :value users', + 'deleted_users': 'Successfully deleted :value users', + 'removed_users': 'Successfully removed :value users', + 'restored_users': 'Successfully restored :value users', + 'general_settings': 'Общие настройки', + 'invoice_options': 'Настройки счета', + 'hide_paid_to_date': 'Скрыть \"Оплатить до\"', 'hide_paid_to_date_help': - 'Po prijatí úhrady zobraziť len oblasť \"Uhradené k dátumu\" na faktúrach.', - 'invoice_embed_documents': 'Zapracovať dokumenty', - 'invoice_embed_documents_help': 'Zahrnúť priložené obrázky do faktúry.', - 'all_pages_header': 'Zobraziť hlavičku na', - 'all_pages_footer': 'Zobraziť pätu na', - 'first_page': 'Prvá strana', - 'all_pages': 'Všetky strany', - 'last_page': 'Posledná strana', - 'primary_font': 'Primárne písmo', - 'secondary_font': 'Sekundárne písmo', - 'primary_color': 'Primárna farba', - 'secondary_color': 'Sekundárna farba', - 'page_size': 'Veľkosť stránky', - 'font_size': 'Veľkosť písma', - 'quote_design': 'Vzhľad ponuky', - 'invoice_fields': 'Polia faktúry', - 'product_fields': 'Polia produktu', - 'invoice_terms': 'Fakturačné podmienky', - 'invoice_footer': 'Päta faktúry', - 'quote_terms': 'Podmienky ponuky', - 'quote_footer': 'Päta ponuky', - 'auto_email_invoice': 'Automatický e-mail', + 'Показывать только «Оплатить до» в ваших счетах после получения платежа.', + 'invoice_embed_documents': 'Embed Documents', + 'invoice_embed_documents_help': 'Include attached images in the invoice.', + 'all_pages_header': 'Show Header on', + 'all_pages_footer': 'Show Footer on', + 'first_page': 'First page', + 'all_pages': 'All pages', + 'last_page': 'Last page', + 'primary_font': 'Primary Font', + 'secondary_font': 'Secondary Font', + 'primary_color': 'Основной цвет', + 'secondary_color': 'Второстепенный цвет', + 'page_size': 'Page Size', + 'font_size': 'Размер шрифта', + 'quote_design': 'Шаблон котировок', + 'invoice_fields': 'Поля счёта', + 'product_fields': 'Поля товара/услуги', + 'invoice_terms': 'Условия счёта', + 'invoice_footer': 'Нижний колонтитул счета', + 'quote_terms': 'Quote Terms', + 'quote_footer': 'Quote Footer', + 'auto_email_invoice': 'Auto Email', 'auto_email_invoice_help': - 'Automaticky odosielať e-mailom opakujúce sa faktúry, keď sú vytvorené.', - 'auto_archive_invoice': 'Automatická archivácia', + 'Automatically email recurring invoices when they are created.', + 'auto_archive_invoice': 'Auto Archive', 'auto_archive_invoice_help': - 'Automaticky archivovať faktúry po prijatí úhrady', - 'auto_archive_quote': 'Automatická archivácia', - 'auto_archive_quote_help': 'Automaticky archivovať ponuky po konverzii.', - 'auto_convert_quote': 'Automaticky konvertovať', + 'Automatically archive invoices when they are paid.', + 'auto_archive_quote': 'Auto Archive', + 'auto_archive_quote_help': + 'Automatically archive quotes when they are converted.', + 'auto_convert_quote': 'Auto Convert', 'auto_convert_quote_help': - 'Automaticky previesť ponuku na faktúru po schválení zákazníkom.', - 'workflow_settings': 'Nastavenia pracovného postupu', - 'freq_daily': 'Denne', - 'freq_weekly': 'Týždenne', - 'freq_two_weeks': 'Dva týždne', - 'freq_four_weeks': 'Štyri týždne', - 'freq_monthly': 'Mesačne', - 'freq_two_months': 'Dva mesiace', - 'freq_three_months': 'Tri mesiace', - 'freq_four_months': 'Štyri mesiace', - 'freq_six_months': 'Šesť mesiacov', - 'freq_annually': 'Ročne', - 'freq_two_years': 'Dva roky', - 'freq_three_years': 'Tri roky', - 'never': 'Nikdy', - 'company': 'Spoločnosť', - 'generated_numbers': 'Generované Čísla', - 'charge_taxes': 'Účtovať dane', - 'next_reset': 'Ďalší Reset', - 'reset_counter': 'Vynulovať počítadlo', - 'recurring_prefix': 'Opakujúca sa predpona', - 'number_padding': 'Odsadenie čísla', - 'general': 'Všeobecný', - 'surcharge_field': 'Príplatkové pole', - 'company_field': 'Pole spoločnosti', - 'company_value': 'Hodnota spoločnosti', - 'credit_field': 'Úverové pole', - 'invoice_field': 'Pole faktúry', - 'invoice_surcharge': 'Príplatok za faktúru', - 'client_field': 'Pole zákazníka', - 'product_field': 'Pole produktu', - 'payment_field': 'Platobné pole', - 'contact_field': 'Pole kontaktu', - 'vendor_field': 'Pole dodávateľa', - 'expense_field': 'Pole výdajov', - 'project_field': 'Pole produktu', - 'task_field': 'Pole úlohy', - 'group_field': 'Skupinové pole', - 'number_counter': 'Počítadlo čísel', - 'prefix': 'Predpona', - 'number_pattern': 'Vzor čísla', - 'messages': 'Správy', - 'custom_css': 'Voliteľné CSS', - 'custom_javascript': 'Vlastný JavaScript', - 'signature_on_pdf': 'Zobraziť v PDF', + 'Automatically convert a quote to an invoice when approved by a client.', + 'workflow_settings': 'Workflow Settings', + 'freq_daily': 'Daily', + 'freq_weekly': 'Еженедельно', + 'freq_two_weeks': 'Две недели', + 'freq_four_weeks': 'Четыре недели', + 'freq_monthly': 'Ежемесячно', + 'freq_two_months': 'Два месяца', + 'freq_three_months': 'Три месяца', + 'freq_four_months': 'Четыре месяца', + 'freq_six_months': 'Полгода', + 'freq_annually': 'Annually', + 'freq_two_years': 'Two years', + 'freq_three_years': 'Three Years', + 'never': 'Never', + 'company': 'Компания', + 'generated_numbers': 'Generated Numbers', + 'charge_taxes': 'Расчёт налогов', + 'next_reset': 'Next Reset', + 'reset_counter': 'Reset Counter', + 'recurring_prefix': 'Повторяющийся префикс', + 'number_padding': 'Number Padding', + 'general': 'General', + 'surcharge_field': 'Surcharge Field', + 'company_field': 'Поле Компании', + 'company_value': 'Company Value', + 'credit_field': 'Credit Field', + 'invoice_field': 'Поле Счёта', + 'invoice_surcharge': 'Invoice Surcharge', + 'client_field': 'Client Field', + 'product_field': 'Поле товара/услуги', + 'payment_field': 'Payment Field', + 'contact_field': 'Contact Field', + 'vendor_field': 'Поле Поставщика', + 'expense_field': 'Expense Field', + 'project_field': 'Project Field', + 'task_field': 'Task Field', + 'group_field': 'Group Field', + 'number_counter': 'Number Counter', + 'prefix': 'Префикс', + 'number_pattern': 'Number Pattern', + 'messages': 'Сообщения', + 'custom_css': 'Пользовательские CSS', + 'custom_javascript': 'Custom JavaScript', + 'signature_on_pdf': 'Show on PDF', 'signature_on_pdf_help': - 'Ukázať podpis klienta na faktúre/cenovej ponuke PDF.', - 'show_accept_invoice_terms': 'Začiarkavacie políčko Fakturačné podmienky', + 'Show the client signature on the invoice/quote PDF.', + 'show_accept_invoice_terms': 'Invoice Terms Checkbox', 'show_accept_invoice_terms_help': - 'Vyžadovať od klienta potvrdenie, že súhlasí s fakturačnými podmienkami.', - 'show_accept_quote_terms': 'Začiarkavacie políčko Podmienky objednávky', + 'Require client to confirm that they accept the invoice terms.', + 'show_accept_quote_terms': 'Quote Terms Checkbox', 'show_accept_quote_terms_help': - 'Vyžadovať od zákazníkov súhlas s podmienkami ponúk.', - 'require_invoice_signature': 'Podpis na faktúre', - 'require_invoice_signature_help': 'Vyžadovať od zákazníka podpis.', - 'require_quote_signature': 'Podpis na objednávke', - 'enable_portal_password': 'Zabezpečiť faktúry heslom', + '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_quote_signature': 'Quote Signature', + 'enable_portal_password': 'Password Protect Invoices', 'enable_portal_password_help': - 'Umožňuje nastaviť heslo pre každý kontakt. Ak je nastavené heslo, pred zobrazením faktúr bude vyžadované.', - 'authorization': 'Oprávnenie', - 'subdomain': 'Poddoména', - 'domain': 'Doména', - 'portal_mode': 'Režim portálu', - 'email_signature': 'S pozdravom,', + '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.', + 'authorization': 'Authorization', + 'subdomain': 'Поддомен', + 'domain': 'Domain', + 'portal_mode': 'Portal Mode', + 'email_signature': 'С Уважением,', 'enable_email_markup_help': - 'Uľahčite svojim klientom platenie pridaním označením schema.org do vašich e-mailov.', - 'plain': 'Obyčajný', - 'light': 'Svetlá', - 'dark': 'Tmavá', - 'email_design': 'Vzhľad emailu', - 'attach_pdf': 'Priložiť PDF', - 'attach_documents': 'Priložiť dokumenty', - 'attach_ubl': 'Pripojte URL', - 'email_style': 'Štýl e-mailu', - 'enable_email_markup': 'Možnosť označiť', - 'reply_to_email': 'Email pre odpoveď', - 'reply_to_name': 'Odpovedať - podľa názvu', - 'bcc_email': 'BCC E-mail', - 'processed': 'Spracované', - 'credit_card': 'Kreditná karta', - 'bank_transfer': 'Bankový prevod', - 'priority': 'Priorita', - 'fee_amount': 'Výška poplatku', - 'fee_percent': 'Percento poplatku', - 'fee_cap': 'Obmedzenie poplatku', - 'limits_and_fees': 'Limity/Poplatky', - 'enable_min': 'Povoliť min', - 'enable_max': 'Povoliť max', + 'Make it easier for your clients to pay you by adding schema.org markup to your emails.', + 'plain': 'Plain', + 'light': 'Light', + 'dark': 'Dark', + 'email_design': 'Email Design', + 'attach_pdf': 'Attach PDF', + 'attach_documents': 'Attach Documents', + 'attach_ubl': 'Attach UBL', + 'email_style': 'Email Style', + 'enable_email_markup': 'Enable Markup', + 'reply_to_email': 'Ответить на сообщение', + 'reply_to_name': 'Reply-To Name', + 'bcc_email': 'BCC Email', + 'processed': 'Processed', + 'credit_card': 'Credit Card', + 'bank_transfer': 'Bank Transfer', + 'priority': 'Приоритет', + 'fee_amount': 'Fee Amount', + 'fee_percent': 'Fee Percent', + 'fee_cap': 'Fee Cap', + 'limits_and_fees': 'Limits/Fees', + 'enable_min': 'Enable min', + 'enable_max': 'Enable max', 'min_limit': 'Min: :min', 'max_limit': 'Max: :max', 'min': 'Min', - 'max': 'ax', - 'accepted_card_logos': 'Logá akceptovaných kariet', - 'credentials': 'Poverenia', - 'update_address': 'Upraviť adresu', + 'max': 'Max', + 'accepted_card_logos': 'Accepted Card Logos', + 'credentials': 'Credentials', + 'update_address': 'Обновить адрес', 'update_address_help': - 'Aktualizovať adresu zákazníka poskytnutými údajmi', - 'rate': 'Sadzba', - 'tax_rate': 'Sadzba dane', - 'new_tax_rate': 'Nová sadzba dane', - 'edit_tax_rate': 'Upraviť sadzbu dane', - 'created_tax_rate': 'Sadzba dane úspešne vytvorená', - 'updated_tax_rate': 'Sadzba dane úspešne upravená', - 'archived_tax_rate': 'Sadzba dane úspešne archivovaná', - 'deleted_tax_rate': 'Sadzba dane úspešne odstránená', - 'restored_tax_rate': 'Sadzba dane úspešne obnovená', - 'archived_tax_rates': 'Sadzby dane :value boli úspešne archivované', - 'deleted_tax_rates': 'Stavy úloh :value boli úspešne vymazané', - 'restored_tax_rates': 'Sadzby dane :value boli úspešne obnovené', - 'fill_products': 'Automaticky vyplniť produkty', - 'fill_products_help': 'Výber produktu automaticky vyplní popis a cenu', - 'update_products': 'Automaticky aktualizovať produkty', + 'Обновить адрес клиента предоставленными сведениями', + 'rate': 'Ставка', + 'tax_rate': 'Налоговая ставка', + 'new_tax_rate': 'New Tax Rate', + 'edit_tax_rate': 'Изменить налоговую ставку', + 'created_tax_rate': 'Налоговая ставка создана', + 'updated_tax_rate': 'Налоговая ставка обновлена', + 'archived_tax_rate': 'Налоговая ставка добавлена в архив', + 'deleted_tax_rate': 'Successfully deleted tax rate', + 'restored_tax_rate': 'Successfully restored tax rate', + 'archived_tax_rates': 'Successfully archived :value tax rates', + 'deleted_tax_rates': 'Successfully deleted :value tax rates', + 'restored_tax_rates': 'Successfully restored :value tax rates', + 'fill_products': 'Автозаполнение товаров/услуг', + 'fill_products_help': + 'Выбор товара/услуги автоматически заполнит описание и стоимость', + 'update_products': 'Автообновление товаров/услуг', 'update_products_help': - 'Úprava faktúry automaticky upraví knižnicu produktov', - 'convert_products': 'Konvertovať produkty', + 'Обновление счета автоматически обновит библиотеку товаров/услуг', + 'convert_products': 'Конвертировать товар/услугу', 'convert_products_help': - 'Automaticky prepočítajte ceny produktov na menu klienta', - 'fees': 'Poplatky', - 'limits': 'Limity', - 'provider': 'Poskytovateľ', - 'company_gateway': 'Platobná brána', - 'company_gateways': 'Platobné brány', - 'new_company_gateway': 'Nová brána', - 'edit_company_gateway': 'Upraviť bránu', - 'created_company_gateway': 'Brána úspešne vytvorená', - 'updated_company_gateway': 'Brána úspešne upravená', - 'archived_company_gateway': 'Brána úspešne archivovaná', - 'deleted_company_gateway': 'Brána úspešne odstránená', - 'restored_company_gateway': 'Brána úspešne obnovená', - 'archived_company_gateways': 'Brány :value boli úspešne archivované', - 'deleted_company_gateways': 'Brány :value boli úspešne vymazané', - 'restored_company_gateways': 'Brány :value boli úspešne obnovené', - 'continue_editing': 'Pokračovať v úprave', - 'discard_changes': 'Zahodiť zmeny', - 'default_value': 'Predvolená hodnota', - 'disabled': 'Vypnuté', - 'currency_format': 'Formát meny', - 'first_day_of_the_week': 'Prvý deň v týždni', - 'first_month_of_the_year': 'Prvý mesiac v roku', - 'sunday': 'Nedeľa', - 'monday': 'Pondelok', - 'tuesday': 'Utorok', - 'wednesday': 'Streda', - 'thursday': 'Štvrtok', - 'friday': 'Piatok', - 'saturday': 'Sobota', - 'january': 'Január', - 'february': 'Február', - 'march': 'Marec', - 'april': 'Apríl', - 'may': 'Máj', - 'june': 'Jún', - 'july': 'Júl', + 'Автоматически конвертировать цену продукта в валюту клиента', + 'fees': 'Платы', + 'limits': 'Лимиты', + 'provider': 'Provider', + 'company_gateway': 'Payment Gateway', + 'company_gateways': 'Payment Gateways', + 'new_company_gateway': 'New Gateway', + 'edit_company_gateway': 'Edit Gateway', + 'created_company_gateway': 'Successfully created gateway', + 'updated_company_gateway': 'Successfully updated gateway', + 'archived_company_gateway': 'Successfully archived gateway', + 'deleted_company_gateway': 'Successfully deleted gateway', + 'restored_company_gateway': 'Successfully restored gateway', + 'archived_company_gateways': 'Successfully archived :value gateways', + 'deleted_company_gateways': 'Successfully deleted :value gateways', + 'restored_company_gateways': 'Successfully restored :value gateways', + 'continue_editing': 'Continue Editing', + 'discard_changes': 'Discard Changes', + 'default_value': 'Default value', + 'disabled': 'Disabled', + 'currency_format': 'Currency Format', + 'first_day_of_the_week': 'First Day of the Week', + 'first_month_of_the_year': 'First Month of the Year', + 'sunday': 'Воскресенье', + 'monday': 'Понедельник', + 'tuesday': 'Вторник', + 'wednesday': 'Среда', + 'thursday': 'Четверг', + 'friday': 'Пятница', + 'saturday': 'Суббота', + 'january': 'January', + 'february': 'February', + 'march': 'March', + 'april': 'April', + 'may': 'May', + 'june': 'June', + 'july': 'July', 'august': 'August', 'september': 'September', - 'october': 'Október', + 'october': 'October', 'november': 'November', 'december': 'December', 'symbol': 'Symbol', - 'ocde': 'Kód', - 'date_format': 'Formát dátumu', - 'datetime_format': 'Formát dátumu a času', - 'military_time': '24-hodinový formát času', - 'military_time_help': '24-hodinové zobrazenie', - 'send_reminders': 'Odoslať pripomienky', - 'timezone': 'Časové pásmo', - 'filtered_by_project': 'Filtrované podľa projektu', - 'filtered_by_group': 'Filtrované podla skupiny', - 'filtered_by_invoice': 'Filtrované podla faktúry', - 'filtered_by_client': 'Filtrované podla zákazníka', - 'filtered_by_vendor': 'Filtrované podla dodávateľa', - 'group_settings': 'Nastavenia skupiny', - 'group': 'Skupina', - 'groups': 'Skupiny', - 'new_group': 'Nová skupina', - 'edit_group': 'Upraviť skupinu', - 'created_group': 'Skupina úspešne vytvorená', - 'updated_group': 'Skupina úspešne upravená', - 'archived_groups': 'Úspešne archivované :value skupiny', - 'deleted_groups': 'Skupiny :value boli úspešne odstránené', - 'restored_groups': 'Úspešne obnovené :value skupiny', - 'archived_group': 'Skupina úspešne archivovaná', - 'deleted_group': 'Skupina úspešne zmazaná', - 'restored_group': 'Skupina úspešne obnovená', - 'upload_logo': 'Nahrať logo', - 'uploaded_logo': 'Logo úspešne nahraté', - 'logo': 'Logo', - 'saved_settings': 'Nastavenia boli úspešne uložné', - 'product_settings': 'Nastavenia produktu', - 'device_settings': 'Nastavenie zariadenia', - 'defaults': 'Predvolené', - 'basic_settings': 'Základné nastavenia', - 'advanced_settings': 'Rozšírené nastavenia', - 'company_details': 'Firemné údaje', - 'user_details': 'Podrobnosti o používateľovi', - 'localization': 'Lokalizácia', - 'online_payments': 'Online platby', - 'tax_rates': 'Sadzby dane', - 'notifications': 'Notifikácie', - 'import_export': 'Import | Export', - 'custom_fields': 'Voliteľné polia', - 'invoice_design': 'Vzhľad faktúry', - 'buy_now_buttons': 'Tlačidlá Kúpiť teraz', - 'email_settings': 'Nastavenia Emailov', - 'templates_and_reminders': 'Šablóny a pripomienky', - 'credit_cards_and_banks': 'Kreditné karty a banky', - 'data_visualizations': 'Vizualizácie údajov', - 'price': 'Cena', - 'email_sign_up': 'E-mailová registrácia', - 'google_sign_up': 'Registrácia Google', - 'thank_you_for_your_purchase': 'Ďakujeme za Váš nákup!', - 'redeem': 'Uplatniť', - 'back': 'Späť', - 'past_purchases': 'Predchádzajúce nákupy', - 'annual_subscription': 'Ročné predplatné', - 'pro_plan': 'Verzia Pro', - 'enterprise_plan': 'Verzia Enterprise', - 'count_users': ':count užívateľov', - 'upgrade': 'Inovovať', - 'please_enter_a_first_name': 'Prosím vložte krstné meno', - 'please_enter_a_last_name': 'Prosím vložte priezvisko', + 'ocde': 'Code', + 'date_format': 'Date Format', + 'datetime_format': 'Datetime Format', + 'military_time': '24-часовой формат', + 'military_time_help': '24 Hour Display', + 'send_reminders': 'Send Reminders', + 'timezone': 'Timezone', + 'filtered_by_project': 'Filtered by Project', + 'filtered_by_group': 'Filtered by Group', + 'filtered_by_invoice': 'Filtered by Invoice', + 'filtered_by_client': 'Filtered by Client', + 'filtered_by_vendor': 'Filtered by Vendor', + 'group_settings': 'Group Settings', + 'group': 'Группа', + 'groups': 'Groups', + 'new_group': 'New Group', + 'edit_group': 'Edit Group', + 'created_group': 'Successfully created group', + 'updated_group': 'Successfully updated group', + 'archived_groups': 'Successfully archived :value groups', + 'deleted_groups': 'Successfully deleted :value groups', + 'restored_groups': 'Successfully restored :value groups', + 'archived_group': 'Successfully archived group', + 'deleted_group': 'Successfully deleted group', + 'restored_group': 'Successfully restored group', + 'upload_logo': 'Upload Logo', + 'uploaded_logo': 'Successfully uploaded logo', + 'logo': 'Логотип', + 'saved_settings': 'Successfully saved settings', + 'product_settings': 'Настройки товара/услуги', + 'device_settings': 'Device Settings', + 'defaults': 'По умолчанию', + 'basic_settings': 'Основные настройки', + 'advanced_settings': 'Расширенные настройки', + 'company_details': 'Детали компании', + 'user_details': 'Данные пользователя', + 'localization': 'Локализация', + 'online_payments': 'Онлайн платежи', + 'tax_rates': 'Налоговые ставки', + 'notifications': 'Оповещения', + 'import_export': 'Импорт | Экспорт', + 'custom_fields': 'Настраиваемые поля', + 'invoice_design': 'Дизайн счёта', + 'buy_now_buttons': 'Buy Now Buttons', + 'email_settings': 'Настройки эл. почты', + 'templates_and_reminders': 'Шаблоны и Напоминания', + 'credit_cards_and_banks': 'Credit Cards & Banks', + 'data_visualizations': 'Представление данных', + 'price': 'Price', + 'email_sign_up': 'Email Sign Up', + 'google_sign_up': 'Google Sign Up', + 'thank_you_for_your_purchase': 'Thank you for your purchase!', + 'redeem': 'Redeem', + 'back': 'Back', + 'past_purchases': 'Past Purchases', + 'annual_subscription': 'Annual Subscription', + 'pro_plan': 'Pro Plan', + 'enterprise_plan': 'Enterprise Plan', + 'count_users': ':count users', + 'upgrade': 'Upgrade', + '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': - 'Prosím, potvrďte, že súhlasíte s obchodnými podmienkami a ochranou súkromia, ak chcete vytvoriť účet.', - 'i_agree_to_the': 'Súhlasím s', - 'terms_of_service': 'Obchodné podmienky', - 'privacy_policy': 'Ochrana súkromia', - 'sign_up': 'Registácia', - 'account_login': 'Prihlásenie do účtu', - 'view_website': 'Pozrieť webstránku', - 'create_account': 'Vytvoriť účet', - 'email_login': 'Prihlásenie e-mailom', - 'create_new': 'Vytvoriť nový', - 'no_record_selected': 'Nie je vybraný žiadny záznam', - 'error_unsaved_changes': 'Prosím uložte alebo zrušte Vaše zmeny', - 'download': 'Stiahnuť', - 'requires_an_enterprise_plan': 'Požaduje sa verzia Enterprise', - 'take_picture': 'Vyfotiť', - 'upload_file': 'Nahrať súbor', - 'document': 'Dokument', - 'documents': 'Dokumenty', - 'new_document': 'Nový dokument', - 'edit_document': 'Editovať dokument', - 'uploaded_document': 'Dokument úspešne nahraný', - 'updated_document': 'Dokument úspešne aktualizovaný', - 'archived_document': 'Dokument úspešne archivovaný', - 'deleted_document': 'Dokument úspešne vymazaný', - 'restored_document': 'Dokument úspešne obnovený', - 'archived_documents': 'Úspešne archivované :value dokumenty', - 'deleted_documents': 'Dokumenty :value boli úspešne odstránené', - 'restored_documents': 'Úspešne obnovené :value dokumenty', - 'no_history': 'Žiadna História', - 'expense_date': 'Dátum výdajov', - 'pending': 'Čaká sa', - 'expense_status_1': 'Prihlásené', - 'expense_status_2': 'Čaká', - 'expense_status_3': 'Faktúrované', - 'converted': 'Konvertované', - 'add_documents_to_invoice': 'Pridat dokumenty do faktúry', - 'exchange_rate': 'Výmenný kurz', - 'convert_currency': 'Previesť menu', - 'mark_paid': 'Označiť uhradené', - 'category': 'Kategória', - 'address': 'Adresa', - 'new_vendor': 'Nový dodávateľ', - 'created_vendor': 'Dodávateľ úspešne vytvorený', - 'updated_vendor': 'Dodávateľ úspešne aktualizovaný', - 'archived_vendor': 'Dodávateľ úspešne archivovaný', - 'deleted_vendor': 'Dodávateľ úspešne odstránený', - 'restored_vendor': 'Dodávateľ úspešne obnovený', - 'archived_vendors': 'Počet úspešne archivovaných dodávateľov: :count', - 'deleted_vendors': 'Počet úspešne odstranených dodávateľov: :count', - 'restored_vendors': 'Dodávatelia :value boli úspešne obnovení', - 'new_expense': 'Zadajte výdaje', - 'created_expense': 'Výdaje úspešne vytvorené', - 'updated_expense': 'Výdaje úspešne aktualizované', - 'archived_expense': 'Výdaje úspešne archivované', - 'deleted_expense': 'Výdaje úspešne zmazané', - 'restored_expense': 'Náklad úspešne obnovený', - 'archived_expenses': 'Výdaje úspešne archivované', - 'deleted_expenses': 'Výdaje úspešne zmazané', - 'restored_expenses': 'Úspešne obnovené :value výdavky', - 'copy_shipping': 'Kopírovať dodanie', - 'copy_billing': 'Kopírovať fakturáciu', - 'design': 'Vzhľad', - 'failed_to_find_record': 'Nepodarilo sa nájsť záznam', - 'invoiced': 'Fakturované', - 'logged': 'Prihlásený', - 'running': 'Spustené', - 'resume': 'Obnoviť', - 'task_errors': 'Prosím opravte prekrývajúci sa čas', - 'start': 'Spustiť', - 'stop': 'Zastaviť', - 'started_task': 'Úloha úspešne spustená', - 'stopped_task': 'Úloha úspešne zastavená', - 'resumed_task': 'Úloha úspešne obnovená', - 'now': 'Teraz', - 'auto_start_tasks': 'Automatické spustenie úloh', - 'timer': 'Časovač', - 'manual': 'Manuál', - 'budgeted': 'Rozpočtované', - 'start_time': 'Počiatočný čas', - 'end_time': 'Čas ukončenia', - 'date': 'Dátum', - 'times': 'Časy', - 'duration': 'Trvanie', - 'new_task': 'Nová úloha', - 'created_task': 'Úloha úspešne vytvorená', - 'updated_task': 'Úloha úspešne upravená', - 'archived_task': 'Úloha úspešne archivovaná', - 'deleted_task': 'Úloha úspešne odstránená', - 'restored_task': 'Úloha úspešne obnovená', - 'archived_tasks': 'Počet úspešne archivovaných úloh: :count', - 'deleted_tasks': 'Počet úspešne zmazaných úloh: :count', - 'restored_tasks': 'Úspešne obnovené :value úlohy', - 'please_enter_a_name': 'Zadaj meno', - 'budgeted_hours': 'Rozpočtované hodiny', - 'created_project': 'Projekt bol úspešne vytvorený', - 'updated_project': 'Projekt bol úspešne upravený', - 'archived_project': 'Projekt bol úspešne archivovaný', - 'deleted_project': 'Projekt bol úspešne zmazaný', - 'restored_project': 'Projekt bol úspešne obnovený', - 'archived_projects': 'Počet úspešne archivovaných projektov: :count', - 'deleted_projects': 'Počet úspešne archivovaných projektov: :count', - 'restored_projects': 'Úspešne obnovené :value projekty', - 'new_project': 'Nový projekt', - 'thank_you_for_using_our_app': 'Ďakujeme, že používate našu aplikáciu!', - 'if_you_like_it': 'Ak sa Vám páči prosím', - 'click_here': 'kliknite sem', - 'click_here_capital': 'Kliknite tu', - 'to_rate_it': 'aby ste to ohodnotil.', - 'average': 'Priemer', - 'unapproved': 'Neschválené', + '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': 'Условия использования', + 'privacy_policy': 'Privacy Policy', + 'sign_up': 'Зарегистрироваться', + 'account_login': 'Логин', + 'view_website': 'View Website', + 'create_account': 'Create Account', + 'email_login': 'Email Login', + 'create_new': 'Create New', + 'no_record_selected': 'No record selected', + 'error_unsaved_changes': 'Please save or cancel your changes', + 'download': 'Скачать', + 'requires_an_enterprise_plan': 'Requires an enterprise plan', + 'take_picture': 'Take Picture', + 'upload_file': 'Upload File', + 'document': 'Document', + 'documents': 'Документы', + 'new_document': 'New Document', + 'edit_document': 'Edit Document', + 'uploaded_document': 'Successfully uploaded document', + 'updated_document': 'Successfully updated document', + 'archived_document': 'Successfully archived document', + 'deleted_document': 'Successfully deleted document', + 'restored_document': 'Successfully restored document', + 'archived_documents': 'Successfully archived :value documents', + 'deleted_documents': 'Successfully deleted :value documents', + 'restored_documents': 'Successfully restored :value documents', + 'no_history': 'No History', + 'expense_date': 'Дата Затрат', + 'pending': 'Ожидающий', + 'expense_status_1': 'Logged', + 'expense_status_2': 'Pending', + 'expense_status_3': 'Invoiced', + 'converted': 'Преобразован', + 'add_documents_to_invoice': 'Добавить документы в Счёт', + 'exchange_rate': 'Exchange Rate', + 'convert_currency': 'Convert currency', + 'mark_paid': 'Отметить оплаченным', + 'category': 'Категория', + 'address': 'Адрес', + 'new_vendor': 'Новый поставщик', + 'created_vendor': 'Поставщик успешно создан', + 'updated_vendor': 'Поставщик успешно обновлён', + 'archived_vendor': 'Поставщик успешно архивирован', + 'deleted_vendor': 'Поставщик успешно удалён', + 'restored_vendor': 'Successfully restored vendor', + 'archived_vendors': 'Успешно архивировано :count поставщика(ов)', + 'deleted_vendors': 'Успешно удалено :count поставщика(ов)', + 'restored_vendors': 'Successfully restored :value vendors', + 'new_expense': 'Добавить затраты', + 'created_expense': 'Successfully created expense', + 'updated_expense': 'Затраты успешно обновлены', + 'archived_expense': 'Successfully archived expense', + 'deleted_expense': 'Затраты успешно удалены', + 'restored_expense': 'Successfully restored expense', + 'archived_expenses': 'Successfully archived expenses', + 'deleted_expenses': 'Затраты успешно удалены', + 'restored_expenses': 'Successfully restored :value expenses', + 'copy_shipping': 'Copy Shipping', + 'copy_billing': 'Copy Billing', + 'design': 'Design', + 'failed_to_find_record': 'Failed to find record', + 'invoiced': 'Выставлен счёт', + 'logged': 'Учтено', + 'running': 'Выполняется', + 'resume': 'Назад', + 'task_errors': 'Пожалуйста, исправьте перекрывающиеся интервалы', + 'start': 'Старт', + 'stop': 'Стоп', + 'started_task': 'Successfully started task', + 'stopped_task': 'Задание успешно остановлено', + 'resumed_task': 'Задание успешно возобновлено', + 'now': 'Сейчас', + 'auto_start_tasks': 'Auto Start Tasks', + 'timer': 'Таймер', + 'manual': 'Руководство', + 'budgeted': 'Budgeted', + 'start_time': 'Время начала', + 'end_time': 'Время завершения', + 'date': 'Дата', + 'times': 'Время', + 'duration': 'Длительность', + 'new_task': 'Новое задание', + 'created_task': 'Задание успешно создано', + 'updated_task': 'Задание успешно обновлено', + 'archived_task': 'Задание перенесено в архив', + 'deleted_task': 'Задание удалено', + 'restored_task': 'Задание успешно восстановлено', + 'archived_tasks': 'Перенесено в архив :count заданий', + 'deleted_tasks': 'Удалено :count заданий', + 'restored_tasks': 'Successfully restored :value tasks', + 'please_enter_a_name': 'Please enter a name', + 'budgeted_hours': 'Budgeted Hours', + 'created_project': 'Successfully created project', + 'updated_project': 'Successfully updated project', + 'archived_project': 'Successfully archived project', + 'deleted_project': 'Successfully deleted project', + 'restored_project': 'Successfully restored project', + 'archived_projects': 'Successfully archived :count projects', + 'deleted_projects': 'Successfully deleted :count projects', + 'restored_projects': 'Successfully restored :value projects', + 'new_project': 'New Project', + 'thank_you_for_using_our_app': 'Спасибо что используете наше приложение!', + 'if_you_like_it': 'If you like it please', + 'click_here': 'нажмите сюда', + 'click_here_capital': 'Click here', + 'to_rate_it': 'to rate it.', + 'average': 'Average', + 'unapproved': 'Неподтверждённые', 'authenticate_to_change_setting': - 'Ak chcete zmeniť toto nastavenie, overte totožnosť', - 'locked': 'Uzamknuté', - 'authenticate': 'Overiť', - 'please_authenticate': 'Prosím overte', - 'biometric_authentication': 'Biometrická autentifikácia', - 'footer': 'Päta', - 'compare': 'Porovnať', - 'hosted_login': 'Hostiteľské prihlásenie', - 'selfhost_login': 'Vlastné prihlásenie', - 'google_sign_in': 'Prihláste sa pomocou Google', - 'today': 'Dnes', - 'custom_range': 'Vlastný rozsah', - 'date_range': 'Časový rozsah', - 'current': 'Aktuálny', - 'previous': 'Predchádzajúci', - 'current_period': 'Aktuálné obdobie', - 'comparison_period': 'Porovnávané obdobie', - 'previous_period': 'Predchádzajúce obdobie', - 'previous_year': 'Minulý rok', - 'compare_to': 'Porovnať s', - 'last7_days': 'Posledných 7 dní', - 'last_week': 'Posledný týždeň', - 'last30_days': 'Posledných 30 dní', - 'this_month': 'Tento Mesiac', - 'last_month': 'Posledný mesiac', - 'this_year': 'Tento Rok', - 'last_year': 'Posledný Rok', - 'custom': 'Vlastné', - 'clone_to_invoice': 'Duplikovať do faktúry', - 'clone_to_quote': 'Duplikovať do ponuky', - 'clone_to_credit': 'Klon na úver', - 'view_invoice': 'Zobraziť faktúru', - 'convert': 'Konvertovať', - 'more': 'VIac', - 'edit_client': 'Upraviť zákazníka', - 'edit_product': 'Upraviť produkt', - 'edit_invoice': 'Úprava faktúry', - 'edit_quote': 'Upraviť ponuku', - 'edit_payment': 'Upraviť platbu', - 'edit_task': 'Upraviť úlohu', - 'edit_expense': 'Upraviť výdaje', - 'edit_vendor': 'Upraviť dodávateľa', - 'edit_project': 'Upraviť projekt', - 'edit_recurring_quote': 'Upraviť pravidelnú ponuku', - 'billing_address': 'Fakturačná adresa', - 'shipping_address': 'Dodacia adresa', - 'total_revenue': 'Celkový príjem', - 'average_invoice': 'Priemerná faktúra', - 'outstanding': 'Nezaplatené', - 'invoices_sent': ':count faktúr odoslaných', - 'active_clients': 'aktívni zákazníci', - 'close': 'Zavrieť', - 'email': 'Email', - 'password': 'Heslo', + 'Please authenticate to change this setting', + 'locked': 'Заблокировано', + 'authenticate': 'Authenticate', + 'please_authenticate': 'Please authenticate', + 'biometric_authentication': 'Biometric Authentication', + 'footer': 'Нижний колонтитул', + 'compare': 'Сравнить', + 'hosted_login': 'Hosted Login', + 'selfhost_login': 'Selfhost Login', + 'google_sign_in': 'Sign in with Google', + 'today': 'Сегодня', + 'custom_range': 'Custom Range', + 'date_range': 'Date Range', + 'current': 'Текущий', + 'previous': 'Предыдущий', + 'current_period': 'Текущий период', + 'comparison_period': 'Период сравнения', + 'previous_period': 'Прошлый период', + 'previous_year': 'Преддуший год', + 'compare_to': 'Сравнить с', + 'last7_days': 'Последние 7 дней', + 'last_week': 'За последнюю неделю', + 'last30_days': 'Последние 30 дней', + 'this_month': 'Текущий месяц', + 'last_month': 'Прошлый месяц', + 'this_year': 'This Year', + 'last_year': 'Прошлый год', + 'custom': 'Настроить', + 'clone_to_invoice': 'Добавить в счёт', + 'clone_to_quote': 'Добавить в Прайс-лист', + 'clone_to_credit': 'Clone to Credit', + 'view_invoice': 'Посмотреть счет', + 'convert': 'Конвертирован', + 'more': 'More', + 'edit_client': 'Изменить клиента', + 'edit_product': 'Редактировать товар/услугу', + 'edit_invoice': 'Изменить счёт', + 'edit_quote': 'Изменить котировку', + 'edit_payment': 'Редактировать оплату', + 'edit_task': 'Редактировать задание', + 'edit_expense': 'Редактировать затраты', + 'edit_vendor': 'Редактировать Поставщика', + 'edit_project': 'Edit Project', + 'edit_recurring_quote': 'Edit Recurring Quote', + 'billing_address': 'Адрес для выставления счетов', + 'shipping_address': 'Shipping Address', + 'total_revenue': 'Совокупный доход', + 'average_invoice': 'Средний счёт', + 'outstanding': 'Исходящие', + 'invoices_sent': ':count счетов отправлено', + 'active_clients': 'активные клиенты', + 'close': 'Закрыть', + 'email': 'Эл. почта', + 'password': 'Пароль', 'url': 'URL', - 'secret': 'Tajnost', - 'name': 'Meno', - 'logout': 'Odhlásiť', - 'login': 'Prihlásiť', - 'filter': 'Filter', - 'sort': 'Zoradiť', - 'search': 'Hľadať', - 'active': 'Aktívny', - 'archived': 'Archivované', - 'deleted': 'Odstránené', - 'dashboard': 'Prehlad', - 'archive': 'Archív', - 'delete': 'Odstrániť', - 'restore': 'Obnoviť', - 'refresh_complete': 'Obnovenie dokončené', - 'please_enter_your_email': 'Prosím zadajte váš email', - 'please_enter_your_password': 'Prosim zadajte vaše heslo', - 'please_enter_your_url': 'Prosím zadajte vašu URL', - 'please_enter_a_product_key': 'Prosím zadajte váš produktový kľúč', - 'ascending': 'Vzostupne', - 'descending': 'Zostupne', - 'save': 'Uložiť', - 'an_error_occurred': 'Nastala chyba', - 'paid_to_date': 'Zaplatené ku dňu', - 'balance_due': 'Zostáva uhradiť', - 'balance': 'Zostatok', - 'overview': 'Zhrnutie', - 'details': 'Detaily', - 'phone': 'Telefón', - 'website': 'Web', - 'vat_number': 'IČ DPH', - 'id_number': 'ID číslo', - 'create': 'Vytvoriť', - 'copied_to_clipboard': 'Hodnota :value bola skopírovaná do schránky', - 'error': 'Chyba', - 'could_not_launch': 'Nepodarilo sa spustiť', - 'contacts': 'Kontakty', - 'additional': 'Dodatočné', - 'first_name': 'Meno', - 'last_name': 'Priezvisko', - 'add_contact': 'Pridať kontakt', - 'are_you_sure': 'Ste si istý?', - 'cancel': 'Storno', + 'secret': 'Secret', + 'name': 'Название', + 'logout': 'Выйти', + 'login': 'Логин', + 'filter': 'Фильтр', + 'sort': 'Сортировка', + 'search': 'Искать', + 'active': 'Активный', + 'archived': 'Архив', + 'deleted': 'Удален', + 'dashboard': 'Главная', + 'archive': 'Архивировать', + 'delete': 'Удалить', + 'restore': 'Восстановить', + 'refresh_complete': 'Refresh Complete', + 'please_enter_your_email': 'Please enter your email', + 'please_enter_your_password': 'Please enter your password', + 'please_enter_your_url': 'Please enter your URL', + 'please_enter_a_product_key': 'Пожалуйста, введите код товара/услуги', + 'ascending': 'Ascending', + 'descending': 'Descending', + 'save': 'Сохранить', + 'an_error_occurred': 'An error occurred', + 'paid_to_date': 'Оплачено', + 'balance_due': 'Неоплачено', + 'balance': 'К оплате', + 'overview': 'Overview', + 'details': 'Детали', + 'phone': 'Телефон', + 'website': 'Веб-сайт', + 'vat_number': 'регистрационный номер плательщика НДС', + 'id_number': 'Идентификационный номер', + 'create': 'Создать', + 'copied_to_clipboard': 'Copied :value to the clipboard', + 'error': 'Ошибка', + 'could_not_launch': 'Could not launch', + 'contacts': 'Контакты', + 'additional': 'Additional', + 'first_name': 'Имя', + 'last_name': 'Фамилия', + 'add_contact': 'Добавить контакт', + 'are_you_sure': 'Вы уверены?', + 'cancel': 'Отмена', 'ok': 'Ok', - 'remove': 'Odstrániť', - 'email_is_invalid': 'E-mail je neplatný', - 'product': 'Produkt', - 'products': 'Produkty', - 'new_product': 'Nový produkt', - 'created_product': 'Produkt úspešne vytvorený', - 'updated_product': 'Produkt úspešne zmenený', - 'archived_product': 'Produkt úspešne archivovaný', - 'deleted_product': 'Produkt bol úspešne zmazaný', - 'restored_product': 'Produkt bol úspešne obnovený', - 'archived_products': 'Počet úspešne archivovaných produktov: :count', - 'deleted_products': 'Počet úspešne zmazaných produktov: :count', - 'restored_products': 'Úspešne obnovené :value produkty', - 'product_key': 'Produkt', - 'notes': 'Poznámky', - 'cost': 'Náklady', - 'client': 'Zákazník', - 'clients': 'zákazníci', - 'new_client': 'Nový zákazník', - 'created_client': 'Zákazník úspešne vytvorený', - 'updated_client': 'Zákazník úspešne aktualizovaný', - 'archived_client': 'Zákazník úspešne archivovaný', - 'archived_clients': 'Počet úspešne archivovaných zákazníkov: :count', - 'deleted_client': 'Zákazník úspešne odstránený', - 'deleted_clients': 'Počet úspešne odstranených zákazníkov: :count', - 'restored_client': 'Zákazník úspešne obnovený', - 'restored_clients': 'Úspešne obnovení :value klienti', - 'address1': 'Ulica', - 'address2': 'Byt/Apartmán', - 'city': 'Mesto', - 'state': 'Kraj', - 'postal_code': 'PSČ', - 'country': 'Krajina', - 'invoice': 'Faktúra', - 'invoices': 'Faktúry', - 'new_invoice': 'Nová faktúra', - 'created_invoice': 'Faktúra úspešne vytvorená', - 'updated_invoice': 'Faktúra úspešne aktualizovaná', - 'archived_invoice': 'Faktúra úspešne archivovaná', - 'deleted_invoice': 'Faktúra úspešne odstránená', - 'restored_invoice': 'Faktúra úspešne obnovená', - 'archived_invoices': 'Počet úspešne archivovaných faktúr: :count', - 'deleted_invoices': 'Počet úspešne odstránených faktúr: :count', - 'restored_invoices': 'Úspešne obnovené :value faktúry', - 'emailed_invoice': 'Faktúra úspešne odoslaná', - 'emailed_payment': 'Platba bola úspešne odoslaná e-mailom', - 'amount': 'Čiastka', - 'invoice_number': 'Číslo faktúry', - 'invoice_date': 'Dátum faktúry', - 'discount': 'Zľava', - 'po_number': 'Číslo objednávky', - 'terms': 'Podmienky', - 'public_notes': 'Verejné poznámky', - 'private_notes': 'Súkromné poznámky', - 'frequency': 'Frekvencia', - 'start_date': 'Začiatok', - 'end_date': 'Koniec', - 'quote_number': 'Číslo ponuky', - 'quote_date': 'Dátum ponuky', - 'valid_until': 'Platné do', - 'items': 'Položky', - 'partial_deposit': 'Čiastočné/Vklad', - 'description': 'Popis', - 'unit_cost': 'Jednotková cena', - 'quantity': 'Množstvo', - 'add_item': 'Pridať položku', - 'contact': 'Kontakt', - 'work_phone': 'Telefón', - 'total_amount': 'Celková suma', + 'remove': 'Remove', + 'email_is_invalid': 'Email is invalid', + 'product': 'Товар/услуга', + 'products': 'Товары/Услуги', + 'new_product': 'Новый товар/услуга', + 'created_product': 'Товар/услуга успешно создан', + 'updated_product': 'Информация о товаре/услуге успешно обновлёна', + 'archived_product': 'Товар/услуга перенесен в архив', + 'deleted_product': 'Товар/услуга успешно удалены', + 'restored_product': 'Successfully restored product', + 'archived_products': 'Successfully archived :count products', + 'deleted_products': 'Successfully deleted :count products', + 'restored_products': 'Successfully restored :value products', + 'product_key': 'Товар/услуга', + 'notes': 'Заметки', + 'cost': 'Cost', + 'client': 'Клиент', + 'clients': 'Клиенты', + 'new_client': 'Новый клиент', + 'created_client': 'Клиент успешно создан', + 'updated_client': 'Клиент успешно обновлён', + 'archived_client': 'Клиент успешно архивирован', + 'archived_clients': 'Успешно архивировано :count клиента(ов)', + 'deleted_client': 'Клиент успешно удалён', + 'deleted_clients': 'Успешно удалено :count клиента(ов)', + 'restored_client': 'Клиент восстановлен', + 'restored_clients': 'Successfully restored :value clients', + 'address1': 'Улица', + 'address2': 'Дом/Офис', + 'city': 'Город', + 'state': 'Район', + 'postal_code': 'Почтовый код', + 'country': 'Страна', + 'invoice': 'Счёт', + 'invoices': 'Счета', + 'new_invoice': 'Новый счёт', + 'created_invoice': 'Счет успешно создан', + 'updated_invoice': 'Счет успешно обновлён', + 'archived_invoice': 'Счет успешно архивирован', + 'deleted_invoice': 'Счет успешно удалён', + 'restored_invoice': 'Счёт успешно восстановлен', + 'archived_invoices': 'Успешно архивировано :count счта(ов)', + 'deleted_invoices': 'Успешно удалено :count счта(ов)', + 'restored_invoices': 'Successfully restored :value invoices', + 'emailed_invoice': 'Счет успешно отправлен по почте', + 'emailed_payment': 'Successfully emailed payment', + 'amount': 'Всего', + 'invoice_number': 'Номер счёта', + 'invoice_date': 'Дата счёта', + 'discount': 'Скидка', + 'po_number': 'Номер платежного поручения', + 'terms': 'Условия', + 'public_notes': 'Публичные заметки', + 'private_notes': 'Персональные заметки', + 'frequency': 'Периодичность', + 'start_date': 'Дата начала', + 'end_date': 'Дата завершения', + 'quote_number': 'Номер котировки', + 'quote_date': 'Дата котировки', + 'valid_until': 'Действителен до', + 'items': 'Items', + 'partial_deposit': 'Частичная оплата', + 'description': 'Описание', + 'unit_cost': 'Стоимость за единицу', + 'quantity': 'Количество', + 'add_item': 'Add Item', + 'contact': 'Контакт', + 'work_phone': 'Телефон', + 'total_amount': 'Total Amount', 'pdf': 'PDF', - 'due_date': 'Dátum splatnosti', - 'partial_due_date': 'Čiastočný dátum splatnosti', - 'status': 'Stav', - 'invoice_status_id': 'Stav faktúry', - 'quote_status': 'Stav ponuky', - 'click_plus_to_add_item': 'Kliknutím na + pridáte položku', - 'click_plus_to_add_time': 'Kliknutím na + pridať čas', - 'count_selected': ':count vybratých', - 'total': 'Celkom', - 'percent': 'Percent', - 'edit': 'Upraviť', - 'dismiss': 'Odmietnuť', - 'please_select_a_date': 'Vyberte dátum', - 'please_select_a_client': 'Vyberte klienta', - 'please_select_an_invoice': 'Prosím zvoľte faktúru', - 'task_rate': 'Úloha sadzba', - 'settings': 'Nastavenia', - 'language': 'Jazyk', - 'currency': 'Mena', - 'created_at': 'Dátum vytvorenia', - 'created_on': 'Vytvorené', - 'updated_at': 'Aktualizované', - 'tax': 'Daň', - 'please_enter_an_invoice_number': 'Prosím vložte číslo faktúry', - 'please_enter_a_quote_number': 'Prosím vložte číslo ponuky', - 'past_due': 'Po splatnosti', - 'draft': 'Návrh', - 'sent': 'Odoslané', - 'viewed': 'Zobrazené', - 'approved': 'Schválené', - 'partial': 'Záloha', - 'paid': 'Zaplatené', - 'mark_sent': 'Označiť ako odoslané', - 'marked_invoice_as_sent': 'Faktúra bola úspešne označená ako odoslaná', - 'marked_invoice_as_paid': 'Faktúra bola úspešne označená ako odoslaná', - 'marked_invoices_as_sent': 'Faktúry boli úspešne označené ako odoslané', - 'marked_invoices_as_paid': 'Faktúry boli úspešne označené ako odoslané', - 'done': 'Hotovo', + 'due_date': 'Срок оплаты', + 'partial_due_date': 'Partial Due Date', + 'status': 'Статус', + 'invoice_status_id': 'Статус Счёта', + 'quote_status': 'Quote Status', + 'click_plus_to_add_item': 'Click + to add an item', + 'click_plus_to_add_time': 'Click + to add time', + 'count_selected': ':count selected', + 'total': 'Всего', + 'percent': 'Процент', + 'edit': 'Редактировать', + 'dismiss': 'Dismiss', + 'please_select_a_date': 'Пожалуйста, выбирите дату', + 'please_select_a_client': 'Пожалуйста, выбирите клиента', + 'please_select_an_invoice': 'Please select an invoice', + 'task_rate': 'Task Rate', + 'settings': 'Настройки', + 'language': 'Язык', + 'currency': 'Валюта', + 'created_at': 'Дата создания', + 'created_on': 'Created On', + 'updated_at': 'Updated', + 'tax': 'Налог', + 'please_enter_an_invoice_number': 'Please enter an invoice number', + 'please_enter_a_quote_number': 'Please enter a quote number', + 'past_due': 'Past Due', + 'draft': 'Черновик', + 'sent': 'Отправить', + 'viewed': 'Viewed', + 'approved': 'Approved', + 'partial': 'Частичная оплата', + 'paid': 'Оплачено', + 'mark_sent': 'Отметить отправленным', + 'marked_invoice_as_sent': 'Successfully marked invoice as sent', + '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': 'Готово', 'please_enter_a_client_or_contact_name': - 'Zadajte meno klienta alebo kontaktnej osoby', - 'dark_mode': 'Tmavý režim', - 'restart_app_to_apply_change': - 'Ak chcete použiť zmenu, reštartujte aplikáciu', - 'refresh_data': 'Obnoviť údaje', - 'blank_contact': 'Prázdny kontakt', - 'activity': 'Aktivita', - 'no_records_found': 'Nenašli sa žiadne záznamy', - 'clone': 'Duplikovať', - 'loading': 'Načítavam', - 'industry': 'Odvetvie', - 'size': 'Veľkosť', - 'payment_terms': 'Platobné podmienky', - 'payment_date': 'Dátum platby', - 'payment_status': 'Stav úhrady', - 'payment_status_1': 'Čaká', - 'payment_status_2': 'Neplatné', - 'payment_status_3': 'Zlyhanie', - 'payment_status_4': 'Dokončené', - 'payment_status_5': 'Čiastočne vrátené', - 'payment_status_6': 'Vrátené', - 'payment_status_-1': 'Neaplikované', + 'Please enter a client or contact name', + 'dark_mode': 'Темная тема', + 'restart_app_to_apply_change': 'Restart the app to apply the change', + 'refresh_data': 'Обновить Данные', + 'blank_contact': 'Blank Contact', + 'activity': 'Активность', + 'no_records_found': 'No records found', + 'clone': 'Копировать', + 'loading': 'Загружается', + 'industry': 'Industry', + 'size': 'Размер', + 'payment_terms': 'Условия оплаты', + 'payment_date': 'Дата платежа', + 'payment_status': 'Статус Платежа', + 'payment_status_1': 'Pending', + 'payment_status_2': 'Voided', + 'payment_status_3': 'Failed', + 'payment_status_4': 'Completed', + 'payment_status_5': 'Partially Refunded', + 'payment_status_6': 'Refunded', + 'payment_status_-1': 'Unapplied', 'payment_status_-2': 'Partially Unapplied', - 'net': 'Čistý', - 'client_portal': 'Zákaznícky portál', - 'show_tasks': 'Zobraziť úlohy', - 'email_reminders': 'Pripomienky emailom', - 'enabled': 'Povolené', - 'recipients': 'Príjemci', - 'initial_email': 'Úvodný Email', - 'first_reminder': 'Prvá Upomienka', - 'second_reminder': 'Druhá Upomienka', - 'third_reminder': 'Tretia Upomienka', - 'reminder1': 'Prvá Upomienka', - 'reminder2': 'Druhá Upomienka', - 'reminder3': 'Tretia Upomienka', - 'template': 'Šablóna', - 'send': 'Odoslané', - 'subject': 'Predmet', - 'body': 'Telo', - 'send_email': 'Poslať e-mail', - 'email_receipt': 'Odoslať zákazníkovi potvrdenie o úhrade', - 'auto_billing': 'Automatické účtovanie', - 'button': 'Tlačidlo', - 'preview': 'Ukážka', - 'customize': 'Prispôsobiť', - 'history': 'História', - 'payment': 'Platba', - 'payments': 'Platby', - 'refunded': 'Vrátené', - 'payment_type': 'Druh platby', - 'transaction_reference': 'Referencia transakcie', - 'enter_payment': 'Zadať platbu', - 'new_payment': 'Nová platba', - 'created_payment': 'Platba úspešne vytvorená', - 'updated_payment': 'Platba úspešne upravená', - 'archived_payment': 'Platba úspešne archivovaná', - 'deleted_payment': 'Platba úspešne odstránená', - 'restored_payment': 'Platba úspešne obnovená', - 'archived_payments': 'Platby úspešne archivované', - 'deleted_payments': 'Počet úspešne odstránených platieb: :count', - 'restored_payments': 'Úspešne obnovené :value platby', - 'quote': 'Ponuka', - 'quotes': 'Ponuky', - 'new_quote': 'Nová ponuka', - 'created_quote': 'Ponuka úspešne vytvorená', - 'updated_quote': 'Ponuka úspešne zmenená', - 'archived_quote': 'Ponuka úspešne zálohovaná', - 'deleted_quote': 'Ponuka úspešne odstránená', - 'restored_quote': 'Ponuka úspešne obnovená', - 'archived_quotes': 'Počet úspešne archivovaných ponúk: :count', - 'deleted_quotes': 'Počet úspešne odstránených ponúk: :count', - 'restored_quotes': 'Úspešne obnovené :value ponuky', - 'expense': 'Výdaje', - 'expenses': 'Výdaje', - 'vendor': 'Dodávateľ', - 'vendors': 'Dodávatelia', - 'task': 'Úloha', - 'tasks': 'Úlohy', - 'project': 'Projekt', - 'projects': 'Projekty', - 'activity_1': ':user vytvoril zákazníka :client', - 'activity_2': ':user archivoval zákazníka :client', - 'activity_3': ':user odstránil zákazníka :client', - 'activity_4': ':user vytvoril faktúru :invoice', - 'activity_5': ':user upravil faktúru :invoice', - 'activity_6': ':user odoslal faktúru :invoice pre :client :contact', - 'activity_7': ':contact zobrazil faktúru :invoice pre zákazníka :client', - 'activity_8': ':user archivoval faktúru :invoice', - 'activity_9': ':user odstránil faktúru :invoice', + 'net': 'Net', + 'client_portal': 'Client Portal', + 'show_tasks': 'Show tasks', + 'email_reminders': 'Email Reminders', + 'enabled': 'Enabled', + 'recipients': 'Получатели', + 'initial_email': 'Initial Email', + 'first_reminder': 'Первое напоминание', + 'second_reminder': 'Второе напоминание', + 'third_reminder': 'Третье напоминание', + 'reminder1': 'First Reminder', + 'reminder2': 'Second Reminder', + 'reminder3': 'Third Reminder', + 'template': 'Шаблон', + 'send': 'Send', + 'subject': 'Тема', + 'body': 'Содержание', + 'send_email': 'Отправить эл.почту', + 'email_receipt': 'Отправлять клиенту квитанцию об оплате по эл.почте', + 'auto_billing': 'Auto billing', + 'button': 'Кнопка', + 'preview': 'Preview', + 'customize': 'Настроить', + 'history': 'История', + 'payment': 'Платёж', + 'payments': 'Оплаты', + 'refunded': 'Refunded', + 'payment_type': 'Payment Type', + 'transaction_reference': 'Референс транзакции', + 'enter_payment': 'Добавить оплату', + 'new_payment': 'Добавить оплату', + 'created_payment': 'Платёж успешно создан', + 'updated_payment': 'Платёж успешно обновлён', + 'archived_payment': 'Платёж успешно архивирован', + 'deleted_payment': 'Платёж успешно удалён', + 'restored_payment': 'Платёж восстановлен', + 'archived_payments': 'Успешно архивировано :count платежа(ей)', + 'deleted_payments': 'Успешно удалено :count платежа(ей)', + 'restored_payments': 'Successfully restored :value payments', + 'quote': 'Котировка', + 'quotes': 'Прайс-листы', + 'new_quote': 'Новая котировка', + 'created_quote': 'Прайс-лист успешно создан', + 'updated_quote': 'Прайс-лист успешно обновлён', + 'archived_quote': 'Прайс-лист перемещен в архив', + 'deleted_quote': 'Котировка успешно удалена', + 'restored_quote': 'Successfully restored quote', + 'archived_quotes': 'Перенесено в архив :count котировок', + 'deleted_quotes': 'Successfully deleted :count quotes', + 'restored_quotes': 'Successfully restored :value quotes', + 'expense': 'Затрата', + 'expenses': 'Затраты', + 'vendor': 'Vendor', + 'vendors': 'Поставщики', + 'task': 'Task', + 'tasks': 'Задание', + 'project': 'Project', + 'projects': 'Projects', + 'activity_1': ':user Создал Клиента :client', + 'activity_2': ':user archived client :client', + 'activity_3': ':user deleted client :client', + 'activity_4': ':user Создал Счёт :invoice', + 'activity_5': ':user Обновил счёт :invoice', + 'activity_6': ':user emailed invoice :invoice for :client to :contact', + 'activity_7': ':contact viewed invoice :invoice for :client', + 'activity_8': ':user archived invoice :invoice', + 'activity_9': ':user deleted invoice :invoice', 'activity_10': - ':contact vložil platbu :payment za :payment_amount na faktúre :invoice pre :client', - 'activity_11': ':user upravil platbu :payment', - 'activity_12': ':user archivoval platbu :payment', - 'activity_13': ':user odstránil platbu :payment', - 'activity_14': ':užívateľ zadaný :kredit kredit', - 'activity_15': ':user aktualizoval :credit kredit', - 'activity_16': ':user archivoval :credit kredit', - 'activity_17': ':user vymazal :credit kredit', - 'activity_18': ':user vytvoril ponuku :quote', - 'activity_19': ':user aktualizoval ponuku :quote', - 'activity_20': ':user odoslal emailom ponuku :quote pre :client :contact', - 'activity_21': ':contact zobrazil ponuku :quote', - 'activity_22': ':user archivoval ponuku :quote', - 'activity_23': ':user odstránil ponuku :quote', - 'activity_24': ':user obnovil ponuku :quote', - 'activity_25': ':user obnovil faktúru :invoice', - 'activity_26': ':user obnovil zákazníka :client', - 'activity_27': ':user obnovil platbu :payment', - 'activity_28': ':user obnovil :credit kredit', - 'activity_29': ':contact schválil ponuku :quote pre :client', - 'activity_30': ':user vytvoril dodávateľa :vendor', - 'activity_31': ':user archivoval dodávateľa :vendor', - 'activity_32': ':user odstránil dodávateľa :vendor', - 'activity_33': ':user obnovil dodávateľa :vendor', - 'activity_34': ':user vytvoril výdaje :expense', - 'activity_35': ':user zaarchivoval výdaje :expense', - 'activity_36': ':user zmazal výdate :expense', - 'activity_37': ':user obnovil výdaje :expense', - 'activity_39': ':user zrušil :payment_amount platbu :payment', + ':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', + 'activity_14': ':user entered :credit credit', + 'activity_15': ':user updated :credit credit', + 'activity_16': ':user archived :credit credit', + 'activity_17': ':user deleted :credit credit', + 'activity_18': ':user created quote :quote', + 'activity_19': ':user updated quote :quote', + 'activity_20': ':user emailed quote :quote for :client to :contact', + 'activity_21': ':contact viewed quote :quote', + 'activity_22': ':user archived quote :quote', + 'activity_23': ':user deleted quote :quote', + 'activity_24': ':user restored quote :quote', + 'activity_25': ':user restored invoice :invoice', + 'activity_26': ':user restored client :client', + 'activity_27': ':user restored payment :payment', + 'activity_28': ':user restored :credit credit', + 'activity_29': ':contact approved quote :quote for :client', + 'activity_30': ':user created vendor :vendor', + 'activity_31': ':user archived vendor :vendor', + 'activity_32': ':user deleted vendor :vendor', + 'activity_33': ':user restored vendor :vendor', + 'activity_34': ':user created expense :expense', + 'activity_35': ':user archived expense :expense', + 'activity_36': ':user Удалил Затраты :expense', + 'activity_37': ':user restored expense :expense', + 'activity_39': ':user cancelled a :payment_amount payment :payment', 'activity_40': - ':user vrátil :adjustment z :payment_amount platby :payment', - 'activity_41': ':payment_amount platba (:payment) zlyhala', - 'activity_42': ':user vytvoril úlohu :task', - 'activity_43': ':user upravil úlohu :task', - 'activity_44': ':user archivoval úlohu :task', - 'activity_45': ':user odstránil úlohu :task', - 'activity_46': ':user obnovil úlohu :task', - 'activity_47': ':user aktualizoval výdaje :expense', - 'activity_48': 'tiket :ticket bol aktualizovaný užívateľom :user', - 'activity_49': 'tiket :ticket bol zatvorený užívateľom :user', - 'activity_50': ':user zlúčil tiket :ticket', - 'activity_51': ':user rozdelil tiket :ticket', - 'activity_52': ':contact otvoril tiket :ticket', - 'activity_53': ':contact znovu otvoril tiket :ticket', - 'activity_54': ':user znovu otvoril tiket :ticket', - 'activity_55': ':contact odpovedal na tiket :ticket', - 'activity_56': 'tiket :ticket bol zobrazený užívateľom :user', - 'activity_57': 'Systému sa nepodarilo odoslať e-mailom faktúru :invoice', - 'activity_58': ':user stornoval faktúru :invoice', - 'activity_59': ':user zrušil faktúru :invoice', - 'activity_60': ':contact prezrel ponuku :quote', - 'activity_61': ':user aktualizval klienta :client', - 'activity_62': ':user aktualizoval dodávateľa :vendor', + ':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', + 'activity_44': ':user archived task :task', + 'activity_45': ':user deleted task :task', + 'activity_46': ':user restored task :task', + 'activity_47': ':user Обновил Затраты :expense', + 'activity_48': ':user updated ticket :ticket', + 'activity_49': ':user closed ticket :ticket', + 'activity_50': ':user merged ticket :ticket', + 'activity_51': ':user split ticket :ticket', + 'activity_52': ':contact opened ticket :ticket', + 'activity_53': ':contact reopened ticket :ticket', + 'activity_54': ':user reopened ticket :ticket', + 'activity_55': ':contact replied ticket :ticket', + 'activity_56': ':user viewed ticket :ticket', + 'activity_57': 'System failed to email invoice :invoice', + 'activity_58': ':user reversed invoice :invoice', + 'activity_59': ':user cancelled invoice :invoice', + 'activity_60': ':contact viewed quote :quote', + 'activity_61': ':user updated client :client', + 'activity_62': ':user updated vendor :vendor', 'activity_63': - ':user poslal e-mailom prvú upomienku na faktúru :invoice na :contact', + ':user emailed first reminder for invoice :invoice to :contact', 'activity_64': - ':user poslal e-mailom druhú upomienku na faktúru :invoice na :contact', + ':user emailed second reminder for invoice :invoice to :contact', 'activity_65': - ':user poslal e-mailom tretiu upomienku na faktúru :invoice na :contact', + ':user emailed third reminder for invoice :invoice to :contact', 'activity_66': - ':user poslal e-mailom nekonečnú upomienku na faktúru :invoice na :contact', + ':user emailed endless reminder for invoice :invoice to :contact', 'activity_80': ':user created subscription :subscription', 'activity_81': ':user updated subscription :subscription', 'activity_82': ':user archived subscription :subscription', 'activity_83': ':user deleted subscription :subscription', 'activity_84': ':user restored subscription :subscription', - 'one_time_password': 'Jednorazové heslo', - 'emailed_quote': 'Ponuka úspešne odoslaná', - 'emailed_credit': 'Kredit bol úspešne odoslaný e-mailom', - 'marked_quote_as_sent': 'Ponuka bola úspešne označená ako odoslaná', - 'marked_credit_as_sent': 'Kredit bol úspešne označený ako odoslaný', - 'expired': 'Vypršané', - 'all': 'Všetko', - 'select': 'Voľba', - 'long_press_multiselect': 'Dlho stlačte Multiselect', - 'custom_value1': 'Vlastná hodnota', - 'custom_value2': 'Vlastná hodnota', - 'custom_value3': 'Vlastná hodnota 3', - 'custom_value4': 'Vlastná hodnota 4', - 'email_style_custom': 'Vlastný štýl e-mailu', - 'custom_message_dashboard': 'Správa vlastného informačného panelu', - 'custom_message_unpaid_invoice': 'Vlastná správa o nezaplatenej faktúre', - 'custom_message_paid_invoice': 'Vlastná správa o zaplatenej faktúre', - 'custom_message_unapproved_quote': - 'Vlastná správa o neschválenej cenovej ponuke', - 'lock_invoices': 'Uzamknutie faktúr', - 'translations': 'Preklady', - 'task_number_pattern': 'Vzor čísla úlohy', - 'task_number_counter': 'Počítadlo čísel úloh', - 'expense_number_pattern': 'Vzor čísla výdavkov', - 'expense_number_counter': 'Počítadlo čísel výdavkov', - 'vendor_number_pattern': 'Vzor čísla predajcu', - 'vendor_number_counter': 'Počítadlo čísel predajcu', - 'ticket_number_pattern': 'Vzor čísla tiketu', - 'ticket_number_counter': 'Počítadlo čísel tiketu', - 'payment_number_pattern': 'Vzor čísla platby', - 'payment_number_counter': 'Počítadlo čísla platby', - 'invoice_number_pattern': 'Vzor čísla faktúry', - 'invoice_number_counter': 'Počítadlo čísla faktúry', - 'quote_number_pattern': 'Vzor čísla cenovej ponuky', - 'quote_number_counter': 'Počítadlo čísla ponuky', - 'client_number_pattern': 'Vzor čísla kreditu', - 'client_number_counter': 'Počítadlo kreditných čísel', - 'credit_number_pattern': 'Vzor čísla kreditu', - 'credit_number_counter': 'Počítadlo kreditných čísel', - 'reset_counter_date': 'Vynulovať dátum počítadla', + 'one_time_password': 'One Time Password', + 'emailed_quote': 'Прайс-лист успешно отправлен', + 'emailed_credit': 'Successfully emailed credit', + 'marked_quote_as_sent': 'Successfully marked quote as sent', + 'marked_credit_as_sent': 'Successfully marked credit as sent', + 'expired': 'Expired', + 'all': 'All', + 'select': 'Выбрать', + 'long_press_multiselect': 'Long-press Multiselect', + 'custom_value1': 'Custom Value', + 'custom_value2': 'Custom Value', + 'custom_value3': 'Custom Value 3', + 'custom_value4': 'Custom Value 4', + 'email_style_custom': 'Custom Email Style', + 'custom_message_dashboard': 'Custom Dashboard Message', + 'custom_message_unpaid_invoice': 'Custom Unpaid Invoice Message', + 'custom_message_paid_invoice': 'Custom Paid Invoice Message', + 'custom_message_unapproved_quote': 'Custom Unapproved Quote Message', + 'lock_invoices': 'Lock Invoices', + 'translations': 'Translations', + 'task_number_pattern': 'Task Number Pattern', + 'task_number_counter': 'Task Number Counter', + 'expense_number_pattern': 'Expense Number Pattern', + 'expense_number_counter': 'Expense Number Counter', + 'vendor_number_pattern': 'Vendor Number Pattern', + 'vendor_number_counter': 'Vendor Number Counter', + 'ticket_number_pattern': 'Ticket Number Pattern', + 'ticket_number_counter': 'Ticket Number Counter', + 'payment_number_pattern': 'Payment Number Pattern', + 'payment_number_counter': 'Payment Number Counter', + 'invoice_number_pattern': 'Invoice Number Pattern', + 'invoice_number_counter': 'Счетчик номера счёта', + 'quote_number_pattern': 'Quote Number Pattern', + 'quote_number_counter': 'Quote Number Counter', + 'client_number_pattern': 'Credit Number Pattern', + 'client_number_counter': 'Credit Number Counter', + 'credit_number_pattern': 'Credit Number Pattern', + 'credit_number_counter': 'Credit Number Counter', + 'reset_counter_date': 'Reset Counter Date', 'counter_padding': 'Counter Padding', - 'shared_invoice_quote_counter': 'Počítadlo zdieľanej faktúry', - 'default_tax_name_1': 'Predvolený názov dane 1', - 'default_tax_rate_1': 'Predvolená sadzba dane 1', - 'default_tax_name_2': 'Predvolený názov dane 2', - 'default_tax_rate_2': 'Predvolená sadzba dane 2', - 'default_tax_name_3': 'Predvolený názov dane 3', - 'default_tax_rate_3': 'Predvolená sadzba dane 3', - 'email_subject_invoice': 'Predmet e-mailovej faktúry', - 'email_subject_quote': 'Predmet ponuky e-mailu', - 'email_subject_payment': 'Predmet platby e-mailom', - 'email_subject_payment_partial': 'Predmet čiastočnej platby e-mailu', - 'show_table': 'Zobraziť tabuľku', - 'show_list': 'Zobraziť zoznam', - 'client_city': 'Mesto klienta', - 'client_state': 'Stav klienta', - 'client_country': 'Krajina klienta', - 'client_is_active': 'Klient je aktívny', - 'client_balance': 'Zostatok klienta', - 'client_address1': 'Ulica klienta', - 'client_address2': 'Klientsky apartmán/byt', + 'shared_invoice_quote_counter': 'Shared Invoice Quote Counter', + 'default_tax_name_1': 'Default Tax Name 1', + 'default_tax_rate_1': 'Default Tax Rate 1', + 'default_tax_name_2': 'Default Tax Name 2', + 'default_tax_rate_2': 'Default Tax Rate 2', + 'default_tax_name_3': 'Default Tax Name 3', + 'default_tax_rate_3': 'Default Tax Rate 3', + 'email_subject_invoice': 'Email Invoice Subject', + 'email_subject_quote': 'Email Quote Subject', + 'email_subject_payment': 'Email Payment Subject', + 'email_subject_payment_partial': 'Email Partial Payment Subject', + 'show_table': 'Show Table', + 'show_list': 'Show List', + 'client_city': 'Client City', + 'client_state': 'Client State', + 'client_country': 'Client Country', + 'client_is_active': 'Client is Active', + 'client_balance': 'Client Balance', + 'client_address1': 'Client Street', + 'client_address2': 'Client Apt/Suite', 'vendor_address1': 'Vendor Street', 'vendor_address2': 'Vendor Apt/Suite', - 'client_shipping_address1': 'Ulica doručenia klienta', - 'client_shipping_address2': 'Byt/Apartman dodania klienta', - 'type': 'Typ', - 'invoice_amount': 'Suma faktúry', - 'invoice_due_date': 'Dátum splatnosti', - 'tax_rate1': 'Sadzba dane 1', - 'tax_rate2': 'Sadzba dane 2', - 'tax_rate3': 'Sadzba dane 3', - 'auto_bill': 'Automatické účtovanie', - 'archived_at': 'Archivované', - 'has_expenses': 'Má výdavky', - 'custom_taxes1': 'Vlastné dane 1', - 'custom_taxes2': 'Vlastné dane 2', - 'custom_taxes3': 'Vlastné dane 3', - 'custom_taxes4': 'Vlastné dane 4', - 'custom_surcharge1': 'Vlastný príplatok 1', - 'custom_surcharge2': 'Vlastný príplatok 2', - 'custom_surcharge3': 'Vlastný príplatok 3', - 'custom_surcharge4': 'Vlastný príplatok 4', - 'is_deleted': 'Je vymazané', - 'vendor_city': 'Mesto dodávateľa', - 'vendor_state': 'Štát predajcu', - 'vendor_country': 'Krajina predajcu', - 'is_approved': 'Je schválené', - 'tax_name': 'Názov dane', - 'tax_amount': 'Sadzba dane', - 'tax_paid': 'Zaplatená daň', - 'payment_amount': 'Čiastka k úhrade', - 'age': 'Vek', - 'is_running': 'Beží', - 'time_log': 'Časový denník', - 'bank_id': 'Banka', - 'expense_category_id': 'ID kategórie výdavkov', - 'expense_category': 'Kategória výdajov', - 'invoice_currency_id': 'ID meny faktúry', - 'tax_name1': 'Daňové meno 1', - 'tax_name2': 'Daňové meno 2', - 'tax_name3': 'Daňové meno 3', - 'transaction_id': 'ID transakcie', + 'client_shipping_address1': 'Client Shipping Street', + 'client_shipping_address2': 'Client Shipping Apt/Suite', + 'type': 'Тип', + 'invoice_amount': 'Invoice Amount', + 'invoice_due_date': 'Срок оплаты', + 'tax_rate1': 'Tax Rate 1', + 'tax_rate2': 'Tax Rate 2', + 'tax_rate3': 'Tax Rate 3', + 'auto_bill': 'Авто-счет', + 'archived_at': 'Archived At', + 'has_expenses': 'Has Expenses', + 'custom_taxes1': 'Custom Taxes 1', + 'custom_taxes2': 'Custom Taxes 2', + 'custom_taxes3': 'Custom Taxes 3', + 'custom_taxes4': 'Custom Taxes 4', + 'custom_surcharge1': 'Custom Surcharge 1', + 'custom_surcharge2': 'Custom Surcharge 2', + 'custom_surcharge3': 'Custom Surcharge 3', + 'custom_surcharge4': 'Custom Surcharge 4', + 'is_deleted': 'Is Deleted', + 'vendor_city': 'Vendor City', + 'vendor_state': 'Vendor State', + 'vendor_country': 'Vendor Country', + 'is_approved': 'Is Approved', + 'tax_name': 'Tax Name', + 'tax_amount': 'Tax Amount', + 'tax_paid': 'Tax Paid', + 'payment_amount': 'Сумма платежа', + 'age': 'Возраст', + 'is_running': 'Is Running', + 'time_log': 'Time Log', + 'bank_id': 'Bank', + 'expense_category_id': 'Expense Category ID', + 'expense_category': 'Категория затрат', + 'invoice_currency_id': 'Invoice Currency ID', + 'tax_name1': 'Tax Name 1', + 'tax_name2': 'Tax Name 2', + 'tax_name3': 'Tax Name 3', + 'transaction_id': 'Transaction ID', 'status_color_theme': 'Status Color Theme', 'load_color_theme': 'Load Color Theme', }, 'sl': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'Provizija od zneska :amount računa bo :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Potrdi', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -59448,6 +54096,29 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'es': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': + 'La tarifa para una factura con valor de :amount sería de :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Aprobar', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -61428,6 +56099,29 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'es_ES': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': + 'La tarifa por una factura de cantidad :amount sería :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Aprobar', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -63440,6 +58134,28 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'sv': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'Avgift för en :amount Faktura hade blivit :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Godkänn', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -65423,6 +60139,28 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'th': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'ค่าธรรมเนียมสำหรับ :amount ใบแจ้งหนี้จะเป็น :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'อนุมัติ', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', @@ -67390,6 +62128,28 @@ mixin LocalizationsProvider on LocaleCodeAware { 'load_color_theme': 'Load Color Theme', }, 'tr_TR': { + 'view_task': 'View Task', + 'cancel_invoice': 'Cancel', + 'changed_status': 'Successfully changed task status', + 'change_status': 'Change Status', + 'fees_sample': 'The fee for a :amount invoice would be :total.', + 'enable_touch_events': 'Enable Touch Events', + 'enable_touch_events_help': 'Support drag events to scroll', + 'after_saving': 'After Saving', + 'view_record': 'View Record', + 'enable_email_markdown': 'Enable Email Markdown', + 'enable_email_markdown_help': 'Use visual markdown editor for emails', + 'enable_pdf_markdown': 'Enable PDF Markdown', + 'json_help': 'Note: JSON files generated by the v4 app are not supported', + 'release_notes': 'Release Notes', + 'upgrade_to_view_reports': 'Upgrade your plan to view reports', + 'started_tasks': 'Successfully started :value tasks', + 'stopped_tasks': 'Successfully stopped :value tasks', + 'approved_quote': 'Successfully apporved quote', + 'approved_quotes': 'Successfully :value approved quotes', + 'approve': 'Onayla', + 'client_website': 'Client Website', + 'invalid_time': 'Invalid Time', 'client_shipping_state': 'Client Shipping State', 'client_shipping_city': 'Client Shipping City', 'client_shipping_postal_code': 'Client Shipping Postal Code', diff --git a/pubspec.foss.yaml b/pubspec.foss.yaml index bb925e60f6e..602318c6024 100644 --- a/pubspec.foss.yaml +++ b/pubspec.foss.yaml @@ -1,6 +1,6 @@ name: invoiceninja_flutter description: Client for Invoice Ninja -version: 5.0.77+77 +version: 5.0.78+78 homepage: https://invoiceninja.com documentation: https://invoiceninja.github.io publish_to: none @@ -92,7 +92,7 @@ msix_config: display_name: Invoice Ninja publisher_display_name: Invoice Ninja identity_name: InvoiceNinja.InvoiceNinja - msix_version: 5.0.77.0 + msix_version: 5.0.78.0 publisher: CN=2B7AA393-06A0-46F5-AF85-1917142440C3 architecture: x64 capabilities: 'internetClient' diff --git a/pubspec.next.yaml b/pubspec.next.yaml index e6d21dbb29c..3b0c0754426 100644 --- a/pubspec.next.yaml +++ b/pubspec.next.yaml @@ -1,6 +1,6 @@ name: invoiceninja_flutter description: Client for Invoice Ninja -version: 5.0.77+77 +version: 5.0.78+78 homepage: https://invoiceninja.com documentation: https://invoiceninja.github.io publish_to: none @@ -92,7 +92,7 @@ msix_config: display_name: Invoice Ninja publisher_display_name: Invoice Ninja identity_name: InvoiceNinja.InvoiceNinja - msix_version: 5.0.77.0 + msix_version: 5.0.78.0 publisher: CN=2B7AA393-06A0-46F5-AF85-1917142440C3 architecture: x64 capabilities: 'internetClient' diff --git a/pubspec.yaml b/pubspec.yaml index f6a33f6108c..6f2dbfd0320 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: invoiceninja_flutter description: Client for Invoice Ninja -version: 5.0.77+77 +version: 5.0.78+78 homepage: https://invoiceninja.com documentation: https://invoiceninja.github.io publish_to: none @@ -98,7 +98,7 @@ msix_config: display_name: Invoice Ninja publisher_display_name: Invoice Ninja identity_name: InvoiceNinja.InvoiceNinja - msix_version: 5.0.77.0 + msix_version: 5.0.78.0 publisher: CN=2B7AA393-06A0-46F5-AF85-1917142440C3 architecture: x64 capabilities: 'internetClient'