updated translations
This commit is contained in:
@@ -12,11 +12,16 @@ return [
|
||||
'quantity' => 'Množství',
|
||||
'price' => 'Cena',
|
||||
'sub_total' => 'Mezisoučet',
|
||||
'discount' => 'Discount',
|
||||
'tax_total' => 'Dph celkem',
|
||||
'total' => 'Celkem',
|
||||
|
||||
'item_name' => 'Jméno položky | Jméno položek',
|
||||
|
||||
'show_discount' => ':discount% Discount',
|
||||
'add_discount' => 'Add Discount',
|
||||
'discount_desc' => 'of subtotal',
|
||||
|
||||
'payment_due' => 'Splatnost platby',
|
||||
'amount_due' => 'Dlužná částka',
|
||||
'paid' => 'Zaplaceno',
|
||||
|
||||
@@ -26,6 +26,7 @@ return [
|
||||
'companies' => 'Společnost | Společnosti',
|
||||
'profits' => 'Zisk | Zisky',
|
||||
'taxes' => 'Daň | Daně',
|
||||
'logos' => 'Logo|Logos',
|
||||
'pictures' => 'Obrázek | Obrázky',
|
||||
'types' => 'Typ | Typy',
|
||||
'payment_methods' => 'Způsob platby | Způsoby platby',
|
||||
@@ -36,6 +37,7 @@ return [
|
||||
'updates' => 'Aktualizace | Aktualizace',
|
||||
'numbers' => 'Číslo | Čísla',
|
||||
'statuses' => 'Stav | Stav',
|
||||
'others' => 'Other|Others',
|
||||
|
||||
'dashboard' => 'Ovládací panel',
|
||||
'banking' => 'Bankovnictví',
|
||||
|
||||
@@ -12,11 +12,16 @@ return [
|
||||
'quantity' => 'Množství',
|
||||
'price' => 'Cena',
|
||||
'sub_total' => 'Mezisoučet',
|
||||
'discount' => 'Discount',
|
||||
'tax_total' => 'Daň celkem',
|
||||
'total' => 'Celkem',
|
||||
|
||||
'item_name' => 'Jméno položky | Jméno položek',
|
||||
|
||||
'show_discount' => ':discount% Discount',
|
||||
'add_discount' => 'Add Discount',
|
||||
'discount_desc' => 'of subtotal',
|
||||
|
||||
'payment_due' => 'Splatnost platby',
|
||||
'paid' => 'Zaplaceno',
|
||||
'histories' => 'Historie',
|
||||
|
||||
@@ -10,10 +10,12 @@ return [
|
||||
'imported' => ':type importováno!',
|
||||
],
|
||||
'error' => [
|
||||
'payment_add' => 'Chyba: Nelze přidat platbu! Měli byste přidat částku.',
|
||||
'over_payment' => 'Error: Payment not added! Amount passes the total.',
|
||||
'not_user_company' => 'Chyba: nemůžeš provádět správu společností!',
|
||||
'customer' => 'Chyba: Nemůžeš vytvořit uživatele! :name používá tento email.',
|
||||
'customer' => 'Error: User not created! :name already uses this email address.',
|
||||
'no_file' => 'Chyba: Nebyl vybrán žádný soubor!',
|
||||
'last_category' => 'Error: Can not delete the last :type category!',
|
||||
'invalid_token' => 'Error: The token entered is invalid!',
|
||||
],
|
||||
'warning' => [
|
||||
'deleted' => 'Upozornění: Nemůžeš odstranit <b>:name</b> protože je spojená s :text.',
|
||||
|
||||
@@ -8,6 +8,7 @@ return [
|
||||
'new' => 'Nové',
|
||||
'top_free' => 'Nejlepší zdarma',
|
||||
'free' => 'ZDARMA',
|
||||
'search' => 'Search',
|
||||
'install' => 'Instalovat',
|
||||
'buy_now' => 'Koupit',
|
||||
'token_link' => '<a href="https://akaunting.com/tokens" target="_blank">Klikni sem</a> pro získání tokenu k API.',
|
||||
|
||||
20
resources/lang/cs-CZ/recurring.php
Normal file
20
resources/lang/cs-CZ/recurring.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'recurring' => 'Recurring',
|
||||
'every' => 'Every',
|
||||
'period' => 'Period',
|
||||
'times' => 'Times',
|
||||
'daily' => 'Daily',
|
||||
'weekly' => 'Weekly',
|
||||
'monthly' => 'Monthly',
|
||||
'yearly' => 'Yearly',
|
||||
'custom' => 'Custom',
|
||||
'days' => 'Day(s)',
|
||||
'weeks' => 'Week(s)',
|
||||
'months' => 'Month(s)',
|
||||
'years' => 'Year(s)',
|
||||
'message' => 'This is a recurring :type and the next :type will be automatically generated at :date',
|
||||
|
||||
];
|
||||
@@ -7,11 +7,24 @@ return [
|
||||
'this_quarter' => 'Aktuální čtvrtletí',
|
||||
'previous_quarter' => 'Předchozí čtvrtletí',
|
||||
'last_12_months' => 'Posledních 12 měsíců',
|
||||
'profit_loss' => 'Profit & Loss',
|
||||
'gross_profit' => 'Gross Profit',
|
||||
'net_profit' => 'Net Profit',
|
||||
'total_expenses' => 'Total Expenses',
|
||||
'net' => 'NET',
|
||||
|
||||
'summary' => [
|
||||
'income' => 'Přehled příjmů',
|
||||
'expense' => 'Přehled výdajů',
|
||||
'income_expense' => 'Příjmy vs Výdaje',
|
||||
'tax' => 'Tax Summary',
|
||||
],
|
||||
|
||||
'quarter' => [
|
||||
'1' => 'Jan-Mar',
|
||||
'2' => 'Apr-Jun',
|
||||
'3' => 'Jul-Sep',
|
||||
'4' => 'Oct-Dec',
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -21,6 +21,11 @@ return [
|
||||
'space' => 'Mezera ( )',
|
||||
],
|
||||
'timezone' => 'Časové pásmo',
|
||||
'percent' => [
|
||||
'title' => 'Percent (%) Position',
|
||||
'before' => 'Before Number',
|
||||
'after' => 'After Number',
|
||||
],
|
||||
],
|
||||
'invoice' => [
|
||||
'tab' => 'Faktura',
|
||||
|
||||
Reference in New Issue
Block a user