Updates for expense conversion from purchase order

This commit is contained in:
David Bomba 2024-03-25 07:46:17 +11:00
parent cd76ddc3f0
commit 533c266d1d
47 changed files with 812 additions and 140 deletions

View File

@ -42,6 +42,7 @@ class ExpenseFactory
$expense->tax_amount1 = 0;
$expense->tax_amount2 = 0;
$expense->tax_amount3 = 0;
$expense->uses_inclusive_taxes = false;
return $expense;
}

View File

@ -51,7 +51,8 @@ class PurchaseOrderFactory
$purchase_order->recurring_id = null;
$purchase_order->exchange_rate = 1;
$purchase_order->total_taxes = 0;
$purchase_order->uses_inclusive_taxes = false;
return $purchase_order;
}
}

View File

@ -57,6 +57,13 @@ class PurchaseOrderExpense
$expense->number = empty($expense->number) ? $this->getNextExpenseNumber($expense) : $expense->number;
if($this->purchase_order->project_id){
$expense->project_id = $this->purchase_order->project_id;
$expense->client_id = $this->purchase_order->project->client_id;
}
elseif($this->purchase_order->client_id)
$expense->client_id = $this->purchase_order->client_id;
$expense->saveQuietly();
event('eloquent.created: App\Models\Expense', $expense);

View File

@ -35,6 +35,7 @@ class ExpenseFactory extends Factory
'private_notes' => $this->faker->text(50),
'transaction_reference' => $this->faker->text(5),
'invoice_id' => null,
'uses_inclusive_taxes' => false,
];
}
}

View File

@ -46,6 +46,7 @@ class PurchaseOrderFactory extends Factory
'due_date' => $this->faker->date(),
'line_items' => InvoiceItemFactory::generate(5),
'terms' => $this->faker->text(500),
'uses_inclusive_taxes' => false,
];
}
}

View File

@ -0,0 +1,53 @@
<?php
use App\Models\Currency;
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
$cur = Currency::find(122);
if(!$cur) {
$cur = new \App\Models\Currency();
$cur->id = 122;
$cur->code = 'BTN';
$cur->name = "Bhutan Ngultrum";
$cur->symbol = 'Nu';
$cur->thousand_separator = ',';
$cur->decimal_separator = '.';
$cur->precision = 2;
$cur->save();
}
$cur = Currency::find(123);
if(!$cur) {
$cur = new \App\Models\Currency();
$cur->id = 123;
$cur->code = 'MRU';
$cur->name = "Mauritanian Ouguiya";
$cur->symbol = 'UM';
$cur->thousand_separator = ',';
$cur->decimal_separator = '.';
$cur->precision = 2;
$cur->save();
}
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};

View File

@ -454,8 +454,8 @@ $lang = array(
'delete_token' => 'حذف الرمز المميز',
'token' => 'رمز',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'حذف البوابة',
'edit_gateway' => 'تحرير البوابة',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'تم تحديث البوابة بنجاح',
'created_gateway' => 'تم إنشاء البوابة بنجاح',
'deleted_gateway' => 'تم حذف البوابة بنجاح',
@ -2178,6 +2178,8 @@ $lang = array(
'encryption' => 'التشفير',
'mailgun_domain' => 'مجال Mailgun',
'mailgun_private_key' => 'مفتاح Mailgun الخاص',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'إرسال بريد إلكتروني تجريبي',
'select_label' => 'حدد تسمية',
'label' => 'ملصق',
@ -4828,6 +4830,7 @@ $lang = array(
'email_alignment' => 'محاذاة البريد الإلكتروني',
'pdf_preview_location' => 'موقع معاينة PDF',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'ختم البريد',
'microsoft' => 'مايكروسوفت',
'click_plus_to_create_record' => 'انقر فوق + لإنشاء سجل',
@ -5080,6 +5083,8 @@ $lang = array(
'drop_files_here' => 'قم بوضع الملفات هنا',
'upload_files' => 'تحميل الملفات',
'download_e_invoice' => 'تحميل الفاتورة الإلكترونية',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'المعاملات الثلاثية داخل المجتمع',
'intracommunity_tax_info' => 'التوصيل داخل المجتمع معفي من الضرائب',
'reverse_tax_info' => 'يرجى ملاحظة أن هذا العرض يخضع لرسوم عكسية',
@ -5234,7 +5239,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -462,8 +462,8 @@ $lang = array(
'delete_token' => 'Изтриване на токън',
'token' => 'Токън',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Изтриване на Gateway',
'edit_gateway' => 'Редакция на Gateway',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Успешно актуализиран Gateway',
'created_gateway' => 'Успешно създаден Gateway',
'deleted_gateway' => 'Успешно изтрит Gateway',
@ -2198,6 +2198,8 @@ $lang = array(
'encryption' => 'Криптиране',
'mailgun_domain' => 'Mailgun домейн',
'mailgun_private_key' => 'Mailgun частен ключ',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Изпращане на тестов имейл',
'select_label' => 'Избор на етикет',
'label' => 'Етикет',
@ -4848,6 +4850,7 @@ $lang = array(
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5100,6 +5103,8 @@ $lang = array(
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5254,7 +5259,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Delete Token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Delete Gateway',
'edit_gateway' => 'Edit Gateway',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Successfully updated gateway',
'created_gateway' => 'Successfully created gateway',
'deleted_gateway' => 'Successfully deleted gateway',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => 'Encryption',
'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test email',
'select_label' => 'Select Label',
'label' => 'Label',
@ -4847,6 +4849,7 @@ $lang = array(
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5253,7 +5258,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Smazat Token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Smazat platební bránu',
'edit_gateway' => 'Editovat bránu',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Brána úspěšně změněna',
'created_gateway' => 'Brána úspěšně vytvořena',
'deleted_gateway' => 'Brána úspěšně smazána',
@ -2198,6 +2198,8 @@ $lang = array(
'encryption' => 'Šifrování',
'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Odeslat zkušební e-mail',
'select_label' => 'Vybrat štítek',
'label' => 'Štítek',
@ -4848,6 +4850,7 @@ $lang = array(
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5100,6 +5103,8 @@ $lang = array(
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5254,7 +5259,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Slet token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Slet gateway',
'edit_gateway' => 'Redigér gateway',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Gateway blev opdateret',
'created_gateway' => 'Gateway blev oprettet',
'deleted_gateway' => 'Gateway blev slettet',
@ -2196,6 +2196,8 @@ $lang = array(
'encryption' => 'Kryptering',
'mailgun_domain' => 'Mailgun domæne',
'mailgun_private_key' => 'Mailgun privat nøgle',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test e-mail',
'select_label' => 'Vælg Label',
'label' => 'Etiket',
@ -4846,6 +4848,7 @@ $lang = array(
'email_alignment' => 'e-mail justering',
'pdf_preview_location' => 'PDF eksempelplacering',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Poststempel',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Klik på + for at Opret en post',
@ -5098,6 +5101,8 @@ $lang = array(
'drop_files_here' => 'Slip filer her',
'upload_files' => 'Upload filer',
'download_e_invoice' => 'Download E- Faktura',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Trekantet transaktion inden for fællesskabet',
'intracommunity_tax_info' => 'Skattefri levering inden for samfundet',
'reverse_tax_info' => 'Bemærk venligst, at denne levering er underlagt omvendt betalingspligt',
@ -5252,7 +5257,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -175,7 +175,7 @@ $lang = array(
'payment_gateway' => 'Zahlungs-Gateway',
'gateway_id' => 'Zahlungsanbieter',
'email_notifications' => 'E-Mail Benachrichtigungen',
'email_viewed' => 'Benachrichtigen, wenn eine Rechnung <strong>betrachtet</strong> wurde',
'email_viewed' => 'Benachrichtigen, wenn eine Rechnung <strong>angesehen</strong> wurde',
'email_paid' => 'Benachrichtigen, wenn eine Rechnung <strong>bezahlt</strong> wurde',
'site_updates' => 'Website-Aktualisierungen',
'custom_messages' => 'Benutzerdefinierte Nachrichten',
@ -241,16 +241,16 @@ $lang = array(
'confirmation_header' => 'Kontobestätigung',
'confirmation_message' => 'Bitte klicken Sie auf den folgenden Link, um Ihr Konto zu bestätigen.',
'invoice_subject' => 'Neue Rechnung :number von :account',
'invoice_message' => 'Um Ihre Rechnung über :amount einzusehen, klicken Sie bitte auf den folgenden Link:',
'invoice_message' => 'Um Ihre Rechnung über :amount anzusehen, klicken Sie bitte auf den folgenden Link:',
'payment_subject' => 'Zahlungseingang',
'payment_message' => 'Vielen Dank für Ihre Zahlung von :amount.',
'email_salutation' => 'Sehr geehrte/r :name,',
'email_signature' => 'Mit freundlichen Grüßen',
'email_from' => 'Das InvoiceNinja Team',
'invoice_link_message' => 'Um die Rechnung anzuschauen, bitte auf den folgenden Link klicken:',
'invoice_link_message' => 'Um die Rechnung anzusehen, bitte auf den folgenden Link klicken:',
'notification_invoice_paid_subject' => 'Die Rechnung :invoice wurde von :client bezahlt.',
'notification_invoice_sent_subject' => 'Rechnung :invoice wurde an :client versendet.',
'notification_invoice_viewed_subject' => 'Die Rechnung :invoice wurde von :client angeschaut.',
'notification_invoice_viewed_subject' => 'Die Rechnung :invoice wurde von :client angesehen.',
'notification_invoice_paid' => 'Eine Zahlung von :amount wurde von :client bezüglich Rechnung :invoice getätigt.',
'notification_invoice_sent' => 'Rechnung :invoice über :amount wurde an den Kunden :client versendet.',
'notification_invoice_viewed' => 'Der Kunde :client hat sich die Rechnung :invoice über :amount angesehen.',
@ -281,7 +281,7 @@ $lang = array(
'field_value' => 'Feldwert',
'edit' => 'Bearbeiten',
'set_name' => 'Den Firmennamen setzen',
'view_as_recipient' => 'Als Empfänger betrachten',
'view_as_recipient' => 'Als Empfänger ansehen',
'product_library' => 'Produktbibliothek',
'product' => 'Produkt',
'products' => 'Produkte',
@ -322,9 +322,9 @@ $lang = array(
'email_quote' => 'Angebot per E-Mail senden',
'clone_quote' => 'Als Angebot kopieren',
'convert_to_invoice' => 'In Rechnung umwandeln',
'view_invoice' => 'Rechnung anschauen',
'view_client' => 'Kunde anschauen',
'view_quote' => 'Angebot anschauen',
'view_invoice' => 'Rechnung ansehen',
'view_client' => 'Kunde ansehen',
'view_quote' => 'Angebot ansehen',
'updated_quote' => 'Angebot erfolgreich aktualisiert',
'created_quote' => 'Angebot erfolgreich erstellt',
'cloned_quote' => 'Angebot erfolgreich dupliziert',
@ -335,10 +335,10 @@ $lang = array(
'deleted_quotes' => ':count Angebote erfolgreich gelöscht',
'converted_to_invoice' => 'Angebot erfolgreich in Rechnung umgewandelt',
'quote_subject' => 'Neues Angebot :number von :account',
'quote_message' => 'Klicken Sie auf den folgenden Link um das Angebot über :amount anzuschauen.',
'quote_link_message' => 'Um das Angebot anzuschauen, bitte auf den folgenden Link klicken:',
'quote_message' => 'Klicken Sie auf den folgenden Link um das Angebot für Sie über :amount anzusehen.',
'quote_link_message' => 'Um das Angebot anzusehen, bitte auf den folgenden Link klicken:',
'notification_quote_sent_subject' => 'Angebot :invoice wurde an :client versendet',
'notification_quote_viewed_subject' => 'Angebot :invoice wurde von :client angeschaut',
'notification_quote_viewed_subject' => 'Angebot :invoice wurde von :client angesehen',
'notification_quote_sent' => 'Der folgende Kunde :client erhielt das Angebot :invoice über :amount.',
'notification_quote_viewed' => 'Der folgende Kunde :client hat sich das Angebot :client über :amount angesehen.',
'session_expired' => 'Ihre Sitzung ist abgelaufen.',
@ -461,9 +461,9 @@ $lang = array(
'edit_token' => 'Token bearbeiten',
'delete_token' => 'Token löschen',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Zahlungsanbieter löschen',
'edit_gateway' => 'Zahlungsanbieter bearbeiten',
'add_gateway' => 'Zahlungsanbieter hinzufügen',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Zahlungsanbieter aktualisiert',
'created_gateway' => 'Zahlungsanbieter erfolgreich hinzugefügt',
'deleted_gateway' => 'Zahlungsanbieter erfolgreich gelöscht',
@ -737,7 +737,7 @@ $lang = array(
'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_7' => ':contact hat Rechnung :invoice für :client angesehen',
'activity_8' => ':user archivierte Rechnung :invoice',
'activity_9' => ':user löschte Rechnung :invoice',
'activity_10' => ':user hat die Zahlung :payment für :payment _amount der Rechnung :invoice für Kunde :client eingegeben',
@ -751,7 +751,7 @@ $lang = array(
'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_21' => ':contact hat Angebot :quote angesehen',
'activity_22' => ':user archiviertes Angebot :quote',
'activity_23' => ':user löschte Angebot :quote',
'activity_24' => ':user stellte Angebot :quote wieder her',
@ -957,8 +957,8 @@ $lang = array(
'color_font_help' => 'Info: Die primäre Farbe und Schriftarten werden auch im Kundenportal und im individuellen E-Mail-Design verwendet.',
'live_preview' => 'Live-Vorschau',
'invalid_mail_config' => 'E-Mails können nicht gesendet werden. Bitte überprüfen Sie, ob die E-Mail-Einstellungen korrekt sind.',
'invoice_message_button' => 'Um Ihre Rechnung über :amount zu sehen, klicken Sie die Schaltfläche unten.',
'quote_message_button' => 'Um Ihr Angebot über :amount zu sehen, klicken Sie die Schaltfläche unten.',
'invoice_message_button' => 'Um Ihre Rechnung über :amount anzusehen, klicken Sie die Schaltfläche unten.',
'quote_message_button' => 'Um Ihr Angebot über :amount anzusehen, klicken Sie die Schaltfläche unten.',
'payment_message_button' => 'Vielen Dank für Ihre Zahlung von :amount.',
'payment_type_direct_debit' => 'Überweisung',
'bank_accounts' => 'Kreditkarten & Banken',
@ -2198,6 +2198,8 @@ Sobald Sie die Beträge erhalten haben, kommen Sie bitte wieder zurück zu diese
'encryption' => 'Verschlüsselung',
'mailgun_domain' => 'Mailgun Domäne',
'mailgun_private_key' => 'Mailgun privater Schlüssel',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Test-E-Mail verschicken',
'select_label' => 'Bezeichnung wählen',
'label' => 'Label',
@ -4849,6 +4851,7 @@ https://invoiceninja.github.io/docs/migration/#troubleshooting',
'email_alignment' => 'E-Mail Ausrichtung',
'pdf_preview_location' => 'PDF Vorschau Ort',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Klicke + um einen Eintrag hinzuzufügen',
@ -5101,6 +5104,8 @@ https://invoiceninja.github.io/docs/migration/#troubleshooting',
'drop_files_here' => 'Datei hier hineinziehen',
'upload_files' => 'Dateien hochladen',
'download_e_invoice' => 'E-Rechnung herunterladen',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'innergemeinschaftliches Dreiecksgeschäft',
'intracommunity_tax_info' => 'Steuerfreie innergemeinschaftliche Lieferung',
'reverse_tax_info' => 'Steuerschuldnerschaft des
@ -5255,9 +5260,19 @@ Leistungsempfängers',
'payment_type_help' => 'Setze die Standard <b>manuelle Zahlungsmethode</b>.',
'quote_valid_until_help' => 'The number of days that the quote is valid for',
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'paylater' => 'Zahlen in 4',
'payment_provider' => 'Zahlungsanbieter',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Διαγραφή Διακριτικού',
'token' => 'Διακριτικό',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Διαγραφή Πύλης Πληρωμών (Gateway)',
'edit_gateway' => 'Επεξεργασία Πύλης Πληρωμών (Gateway)',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Επιτυχής ενημέρωση πύλης πληρωμών (Gateway)',
'created_gateway' => 'Επιτυχής δημιουργία πύλης πληρωμών (Gateway)',
'deleted_gateway' => 'Επιτυχής διαγραφή πύλης πληρωμών (Gateway)',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => 'Κρυπτογράφηση',
'mailgun_domain' => 'Όνομα χώρου Mailgun',
'mailgun_private_key' => 'Ιδιωτικό Κλειδί Mailgun',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Αποστολή δοκιμαστικού email',
'select_label' => 'Επιλογή Ετικέτας',
'label' => 'Ετικέτα',
@ -4847,6 +4849,7 @@ $lang = array(
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5253,7 +5258,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Eliminar Token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Eliminar Gateway',
'edit_gateway' => 'Editar Gateway',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Gateway actualizado con éxito',
'created_gateway' => 'Gateway creado con éxito',
'deleted_gateway' => 'Gateway eliminado con éxito',
@ -2196,6 +2196,8 @@ $lang = array(
'encryption' => 'Encripción',
'mailgun_domain' => 'Dominio de Mailgun',
'mailgun_private_key' => 'Llave Privada de Mailgun',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Enviar correo de prueba',
'select_label' => 'Seleccionar Etiqueta',
'label' => 'Etiqueta',
@ -4846,6 +4848,7 @@ $lang = array(
'email_alignment' => 'Alineación de correo electrónico',
'pdf_preview_location' => 'Ubicación de vista previa de PDF',
'mailgun' => 'Pistola de correo',
'brevo' => 'Brevo',
'postmark' => 'Matasellos',
'microsoft' => 'microsoft',
'click_plus_to_create_record' => 'Haga clic en + para crear un registro',
@ -5098,6 +5101,8 @@ $lang = array(
'drop_files_here' => 'Suelte archivos aquí',
'upload_files' => 'Subir archivos',
'download_e_invoice' => 'Descargar factura electrónica',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Transacción triangular intracomunitaria',
'intracommunity_tax_info' => 'Entrega intracomunitaria libre de impuestos',
'reverse_tax_info' => 'Tenga en cuenta que este suministro está sujeto a inversión de cargo.',
@ -5252,7 +5257,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Eliminar Token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Eliminar Pasarela',
'edit_gateway' => 'Editar Pasarela',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Pasarela actualizada correctamente',
'created_gateway' => 'Pasarela creada correctamente',
'deleted_gateway' => 'Pasarela eliminada correctamente',
@ -2193,6 +2193,8 @@ Una vez que tenga los montos, vuelva a esta página de métodos de pago y haga c
'encryption' => 'Encriptación',
'mailgun_domain' => 'Dominio Mailgun',
'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Enviar email de prueba',
'select_label' => 'Seleccionar etiqueta',
'label' => 'Etiqueta',
@ -4843,6 +4845,7 @@ Una vez que tenga los montos, vuelva a esta página de métodos de pago y haga c
'email_alignment' => 'Alineación de correo electrónico',
'pdf_preview_location' => 'Ubicación de vista previa de PDF',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Haga clic en + para crear un registro',
@ -5096,6 +5099,8 @@ De lo contrario, este campo deberá dejarse en blanco.',
'drop_files_here' => 'Suelte archivos aquí',
'upload_files' => 'Subir archivos',
'download_e_invoice' => 'Descarga Factura Electrónica',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Transacción triangular intracomunitaria',
'intracommunity_tax_info' => 'Entrega intracomunitaria libre de impuestos',
'reverse_tax_info' => 'Tenga en cuenta que este suministro está sujeto a inversión de cargo.',
@ -5250,7 +5255,17 @@ De lo contrario, este campo deberá dejarse en blanco.',
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -462,8 +462,8 @@ $lang = array(
'delete_token' => 'Kustuta Token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Kustuta Lüüs',
'edit_gateway' => 'Muuda Lüüsi',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Makselahendus uuendatud',
'created_gateway' => 'Makselahendus edukalt loodud',
'deleted_gateway' => 'Makeslahendus edukalt kustutatud',
@ -508,7 +508,7 @@ $lang = array(
'duplicate_post' => 'Hoiatus: eelmine leht esitati kaks korda. Teist ettepanekut eirati.',
'view_documentation' => 'Vaata dokumentatsiooni',
'app_title' => 'Free Online Invoicing',
'app_description' => 'Invoice Ninja is a free, open-code solution for invoicing and billing customers. With Invoice Ninja, you can easily build and send beautiful invoices from any device that has access to the web. Your clients can print your invoices, download them as pdf files, and even pay you online from within the system.',
'app_description' => 'Invoice Ninja on tasuta avatud koodiga lahendus klientidele arveldamiseks ja arveldamiseks. Arve Ninja abil saate hõlpsasti ilusat Arve d ehitada ja saata mis tahes seadmest, millel on juurdepääs veebile. Teie Kliendid saavad teie arveid printida, need PDF failidena alla laadida ja teile isegi otse süsteemi seest maksta.',
'rows' => 'rida',
'www' => 'www',
'logo' => 'Logo',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => 'Krüpteering',
'mailgun_domain' => 'Mailgun Domeen',
'mailgun_private_key' => 'Mailgun Privaatvõti',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Saada test e-kiri',
'select_label' => 'Vali Silt',
'label' => 'Silt',
@ -4847,6 +4849,7 @@ $lang = array(
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5253,7 +5258,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Delete Token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Delete Gateway',
'edit_gateway' => 'Edit Gateway',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Successfully updated gateway',
'created_gateway' => 'Successfully created gateway',
'deleted_gateway' => 'Successfully deleted gateway',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => 'Encryption',
'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test email',
'select_label' => 'Select Label',
'label' => 'Label',
@ -4847,6 +4849,7 @@ $lang = array(
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5253,7 +5258,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Poista token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Poista maksunvälittäjä',
'edit_gateway' => 'Muokkaa maksunvälittäjää',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Maksunvälittäjä päivitetty onnistuneesti',
'created_gateway' => 'Maksunvälittäjä luotu onnistuneesti',
'deleted_gateway' => 'Maksunvälittäjä poistettu onnistuneesti',
@ -2197,6 +2197,8 @@ Kun saat summat, palaa tälle maksutapasivulle ja klikkaa "Saata loppuun todenta
'encryption' => 'Encryption',
'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'lähetä testisähköposti',
'select_label' => 'Valitse kenttä',
'label' => 'Label',
@ -4847,6 +4849,7 @@ Kun saat summat, palaa tälle maksutapasivulle ja klikkaa "Saata loppuun todenta
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5099,6 +5102,8 @@ Kun saat summat, palaa tälle maksutapasivulle ja klikkaa "Saata loppuun todenta
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5253,7 +5258,17 @@ Kun saat summat, palaa tälle maksutapasivulle ja klikkaa "Saata loppuun todenta
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Supprimer ce jeton',
'token' => 'Jeton',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Supprimer la passerelle',
'edit_gateway' => 'Éditer la passerelle',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Passerelle mise à jour avec succès',
'created_gateway' => 'Passerelle créée avec succès',
'deleted_gateway' => 'Passerelle supprimée avec succès',
@ -2197,6 +2197,8 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
'encryption' => 'Chiffrement',
'mailgun_domain' => 'Domaine Mailgun',
'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Envoyer un courriel de test',
'select_label' => 'Sélectionnez le label',
'label' => 'Intitulé',
@ -4847,6 +4849,7 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
'email_alignment' => 'Alignement des e-mails',
'pdf_preview_location' => 'Emplacement de prévisualisation PDF',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Cachet de la poste',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Cliquez sur + pour créer un enregistrement',
@ -5099,6 +5102,8 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
'drop_files_here' => 'Déposez les fichiers ici',
'upload_files' => 'Télécharger des fichiers',
'download_e_invoice' => 'Télécharger la facture électronique',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Article 141 de la directive 2006/112/CE opération triangulaire',
'intracommunity_tax_info' => 'Livraison désignée à l\'article 262 ter du CGI TVA due par le preneur',
'reverse_tax_info' => 'Exonération des TVA article 283-2 du CGI TVA due par le preneur',
@ -5253,7 +5258,17 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Supprimer le jeton',
'token' => 'Jeton',
'add_gateway' => 'Ajouter une passerelle de paiement',
'delete_gateway' => 'Supprimer la passerelle',
'edit_gateway' => 'Éditer la passerelle',
'delete_gateway' => 'Supprimer la passerelle de paiement1',
'edit_gateway' => 'Éditer la passerelle de paiement',
'updated_gateway' => 'La passerelle a été mise à jour',
'created_gateway' => 'La passerelle a été créée',
'deleted_gateway' => 'La passerelle a été supprimée',
@ -5259,8 +5259,13 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
'purchase_order_items' => 'Articles du bon d\'achat',
'csv_rows_length' => 'Aucune donnée dans ce fichier CSV',
'accept_payments_online' => 'Accepter les paiements en ligne',
'all_payment_gateways' => 'Voir toutes les passerelles de paiements',
'all_payment_gateways' => 'Voir toutes les passerelles de paiements',
'product_cost' => 'Coût du produit',
'enable_rappen_roudning' => 'Activer arrondir les cents',
'enable_rappen_rounding_help' => 'Arrondir les totaux au 5 le plus proche',
'duration_words' => 'Durée en mots',
'upcoming_recurring_invoices' => 'Factures récurrentes à venir',
'total_invoices' => 'Total factures',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Supprimer le jeton',
'token' => 'Jeton',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Supprimer la passerelle',
'edit_gateway' => 'Éditer la passerelle',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'La passerelle a été mise à jour avec succès',
'created_gateway' => 'La passerelle a été créée avec succès',
'deleted_gateway' => 'La passerelle a été supprimée avec succès',
@ -2194,6 +2194,8 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
'encryption' => 'Cryptage',
'mailgun_domain' => 'Domaine Mailgun',
'mailgun_private_key' => 'Clé privée Mailgun',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Envoyer un courriel test',
'select_label' => 'Sélectionnez le libellé',
'label' => 'Libellé',
@ -4844,6 +4846,7 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Cliquez sur + pour créer un enregistrement',
@ -5096,6 +5099,8 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
'drop_files_here' => 'Déposez les fichiers ici',
'upload_files' => 'Téléverser les fichiers',
'download_e_invoice' => 'Télécharger la facture électronique',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Transaction triangulaire intracommunautaire',
'intracommunity_tax_info' => 'Livraison intracommunautaire hors taxes',
'reverse_tax_info' => 'Veuillez noter que cette fourniture est soumise à l&#39;autoliquidation',
@ -5250,7 +5255,17 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -459,8 +459,8 @@ $lang = array(
'delete_token' => 'מחיקת טוקן',
'token' => 'טוקן',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'מחיקת Gateway',
'edit_gateway' => 'עריכת Gateway',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Gateway עודכן בהצלחה',
'created_gateway' => 'Gateway נוצר בהצלחה',
'deleted_gateway' => 'Gateway נמחק',
@ -2195,6 +2195,8 @@ $lang = array(
'encryption' => 'Encryption',
'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test email',
'select_label' => 'Select Label',
'label' => 'Label',
@ -4845,6 +4847,7 @@ $lang = array(
'email_alignment' => 'יישור אימייל',
'pdf_preview_location' => 'מיקום תצוגה מקדימה של PDF',
'mailgun' => 'דואר רובה',
'brevo' => 'Brevo',
'postmark' => 'חוֹתֶמֶת דוֹאַר',
'microsoft' => 'מיקרוסופט',
'click_plus_to_create_record' => 'לחץ על + כדי ליצור רשומה',
@ -5097,6 +5100,8 @@ $lang = array(
'drop_files_here' => 'זרוק קבצים כאן',
'upload_files' => 'העלה קבצים',
'download_e_invoice' => 'הורד חשבונית אלקטרונית',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'עסקה משולשת תוך קהילתית',
'intracommunity_tax_info' => 'משלוח תוך קהילתי ללא מס',
'reverse_tax_info' => 'לידיעתך, אספקה זו כפופה לחיוב הפוך',
@ -5251,7 +5256,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Obriši token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Obriši usmjernik',
'edit_gateway' => 'Uredi usmjernik',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Uspješno ažuriran usmjernik',
'created_gateway' => 'Uspješno kreiran usmjernik',
'deleted_gateway' => 'Uspješno obrisan usmjernik',
@ -2198,6 +2198,8 @@ Nevažeći kontakt email',
'encryption' => 'Encryption',
'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test email',
'select_label' => 'Select Label',
'label' => 'Label',
@ -4848,6 +4850,7 @@ Nevažeći kontakt email',
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5100,6 +5103,8 @@ Nevažeći kontakt email',
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5254,7 +5259,17 @@ Nevažeći kontakt email',
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -454,8 +454,8 @@ $lang = array(
'delete_token' => 'Token törlése',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Szolgáltató törlése',
'edit_gateway' => 'Szolgáltató szerkesztése',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Szolgáltató sikeresen frissítve',
'created_gateway' => 'Szolgáltató sikeresen létrehozva',
'deleted_gateway' => 'Szolgáltató sikeresen törölve',
@ -2181,6 +2181,8 @@ adva :date',
'encryption' => 'Titkosítás',
'mailgun_domain' => 'Mailgun tartomány',
'mailgun_private_key' => 'Mailgun privát kulcs',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Teszt e-mail küldése',
'select_label' => 'Címke kiválasztása',
'label' => 'Címke',
@ -4831,6 +4833,7 @@ adva :date',
'email_alignment' => 'email igazítása',
'pdf_preview_location' => 'PDF-előnézet helye',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'létrehozás klikkeléssel (+)',
@ -5083,6 +5086,8 @@ adva :date',
'drop_files_here' => 'Dobja ide a fájlokat',
'upload_files' => 'Fájlok feltöltése',
'download_e_invoice' => 'E-számla letöltése',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Közösségen belüli háromszög tranzakció',
'intracommunity_tax_info' => 'Adómentes közösségen belüli kiszállítás',
'reverse_tax_info' => 'Felhívjuk figyelmét, hogy ez a szolgáltatás fordított adózás hatálya alá tartozik',
@ -5237,7 +5242,17 @@ adva :date',
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Elimina Token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Elimina Gateway',
'edit_gateway' => 'Modifica Gateway',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Piattaforma aggiornata con successo',
'created_gateway' => 'Gateway creato correttamente',
'deleted_gateway' => 'Piattaforma eliminata correttamente',
@ -2188,6 +2188,8 @@ $lang = array(
'encryption' => 'Crittografia',
'mailgun_domain' => 'Dominio mailgun',
'mailgun_private_key' => 'Chiave privata Mailgun',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Invia email di test',
'select_label' => 'Seleziona etichetta',
'label' => 'Etichetta',
@ -4838,6 +4840,7 @@ $lang = array(
'email_alignment' => 'Allineamento e-mail',
'pdf_preview_location' => 'Posizione anteprima PDF',
'mailgun' => 'Pistola postale',
'brevo' => 'Brevo',
'postmark' => 'Timbro postale',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Fare clic su + per creare un record',
@ -5090,6 +5093,8 @@ $lang = array(
'drop_files_here' => 'Rilascia i file qui',
'upload_files' => 'Caricare files',
'download_e_invoice' => 'Scarica E- Fattura',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Transazione triangolare intracomunitaria',
'intracommunity_tax_info' => 'Consegna intracomunitaria esente da imposte',
'reverse_tax_info' => 'Si prega di Nota che questa fornitura è soggetta a inversione contabile',
@ -5244,7 +5249,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'トークンを削除',
'token' => 'トークン',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'ゲートウェイを削除',
'edit_gateway' => 'ゲートウェイを編集',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'ゲートウェイを更新しました。',
'created_gateway' => 'ゲートウェイを追加しました。',
'deleted_gateway' => 'ゲートウェイを削除しました。',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => 'Encryption',
'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test email',
'select_label' => 'Select Label',
'label' => 'Label',
@ -4847,6 +4849,7 @@ $lang = array(
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5253,7 +5258,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -454,8 +454,8 @@ $lang = array(
'delete_token' => 'លុបថូខឹន',
'token' => 'សញ្ញាសម្ងាត់',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'លុបច្រកផ្លូវ',
'edit_gateway' => 'កែសម្រួលច្រកផ្លូវ',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'បានធ្វើបច្ចុប្បន្នភាពច្រកផ្លូវដោយជោគជ័យ',
'created_gateway' => 'បានបង្កើតច្រកផ្លូវដោយជោគជ័យ',
'deleted_gateway' => 'បានលុបច្រកចេញដោយជោគជ័យ',
@ -2177,6 +2177,8 @@ $lang = array(
'encryption' => 'ការអ៊ិនគ្រីប',
'mailgun_domain' => 'ដែន Mailgun',
'mailgun_private_key' => 'សោឯកជន Mailgun',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'ផ្ញើអ៊ីមែលសាកល្បង',
'select_label' => 'ជ្រើសរើសស្លាក',
'label' => 'ស្លាក​សញ្ញា',
@ -4827,6 +4829,7 @@ $lang = array(
'email_alignment' => 'ការតម្រឹមអ៊ីមែល',
'pdf_preview_location' => 'ទីតាំងមើលជាមុន PDF',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'ប្រៃសណីយ៍',
'microsoft' => 'ក្រុមហ៊ុន Microsoft',
'click_plus_to_create_record' => 'ចុច + ដើម្បីបង្កើតកំណត់ត្រា',
@ -5079,6 +5082,8 @@ $lang = array(
'drop_files_here' => 'ទម្លាក់ឯកសារនៅទីនេះ',
'upload_files' => 'ផ្ទុកឯកសារឡើង',
'download_e_invoice' => 'ទាញយក E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'ប្រតិបត្តិការត្រីកោណក្នុងសហគមន៍',
'intracommunity_tax_info' => 'ការដឹកជញ្ជូនក្នុងសហគមន៍ដោយមិនគិតពន្ធ',
'reverse_tax_info' => 'សូមចំណាំថាការផ្គត់ផ្គង់នេះគឺត្រូវគិតថ្លៃបញ្ច្រាស',
@ -5233,7 +5238,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'ລຶບໂທເຄັນ',
'token' => 'ໂທເຄັນ',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'ລຶບປະຕູທາງອອກ',
'edit_gateway' => 'ແກ້ໄຂປະຕູ',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'ປັບປຸງປະຕູທາງສຳເລັດແລ້ວ',
'created_gateway' => 'ສ້າງປະຕູທາງສຳເລັດແລ້ວ',
'deleted_gateway' => 'ລຶບປະຕູສຳເລັດແລ້ວ',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => 'ການເຂົ້າລະຫັດ',
'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'ກະແຈສ່ວນຕົວຂອງ Mailgun',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'ສົ່ງອີເມວທົດສອບ',
'select_label' => 'ເລືອກປ້າຍກຳກັບ',
'label' => 'ປ້າຍກຳກັບ',
@ -4847,6 +4849,7 @@ $lang = array(
'email_alignment' => 'ການຈັດຮຽງອີເມວ',
'pdf_preview_location' => 'ສະຖານທີ່ເບິ່ງຕົວຢ່າງ PDF',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'ເຄື່ອງໝາຍໄປສະນີ',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'ຄລິກ + ເພື່ອສ້າງບັນທຶກ',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => 'ວາງໄຟລ໌ໄວ້ບ່ອນນີ້',
'upload_files' => 'ອັບໂຫລດໄຟລ໌',
'download_e_invoice' => 'ດາວໂຫລດ E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'ທຸລະກຳສາມຫຼ່ຽມພາຍໃນຊຸມຊົນ',
'intracommunity_tax_info' => 'ການຈັດສົ່ງພາຍໃນຊຸມຊົນທີ່ບໍ່ມີພາສີ',
'reverse_tax_info' => 'ກະລຸນາສັງເກດວ່າການສະຫນອງນີ້ແມ່ນຂຶ້ນກັບການຄິດຄ່າປີ້ນກັບ',
@ -5253,7 +5258,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Delete Token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Delete Gateway',
'edit_gateway' => 'Edit Gateway',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Successfully updated gateway',
'created_gateway' => 'Successfully created gateway',
'deleted_gateway' => 'Successfully deleted gateway',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => 'Encryption',
'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test email',
'select_label' => 'Select Label',
'label' => 'Label',
@ -4847,6 +4849,7 @@ $lang = array(
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Spustelėkite +, kad sukurtumėte įrašą',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5253,7 +5258,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Delete Token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Delete Gateway',
'edit_gateway' => 'Edit Gateway',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Successfully updated gateway',
'created_gateway' => 'Successfully created gateway',
'deleted_gateway' => 'Successfully deleted gateway',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => 'Encryption',
'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test email',
'select_label' => 'Select Label',
'label' => 'Label',
@ -4847,6 +4849,7 @@ $lang = array(
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5253,7 +5258,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -462,8 +462,8 @@ $lang = array(
'delete_token' => 'Избриши токен',
'token' => 'Токен',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Избриши Платен портал',
'edit_gateway' => 'Уреди Платен портал',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Успешно ажурирање на платен портал',
'created_gateway' => 'Успешно креиран платен портал',
'deleted_gateway' => 'Успешно избришан платен портал',
@ -2198,6 +2198,8 @@ $lang = array(
'encryption' => 'Енкрипција',
'mailgun_domain' => 'Mailgun домен',
'mailgun_private_key' => 'Mailgun приватен клуч',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Прати тест е-пошта',
'select_label' => 'Избери назнака',
'label' => 'Назнака',
@ -4848,6 +4850,7 @@ $lang = array(
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5100,6 +5103,8 @@ $lang = array(
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5254,7 +5259,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Slett Token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Slett Tilbyder',
'edit_gateway' => 'Rediger Tilbyder',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Suksessfullt oppdatert tilbyder',
'created_gateway' => 'Suksessfullt opprettet tilbyder',
'deleted_gateway' => 'Suksessfullt slettet tilbyder',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => 'Kryptering',
'mailgun_domain' => 'Mailgun Domene',
'mailgun_private_key' => 'Mailgun Privat Nøkkel',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test-e-post',
'select_label' => 'Select Label',
'label' => 'Label',
@ -4847,6 +4849,7 @@ $lang = array(
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5253,7 +5258,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Verwijder token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Gateway verwijderen',
'edit_gateway' => 'Wijzig gateway',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'De gateway is gewijzigd',
'created_gateway' => 'De gateway is aangemaakt',
'deleted_gateway' => 'De gateway is verwijderd',
@ -2194,6 +2194,8 @@ Kom terug naar deze betalingsmethode pagina zodra u de bedragen heeft ontvangen
'encryption' => 'Encryptie',
'mailgun_domain' => 'Mailgun domein',
'mailgun_private_key' => 'Mailgun privésleutel',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Verstuur test-e-mail',
'select_label' => 'Selecteer label',
'label' => 'Label',
@ -4847,6 +4849,7 @@ Email: :email<b><br><b>',
'email_alignment' => 'E-mailuitlijning',
'pdf_preview_location' => 'Pdf-voorbeeldlocatie',
'mailgun' => 'Postpistool',
'brevo' => 'Brevo',
'postmark' => 'Poststempel',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Klik op + om een record te maken',
@ -5099,6 +5102,8 @@ Email: :email<b><br><b>',
'drop_files_here' => 'Zet hier bestanden neer',
'upload_files' => 'Upload bestanden',
'download_e_invoice' => 'E-factuur downloaden',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intracommunautaire driehoekstransactie',
'intracommunity_tax_info' => 'Belastingvrije intracommunautaire levering',
'reverse_tax_info' => 'Houd er rekening mee dat op deze levering een verleggingsregeling van toepassing is',
@ -5253,7 +5258,17 @@ Email: :email<b><br><b>',
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -459,8 +459,8 @@ Przykłady dynamicznych zmiennych:
'delete_token' => 'Usuń token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Usuń dostawcę płatności',
'edit_gateway' => 'Edytuj dostawcę płatności',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Dostawca płatności został zaktualizowany.',
'created_gateway' => 'Dostawca płatności został utworzony',
'deleted_gateway' => 'Dostawca płatności został usunięty',
@ -2195,6 +2195,8 @@ Gdy przelewy zostaną zaksięgowane na Twoim koncie, wróć do tej strony i klik
'encryption' => 'Szyfrowanie',
'mailgun_domain' => 'Domena Mailgun',
'mailgun_private_key' => 'Klucz prywatny Mailgun',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Wyślij wiadomość testową',
'select_label' => 'Wybierz etykietę',
'label' => 'Etykieta',
@ -4845,6 +4847,7 @@ Gdy przelewy zostaną zaksięgowane na Twoim koncie, wróć do tej strony i klik
'email_alignment' => 'Wyrównanie treści e-maili',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5097,6 +5100,8 @@ Gdy przelewy zostaną zaksięgowane na Twoim koncie, wróć do tej strony i klik
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5251,7 +5256,17 @@ Gdy przelewy zostaną zaksięgowane na Twoim koncie, wróć do tej strony i klik
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Excluir Token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Excluir Gateway',
'edit_gateway' => 'Editar Gateway',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Gateway atualizado com sucesso',
'created_gateway' => 'Gateway criado com sucesso',
'deleted_gateway' => 'Gateway excluído com sucesso',
@ -2194,6 +2194,8 @@ Quando tiver as quantias, volte a esta página de formas de pagamento e clique "
'encryption' => 'Encriptação',
'mailgun_domain' => 'Domínio do Mailgun',
'mailgun_private_key' => 'Chave Privada do Mailgun',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Enviar email de teste',
'select_label' => 'Selecione o Rótulo',
'label' => 'Rótulo',
@ -4844,6 +4846,7 @@ Quando tiver as quantias, volte a esta página de formas de pagamento e clique "
'email_alignment' => 'Alinhamento de e-mail',
'pdf_preview_location' => 'Local de visualização do PDF',
'mailgun' => 'Arma postal',
'brevo' => 'Brevo',
'postmark' => 'Carimbo postal',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Clique em + para criar um registro',
@ -5096,6 +5099,8 @@ Quando tiver as quantias, volte a esta página de formas de pagamento e clique "
'drop_files_here' => 'Solte os arquivos aqui',
'upload_files' => 'Fazer upload de arquivos',
'download_e_invoice' => 'Baixar fatura eletrônica',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Transação triangular intracomunitária',
'intracommunity_tax_info' => 'Entrega intracomunitária isenta de impostos',
'reverse_tax_info' => 'Observe que este fornecimento está sujeito a cobrança reversa',
@ -5250,7 +5255,17 @@ Quando tiver as quantias, volte a esta página de formas de pagamento e clique "
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Apagar Símbolo',
'token' => 'Símbolo',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Apagar Terminal',
'edit_gateway' => 'Editar Terminal',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Terminal atualizado',
'created_gateway' => 'Terminal Criado',
'deleted_gateway' => 'Terminal Apagado',
@ -2195,6 +2195,8 @@ Quando tiver os valores dos depósitos, volte a esta página e conclua a verific
'encryption' => 'Encriptação',
'mailgun_domain' => 'Domínio do Mailgun',
'mailgun_private_key' => 'Chave Privada do Mailgun',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Enviar e-mail de teste',
'select_label' => 'Selecione a Legenda',
'label' => 'Legenda',
@ -4847,6 +4849,7 @@ O envio de E-mails foi suspenso. Será retomado às 23:00 UTC.',
'email_alignment' => 'Alinhamento de e-mail',
'pdf_preview_location' => 'Local de visualização do PDF',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Carimbo postal',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Clique em + para criar um registro',
@ -5099,6 +5102,8 @@ O envio de E-mails foi suspenso. Será retomado às 23:00 UTC.',
'drop_files_here' => 'Solte os arquivos aqui',
'upload_files' => 'Fazer upload de arquivos',
'download_e_invoice' => 'Baixar fatura eletrônica',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Transação triangular intracomunitária',
'intracommunity_tax_info' => 'Entrega intracomunitária isenta de impostos',
'reverse_tax_info' => 'Observe que este fornecimento está sujeito a cobrança reversa',
@ -5253,7 +5258,17 @@ O envio de E-mails foi suspenso. Será retomado às 23:00 UTC.',
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Șterge Token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Șterge Gateway',
'edit_gateway' => 'Modifică Gateway',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Gateway actualizat',
'created_gateway' => 'Gateway creat',
'deleted_gateway' => 'Gateway șters',
@ -2197,6 +2197,8 @@ Odată ce sumele au ajuns la dumneavoastră, reveniți la pagina cu metode de pl
'encryption' => 'Criptare',
'mailgun_domain' => 'Domeniu Mailgun',
'mailgun_private_key' => 'Cheie privată Mailgun',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Trimiteți un email de test',
'select_label' => 'Selectați eticheta',
'label' => 'Etichetă',
@ -4848,6 +4850,7 @@ Odată ce sumele au ajuns la dumneavoastră, reveniți la pagina cu metode de pl
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5100,6 +5103,8 @@ Odată ce sumele au ajuns la dumneavoastră, reveniți la pagina cu metode de pl
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5254,7 +5259,17 @@ Odată ce sumele au ajuns la dumneavoastră, reveniți la pagina cu metode de pl
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Удалить права',
'token' => 'Права',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Удалить платежный шлюз',
'edit_gateway' => 'Изменить платёжный шлюз',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Платёжный шлюз успешно обновлён',
'created_gateway' => 'Платёжный шлюз успешно создан',
'deleted_gateway' => 'Платёжный шлюз успешно удалён',
@ -2198,6 +2198,8 @@ $lang = array(
'encryption' => 'Шифрование',
'mailgun_domain' => 'Домен рассылки',
'mailgun_private_key' => 'Ключ почтовой рассылки',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Отправить тестовое сообщение',
'select_label' => 'Выбрать ярлык',
'label' => 'Label',
@ -4848,6 +4850,7 @@ $lang = array(
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5100,6 +5103,8 @@ $lang = array(
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5254,7 +5259,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Zmazať token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Odstrániť bránu',
'edit_gateway' => 'Upraviť bránu',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Brána úspešne upravená',
'created_gateway' => 'Brána úspešne vytvorená',
'deleted_gateway' => 'Brána úspešne odstránená',
@ -2184,6 +2184,8 @@ $lang = array(
'encryption' => 'Šifrovanie',
'mailgun_domain' => 'Doména Mailgun',
'mailgun_private_key' => 'Privátny kľúč Mailgun',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Odoslať skúšobný email',
'select_label' => 'Vybrať štítok',
'label' => 'Štítok',
@ -4834,6 +4836,7 @@ $lang = array(
'email_alignment' => 'Zarovnanie e-mailov',
'pdf_preview_location' => 'Umiestnenie náhľadu PDF',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Poštová pečiatka',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Kliknutím na + vytvoríte záznam',
@ -5086,6 +5089,8 @@ $lang = array(
'drop_files_here' => 'Sem presuňte súbory',
'upload_files' => 'Nahrať súbory',
'download_e_invoice' => 'Stiahnite si elektronickú faktúru',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Trojstranná transakcia v rámci Spoločenstva',
'intracommunity_tax_info' => 'Dodanie v rámci Spoločenstva oslobodené od dane',
'reverse_tax_info' => 'Upozorňujeme, že táto dodávka podlieha preneseniu daňovej povinnosti',
@ -5240,7 +5245,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Odstrani žeton',
'token' => 'Žeton',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Odstrani prehod',
'edit_gateway' => 'Uredi prehod',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Prehod uspešno obnovljen',
'created_gateway' => 'Prehod uspešno ustvarjen',
'deleted_gateway' => 'Prehod uspešno odstranjen',
@ -2198,6 +2198,8 @@ Ko imate zneske, se vrnite na to stran plačilnega sredstva in kliknite na "Comp
'encryption' => 'Enkripcija',
'mailgun_domain' => 'Mailgun domena',
'mailgun_private_key' => 'Mailgun zasebni ključ',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Pošlji testno sporočilo',
'select_label' => 'Izberi oznako',
'label' => 'Oznaka',
@ -4848,6 +4850,7 @@ Ko imate zneske, se vrnite na to stran plačilnega sredstva in kliknite na "Comp
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'Lokacija predlogleda',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5100,6 +5103,8 @@ Ko imate zneske, se vrnite na to stran plačilnega sredstva in kliknite na "Comp
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5254,7 +5259,17 @@ Ko imate zneske, se vrnite na to stran plačilnega sredstva in kliknite na "Comp
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Fshi Tokenin',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Fshi kanalin e pagesës',
'edit_gateway' => 'Edito kanalin e pagesës',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Kanali i pagesës është perditesuar me sukses',
'created_gateway' => 'Kanali i pagesës është krijuar me sukses',
'deleted_gateway' => 'Kanali i pagesës është fshirë me sukses',
@ -2198,6 +2198,8 @@ Pasi të keni pranuar shumat, kthehuni në faqen e metodave të pagesës dhe kli
'encryption' => 'Encryption',
'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test email',
'select_label' => 'Select Label',
'label' => 'Label',
@ -4848,6 +4850,7 @@ Pasi të keni pranuar shumat, kthehuni në faqen e metodave të pagesës dhe kli
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5100,6 +5103,8 @@ Pasi të keni pranuar shumat, kthehuni në faqen e metodave të pagesës dhe kli
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5254,7 +5259,17 @@ Pasi të keni pranuar shumat, kthehuni në faqen e metodave të pagesës dhe kli
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Obriši token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Obriši kanal plaćanja',
'edit_gateway' => 'Uredi kanal plaćanja',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Uspešno ažuriran kanal',
'created_gateway' => 'Uspešno kreiran kanal',
'deleted_gateway' => 'Uspešno obrisan kanal',
@ -2197,6 +2197,8 @@ Kada budete imali iznose, vratite se na ovu stranicu sa načinima plaćanja i k
'encryption' => 'Enkripcija',
'mailgun_domain' => 'Mailgun Domen',
'mailgun_private_key' => 'Mailgun privatni ključ',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Pošalji probnu e-poštu',
'select_label' => 'Izaberi oznaku',
'label' => 'Oznaka',
@ -4847,6 +4849,7 @@ Kada budete imali iznose, vratite se na ovu stranicu sa načinima plaćanja i k
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5099,6 +5102,8 @@ Kada budete imali iznose, vratite se na ovu stranicu sa načinima plaćanja i k
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5253,7 +5258,17 @@ Kada budete imali iznose, vratite se na ovu stranicu sa načinima plaćanja i k
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Ta bort token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Ta bort gateway',
'edit_gateway' => 'Ändra gateway',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Gateway uppdaterad',
'created_gateway' => 'Gateway skapad',
'deleted_gateway' => 'Gateway borttagen',
@ -2205,6 +2205,8 @@ Den här funktionen kräver att en produkt skapas och en betalningsgateway är k
'encryption' => 'Kryptering',
'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Skicka test meddelande',
'select_label' => 'Välj rubrik',
'label' => 'Rubrik',
@ -4855,6 +4857,7 @@ Den här funktionen kräver att en produkt skapas och en betalningsgateway är k
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5107,6 +5110,8 @@ Den här funktionen kräver att en produkt skapas och en betalningsgateway är k
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5261,7 +5266,17 @@ Den här funktionen kräver att en produkt skapas och en betalningsgateway är k
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'ลบ Token',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'ลบช่องทางการชำระเงิน',
'edit_gateway' => 'แก้ไขช่องทางการชำระเงิน',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'อัปเดทช่องทางการชำระเงินเรียบร้อย',
'created_gateway' => 'สร้างช่องทางการชำระเงินเรียบร้อย',
'deleted_gateway' => 'ลบช่องทางกา่รชำระเงินเรียบร้อย',
@ -2198,6 +2198,8 @@ $lang = array(
'encryption' => 'การเข้ารหัส',
'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'ส่งอีเมล์ทดสอบ',
'select_label' => 'เลือกป้ายกำกับ',
'label' => 'ป้ายกำกับ',
@ -4848,6 +4850,7 @@ $lang = array(
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5100,6 +5103,8 @@ $lang = array(
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5254,7 +5259,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Token Sil',
'token' => 'Token',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Ödeme Sistemi Sil',
'edit_gateway' => 'Ödeme Sistemi Düzenle',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Ödeme Sistemi başarıyla güncellendi',
'created_gateway' => 'Ödeme Sistemi başarıyla oluşturuldu',
'deleted_gateway' => 'Ödeme Sistemi başarıyla silindi',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => 'Encryption',
'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test email',
'select_label' => 'Select Label',
'label' => 'Label',
@ -4847,6 +4849,7 @@ $lang = array(
'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark',
'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge',
@ -5253,7 +5258,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => '刪除安全代碼',
'token' => '安全代碼',
'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => '刪除閘道資料',
'edit_gateway' => '編輯閘道',
'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => '更新閘道資料成功',
'created_gateway' => '建立閘道資料成功',
'deleted_gateway' => '刪除閘道資料成功',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => '加密',
'mailgun_domain' => 'Mailgun 網域',
'mailgun_private_key' => 'Mailgun 私密金鑰',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => '寄送測試郵件',
'select_label' => '選擇標籤',
'label' => '標籤',
@ -4847,6 +4849,7 @@ $lang = array(
'email_alignment' => '電子郵件對齊',
'pdf_preview_location' => 'PDF 預覽位置',
'mailgun' => '郵件槍',
'brevo' => 'Brevo',
'postmark' => '郵戳',
'microsoft' => '微軟',
'click_plus_to_create_record' => '點擊+建立記錄',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => '將文件拖放到此處',
'upload_files' => '上傳文件',
'download_e_invoice' => '下載電子發票',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => '社區內三角交易',
'intracommunity_tax_info' => '免稅社區內配送',
'reverse_tax_info' => '請注意,此電源可能會反向充電',
@ -5253,7 +5258,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider',
'select_email_provider' => 'Set your email as the sending user',
'purchase_order_items' => 'Purchase Order Items',
'csv_rows_length' => 'No data found in this CSV file',
'accept_payments_online' => 'Accept Payments Online',
'all_payment_gateways' => 'View all payment gateways',
'product_cost' => 'Product cost',
'enable_rappen_roudning' => 'Enable Rappen Rounding',
'enable_rappen_rounding_help' => 'Rounds totals to nearest 5',
'duration_words' => 'Duration in words',
'upcoming_recurring_invoices' => 'Upcoming Recurring Invoices',
'total_invoices' => 'Total Invoices',
);
return $lang;

View File

@ -46,6 +46,24 @@ class PurchaseOrderTest extends TestCase
$this->makeTestData();
}
public function testExpensePurchaseOrderConversion()
{
$p = PurchaseOrder::factory()->create([
'user_id' => $this->user->id,
'company_id' => $this->company->id,
'vendor_id' => $this->vendor->id,
'project_id' => $this->project->id,
]);
$expense = $p->service()->expense();
$this->assertEquals($expense->project_id, $this->project->id);
$this->assertEquals($expense->client_id, $p->project->client_id);
}
public function testPurchaseOrderHistory()
{
event(new PurchaseOrderWasUpdated($this->purchase_order, $this->company, Ninja::eventVars($this->company, $this->user)));