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_amount1 = 0;
$expense->tax_amount2 = 0; $expense->tax_amount2 = 0;
$expense->tax_amount3 = 0; $expense->tax_amount3 = 0;
$expense->uses_inclusive_taxes = false;
return $expense; return $expense;
} }

View File

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

View File

@ -57,6 +57,13 @@ class PurchaseOrderExpense
$expense->number = empty($expense->number) ? $this->getNextExpenseNumber($expense) : $expense->number; $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(); $expense->saveQuietly();
event('eloquent.created: App\Models\Expense', $expense); event('eloquent.created: App\Models\Expense', $expense);

View File

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

View File

@ -46,6 +46,7 @@ class PurchaseOrderFactory extends Factory
'due_date' => $this->faker->date(), 'due_date' => $this->faker->date(),
'line_items' => InvoiceItemFactory::generate(5), 'line_items' => InvoiceItemFactory::generate(5),
'terms' => $this->faker->text(500), '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' => 'حذف الرمز المميز', 'delete_token' => 'حذف الرمز المميز',
'token' => 'رمز', 'token' => 'رمز',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'حذف البوابة', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'تحرير البوابة', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'تم تحديث البوابة بنجاح', 'updated_gateway' => 'تم تحديث البوابة بنجاح',
'created_gateway' => 'تم إنشاء البوابة بنجاح', 'created_gateway' => 'تم إنشاء البوابة بنجاح',
'deleted_gateway' => 'تم حذف البوابة بنجاح', 'deleted_gateway' => 'تم حذف البوابة بنجاح',
@ -2178,6 +2178,8 @@ $lang = array(
'encryption' => 'التشفير', 'encryption' => 'التشفير',
'mailgun_domain' => 'مجال Mailgun', 'mailgun_domain' => 'مجال Mailgun',
'mailgun_private_key' => 'مفتاح Mailgun الخاص', 'mailgun_private_key' => 'مفتاح Mailgun الخاص',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'إرسال بريد إلكتروني تجريبي', 'send_test_email' => 'إرسال بريد إلكتروني تجريبي',
'select_label' => 'حدد تسمية', 'select_label' => 'حدد تسمية',
'label' => 'ملصق', 'label' => 'ملصق',
@ -4828,6 +4830,7 @@ $lang = array(
'email_alignment' => 'محاذاة البريد الإلكتروني', 'email_alignment' => 'محاذاة البريد الإلكتروني',
'pdf_preview_location' => 'موقع معاينة PDF', 'pdf_preview_location' => 'موقع معاينة PDF',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'ختم البريد', 'postmark' => 'ختم البريد',
'microsoft' => 'مايكروسوفت', 'microsoft' => 'مايكروسوفت',
'click_plus_to_create_record' => 'انقر فوق + لإنشاء سجل', 'click_plus_to_create_record' => 'انقر فوق + لإنشاء سجل',
@ -5080,6 +5083,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' => 'المعاملات الثلاثية داخل المجتمع', 'triangular_tax_info' => 'المعاملات الثلاثية داخل المجتمع',
'intracommunity_tax_info' => 'التوصيل داخل المجتمع معفي من الضرائب', 'intracommunity_tax_info' => 'التوصيل داخل المجتمع معفي من الضرائب',
'reverse_tax_info' => 'يرجى ملاحظة أن هذا العرض يخضع لرسوم عكسية', 'reverse_tax_info' => 'يرجى ملاحظة أن هذا العرض يخضع لرسوم عكسية',
@ -5234,7 +5239,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -462,8 +462,8 @@ $lang = array(
'delete_token' => 'Изтриване на токън', 'delete_token' => 'Изтриване на токън',
'token' => 'Токън', 'token' => 'Токън',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Изтриване на Gateway', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Редакция на Gateway', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Успешно актуализиран Gateway', 'updated_gateway' => 'Успешно актуализиран Gateway',
'created_gateway' => 'Успешно създаден Gateway', 'created_gateway' => 'Успешно създаден Gateway',
'deleted_gateway' => 'Успешно изтрит Gateway', 'deleted_gateway' => 'Успешно изтрит Gateway',
@ -2198,6 +2198,8 @@ $lang = array(
'encryption' => 'Криптиране', 'encryption' => 'Криптиране',
'mailgun_domain' => 'Mailgun домейн', 'mailgun_domain' => 'Mailgun домейн',
'mailgun_private_key' => 'Mailgun частен ключ', 'mailgun_private_key' => 'Mailgun частен ключ',
'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 @@ $lang = array(
'email_alignment' => 'Email Alignment', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', 'click_plus_to_create_record' => 'Click + to create a record',
@ -5100,6 +5103,8 @@ $lang = array(
'drop_files_here' => 'Drop files here', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Delete Token', 'delete_token' => 'Delete Token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Delete Gateway', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Gateway', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Successfully updated gateway', 'updated_gateway' => 'Successfully updated gateway',
'created_gateway' => 'Successfully created gateway', 'created_gateway' => 'Successfully created gateway',
'deleted_gateway' => 'Successfully deleted gateway', 'deleted_gateway' => 'Successfully deleted gateway',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => 'Encryption', 'encryption' => 'Encryption',
'mailgun_domain' => 'Mailgun Domain', 'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key', 'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test email', 'send_test_email' => 'Send test email',
'select_label' => 'Select Label', 'select_label' => 'Select Label',
'label' => 'Label', 'label' => 'Label',
@ -4847,6 +4849,7 @@ $lang = array(
'email_alignment' => 'Email Alignment', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', 'click_plus_to_create_record' => 'Click + to create a record',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => 'Drop files here', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Smazat Token', 'delete_token' => 'Smazat Token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Smazat platební bránu', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Editovat bránu', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Brána úspěšně změněna', 'updated_gateway' => 'Brána úspěšně změněna',
'created_gateway' => 'Brána úspěšně vytvořena', 'created_gateway' => 'Brána úspěšně vytvořena',
'deleted_gateway' => 'Brána úspěšně smazána', 'deleted_gateway' => 'Brána úspěšně smazána',
@ -2198,6 +2198,8 @@ $lang = array(
'encryption' => 'Šifrování', 'encryption' => 'Šifrování',
'mailgun_domain' => 'Mailgun Domain', 'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key', 'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Odeslat zkušební e-mail', 'send_test_email' => 'Odeslat zkušební e-mail',
'select_label' => 'Vybrat štítek', 'select_label' => 'Vybrat štítek',
'label' => 'Štítek', 'label' => 'Štítek',
@ -4848,6 +4850,7 @@ $lang = array(
'email_alignment' => 'Email Alignment', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', 'click_plus_to_create_record' => 'Click + to create a record',
@ -5100,6 +5103,8 @@ $lang = array(
'drop_files_here' => 'Drop files here', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Slet token', 'delete_token' => 'Slet token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Slet gateway', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Redigér gateway', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Gateway blev opdateret', 'updated_gateway' => 'Gateway blev opdateret',
'created_gateway' => 'Gateway blev oprettet', 'created_gateway' => 'Gateway blev oprettet',
'deleted_gateway' => 'Gateway blev slettet', 'deleted_gateway' => 'Gateway blev slettet',
@ -2196,6 +2196,8 @@ $lang = array(
'encryption' => 'Kryptering', 'encryption' => 'Kryptering',
'mailgun_domain' => 'Mailgun domæne', 'mailgun_domain' => 'Mailgun domæne',
'mailgun_private_key' => 'Mailgun privat nøgle', 'mailgun_private_key' => 'Mailgun privat nøgle',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test e-mail', 'send_test_email' => 'Send test e-mail',
'select_label' => 'Vælg Label', 'select_label' => 'Vælg Label',
'label' => 'Etiket', 'label' => 'Etiket',
@ -4846,6 +4848,7 @@ $lang = array(
'email_alignment' => 'e-mail justering', 'email_alignment' => 'e-mail justering',
'pdf_preview_location' => 'PDF eksempelplacering', 'pdf_preview_location' => 'PDF eksempelplacering',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Poststempel', 'postmark' => 'Poststempel',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Klik på + for at Opret en post', 'click_plus_to_create_record' => 'Klik på + for at Opret en post',
@ -5098,6 +5101,8 @@ $lang = array(
'drop_files_here' => 'Slip filer her', 'drop_files_here' => 'Slip filer her',
'upload_files' => 'Upload filer', 'upload_files' => 'Upload filer',
'download_e_invoice' => 'Download E- Faktura', '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', 'triangular_tax_info' => 'Trekantet transaktion inden for fællesskabet',
'intracommunity_tax_info' => 'Skattefri levering inden for samfundet', 'intracommunity_tax_info' => 'Skattefri levering inden for samfundet',
'reverse_tax_info' => 'Bemærk venligst, at denne levering er underlagt omvendt betalingspligt', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -175,7 +175,7 @@ $lang = array(
'payment_gateway' => 'Zahlungs-Gateway', 'payment_gateway' => 'Zahlungs-Gateway',
'gateway_id' => 'Zahlungsanbieter', 'gateway_id' => 'Zahlungsanbieter',
'email_notifications' => 'E-Mail Benachrichtigungen', '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', 'email_paid' => 'Benachrichtigen, wenn eine Rechnung <strong>bezahlt</strong> wurde',
'site_updates' => 'Website-Aktualisierungen', 'site_updates' => 'Website-Aktualisierungen',
'custom_messages' => 'Benutzerdefinierte Nachrichten', 'custom_messages' => 'Benutzerdefinierte Nachrichten',
@ -241,16 +241,16 @@ $lang = array(
'confirmation_header' => 'Kontobestätigung', 'confirmation_header' => 'Kontobestätigung',
'confirmation_message' => 'Bitte klicken Sie auf den folgenden Link, um Ihr Konto zu bestätigen.', 'confirmation_message' => 'Bitte klicken Sie auf den folgenden Link, um Ihr Konto zu bestätigen.',
'invoice_subject' => 'Neue Rechnung :number von :account', '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_subject' => 'Zahlungseingang',
'payment_message' => 'Vielen Dank für Ihre Zahlung von :amount.', 'payment_message' => 'Vielen Dank für Ihre Zahlung von :amount.',
'email_salutation' => 'Sehr geehrte/r :name,', 'email_salutation' => 'Sehr geehrte/r :name,',
'email_signature' => 'Mit freundlichen Grüßen', 'email_signature' => 'Mit freundlichen Grüßen',
'email_from' => 'Das InvoiceNinja Team', '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_paid_subject' => 'Die Rechnung :invoice wurde von :client bezahlt.',
'notification_invoice_sent_subject' => 'Rechnung :invoice wurde an :client versendet.', '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_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_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.', 'notification_invoice_viewed' => 'Der Kunde :client hat sich die Rechnung :invoice über :amount angesehen.',
@ -281,7 +281,7 @@ $lang = array(
'field_value' => 'Feldwert', 'field_value' => 'Feldwert',
'edit' => 'Bearbeiten', 'edit' => 'Bearbeiten',
'set_name' => 'Den Firmennamen setzen', 'set_name' => 'Den Firmennamen setzen',
'view_as_recipient' => 'Als Empfänger betrachten', 'view_as_recipient' => 'Als Empfänger ansehen',
'product_library' => 'Produktbibliothek', 'product_library' => 'Produktbibliothek',
'product' => 'Produkt', 'product' => 'Produkt',
'products' => 'Produkte', 'products' => 'Produkte',
@ -322,9 +322,9 @@ $lang = array(
'email_quote' => 'Angebot per E-Mail senden', 'email_quote' => 'Angebot per E-Mail senden',
'clone_quote' => 'Als Angebot kopieren', 'clone_quote' => 'Als Angebot kopieren',
'convert_to_invoice' => 'In Rechnung umwandeln', 'convert_to_invoice' => 'In Rechnung umwandeln',
'view_invoice' => 'Rechnung anschauen', 'view_invoice' => 'Rechnung ansehen',
'view_client' => 'Kunde anschauen', 'view_client' => 'Kunde ansehen',
'view_quote' => 'Angebot anschauen', 'view_quote' => 'Angebot ansehen',
'updated_quote' => 'Angebot erfolgreich aktualisiert', 'updated_quote' => 'Angebot erfolgreich aktualisiert',
'created_quote' => 'Angebot erfolgreich erstellt', 'created_quote' => 'Angebot erfolgreich erstellt',
'cloned_quote' => 'Angebot erfolgreich dupliziert', 'cloned_quote' => 'Angebot erfolgreich dupliziert',
@ -335,10 +335,10 @@ $lang = array(
'deleted_quotes' => ':count Angebote erfolgreich gelöscht', 'deleted_quotes' => ':count Angebote erfolgreich gelöscht',
'converted_to_invoice' => 'Angebot erfolgreich in Rechnung umgewandelt', 'converted_to_invoice' => 'Angebot erfolgreich in Rechnung umgewandelt',
'quote_subject' => 'Neues Angebot :number von :account', 'quote_subject' => 'Neues Angebot :number von :account',
'quote_message' => 'Klicken Sie auf den folgenden Link um das Angebot über :amount anzuschauen.', 'quote_message' => 'Klicken Sie auf den folgenden Link um das Angebot für Sie über :amount anzusehen.',
'quote_link_message' => 'Um das Angebot anzuschauen, bitte auf den folgenden Link klicken:', '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_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_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.', 'notification_quote_viewed' => 'Der folgende Kunde :client hat sich das Angebot :client über :amount angesehen.',
'session_expired' => 'Ihre Sitzung ist abgelaufen.', 'session_expired' => 'Ihre Sitzung ist abgelaufen.',
@ -461,9 +461,9 @@ $lang = array(
'edit_token' => 'Token bearbeiten', 'edit_token' => 'Token bearbeiten',
'delete_token' => 'Token löschen', 'delete_token' => 'Token löschen',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Zahlungsanbieter hinzufügen',
'delete_gateway' => 'Zahlungsanbieter löschen', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Zahlungsanbieter bearbeiten', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Zahlungsanbieter aktualisiert', 'updated_gateway' => 'Zahlungsanbieter aktualisiert',
'created_gateway' => 'Zahlungsanbieter erfolgreich hinzugefügt', 'created_gateway' => 'Zahlungsanbieter erfolgreich hinzugefügt',
'deleted_gateway' => 'Zahlungsanbieter erfolgreich gelöscht', 'deleted_gateway' => 'Zahlungsanbieter erfolgreich gelöscht',
@ -737,7 +737,7 @@ $lang = array(
'activity_4' => ':user erstellte Rechnung :invoice', 'activity_4' => ':user erstellte Rechnung :invoice',
'activity_5' => ':user aktualisierte Rechnung :invoice', 'activity_5' => ':user aktualisierte Rechnung :invoice',
'activity_6' => ':user mailte Rechnung :invoice für :client an :contact', '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_8' => ':user archivierte Rechnung :invoice',
'activity_9' => ':user löschte 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', '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_18' => ':user erstellte Angebot :quote',
'activity_19' => ':user aktualisierte Angebot :quote', 'activity_19' => ':user aktualisierte Angebot :quote',
'activity_20' => ':user mailte Angebot :quote für :client an :contact', '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_22' => ':user archiviertes Angebot :quote',
'activity_23' => ':user löschte Angebot :quote', 'activity_23' => ':user löschte Angebot :quote',
'activity_24' => ':user stellte Angebot :quote wieder her', '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.', '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', '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.', '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.', 'invoice_message_button' => 'Um Ihre Rechnung über :amount anzusehen, klicken Sie die Schaltfläche unten.',
'quote_message_button' => 'Um Ihr Angebot über :amount zu sehen, 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_message_button' => 'Vielen Dank für Ihre Zahlung von :amount.',
'payment_type_direct_debit' => 'Überweisung', 'payment_type_direct_debit' => 'Überweisung',
'bank_accounts' => 'Kreditkarten & Banken', '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', 'encryption' => 'Verschlüsselung',
'mailgun_domain' => 'Mailgun Domäne', 'mailgun_domain' => 'Mailgun Domäne',
'mailgun_private_key' => 'Mailgun privater Schlüssel', 'mailgun_private_key' => 'Mailgun privater Schlüssel',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Test-E-Mail verschicken', 'send_test_email' => 'Test-E-Mail verschicken',
'select_label' => 'Bezeichnung wählen', 'select_label' => 'Bezeichnung wählen',
'label' => 'Label', 'label' => 'Label',
@ -4849,6 +4851,7 @@ https://invoiceninja.github.io/docs/migration/#troubleshooting',
'email_alignment' => 'E-Mail Ausrichtung', 'email_alignment' => 'E-Mail Ausrichtung',
'pdf_preview_location' => 'PDF Vorschau Ort', 'pdf_preview_location' => 'PDF Vorschau Ort',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Klicke + um einen Eintrag hinzuzufügen', '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', 'drop_files_here' => 'Datei hier hineinziehen',
'upload_files' => 'Dateien hochladen', 'upload_files' => 'Dateien hochladen',
'download_e_invoice' => 'E-Rechnung herunterladen', 'download_e_invoice' => 'E-Rechnung herunterladen',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'innergemeinschaftliches Dreiecksgeschäft', 'triangular_tax_info' => 'innergemeinschaftliches Dreiecksgeschäft',
'intracommunity_tax_info' => 'Steuerfreie innergemeinschaftliche Lieferung', 'intracommunity_tax_info' => 'Steuerfreie innergemeinschaftliche Lieferung',
'reverse_tax_info' => 'Steuerschuldnerschaft des 'reverse_tax_info' => 'Steuerschuldnerschaft des
@ -5255,9 +5260,19 @@ Leistungsempfängers',
'payment_type_help' => 'Setze die Standard <b>manuelle Zahlungsmethode</b>.', 'payment_type_help' => 'Setze die Standard <b>manuelle Zahlungsmethode</b>.',
'quote_valid_until_help' => 'The number of days that the quote is valid for', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Zahlen in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Διαγραφή Διακριτικού', 'delete_token' => 'Διαγραφή Διακριτικού',
'token' => 'Διακριτικό', 'token' => 'Διακριτικό',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Διαγραφή Πύλης Πληρωμών (Gateway)', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Επεξεργασία Πύλης Πληρωμών (Gateway)', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Επιτυχής ενημέρωση πύλης πληρωμών (Gateway)', 'updated_gateway' => 'Επιτυχής ενημέρωση πύλης πληρωμών (Gateway)',
'created_gateway' => 'Επιτυχής δημιουργία πύλης πληρωμών (Gateway)', 'created_gateway' => 'Επιτυχής δημιουργία πύλης πληρωμών (Gateway)',
'deleted_gateway' => 'Επιτυχής διαγραφή πύλης πληρωμών (Gateway)', 'deleted_gateway' => 'Επιτυχής διαγραφή πύλης πληρωμών (Gateway)',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => 'Κρυπτογράφηση', 'encryption' => 'Κρυπτογράφηση',
'mailgun_domain' => 'Όνομα χώρου Mailgun', 'mailgun_domain' => 'Όνομα χώρου Mailgun',
'mailgun_private_key' => 'Ιδιωτικό Κλειδί Mailgun', 'mailgun_private_key' => 'Ιδιωτικό Κλειδί Mailgun',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Αποστολή δοκιμαστικού email', 'send_test_email' => 'Αποστολή δοκιμαστικού email',
'select_label' => 'Επιλογή Ετικέτας', 'select_label' => 'Επιλογή Ετικέτας',
'label' => 'Ετικέτα', 'label' => 'Ετικέτα',
@ -4847,6 +4849,7 @@ $lang = array(
'email_alignment' => 'Email Alignment', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', 'click_plus_to_create_record' => 'Click + to create a record',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => 'Drop files here', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Eliminar Token', 'delete_token' => 'Eliminar Token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Eliminar Gateway', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Editar Gateway', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Gateway actualizado con éxito', 'updated_gateway' => 'Gateway actualizado con éxito',
'created_gateway' => 'Gateway creado con éxito', 'created_gateway' => 'Gateway creado con éxito',
'deleted_gateway' => 'Gateway eliminado con éxito', 'deleted_gateway' => 'Gateway eliminado con éxito',
@ -2196,6 +2196,8 @@ $lang = array(
'encryption' => 'Encripción', 'encryption' => 'Encripción',
'mailgun_domain' => 'Dominio de Mailgun', 'mailgun_domain' => 'Dominio de Mailgun',
'mailgun_private_key' => 'Llave Privada 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', 'send_test_email' => 'Enviar correo de prueba',
'select_label' => 'Seleccionar Etiqueta', 'select_label' => 'Seleccionar Etiqueta',
'label' => 'Etiqueta', 'label' => 'Etiqueta',
@ -4846,6 +4848,7 @@ $lang = array(
'email_alignment' => 'Alineación de correo electrónico', 'email_alignment' => 'Alineación de correo electrónico',
'pdf_preview_location' => 'Ubicación de vista previa de PDF', 'pdf_preview_location' => 'Ubicación de vista previa de PDF',
'mailgun' => 'Pistola de correo', 'mailgun' => 'Pistola de correo',
'brevo' => 'Brevo',
'postmark' => 'Matasellos', 'postmark' => 'Matasellos',
'microsoft' => 'microsoft', 'microsoft' => 'microsoft',
'click_plus_to_create_record' => 'Haga clic en + para crear un registro', 'click_plus_to_create_record' => 'Haga clic en + para crear un registro',
@ -5098,6 +5101,8 @@ $lang = array(
'drop_files_here' => 'Suelte archivos aquí', 'drop_files_here' => 'Suelte archivos aquí',
'upload_files' => 'Subir archivos', 'upload_files' => 'Subir archivos',
'download_e_invoice' => 'Descargar factura electrónica', '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', 'triangular_tax_info' => 'Transacción triangular intracomunitaria',
'intracommunity_tax_info' => 'Entrega intracomunitaria libre de impuestos', 'intracommunity_tax_info' => 'Entrega intracomunitaria libre de impuestos',
'reverse_tax_info' => 'Tenga en cuenta que este suministro está sujeto a inversión de cargo.', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Eliminar Token', 'delete_token' => 'Eliminar Token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Eliminar Pasarela', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Editar Pasarela', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Pasarela actualizada correctamente', 'updated_gateway' => 'Pasarela actualizada correctamente',
'created_gateway' => 'Pasarela creada correctamente', 'created_gateway' => 'Pasarela creada correctamente',
'deleted_gateway' => 'Pasarela eliminada 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', 'encryption' => 'Encriptación',
'mailgun_domain' => 'Dominio Mailgun', 'mailgun_domain' => 'Dominio Mailgun',
'mailgun_private_key' => 'Mailgun Private Key', 'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Enviar email de prueba', 'send_test_email' => 'Enviar email de prueba',
'select_label' => 'Seleccionar etiqueta', 'select_label' => 'Seleccionar etiqueta',
'label' => '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', 'email_alignment' => 'Alineación de correo electrónico',
'pdf_preview_location' => 'Ubicación de vista previa de PDF', 'pdf_preview_location' => 'Ubicación de vista previa de PDF',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Haga clic en + para crear un registro', '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í', 'drop_files_here' => 'Suelte archivos aquí',
'upload_files' => 'Subir archivos', 'upload_files' => 'Subir archivos',
'download_e_invoice' => 'Descarga Factura Electrónica', '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', 'triangular_tax_info' => 'Transacción triangular intracomunitaria',
'intracommunity_tax_info' => 'Entrega intracomunitaria libre de impuestos', 'intracommunity_tax_info' => 'Entrega intracomunitaria libre de impuestos',
'reverse_tax_info' => 'Tenga en cuenta que este suministro está sujeto a inversión de cargo.', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -462,8 +462,8 @@ $lang = array(
'delete_token' => 'Kustuta Token', 'delete_token' => 'Kustuta Token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Kustuta Lüüs', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Muuda Lüüsi', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Makselahendus uuendatud', 'updated_gateway' => 'Makselahendus uuendatud',
'created_gateway' => 'Makselahendus edukalt loodud', 'created_gateway' => 'Makselahendus edukalt loodud',
'deleted_gateway' => 'Makeslahendus edukalt kustutatud', 'deleted_gateway' => 'Makeslahendus edukalt kustutatud',
@ -508,7 +508,7 @@ $lang = array(
'duplicate_post' => 'Hoiatus: eelmine leht esitati kaks korda. Teist ettepanekut eirati.', 'duplicate_post' => 'Hoiatus: eelmine leht esitati kaks korda. Teist ettepanekut eirati.',
'view_documentation' => 'Vaata dokumentatsiooni', 'view_documentation' => 'Vaata dokumentatsiooni',
'app_title' => 'Free Online Invoicing', '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', 'rows' => 'rida',
'www' => 'www', 'www' => 'www',
'logo' => 'Logo', 'logo' => 'Logo',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => 'Krüpteering', 'encryption' => 'Krüpteering',
'mailgun_domain' => 'Mailgun Domeen', 'mailgun_domain' => 'Mailgun Domeen',
'mailgun_private_key' => 'Mailgun Privaatvõti', 'mailgun_private_key' => 'Mailgun Privaatvõti',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Saada test e-kiri', 'send_test_email' => 'Saada test e-kiri',
'select_label' => 'Vali Silt', 'select_label' => 'Vali Silt',
'label' => 'Silt', 'label' => 'Silt',
@ -4847,6 +4849,7 @@ $lang = array(
'email_alignment' => 'Email Alignment', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', 'click_plus_to_create_record' => 'Click + to create a record',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => 'Drop files here', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Delete Token', 'delete_token' => 'Delete Token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Delete Gateway', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Gateway', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Successfully updated gateway', 'updated_gateway' => 'Successfully updated gateway',
'created_gateway' => 'Successfully created gateway', 'created_gateway' => 'Successfully created gateway',
'deleted_gateway' => 'Successfully deleted gateway', 'deleted_gateway' => 'Successfully deleted gateway',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => 'Encryption', 'encryption' => 'Encryption',
'mailgun_domain' => 'Mailgun Domain', 'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key', 'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test email', 'send_test_email' => 'Send test email',
'select_label' => 'Select Label', 'select_label' => 'Select Label',
'label' => 'Label', 'label' => 'Label',
@ -4847,6 +4849,7 @@ $lang = array(
'email_alignment' => 'Email Alignment', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', 'click_plus_to_create_record' => 'Click + to create a record',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => 'Drop files here', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Poista token', 'delete_token' => 'Poista token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Poista maksunvälittäjä', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Muokkaa maksunvälittäjää', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Maksunvälittäjä päivitetty onnistuneesti', 'updated_gateway' => 'Maksunvälittäjä päivitetty onnistuneesti',
'created_gateway' => 'Maksunvälittäjä luotu onnistuneesti', 'created_gateway' => 'Maksunvälittäjä luotu onnistuneesti',
'deleted_gateway' => 'Maksunvälittäjä poistettu 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', 'encryption' => 'Encryption',
'mailgun_domain' => 'Mailgun Domain', 'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key', 'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'lähetä testisähköposti', 'send_test_email' => 'lähetä testisähköposti',
'select_label' => 'Valitse kenttä', 'select_label' => 'Valitse kenttä',
'label' => 'Label', 'label' => 'Label',
@ -4847,6 +4849,7 @@ Kun saat summat, palaa tälle maksutapasivulle ja klikkaa "Saata loppuun todenta
'email_alignment' => 'Email Alignment', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', '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', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Supprimer ce jeton', 'delete_token' => 'Supprimer ce jeton',
'token' => 'Jeton', 'token' => 'Jeton',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Supprimer la passerelle', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Éditer la passerelle', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Passerelle mise à jour avec succès', 'updated_gateway' => 'Passerelle mise à jour avec succès',
'created_gateway' => 'Passerelle créée avec succès', 'created_gateway' => 'Passerelle créée avec succès',
'deleted_gateway' => 'Passerelle supprimé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', 'encryption' => 'Chiffrement',
'mailgun_domain' => 'Domaine Mailgun', 'mailgun_domain' => 'Domaine Mailgun',
'mailgun_private_key' => 'Mailgun Private Key', 'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Envoyer un courriel de test', 'send_test_email' => 'Envoyer un courriel de test',
'select_label' => 'Sélectionnez le label', 'select_label' => 'Sélectionnez le label',
'label' => 'Intitulé', 'label' => 'Intitulé',
@ -4847,6 +4849,7 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
'email_alignment' => 'Alignement des e-mails', 'email_alignment' => 'Alignement des e-mails',
'pdf_preview_location' => 'Emplacement de prévisualisation PDF', 'pdf_preview_location' => 'Emplacement de prévisualisation PDF',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Cachet de la poste', 'postmark' => 'Cachet de la poste',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Cliquez sur + pour créer un enregistrement', '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', 'drop_files_here' => 'Déposez les fichiers ici',
'upload_files' => 'Télécharger des fichiers', 'upload_files' => 'Télécharger des fichiers',
'download_e_invoice' => 'Télécharger la facture électronique', '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', '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', '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', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Supprimer le jeton', 'delete_token' => 'Supprimer le jeton',
'token' => 'Jeton', 'token' => 'Jeton',
'add_gateway' => 'Ajouter une passerelle de paiement', 'add_gateway' => 'Ajouter une passerelle de paiement',
'delete_gateway' => 'Supprimer la passerelle', 'delete_gateway' => 'Supprimer la passerelle de paiement1',
'edit_gateway' => 'Éditer la passerelle', 'edit_gateway' => 'Éditer la passerelle de paiement',
'updated_gateway' => 'La passerelle a été mise à jour', 'updated_gateway' => 'La passerelle a été mise à jour',
'created_gateway' => 'La passerelle a été créée', 'created_gateway' => 'La passerelle a été créée',
'deleted_gateway' => 'La passerelle a été supprimé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', 'purchase_order_items' => 'Articles du bon d\'achat',
'csv_rows_length' => 'Aucune donnée dans ce fichier CSV', 'csv_rows_length' => 'Aucune donnée dans ce fichier CSV',
'accept_payments_online' => 'Accepter les paiements en ligne', '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', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Supprimer le jeton', 'delete_token' => 'Supprimer le jeton',
'token' => 'Jeton', 'token' => 'Jeton',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Supprimer la passerelle', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Éditer la passerelle', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'La passerelle a été mise à jour avec succès', 'updated_gateway' => 'La passerelle a été mise à jour avec succès',
'created_gateway' => 'La passerelle a été créée 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', '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', 'encryption' => 'Cryptage',
'mailgun_domain' => 'Domaine Mailgun', 'mailgun_domain' => 'Domaine Mailgun',
'mailgun_private_key' => 'Clé privée 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', 'send_test_email' => 'Envoyer un courriel test',
'select_label' => 'Sélectionnez le libellé', 'select_label' => 'Sélectionnez le libellé',
'label' => 'Libellé', 'label' => 'Libellé',
@ -4844,6 +4846,7 @@ Lorsque les montant apparaîtront sur votre relevé, veuillez revenir sur cette
'email_alignment' => 'Email Alignment', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Cliquez sur + pour créer un enregistrement', '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', 'drop_files_here' => 'Déposez les fichiers ici',
'upload_files' => 'Téléverser les fichiers', 'upload_files' => 'Téléverser les fichiers',
'download_e_invoice' => 'Télécharger la facture électronique', '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', 'triangular_tax_info' => 'Transaction triangulaire intracommunautaire',
'intracommunity_tax_info' => 'Livraison intracommunautaire hors taxes', 'intracommunity_tax_info' => 'Livraison intracommunautaire hors taxes',
'reverse_tax_info' => 'Veuillez noter que cette fourniture est soumise à l&#39;autoliquidation', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -459,8 +459,8 @@ $lang = array(
'delete_token' => 'מחיקת טוקן', 'delete_token' => 'מחיקת טוקן',
'token' => 'טוקן', 'token' => 'טוקן',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'מחיקת Gateway', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'עריכת Gateway', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Gateway עודכן בהצלחה', 'updated_gateway' => 'Gateway עודכן בהצלחה',
'created_gateway' => 'Gateway נוצר בהצלחה', 'created_gateway' => 'Gateway נוצר בהצלחה',
'deleted_gateway' => 'Gateway נמחק', 'deleted_gateway' => 'Gateway נמחק',
@ -2195,6 +2195,8 @@ $lang = array(
'encryption' => 'Encryption', 'encryption' => 'Encryption',
'mailgun_domain' => 'Mailgun Domain', 'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key', 'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test email', 'send_test_email' => 'Send test email',
'select_label' => 'Select Label', 'select_label' => 'Select Label',
'label' => 'Label', 'label' => 'Label',
@ -4845,6 +4847,7 @@ $lang = array(
'email_alignment' => 'יישור אימייל', 'email_alignment' => 'יישור אימייל',
'pdf_preview_location' => 'מיקום תצוגה מקדימה של PDF', 'pdf_preview_location' => 'מיקום תצוגה מקדימה של PDF',
'mailgun' => 'דואר רובה', 'mailgun' => 'דואר רובה',
'brevo' => 'Brevo',
'postmark' => 'חוֹתֶמֶת דוֹאַר', 'postmark' => 'חוֹתֶמֶת דוֹאַר',
'microsoft' => 'מיקרוסופט', 'microsoft' => 'מיקרוסופט',
'click_plus_to_create_record' => 'לחץ על + כדי ליצור רשומה', 'click_plus_to_create_record' => 'לחץ על + כדי ליצור רשומה',
@ -5097,6 +5100,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' => 'עסקה משולשת תוך קהילתית', 'triangular_tax_info' => 'עסקה משולשת תוך קהילתית',
'intracommunity_tax_info' => 'משלוח תוך קהילתי ללא מס', 'intracommunity_tax_info' => 'משלוח תוך קהילתי ללא מס',
'reverse_tax_info' => 'לידיעתך, אספקה זו כפופה לחיוב הפוך', 'reverse_tax_info' => 'לידיעתך, אספקה זו כפופה לחיוב הפוך',
@ -5251,7 +5256,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Obriši token', 'delete_token' => 'Obriši token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Obriši usmjernik', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Uredi usmjernik', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Uspješno ažuriran usmjernik', 'updated_gateway' => 'Uspješno ažuriran usmjernik',
'created_gateway' => 'Uspješno kreiran usmjernik', 'created_gateway' => 'Uspješno kreiran usmjernik',
'deleted_gateway' => 'Uspješno obrisan usmjernik', 'deleted_gateway' => 'Uspješno obrisan usmjernik',
@ -2198,6 +2198,8 @@ Nevažeći kontakt email',
'encryption' => 'Encryption', 'encryption' => 'Encryption',
'mailgun_domain' => 'Mailgun Domain', 'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key', 'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test email', 'send_test_email' => 'Send test email',
'select_label' => 'Select Label', 'select_label' => 'Select Label',
'label' => 'Label', 'label' => 'Label',
@ -4848,6 +4850,7 @@ Nevažeći kontakt email',
'email_alignment' => 'Email Alignment', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', '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', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -454,8 +454,8 @@ $lang = array(
'delete_token' => 'Token törlése', 'delete_token' => 'Token törlése',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Szolgáltató törlése', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Szolgáltató szerkesztése', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Szolgáltató sikeresen frissítve', 'updated_gateway' => 'Szolgáltató sikeresen frissítve',
'created_gateway' => 'Szolgáltató sikeresen létrehozva', 'created_gateway' => 'Szolgáltató sikeresen létrehozva',
'deleted_gateway' => 'Szolgáltató sikeresen törölve', 'deleted_gateway' => 'Szolgáltató sikeresen törölve',
@ -2181,6 +2181,8 @@ adva :date',
'encryption' => 'Titkosítás', 'encryption' => 'Titkosítás',
'mailgun_domain' => 'Mailgun tartomány', 'mailgun_domain' => 'Mailgun tartomány',
'mailgun_private_key' => 'Mailgun privát kulcs', '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', 'send_test_email' => 'Teszt e-mail küldése',
'select_label' => 'Címke kiválasztása', 'select_label' => 'Címke kiválasztása',
'label' => 'Címke', 'label' => 'Címke',
@ -4831,6 +4833,7 @@ adva :date',
'email_alignment' => 'email igazítása', 'email_alignment' => 'email igazítása',
'pdf_preview_location' => 'PDF-előnézet helye', 'pdf_preview_location' => 'PDF-előnézet helye',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'létrehozás klikkeléssel (+)', 'click_plus_to_create_record' => 'létrehozás klikkeléssel (+)',
@ -5083,6 +5086,8 @@ adva :date',
'drop_files_here' => 'Dobja ide a fájlokat', 'drop_files_here' => 'Dobja ide a fájlokat',
'upload_files' => 'Fájlok feltöltése', 'upload_files' => 'Fájlok feltöltése',
'download_e_invoice' => 'E-számla letö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ó', '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', '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', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Elimina Token', 'delete_token' => 'Elimina Token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Elimina Gateway', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Modifica Gateway', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Piattaforma aggiornata con successo', 'updated_gateway' => 'Piattaforma aggiornata con successo',
'created_gateway' => 'Gateway creato correttamente', 'created_gateway' => 'Gateway creato correttamente',
'deleted_gateway' => 'Piattaforma eliminata correttamente', 'deleted_gateway' => 'Piattaforma eliminata correttamente',
@ -2188,6 +2188,8 @@ $lang = array(
'encryption' => 'Crittografia', 'encryption' => 'Crittografia',
'mailgun_domain' => 'Dominio mailgun', 'mailgun_domain' => 'Dominio mailgun',
'mailgun_private_key' => 'Chiave privata Mailgun', 'mailgun_private_key' => 'Chiave privata Mailgun',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Invia email di test', 'send_test_email' => 'Invia email di test',
'select_label' => 'Seleziona etichetta', 'select_label' => 'Seleziona etichetta',
'label' => 'Etichetta', 'label' => 'Etichetta',
@ -4838,6 +4840,7 @@ $lang = array(
'email_alignment' => 'Allineamento e-mail', 'email_alignment' => 'Allineamento e-mail',
'pdf_preview_location' => 'Posizione anteprima PDF', 'pdf_preview_location' => 'Posizione anteprima PDF',
'mailgun' => 'Pistola postale', 'mailgun' => 'Pistola postale',
'brevo' => 'Brevo',
'postmark' => 'Timbro postale', 'postmark' => 'Timbro postale',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Fare clic su + per creare un record', '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', 'drop_files_here' => 'Rilascia i file qui',
'upload_files' => 'Caricare files', 'upload_files' => 'Caricare files',
'download_e_invoice' => 'Scarica E- Fattura', 'download_e_invoice' => 'Scarica E- Fattura',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Transazione triangolare intracomunitaria', 'triangular_tax_info' => 'Transazione triangolare intracomunitaria',
'intracommunity_tax_info' => 'Consegna intracomunitaria esente da imposte', 'intracommunity_tax_info' => 'Consegna intracomunitaria esente da imposte',
'reverse_tax_info' => 'Si prega di Nota che questa fornitura è soggetta a inversione contabile', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'トークンを削除', 'delete_token' => 'トークンを削除',
'token' => 'トークン', 'token' => 'トークン',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'ゲートウェイを削除', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'ゲートウェイを編集', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'ゲートウェイを更新しました。', 'updated_gateway' => 'ゲートウェイを更新しました。',
'created_gateway' => 'ゲートウェイを追加しました。', 'created_gateway' => 'ゲートウェイを追加しました。',
'deleted_gateway' => 'ゲートウェイを削除しました。', 'deleted_gateway' => 'ゲートウェイを削除しました。',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => 'Encryption', 'encryption' => 'Encryption',
'mailgun_domain' => 'Mailgun Domain', 'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key', 'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test email', 'send_test_email' => 'Send test email',
'select_label' => 'Select Label', 'select_label' => 'Select Label',
'label' => 'Label', 'label' => 'Label',
@ -4847,6 +4849,7 @@ $lang = array(
'email_alignment' => 'Email Alignment', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', 'click_plus_to_create_record' => 'Click + to create a record',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => 'Drop files here', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -454,8 +454,8 @@ $lang = array(
'delete_token' => 'លុបថូខឹន', 'delete_token' => 'លុបថូខឹន',
'token' => 'សញ្ញាសម្ងាត់', 'token' => 'សញ្ញាសម្ងាត់',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'លុបច្រកផ្លូវ', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'កែសម្រួលច្រកផ្លូវ', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'បានធ្វើបច្ចុប្បន្នភាពច្រកផ្លូវដោយជោគជ័យ', 'updated_gateway' => 'បានធ្វើបច្ចុប្បន្នភាពច្រកផ្លូវដោយជោគជ័យ',
'created_gateway' => 'បានបង្កើតច្រកផ្លូវដោយជោគជ័យ', 'created_gateway' => 'បានបង្កើតច្រកផ្លូវដោយជោគជ័យ',
'deleted_gateway' => 'បានលុបច្រកចេញដោយជោគជ័យ', 'deleted_gateway' => 'បានលុបច្រកចេញដោយជោគជ័យ',
@ -2177,6 +2177,8 @@ $lang = array(
'encryption' => 'ការអ៊ិនគ្រីប', 'encryption' => 'ការអ៊ិនគ្រីប',
'mailgun_domain' => 'ដែន Mailgun', 'mailgun_domain' => 'ដែន Mailgun',
'mailgun_private_key' => 'សោឯកជន Mailgun', 'mailgun_private_key' => 'សោឯកជន Mailgun',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'ផ្ញើអ៊ីមែលសាកល្បង', 'send_test_email' => 'ផ្ញើអ៊ីមែលសាកល្បង',
'select_label' => 'ជ្រើសរើសស្លាក', 'select_label' => 'ជ្រើសរើសស្លាក',
'label' => 'ស្លាក​សញ្ញា', 'label' => 'ស្លាក​សញ្ញា',
@ -4827,6 +4829,7 @@ $lang = array(
'email_alignment' => 'ការតម្រឹមអ៊ីមែល', 'email_alignment' => 'ការតម្រឹមអ៊ីមែល',
'pdf_preview_location' => 'ទីតាំងមើលជាមុន PDF', 'pdf_preview_location' => 'ទីតាំងមើលជាមុន PDF',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'ប្រៃសណីយ៍', 'postmark' => 'ប្រៃសណីយ៍',
'microsoft' => 'ក្រុមហ៊ុន Microsoft', 'microsoft' => 'ក្រុមហ៊ុន Microsoft',
'click_plus_to_create_record' => 'ចុច + ដើម្បីបង្កើតកំណត់ត្រា', 'click_plus_to_create_record' => 'ចុច + ដើម្បីបង្កើតកំណត់ត្រា',
@ -5079,6 +5082,8 @@ $lang = array(
'drop_files_here' => 'ទម្លាក់ឯកសារនៅទីនេះ', 'drop_files_here' => 'ទម្លាក់ឯកសារនៅទីនេះ',
'upload_files' => 'ផ្ទុកឯកសារឡើង', 'upload_files' => 'ផ្ទុកឯកសារឡើង',
'download_e_invoice' => 'ទាញយក E-Invoice', 'download_e_invoice' => 'ទាញយក E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'ប្រតិបត្តិការត្រីកោណក្នុងសហគមន៍', 'triangular_tax_info' => 'ប្រតិបត្តិការត្រីកោណក្នុងសហគមន៍',
'intracommunity_tax_info' => 'ការដឹកជញ្ជូនក្នុងសហគមន៍ដោយមិនគិតពន្ធ', 'intracommunity_tax_info' => 'ការដឹកជញ្ជូនក្នុងសហគមន៍ដោយមិនគិតពន្ធ',
'reverse_tax_info' => 'សូមចំណាំថាការផ្គត់ផ្គង់នេះគឺត្រូវគិតថ្លៃបញ្ច្រាស', 'reverse_tax_info' => 'សូមចំណាំថាការផ្គត់ផ្គង់នេះគឺត្រូវគិតថ្លៃបញ្ច្រាស',
@ -5233,7 +5238,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'ລຶບໂທເຄັນ', 'delete_token' => 'ລຶບໂທເຄັນ',
'token' => 'ໂທເຄັນ', 'token' => 'ໂທເຄັນ',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'ລຶບປະຕູທາງອອກ', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'ແກ້ໄຂປະຕູ', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'ປັບປຸງປະຕູທາງສຳເລັດແລ້ວ', 'updated_gateway' => 'ປັບປຸງປະຕູທາງສຳເລັດແລ້ວ',
'created_gateway' => 'ສ້າງປະຕູທາງສຳເລັດແລ້ວ', 'created_gateway' => 'ສ້າງປະຕູທາງສຳເລັດແລ້ວ',
'deleted_gateway' => 'ລຶບປະຕູສຳເລັດແລ້ວ', 'deleted_gateway' => 'ລຶບປະຕູສຳເລັດແລ້ວ',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => 'ການເຂົ້າລະຫັດ', 'encryption' => 'ການເຂົ້າລະຫັດ',
'mailgun_domain' => 'Mailgun Domain', 'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'ກະແຈສ່ວນຕົວຂອງ Mailgun', 'mailgun_private_key' => 'ກະແຈສ່ວນຕົວຂອງ Mailgun',
'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', 'pdf_preview_location' => 'ສະຖານທີ່ເບິ່ງຕົວຢ່າງ PDF',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'ເຄື່ອງໝາຍໄປສະນີ', 'postmark' => 'ເຄື່ອງໝາຍໄປສະນີ',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'ຄລິກ + ເພື່ອສ້າງບັນທຶກ', 'click_plus_to_create_record' => 'ຄລິກ + ເພື່ອສ້າງບັນທຶກ',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => 'ວາງໄຟລ໌ໄວ້ບ່ອນນີ້', 'drop_files_here' => 'ວາງໄຟລ໌ໄວ້ບ່ອນນີ້',
'upload_files' => 'ອັບໂຫລດໄຟລ໌', 'upload_files' => 'ອັບໂຫລດໄຟລ໌',
'download_e_invoice' => 'ດາວໂຫລດ E-Invoice', 'download_e_invoice' => 'ດາວໂຫລດ E-Invoice',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'ທຸລະກຳສາມຫຼ່ຽມພາຍໃນຊຸມຊົນ', 'triangular_tax_info' => 'ທຸລະກຳສາມຫຼ່ຽມພາຍໃນຊຸມຊົນ',
'intracommunity_tax_info' => 'ການຈັດສົ່ງພາຍໃນຊຸມຊົນທີ່ບໍ່ມີພາສີ', 'intracommunity_tax_info' => 'ການຈັດສົ່ງພາຍໃນຊຸມຊົນທີ່ບໍ່ມີພາສີ',
'reverse_tax_info' => 'ກະລຸນາສັງເກດວ່າການສະຫນອງນີ້ແມ່ນຂຶ້ນກັບການຄິດຄ່າປີ້ນກັບ', 'reverse_tax_info' => 'ກະລຸນາສັງເກດວ່າການສະຫນອງນີ້ແມ່ນຂຶ້ນກັບການຄິດຄ່າປີ້ນກັບ',
@ -5253,7 +5258,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Delete Token', 'delete_token' => 'Delete Token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Delete Gateway', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Gateway', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Successfully updated gateway', 'updated_gateway' => 'Successfully updated gateway',
'created_gateway' => 'Successfully created gateway', 'created_gateway' => 'Successfully created gateway',
'deleted_gateway' => 'Successfully deleted gateway', 'deleted_gateway' => 'Successfully deleted gateway',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => 'Encryption', 'encryption' => 'Encryption',
'mailgun_domain' => 'Mailgun Domain', 'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key', 'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test email', 'send_test_email' => 'Send test email',
'select_label' => 'Select Label', 'select_label' => 'Select Label',
'label' => 'Label', 'label' => 'Label',
@ -4847,6 +4849,7 @@ $lang = array(
'email_alignment' => 'Email Alignment', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Spustelėkite +, kad sukurtumėte įrašą', 'click_plus_to_create_record' => 'Spustelėkite +, kad sukurtumėte įrašą',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => 'Drop files here', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Delete Token', 'delete_token' => 'Delete Token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Delete Gateway', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edit Gateway', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Successfully updated gateway', 'updated_gateway' => 'Successfully updated gateway',
'created_gateway' => 'Successfully created gateway', 'created_gateway' => 'Successfully created gateway',
'deleted_gateway' => 'Successfully deleted gateway', 'deleted_gateway' => 'Successfully deleted gateway',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => 'Encryption', 'encryption' => 'Encryption',
'mailgun_domain' => 'Mailgun Domain', 'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key', 'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test email', 'send_test_email' => 'Send test email',
'select_label' => 'Select Label', 'select_label' => 'Select Label',
'label' => 'Label', 'label' => 'Label',
@ -4847,6 +4849,7 @@ $lang = array(
'email_alignment' => 'Email Alignment', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', 'click_plus_to_create_record' => 'Click + to create a record',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => 'Drop files here', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -462,8 +462,8 @@ $lang = array(
'delete_token' => 'Избриши токен', 'delete_token' => 'Избриши токен',
'token' => 'Токен', 'token' => 'Токен',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Избриши Платен портал', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Уреди Платен портал', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Успешно ажурирање на платен портал', 'updated_gateway' => 'Успешно ажурирање на платен портал',
'created_gateway' => 'Успешно креиран платен портал', 'created_gateway' => 'Успешно креиран платен портал',
'deleted_gateway' => 'Успешно избришан платен портал', 'deleted_gateway' => 'Успешно избришан платен портал',
@ -2198,6 +2198,8 @@ $lang = array(
'encryption' => 'Енкрипција', 'encryption' => 'Енкрипција',
'mailgun_domain' => 'Mailgun домен', 'mailgun_domain' => 'Mailgun домен',
'mailgun_private_key' => 'Mailgun приватен клуч', 'mailgun_private_key' => 'Mailgun приватен клуч',
'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 @@ $lang = array(
'email_alignment' => 'Email Alignment', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', 'click_plus_to_create_record' => 'Click + to create a record',
@ -5100,6 +5103,8 @@ $lang = array(
'drop_files_here' => 'Drop files here', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Slett Token', 'delete_token' => 'Slett Token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Slett Tilbyder', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Rediger Tilbyder', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Suksessfullt oppdatert tilbyder', 'updated_gateway' => 'Suksessfullt oppdatert tilbyder',
'created_gateway' => 'Suksessfullt opprettet tilbyder', 'created_gateway' => 'Suksessfullt opprettet tilbyder',
'deleted_gateway' => 'Suksessfullt slettet tilbyder', 'deleted_gateway' => 'Suksessfullt slettet tilbyder',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => 'Kryptering', 'encryption' => 'Kryptering',
'mailgun_domain' => 'Mailgun Domene', 'mailgun_domain' => 'Mailgun Domene',
'mailgun_private_key' => 'Mailgun Privat Nøkkel', 'mailgun_private_key' => 'Mailgun Privat Nøkkel',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test-e-post', 'send_test_email' => 'Send test-e-post',
'select_label' => 'Select Label', 'select_label' => 'Select Label',
'label' => 'Label', 'label' => 'Label',
@ -4847,6 +4849,7 @@ $lang = array(
'email_alignment' => 'Email Alignment', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', 'click_plus_to_create_record' => 'Click + to create a record',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => 'Drop files here', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Verwijder token', 'delete_token' => 'Verwijder token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Gateway verwijderen', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Wijzig gateway', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'De gateway is gewijzigd', 'updated_gateway' => 'De gateway is gewijzigd',
'created_gateway' => 'De gateway is aangemaakt', 'created_gateway' => 'De gateway is aangemaakt',
'deleted_gateway' => 'De gateway is verwijderd', 'deleted_gateway' => 'De gateway is verwijderd',
@ -2194,6 +2194,8 @@ Kom terug naar deze betalingsmethode pagina zodra u de bedragen heeft ontvangen
'encryption' => 'Encryptie', 'encryption' => 'Encryptie',
'mailgun_domain' => 'Mailgun domein', 'mailgun_domain' => 'Mailgun domein',
'mailgun_private_key' => 'Mailgun privésleutel', 'mailgun_private_key' => 'Mailgun privésleutel',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Verstuur test-e-mail', 'send_test_email' => 'Verstuur test-e-mail',
'select_label' => 'Selecteer label', 'select_label' => 'Selecteer label',
'label' => 'Label', 'label' => 'Label',
@ -4847,6 +4849,7 @@ Email: :email<b><br><b>',
'email_alignment' => 'E-mailuitlijning', 'email_alignment' => 'E-mailuitlijning',
'pdf_preview_location' => 'Pdf-voorbeeldlocatie', 'pdf_preview_location' => 'Pdf-voorbeeldlocatie',
'mailgun' => 'Postpistool', 'mailgun' => 'Postpistool',
'brevo' => 'Brevo',
'postmark' => 'Poststempel', 'postmark' => 'Poststempel',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Klik op + om een record te maken', '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', 'drop_files_here' => 'Zet hier bestanden neer',
'upload_files' => 'Upload bestanden', 'upload_files' => 'Upload bestanden',
'download_e_invoice' => 'E-factuur downloaden', 'download_e_invoice' => 'E-factuur downloaden',
'download_e_credit' => 'Download E-Credit',
'download_e_quote' => 'Download E-Quote',
'triangular_tax_info' => 'Intracommunautaire driehoekstransactie', 'triangular_tax_info' => 'Intracommunautaire driehoekstransactie',
'intracommunity_tax_info' => 'Belastingvrije intracommunautaire levering', 'intracommunity_tax_info' => 'Belastingvrije intracommunautaire levering',
'reverse_tax_info' => 'Houd er rekening mee dat op deze levering een verleggingsregeling van toepassing is', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -459,8 +459,8 @@ Przykłady dynamicznych zmiennych:
'delete_token' => 'Usuń token', 'delete_token' => 'Usuń token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Usuń dostawcę płatności', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edytuj dostawcę płatności', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Dostawca płatności został zaktualizowany.', 'updated_gateway' => 'Dostawca płatności został zaktualizowany.',
'created_gateway' => 'Dostawca płatności został utworzony', 'created_gateway' => 'Dostawca płatności został utworzony',
'deleted_gateway' => 'Dostawca płatności został usunięty', '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', 'encryption' => 'Szyfrowanie',
'mailgun_domain' => 'Domena Mailgun', 'mailgun_domain' => 'Domena Mailgun',
'mailgun_private_key' => 'Klucz prywatny Mailgun', 'mailgun_private_key' => 'Klucz prywatny Mailgun',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Wyślij wiadomość testową', 'send_test_email' => 'Wyślij wiadomość testową',
'select_label' => 'Wybierz etykietę', 'select_label' => 'Wybierz etykietę',
'label' => 'Etykieta', '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', 'email_alignment' => 'Wyrównanie treści e-maili',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', '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', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Excluir Token', 'delete_token' => 'Excluir Token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Excluir Gateway', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Editar Gateway', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Gateway atualizado com sucesso', 'updated_gateway' => 'Gateway atualizado com sucesso',
'created_gateway' => 'Gateway criado com sucesso', 'created_gateway' => 'Gateway criado com sucesso',
'deleted_gateway' => 'Gateway excluído 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', 'encryption' => 'Encriptação',
'mailgun_domain' => 'Domínio do Mailgun', 'mailgun_domain' => 'Domínio do Mailgun',
'mailgun_private_key' => 'Chave Privada 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', 'send_test_email' => 'Enviar email de teste',
'select_label' => 'Selecione o Rótulo', 'select_label' => 'Selecione o Rótulo',
'label' => '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', 'email_alignment' => 'Alinhamento de e-mail',
'pdf_preview_location' => 'Local de visualização do PDF', 'pdf_preview_location' => 'Local de visualização do PDF',
'mailgun' => 'Arma postal', 'mailgun' => 'Arma postal',
'brevo' => 'Brevo',
'postmark' => 'Carimbo postal', 'postmark' => 'Carimbo postal',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Clique em + para criar um registro', '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', 'drop_files_here' => 'Solte os arquivos aqui',
'upload_files' => 'Fazer upload de arquivos', 'upload_files' => 'Fazer upload de arquivos',
'download_e_invoice' => 'Baixar fatura eletrônica', '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', 'triangular_tax_info' => 'Transação triangular intracomunitária',
'intracommunity_tax_info' => 'Entrega intracomunitária isenta de impostos', 'intracommunity_tax_info' => 'Entrega intracomunitária isenta de impostos',
'reverse_tax_info' => 'Observe que este fornecimento está sujeito a cobrança reversa', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Apagar Símbolo', 'delete_token' => 'Apagar Símbolo',
'token' => 'Símbolo', 'token' => 'Símbolo',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Apagar Terminal', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Editar Terminal', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Terminal atualizado', 'updated_gateway' => 'Terminal atualizado',
'created_gateway' => 'Terminal Criado', 'created_gateway' => 'Terminal Criado',
'deleted_gateway' => 'Terminal Apagado', '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', 'encryption' => 'Encriptação',
'mailgun_domain' => 'Domínio do Mailgun', 'mailgun_domain' => 'Domínio do Mailgun',
'mailgun_private_key' => 'Chave Privada 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', 'send_test_email' => 'Enviar e-mail de teste',
'select_label' => 'Selecione a Legenda', 'select_label' => 'Selecione a Legenda',
'label' => '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', 'email_alignment' => 'Alinhamento de e-mail',
'pdf_preview_location' => 'Local de visualização do PDF', 'pdf_preview_location' => 'Local de visualização do PDF',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Carimbo postal', 'postmark' => 'Carimbo postal',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Clique em + para criar um registro', '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', 'drop_files_here' => 'Solte os arquivos aqui',
'upload_files' => 'Fazer upload de arquivos', 'upload_files' => 'Fazer upload de arquivos',
'download_e_invoice' => 'Baixar fatura eletrônica', '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', 'triangular_tax_info' => 'Transação triangular intracomunitária',
'intracommunity_tax_info' => 'Entrega intracomunitária isenta de impostos', 'intracommunity_tax_info' => 'Entrega intracomunitária isenta de impostos',
'reverse_tax_info' => 'Observe que este fornecimento está sujeito a cobrança reversa', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Șterge Token', 'delete_token' => 'Șterge Token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Șterge Gateway', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Modifică Gateway', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Gateway actualizat', 'updated_gateway' => 'Gateway actualizat',
'created_gateway' => 'Gateway creat', 'created_gateway' => 'Gateway creat',
'deleted_gateway' => 'Gateway șters', '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', 'encryption' => 'Criptare',
'mailgun_domain' => 'Domeniu Mailgun', 'mailgun_domain' => 'Domeniu Mailgun',
'mailgun_private_key' => 'Cheie privată 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', 'send_test_email' => 'Trimiteți un email de test',
'select_label' => 'Selectați eticheta', 'select_label' => 'Selectați eticheta',
'label' => 'Etichetă', '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', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', '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', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Удалить права', 'delete_token' => 'Удалить права',
'token' => 'Права', 'token' => 'Права',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Удалить платежный шлюз', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Изменить платёжный шлюз', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Платёжный шлюз успешно обновлён', 'updated_gateway' => 'Платёжный шлюз успешно обновлён',
'created_gateway' => 'Платёжный шлюз успешно создан', 'created_gateway' => 'Платёжный шлюз успешно создан',
'deleted_gateway' => 'Платёжный шлюз успешно удалён', 'deleted_gateway' => 'Платёжный шлюз успешно удалён',
@ -2198,6 +2198,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', 'label' => 'Label',
@ -4848,6 +4850,7 @@ $lang = array(
'email_alignment' => 'Email Alignment', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', 'click_plus_to_create_record' => 'Click + to create a record',
@ -5100,6 +5103,8 @@ $lang = array(
'drop_files_here' => 'Drop files here', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Zmazať token', 'delete_token' => 'Zmazať token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Odstrániť bránu', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Upraviť bránu', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Brána úspešne upravená', 'updated_gateway' => 'Brána úspešne upravená',
'created_gateway' => 'Brána úspešne vytvorená', 'created_gateway' => 'Brána úspešne vytvorená',
'deleted_gateway' => 'Brána úspešne odstránená', 'deleted_gateway' => 'Brána úspešne odstránená',
@ -2184,6 +2184,8 @@ $lang = array(
'encryption' => 'Šifrovanie', 'encryption' => 'Šifrovanie',
'mailgun_domain' => 'Doména Mailgun', 'mailgun_domain' => 'Doména Mailgun',
'mailgun_private_key' => 'Privátny kľúč 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', 'send_test_email' => 'Odoslať skúšobný email',
'select_label' => 'Vybrať štítok', 'select_label' => 'Vybrať štítok',
'label' => 'Štítok', 'label' => 'Štítok',
@ -4834,6 +4836,7 @@ $lang = array(
'email_alignment' => 'Zarovnanie e-mailov', 'email_alignment' => 'Zarovnanie e-mailov',
'pdf_preview_location' => 'Umiestnenie náhľadu PDF', 'pdf_preview_location' => 'Umiestnenie náhľadu PDF',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Poštová pečiatka', 'postmark' => 'Poštová pečiatka',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Kliknutím na + vytvoríte záznam', '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', 'drop_files_here' => 'Sem presuňte súbory',
'upload_files' => 'Nahrať súbory', 'upload_files' => 'Nahrať súbory',
'download_e_invoice' => 'Stiahnite si elektronickú faktúru', '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', 'triangular_tax_info' => 'Trojstranná transakcia v rámci Spoločenstva',
'intracommunity_tax_info' => 'Dodanie v rámci Spoločenstva oslobodené od dane', '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', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Odstrani žeton', 'delete_token' => 'Odstrani žeton',
'token' => 'Žeton', 'token' => 'Žeton',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Odstrani prehod', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Uredi prehod', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Prehod uspešno obnovljen', 'updated_gateway' => 'Prehod uspešno obnovljen',
'created_gateway' => 'Prehod uspešno ustvarjen', 'created_gateway' => 'Prehod uspešno ustvarjen',
'deleted_gateway' => 'Prehod uspešno odstranjen', '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', 'encryption' => 'Enkripcija',
'mailgun_domain' => 'Mailgun domena', 'mailgun_domain' => 'Mailgun domena',
'mailgun_private_key' => 'Mailgun zasebni ključ', 'mailgun_private_key' => 'Mailgun zasebni ključ',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Pošlji testno sporočilo', 'send_test_email' => 'Pošlji testno sporočilo',
'select_label' => 'Izberi oznako', 'select_label' => 'Izberi oznako',
'label' => 'Oznaka', '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', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'Lokacija predlogleda', 'pdf_preview_location' => 'Lokacija predlogleda',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', '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', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Fshi Tokenin', 'delete_token' => 'Fshi Tokenin',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Fshi kanalin e pagesës', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Edito kanalin e pagesës', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Kanali i pagesës është perditesuar me sukses', 'updated_gateway' => 'Kanali i pagesës është perditesuar me sukses',
'created_gateway' => 'Kanali i pagesës është krijuar me sukses', 'created_gateway' => 'Kanali i pagesës është krijuar me sukses',
'deleted_gateway' => 'Kanali i pagesës është fshirë 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', 'encryption' => 'Encryption',
'mailgun_domain' => 'Mailgun Domain', 'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key', 'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test email', 'send_test_email' => 'Send test email',
'select_label' => 'Select Label', 'select_label' => 'Select Label',
'label' => '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', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', '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', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Obriši token', 'delete_token' => 'Obriši token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Obriši kanal plaćanja', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Uredi kanal plaćanja', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Uspešno ažuriran kanal', 'updated_gateway' => 'Uspešno ažuriran kanal',
'created_gateway' => 'Uspešno kreiran kanal', 'created_gateway' => 'Uspešno kreiran kanal',
'deleted_gateway' => 'Uspešno obrisan 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', 'encryption' => 'Enkripcija',
'mailgun_domain' => 'Mailgun Domen', 'mailgun_domain' => 'Mailgun Domen',
'mailgun_private_key' => 'Mailgun privatni ključ', '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', 'send_test_email' => 'Pošalji probnu e-poštu',
'select_label' => 'Izaberi oznaku', 'select_label' => 'Izaberi oznaku',
'label' => 'Oznaka', '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', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', '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', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Ta bort token', 'delete_token' => 'Ta bort token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Ta bort gateway', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Ändra gateway', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Gateway uppdaterad', 'updated_gateway' => 'Gateway uppdaterad',
'created_gateway' => 'Gateway skapad', 'created_gateway' => 'Gateway skapad',
'deleted_gateway' => 'Gateway borttagen', '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', 'encryption' => 'Kryptering',
'mailgun_domain' => 'Mailgun Domain', 'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key', 'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Skicka test meddelande', 'send_test_email' => 'Skicka test meddelande',
'select_label' => 'Välj rubrik', 'select_label' => 'Välj rubrik',
'label' => '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', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', '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', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'ลบ Token', 'delete_token' => 'ลบ Token',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'ลบช่องทางการชำระเงิน', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'แก้ไขช่องทางการชำระเงิน', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'อัปเดทช่องทางการชำระเงินเรียบร้อย', 'updated_gateway' => 'อัปเดทช่องทางการชำระเงินเรียบร้อย',
'created_gateway' => 'สร้างช่องทางการชำระเงินเรียบร้อย', 'created_gateway' => 'สร้างช่องทางการชำระเงินเรียบร้อย',
'deleted_gateway' => 'ลบช่องทางกา่รชำระเงินเรียบร้อย', 'deleted_gateway' => 'ลบช่องทางกา่รชำระเงินเรียบร้อย',
@ -2198,6 +2198,8 @@ $lang = array(
'encryption' => 'การเข้ารหัส', 'encryption' => 'การเข้ารหัส',
'mailgun_domain' => 'Mailgun Domain', 'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key', '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 @@ $lang = array(
'email_alignment' => 'Email Alignment', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', 'click_plus_to_create_record' => 'Click + to create a record',
@ -5100,6 +5103,8 @@ $lang = array(
'drop_files_here' => 'Drop files here', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => 'Token Sil', 'delete_token' => 'Token Sil',
'token' => 'Token', 'token' => 'Token',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => 'Ödeme Sistemi Sil', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => 'Ödeme Sistemi Düzenle', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => 'Ödeme Sistemi başarıyla güncellendi', 'updated_gateway' => 'Ödeme Sistemi başarıyla güncellendi',
'created_gateway' => 'Ödeme Sistemi başarıyla oluşturuldu', 'created_gateway' => 'Ödeme Sistemi başarıyla oluşturuldu',
'deleted_gateway' => 'Ödeme Sistemi başarıyla silindi', 'deleted_gateway' => 'Ödeme Sistemi başarıyla silindi',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => 'Encryption', 'encryption' => 'Encryption',
'mailgun_domain' => 'Mailgun Domain', 'mailgun_domain' => 'Mailgun Domain',
'mailgun_private_key' => 'Mailgun Private Key', 'mailgun_private_key' => 'Mailgun Private Key',
'brevo_domain' => 'Brevo Domain',
'brevo_private_key' => 'Brevo Private Key',
'send_test_email' => 'Send test email', 'send_test_email' => 'Send test email',
'select_label' => 'Select Label', 'select_label' => 'Select Label',
'label' => 'Label', 'label' => 'Label',
@ -4847,6 +4849,7 @@ $lang = array(
'email_alignment' => 'Email Alignment', 'email_alignment' => 'Email Alignment',
'pdf_preview_location' => 'PDF Preview Location', 'pdf_preview_location' => 'PDF Preview Location',
'mailgun' => 'Mailgun', 'mailgun' => 'Mailgun',
'brevo' => 'Brevo',
'postmark' => 'Postmark', 'postmark' => 'Postmark',
'microsoft' => 'Microsoft', 'microsoft' => 'Microsoft',
'click_plus_to_create_record' => 'Click + to create a record', 'click_plus_to_create_record' => 'Click + to create a record',
@ -5099,6 +5102,8 @@ $lang = array(
'drop_files_here' => 'Drop files here', 'drop_files_here' => 'Drop files here',
'upload_files' => 'Upload Files', 'upload_files' => 'Upload Files',
'download_e_invoice' => 'Download E-Invoice', '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', 'triangular_tax_info' => 'Intra-community triangular transaction',
'intracommunity_tax_info' => 'Tax-free intra-community delivery', 'intracommunity_tax_info' => 'Tax-free intra-community delivery',
'reverse_tax_info' => 'Please note that this supply is subject to reverse charge', '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', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -461,8 +461,8 @@ $lang = array(
'delete_token' => '刪除安全代碼', 'delete_token' => '刪除安全代碼',
'token' => '安全代碼', 'token' => '安全代碼',
'add_gateway' => 'Add Payment Gateway', 'add_gateway' => 'Add Payment Gateway',
'delete_gateway' => '刪除閘道資料', 'delete_gateway' => 'Delete Payment Gateway',
'edit_gateway' => '編輯閘道', 'edit_gateway' => 'Edit Payment Gateway',
'updated_gateway' => '更新閘道資料成功', 'updated_gateway' => '更新閘道資料成功',
'created_gateway' => '建立閘道資料成功', 'created_gateway' => '建立閘道資料成功',
'deleted_gateway' => '刪除閘道資料成功', 'deleted_gateway' => '刪除閘道資料成功',
@ -2197,6 +2197,8 @@ $lang = array(
'encryption' => '加密', 'encryption' => '加密',
'mailgun_domain' => 'Mailgun 網域', 'mailgun_domain' => 'Mailgun 網域',
'mailgun_private_key' => 'Mailgun 私密金鑰', 'mailgun_private_key' => 'Mailgun 私密金鑰',
'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 預覽位置', 'pdf_preview_location' => 'PDF 預覽位置',
'mailgun' => '郵件槍', 'mailgun' => '郵件槍',
'brevo' => 'Brevo',
'postmark' => '郵戳', 'postmark' => '郵戳',
'microsoft' => '微軟', 'microsoft' => '微軟',
'click_plus_to_create_record' => '點擊+建立記錄', 'click_plus_to_create_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' => '社區內三角交易', 'triangular_tax_info' => '社區內三角交易',
'intracommunity_tax_info' => '免稅社區內配送', 'intracommunity_tax_info' => '免稅社區內配送',
'reverse_tax_info' => '請注意,此電源可能會反向充電', 'reverse_tax_info' => '請注意,此電源可能會反向充電',
@ -5253,7 +5258,17 @@ $lang = array(
'expense_payment_type_help' => 'The default expense payment type to be used', 'expense_payment_type_help' => 'The default expense payment type to be used',
'paylater' => 'Pay in 4', 'paylater' => 'Pay in 4',
'payment_provider' => 'Payment Provider', '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; return $lang;

View File

@ -46,6 +46,24 @@ class PurchaseOrderTest extends TestCase
$this->makeTestData(); $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() public function testPurchaseOrderHistory()
{ {
event(new PurchaseOrderWasUpdated($this->purchase_order, $this->company, Ninja::eventVars($this->company, $this->user))); event(new PurchaseOrderWasUpdated($this->purchase_order, $this->company, Ninja::eventVars($this->company, $this->user)));