diff --git a/AGENTS.md b/AGENTS.md
index 828ceae42..9273974cc 100644
--- a/AGENTS.md
+++ b/AGENTS.md
@@ -4,10 +4,14 @@ This document provides guidance for AI agents working on the Open Source Point o
## Code Style
+- **PSR-12** enforced via PHP-CS-Fixer (config: `.php-cs-fixer.no-header.php`)
- Follow PHP CodeIgniter 4 coding standards
-- Run PHP-CS-Fixer before committing: `vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.no-header.php`
-- Write PHP 8.1+ compatible code with proper type declarations
-- Use PSR-12 naming conventions: `camelCase` for variables and functions, `PascalCase` for classes, `UPPER_CASE` for constants
+- `camelCase` for variables and methods; `PascalCase` for classes; `UPPER_CASE` for constants
+- PHP 8.2+ features acceptable (named arguments, enums, readonly properties)
+- Write PHP 8.2+ compatible code with proper type declarations
+- Views in `app/Views/errors/html/` are excluded from the fixer
+- Run fixer before committing: `vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.no-header.php`
+- **JavaScript**: use `const` for variables that are never reassigned, `let` for variables that are. Never use `var`.
## Development
@@ -33,8 +37,17 @@ This document provides guidance for AI agents working on the Open Source Point o
- Use CodeIgniter 4 framework patterns and helpers
- Sanitize user input; escape output using `esc()` helper
+## Localization
+
+- When adding new keys to language files, add the key to all `app/Language/*/` variants
+- **New keys must be inserted in alphabetical order** within the language array
+- Non-English files must use an empty string (`''`) as the value when no translation is provided — CodeIgniter automatically falls back to the default (`en`) language
+- Only `app/Language/en/` and `app/Language/en-GB/` should contain English strings
+- Plugin language files (`app/Plugins/*/Language/`) follow the same localization rules as `app/Language/`
+- Use `'` to encapsulate key and string values. If the value contains `'` then it should be escaped as `\'`
+
## Security
- Never commit secrets, credentials, or `.env` files
- Use parameterized queries to prevent SQL injection
-- Validate and sanitize all user input
\ No newline at end of file
+- Validate and sanitize all user input
diff --git a/app/Config/Autoload.php b/app/Config/Autoload.php
index 073b39aab..3ad1105cb 100644
--- a/app/Config/Autoload.php
+++ b/app/Config/Autoload.php
@@ -39,8 +39,7 @@ class Autoload extends AutoloadConfig
*/
public $psr4 = [
APP_NAMESPACE => APPPATH,
- 'Config' => APPPATH . 'Config',
- 'dompdf' => APPPATH . 'ThirdParty/dompdf/src'
+ 'Config' => APPPATH . 'Config'
];
/**
diff --git a/app/Controllers/Config.php b/app/Controllers/Config.php
index 956e69694..6fc4c01df 100644
--- a/app/Controllers/Config.php
+++ b/app/Controllers/Config.php
@@ -450,27 +450,38 @@ class Config extends Secure_Controller
*/
public function postSaveLocale(): ResponseInterface
{
+ $rules = [
+ 'payment_reference_code_min' => 'required|integer|greater_than[0]',
+ 'payment_reference_code_max' => 'required|integer|greater_than_equal_to[payment_reference_code_min]',
+ ];
+ if (!$this->validate($rules)) {
+ $errors = $this->validator->getErrors();
+ return $this->response->setJSON(['success' => false, 'message' => reset($errors)]);
+ }
+
$exploded = explode(":", $this->request->getPost('language'));
$currency_symbol = $this->request->getPost('currency_symbol');
$batch_save_data = [
- 'currency_symbol' => htmlspecialchars($currency_symbol ?? ''),
- 'currency_code' => $this->request->getPost('currency_code'),
- 'language_code' => $exploded[0],
- 'language' => $exploded[1],
- 'timezone' => $this->request->getPost('timezone'),
- 'dateformat' => $this->request->getPost('dateformat'),
- 'timeformat' => $this->request->getPost('timeformat'),
- 'thousands_separator' => $this->request->getPost('thousands_separator') != null,
- 'number_locale' => $this->request->getPost('number_locale'),
- 'currency_decimals' => $this->request->getPost('currency_decimals', FILTER_SANITIZE_NUMBER_INT),
- 'tax_decimals' => $this->request->getPost('tax_decimals', FILTER_SANITIZE_NUMBER_INT),
- 'quantity_decimals' => $this->request->getPost('quantity_decimals', FILTER_SANITIZE_NUMBER_INT),
- 'country_codes' => htmlspecialchars($this->request->getPost('country_codes')),
- 'payment_options_order' => $this->request->getPost('payment_options_order'),
- 'date_or_time_format' => $this->request->getPost('date_or_time_format') != null,
- 'cash_decimals' => $this->request->getPost('cash_decimals', FILTER_SANITIZE_NUMBER_INT),
- 'cash_rounding_code' => $this->request->getPost('cash_rounding_code'),
- 'financial_year' => $this->request->getPost('financial_year', FILTER_SANITIZE_NUMBER_INT)
+ 'currency_symbol' => htmlspecialchars($currency_symbol ?? ''),
+ 'currency_code' => $this->request->getPost('currency_code'),
+ 'language_code' => $exploded[0],
+ 'language' => $exploded[1],
+ 'timezone' => $this->request->getPost('timezone'),
+ 'dateformat' => $this->request->getPost('dateformat'),
+ 'timeformat' => $this->request->getPost('timeformat'),
+ 'thousands_separator' => $this->request->getPost('thousands_separator') != null,
+ 'number_locale' => $this->request->getPost('number_locale'),
+ 'currency_decimals' => $this->request->getPost('currency_decimals', FILTER_SANITIZE_NUMBER_INT),
+ 'tax_decimals' => $this->request->getPost('tax_decimals', FILTER_SANITIZE_NUMBER_INT),
+ 'quantity_decimals' => $this->request->getPost('quantity_decimals', FILTER_SANITIZE_NUMBER_INT),
+ 'country_codes' => htmlspecialchars($this->request->getPost('country_codes')),
+ 'payment_options_order' => $this->request->getPost('payment_options_order'),
+ 'payment_reference_code_min' => $this->request->getPost('payment_reference_code_min', FILTER_SANITIZE_NUMBER_INT),
+ 'payment_reference_code_max' => $this->request->getPost('payment_reference_code_max', FILTER_SANITIZE_NUMBER_INT),
+ 'date_or_time_format' => $this->request->getPost('date_or_time_format') != null,
+ 'cash_decimals' => $this->request->getPost('cash_decimals', FILTER_SANITIZE_NUMBER_INT),
+ 'cash_rounding_code' => $this->request->getPost('cash_rounding_code'),
+ 'financial_year' => $this->request->getPost('financial_year', FILTER_SANITIZE_NUMBER_INT)
];
$success = $this->appconfig->batch_save($batch_save_data);
@@ -1019,8 +1030,8 @@ class Config extends Secure_Controller
'work_order_enable' => $this->request->getPost('work_order_enable') != null,
'work_order_format' => $this->request->getPost('work_order_format'),
'last_used_work_order_number' => $this->request->getPost('last_used_work_order_number', FILTER_SANITIZE_NUMBER_INT),
- 'invoice_type' => Sale_lib::isValidInvoiceType($this->request->getPost('invoice_type'))
- ? $this->request->getPost('invoice_type')
+ 'invoice_type' => Sale_lib::isValidInvoiceType($this->request->getPost('invoice_type'))
+ ? $this->request->getPost('invoice_type')
: 'invoice'
];
@@ -1066,8 +1077,8 @@ class Config extends Secure_Controller
return $fieldType === 'first' ? 'name' : '';
}
- $allowed = $fieldType === 'first'
- ? Item::ALLOWED_SUGGESTIONS_COLUMNS
+ $allowed = $fieldType === 'first'
+ ? Item::ALLOWED_SUGGESTIONS_COLUMNS
: Item::ALLOWED_SUGGESTIONS_COLUMNS_WITH_EMPTY;
$fallback = $fieldType === 'first' ? 'name' : '';
diff --git a/app/Controllers/Giftcards.php b/app/Controllers/Giftcards.php
index 75899d8e8..68e954a3a 100644
--- a/app/Controllers/Giftcards.php
+++ b/app/Controllers/Giftcards.php
@@ -163,7 +163,7 @@ class Giftcards extends Secure_Controller
{
$existing_id = $this->request->getPost('giftcard_id', FILTER_SANITIZE_NUMBER_INT);
$giftcard_number = $this->request->getPost('giftcard_number', FILTER_SANITIZE_NUMBER_INT);
- $giftcard_id = $this->giftcard->get_giftcard_id($giftcard_number);
+ $giftcard_id = $this->giftcard->getGiftcardId($giftcard_number);
$success = ($giftcard_id == (int) $existing_id || !$giftcard_id );
return $this->response->setJSON($success ? 'true' : 'false');
diff --git a/app/Controllers/Login.php b/app/Controllers/Login.php
index 2139daef3..df88371b5 100644
--- a/app/Controllers/Login.php
+++ b/app/Controllers/Login.php
@@ -18,29 +18,40 @@ class Login extends BaseController
public Model $employee;
/**
- * @return RedirectResponse|string
+ * @return RedirectResponse|ResponseInterface|string
*/
- public function index(): string|RedirectResponse
+ public function index(): string|RedirectResponse|ResponseInterface
{
$this->employee = model(Employee::class);
if (!$this->employee->is_logged_in()) {
$migration = new MY_Migration(config('Migrations'));
$config = config(OSPOS::class)->settings;
- $gcaptcha_enabled = array_key_exists('gcaptcha_enable', $config)
+ $gcaptchaEnabled = array_key_exists('gcaptcha_enable', $config)
? $config['gcaptcha_enable']
: false;
- $migration->migrate_to_ci4();
+ $migration->migrateToCI4();
+
+ $currentVersion = MY_Migration::getCurrentVersion();
+
+ if ($currentVersion === null) {
+ return $this->response->setJSON([
+ 'success' => false,
+ 'message' => lang('Login.migration_error_connection')
+ ])->setStatusCode(503);
+ }
+
+ $latestVersion = $migration->getLatestMigration();
$validation = Services::validation();
$data = [
- 'has_errors' => false,
- 'is_new_install' => !(MY_Migration::get_current_version()),
- 'is_latest' => $migration->is_latest(),
- 'latest_version' => $migration->get_latest_migration(),
- 'gcaptcha_enabled' => $gcaptcha_enabled,
+ 'hasErrors' => false,
+ 'isNewInstall' => $currentVersion === 0,
+ 'isLatest' => $latestVersion === $currentVersion,
+ 'latestVersion' => $latestVersion,
+ 'gcaptchaEnabled' => $gcaptchaEnabled,
'config' => $config,
'validation' => $validation
];
@@ -49,7 +60,7 @@ class Login extends BaseController
return view('login', $data);
}
- if (!$data['is_latest'] || $data['is_new_install']) {
+ if (!$data['isLatest'] || $data['isNewInstall']) {
set_time_limit(3600);
$migration->setNamespace('App')->latest();
@@ -76,9 +87,38 @@ class Login extends BaseController
public function migrate(): ResponseInterface
{
+ $currentVersion = MY_Migration::getCurrentVersion();
+
+ if ($currentVersion === null) {
+ return $this->response->setJSON([
+ 'success' => false,
+ 'message' => lang('Login.migration_error_connection')
+ ])->setStatusCode(503);
+ }
+
+ // Only a confirmed empty database counts as a new install with no credentials to check.
+ $isNewInstall = $currentVersion === 0;
+
+ if (!$isNewInstall) {
+ $rules = ['username' => 'required|login_check[data]'];
+ $messages = [
+ 'username' => [
+ 'required' => lang('Login.required_username'),
+ 'login_check' => lang('Login.invalid_username_and_password'),
+ ]
+ ];
+
+ if (!$this->validate($rules, $messages)) {
+ return $this->response->setJSON([
+ 'success' => false,
+ 'message' => lang('Login.invalid_username_and_password')
+ ])->setStatusCode(401);
+ }
+ }
+
try {
$migration = new MY_Migration(config('Migrations'));
- $migration->migrate_to_ci4();
+ $migration->migrateToCI4();
set_time_limit(3600);
$migration->setNamespace('App')->latest();
diff --git a/app/Controllers/Sales.php b/app/Controllers/Sales.php
index 55c1a5c1c..2824a2bc0 100644
--- a/app/Controllers/Sales.php
+++ b/app/Controllers/Sales.php
@@ -69,7 +69,7 @@ class Sales extends Secure_Controller
public function getIndex(): ResponseInterface|string
{
$this->session->set('allow_temp_items', 1);
- return $this->_reload(); // TODO: Hungarian Notation
+ return $this->reload();
}
/**
@@ -242,7 +242,7 @@ class Sales extends Secure_Controller
}
}
- return $this->_reload();
+ return $this->reload();
}
/**
@@ -292,7 +292,7 @@ class Sales extends Secure_Controller
$this->sale_lib->empty_payments();
- return $this->_reload();
+ return $this->reload();
}
/**
@@ -310,7 +310,7 @@ class Sales extends Secure_Controller
};
$this->sale_lib->set_mode($mode);
- return $this->_reload();
+ return $this->reload();
}
@@ -344,7 +344,7 @@ class Sales extends Secure_Controller
public function postSetPaymentType(): ResponseInterface|string // TODO: This function does not appear to be called anywhere in the code.
{
$this->sale_lib->set_payment_type($this->request->getPost('selected_payment_type', FILTER_SANITIZE_FULL_SPECIAL_CHARS));
- return $this->_reload(); // TODO: Hungarian notation.
+ return $this->reload();
}
/**
@@ -394,88 +394,106 @@ class Sales extends Secure_Controller
{
$data = [];
$giftcard = model(Giftcard::class);
- $payment_type = $this->request->getPost('payment_type', FILTER_SANITIZE_FULL_SPECIAL_CHARS);
+ $paymentType = $this->request->getPost('payment_type', FILTER_SANITIZE_FULL_SPECIAL_CHARS);
- if ($payment_type !== lang('Sales.giftcard')) {
- $rules = ['amount_tendered' => 'trim|required|decimal_locale',];
- $messages = ['amount_tendered' => lang('Sales.must_enter_numeric')];
- } else {
- $rules = ['amount_tendered' => 'trim|required',];
+ if ($paymentType === lang('Sales.giftcard')) {
+ $rules = ['amount_tendered' => 'trim|required|integer']; //For giftcards, amount_tendered becomes the giftcard number which must be an integer
$messages = ['amount_tendered' => lang('Sales.must_enter_numeric_giftcard')];
+ } elseif (in_array($paymentType, get_reference_code_payment_types())) {
+ $min = (int)($this->config['payment_reference_code_min'] ?? 3);
+ $max = (int)($this->config['payment_reference_code_max'] ?? 20);
+ $rules = [
+ 'amount_tendered' => 'trim|required|decimal_locale',
+ 'reference_code' => "trim|required|alpha_numeric|min_length[$min]|max_length[$max]",
+ ];
+ $messages = [
+ 'amount_tendered' => [
+ 'required' => lang('Sales.must_enter_numeric'),
+ ],
+ 'reference_code' => [
+ 'required' => lang('Sales.must_enter_reference_code'),
+ 'alpha_numeric' => lang('Sales.reference_code_invalid_characters'),
+ 'min_length' => lang('Sales.reference_code_length_error'),
+ 'max_length' => lang('Sales.reference_code_length_error'),
+ ],
+ ];
+ } else {
+ $rules = ['amount_tendered' => 'trim|required|decimal_locale'];
+ $messages = ['amount_tendered' => lang('Sales.must_enter_numeric')];
}
if (!$this->validate($rules, $messages)) {
- $data['error'] = $payment_type === lang('Sales.giftcard')
- ? lang('Sales.must_enter_numeric_giftcard')
- : lang('Sales.must_enter_numeric');
+ $errors = $this->validator->getErrors();
+ $data['error'] = $errors ? reset($errors) : lang('Sales.must_enter_numeric');
} else {
- if ($payment_type === lang('Sales.giftcard')) {
- // In the case of giftcard payment the register input amount_tendered becomes the giftcard number
- $amount_tendered = parse_decimals($this->request->getPost('amount_tendered'));
- $giftcard_num = $amount_tendered;
+ if ($paymentType === lang('Sales.giftcard')) {
+ // For giftcard payments, the register input amount_tendered becomes the giftcard number
+ $amountTendered = parse_decimals($this->request->getPost('amount_tendered'));
+ $giftcardNumber = $amountTendered;
- $payments = $this->sale_lib->get_payments();
- $payment_type = $payment_type . ':' . $giftcard_num;
- $current_payments_with_giftcard = isset($payments[$payment_type]) ? $payments[$payment_type]['payment_amount'] : 0;
- $cur_giftcard_value = $giftcard->get_giftcard_value($giftcard_num);
- $cur_giftcard_customer = $giftcard->get_giftcard_customer($giftcard_num);
- $customer_id = $this->sale_lib->get_customer();
+ $payments = $this->sale_lib->getPayments();
+ $paymentType = $paymentType . ':' . $giftcardNumber;
+ $currentPaymentsWithGiftcard = isset($payments[$paymentType]) ? $payments[$paymentType]['payment_amount'] : 0;
+ $currentGiftcardValue = $giftcard->get_giftcard_value($giftcardNumber);
+ $currentGiftcardCustomer = $giftcard->get_giftcard_customer($giftcardNumber);
+ $customerId = $this->sale_lib->get_customer();
- if (isset($cur_giftcard_customer) && $cur_giftcard_customer != $customer_id && $cur_giftcard_customer != null) {
- $data['error'] = lang('Giftcards.cannot_use', [$giftcard_num]);
- } elseif (($cur_giftcard_value - $current_payments_with_giftcard) <= 0 && $this->sale_lib->get_mode() === 'sale') {
- $data['error'] = lang('Giftcards.remaining_balance', [$giftcard_num, $cur_giftcard_value]);
+ if (isset($currentGiftcardCustomer) && $currentGiftcardCustomer != $customerId && $currentGiftcardCustomer != null) {
+ $data['error'] = lang('Giftcards.cannot_use', [$giftcardNumber]);
+ } elseif (($currentGiftcardValue - $currentPaymentsWithGiftcard) <= 0 && $this->sale_lib->get_mode() === 'sale') {
+ $data['error'] = lang('Giftcards.remaining_balance', [$giftcardNumber, $currentGiftcardValue]);
} else {
- $new_giftcard_value = $giftcard->get_giftcard_value($giftcard_num) - $this->sale_lib->get_amount_due();
- $new_giftcard_value = max($new_giftcard_value, 0);
- $this->sale_lib->set_giftcard_remainder($new_giftcard_value);
- $new_giftcard_value = to_currency($new_giftcard_value);
- $data['warning'] = lang('Giftcards.remaining_balance', [$giftcard_num, $new_giftcard_value]);
- $amount_tendered = min($this->sale_lib->get_amount_due(), $giftcard->get_giftcard_value($giftcard_num));
+ $newGiftcardValue = $giftcard->get_giftcard_value($giftcardNumber) - $this->sale_lib->get_amount_due();
+ $newGiftcardValue = max($newGiftcardValue, 0);
+ $this->sale_lib->set_giftcard_remainder($newGiftcardValue);
+ $newGiftcardValue = to_currency($newGiftcardValue);
+ $data['warning'] = lang('Giftcards.remaining_balance', [$giftcardNumber, $newGiftcardValue]);
+ $amountTendered = min($this->sale_lib->get_amount_due(), $giftcard->get_giftcard_value($giftcardNumber));
- $this->sale_lib->add_payment($payment_type, $amount_tendered);
+ $this->sale_lib->addPayment($paymentType, $amountTendered);
}
- } elseif ($payment_type === lang('Sales.rewards')) {
- $customer_id = $this->sale_lib->get_customer();
- $package_id = $this->customer->get_info($customer_id)->package_id;
- if (!empty($package_id)) {
- $points = $this->customer->get_info($customer_id)->points;
+ } elseif ($paymentType === lang('Sales.rewards')) {
+ $customerId = $this->sale_lib->get_customer();
+ $packageId = $this->customer->get_info($customerId)->package_id;
+ if (!empty($packageId)) {
+ $points = $this->customer->get_info($customerId)->points;
$points = ($points == null ? 0 : $points);
- $payments = $this->sale_lib->get_payments();
- $current_payments_with_rewards = isset($payments[$payment_type]) ? $payments[$payment_type]['payment_amount'] : 0;
- $cur_rewards_value = $points;
+ $payments = $this->sale_lib->getPayments();
+ $currentPaymentsWithRewards = isset($payments[$paymentType]) ? $payments[$paymentType]['payment_amount'] : 0;
+ $curRewardsValue = $points;
- if (($cur_rewards_value - $current_payments_with_rewards) <= 0) {
- $data['error'] = lang('Sales.rewards_remaining_balance') . to_currency($cur_rewards_value);
+ if (($curRewardsValue - $currentPaymentsWithRewards) <= 0) {
+ $data['error'] = lang('Sales.rewards_remaining_balance') . to_currency($curRewardsValue);
} else {
- $new_reward_value = $points - $this->sale_lib->get_amount_due();
- $new_reward_value = max($new_reward_value, 0);
- $this->sale_lib->set_rewards_remainder($new_reward_value);
- $new_reward_value = str_replace('$', '\$', to_currency($new_reward_value));
- $data['warning'] = lang('Sales.rewards_remaining_balance') . $new_reward_value;
- $amount_tendered = min($this->sale_lib->get_amount_due(), $points);
+ $newRewardValue = $points - $this->sale_lib->get_amount_due();
+ $newRewardValue = max($newRewardValue, 0);
+ $this->sale_lib->set_rewards_remainder($newRewardValue);
+ $newRewardValue = str_replace('$', '\$', to_currency($newRewardValue));
+ $data['warning'] = lang('Sales.rewards_remaining_balance') . $newRewardValue;
+ $amountTendered = min($this->sale_lib->get_amount_due(), $points);
- $this->sale_lib->add_payment($payment_type, $amount_tendered);
+ $this->sale_lib->addPayment($paymentType, $amountTendered);
}
}
- } elseif ($payment_type === lang('Sales.cash')) {
- $amount_due = $this->sale_lib->get_total();
- $sales_total = $this->sale_lib->get_total(false);
- $amount_tendered = parse_decimals($this->request->getPost('amount_tendered'));
- $this->sale_lib->add_payment($payment_type, $amount_tendered);
- $cash_adjustment_amount = $amount_due - $sales_total;
- if ($cash_adjustment_amount <> 0) {
+ } elseif ($paymentType === lang('Sales.cash')) {
+ $amountDue = $this->sale_lib->get_total();
+ $salesTotal = $this->sale_lib->get_total(false);
+ $amountTendered = parse_decimals($this->request->getPost('amount_tendered'));
+ $this->sale_lib->addPayment($paymentType, $amountTendered);
+ $cashAdjustmentAmount = $amountDue - $salesTotal;
+ if ($cashAdjustmentAmount <> 0) {
$this->session->set('cash_mode', CASH_MODE_TRUE);
- $this->sale_lib->add_payment(lang('Sales.cash_adjustment'), $cash_adjustment_amount, CASH_ADJUSTMENT_TRUE);
+ $this->sale_lib->addPayment(lang('Sales.cash_adjustment'), $cashAdjustmentAmount, null, CASH_ADJUSTMENT_TRUE);
}
} else {
- $amount_tendered = parse_decimals($this->request->getPost('amount_tendered'));
- $this->sale_lib->add_payment($payment_type, $amount_tendered);
+ $amountTendered = parse_decimals($this->request->getPost('amount_tendered'));
+ $referenceCode = $this->request->getPost('reference_code');
+ $this->sale_lib->addPayment($paymentType, $amountTendered, $referenceCode);
}
}
- return $this->_reload($data);
+ return $this->reload($data);
}
/**
@@ -491,7 +509,7 @@ class Sales extends Secure_Controller
$this->sale_lib->delete_payment(base64url_decode($payment_id));
- return $this->_reload();
+ return $this->reload();
}
/**
@@ -571,7 +589,7 @@ class Sales extends Secure_Controller
}
}
- return $this->_reload($data);
+ return $this->reload($data);
}
/**
@@ -614,18 +632,19 @@ class Sales extends Secure_Controller
// Return mode legitimately uses negative quantities for refunds
if ($this->sale_lib->get_mode() != 'return' && $quantity < 0) {
$data['error'] = lang('Sales.negative_quantity_invalid');
- return $this->_reload($data);
+ return $this->reload($data);
}
// Business logic: discount bounds depend on discount_type and item values
if ($discount_type == PERCENT && $discount > 100) {
$data['error'] = lang('Sales.discount_percent_exceeds_100');
- return $this->_reload($data);
+ return $this->reload($data);
}
- if ($discount_type == FIXED && bccomp((string)$discount, bcmul((string)abs($quantity), (string)$price, 2), 2) > 0) {
+ $precision = totals_decimals();
+ if ($discount_type == FIXED && bccomp((string)$discount, bcmul((string)abs($quantity), (string)$price, $precision), $precision) > 0) {
$data['error'] = lang('Sales.discount_exceeds_item_total');
- return $this->_reload($data);
+ return $this->reload($data);
}
$item_location = $this->request->getPost('location', FILTER_SANITIZE_NUMBER_INT);
@@ -643,7 +662,7 @@ class Sales extends Secure_Controller
$data['error'] = $errors ? reset($errors) : lang('Sales.error_editing_item');
}
- return $this->_reload($data);
+ return $this->reload($data);
}
/**
@@ -660,7 +679,7 @@ class Sales extends Secure_Controller
$this->sale_lib->empty_payments();
- return $this->_reload();
+ return $this->reload();
}
/**
@@ -678,7 +697,7 @@ class Sales extends Secure_Controller
$this->sale_lib->clear_quote_number();
$this->sale_lib->remove_customer();
- return $this->_reload();
+ return $this->reload();
}
/**
@@ -738,7 +757,7 @@ class Sales extends Secure_Controller
$tax_details = $this->tax_lib->get_taxes($data['cart']); // TODO: Duplicated code
$data['taxes'] = $tax_details[0];
$data['discount'] = $this->sale_lib->get_discount();
- $data['payments'] = $this->sale_lib->get_payments();
+ $data['payments'] = $this->sale_lib->getPayments();
// Returns 'subtotal', 'total', 'cash_total', 'payment_total', 'amount_due', 'cash_amount_due', 'payments_cover_total'
$totals = $this->sale_lib->get_totals($tax_details[0]);
@@ -757,7 +776,7 @@ class Sales extends Secure_Controller
// Prevent negative total sales (fraud/theft vector) - returns can have negative totals for legitimate refunds
if ($this->sale_lib->get_mode() != 'return' && bccomp($totals['total'], '0') < 0) {
$data['error'] = lang('Sales.negative_total_invalid');
- return $this->_reload($data);
+ return $this->reload($data);
}
if ($data['cash_mode']) { // TODO: Convert this to ternary notation
@@ -800,7 +819,7 @@ class Sales extends Secure_Controller
if ($sale_id == NEW_ENTRY && $this->sale->check_invoice_number_exists($invoice_number)) {
$data['error'] = lang('Sales.invoice_number_duplicate', [$invoice_number]);
- return $this->_reload($data);
+ return $this->reload($data);
} else {
$data['invoice_number'] = $invoice_number;
$data['sale_status'] = COMPLETED;
@@ -821,7 +840,7 @@ class Sales extends Secure_Controller
if ($data['sale_id_num'] == NEW_ENTRY) {
$data['error_message'] = lang('Sales.transaction_failed');
- return $this->_reload($data);
+ return $this->reload($data);
} else {
$data['barcode'] = $this->barcode_lib->generate_receipt_barcode($data['sale_id']);
$this->sale_lib->clear_all();
@@ -845,7 +864,7 @@ class Sales extends Secure_Controller
if ($sale_id == NEW_ENTRY && $this->sale->check_work_order_number_exists($work_order_number)) {
$data['error'] = lang('Sales.work_order_number_duplicate');
- return $this->_reload($data);
+ return $this->reload($data);
} else {
$data['work_order_number'] = $work_order_number;
$data['sale_status'] = SUSPENDED;
@@ -873,7 +892,7 @@ class Sales extends Secure_Controller
if ($sale_id == NEW_ENTRY && $this->sale->check_quote_number_exists($quote_number)) {
$data['error'] = lang('Sales.quote_number_duplicate');
- return $this->_reload($data);
+ return $this->reload($data);
} else {
$data['quote_number'] = $quote_number;
$data['sale_status'] = SUSPENDED;
@@ -905,7 +924,7 @@ class Sales extends Secure_Controller
if ($data['sale_id_num'] == NEW_ENTRY) {
$data['error_message'] = lang('Sales.transaction_failed');
- return $this->_reload($data);
+ return $this->reload($data);
} else {
$data['barcode'] = $this->barcode_lib->generate_receipt_barcode($data['sale_id']);
@@ -1089,7 +1108,7 @@ class Sales extends Secure_Controller
$this->sale_lib->copy_entire_sale($sale_id);
$data = [];
$data['cart'] = $this->sale_lib->get_cart();
- $data['payments'] = $this->sale_lib->get_payments();
+ $data['payments'] = $this->sale_lib->getPayments();
$data['selected_payment_type'] = $this->sale_lib->get_payment_type();
$tax_details = $this->tax_lib->get_taxes($data['cart'], $sale_id);
@@ -1185,7 +1204,7 @@ class Sales extends Secure_Controller
* @param array $data
* @return void
*/
- private function _reload(array $data = []): ResponseInterface|string // TODO: Hungarian notation
+ private function reload(array $data = []): ResponseInterface|string
{
$sale_id = $this->session->get('sale_id'); // TODO: This variable is never used
@@ -1211,7 +1230,7 @@ class Sales extends Secure_Controller
$tax_details = $this->tax_lib->get_taxes($data['cart']); // TODO: Duplicated code.
$data['taxes'] = $tax_details[0];
$data['discount'] = $this->sale_lib->get_discount();
- $data['payments'] = $this->sale_lib->get_payments();
+ $data['payments'] = $this->sale_lib->getPayments();
// Returns 'subtotal', 'total', 'cash_total', 'payment_total', 'amount_due', 'cash_amount_due', 'payments_cover_total'
$totals = $this->sale_lib->get_totals($tax_details[0]);
@@ -1253,6 +1272,8 @@ class Sales extends Secure_Controller
$data['payment_options'] = $this->sale->get_payment_options();
}
+ $data['reference_code_payment_types'] = get_reference_code_payment_types();
+
$data['items_module_allowed'] = $this->employee->has_grant('items', $this->employee->get_logged_in_employee_info()->person_id);
$data['change_price'] = $this->employee->has_grant('sales_change_price', $this->employee->get_logged_in_employee_info()->person_id);
@@ -1371,6 +1392,7 @@ class Sales extends Secure_Controller
}
$data['payment_options'] = $payment_options;
+ $data['reference_code_payment_types'] = get_reference_code_payment_types();
// Set up a slightly modified list of payment types for new payment entry
$payment_options["--"] = lang('Common.none_selected_text');
@@ -1457,6 +1479,30 @@ class Sales extends Secure_Controller
'invoice_number' => $this->request->getPost('invoice_number') != '' ? $this->request->getPost('invoice_number', FILTER_SANITIZE_FULL_SPECIAL_CHARS) : null
];
+ // Validate reference_code for the new payment if applicable
+ $payment_type_new_check = $this->request->getPost('payment_type_new', FILTER_SANITIZE_FULL_SPECIAL_CHARS);
+ $payment_amount_new_check = $this->request->getPost('payment_amount_new');
+ if ($payment_type_new_check != PAYMENT_TYPE_UNASSIGNED && !empty($payment_amount_new_check)
+ && in_array($payment_type_new_check, get_reference_code_payment_types())) {
+ $min = (int)($this->config['payment_reference_code_min'] ?? 3);
+ $max = (int)($this->config['payment_reference_code_max'] ?? 40);
+ $rules = [
+ 'reference_code_new' => "trim|required|alpha_numeric|min_length[$min]|max_length[$max]",
+ ];
+ $messages = [
+ 'reference_code_new' => [
+ 'required' => lang('Sales.must_enter_reference_code'),
+ 'alpha_numeric' => lang('Sales.reference_code_invalid_characters'),
+ 'min_length' => lang('Sales.reference_code_length_error'),
+ 'max_length' => lang('Sales.reference_code_length_error'),
+ ],
+ ];
+ if (!$this->validate($rules, $messages)) {
+ $errors = $this->validator->getErrors();
+ return $this->response->setJSON(['success' => false, 'message' => reset($errors), 'id' => $sale_id]);
+ }
+ }
+
// In order to maintain tradition the only element that can change on prior payments is the payment type
$amount_tendered = 0;
$number_of_payments = $this->request->getPost('number_of_payments', FILTER_SANITIZE_NUMBER_INT);
@@ -1466,6 +1512,7 @@ class Sales extends Secure_Controller
$payment_amount = parse_decimals($this->request->getPost("payment_amount_$i"));
$refund_type = $this->request->getPost("refund_type_$i", FILTER_SANITIZE_FULL_SPECIAL_CHARS);
$cash_refund = parse_decimals($this->request->getPost("refund_amount_$i"));
+ $reference_code = $this->request->getPost("reference_code_$i", FILTER_SANITIZE_FULL_SPECIAL_CHARS) ?: null;
$cash_adjustment = $payment_type == lang('Sales.cash_adjustment') ? CASH_ADJUSTMENT_TRUE : CASH_ADJUSTMENT_FALSE;
@@ -1487,13 +1534,15 @@ class Sales extends Secure_Controller
'payment_amount' => $payment_amount,
'cash_refund' => $cash_refund,
'cash_adjustment' => $cash_adjustment,
- 'employee_id' => $employee_id
+ 'employee_id' => $employee_id,
+ 'reference_code' => $reference_code,
];
}
$payment_id = NEW_ENTRY;
$payment_amount_new = $this->request->getPost('payment_amount_new');
$payment_type = $this->request->getPost('payment_type_new', FILTER_SANITIZE_FULL_SPECIAL_CHARS);
+ $reference_code_new = $this->request->getPost('reference_code_new', FILTER_SANITIZE_FULL_SPECIAL_CHARS) ?: null;
if ($payment_type != PAYMENT_TYPE_UNASSIGNED && !empty($payment_amount_new)) {
$payment_amount = parse_decimals($payment_amount_new);
@@ -1516,7 +1565,8 @@ class Sales extends Secure_Controller
'payment_amount' => $payment_amount,
'cash_refund' => $cash_refund,
'cash_adjustment' => $cash_adjustment,
- 'employee_id' => $employee_id
+ 'employee_id' => $employee_id,
+ 'reference_code' => $reference_code_new,
];
}
@@ -1560,7 +1610,7 @@ class Sales extends Secure_Controller
}
$this->sale_lib->clear_all();
- return $this->_reload();
+ return $this->reload();
}
/**
@@ -1574,7 +1624,7 @@ class Sales extends Secure_Controller
$suspended_id = $this->sale_lib->get_suspended_id();
$this->sale_lib->clear_all();
$this->sale->delete_suspended_sale($suspended_id);
- return $this->_reload();
+ return $this->reload();
}
/**
@@ -1590,7 +1640,7 @@ class Sales extends Secure_Controller
$sale_id = $this->sale_lib->get_sale_id();
$dinner_table = $this->sale_lib->get_dinner_table();
$cart = $this->sale_lib->get_cart();
- $payments = $this->sale_lib->get_payments();
+ $payments = $this->sale_lib->getPayments();
$employee_id = $this->employee->get_logged_in_employee_info()->person_id;
$customer_id = $this->sale_lib->get_customer();
$invoice_number = $this->sale_lib->get_invoice_number();
@@ -1616,7 +1666,7 @@ class Sales extends Secure_Controller
$this->sale_lib->clear_all();
- return $this->_reload($data);
+ return $this->reload($data);
}
/**
@@ -1650,7 +1700,7 @@ class Sales extends Secure_Controller
// Set current register mode to reflect that of unsuspended order type
$this->change_register_mode($this->sale_lib->get_sale_type());
- return $this->_reload();
+ return $this->reload();
}
/**
diff --git a/app/Events/Load_config.php b/app/Events/Load_config.php
index 39dce62c4..89e4ece27 100644
--- a/app/Events/Load_config.php
+++ b/app/Events/Load_config.php
@@ -30,7 +30,7 @@ class Load_config
$config = config(OSPOS::class);
- if (!$migration->is_latest()) {
+ if (!$migration->isLatest()) {
$this->session->destroy();
}
diff --git a/app/Helpers/locale_helper.php b/app/Helpers/locale_helper.php
index c540f4079..57cf912bd 100644
--- a/app/Helpers/locale_helper.php
+++ b/app/Helpers/locale_helper.php
@@ -278,6 +278,18 @@ function get_payment_options(): array
return $payments;
}
+/**
+ * Returns the payment types that require a reference code (e.g. card terminal receipt number).
+ * Single source of truth used by both the controller validation and the view's JS.
+ */
+function get_reference_code_payment_types(): array
+{
+ return [
+ lang('Sales.debit'),
+ lang('Sales.credit'),
+ ];
+}
+
/**
* Determines if the current currency symbol is on the right side of the amount
*
diff --git a/app/Language/ar-EG/Config.php b/app/Language/ar-EG/Config.php
index 0720b1f65..5182c4784 100644
--- a/app/Language/ar-EG/Config.php
+++ b/app/Language/ar-EG/Config.php
@@ -1,332 +1,335 @@
"عنوان الشركة",
- "address_required" => "عنوان الشركة مطلوب.",
- "all_set" => "صلاحيات الملفات مضبطة بالطريقه الصحيحه!",
- "allow_duplicate_barcodes" => "السماح بتشابة الباركود",
- "apostrophe" => "الفاصلة",
- "backup_button" => "نسخ إحتياطى",
- "backup_database" => "نسخ إحتياطى لقاعدة البيانات",
- "barcode" => "باركود",
- "barcode_company" => "اسم الشركة",
- "barcode_configuration" => "اعدادات الباركود",
- "barcode_content" => "محتويات الباركود",
- "barcode_first_row" => "الصف 1",
- "barcode_font" => "الخط",
- "barcode_formats" => "اشكال الادخال",
- "barcode_generate_if_empty" => "توليد اذا كان الباركود فارغ.",
- "barcode_height" => "الارتفاع (px)",
- "barcode_id" => "كود/اسم الصنف",
- "barcode_info" => "معلومات اعدادات الباركود",
- "barcode_layout" => "تخطيط الباركود",
- "barcode_name" => "الاسم",
- "barcode_number" => "الباركود UPC/EAN/ISBN",
- "barcode_number_in_row" => "الرقم فى الصف",
- "barcode_page_cellspacing" => "المسافة بين الخلايا فى صفحة العرض.",
- "barcode_page_width" => "عرض الصفحة",
- "barcode_price" => "السعر",
- "barcode_second_row" => "الصف 2",
- "barcode_third_row" => "الصف 3",
- "barcode_tooltip" => "تحذير: قد تؤدي هذه الميزة إلى استيراد اصناف مكررة أو إنشاؤها. لا تستخدمها إذا كنت لا تريد الباركود مكررة.",
- "barcode_type" => "نوعية الباركود",
- "barcode_width" => "العرض (px)",
- "bottom" => "الأسفل",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "فواصل النقدية",
- "cash_decimals_tooltip" => "إذا كانت الكسور العشرية النقدية وعشرية العملات هي نفسها ثم لن يتم تقريب النقدية.",
- "cash_rounding" => "التقريب النقدي",
- "category_dropdown" => "إظهار الفئة كقائمة منسدلة",
- "center" => "الوسط",
- "change_apperance_tooltip" => "",
- "comma" => "فاصلة",
- "company" => "اسم الشركة",
- "company_avatar" => "",
- "company_change_image" => "تغيير الصورة",
- "company_logo" => "شعار الشركة",
- "company_remove_image" => "إزالة الصورة",
- "company_required" => "اسم الشركة مطلوب",
- "company_select_image" => "اختار صورة",
- "company_website_url" => "الموقع الإلكترونى للشركة غير صحيح.",
- "country_codes" => "أكواد الدولة",
- "country_codes_tooltip" => "قائمة مفصولة بفاصلة لاسماء الدول للبحث.",
- "currency_code" => "رمز العملة",
- "currency_decimals" => "العلامة العشرية للعملة",
- "currency_symbol" => "رمز العملة",
- "current_employee_only" => "",
- "customer_reward" => "المكافآت",
- "customer_reward_duplicate" => "المكافئة يجب ان تكون فريدة.",
- "customer_reward_enable" => "تمكين مكافآت العميل",
- "customer_reward_invalid_chars" => "لا يمكن أن تحتوي المكافأة على '_'",
- "customer_reward_required" => "المكافأة هي حقل مطلوب",
- "customer_sales_tax_support" => "دعم الضرائب المبيعات العملاء",
- "date_or_time_format" => "تصفية التاريخ والوقت",
- "datetimeformat" => "شكل الوقت و التاريخ",
- "decimal_point" => "العلامة العشرية",
- "default_barcode_font_size_number" => "الحجم الافتراضي لخط الباركود لابد أن يكون رقم.",
- "default_barcode_font_size_required" => "الحجم الافتراضي لخط الباركود مطلوب.",
- "default_barcode_height_number" => "الارتفاع الافتراضي للباركود لابد ان يكون رقم.",
- "default_barcode_height_required" => "الارتفاع الافتراضي للباركود مطلوب.",
- "default_barcode_num_in_row_number" => "رقم الباركود فى اى سطر لابد ان يكون رقم.",
- "default_barcode_num_in_row_required" => "رقم الباركود فى اى سطر مطلوب.",
- "default_barcode_page_cellspacing_number" => "المسافة الافتراضية بين خلايا الباركود لابد أن تكون رقم.",
- "default_barcode_page_cellspacing_required" => "المسافة الافتراضية بين خلايا الباركود مطلوبة.",
- "default_barcode_page_width_number" => "عرض الصفحة الافتراضي للباركود لابد ان يكون رقم.",
- "default_barcode_page_width_required" => "عرض الصفحة الافتراضي للباركود مطلوب.",
- "default_barcode_width_number" => "العرض الافتراضي للباركود لابد ان يكون رقم.",
- "default_barcode_width_required" => "العرض الافتراضي للباركود مطلوب.",
- "default_item_columns" => "الخانات المراد إظهارها",
- "default_origin_tax_code" => "كود الضريبة الاساسي الافتراضي",
- "default_receivings_discount" => "خصم الإيصالات الافتراضي",
- "default_receivings_discount_number" => "خصم الإيصالات الافتراضي يجب ان يكون رقم.",
- "default_receivings_discount_required" => "خصم الإيصالات الافتراضي هي خانة اجبارية.",
- "default_sales_discount" => "نسبة الخصم الافتراضية",
- "default_sales_discount_number" => "نسبة الخصم الافتراضية لابد ان تكون رقم.",
- "default_sales_discount_required" => "نسبة الخصم الافتراضية مطلوبة.",
- "default_tax_category" => "فئة الضرائب الافتراضية",
- "default_tax_code" => "قانون الضرائب الافتراضي",
- "default_tax_jurisdiction" => "الاختصاص الضريبي الافتراضي",
- "default_tax_name_number" => "يجب أن يكون الاسم الافتراضي للضريبة سلسلة.",
- "default_tax_name_required" => "اسم الضريبة الافتراضية مطلوب.",
- "default_tax_rate" => "معدل الضريبة الافتراضي %",
- "default_tax_rate_1" => "معدل الضريبة 1",
- "default_tax_rate_2" => "معدل الضريبة 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "معدل الضريبة الافتراضي يجب أن يكون رقم.",
- "default_tax_rate_required" => "معدل الضريبة الافتراضي مطلوب.",
- "derive_sale_quantity" => "السماح بأسعار البيع المشتقة",
- "derive_sale_quantity_tooltip" => "إذا تم تحديدها، فسيتم توفير نوع جديد من الاصناف للاصناف المطلوبة حسب المبلغ الموسع",
- "dinner_table" => "طاولة",
- "dinner_table_duplicate" => "الطاولة يجب ان تكون فريدة.",
- "dinner_table_enable" => "تمكين جداول الطاولات",
- "dinner_table_invalid_chars" => "لا يمكن أن يحتوي اسم الطاولة على '_'.",
- "dinner_table_required" => "الطاولة هو حقل مطلوب.",
- "dot" => "نقطة",
- "email" => "البريد الإلكتروني",
- "email_configuration" => "إعدادات البريد الإلكتروني",
- "email_mailpath" => "مسار ارسال البريد",
- "email_protocol" => "بروتوكول",
- "email_receipt_check_behaviour" => "ارسال رسائل الكترونية",
- "email_receipt_check_behaviour_always" => "مختار دائما",
- "email_receipt_check_behaviour_last" => "تذكر آخر إختيار",
- "email_receipt_check_behaviour_never" => "دائما غير مختار",
- "email_smtp_crypto" => "تشفير SMTP",
- "email_smtp_host" => "خادم SMTP",
- "email_smtp_pass" => "كلمة سر SMTP",
- "email_smtp_port" => "رقم منفذ SMTP",
- "email_smtp_timeout" => "وقت فشل المحاولة (ثوانى) لـ SMTP",
- "email_smtp_user" => "اسم مستخدم SMTP",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "فرض نظام الخصوصية",
- "enforce_privacy_tooltip" => "حماية ملفات ومعلومات المستخدم عند الحذف",
- "fax" => "الفاكس",
- "file_perm" => "يوجد خطأ في ضبط اعدادات وصلاحيات الملفات نرجوا إعادة الضبط.",
- "financial_year" => "بداية السنة المالية",
- "financial_year_apr" => "1 أبريل",
- "financial_year_aug" => "1 أغسطس",
- "financial_year_dec" => "1 ديسمبر",
- "financial_year_feb" => "1 فبراير",
- "financial_year_jan" => "1 يناير",
- "financial_year_jul" => "1 يوليو",
- "financial_year_jun" => "1 يونيو",
- "financial_year_mar" => "1 مارس",
- "financial_year_may" => "1 مايو",
- "financial_year_nov" => "1 نوفمبر",
- "financial_year_oct" => "1 أكتوبر",
- "financial_year_sep" => "1 سبتمبر",
- "floating_labels" => "تسميات عائمة",
- "gcaptcha_enable" => "صفحة تسجيل الدخول ريكابتشا",
- "gcaptcha_secret_key" => "مفتاح السرية ريكابتشا",
- "gcaptcha_secret_key_required" => "مفتاح السرية ريكابتشا هو حقل مطلوب",
- "gcaptcha_site_key" => "ريكابتشا مفتاح الموقع",
- "gcaptcha_site_key_required" => "ريكابتشا مفتاح الموقع هو حقل مطلوب",
- "gcaptcha_tooltip" => "احرص على حماية صفحة تسجيل الدخول باستخدام ريكابتشا من غوغل.",
- "general" => "عام",
- "general_configuration" => "إعدادات عامة",
- "giftcard_number" => "رقم كارت الهدية",
- "giftcard_random" => "توليد عشوائي",
- "giftcard_series" => "توليد في السلسلة",
- "image_allowed_file_types" => "أنواع الملفات المسموح بها",
- "image_max_height_tooltip" => "أقصى ارتفاع مسموح به لتحميلات الصور بالبكسل (بكسل).",
- "image_max_size_tooltip" => "أقصى حجم مسموح به للملف لتحميل الصور (بالكيلو بايت).",
- "image_max_width_tooltip" => "أقصى عرض مسموح به لتحميلات الصور بالبكسل (بكسل).",
- "image_restrictions" => "قيود تحميل الصور",
- "include_hsn" => "تشمل الدعم لرمز نظام منسق",
- "info" => "معلومات",
- "info_configuration" => "معلومات الشركة",
- "input_groups" => "مجموعات الإدخال",
- "integrations" => "التكامل",
- "integrations_configuration" => "تكامل",
- "invoice" => "الفاتورة",
- "invoice_configuration" => "إعدادات طباعة الفاتورة",
- "invoice_default_comments" => "التعليق الافتراضي على الفاتورة",
- "invoice_email_message" => "قالب البريد الإلكتروني للفاتورة",
- "invoice_enable" => "تفعيل الفوترة",
- "invoice_printer" => "طابعة الفواتير",
- "invoice_type" => "نوع الفاتورة",
- "is_readable" => "يمكن قراءته ، ولكن تم تعيين الأذونات بشكل غير صحيح. يرجى ضبطه على 640 أو 660 والتحديث.",
- "is_writable" => "ممكن التعديل عليه، لكن الصلاحيات هي اكثر من 750. نرجوا الضبط الى 750.",
- "item_markup" => "",
- "jsprintsetup_required" => "تحذير! هذه الخاصية غير المفعلة سوف تعمل فقط مع وجود الاضافة jsPrintSetup على متصفح فايرفوكس. حفظ على أى حال؟",
- "language" => "اللغة",
- "last_used_invoice_number" => "اخر رقم مستخدم للفاتورة",
- "last_used_quote_number" => "اخر رقم مستخدم لعرض الاسعار",
- "last_used_work_order_number" => "آخر رقم مستخدم في طلبات العمل",
- "left" => "يسار",
- "license" => "الرخصة",
- "license_configuration" => "نص الرخصة",
- "line_sequence" => "تسلسل خطي",
- "lines_per_page" => "عدد السطور فى الصفحة",
- "lines_per_page_number" => "عدد السطور فى الصفحة يجب أن يكون رقم.",
- "lines_per_page_required" => "عدد السطور فى الصفحة مطلوب.",
- "locale" => "إقليمية",
- "locale_configuration" => "الإعدادات الإقليمية",
- "locale_info" => "معلومات التهيئة الإقليمية",
- "location" => "المخزون",
- "location_configuration" => "أماكن المخزون",
- "location_info" => "معلومات تهيئة الأماكن",
- "login_form" => "نمط نموذج تسجيل الدخول",
- "logout" => "هل تريد عمل نسخة إحتياطية قبل الخروج؟ اضغط [نعم] لعمل النسخة أو [الغاء] للخروج.",
- "mailchimp" => "ميل تشامب",
- "mailchimp_api_key" => "مفتاح ميل شيمب",
- "mailchimp_configuration" => "إعدادات ميل شيمب",
- "mailchimp_key_successfully" => "نجاح.",
- "mailchimp_key_unsuccessfully" => "فشل.",
- "mailchimp_lists" => "إعدادات ميل شيمب",
- "mailchimp_tooltip" => "انقر على رمز مفتاح API.",
- "message" => "الرسائل",
- "message_configuration" => "إعدادات الرسائل",
- "msg_msg" => "الرسائل النصية المحفوظة",
- "msg_msg_placeholder" => "إذا أردت إستخدام قالب للرسائل القصيرة احفظه هنا. عدا ذلك أترك هذا الحقل فارغ.",
- "msg_pwd" => "SMS-API كلمة السر لـ",
- "msg_pwd_required" => "مطلوب SMS-API كلمة السر لـ",
- "msg_src" => "SMS-API كود المرسل لـ",
- "msg_src_required" => "مطلوب SMS-API كود المرسل لـ",
- "msg_uid" => "SMS-API اسم المستخدم لـ",
- "msg_uid_required" => "مطلوب SMS-API اسم المستخدم لـ",
- "multi_pack_enabled" => "رزم متعددة لكل صنف",
- "no_risk" => "لا يوجد اي مشاكل في صلاحيات الملفات.",
- "none" => "لايوجد",
- "notify_alignment" => "مكان عرض رسائل المعلومات",
- "number_format" => "شكل الرقم",
- "number_locale" => "التهيئة الاقليمية",
- "number_locale_invalid" => "التهيئة الإقليمية المختارة غير صحية، راجع الرابط الموجود فى الملاحظة لاختيار تهيئة مناسبة.",
- "number_locale_required" => "رقم التهيئة الإقليمية مطلوب.",
- "number_locale_tooltip" => "إيجاد تهيئة إقليمية مناسبة عبر الرابط.",
- "os_timezone" => "المنطقة الزمنية OSPOS:",
- "ospos_info" => "معلومات التثبيت OSPOS",
- "payment_options_order" => "ترتيب خيارات الدفع",
- "perm_risk" => "صلاحيات الملفات ممكن ان تشكل خطر في حال كانت غير صحيحة.",
- "phone" => "هاتف الشركة",
- "phone_required" => "هاتف الشركة مطلوب.",
- "print_bottom_margin" => "الهامش السفلي",
- "print_bottom_margin_number" => "الهامش السفلي يجب أن يكون رقم.",
- "print_bottom_margin_required" => "الهامش السفلي مطلوب.",
- "print_delay_autoreturn" => "العودة الى عمليات البيع تلقائيا ( عدد الثواني )",
- "print_delay_autoreturn_number" => "الزمن المحدد للعودة الى عمليات البيع هو خانة اجبارية.",
- "print_delay_autoreturn_required" => "الزمن المحدد للعودة الى عمليات البيع يجب ان يكون رقم.",
- "print_footer" => "طباعة تذييل المتصفح",
- "print_header" => "طباعة ترويسة المتصفح",
- "print_left_margin" => "الهامش الأيسر",
- "print_left_margin_number" => "الهامش الأيسر يجب ان يكون رقم.",
- "print_left_margin_required" => "الهامش الأيسر مطلوب.",
- "print_receipt_check_behaviour" => "خانة طباعة الفواتير",
- "print_receipt_check_behaviour_always" => "دائما مختار",
- "print_receipt_check_behaviour_last" => "تذكر آخر اختيار",
- "print_receipt_check_behaviour_never" => "دائما ليس مختار",
- "print_right_margin" => "الهامش الأيمن",
- "print_right_margin_number" => "الهامش الأيمن يجب أن يكون رقم.",
- "print_right_margin_required" => "الهامش الأيمن مطلوب.",
- "print_silently" => "عرض صندوق حوار طباعة",
- "print_top_margin" => "الهامش العلوى",
- "print_top_margin_number" => "الهامش العلوى يجب أن يكون رقم.",
- "print_top_margin_required" => "الهامش العلوى مطلوب.",
- "quantity_decimals" => "العلامة العشرية للكمية",
- "quick_cash_enable" => "",
- "quote_default_comments" => "ملاحظات طلبات العمل الثابتة",
- "receipt" => "الإيصال",
- "receipt_category" => "",
- "receipt_configuration" => "إعدادات طباعة الايصالات",
- "receipt_default" => "افتراضى",
- "receipt_font_size" => "الخط",
- "receipt_font_size_number" => "رقم الخط يجب ان يكون رقم.",
- "receipt_font_size_required" => "رقم الخط مطلوب.",
- "receipt_info" => "معلومات تهيئة الإيصالات",
- "receipt_printer" => "طابعة تذاكر",
- "receipt_short" => "مختصر",
- "receipt_show_company_name" => "عرض اسم الشركة",
- "receipt_show_description" => "عرض الوصف",
- "receipt_show_serialnumber" => "عرض الرقم المسلسل",
- "receipt_show_tax_ind" => "عرض مؤشر الضريبة",
- "receipt_show_taxes" => "عرض الضرائب",
- "receipt_show_total_discount" => "عرض إجمالى الخصم",
- "receipt_template" => "قالب الايصال",
- "receiving_calculate_average_price" => "حساب متوسط سعر الأصناف المستلمة",
- "recv_invoice_format" => "شكل فاتورة الإستلام",
- "register_mode_default" => "نمط التسجيل الافتراضي",
- "report_an_issue" => "بلغ عن خطأ",
- "return_policy_required" => "سياسة الإسترجاع مطلوب.",
- "reward" => "المكافاة",
- "reward_configuration" => "اعدادات المكافاة",
- "right" => "يمين",
- "sales_invoice_format" => "شكل فاتورة البيع",
- "sales_quote_format" => "شكل فاتورة عرض الاسعار",
- "mailpath_invalid" => "",
- "saved_successfully" => "تم حفظ التهيئة بنجاح.",
- "saved_unsuccessfully" => "لم يتم حفظ التهيئة بنجاح.",
- "security_issue" => "تحذير من ثغرة أمنية",
- "server_notice" => "يرجى استخدام المعلومات أدناه للإبلاغ عن المشكلة.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "اظهار ايكونة المكتب",
- "statistics" => "إرسال اﻹحصائيات",
- "statistics_tooltip" => "إرسال اﻹحصائيات ﻷغراض التطوير و التحسين.",
- "stock_location" => "مكان المخزون",
- "stock_location_duplicate" => "من فضلك إستخدم اسم مكان غير مكرر.",
- "stock_location_invalid_chars" => "مكان المخزون لايمكن أن يحتوى على '_'.",
- "stock_location_required" => "مكان المخزون مطلوب.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "العامود 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "تخطيط اقتراحات البحث",
- "suggestions_second_column" => "العامود 2",
- "suggestions_third_column" => "العامود 3",
- "system_conf" => "اعدادات اخرى",
- "system_info" => "System Info",
- "table" => "جدول",
- "table_configuration" => "اعدادات الجدول",
- "takings_printer" => "طابعة الإيراد",
- "tax" => "الضريبة",
- "tax_category" => "تصنيف الضريبة",
- "tax_category_duplicate" => "الفئة الضريبية اللتي تم ادخالها موجودة.",
- "tax_category_invalid_chars" => "الفئة الضريبية اللتي تم ادخالها غير صحيحة.",
- "tax_category_required" => "الفئة الضريبية مطلوبة.",
- "tax_category_used" => "الفئة الضريبية اللتي تم تحديدها لا يمكن حذفها لانها قيد الاستعمال.",
- "tax_configuration" => "إعدادات الضريبة",
- "tax_decimals" => "العلامة العشرية للضريبة",
- "tax_id" => "الرقم الضريبي",
- "tax_included" => "شامل الضريبة",
- "theme" => "السمة",
- "theme_preview" => "معاينة المظهر:",
- "thousands_separator" => "فاصل الاف",
- "timezone" => "المنطقة الزمنية",
- "timezone_error" => "تختلف منطقة OSPOS الزمنية عن منطقتك الزمنية المحلية.",
- "top" => "علوى",
- "use_destination_based_tax" => "استخدام الضريبة المستندة على الوجهة",
- "user_timezone" => "المنطقة الزمنية المحلية:",
- "website" => "موقع الشركة",
- "wholesale_markup" => "",
- "work_order_enable" => "تفعيل طلبات العمل",
- "work_order_format" => "شكل طلبات العمل",
+ 'address' => 'عنوان الشركة',
+ 'address_required' => 'عنوان الشركة مطلوب.',
+ 'all_set' => 'صلاحيات الملفات مضبطة بالطريقه الصحيحه!',
+ 'allow_duplicate_barcodes' => 'السماح بتشابة الباركود',
+ 'apostrophe' => 'الفاصلة',
+ 'backup_button' => 'نسخ إحتياطى',
+ 'backup_database' => 'نسخ إحتياطى لقاعدة البيانات',
+ 'barcode' => 'باركود',
+ 'barcode_company' => 'اسم الشركة',
+ 'barcode_configuration' => 'اعدادات الباركود',
+ 'barcode_content' => 'محتويات الباركود',
+ 'barcode_first_row' => 'الصف 1',
+ 'barcode_font' => 'الخط',
+ 'barcode_formats' => 'اشكال الادخال',
+ 'barcode_generate_if_empty' => 'توليد اذا كان الباركود فارغ.',
+ 'barcode_height' => 'الارتفاع (px)',
+ 'barcode_id' => 'كود/اسم الصنف',
+ 'barcode_info' => 'معلومات اعدادات الباركود',
+ 'barcode_layout' => 'تخطيط الباركود',
+ 'barcode_name' => 'الاسم',
+ 'barcode_number' => 'الباركود UPC/EAN/ISBN',
+ 'barcode_number_in_row' => 'الرقم فى الصف',
+ 'barcode_page_cellspacing' => 'المسافة بين الخلايا فى صفحة العرض.',
+ 'barcode_page_width' => 'عرض الصفحة',
+ 'barcode_price' => 'السعر',
+ 'barcode_second_row' => 'الصف 2',
+ 'barcode_third_row' => 'الصف 3',
+ 'barcode_tooltip' => 'تحذير: قد تؤدي هذه الميزة إلى استيراد اصناف مكررة أو إنشاؤها. لا تستخدمها إذا كنت لا تريد الباركود مكررة.',
+ 'barcode_type' => 'نوعية الباركود',
+ 'barcode_width' => 'العرض (px)',
+ 'bottom' => 'الأسفل',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'فواصل النقدية',
+ 'cash_decimals_tooltip' => 'إذا كانت الكسور العشرية النقدية وعشرية العملات هي نفسها ثم لن يتم تقريب النقدية.',
+ 'cash_rounding' => 'التقريب النقدي',
+ 'category_dropdown' => 'إظهار الفئة كقائمة منسدلة',
+ 'center' => 'الوسط',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'فاصلة',
+ 'company' => 'اسم الشركة',
+ 'company_avatar' => '',
+ 'company_change_image' => 'تغيير الصورة',
+ 'company_logo' => 'شعار الشركة',
+ 'company_remove_image' => 'إزالة الصورة',
+ 'company_required' => 'اسم الشركة مطلوب',
+ 'company_select_image' => 'اختار صورة',
+ 'company_website_url' => 'الموقع الإلكترونى للشركة غير صحيح.',
+ 'country_codes' => 'أكواد الدولة',
+ 'country_codes_tooltip' => 'قائمة مفصولة بفاصلة لاسماء الدول للبحث.',
+ 'currency_code' => 'رمز العملة',
+ 'currency_decimals' => 'العلامة العشرية للعملة',
+ 'currency_symbol' => 'رمز العملة',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'المكافآت',
+ 'customer_reward_duplicate' => 'المكافئة يجب ان تكون فريدة.',
+ 'customer_reward_enable' => 'تمكين مكافآت العميل',
+ 'customer_reward_invalid_chars' => "لا يمكن أن تحتوي المكافأة على '_'",
+ 'customer_reward_required' => 'المكافأة هي حقل مطلوب',
+ 'customer_sales_tax_support' => 'دعم الضرائب المبيعات العملاء',
+ 'date_or_time_format' => 'تصفية التاريخ والوقت',
+ 'datetimeformat' => 'شكل الوقت و التاريخ',
+ 'decimal_point' => 'العلامة العشرية',
+ 'default_barcode_font_size_number' => 'الحجم الافتراضي لخط الباركود لابد أن يكون رقم.',
+ 'default_barcode_font_size_required' => 'الحجم الافتراضي لخط الباركود مطلوب.',
+ 'default_barcode_height_number' => 'الارتفاع الافتراضي للباركود لابد ان يكون رقم.',
+ 'default_barcode_height_required' => 'الارتفاع الافتراضي للباركود مطلوب.',
+ 'default_barcode_num_in_row_number' => 'رقم الباركود فى اى سطر لابد ان يكون رقم.',
+ 'default_barcode_num_in_row_required' => 'رقم الباركود فى اى سطر مطلوب.',
+ 'default_barcode_page_cellspacing_number' => 'المسافة الافتراضية بين خلايا الباركود لابد أن تكون رقم.',
+ 'default_barcode_page_cellspacing_required' => 'المسافة الافتراضية بين خلايا الباركود مطلوبة.',
+ 'default_barcode_page_width_number' => 'عرض الصفحة الافتراضي للباركود لابد ان يكون رقم.',
+ 'default_barcode_page_width_required' => 'عرض الصفحة الافتراضي للباركود مطلوب.',
+ 'default_barcode_width_number' => 'العرض الافتراضي للباركود لابد ان يكون رقم.',
+ 'default_barcode_width_required' => 'العرض الافتراضي للباركود مطلوب.',
+ 'default_item_columns' => 'الخانات المراد إظهارها',
+ 'default_origin_tax_code' => 'كود الضريبة الاساسي الافتراضي',
+ 'default_receivings_discount' => 'خصم الإيصالات الافتراضي',
+ 'default_receivings_discount_number' => 'خصم الإيصالات الافتراضي يجب ان يكون رقم.',
+ 'default_receivings_discount_required' => 'خصم الإيصالات الافتراضي هي خانة اجبارية.',
+ 'default_sales_discount' => 'نسبة الخصم الافتراضية',
+ 'default_sales_discount_number' => 'نسبة الخصم الافتراضية لابد ان تكون رقم.',
+ 'default_sales_discount_required' => 'نسبة الخصم الافتراضية مطلوبة.',
+ 'default_tax_category' => 'فئة الضرائب الافتراضية',
+ 'default_tax_code' => 'قانون الضرائب الافتراضي',
+ 'default_tax_jurisdiction' => 'الاختصاص الضريبي الافتراضي',
+ 'default_tax_name_number' => 'يجب أن يكون الاسم الافتراضي للضريبة سلسلة.',
+ 'default_tax_name_required' => 'اسم الضريبة الافتراضية مطلوب.',
+ 'default_tax_rate' => 'معدل الضريبة الافتراضي %',
+ 'default_tax_rate_1' => 'معدل الضريبة 1',
+ 'default_tax_rate_2' => 'معدل الضريبة 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'معدل الضريبة الافتراضي يجب أن يكون رقم.',
+ 'default_tax_rate_required' => 'معدل الضريبة الافتراضي مطلوب.',
+ 'derive_sale_quantity' => 'السماح بأسعار البيع المشتقة',
+ 'derive_sale_quantity_tooltip' => 'إذا تم تحديدها، فسيتم توفير نوع جديد من الاصناف للاصناف المطلوبة حسب المبلغ الموسع',
+ 'dinner_table' => 'طاولة',
+ 'dinner_table_duplicate' => 'الطاولة يجب ان تكون فريدة.',
+ 'dinner_table_enable' => 'تمكين جداول الطاولات',
+ 'dinner_table_invalid_chars' => "لا يمكن أن يحتوي اسم الطاولة على '_'.",
+ 'dinner_table_required' => 'الطاولة هو حقل مطلوب.',
+ 'dot' => 'نقطة',
+ 'email' => 'البريد الإلكتروني',
+ 'email_configuration' => 'إعدادات البريد الإلكتروني',
+ 'email_mailpath' => 'مسار ارسال البريد',
+ 'email_protocol' => 'بروتوكول',
+ 'email_receipt_check_behaviour' => 'ارسال رسائل الكترونية',
+ 'email_receipt_check_behaviour_always' => 'مختار دائما',
+ 'email_receipt_check_behaviour_last' => 'تذكر آخر إختيار',
+ 'email_receipt_check_behaviour_never' => 'دائما غير مختار',
+ 'email_smtp_crypto' => 'تشفير SMTP',
+ 'email_smtp_host' => 'خادم SMTP',
+ 'email_smtp_pass' => 'كلمة سر SMTP',
+ 'email_smtp_port' => 'رقم منفذ SMTP',
+ 'email_smtp_timeout' => 'وقت فشل المحاولة (ثوانى) لـ SMTP',
+ 'email_smtp_user' => 'اسم مستخدم SMTP',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'فرض نظام الخصوصية',
+ 'enforce_privacy_tooltip' => 'حماية ملفات ومعلومات المستخدم عند الحذف',
+ 'fax' => 'الفاكس',
+ 'file_perm' => 'يوجد خطأ في ضبط اعدادات وصلاحيات الملفات نرجوا إعادة الضبط.',
+ 'financial_year' => 'بداية السنة المالية',
+ 'financial_year_apr' => '1 أبريل',
+ 'financial_year_aug' => '1 أغسطس',
+ 'financial_year_dec' => '1 ديسمبر',
+ 'financial_year_feb' => '1 فبراير',
+ 'financial_year_jan' => '1 يناير',
+ 'financial_year_jul' => '1 يوليو',
+ 'financial_year_jun' => '1 يونيو',
+ 'financial_year_mar' => '1 مارس',
+ 'financial_year_may' => '1 مايو',
+ 'financial_year_nov' => '1 نوفمبر',
+ 'financial_year_oct' => '1 أكتوبر',
+ 'financial_year_sep' => '1 سبتمبر',
+ 'floating_labels' => 'تسميات عائمة',
+ 'gcaptcha_enable' => 'صفحة تسجيل الدخول ريكابتشا',
+ 'gcaptcha_secret_key' => 'مفتاح السرية ريكابتشا',
+ 'gcaptcha_secret_key_required' => 'مفتاح السرية ريكابتشا هو حقل مطلوب',
+ 'gcaptcha_site_key' => 'ريكابتشا مفتاح الموقع',
+ 'gcaptcha_site_key_required' => 'ريكابتشا مفتاح الموقع هو حقل مطلوب',
+ 'gcaptcha_tooltip' => 'احرص على حماية صفحة تسجيل الدخول باستخدام ريكابتشا من غوغل.',
+ 'general' => 'عام',
+ 'general_configuration' => 'إعدادات عامة',
+ 'giftcard_number' => 'رقم كارت الهدية',
+ 'giftcard_random' => 'توليد عشوائي',
+ 'giftcard_series' => 'توليد في السلسلة',
+ 'image_allowed_file_types' => 'أنواع الملفات المسموح بها',
+ 'image_max_height_tooltip' => 'أقصى ارتفاع مسموح به لتحميلات الصور بالبكسل (بكسل).',
+ 'image_max_size_tooltip' => 'أقصى حجم مسموح به للملف لتحميل الصور (بالكيلو بايت).',
+ 'image_max_width_tooltip' => 'أقصى عرض مسموح به لتحميلات الصور بالبكسل (بكسل).',
+ 'image_restrictions' => 'قيود تحميل الصور',
+ 'include_hsn' => 'تشمل الدعم لرمز نظام منسق',
+ 'info' => 'معلومات',
+ 'info_configuration' => 'معلومات الشركة',
+ 'input_groups' => 'مجموعات الإدخال',
+ 'integrations' => 'التكامل',
+ 'integrations_configuration' => 'تكامل',
+ 'invoice' => 'الفاتورة',
+ 'invoice_configuration' => 'إعدادات طباعة الفاتورة',
+ 'invoice_default_comments' => 'التعليق الافتراضي على الفاتورة',
+ 'invoice_email_message' => 'قالب البريد الإلكتروني للفاتورة',
+ 'invoice_enable' => 'تفعيل الفوترة',
+ 'invoice_printer' => 'طابعة الفواتير',
+ 'invoice_type' => 'نوع الفاتورة',
+ 'is_readable' => 'يمكن قراءته ، ولكن تم تعيين الأذونات بشكل غير صحيح. يرجى ضبطه على 640 أو 660 والتحديث.',
+ 'is_writable' => 'ممكن التعديل عليه، لكن الصلاحيات هي اكثر من 750. نرجوا الضبط الى 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'تحذير! هذه الخاصية غير المفعلة سوف تعمل فقط مع وجود الاضافة jsPrintSetup على متصفح فايرفوكس. حفظ على أى حال؟',
+ 'language' => 'اللغة',
+ 'last_used_invoice_number' => 'اخر رقم مستخدم للفاتورة',
+ 'last_used_quote_number' => 'اخر رقم مستخدم لعرض الاسعار',
+ 'last_used_work_order_number' => 'آخر رقم مستخدم في طلبات العمل',
+ 'left' => 'يسار',
+ 'license' => 'الرخصة',
+ 'license_configuration' => 'نص الرخصة',
+ 'line_sequence' => 'تسلسل خطي',
+ 'lines_per_page' => 'عدد السطور فى الصفحة',
+ 'lines_per_page_number' => 'عدد السطور فى الصفحة يجب أن يكون رقم.',
+ 'lines_per_page_required' => 'عدد السطور فى الصفحة مطلوب.',
+ 'locale' => 'إقليمية',
+ 'locale_configuration' => 'الإعدادات الإقليمية',
+ 'locale_info' => 'معلومات التهيئة الإقليمية',
+ 'location' => 'المخزون',
+ 'location_configuration' => 'أماكن المخزون',
+ 'location_info' => 'معلومات تهيئة الأماكن',
+ 'login_form' => 'نمط نموذج تسجيل الدخول',
+ 'logout' => 'هل تريد عمل نسخة إحتياطية قبل الخروج؟ اضغط [نعم] لعمل النسخة أو [الغاء] للخروج.',
+ 'mailchimp' => 'ميل تشامب',
+ 'mailchimp_api_key' => 'مفتاح ميل شيمب',
+ 'mailchimp_configuration' => 'إعدادات ميل شيمب',
+ 'mailchimp_key_successfully' => 'نجاح.',
+ 'mailchimp_key_unsuccessfully' => 'فشل.',
+ 'mailchimp_lists' => 'إعدادات ميل شيمب',
+ 'mailchimp_tooltip' => 'انقر على رمز مفتاح API.',
+ 'message' => 'الرسائل',
+ 'message_configuration' => 'إعدادات الرسائل',
+ 'msg_msg' => 'الرسائل النصية المحفوظة',
+ 'msg_msg_placeholder' => 'إذا أردت إستخدام قالب للرسائل القصيرة احفظه هنا. عدا ذلك أترك هذا الحقل فارغ.',
+ 'msg_pwd' => 'SMS-API كلمة السر لـ',
+ 'msg_pwd_required' => 'مطلوب SMS-API كلمة السر لـ',
+ 'msg_src' => 'SMS-API كود المرسل لـ',
+ 'msg_src_required' => 'مطلوب SMS-API كود المرسل لـ',
+ 'msg_uid' => 'SMS-API اسم المستخدم لـ',
+ 'msg_uid_required' => 'مطلوب SMS-API اسم المستخدم لـ',
+ 'multi_pack_enabled' => 'رزم متعددة لكل صنف',
+ 'no_risk' => 'لا يوجد اي مشاكل في صلاحيات الملفات.',
+ 'none' => 'لايوجد',
+ 'notify_alignment' => 'مكان عرض رسائل المعلومات',
+ 'number_format' => 'شكل الرقم',
+ 'number_locale' => 'التهيئة الاقليمية',
+ 'number_locale_invalid' => 'التهيئة الإقليمية المختارة غير صحية، راجع الرابط الموجود فى الملاحظة لاختيار تهيئة مناسبة.',
+ 'number_locale_required' => 'رقم التهيئة الإقليمية مطلوب.',
+ 'number_locale_tooltip' => 'إيجاد تهيئة إقليمية مناسبة عبر الرابط.',
+ 'os_timezone' => 'المنطقة الزمنية OSPOS:',
+ 'ospos_info' => 'معلومات التثبيت OSPOS',
+ 'payment_options_order' => 'ترتيب خيارات الدفع',
+ 'payment_reference_code_length_limits' => 'كود مرجع الدفع
حدود الطول',
+ 'payment_reference_code_length_max_label' => 'الحد الأقصى',
+ 'payment_reference_code_length_min_label' => 'الحد الأدنى',
+ 'perm_risk' => 'صلاحيات الملفات ممكن ان تشكل خطر في حال كانت غير صحيحة.',
+ 'phone' => 'هاتف الشركة',
+ 'phone_required' => 'هاتف الشركة مطلوب.',
+ 'print_bottom_margin' => 'الهامش السفلي',
+ 'print_bottom_margin_number' => 'الهامش السفلي يجب أن يكون رقم.',
+ 'print_bottom_margin_required' => 'الهامش السفلي مطلوب.',
+ 'print_delay_autoreturn' => 'العودة الى عمليات البيع تلقائيا ( عدد الثواني )',
+ 'print_delay_autoreturn_number' => 'الزمن المحدد للعودة الى عمليات البيع هو خانة اجبارية.',
+ 'print_delay_autoreturn_required' => 'الزمن المحدد للعودة الى عمليات البيع يجب ان يكون رقم.',
+ 'print_footer' => 'طباعة تذييل المتصفح',
+ 'print_header' => 'طباعة ترويسة المتصفح',
+ 'print_left_margin' => 'الهامش الأيسر',
+ 'print_left_margin_number' => 'الهامش الأيسر يجب ان يكون رقم.',
+ 'print_left_margin_required' => 'الهامش الأيسر مطلوب.',
+ 'print_receipt_check_behaviour' => 'خانة طباعة الفواتير',
+ 'print_receipt_check_behaviour_always' => 'دائما مختار',
+ 'print_receipt_check_behaviour_last' => 'تذكر آخر اختيار',
+ 'print_receipt_check_behaviour_never' => 'دائما ليس مختار',
+ 'print_right_margin' => 'الهامش الأيمن',
+ 'print_right_margin_number' => 'الهامش الأيمن يجب أن يكون رقم.',
+ 'print_right_margin_required' => 'الهامش الأيمن مطلوب.',
+ 'print_silently' => 'عرض صندوق حوار طباعة',
+ 'print_top_margin' => 'الهامش العلوى',
+ 'print_top_margin_number' => 'الهامش العلوى يجب أن يكون رقم.',
+ 'print_top_margin_required' => 'الهامش العلوى مطلوب.',
+ 'quantity_decimals' => 'العلامة العشرية للكمية',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'ملاحظات طلبات العمل الثابتة',
+ 'receipt' => 'الإيصال',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'إعدادات طباعة الايصالات',
+ 'receipt_default' => 'افتراضى',
+ 'receipt_font_size' => 'الخط',
+ 'receipt_font_size_number' => 'رقم الخط يجب ان يكون رقم.',
+ 'receipt_font_size_required' => 'رقم الخط مطلوب.',
+ 'receipt_info' => 'معلومات تهيئة الإيصالات',
+ 'receipt_printer' => 'طابعة تذاكر',
+ 'receipt_short' => 'مختصر',
+ 'receipt_show_company_name' => 'عرض اسم الشركة',
+ 'receipt_show_description' => 'عرض الوصف',
+ 'receipt_show_serialnumber' => 'عرض الرقم المسلسل',
+ 'receipt_show_tax_ind' => 'عرض مؤشر الضريبة',
+ 'receipt_show_taxes' => 'عرض الضرائب',
+ 'receipt_show_total_discount' => 'عرض إجمالى الخصم',
+ 'receipt_template' => 'قالب الايصال',
+ 'receiving_calculate_average_price' => 'حساب متوسط سعر الأصناف المستلمة',
+ 'recv_invoice_format' => 'شكل فاتورة الإستلام',
+ 'register_mode_default' => 'نمط التسجيل الافتراضي',
+ 'report_an_issue' => 'بلغ عن خطأ',
+ 'return_policy_required' => 'سياسة الإسترجاع مطلوب.',
+ 'reward' => 'المكافاة',
+ 'reward_configuration' => 'اعدادات المكافاة',
+ 'right' => 'يمين',
+ 'sales_invoice_format' => 'شكل فاتورة البيع',
+ 'sales_quote_format' => 'شكل فاتورة عرض الاسعار',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => 'تم حفظ التهيئة بنجاح.',
+ 'saved_unsuccessfully' => 'لم يتم حفظ التهيئة بنجاح.',
+ 'security_issue' => 'تحذير من ثغرة أمنية',
+ 'server_notice' => 'يرجى استخدام المعلومات أدناه للإبلاغ عن المشكلة.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'اظهار ايكونة المكتب',
+ 'statistics' => 'إرسال اﻹحصائيات',
+ 'statistics_tooltip' => 'إرسال اﻹحصائيات ﻷغراض التطوير و التحسين.',
+ 'stock_location' => 'مكان المخزون',
+ 'stock_location_duplicate' => 'من فضلك إستخدم اسم مكان غير مكرر.',
+ 'stock_location_invalid_chars' => "مكان المخزون لايمكن أن يحتوى على '_'.",
+ 'stock_location_required' => 'مكان المخزون مطلوب.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'العامود 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'تخطيط اقتراحات البحث',
+ 'suggestions_second_column' => 'العامود 2',
+ 'suggestions_third_column' => 'العامود 3',
+ 'system_conf' => 'اعدادات اخرى',
+ 'system_info' => 'System Info',
+ 'table' => 'جدول',
+ 'table_configuration' => 'اعدادات الجدول',
+ 'takings_printer' => 'طابعة الإيراد',
+ 'tax' => 'الضريبة',
+ 'tax_category' => 'تصنيف الضريبة',
+ 'tax_category_duplicate' => 'الفئة الضريبية اللتي تم ادخالها موجودة.',
+ 'tax_category_invalid_chars' => 'الفئة الضريبية اللتي تم ادخالها غير صحيحة.',
+ 'tax_category_required' => 'الفئة الضريبية مطلوبة.',
+ 'tax_category_used' => 'الفئة الضريبية اللتي تم تحديدها لا يمكن حذفها لانها قيد الاستعمال.',
+ 'tax_configuration' => 'إعدادات الضريبة',
+ 'tax_decimals' => 'العلامة العشرية للضريبة',
+ 'tax_id' => 'الرقم الضريبي',
+ 'tax_included' => 'شامل الضريبة',
+ 'theme' => 'السمة',
+ 'theme_preview' => 'معاينة المظهر:',
+ 'thousands_separator' => 'فاصل الاف',
+ 'timezone' => 'المنطقة الزمنية',
+ 'timezone_error' => 'تختلف منطقة OSPOS الزمنية عن منطقتك الزمنية المحلية.',
+ 'top' => 'علوى',
+ 'use_destination_based_tax' => 'استخدام الضريبة المستندة على الوجهة',
+ 'user_timezone' => 'المنطقة الزمنية المحلية:',
+ 'website' => 'موقع الشركة',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'تفعيل طلبات العمل',
+ 'work_order_format' => 'شكل طلبات العمل',
];
diff --git a/app/Language/ar-EG/Login.php b/app/Language/ar-EG/Login.php
index 88a0c849d..de16724d1 100644
--- a/app/Language/ar-EG/Login.php
+++ b/app/Language/ar-EG/Login.php
@@ -1,25 +1,30 @@
"أنا لست بوت.",
- "go" => "البدء",
- "invalid_gcaptcha" => "يرجى التأكيد على أنك لست روبوتا.",
- "invalid_installation" => "يوجد مشكلة بالتنصيب, الرجاء التحقق من ملف php.ini.",
- "invalid_username_and_password" => "اسم مستخدم/كلمة سر غير صحيح.",
- "login" => "دخول",
- "logout" => "تسجيل خروج",
- "migration_needed" => "سيبدأ ترحيل قاعدة البيانات إلى{0} بعد تسجيل الدخول.",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "كلمة السر",
- "required_username" => "",
- "username" => "اسم المستخدم",
- "welcome" => "مرحباً بك في{0}!",
+ "gcaptcha" => "أنا لست بوت.",
+ "go" => "البدء",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "يرجى التأكيد على أنك لست روبوتا.",
+ "invalid_installation" => "يوجد مشكلة بالتنصيب, الرجاء التحقق من ملف php.ini.",
+ "invalid_username_and_password" => "اسم مستخدم/كلمة سر غير صحيح.",
+ "login" => "دخول",
+ "logout" => "تسجيل خروج",
+ "migrating_database" => "جارٍ ترحيل قاعدة البيانات",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "تم ترحيل قاعدة البيانات بنجاح!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "سيبدأ ترحيل قاعدة البيانات إلى{0} بعد تسجيل الدخول.",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "كلمة السر",
+ "required_username" => "",
+ "username" => "اسم المستخدم",
+ "welcome" => "مرحباً بك في{0}!"
];
diff --git a/app/Language/ar-EG/Sales.php b/app/Language/ar-EG/Sales.php
index 85dc8f9ee..7a895f7c1 100644
--- a/app/Language/ar-EG/Sales.php
+++ b/app/Language/ar-EG/Sales.php
@@ -1,231 +1,235 @@
"النقاط المتاحة",
- "rewards_package" => "فئة المكافئة",
- "rewards_remaining_balance" => "رصيد النقاط المتبقي هو ",
- "account_number" => "حساب",
- "add_payment" => "إضافة دفع",
- "amount_due" => "المبلغ المطلوب",
- "amount_tendered" => "المبلغ المدفوع",
- "authorized_signature" => "توقيع معتمد",
- "cancel_sale" => "الغاء عملية البيع",
- "cash" => "نقدى",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "تعديل الصندوق",
- "cash_deposit" => "ايداع نقدي",
- "cash_filter" => "نقدى",
- "change_due" => "الباقى",
- "change_price" => "تغيير سعر البيع",
- "check" => "شيك",
- "check_balance" => "تذكير بموعد الشيك",
- "check_filter" => "شيك",
- "close" => "",
- "comment" => "تعليق",
- "comments" => "تعليقات",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "إتمام البيع",
- "confirm_cancel_sale" => "هل أنت متأكد من الغاء عملية البيع ؟ سيتم إزالة كل الأصناف.",
- "confirm_delete" => "هل تريد حذف عمليات البيع المختارة؟",
- "confirm_restore" => "هل انت متاكد من استعادة عملية البيع؟",
- "credit" => "بطاقة إئتمانية",
- "credit_deposit" => "ايداع ببطاقة ائتمان",
- "credit_filter" => "بطاقة بنكية",
- "current_table" => "",
- "customer" => "العميل",
- "customer_address" => "العنوان",
- "customer_discount" => "الخصم",
- "customer_email" => "البريد الإلكترونى",
- "customer_location" => "المكان",
- "customer_mailchimp_status" => "حالة بريد ميل تشيمب",
- "customer_optional" => "(مطلوب للدفعات المستحقة)",
- "customer_required" => "(اجباري)",
- "customer_total" => "المجموع",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "تاريخ البيع",
- "date_range" => "الفترة الزمنية",
- "date_required" => "يجب إدخال تاريخ صحيح.",
- "date_type" => "التاريخ مطلوب.",
- "debit" => "بطاقة خصم",
- "debit_filter" => "",
- "delete" => "اسمح بالمسح",
- "delete_confirmation" => "هل أنت متأكد أنك تريد حذف عملية البيع هذه؟ لايمكن التراجع بعد الحذف.",
- "delete_entire_sale" => "حذف عملية البيع بالكامل",
- "delete_successful" => "لقد تم حذف عملية البيع بنجاح.",
- "delete_unsuccessful" => "لقد فشل حذف عملية البيع.",
- "description_abbrv" => "الوصف.",
- "discard" => "الغاء",
- "discard_quote" => "",
- "discount" => "خصم",
- "discount_included" => "% خصم",
- "discount_short" => "%",
- "due" => "مستحق",
- "due_filter" => "مستحق",
- "edit" => "تحرير",
- "edit_item" => "تحرير صنف",
- "edit_sale" => "تحرير عملية بيع",
- "email_receipt" => "إرسال الايصال بالبريد الالكترونى",
- "employee" => "الموظف",
- "entry" => "ادخال",
- "error_editing_item" => "خطاء فى تحرير الصنف",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "بحث/مسح باركود صنف",
- "find_or_scan_item_or_receipt" => "بحث/مسح باركود صنف أو ايصال",
- "giftcard" => "بطاقة هدية",
- "giftcard_balance" => "رصيد بطاقة الهدية",
- "giftcard_filter" => "",
- "giftcard_number" => "رقم بطاقة الهدية",
- "group_by_category" => "تصفية حسب الفئة",
- "group_by_type" => "تجميع حسب النوع",
- "hsn" => "رمز نظام منسق",
- "id" => "كود عملية البيع",
- "include_prices" => "يشمل الاسعار؟",
- "invoice" => "فاتورة",
- "invoice_confirm" => "هذه الفاتورة سوف ترسل إلى",
- "invoice_enable" => "إنشاء فاتورة",
- "invoice_filter" => "الفواتير",
- "invoice_no_email" => "هذا العميل ليس لدية بريد الكترونى صالح.",
- "invoice_number" => "فاتورة رقم #",
- "invoice_number_duplicate" => "من فضلك أدخل رقم فاتورة غير مكرر.",
- "invoice_sent" => "تم إرسال الفاتورة إلى",
- "invoice_total" => "إجمالي الفاتورة",
- "invoice_type_custom_invoice" => "فاتورة مخصصة (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "الفاتورة الضريبية المخصصة (custom_tax_invoice.php)",
- "invoice_type_invoice" => "الفاتورة (invoice.php)",
- "invoice_type_tax_invoice" => "الفاتورة الضريبية (tax_invoice.php)",
- "invoice_unsent" => "فشل إرسال الفاتورة إلى",
- "invoice_update" => "إعادة العد",
- "item_insufficient_of_stock" => "لايوجد مخزون كافى من الصنف.",
- "item_name" => "اسم الصنف",
- "item_number" => "صنف #",
- "item_out_of_stock" => "لايوجد مخزون من الصنف.",
- "key_browser" => "اختصارات مفيده",
- "key_cancel" => "الغاء عملية البيع/فاتوره/عرض السعار",
- "key_customer_search" => "بحث عن عميل",
- "key_finish_quote" => "انهاء عملية البيع/الفاتورة من دون الدفع",
- "key_finish_sale" => "اضافة دفع نقدي كمل واتمام عملية البيع",
- "key_full" => "الإظهار في صفحه كامله",
- "key_function" => "Function",
- "key_help" => "اختصارات",
- "key_help_modal" => "إظهار الاختصارات",
- "key_in" => "تكبير الصفحه",
- "key_item_search" => "بحث حسب الصنف",
- "key_out" => "تصغير الصفحه",
- "key_payment" => "اضافة دفعه",
- "key_print" => "طباعة الصفحة الحالية",
- "key_restore" => "إعادة ضبط اعدادات الصفحه",
- "key_search" => "البحث في التقارير",
- "key_suspend" => "حفط عملية البيع",
- "key_suspended" => "إظهار عمليات البيع المحفظه",
- "key_system" => "اختصارات متاحه",
- "key_tendered" => "تعديل المبلغ المدفوع",
- "key_title" => "اختصارات صفحة المبيعات",
- "mc" => "",
- "mode" => "وضع التسجيل",
- "must_enter_numeric" => "يجب إدخال رقم للمبلغ الفعلى المدفوع.",
- "must_enter_numeric_giftcard" => "رقم بطاقة الهدية يجب أن يكون رقم.",
- "new_customer" => "عميل جديد",
- "new_item" => "صنف جديد",
- "no_description" => "بدون وصف",
- "no_filter" => "الكل",
- "no_items_in_cart" => "لايوجد أصناف فى السلة.",
- "no_sales_to_display" => "لاتوجد عمليات بيع لعرضها.",
- "none_selected" => "لم تقم بإختيار أى عمليات بيع لحذفها.",
- "nontaxed_ind" => " ",
- "not_authorized" => "هذه العملية لا يمكن فعلها لعدم تخويلك.",
- "one_or_multiple" => "عمليات بيع",
- "payment" => "طريقة الدفع",
- "payment_amount" => "المبلغ",
- "payment_not_cover_total" => "المبلغ المدفوع لايغطى المبلغ الإجمالى.",
- "payment_type" => "طريقة",
- "payments" => "",
- "payments_total" => "إجمالى المدفوعات",
- "price" => "السعر",
- "print_after_sale" => "اطبع بعد عملية البيع",
- "quantity" => "الكمية",
- "quantity_less_than_reorder_level" => "تحذير: الكمية/العدد المطلوب غير متوفر لهذا الصنف.",
- "quantity_less_than_zero" => "تحذير! الكمية المطلوبة غير كافية، بإمكانك إتمام عملية البيع ، لكن تحقق من مخزنك.",
- "quantity_of_items" => "عدد ال {0} من الاصناف",
- "quote" => "عرض اسعار",
- "quote_number" => "رقم عرض الاسعار",
- "quote_number_duplicate" => "رقم عرض الاسعار يجب ان يكون فريد.",
- "quote_sent" => "عرض الاسعار ارسل الى",
- "quote_unsent" => "لم يتم ارسال عرض الاسعار الى",
- "receipt" => "عملية بيع #",
- "receipt_no_email" => "هذا العميل ليس له اي بريد الكتروني صحيح.",
- "receipt_number" => "إيصال بيع",
- "receipt_sent" => "تم إرسال الإيصال إلى",
- "receipt_unsent" => "فشل إرسال الإيصال إلى",
- "refund" => "نوع/سبب الاسترجاع",
- "register" => "مسجل المبيعات",
- "remove_customer" => "حذف عميل",
- "remove_discount" => "",
- "return" => "إرتجاع",
- "rewards" => "نقاط المكافئة",
- "rewards_balance" => "رصيد نقاط المكافئة",
- "sale" => "بيع",
- "sale_by_invoice" => "البيع بفاتورة رسمية",
- "sale_for_customer" => "العميل:",
- "sale_time" => "الوقت",
- "sales_tax" => "ضريبة البيع",
- "sales_total" => "",
- "select_customer" => "اختيار عميل (اختياري)",
- "send_invoice" => "إرسال الفاتورة",
- "send_quote" => "ارسال عرض الاسعار",
- "send_receipt" => "إرسال إيصال",
- "send_work_order" => "ارسال طلب عمل",
- "serial" => "مسلسل",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "عرض الفاتورة",
- "show_receipt" => "عرض الإيصال",
- "start_typing_customer_name" => "ابداء بكتابة اسم العميل...",
- "start_typing_item_name" => "ابداء بكتابة اسم أو مسح باركود الصنف...",
- "stock" => "المخزن",
- "stock_location" => "مكان المخزون",
- "sub_total" => "المجموع الفرعي",
- "successfully_deleted" => "لقد تم الحذف بنجاح",
- "successfully_restored" => "لقد تمت عملية الاستعادة بنجاح",
- "successfully_suspended_sale" => "لقد تم تعليق عملية البيع بنجاح.",
- "successfully_updated" => "لقد تم تحديث بيانات عملية البيع بنجاح.",
- "suspend_sale" => "تعليق عملية البيع",
- "suspended_doc_id" => "ملف",
- "suspended_sale_id" => "كود عملية البيع",
- "suspended_sales" => "المبيعات المعلقة",
- "table" => "طاولة",
- "takings" => "المبيع اليومي",
- "tax" => "ضريبة",
- "tax_id" => "الرقم الضريبي",
- "tax_invoice" => "فاتورة ضريبية",
- "tax_percent" => "ضريبة %",
- "taxed_ind" => "ض",
- "total" => "المجموع",
- "total_tax_exclusive" => "الإجمالى بدون الضرائب",
- "transaction_failed" => "فشل حركة البيع.",
- "unable_to_add_item" => "غير قادر على إضافة صنف لعملية البيع",
- "unsuccessfully_deleted" => "لايمكن حذف عملية/عمليات البيع.",
- "unsuccessfully_restored" => "فشل في استعادة عملية البيع.",
- "unsuccessfully_suspended_sale" => "فشل تعليق عملية البيع.",
- "unsuccessfully_updated" => "فشل تحديث عملية البيع.",
- "unsuspend" => "إلغاء تعليق",
- "unsuspend_and_delete" => "إلغاء تعليق وحذف",
- "update" => "تحديث",
- "upi" => "رقم التعريف الشخصي",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "طلب عمل",
- "work_order_number" => "رقم طلب العمل",
- "work_order_number_duplicate" => "رقم طلب العمل يجب ان يكون فريد.",
- "work_order_sent" => "تم ارسال طلب العمل الى",
- "work_order_unsent" => "فشل في ارسال طلب العمل الى",
+ 'account_number' => 'حساب',
+ 'add_payment' => 'إضافة دفع',
+ 'amount_due' => 'المبلغ المطلوب',
+ 'amount_tendered' => 'المبلغ المدفوع',
+ 'authorized_signature' => 'توقيع معتمد',
+ 'cancel_sale' => 'الغاء عملية البيع',
+ 'cash' => 'نقدى',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'تعديل الصندوق',
+ 'cash_deposit' => 'ايداع نقدي',
+ 'cash_filter' => 'نقدى',
+ 'change_due' => 'الباقى',
+ 'change_price' => 'تغيير سعر البيع',
+ 'check' => 'شيك',
+ 'check_balance' => 'تذكير بموعد الشيك',
+ 'check_filter' => 'شيك',
+ 'close' => '',
+ 'comment' => 'تعليق',
+ 'comments' => 'تعليقات',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'إتمام البيع',
+ 'confirm_cancel_sale' => 'هل أنت متأكد من الغاء عملية البيع ؟ سيتم إزالة كل الأصناف.',
+ 'confirm_delete' => 'هل تريد حذف عمليات البيع المختارة؟',
+ 'confirm_restore' => 'هل انت متاكد من استعادة عملية البيع؟',
+ 'credit' => 'بطاقة إئتمانية',
+ 'credit_deposit' => 'ايداع ببطاقة ائتمان',
+ 'credit_filter' => 'بطاقة بنكية',
+ 'current_table' => '',
+ 'customer' => 'العميل',
+ 'customer_address' => 'العنوان',
+ 'customer_discount' => 'الخصم',
+ 'customer_email' => 'البريد الإلكترونى',
+ 'customer_location' => 'المكان',
+ 'customer_mailchimp_status' => 'حالة بريد ميل تشيمب',
+ 'customer_optional' => '(مطلوب للدفعات المستحقة)',
+ 'customer_required' => '(اجباري)',
+ 'customer_total' => 'المجموع',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'النقاط المتاحة',
+ 'daily_sales' => '',
+ 'date' => 'تاريخ البيع',
+ 'date_range' => 'الفترة الزمنية',
+ 'date_required' => 'يجب إدخال تاريخ صحيح.',
+ 'date_type' => 'التاريخ مطلوب.',
+ 'debit' => 'بطاقة خصم',
+ 'debit_filter' => '',
+ 'delete' => 'اسمح بالمسح',
+ 'delete_confirmation' => 'هل أنت متأكد أنك تريد حذف عملية البيع هذه؟ لايمكن التراجع بعد الحذف.',
+ 'delete_entire_sale' => 'حذف عملية البيع بالكامل',
+ 'delete_successful' => 'لقد تم حذف عملية البيع بنجاح.',
+ 'delete_unsuccessful' => 'لقد فشل حذف عملية البيع.',
+ 'description_abbrv' => 'الوصف.',
+ 'discard' => 'الغاء',
+ 'discard_quote' => '',
+ 'discount' => 'خصم',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% خصم',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'مستحق',
+ 'due_filter' => 'مستحق',
+ 'edit' => 'تحرير',
+ 'edit_item' => 'تحرير صنف',
+ 'edit_sale' => 'تحرير عملية بيع',
+ 'email_receipt' => 'إرسال الايصال بالبريد الالكترونى',
+ 'employee' => 'الموظف',
+ 'entry' => 'ادخال',
+ 'error_editing_item' => 'خطاء فى تحرير الصنف',
+ 'find_or_scan_item' => 'بحث/مسح باركود صنف',
+ 'find_or_scan_item_or_receipt' => 'بحث/مسح باركود صنف أو ايصال',
+ 'giftcard' => 'بطاقة هدية',
+ 'giftcard_balance' => 'رصيد بطاقة الهدية',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'رقم بطاقة الهدية',
+ 'group_by_category' => 'تصفية حسب الفئة',
+ 'group_by_type' => 'تجميع حسب النوع',
+ 'hsn' => 'رمز نظام منسق',
+ 'id' => 'كود عملية البيع',
+ 'include_prices' => 'يشمل الاسعار؟',
+ 'invoice' => 'فاتورة',
+ 'invoice_confirm' => 'هذه الفاتورة سوف ترسل إلى',
+ 'invoice_enable' => 'إنشاء فاتورة',
+ 'invoice_filter' => 'الفواتير',
+ 'invoice_no_email' => 'هذا العميل ليس لدية بريد الكترونى صالح.',
+ 'invoice_number' => 'فاتورة رقم #',
+ 'invoice_number_duplicate' => 'من فضلك أدخل رقم فاتورة غير مكرر.',
+ 'invoice_sent' => 'تم إرسال الفاتورة إلى',
+ 'invoice_total' => 'إجمالي الفاتورة',
+ 'invoice_type_custom_invoice' => 'فاتورة مخصصة (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'الفاتورة الضريبية المخصصة (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'الفاتورة (invoice.php)',
+ 'invoice_type_tax_invoice' => 'الفاتورة الضريبية (tax_invoice.php)',
+ 'invoice_unsent' => 'فشل إرسال الفاتورة إلى',
+ 'invoice_update' => 'إعادة العد',
+ 'item_insufficient_of_stock' => 'لايوجد مخزون كافى من الصنف.',
+ 'item_name' => 'اسم الصنف',
+ 'item_number' => 'صنف #',
+ 'item_out_of_stock' => 'لايوجد مخزون من الصنف.',
+ 'key_browser' => 'اختصارات مفيده',
+ 'key_cancel' => 'الغاء عملية البيع/فاتوره/عرض السعار',
+ 'key_customer_search' => 'بحث عن عميل',
+ 'key_finish_quote' => 'انهاء عملية البيع/الفاتورة من دون الدفع',
+ 'key_finish_sale' => 'اضافة دفع نقدي كمل واتمام عملية البيع',
+ 'key_full' => 'الإظهار في صفحه كامله',
+ 'key_function' => 'Function',
+ 'key_help' => 'اختصارات',
+ 'key_help_modal' => 'إظهار الاختصارات',
+ 'key_in' => 'تكبير الصفحه',
+ 'key_item_search' => 'بحث حسب الصنف',
+ 'key_out' => 'تصغير الصفحه',
+ 'key_payment' => 'اضافة دفعه',
+ 'key_print' => 'طباعة الصفحة الحالية',
+ 'key_restore' => 'إعادة ضبط اعدادات الصفحه',
+ 'key_search' => 'البحث في التقارير',
+ 'key_suspend' => 'حفط عملية البيع',
+ 'key_suspended' => 'إظهار عمليات البيع المحفظه',
+ 'key_system' => 'اختصارات متاحه',
+ 'key_tendered' => 'تعديل المبلغ المدفوع',
+ 'key_title' => 'اختصارات صفحة المبيعات',
+ 'mc' => '',
+ 'mode' => 'وضع التسجيل',
+ 'must_enter_numeric' => 'يجب إدخال رقم للمبلغ الفعلى المدفوع.',
+ 'must_enter_numeric_giftcard' => 'رقم بطاقة الهدية يجب أن يكون رقم.',
+ 'must_enter_reference_code' => 'يجب إدخال رقم المرجع/الاسترداد.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'عميل جديد',
+ 'new_item' => 'صنف جديد',
+ 'no_description' => 'بدون وصف',
+ 'no_filter' => 'الكل',
+ 'no_items_in_cart' => 'لايوجد أصناف فى السلة.',
+ 'no_sales_to_display' => 'لاتوجد عمليات بيع لعرضها.',
+ 'none_selected' => 'لم تقم بإختيار أى عمليات بيع لحذفها.',
+ 'nontaxed_ind' => ' ',
+ 'not_authorized' => 'هذه العملية لا يمكن فعلها لعدم تخويلك.',
+ 'one_or_multiple' => 'عمليات بيع',
+ 'payment' => 'طريقة الدفع',
+ 'payment_amount' => 'المبلغ',
+ 'payment_not_cover_total' => 'المبلغ المدفوع لايغطى المبلغ الإجمالى.',
+ 'payment_type' => 'طريقة',
+ 'payments' => '',
+ 'payments_total' => 'إجمالى المدفوعات',
+ 'price' => 'السعر',
+ 'print_after_sale' => 'اطبع بعد عملية البيع',
+ 'quantity' => 'الكمية',
+ 'quantity_less_than_reorder_level' => 'تحذير: الكمية/العدد المطلوب غير متوفر لهذا الصنف.',
+ 'quantity_less_than_zero' => 'تحذير! الكمية المطلوبة غير كافية، بإمكانك إتمام عملية البيع ، لكن تحقق من مخزنك.',
+ 'quantity_of_items' => 'عدد ال {0} من الاصناف',
+ 'quote' => 'عرض اسعار',
+ 'quote_number' => 'رقم عرض الاسعار',
+ 'quote_number_duplicate' => 'رقم عرض الاسعار يجب ان يكون فريد.',
+ 'quote_sent' => 'عرض الاسعار ارسل الى',
+ 'quote_unsent' => 'لم يتم ارسال عرض الاسعار الى',
+ 'receipt' => 'عملية بيع #',
+ 'receipt_no_email' => 'هذا العميل ليس له اي بريد الكتروني صحيح.',
+ 'receipt_number' => 'إيصال بيع',
+ 'receipt_sent' => 'تم إرسال الإيصال إلى',
+ 'receipt_unsent' => 'فشل إرسال الإيصال إلى',
+ 'reference_code' => 'كود مرجع الدفع',
+ 'reference_code_invalid_characters' => 'يجب أن يحتوي كود المرجع على أحرف وأرقام فقط.',
+ 'reference_code_length_error' => 'طول كود المرجع غير صالح.',
+ 'refund' => 'نوع/سبب الاسترجاع',
+ 'register' => 'مسجل المبيعات',
+ 'remove_customer' => 'حذف عميل',
+ 'remove_discount' => '',
+ 'return' => 'إرتجاع',
+ 'rewards' => 'نقاط المكافئة',
+ 'rewards_balance' => 'رصيد نقاط المكافئة',
+ 'rewards_package' => 'فئة المكافئة',
+ 'rewards_remaining_balance' => 'رصيد النقاط المتبقي هو ',
+ 'sale' => 'بيع',
+ 'sale_by_invoice' => 'البيع بفاتورة رسمية',
+ 'sale_for_customer' => 'العميل:',
+ 'sale_time' => 'الوقت',
+ 'sales_tax' => 'ضريبة البيع',
+ 'sales_total' => '',
+ 'select_customer' => 'اختيار عميل (اختياري)',
+ 'send_invoice' => 'إرسال الفاتورة',
+ 'send_quote' => 'ارسال عرض الاسعار',
+ 'send_receipt' => 'إرسال إيصال',
+ 'send_work_order' => 'ارسال طلب عمل',
+ 'serial' => 'مسلسل',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'عرض الفاتورة',
+ 'show_receipt' => 'عرض الإيصال',
+ 'start_typing_customer_name' => 'ابداء بكتابة اسم العميل...',
+ 'start_typing_item_name' => 'ابداء بكتابة اسم أو مسح باركود الصنف...',
+ 'stock' => 'المخزن',
+ 'stock_location' => 'مكان المخزون',
+ 'sub_total' => 'المجموع الفرعي',
+ 'successfully_deleted' => 'لقد تم الحذف بنجاح',
+ 'successfully_restored' => 'لقد تمت عملية الاستعادة بنجاح',
+ 'successfully_suspended_sale' => 'لقد تم تعليق عملية البيع بنجاح.',
+ 'successfully_updated' => 'لقد تم تحديث بيانات عملية البيع بنجاح.',
+ 'suspend_sale' => 'تعليق عملية البيع',
+ 'suspended_doc_id' => 'ملف',
+ 'suspended_sale_id' => 'كود عملية البيع',
+ 'suspended_sales' => 'المبيعات المعلقة',
+ 'table' => 'طاولة',
+ 'takings' => 'المبيع اليومي',
+ 'tax' => 'ضريبة',
+ 'tax_id' => 'الرقم الضريبي',
+ 'tax_invoice' => 'فاتورة ضريبية',
+ 'tax_percent' => 'ضريبة %',
+ 'taxed_ind' => 'ض',
+ 'total' => 'المجموع',
+ 'total_tax_exclusive' => 'الإجمالى بدون الضرائب',
+ 'transaction_failed' => 'فشل حركة البيع.',
+ 'unable_to_add_item' => 'غير قادر على إضافة صنف لعملية البيع',
+ 'unsuccessfully_deleted' => 'لايمكن حذف عملية/عمليات البيع.',
+ 'unsuccessfully_restored' => 'فشل في استعادة عملية البيع.',
+ 'unsuccessfully_suspended_sale' => 'فشل تعليق عملية البيع.',
+ 'unsuccessfully_updated' => 'فشل تحديث عملية البيع.',
+ 'unsuspend' => 'إلغاء تعليق',
+ 'unsuspend_and_delete' => 'إلغاء تعليق وحذف',
+ 'update' => 'تحديث',
+ 'upi' => 'رقم التعريف الشخصي',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'طلب عمل',
+ 'work_order_number' => 'رقم طلب العمل',
+ 'work_order_number_duplicate' => 'رقم طلب العمل يجب ان يكون فريد.',
+ 'work_order_sent' => 'تم ارسال طلب العمل الى',
+ 'work_order_unsent' => 'فشل في ارسال طلب العمل الى',
];
diff --git a/app/Language/ar-LB/Config.php b/app/Language/ar-LB/Config.php
index c24fd73c3..30faacd61 100644
--- a/app/Language/ar-LB/Config.php
+++ b/app/Language/ar-LB/Config.php
@@ -1,332 +1,335 @@
"عنوان الشركة",
- "address_required" => "عنوان الشركة مطلوب.",
- "all_set" => "صلاحيات الملفات مضبطة بالطريقه الصحيحه!",
- "allow_duplicate_barcodes" => "السماح بتشابة الباركود",
- "apostrophe" => "الفاصلة",
- "backup_button" => "نسخ إحتياطى",
- "backup_database" => "نسخ إحتياطى لقاعدة البيانات",
- "barcode" => "باركود",
- "barcode_company" => "اسم الشركة",
- "barcode_configuration" => "اعدادات الباركود",
- "barcode_content" => "محتويات الباركود",
- "barcode_first_row" => "الصف 1",
- "barcode_font" => "الخط",
- "barcode_formats" => "اشكال الادخال",
- "barcode_generate_if_empty" => "توليد اذا كان الباركود فارغ.",
- "barcode_height" => "الارتفاع (px)",
- "barcode_id" => "كود/اسم الصنف",
- "barcode_info" => "معلومات اعدادات الباركود",
- "barcode_layout" => "تخطيط الباركود",
- "barcode_name" => "الاسم",
- "barcode_number" => "الباركود UPC/EAN/ISBN",
- "barcode_number_in_row" => "الرقم فى الصف",
- "barcode_page_cellspacing" => "المسافة بين الخلايا فى صفحة العرض.",
- "barcode_page_width" => "عرض الصفحة",
- "barcode_price" => "السعر",
- "barcode_second_row" => "الصف 2",
- "barcode_third_row" => "الصف 3",
- "barcode_tooltip" => "تحذير: قد تؤدي هذه الميزة إلى استيراد اصناف مكررة أو إنشاؤها. لا تستخدمها إذا كنت لا تريد الباركود مكررة.",
- "barcode_type" => "نوعية الباركود",
- "barcode_width" => "العرض (px)",
- "bottom" => "الأسفل",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "فواصل النقدية",
- "cash_decimals_tooltip" => "إذا كانت الكسور العشرية النقدية وعشرية العملات هي نفسها ثم لن يتم تقريب النقدية.",
- "cash_rounding" => "التقريب النقدي",
- "category_dropdown" => "إظهار الفئة كقائمة منسدلة",
- "center" => "الوسط",
- "change_apperance_tooltip" => "",
- "comma" => "فاصلة",
- "company" => "اسم الشركة",
- "company_avatar" => "",
- "company_change_image" => "تغيير الصورة",
- "company_logo" => "شعار الشركة",
- "company_remove_image" => "إزالة الصورة",
- "company_required" => "اسم الشركة مطلوب",
- "company_select_image" => "اختار صورة",
- "company_website_url" => "الموقع الإلكترونى للشركة غير صحيح.",
- "country_codes" => "أكواد الدولة",
- "country_codes_tooltip" => "قائمة مفصولة بفاصلة لاسماء الدول للبحث.",
- "currency_code" => "رمز العملة",
- "currency_decimals" => "العلامة العشرية للعملة",
- "currency_symbol" => "رمز العملة",
- "current_employee_only" => "",
- "customer_reward" => "المكافآت",
- "customer_reward_duplicate" => "المكافئة يجب ان تكون فريدة.",
- "customer_reward_enable" => "تمكين مكافآت العميل",
- "customer_reward_invalid_chars" => "لا يمكن أن تحتوي المكافأة على '_'",
- "customer_reward_required" => "المكافأة هي حقل مطلوب",
- "customer_sales_tax_support" => "دعم الضرائب المبيعات العملاء",
- "date_or_time_format" => "تصفية التاريخ والوقت",
- "datetimeformat" => "شكل الوقت و التاريخ",
- "decimal_point" => "العلامة العشرية",
- "default_barcode_font_size_number" => "الحجم الافتراضي لخط الباركود لابد أن يكون رقم.",
- "default_barcode_font_size_required" => "الحجم الافتراضي لخط الباركود مطلوب.",
- "default_barcode_height_number" => "الارتفاع الافتراضي للباركود لابد ان يكون رقم.",
- "default_barcode_height_required" => "الارتفاع الافتراضي للباركود مطلوب.",
- "default_barcode_num_in_row_number" => "رقم الباركود فى اى سطر لابد ان يكون رقم.",
- "default_barcode_num_in_row_required" => "رقم الباركود فى اى سطر مطلوب.",
- "default_barcode_page_cellspacing_number" => "المسافة الافتراضية بين خلايا الباركود لابد أن تكون رقم.",
- "default_barcode_page_cellspacing_required" => "المسافة الافتراضية بين خلايا الباركود مطلوبة.",
- "default_barcode_page_width_number" => "عرض الصفحة الافتراضي للباركود لابد ان يكون رقم.",
- "default_barcode_page_width_required" => "عرض الصفحة الافتراضي للباركود مطلوب.",
- "default_barcode_width_number" => "العرض الافتراضي للباركود لابد ان يكون رقم.",
- "default_barcode_width_required" => "العرض الافتراضي للباركود مطلوب.",
- "default_item_columns" => "الخانات المراد إظهارها",
- "default_origin_tax_code" => "كود الضريبة الاساسي الافتراضي",
- "default_receivings_discount" => "خصم الإيصالات الافتراضي",
- "default_receivings_discount_number" => "خصم الإيصالات الافتراضي يجب ان يكون رقم.",
- "default_receivings_discount_required" => "خصم الإيصالات الافتراضي هي خانة اجبارية.",
- "default_sales_discount" => "نسبة الخصم الافتراضية",
- "default_sales_discount_number" => "نسبة الخصم الافتراضية لابد ان تكون رقم.",
- "default_sales_discount_required" => "نسبة الخصم الافتراضية مطلوبة.",
- "default_tax_category" => "فئة الضرائب الافتراضية",
- "default_tax_code" => "قانون الضرائب الافتراضي",
- "default_tax_jurisdiction" => "الاختصاص الضريبي الافتراضي",
- "default_tax_name_number" => "يجب أن يكون الاسم الافتراضي للضريبة سلسلة.",
- "default_tax_name_required" => "اسم الضريبة الافتراضية مطلوب.",
- "default_tax_rate" => "معدل الضريبة الافتراضي %",
- "default_tax_rate_1" => "معدل الضريبة 1",
- "default_tax_rate_2" => "معدل الضريبة 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "معدل الضريبة الافتراضي يجب أن يكون رقم.",
- "default_tax_rate_required" => "معدل الضريبة الافتراضي مطلوب.",
- "derive_sale_quantity" => "السماح بأسعار البيع المشتقة",
- "derive_sale_quantity_tooltip" => "إذا تم تحديدها، فسيتم توفير نوع جديد من الاصناف للاصناف المطلوبة حسب المبلغ الموسع",
- "dinner_table" => "طاولة",
- "dinner_table_duplicate" => "الطاولة يجب ان تكون فريدة.",
- "dinner_table_enable" => "تمكين جداول الطاولات",
- "dinner_table_invalid_chars" => "لا يمكن أن يحتوي اسم الطاولة على '_'.",
- "dinner_table_required" => "الطاولة هو حقل مطلوب.",
- "dot" => "نقطة",
- "email" => "البريد الإلكتروني",
- "email_configuration" => "إعدادات البريد الإلكتروني",
- "email_mailpath" => "مسار ارسال البريد",
- "email_protocol" => "بروتوكول",
- "email_receipt_check_behaviour" => "ارسال رسائل الكترونية",
- "email_receipt_check_behaviour_always" => "مختار دائما",
- "email_receipt_check_behaviour_last" => "تذكر آخر إختيار",
- "email_receipt_check_behaviour_never" => "دائما غير مختار",
- "email_smtp_crypto" => "تشفير SMTP",
- "email_smtp_host" => "خادم SMTP",
- "email_smtp_pass" => "كلمة سر SMTP",
- "email_smtp_port" => "رقم منفذ SMTP",
- "email_smtp_timeout" => "وقت فشل المحاولة (ثوانى) لـ SMTP",
- "email_smtp_user" => "اسم مستخدم SMTP",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "فرض نظام الخصوصية",
- "enforce_privacy_tooltip" => "حماية ملفات ومعلومات المستخدم عند الحذف",
- "fax" => "الفاكس",
- "file_perm" => "يوجد خطأ في ضبط اعدادات وصلاحيات الملفات نرجوا إعادة الضبط.",
- "financial_year" => "بداية السنة المالية",
- "financial_year_apr" => "1 أبريل",
- "financial_year_aug" => "1 أغسطس",
- "financial_year_dec" => "1 ديسمبر",
- "financial_year_feb" => "1 فبراير",
- "financial_year_jan" => "1 يناير",
- "financial_year_jul" => "1 يوليو",
- "financial_year_jun" => "1 يونيو",
- "financial_year_mar" => "1 مارس",
- "financial_year_may" => "1 مايو",
- "financial_year_nov" => "1 نوفمبر",
- "financial_year_oct" => "1 أكتوبر",
- "financial_year_sep" => "1 سبتمبر",
- "floating_labels" => "تسميات عائمة",
- "gcaptcha_enable" => "صفحة تسجيل الدخول ريكابتشا",
- "gcaptcha_secret_key" => "مفتاح السرية ريكابتشا",
- "gcaptcha_secret_key_required" => "مفتاح السرية ريكابتشا هو حقل مطلوب",
- "gcaptcha_site_key" => "ريكابتشا مفتاح الموقع",
- "gcaptcha_site_key_required" => "ريكابتشا مفتاح الموقع هو حقل مطلوب",
- "gcaptcha_tooltip" => "احرص على حماية صفحة تسجيل الدخول باستخدام ريكابتشا من غوغل.",
- "general" => "عام",
- "general_configuration" => "إعدادات عامة",
- "giftcard_number" => "رقم كارت الهدية",
- "giftcard_random" => "توليد عشوائي",
- "giftcard_series" => "توليد في السلسلة",
- "image_allowed_file_types" => "أنواع الملفات المسموح بها",
- "image_max_height_tooltip" => "أقصى ارتفاع مسموح به لتحميلات الصور بالبكسل (بكسل).",
- "image_max_size_tooltip" => "أقصى حجم مسموح به للملف لتحميل الصور (بالكيلو بايت).",
- "image_max_width_tooltip" => "أقصى عرض مسموح به لتحميلات الصور بالبكسل (بكسل).",
- "image_restrictions" => "قيود تحميل الصور",
- "include_hsn" => "تشمل الدعم لرمز نظام منسق",
- "info" => "معلومات",
- "info_configuration" => "معلومات الشركة",
- "input_groups" => "مجموعات الإدخال",
- "integrations" => "التكامل",
- "integrations_configuration" => "تكامل",
- "invoice" => "الفاتورة",
- "invoice_configuration" => "إعدادات طباعة الفاتورة",
- "invoice_default_comments" => "التعليق الافتراضي على الفاتورة",
- "invoice_email_message" => "قالب البريد الإلكتروني للفاتورة",
- "invoice_enable" => "تفعيل الفوترة",
- "invoice_printer" => "طابعة الفواتير",
- "invoice_type" => "نوع الفاتورة",
- "is_readable" => "يمكن قراءته ، ولكن تم تعيين الأذونات بشكل غير صحيح. يرجى ضبطه على 640 أو 660 والتحديث.",
- "is_writable" => "ممكن التعديل عليه، لكن الصلاحيات هي اكثر من 750. نرجوا الضبط الى 750.",
- "item_markup" => "",
- "jsprintsetup_required" => "تحذير! هذه الخاصية غير المفعلة سوف تعمل فقط مع وجود الاضافة jsPrintSetup على متصفح فايرفوكس. حفظ على أى حال؟",
- "language" => "اللغة",
- "last_used_invoice_number" => "اخر رقم مستخدم للفاتورة",
- "last_used_quote_number" => "اخر رقم مستخدم لعرض الاسعار",
- "last_used_work_order_number" => "آخر رقم مستخدم في طلبات العمل",
- "left" => "يسار",
- "license" => "الرخصة",
- "license_configuration" => "نص الرخصة",
- "line_sequence" => "تسلسل خطي",
- "lines_per_page" => "عدد السطور فى الصفحة",
- "lines_per_page_number" => "عدد السطور فى الصفحة يجب أن يكون رقم.",
- "lines_per_page_required" => "عدد السطور فى الصفحة مطلوب.",
- "locale" => "إقليمية",
- "locale_configuration" => "الإعدادات الإقليمية",
- "locale_info" => "معلومات التهيئة الإقليمية",
- "location" => "المخزون",
- "location_configuration" => "أماكن المخزون",
- "location_info" => "معلومات تهيئة الأماكن",
- "login_form" => "نمط نموذج تسجيل الدخول",
- "logout" => "هل تريد عمل نسخة إحتياطية قبل الخروج؟ اضغط [نعم] لعمل النسخة أو [الغاء] للخروج.",
- "mailchimp" => "ميل تشامب",
- "mailchimp_api_key" => "مفتاح ميل شيمب",
- "mailchimp_configuration" => "إعدادات ميل شيمب",
- "mailchimp_key_successfully" => "نجاح.",
- "mailchimp_key_unsuccessfully" => "فشل.",
- "mailchimp_lists" => "قوائم ميل شيمب",
- "mailchimp_tooltip" => "انقر على رمز مفتاح API.",
- "message" => "الرسائل",
- "message_configuration" => "إعدادات الرسائل",
- "msg_msg" => "الرسائل النصية المحفوظة",
- "msg_msg_placeholder" => "إذا أردت إستخدام قالب للرسائل القصيرة احفظه هنا. عدا ذلك أترك هذا الحقل فارغ.",
- "msg_pwd" => "SMS-API كلمة السر لـ",
- "msg_pwd_required" => "مطلوب SMS-API كلمة السر لـ",
- "msg_src" => "SMS-API كود المرسل لـ",
- "msg_src_required" => "مطلوب SMS-API كود المرسل لـ",
- "msg_uid" => "SMS-API اسم المستخدم لـ",
- "msg_uid_required" => "مطلوب SMS-API اسم المستخدم لـ",
- "multi_pack_enabled" => "رزم متعددة لكل صنف",
- "no_risk" => "لا يوجد اي مشاكل في صلاحيات الملفات.",
- "none" => "لايوجد",
- "notify_alignment" => "مكان عرض رسائل المعلومات",
- "number_format" => "شكل الرقم",
- "number_locale" => "التهيئة الاقليمية",
- "number_locale_invalid" => "التهيئة الإقليمية المختارة غير صحية، راجع الرابط الموجود فى الملاحظة لاختيار تهيئة مناسبة.",
- "number_locale_required" => "رقم التهيئة الإقليمية مطلوب.",
- "number_locale_tooltip" => "إيجاد تهيئة إقليمية مناسبة عبر الرابط.",
- "os_timezone" => "المنطقة الزمنية OSPOS:",
- "ospos_info" => "معلومات التثبيت OSPOS",
- "payment_options_order" => "ترتيب خيارات الدفع",
- "perm_risk" => "صلاحيات الملفات ممكن ان تشكل خطر في حال كانت غير صحيحة.",
- "phone" => "هاتف الشركة",
- "phone_required" => "هاتف الشركة مطلوب.",
- "print_bottom_margin" => "الهامش السفلي",
- "print_bottom_margin_number" => "الهامش السفلي يجب أن يكون رقم.",
- "print_bottom_margin_required" => "الهامش السفلي مطلوب.",
- "print_delay_autoreturn" => "العودة الى عمليات البيع تلقائيا ( عدد الثواني )",
- "print_delay_autoreturn_number" => "الزمن المحدد للعودة الى عمليات البيع هو خانة اجبارية.",
- "print_delay_autoreturn_required" => "الزمن المحدد للعودة الى عمليات البيع يجب ان يكون رقم.",
- "print_footer" => "طباعة تذييل المتصفح",
- "print_header" => "طباعة ترويسة المتصفح",
- "print_left_margin" => "الهامش الأيسر",
- "print_left_margin_number" => "الهامش الأيسر يجب ان يكون رقم.",
- "print_left_margin_required" => "الهامش الأيسر مطلوب.",
- "print_receipt_check_behaviour" => "خانة طباعة الفواتير",
- "print_receipt_check_behaviour_always" => "دائما مختار",
- "print_receipt_check_behaviour_last" => "تذكر آخر اختيار",
- "print_receipt_check_behaviour_never" => "دائما ليس مختار",
- "print_right_margin" => "الهامش الأيمن",
- "print_right_margin_number" => "الهامش الأيمن يجب أن يكون رقم.",
- "print_right_margin_required" => "الهامش الأيمن مطلوب.",
- "print_silently" => "عرض صندوق حوار طباعة",
- "print_top_margin" => "الهامش العلوى",
- "print_top_margin_number" => "الهامش العلوى يجب أن يكون رقم.",
- "print_top_margin_required" => "الهامش العلوى مطلوب.",
- "quantity_decimals" => "العلامة العشرية للكمية",
- "quick_cash_enable" => "",
- "quote_default_comments" => "ملاحظات طلبات العمل الثابتة",
- "receipt" => "الإيصال",
- "receipt_category" => "",
- "receipt_configuration" => "إعدادات طباعة الايصالات",
- "receipt_default" => "افتراضى",
- "receipt_font_size" => "الخط",
- "receipt_font_size_number" => "رقم الخط يجب ان يكون رقم.",
- "receipt_font_size_required" => "رقم الخط مطلوب.",
- "receipt_info" => "معلومات تهيئة الإيصالات",
- "receipt_printer" => "طابعة تذاكر",
- "receipt_short" => "مختصر",
- "receipt_show_company_name" => "عرض اسم الشركة",
- "receipt_show_description" => "عرض الوصف",
- "receipt_show_serialnumber" => "عرض الرقم المسلسل",
- "receipt_show_tax_ind" => "عرض مؤشر الضريبة",
- "receipt_show_taxes" => "عرض الضرائب",
- "receipt_show_total_discount" => "عرض إجمالى الخصم",
- "receipt_template" => "قالب الايصال",
- "receiving_calculate_average_price" => "حساب متوسط سعر الأصناف المستلمة",
- "recv_invoice_format" => "شكل فاتورة الإستلام",
- "register_mode_default" => "نمط التسجيل الافتراضي",
- "report_an_issue" => "بلغ عن خطأ",
- "return_policy_required" => "سياسة الإسترجاع مطلوب.",
- "reward" => "المكافاة",
- "reward_configuration" => "اعدادات المكافاة",
- "right" => "يمين",
- "sales_invoice_format" => "شكل فاتورة البيع",
- "sales_quote_format" => "شكل فاتورة عرض الاسعار",
- "mailpath_invalid" => "",
- "saved_successfully" => "تم حفظ التهيئة بنجاح.",
- "saved_unsuccessfully" => "لم يتم حفظ التهيئة بنجاح.",
- "security_issue" => "تحذير من ثغرة أمنية",
- "server_notice" => "يرجى استخدام المعلومات أدناه للإبلاغ عن المشكلة.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "اظهار ايكونة المكتب",
- "statistics" => "إرسال اﻹحصائيات",
- "statistics_tooltip" => "إرسال اﻹحصائيات ﻷغراض التطوير و التحسين.",
- "stock_location" => "مكان المخزون",
- "stock_location_duplicate" => "من فضلك إستخدم اسم مكان غير مكرر.",
- "stock_location_invalid_chars" => "مكان المخزون لايمكن أن يحتوى على '_'.",
- "stock_location_required" => "مكان المخزون مطلوب.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "العامود 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "تخطيط اقتراحات البحث",
- "suggestions_second_column" => "العامود 2",
- "suggestions_third_column" => "العامود 3",
- "system_conf" => "اعدادات اخرى",
- "system_info" => "System Info",
- "table" => "جدول",
- "table_configuration" => "اعدادات الجدول",
- "takings_printer" => "طابعة الإيراد",
- "tax" => "الضريبة",
- "tax_category" => "تصنيف الضريبة",
- "tax_category_duplicate" => "الفئة الضريبية اللتي تم ادخالها موجودة.",
- "tax_category_invalid_chars" => "الفئة الضريبية اللتي تم ادخالها غير صحيحة.",
- "tax_category_required" => "الفئة الضريبية مطلوبة.",
- "tax_category_used" => "الفئة الضريبية اللتي تم تحديدها لا يمكن حذفها لانها قيد الاستعمال.",
- "tax_configuration" => "إعدادات الضريبة",
- "tax_decimals" => "العلامة العشرية للضريبة",
- "tax_id" => "الرقم الضريبي",
- "tax_included" => "شامل الضريبة",
- "theme" => "السمة",
- "theme_preview" => "معاينة المظهر:",
- "thousands_separator" => "فاصل الاف",
- "timezone" => "المنطقة الزمنية",
- "timezone_error" => "تختلف منطقة OSPOS الزمنية عن منطقتك الزمنية المحلية.",
- "top" => "علوى",
- "use_destination_based_tax" => "استخدام الضريبة المستندة على الوجهة",
- "user_timezone" => "المنطقة الزمنية المحلية:",
- "website" => "موقع الشركة",
- "wholesale_markup" => "",
- "work_order_enable" => "تفعيل طلبات العمل",
- "work_order_format" => "شكل طلبات العمل",
+ 'address' => 'عنوان الشركة',
+ 'address_required' => 'عنوان الشركة مطلوب.',
+ 'all_set' => 'صلاحيات الملفات مضبطة بالطريقه الصحيحه!',
+ 'allow_duplicate_barcodes' => 'السماح بتشابة الباركود',
+ 'apostrophe' => 'الفاصلة',
+ 'backup_button' => 'نسخ إحتياطى',
+ 'backup_database' => 'نسخ إحتياطى لقاعدة البيانات',
+ 'barcode' => 'باركود',
+ 'barcode_company' => 'اسم الشركة',
+ 'barcode_configuration' => 'اعدادات الباركود',
+ 'barcode_content' => 'محتويات الباركود',
+ 'barcode_first_row' => 'الصف 1',
+ 'barcode_font' => 'الخط',
+ 'barcode_formats' => 'اشكال الادخال',
+ 'barcode_generate_if_empty' => 'توليد اذا كان الباركود فارغ.',
+ 'barcode_height' => 'الارتفاع (px)',
+ 'barcode_id' => 'كود/اسم الصنف',
+ 'barcode_info' => 'معلومات اعدادات الباركود',
+ 'barcode_layout' => 'تخطيط الباركود',
+ 'barcode_name' => 'الاسم',
+ 'barcode_number' => 'الباركود UPC/EAN/ISBN',
+ 'barcode_number_in_row' => 'الرقم فى الصف',
+ 'barcode_page_cellspacing' => 'المسافة بين الخلايا فى صفحة العرض.',
+ 'barcode_page_width' => 'عرض الصفحة',
+ 'barcode_price' => 'السعر',
+ 'barcode_second_row' => 'الصف 2',
+ 'barcode_third_row' => 'الصف 3',
+ 'barcode_tooltip' => 'تحذير: قد تؤدي هذه الميزة إلى استيراد اصناف مكررة أو إنشاؤها. لا تستخدمها إذا كنت لا تريد الباركود مكررة.',
+ 'barcode_type' => 'نوعية الباركود',
+ 'barcode_width' => 'العرض (px)',
+ 'bottom' => 'الأسفل',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'فواصل النقدية',
+ 'cash_decimals_tooltip' => 'إذا كانت الكسور العشرية النقدية وعشرية العملات هي نفسها ثم لن يتم تقريب النقدية.',
+ 'cash_rounding' => 'التقريب النقدي',
+ 'category_dropdown' => 'إظهار الفئة كقائمة منسدلة',
+ 'center' => 'الوسط',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'فاصلة',
+ 'company' => 'اسم الشركة',
+ 'company_avatar' => '',
+ 'company_change_image' => 'تغيير الصورة',
+ 'company_logo' => 'شعار الشركة',
+ 'company_remove_image' => 'إزالة الصورة',
+ 'company_required' => 'اسم الشركة مطلوب',
+ 'company_select_image' => 'اختار صورة',
+ 'company_website_url' => 'الموقع الإلكترونى للشركة غير صحيح.',
+ 'country_codes' => 'أكواد الدولة',
+ 'country_codes_tooltip' => 'قائمة مفصولة بفاصلة لاسماء الدول للبحث.',
+ 'currency_code' => 'رمز العملة',
+ 'currency_decimals' => 'العلامة العشرية للعملة',
+ 'currency_symbol' => 'رمز العملة',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'المكافآت',
+ 'customer_reward_duplicate' => 'المكافئة يجب ان تكون فريدة.',
+ 'customer_reward_enable' => 'تمكين مكافآت العميل',
+ 'customer_reward_invalid_chars' => "لا يمكن أن تحتوي المكافأة على '_'",
+ 'customer_reward_required' => 'المكافأة هي حقل مطلوب',
+ 'customer_sales_tax_support' => 'دعم الضرائب المبيعات العملاء',
+ 'date_or_time_format' => 'تصفية التاريخ والوقت',
+ 'datetimeformat' => 'شكل الوقت و التاريخ',
+ 'decimal_point' => 'العلامة العشرية',
+ 'default_barcode_font_size_number' => 'الحجم الافتراضي لخط الباركود لابد أن يكون رقم.',
+ 'default_barcode_font_size_required' => 'الحجم الافتراضي لخط الباركود مطلوب.',
+ 'default_barcode_height_number' => 'الارتفاع الافتراضي للباركود لابد ان يكون رقم.',
+ 'default_barcode_height_required' => 'الارتفاع الافتراضي للباركود مطلوب.',
+ 'default_barcode_num_in_row_number' => 'رقم الباركود فى اى سطر لابد ان يكون رقم.',
+ 'default_barcode_num_in_row_required' => 'رقم الباركود فى اى سطر مطلوب.',
+ 'default_barcode_page_cellspacing_number' => 'المسافة الافتراضية بين خلايا الباركود لابد أن تكون رقم.',
+ 'default_barcode_page_cellspacing_required' => 'المسافة الافتراضية بين خلايا الباركود مطلوبة.',
+ 'default_barcode_page_width_number' => 'عرض الصفحة الافتراضي للباركود لابد ان يكون رقم.',
+ 'default_barcode_page_width_required' => 'عرض الصفحة الافتراضي للباركود مطلوب.',
+ 'default_barcode_width_number' => 'العرض الافتراضي للباركود لابد ان يكون رقم.',
+ 'default_barcode_width_required' => 'العرض الافتراضي للباركود مطلوب.',
+ 'default_item_columns' => 'الخانات المراد إظهارها',
+ 'default_origin_tax_code' => 'كود الضريبة الاساسي الافتراضي',
+ 'default_receivings_discount' => 'خصم الإيصالات الافتراضي',
+ 'default_receivings_discount_number' => 'خصم الإيصالات الافتراضي يجب ان يكون رقم.',
+ 'default_receivings_discount_required' => 'خصم الإيصالات الافتراضي هي خانة اجبارية.',
+ 'default_sales_discount' => 'نسبة الخصم الافتراضية',
+ 'default_sales_discount_number' => 'نسبة الخصم الافتراضية لابد ان تكون رقم.',
+ 'default_sales_discount_required' => 'نسبة الخصم الافتراضية مطلوبة.',
+ 'default_tax_category' => 'فئة الضرائب الافتراضية',
+ 'default_tax_code' => 'قانون الضرائب الافتراضي',
+ 'default_tax_jurisdiction' => 'الاختصاص الضريبي الافتراضي',
+ 'default_tax_name_number' => 'يجب أن يكون الاسم الافتراضي للضريبة سلسلة.',
+ 'default_tax_name_required' => 'اسم الضريبة الافتراضية مطلوب.',
+ 'default_tax_rate' => 'معدل الضريبة الافتراضي %',
+ 'default_tax_rate_1' => 'معدل الضريبة 1',
+ 'default_tax_rate_2' => 'معدل الضريبة 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'معدل الضريبة الافتراضي يجب أن يكون رقم.',
+ 'default_tax_rate_required' => 'معدل الضريبة الافتراضي مطلوب.',
+ 'derive_sale_quantity' => 'السماح بأسعار البيع المشتقة',
+ 'derive_sale_quantity_tooltip' => 'إذا تم تحديدها، فسيتم توفير نوع جديد من الاصناف للاصناف المطلوبة حسب المبلغ الموسع',
+ 'dinner_table' => 'طاولة',
+ 'dinner_table_duplicate' => 'الطاولة يجب ان تكون فريدة.',
+ 'dinner_table_enable' => 'تمكين جداول الطاولات',
+ 'dinner_table_invalid_chars' => "لا يمكن أن يحتوي اسم الطاولة على '_'.",
+ 'dinner_table_required' => 'الطاولة هو حقل مطلوب.',
+ 'dot' => 'نقطة',
+ 'email' => 'البريد الإلكتروني',
+ 'email_configuration' => 'إعدادات البريد الإلكتروني',
+ 'email_mailpath' => 'مسار ارسال البريد',
+ 'email_protocol' => 'بروتوكول',
+ 'email_receipt_check_behaviour' => 'ارسال رسائل الكترونية',
+ 'email_receipt_check_behaviour_always' => 'مختار دائما',
+ 'email_receipt_check_behaviour_last' => 'تذكر آخر إختيار',
+ 'email_receipt_check_behaviour_never' => 'دائما غير مختار',
+ 'email_smtp_crypto' => 'تشفير SMTP',
+ 'email_smtp_host' => 'خادم SMTP',
+ 'email_smtp_pass' => 'كلمة سر SMTP',
+ 'email_smtp_port' => 'رقم منفذ SMTP',
+ 'email_smtp_timeout' => 'وقت فشل المحاولة (ثوانى) لـ SMTP',
+ 'email_smtp_user' => 'اسم مستخدم SMTP',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'فرض نظام الخصوصية',
+ 'enforce_privacy_tooltip' => 'حماية ملفات ومعلومات المستخدم عند الحذف',
+ 'fax' => 'الفاكس',
+ 'file_perm' => 'يوجد خطأ في ضبط اعدادات وصلاحيات الملفات نرجوا إعادة الضبط.',
+ 'financial_year' => 'بداية السنة المالية',
+ 'financial_year_apr' => '1 أبريل',
+ 'financial_year_aug' => '1 أغسطس',
+ 'financial_year_dec' => '1 ديسمبر',
+ 'financial_year_feb' => '1 فبراير',
+ 'financial_year_jan' => '1 يناير',
+ 'financial_year_jul' => '1 يوليو',
+ 'financial_year_jun' => '1 يونيو',
+ 'financial_year_mar' => '1 مارس',
+ 'financial_year_may' => '1 مايو',
+ 'financial_year_nov' => '1 نوفمبر',
+ 'financial_year_oct' => '1 أكتوبر',
+ 'financial_year_sep' => '1 سبتمبر',
+ 'floating_labels' => 'تسميات عائمة',
+ 'gcaptcha_enable' => 'صفحة تسجيل الدخول ريكابتشا',
+ 'gcaptcha_secret_key' => 'مفتاح السرية ريكابتشا',
+ 'gcaptcha_secret_key_required' => 'مفتاح السرية ريكابتشا هو حقل مطلوب',
+ 'gcaptcha_site_key' => 'ريكابتشا مفتاح الموقع',
+ 'gcaptcha_site_key_required' => 'ريكابتشا مفتاح الموقع هو حقل مطلوب',
+ 'gcaptcha_tooltip' => 'احرص على حماية صفحة تسجيل الدخول باستخدام ريكابتشا من غوغل.',
+ 'general' => 'عام',
+ 'general_configuration' => 'إعدادات عامة',
+ 'giftcard_number' => 'رقم كارت الهدية',
+ 'giftcard_random' => 'توليد عشوائي',
+ 'giftcard_series' => 'توليد في السلسلة',
+ 'image_allowed_file_types' => 'أنواع الملفات المسموح بها',
+ 'image_max_height_tooltip' => 'أقصى ارتفاع مسموح به لتحميلات الصور بالبكسل (بكسل).',
+ 'image_max_size_tooltip' => 'أقصى حجم مسموح به للملف لتحميل الصور (بالكيلو بايت).',
+ 'image_max_width_tooltip' => 'أقصى عرض مسموح به لتحميلات الصور بالبكسل (بكسل).',
+ 'image_restrictions' => 'قيود تحميل الصور',
+ 'include_hsn' => 'تشمل الدعم لرمز نظام منسق',
+ 'info' => 'معلومات',
+ 'info_configuration' => 'معلومات الشركة',
+ 'input_groups' => 'مجموعات الإدخال',
+ 'integrations' => 'التكامل',
+ 'integrations_configuration' => 'تكامل',
+ 'invoice' => 'الفاتورة',
+ 'invoice_configuration' => 'إعدادات طباعة الفاتورة',
+ 'invoice_default_comments' => 'التعليق الافتراضي على الفاتورة',
+ 'invoice_email_message' => 'قالب البريد الإلكتروني للفاتورة',
+ 'invoice_enable' => 'تفعيل الفوترة',
+ 'invoice_printer' => 'طابعة الفواتير',
+ 'invoice_type' => 'نوع الفاتورة',
+ 'is_readable' => 'يمكن قراءته ، ولكن تم تعيين الأذونات بشكل غير صحيح. يرجى ضبطه على 640 أو 660 والتحديث.',
+ 'is_writable' => 'ممكن التعديل عليه، لكن الصلاحيات هي اكثر من 750. نرجوا الضبط الى 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'تحذير! هذه الخاصية غير المفعلة سوف تعمل فقط مع وجود الاضافة jsPrintSetup على متصفح فايرفوكس. حفظ على أى حال؟',
+ 'language' => 'اللغة',
+ 'last_used_invoice_number' => 'اخر رقم مستخدم للفاتورة',
+ 'last_used_quote_number' => 'اخر رقم مستخدم لعرض الاسعار',
+ 'last_used_work_order_number' => 'آخر رقم مستخدم في طلبات العمل',
+ 'left' => 'يسار',
+ 'license' => 'الرخصة',
+ 'license_configuration' => 'نص الرخصة',
+ 'line_sequence' => 'تسلسل خطي',
+ 'lines_per_page' => 'عدد السطور فى الصفحة',
+ 'lines_per_page_number' => 'عدد السطور فى الصفحة يجب أن يكون رقم.',
+ 'lines_per_page_required' => 'عدد السطور فى الصفحة مطلوب.',
+ 'locale' => 'إقليمية',
+ 'locale_configuration' => 'الإعدادات الإقليمية',
+ 'locale_info' => 'معلومات التهيئة الإقليمية',
+ 'location' => 'المخزون',
+ 'location_configuration' => 'أماكن المخزون',
+ 'location_info' => 'معلومات تهيئة الأماكن',
+ 'login_form' => 'نمط نموذج تسجيل الدخول',
+ 'logout' => 'هل تريد عمل نسخة إحتياطية قبل الخروج؟ اضغط [نعم] لعمل النسخة أو [الغاء] للخروج.',
+ 'mailchimp' => 'ميل تشامب',
+ 'mailchimp_api_key' => 'مفتاح ميل شيمب',
+ 'mailchimp_configuration' => 'إعدادات ميل شيمب',
+ 'mailchimp_key_successfully' => 'نجاح.',
+ 'mailchimp_key_unsuccessfully' => 'فشل.',
+ 'mailchimp_lists' => 'قوائم ميل شيمب',
+ 'mailchimp_tooltip' => 'انقر على رمز مفتاح API.',
+ 'message' => 'الرسائل',
+ 'message_configuration' => 'إعدادات الرسائل',
+ 'msg_msg' => 'الرسائل النصية المحفوظة',
+ 'msg_msg_placeholder' => 'إذا أردت إستخدام قالب للرسائل القصيرة احفظه هنا. عدا ذلك أترك هذا الحقل فارغ.',
+ 'msg_pwd' => 'SMS-API كلمة السر لـ',
+ 'msg_pwd_required' => 'مطلوب SMS-API كلمة السر لـ',
+ 'msg_src' => 'SMS-API كود المرسل لـ',
+ 'msg_src_required' => 'مطلوب SMS-API كود المرسل لـ',
+ 'msg_uid' => 'SMS-API اسم المستخدم لـ',
+ 'msg_uid_required' => 'مطلوب SMS-API اسم المستخدم لـ',
+ 'multi_pack_enabled' => 'رزم متعددة لكل صنف',
+ 'no_risk' => 'لا يوجد اي مشاكل في صلاحيات الملفات.',
+ 'none' => 'لايوجد',
+ 'notify_alignment' => 'مكان عرض رسائل المعلومات',
+ 'number_format' => 'شكل الرقم',
+ 'number_locale' => 'التهيئة الاقليمية',
+ 'number_locale_invalid' => 'التهيئة الإقليمية المختارة غير صحية، راجع الرابط الموجود فى الملاحظة لاختيار تهيئة مناسبة.',
+ 'number_locale_required' => 'رقم التهيئة الإقليمية مطلوب.',
+ 'number_locale_tooltip' => 'إيجاد تهيئة إقليمية مناسبة عبر الرابط.',
+ 'os_timezone' => 'المنطقة الزمنية OSPOS:',
+ 'ospos_info' => 'معلومات التثبيت OSPOS',
+ 'payment_options_order' => 'ترتيب خيارات الدفع',
+ 'payment_reference_code_length_limits' => 'رمز مرجع الدفع
حدود الطول',
+ 'payment_reference_code_length_max_label' => 'الحد الأقصى',
+ 'payment_reference_code_length_min_label' => 'الحد الأدنى',
+ 'perm_risk' => 'صلاحيات الملفات ممكن ان تشكل خطر في حال كانت غير صحيحة.',
+ 'phone' => 'هاتف الشركة',
+ 'phone_required' => 'هاتف الشركة مطلوب.',
+ 'print_bottom_margin' => 'الهامش السفلي',
+ 'print_bottom_margin_number' => 'الهامش السفلي يجب أن يكون رقم.',
+ 'print_bottom_margin_required' => 'الهامش السفلي مطلوب.',
+ 'print_delay_autoreturn' => 'العودة الى عمليات البيع تلقائيا ( عدد الثواني )',
+ 'print_delay_autoreturn_number' => 'الزمن المحدد للعودة الى عمليات البيع هو خانة اجبارية.',
+ 'print_delay_autoreturn_required' => 'الزمن المحدد للعودة الى عمليات البيع يجب ان يكون رقم.',
+ 'print_footer' => 'طباعة تذييل المتصفح',
+ 'print_header' => 'طباعة ترويسة المتصفح',
+ 'print_left_margin' => 'الهامش الأيسر',
+ 'print_left_margin_number' => 'الهامش الأيسر يجب ان يكون رقم.',
+ 'print_left_margin_required' => 'الهامش الأيسر مطلوب.',
+ 'print_receipt_check_behaviour' => 'خانة طباعة الفواتير',
+ 'print_receipt_check_behaviour_always' => 'دائما مختار',
+ 'print_receipt_check_behaviour_last' => 'تذكر آخر اختيار',
+ 'print_receipt_check_behaviour_never' => 'دائما ليس مختار',
+ 'print_right_margin' => 'الهامش الأيمن',
+ 'print_right_margin_number' => 'الهامش الأيمن يجب أن يكون رقم.',
+ 'print_right_margin_required' => 'الهامش الأيمن مطلوب.',
+ 'print_silently' => 'عرض صندوق حوار طباعة',
+ 'print_top_margin' => 'الهامش العلوى',
+ 'print_top_margin_number' => 'الهامش العلوى يجب أن يكون رقم.',
+ 'print_top_margin_required' => 'الهامش العلوى مطلوب.',
+ 'quantity_decimals' => 'العلامة العشرية للكمية',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'ملاحظات طلبات العمل الثابتة',
+ 'receipt' => 'الإيصال',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'إعدادات طباعة الايصالات',
+ 'receipt_default' => 'افتراضى',
+ 'receipt_font_size' => 'الخط',
+ 'receipt_font_size_number' => 'رقم الخط يجب ان يكون رقم.',
+ 'receipt_font_size_required' => 'رقم الخط مطلوب.',
+ 'receipt_info' => 'معلومات تهيئة الإيصالات',
+ 'receipt_printer' => 'طابعة تذاكر',
+ 'receipt_short' => 'مختصر',
+ 'receipt_show_company_name' => 'عرض اسم الشركة',
+ 'receipt_show_description' => 'عرض الوصف',
+ 'receipt_show_serialnumber' => 'عرض الرقم المسلسل',
+ 'receipt_show_tax_ind' => 'عرض مؤشر الضريبة',
+ 'receipt_show_taxes' => 'عرض الضرائب',
+ 'receipt_show_total_discount' => 'عرض إجمالى الخصم',
+ 'receipt_template' => 'قالب الايصال',
+ 'receiving_calculate_average_price' => 'حساب متوسط سعر الأصناف المستلمة',
+ 'recv_invoice_format' => 'شكل فاتورة الإستلام',
+ 'register_mode_default' => 'نمط التسجيل الافتراضي',
+ 'report_an_issue' => 'بلغ عن خطأ',
+ 'return_policy_required' => 'سياسة الإسترجاع مطلوب.',
+ 'reward' => 'المكافاة',
+ 'reward_configuration' => 'اعدادات المكافاة',
+ 'right' => 'يمين',
+ 'sales_invoice_format' => 'شكل فاتورة البيع',
+ 'sales_quote_format' => 'شكل فاتورة عرض الاسعار',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => 'تم حفظ التهيئة بنجاح.',
+ 'saved_unsuccessfully' => 'لم يتم حفظ التهيئة بنجاح.',
+ 'security_issue' => 'تحذير من ثغرة أمنية',
+ 'server_notice' => 'يرجى استخدام المعلومات أدناه للإبلاغ عن المشكلة.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'اظهار ايكونة المكتب',
+ 'statistics' => 'إرسال اﻹحصائيات',
+ 'statistics_tooltip' => 'إرسال اﻹحصائيات ﻷغراض التطوير و التحسين.',
+ 'stock_location' => 'مكان المخزون',
+ 'stock_location_duplicate' => 'من فضلك إستخدم اسم مكان غير مكرر.',
+ 'stock_location_invalid_chars' => "مكان المخزون لايمكن أن يحتوى على '_'.",
+ 'stock_location_required' => 'مكان المخزون مطلوب.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'العامود 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'تخطيط اقتراحات البحث',
+ 'suggestions_second_column' => 'العامود 2',
+ 'suggestions_third_column' => 'العامود 3',
+ 'system_conf' => 'اعدادات اخرى',
+ 'system_info' => 'System Info',
+ 'table' => 'جدول',
+ 'table_configuration' => 'اعدادات الجدول',
+ 'takings_printer' => 'طابعة الإيراد',
+ 'tax' => 'الضريبة',
+ 'tax_category' => 'تصنيف الضريبة',
+ 'tax_category_duplicate' => 'الفئة الضريبية اللتي تم ادخالها موجودة.',
+ 'tax_category_invalid_chars' => 'الفئة الضريبية اللتي تم ادخالها غير صحيحة.',
+ 'tax_category_required' => 'الفئة الضريبية مطلوبة.',
+ 'tax_category_used' => 'الفئة الضريبية اللتي تم تحديدها لا يمكن حذفها لانها قيد الاستعمال.',
+ 'tax_configuration' => 'إعدادات الضريبة',
+ 'tax_decimals' => 'العلامة العشرية للضريبة',
+ 'tax_id' => 'الرقم الضريبي',
+ 'tax_included' => 'شامل الضريبة',
+ 'theme' => 'السمة',
+ 'theme_preview' => 'معاينة المظهر:',
+ 'thousands_separator' => 'فاصل الاف',
+ 'timezone' => 'المنطقة الزمنية',
+ 'timezone_error' => 'تختلف منطقة OSPOS الزمنية عن منطقتك الزمنية المحلية.',
+ 'top' => 'علوى',
+ 'use_destination_based_tax' => 'استخدام الضريبة المستندة على الوجهة',
+ 'user_timezone' => 'المنطقة الزمنية المحلية:',
+ 'website' => 'موقع الشركة',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'تفعيل طلبات العمل',
+ 'work_order_format' => 'شكل طلبات العمل',
];
diff --git a/app/Language/ar-LB/Login.php b/app/Language/ar-LB/Login.php
index 9bccf4d73..f0cc3b4f8 100644
--- a/app/Language/ar-LB/Login.php
+++ b/app/Language/ar-LB/Login.php
@@ -1,25 +1,30 @@
"أنا لست روبوتاً.",
- "go" => "البَدْء",
- "invalid_gcaptcha" => "يرجى التحقق من أنك لست روبوتًا.",
- "invalid_installation" => "يوجد مشكلة بالتنصيب, الرجاء التحقق من ملف php.ini.",
- "invalid_username_and_password" => "اسم المستخدم/كلمة المرور غير صحيحة.",
- "login" => "دخول",
- "logout" => "تسجيل خروج",
- "migration_needed" => "سيبدأ ترحيل قاعدة البيانات إلى{0} بعد تسجيل الدخول.",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "كلمة السر",
- "required_username" => "خانة أسم المستخدم مطلوبة.",
- "username" => "اسم المستخدم",
- "welcome" => "مرحباً بك في{0}!",
+ "gcaptcha" => "أنا لست روبوتاً.",
+ "go" => "البَدْء",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "يرجى التحقق من أنك لست روبوتًا.",
+ "invalid_installation" => "يوجد مشكلة بالتنصيب, الرجاء التحقق من ملف php.ini.",
+ "invalid_username_and_password" => "اسم المستخدم/كلمة المرور غير صحيحة.",
+ "login" => "دخول",
+ "logout" => "تسجيل خروج",
+ "migrating_database" => "جارٍ ترحيل قاعدة البيانات",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "تم ترحيل قاعدة البيانات بنجاح!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "سيبدأ ترحيل قاعدة البيانات إلى{0} بعد تسجيل الدخول.",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "كلمة السر",
+ "required_username" => "خانة أسم المستخدم مطلوبة.",
+ "username" => "اسم المستخدم",
+ "welcome" => "مرحباً بك في{0}!"
];
diff --git a/app/Language/ar-LB/Sales.php b/app/Language/ar-LB/Sales.php
index ecbe859c9..7e8875ac3 100644
--- a/app/Language/ar-LB/Sales.php
+++ b/app/Language/ar-LB/Sales.php
@@ -1,231 +1,235 @@
"النقاط المتاحة",
- "rewards_package" => "فئة المكافئة",
- "rewards_remaining_balance" => "رصيد النقاط المتبقي هو ",
- "account_number" => "حساب",
- "add_payment" => "إضافة دفع",
- "amount_due" => "المبلغ المطلوب",
- "amount_tendered" => "المبلغ المدفوع",
- "authorized_signature" => "توقيع معتمد",
- "cancel_sale" => "الغاء عملية البيع",
- "cash" => "نقدى",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "تعديل الصندوق",
- "cash_deposit" => "ايداع نقدي",
- "cash_filter" => "نقدى",
- "change_due" => "الباقى",
- "change_price" => "تغيير سعر البيع",
- "check" => "شيك",
- "check_balance" => "تذكير بموعد الشيك",
- "check_filter" => "شيك",
- "close" => "",
- "comment" => "تعليق",
- "comments" => "تعليقات",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "إتمام البيع",
- "confirm_cancel_sale" => "هل أنت متأكد من الغاء عملية البيع ؟ سيتم إزالة كل الأصناف.",
- "confirm_delete" => "هل تريد حذف عمليات البيع المختارة؟",
- "confirm_restore" => "هل انت متاكد من استعادة عملية البيع؟",
- "credit" => "بطاقة إئتمانية",
- "credit_deposit" => "ايداع ببطاقة ائتمان",
- "credit_filter" => "بطاقة بنكية",
- "current_table" => "",
- "customer" => "العميل",
- "customer_address" => "العنوان",
- "customer_discount" => "الخصم",
- "customer_email" => "البريد الإلكترونى",
- "customer_location" => "المكان",
- "customer_mailchimp_status" => "حالة بريد ميل تشيمب",
- "customer_optional" => "(مطلوب للدفعات المستحقة)",
- "customer_required" => "(اجباري)",
- "customer_total" => "المجموع",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "تاريخ البيع",
- "date_range" => "الفترة الزمنية",
- "date_required" => "يجب إدخال تاريخ صحيح.",
- "date_type" => "التاريخ مطلوب.",
- "debit" => "بطاقة خصم",
- "debit_filter" => "",
- "delete" => "اسمح بالمسح",
- "delete_confirmation" => "هل أنت متأكد أنك تريد حذف عملية البيع هذه؟ لايمكن التراجع بعد الحذف.",
- "delete_entire_sale" => "حذف عملية البيع بالكامل",
- "delete_successful" => "لقد تم حذف عملية البيع بنجاح.",
- "delete_unsuccessful" => "لقد فشل حذف عملية البيع.",
- "description_abbrv" => "الوصف.",
- "discard" => "الغاء",
- "discard_quote" => "",
- "discount" => "خصم",
- "discount_included" => "% خصم",
- "discount_short" => "%",
- "due" => "مستحق",
- "due_filter" => "مستحق",
- "edit" => "تعديل",
- "edit_item" => "تعديل مادة",
- "edit_sale" => "تعديل عملية بيع",
- "email_receipt" => "إرسال الايصال بالبريد الالكترونى",
- "employee" => "الموظف",
- "entry" => "ادخال",
- "error_editing_item" => "خطاء فى تعديل المادة",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "بحث/مسح باركود المادة",
- "find_or_scan_item_or_receipt" => "بحث/مسح باركود المادة أو الايصال",
- "giftcard" => "بطاقة هدية",
- "giftcard_balance" => "رصيد بطاقة الهدية",
- "giftcard_filter" => "",
- "giftcard_number" => "رقم بطاقة الهدية",
- "group_by_category" => "ترتيب حسب الفئة",
- "group_by_type" => "ترتيب حسب النوع",
- "hsn" => "رمز نظام منسق",
- "id" => "رقم عملية البيع",
- "include_prices" => "يشمل الاسعار؟",
- "invoice" => "فاتورة",
- "invoice_confirm" => "هذه الفاتورة سوف ترسل إلى",
- "invoice_enable" => "رقم فاتورة",
- "invoice_filter" => "الفواتير",
- "invoice_no_email" => "هذا العميل ليس لدية بريد الكترونى صالح.",
- "invoice_number" => "فاتورة رقم #",
- "invoice_number_duplicate" => "من فضلك أدخل رقم فاتورة غير مكرر.",
- "invoice_sent" => "تم إرسال الفاتورة إلى",
- "invoice_total" => "إجمالي الفاتورة",
- "invoice_type_custom_invoice" => "فاتورة مخصصة (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "الفاتورة الضريبية المخصصة (custom_tax_invoice.php)",
- "invoice_type_invoice" => "الفاتورة (invoice.php)",
- "invoice_type_tax_invoice" => "الفاتورة الضريبية (tax_invoice.php)",
- "invoice_unsent" => "فشل إرسال الفاتورة إلى",
- "invoice_update" => "إعادة العد",
- "item_insufficient_of_stock" => "لايوجد مخزون كافى من المادة.",
- "item_name" => "اسم المادة",
- "item_number" => "مادة رقم #",
- "item_out_of_stock" => "لايوجد مخزون من المادة.",
- "key_browser" => "اختصارات مفيده",
- "key_cancel" => "الغاء عملية البيع/فاتوره/عرض السعار",
- "key_customer_search" => "بحث عن عميل",
- "key_finish_quote" => "انهاء عملية البيع/الفاتورة من دون الدفع",
- "key_finish_sale" => "اضافة دفع نقدي كمل واتمام عملية البيع",
- "key_full" => "الإظهار في صفحه كامله",
- "key_function" => "Function",
- "key_help" => "اختصارات",
- "key_help_modal" => "إظهار الاختصارات",
- "key_in" => "تكبير الصفحه",
- "key_item_search" => "بحث حسب الصنف",
- "key_out" => "تصغير الصفحه",
- "key_payment" => "اضافة دفعه",
- "key_print" => "طباعة الصفحة الحالية",
- "key_restore" => "إعادة ضبط اعدادات الصفحه",
- "key_search" => "البحث في التقارير",
- "key_suspend" => "حفط عملية البيع",
- "key_suspended" => "إظهار عمليات البيع المحفظه",
- "key_system" => "اختصارات متاحه",
- "key_tendered" => "تعديل المبلغ المدفوع",
- "key_title" => "اختصارات صفحة المبيعات",
- "mc" => "",
- "mode" => "وضع التسجيل",
- "must_enter_numeric" => "يجب إدخال رقم للمبلغ الفعلى المدفوع.",
- "must_enter_numeric_giftcard" => "رمز بطاقة الهدية يجب أن يكتون ارقام فقط.",
- "new_customer" => "عميل جديد",
- "new_item" => "مادة جديدة",
- "no_description" => "بدون وصف",
- "no_filter" => "الكل",
- "no_items_in_cart" => "لايوجد اي مادة فى السلة.",
- "no_sales_to_display" => "لاتوجد عمليات بيع لعرضها.",
- "none_selected" => "لم تقم بإختيار أى عمليات بيع لحذفها.",
- "nontaxed_ind" => " ",
- "not_authorized" => "ليس لديك صلاحية.",
- "one_or_multiple" => "عمليات بيع",
- "payment" => "طريقة الدفع",
- "payment_amount" => "القيمة",
- "payment_not_cover_total" => "المبلغ المدفوع لايغطى المبلغ الإجمالى.",
- "payment_type" => "طريقة",
- "payments" => "",
- "payments_total" => "إجمالى المدفوعات",
- "price" => "السعر",
- "print_after_sale" => "اطبع بعد عملية البيع",
- "quantity" => "الكمية",
- "quantity_less_than_reorder_level" => "تحذير: الكمية أقل من الحد المطلوب لهذه المادة.",
- "quantity_less_than_zero" => "تحذير! الكمية المطلوبة غير كافية، بإمكانك إتمام عملية البيع ، لكن تحقق من مخزنك.",
- "quantity_of_items" => "عدد ال {0} من الاصناف",
- "quote" => "عرض اسعار",
- "quote_number" => "رقم عرض الاسعار",
- "quote_number_duplicate" => "رقم عرض الاسعار يجب ان يكون فريد.",
- "quote_sent" => "عرض الاسعار ارسل الى",
- "quote_unsent" => "لم يتم ارسال عرض الاسعار الى",
- "receipt" => "عملية بيع #",
- "receipt_no_email" => "هذا العميل ليس له اي بريد الكتروني صحيح.",
- "receipt_number" => "إيصال بيع",
- "receipt_sent" => "تم إرسال الإيصال إلى",
- "receipt_unsent" => "فشل إرسال الإيصال إلى",
- "refund" => "نوع/سبب الاسترجاع",
- "register" => "سجل المبيعات",
- "remove_customer" => "حذف عميل",
- "remove_discount" => "",
- "return" => "إسترجاع",
- "rewards" => "نقاط المكافئة",
- "rewards_balance" => "رصيد نقاط المكافئة",
- "sale" => "بيع",
- "sale_by_invoice" => "البيع بفاتورة رسمية",
- "sale_for_customer" => "العميل:",
- "sale_time" => "الوقت",
- "sales_tax" => "ضريبة البيع",
- "sales_total" => "",
- "select_customer" => "اختيار عميل (اختياري)",
- "send_invoice" => "إرسال الفاتورة",
- "send_quote" => "ارسال عرض الاسعار",
- "send_receipt" => "إرسال إيصال",
- "send_work_order" => "ارسال طلب عمل",
- "serial" => "مسلسل",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "عرض الفاتورة",
- "show_receipt" => "عرض الإيصال",
- "start_typing_customer_name" => "ابداء بكتابة اسم العميل...",
- "start_typing_item_name" => "ابداء بكتابة اسم أو مسح باركود الصنف...",
- "stock" => "المخزن",
- "stock_location" => "موقع التخزين",
- "sub_total" => "المجموع الفرعي",
- "successfully_deleted" => "لقد تم الحذف بنجاح",
- "successfully_restored" => "لقد تمت عملية الاستعادة بنجاح",
- "successfully_suspended_sale" => "لقد تم تعليق عملية البيع بنجاح.",
- "successfully_updated" => "لقد تم تحديث بيانات عملية البيع بنجاح.",
- "suspend_sale" => "تعليق عملية البيع",
- "suspended_doc_id" => "ملف",
- "suspended_sale_id" => "كود عملية البيع",
- "suspended_sales" => "المبيعات المعلقة",
- "table" => "طاولة",
- "takings" => "المبيع اليومي",
- "tax" => "ضريبة",
- "tax_id" => "الرقم الضريبي",
- "tax_invoice" => "فاتورة ضريبية",
- "tax_percent" => "ضريبة %",
- "taxed_ind" => "ض",
- "total" => "المجموع",
- "total_tax_exclusive" => "الإجمالى بدون الضرائب",
- "transaction_failed" => "فشل حركة البيع.",
- "unable_to_add_item" => "غير قادر على إضافة صنف لعملية البيع",
- "unsuccessfully_deleted" => "لايمكن حذف عملية/عمليات البيع.",
- "unsuccessfully_restored" => "فشل في استعادة عملية البيع.",
- "unsuccessfully_suspended_sale" => "فشل تعليق عملية البيع.",
- "unsuccessfully_updated" => "فشل تحديث عملية البيع.",
- "unsuspend" => "إلغاء تعليق",
- "unsuspend_and_delete" => "إلغاء تعليق وحذف",
- "update" => "تحديث",
- "upi" => "رقم التعريف الشخصي",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "طلب عمل",
- "work_order_number" => "رقم طلب العمل",
- "work_order_number_duplicate" => "رقم طلب العمل يجب ان يكون فريد.",
- "work_order_sent" => "تم ارسال طلب العمل الى",
- "work_order_unsent" => "فشل في ارسال طلب العمل الى",
+ 'account_number' => 'حساب',
+ 'add_payment' => 'إضافة دفع',
+ 'amount_due' => 'المبلغ المطلوب',
+ 'amount_tendered' => 'المبلغ المدفوع',
+ 'authorized_signature' => 'توقيع معتمد',
+ 'cancel_sale' => 'الغاء عملية البيع',
+ 'cash' => 'نقدى',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'تعديل الصندوق',
+ 'cash_deposit' => 'ايداع نقدي',
+ 'cash_filter' => 'نقدى',
+ 'change_due' => 'الباقى',
+ 'change_price' => 'تغيير سعر البيع',
+ 'check' => 'شيك',
+ 'check_balance' => 'تذكير بموعد الشيك',
+ 'check_filter' => 'شيك',
+ 'close' => '',
+ 'comment' => 'تعليق',
+ 'comments' => 'تعليقات',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'إتمام البيع',
+ 'confirm_cancel_sale' => 'هل أنت متأكد من الغاء عملية البيع ؟ سيتم إزالة كل الأصناف.',
+ 'confirm_delete' => 'هل تريد حذف عمليات البيع المختارة؟',
+ 'confirm_restore' => 'هل انت متاكد من استعادة عملية البيع؟',
+ 'credit' => 'بطاقة إئتمانية',
+ 'credit_deposit' => 'ايداع ببطاقة ائتمان',
+ 'credit_filter' => 'بطاقة بنكية',
+ 'current_table' => '',
+ 'customer' => 'العميل',
+ 'customer_address' => 'العنوان',
+ 'customer_discount' => 'الخصم',
+ 'customer_email' => 'البريد الإلكترونى',
+ 'customer_location' => 'المكان',
+ 'customer_mailchimp_status' => 'حالة بريد ميل تشيمب',
+ 'customer_optional' => '(مطلوب للدفعات المستحقة)',
+ 'customer_required' => '(اجباري)',
+ 'customer_total' => 'المجموع',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'النقاط المتاحة',
+ 'daily_sales' => '',
+ 'date' => 'تاريخ البيع',
+ 'date_range' => 'الفترة الزمنية',
+ 'date_required' => 'يجب إدخال تاريخ صحيح.',
+ 'date_type' => 'التاريخ مطلوب.',
+ 'debit' => 'بطاقة خصم',
+ 'debit_filter' => '',
+ 'delete' => 'اسمح بالمسح',
+ 'delete_confirmation' => 'هل أنت متأكد أنك تريد حذف عملية البيع هذه؟ لايمكن التراجع بعد الحذف.',
+ 'delete_entire_sale' => 'حذف عملية البيع بالكامل',
+ 'delete_successful' => 'لقد تم حذف عملية البيع بنجاح.',
+ 'delete_unsuccessful' => 'لقد فشل حذف عملية البيع.',
+ 'description_abbrv' => 'الوصف.',
+ 'discard' => 'الغاء',
+ 'discard_quote' => '',
+ 'discount' => 'خصم',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% خصم',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'مستحق',
+ 'due_filter' => 'مستحق',
+ 'edit' => 'تعديل',
+ 'edit_item' => 'تعديل مادة',
+ 'edit_sale' => 'تعديل عملية بيع',
+ 'email_receipt' => 'إرسال الايصال بالبريد الالكترونى',
+ 'employee' => 'الموظف',
+ 'entry' => 'ادخال',
+ 'error_editing_item' => 'خطاء فى تعديل المادة',
+ 'find_or_scan_item' => 'بحث/مسح باركود المادة',
+ 'find_or_scan_item_or_receipt' => 'بحث/مسح باركود المادة أو الايصال',
+ 'giftcard' => 'بطاقة هدية',
+ 'giftcard_balance' => 'رصيد بطاقة الهدية',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'رقم بطاقة الهدية',
+ 'group_by_category' => 'ترتيب حسب الفئة',
+ 'group_by_type' => 'ترتيب حسب النوع',
+ 'hsn' => 'رمز نظام منسق',
+ 'id' => 'رقم عملية البيع',
+ 'include_prices' => 'يشمل الاسعار؟',
+ 'invoice' => 'فاتورة',
+ 'invoice_confirm' => 'هذه الفاتورة سوف ترسل إلى',
+ 'invoice_enable' => 'رقم فاتورة',
+ 'invoice_filter' => 'الفواتير',
+ 'invoice_no_email' => 'هذا العميل ليس لدية بريد الكترونى صالح.',
+ 'invoice_number' => 'فاتورة رقم #',
+ 'invoice_number_duplicate' => 'من فضلك أدخل رقم فاتورة غير مكرر.',
+ 'invoice_sent' => 'تم إرسال الفاتورة إلى',
+ 'invoice_total' => 'إجمالي الفاتورة',
+ 'invoice_type_custom_invoice' => 'فاتورة مخصصة (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'الفاتورة الضريبية المخصصة (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'الفاتورة (invoice.php)',
+ 'invoice_type_tax_invoice' => 'الفاتورة الضريبية (tax_invoice.php)',
+ 'invoice_unsent' => 'فشل إرسال الفاتورة إلى',
+ 'invoice_update' => 'إعادة العد',
+ 'item_insufficient_of_stock' => 'لايوجد مخزون كافى من المادة.',
+ 'item_name' => 'اسم المادة',
+ 'item_number' => 'مادة رقم #',
+ 'item_out_of_stock' => 'لايوجد مخزون من المادة.',
+ 'key_browser' => 'اختصارات مفيده',
+ 'key_cancel' => 'الغاء عملية البيع/فاتوره/عرض السعار',
+ 'key_customer_search' => 'بحث عن عميل',
+ 'key_finish_quote' => 'انهاء عملية البيع/الفاتورة من دون الدفع',
+ 'key_finish_sale' => 'اضافة دفع نقدي كمل واتمام عملية البيع',
+ 'key_full' => 'الإظهار في صفحه كامله',
+ 'key_function' => 'Function',
+ 'key_help' => 'اختصارات',
+ 'key_help_modal' => 'إظهار الاختصارات',
+ 'key_in' => 'تكبير الصفحه',
+ 'key_item_search' => 'بحث حسب الصنف',
+ 'key_out' => 'تصغير الصفحه',
+ 'key_payment' => 'اضافة دفعه',
+ 'key_print' => 'طباعة الصفحة الحالية',
+ 'key_restore' => 'إعادة ضبط اعدادات الصفحه',
+ 'key_search' => 'البحث في التقارير',
+ 'key_suspend' => 'حفط عملية البيع',
+ 'key_suspended' => 'إظهار عمليات البيع المحفظه',
+ 'key_system' => 'اختصارات متاحه',
+ 'key_tendered' => 'تعديل المبلغ المدفوع',
+ 'key_title' => 'اختصارات صفحة المبيعات',
+ 'mc' => '',
+ 'mode' => 'وضع التسجيل',
+ 'must_enter_numeric' => 'يجب إدخال رقم للمبلغ الفعلى المدفوع.',
+ 'must_enter_numeric_giftcard' => 'رمز بطاقة الهدية يجب أن يكتون ارقام فقط.',
+ 'must_enter_reference_code' => 'يجب إدخال رقم المرجع/الاسترداد.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'عميل جديد',
+ 'new_item' => 'مادة جديدة',
+ 'no_description' => 'بدون وصف',
+ 'no_filter' => 'الكل',
+ 'no_items_in_cart' => 'لايوجد اي مادة فى السلة.',
+ 'no_sales_to_display' => 'لاتوجد عمليات بيع لعرضها.',
+ 'none_selected' => 'لم تقم بإختيار أى عمليات بيع لحذفها.',
+ 'nontaxed_ind' => ' ',
+ 'not_authorized' => 'ليس لديك صلاحية.',
+ 'one_or_multiple' => 'عمليات بيع',
+ 'payment' => 'طريقة الدفع',
+ 'payment_amount' => 'القيمة',
+ 'payment_not_cover_total' => 'المبلغ المدفوع لايغطى المبلغ الإجمالى.',
+ 'payment_type' => 'طريقة',
+ 'payments' => '',
+ 'payments_total' => 'إجمالى المدفوعات',
+ 'price' => 'السعر',
+ 'print_after_sale' => 'اطبع بعد عملية البيع',
+ 'quantity' => 'الكمية',
+ 'quantity_less_than_reorder_level' => 'تحذير: الكمية أقل من الحد المطلوب لهذه المادة.',
+ 'quantity_less_than_zero' => 'تحذير! الكمية المطلوبة غير كافية، بإمكانك إتمام عملية البيع ، لكن تحقق من مخزنك.',
+ 'quantity_of_items' => 'عدد ال {0} من الاصناف',
+ 'quote' => 'عرض اسعار',
+ 'quote_number' => 'رقم عرض الاسعار',
+ 'quote_number_duplicate' => 'رقم عرض الاسعار يجب ان يكون فريد.',
+ 'quote_sent' => 'عرض الاسعار ارسل الى',
+ 'quote_unsent' => 'لم يتم ارسال عرض الاسعار الى',
+ 'receipt' => 'عملية بيع #',
+ 'receipt_no_email' => 'هذا العميل ليس له اي بريد الكتروني صحيح.',
+ 'receipt_number' => 'إيصال بيع',
+ 'receipt_sent' => 'تم إرسال الإيصال إلى',
+ 'receipt_unsent' => 'فشل إرسال الإيصال إلى',
+ 'reference_code' => 'رمز مرجع الدفع',
+ 'reference_code_invalid_characters' => 'يجب أن يحتوي رمز المرجع على أحرف وأرقام فقط.',
+ 'reference_code_length_error' => 'طول رمز المرجع غير صالح.',
+ 'refund' => 'نوع/سبب الاسترجاع',
+ 'register' => 'سجل المبيعات',
+ 'remove_customer' => 'حذف عميل',
+ 'remove_discount' => '',
+ 'return' => 'إسترجاع',
+ 'rewards' => 'نقاط المكافئة',
+ 'rewards_balance' => 'رصيد نقاط المكافئة',
+ 'rewards_package' => 'فئة المكافئة',
+ 'rewards_remaining_balance' => 'رصيد النقاط المتبقي هو ',
+ 'sale' => 'بيع',
+ 'sale_by_invoice' => 'البيع بفاتورة رسمية',
+ 'sale_for_customer' => 'العميل:',
+ 'sale_time' => 'الوقت',
+ 'sales_tax' => 'ضريبة البيع',
+ 'sales_total' => '',
+ 'select_customer' => 'اختيار عميل (اختياري)',
+ 'send_invoice' => 'إرسال الفاتورة',
+ 'send_quote' => 'ارسال عرض الاسعار',
+ 'send_receipt' => 'إرسال إيصال',
+ 'send_work_order' => 'ارسال طلب عمل',
+ 'serial' => 'مسلسل',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'عرض الفاتورة',
+ 'show_receipt' => 'عرض الإيصال',
+ 'start_typing_customer_name' => 'ابداء بكتابة اسم العميل...',
+ 'start_typing_item_name' => 'ابداء بكتابة اسم أو مسح باركود الصنف...',
+ 'stock' => 'المخزن',
+ 'stock_location' => 'موقع التخزين',
+ 'sub_total' => 'المجموع الفرعي',
+ 'successfully_deleted' => 'لقد تم الحذف بنجاح',
+ 'successfully_restored' => 'لقد تمت عملية الاستعادة بنجاح',
+ 'successfully_suspended_sale' => 'لقد تم تعليق عملية البيع بنجاح.',
+ 'successfully_updated' => 'لقد تم تحديث بيانات عملية البيع بنجاح.',
+ 'suspend_sale' => 'تعليق عملية البيع',
+ 'suspended_doc_id' => 'ملف',
+ 'suspended_sale_id' => 'كود عملية البيع',
+ 'suspended_sales' => 'المبيعات المعلقة',
+ 'table' => 'طاولة',
+ 'takings' => 'المبيع اليومي',
+ 'tax' => 'ضريبة',
+ 'tax_id' => 'الرقم الضريبي',
+ 'tax_invoice' => 'فاتورة ضريبية',
+ 'tax_percent' => 'ضريبة %',
+ 'taxed_ind' => 'ض',
+ 'total' => 'المجموع',
+ 'total_tax_exclusive' => 'الإجمالى بدون الضرائب',
+ 'transaction_failed' => 'فشل حركة البيع.',
+ 'unable_to_add_item' => 'غير قادر على إضافة صنف لعملية البيع',
+ 'unsuccessfully_deleted' => 'لايمكن حذف عملية/عمليات البيع.',
+ 'unsuccessfully_restored' => 'فشل في استعادة عملية البيع.',
+ 'unsuccessfully_suspended_sale' => 'فشل تعليق عملية البيع.',
+ 'unsuccessfully_updated' => 'فشل تحديث عملية البيع.',
+ 'unsuspend' => 'إلغاء تعليق',
+ 'unsuspend_and_delete' => 'إلغاء تعليق وحذف',
+ 'update' => 'تحديث',
+ 'upi' => 'رقم التعريف الشخصي',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'طلب عمل',
+ 'work_order_number' => 'رقم طلب العمل',
+ 'work_order_number_duplicate' => 'رقم طلب العمل يجب ان يكون فريد.',
+ 'work_order_sent' => 'تم ارسال طلب العمل الى',
+ 'work_order_unsent' => 'فشل في ارسال طلب العمل الى',
];
diff --git a/app/Language/az/Config.php b/app/Language/az/Config.php
index 030ccb0d5..0ef2f38c6 100644
--- a/app/Language/az/Config.php
+++ b/app/Language/az/Config.php
@@ -1,332 +1,335 @@
"Şirkət Unvanı",
- "address_required" => "Şirkətin adı olan boşluq sahəsi doldurulmalıdı.",
- "all_set" => "Bütün fayl icazələri düzgün qurulub!",
- "allow_duplicate_barcodes" => "Dublikat Barkodlarına icazə verin",
- "apostrophe" => "Apastrof",
- "backup_button" => "Ehtiyyat Köçürmə",
- "backup_database" => "Məlumat Bazasını Ehtiyyat Yaddaşına Göndər",
- "barcode" => "Barkod",
- "barcode_company" => "Şirkətin Adı",
- "barcode_configuration" => "Barkod Konfiqurasiyası",
- "barcode_content" => "Barkod Məzmunu",
- "barcode_first_row" => "Sıra 1",
- "barcode_font" => "Yazı Tipi",
- "barcode_formats" => "Giriş Formatları",
- "barcode_generate_if_empty" => "Boşdursa Yarat.",
- "barcode_height" => "Hündürlük",
- "barcode_id" => "Malın İd/Adı",
- "barcode_info" => "Barkod Konfiqurasiya Məlumatı",
- "barcode_layout" => "Barkod Çərçivəsi",
- "barcode_name" => "Ad",
- "barcode_number" => "Barkod",
- "barcode_number_in_row" => "Sıradakı Nömrə",
- "barcode_page_cellspacing" => "Səhifədə hüceyrə sahəsini göstərin.",
- "barcode_page_width" => "Səyfənin genişliyini göstər",
- "barcode_price" => "Qiymət",
- "barcode_second_row" => "Sıra 2",
- "barcode_third_row" => "Sira 3",
- "barcode_tooltip" => "Diqqət: Bu xüsusiyyət malların dublikat olmaslna, idxal edilməsinə və ya yaradılmasına səbəb ola bilər. Çoğaltıcı barkod istəmirsinizsə istifadə etməyin.",
- "barcode_type" => "Barkod Növü",
- "barcode_width" => "Genişlik",
- "bottom" => "Aşağı",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Nəğd Pul Cədvəlləri",
- "cash_decimals_tooltip" => "Nağd pul və Məzənnədəki ədədlər eyni olarsa, onda nağd pul yuvarlaqlaşması baş verməz.",
- "cash_rounding" => "Nəğd Pul Yuvarlaqlaşdırılması",
- "category_dropdown" => "Bölməni açılan siyahida göstər",
- "center" => "Mərkəz",
- "change_apperance_tooltip" => "",
- "comma" => "vergül",
- "company" => "Şirkətin Adı",
- "company_avatar" => "",
- "company_change_image" => "Şəkili Dəyiş",
- "company_logo" => "Şirkətin Logosu",
- "company_remove_image" => "Şəkili Sil",
- "company_required" => "Şirkətin adı qeyd olunmalıdır",
- "company_select_image" => "Şəkil Seç",
- "company_website_url" => "Şirkətin web saytı düzgün URL deyil.",
- "country_codes" => "Ölkə Kodları",
- "country_codes_tooltip" => "Vergüllə ayrılmış ölkə kodları üçün nominantim adres axtarışı.",
- "currency_code" => "Valyuta Kodu",
- "currency_decimals" => "Məzənnə Rəqəmləri",
- "currency_symbol" => "Valyuta Simvolu",
- "current_employee_only" => "",
- "customer_reward" => "Mükafat",
- "customer_reward_duplicate" => "Mükafat unikal olmalıdir.",
- "customer_reward_enable" => "Müştəri mükafatlarını aktivləşdirin",
- "customer_reward_invalid_chars" => "Mukafat '_ ' təşkil edə bilməz",
- "customer_reward_required" => "Mükafat olan sahə boş qala bilməz",
- "customer_sales_tax_support" => "Müştəri Satış Vergi Dəstəyi",
- "date_or_time_format" => "Tarix və Vaxt Filteri",
- "datetimeformat" => "Tarix və Vaxt formatı",
- "decimal_point" => "Ondaliq Nöqtə",
- "default_barcode_font_size_number" => "Standart Barkod Yazı Növü Ölçüsü rəqəm ilə olmalıdır.",
- "default_barcode_font_size_required" => "Standart Barkod Yazı Növü Ölçüsü olan sahə boş qala bilməz.",
- "default_barcode_height_number" => "Standart Barkod hündürlüyü rəqəm ilə olmalıdır.",
- "default_barcode_height_required" => "Standart Barkod olan sahə boş qala bilməz.",
- "default_barcode_num_in_row_number" => "Sıradakı Barkod Nömrəsi rəqəm ilə olmalıdır.",
- "default_barcode_num_in_row_required" => "Standart Barkod Nömrəsi olan sahə boş qala bilməz.",
- "default_barcode_page_cellspacing_number" => "Standart Barkod Səhifədki hücrə boşluğu rəqəm ilə olmalıdır.",
- "default_barcode_page_cellspacing_required" => "Standart Barkod Səhifədəki hücrə boşluğu olan sahə boş qala bilməz.",
- "default_barcode_page_width_number" => "Standart Barkod Sahifə genişliyi rəqəm ilə olmalıdır.",
- "default_barcode_page_width_required" => "Standart Barkod Səhifə Genişliyi olan sahə boş qala bilməz.",
- "default_barcode_width_number" => "Standart Barkod Genişliyi rəqəm ilə olmalıdır.",
- "default_barcode_width_required" => "Standart Barkod Genişliyi olan sahə boş qala bilməz.",
- "default_item_columns" => "Sabit Görünür Malların Sütunları",
- "default_origin_tax_code" => "Vergi Kodunun Standart Mənbəyi",
- "default_receivings_discount" => "Alışdan sonra standart endirim",
- "default_receivings_discount_number" => "Sabit alacaqlar endirimi bir nömrə olmalıdır.",
- "default_receivings_discount_required" => "Standart alış endirimi tələb olunan sahədir.",
- "default_sales_discount" => "Standart Satış Endirimi",
- "default_sales_discount_number" => "Standart Satış Endirimi rəqəm ilə olmalıdır.",
- "default_sales_discount_required" => "Standart Satış Endirimi tələb olunan sahədi.",
- "default_tax_category" => "Standart Vergi Bölməsi",
- "default_tax_code" => "Standart Vergo kodu",
- "default_tax_jurisdiction" => "Standart Vergi Yurisdiksiyası",
- "default_tax_name_number" => "Standart Vergi Adı uzun adlı olmalıdır .",
- "default_tax_name_required" => "Adi vergi mütləq rəqəmlə olmalıdır.",
- "default_tax_rate" => "Adi vergi dərəcəsi %",
- "default_tax_rate_1" => "Vergi Dərəcəsi 1",
- "default_tax_rate_2" => "Vergi Məzənnəsi 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Standart Vergi Məzənnəsi rəqəm ilə olmalıdır.",
- "default_tax_rate_required" => "Standart Vergi Məzənnəsi olan sahə boş qala bilməz.",
- "derive_sale_quantity" => "Tərtib edilmiş satış məbləğinə icazə verin",
- "derive_sale_quantity_tooltip" => "Əgər yoxlanılırsa, uzunmüddətli məbləğdə sifariş edilən əşyalar üçün yeni bir mal növü veriləcəkdir",
- "dinner_table" => "Cədvəl",
- "dinner_table_duplicate" => "Cədvəl unikal olmalıdır.",
- "dinner_table_enable" => "Axşam yeməyi masalarını aktiv edin",
- "dinner_table_invalid_chars" => "Masanın adı '_' təşkil etməməlidir.",
- "dinner_table_required" => "Masa olan sahə boş qala bilməz.",
- "dot" => "nöqtə",
- "email" => "Elektron Adres",
- "email_configuration" => "Elektron Adres Konfiqurasiyası",
- "email_mailpath" => "Email Göndətməyə qısa yol",
- "email_protocol" => "Protokol",
- "email_receipt_check_behaviour" => "E-poçt qəbzi qutusu",
- "email_receipt_check_behaviour_always" => "Həmişə yoxlanılır",
- "email_receipt_check_behaviour_last" => "Son seçimi yadda saxla",
- "email_receipt_check_behaviour_never" => "Həmişə aktiv deyil",
- "email_smtp_crypto" => "SMTP Şifrələmə",
- "email_smtp_host" => "SMTP Serveri",
- "email_smtp_pass" => "Faks",
- "email_smtp_port" => "SMTP Portu",
- "email_smtp_timeout" => "STMTP vaxt bitimi (lər)",
- "email_smtp_user" => "SMTP İstifadəçi Adı",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Məxvilik Təmin edin",
- "enforce_privacy_tooltip" => "Müştərilərin gizliliyini qorumaq, silmək halında məlumat şifrələməsini təmin etmək",
- "fax" => "Faks",
- "file_perm" => "Fayl icazəsində problem var, lütfən bu səhvləri düzəldib səhifəni yeniləyin.",
- "financial_year" => "Maliyyə İli Başlancığı",
- "financial_year_apr" => "1 Aprel",
- "financial_year_aug" => "1 Avgust",
- "financial_year_dec" => "1 Dekabr",
- "financial_year_feb" => "1 Fevral",
- "financial_year_jan" => "1 Yanvar",
- "financial_year_jul" => "1 İyul",
- "financial_year_jun" => "1 İyun",
- "financial_year_mar" => "1 Mart",
- "financial_year_may" => "1 May",
- "financial_year_nov" => "1 Noyabr",
- "financial_year_oct" => "1 Oktyabr",
- "financial_year_sep" => "1 Sentyabr",
- "floating_labels" => "",
- "gcaptcha_enable" => "Giriş Səyfəsi reCAPTCHA",
- "gcaptcha_secret_key" => "reCAPTCHA Gizli Açarı",
- "gcaptcha_secret_key_required" => "reCAPTCHA Gizli Açar olan sahə boş qala bilməz",
- "gcaptcha_site_key" => "reCAPTCHA Sayt Açarı",
- "gcaptcha_site_key_required" => "reCAPTCHA Sayt Açarı olan sahə boş qala bilməz",
- "gcaptcha_tooltip" => "Giriş səhifəsini Google reCAPTCHA ilə qoruyun, APİ açarını uyğunlaşdırmaq üçün işarə ilə göstərilən düyməyə basın.",
- "general" => "Ümumi",
- "general_configuration" => "Ümumi Konfiqurasiya",
- "giftcard_number" => "Hədiyyə Kartı Nömrəsi",
- "giftcard_random" => "Təsadüfən Yarat",
- "giftcard_series" => "Bölümlərə görə Yarat",
- "image_allowed_file_types" => "İcazəli fayl növləri",
- "image_max_height_tooltip" => "Şəkillərinin maksimum hündürlüyü pikselə(px).",
- "image_max_size_tooltip" => "Şəkil yükləmələrinin maksimum fayl ölçüsü kilobaytla(kb).",
- "image_max_width_tooltip" => "Şəkillərinin maksimum enliliyi pikselə(px).",
- "image_restrictions" => "Şəkil yükləmə məhdudiyyətləri",
- "include_hsn" => "HSN Kodlarına dəstək verin",
- "info" => "Məlumat",
- "info_configuration" => "Dükan İnformasiyası",
- "input_groups" => "",
- "integrations" => "İnteqrasiya",
- "integrations_configuration" => "Üçüncü tərəf inteqrasiya",
- "invoice" => "Faktura",
- "invoice_configuration" => "Faktura Çap Parametrləri",
- "invoice_default_comments" => "Standart Faktura Şərhləri",
- "invoice_email_message" => "Dil",
- "invoice_enable" => "Fakturanı Aktivləşdir",
- "invoice_printer" => "Faktura Printeri",
- "invoice_type" => "Qaimənin Tipi",
- "is_readable" => "oxunur, lakin icazələr 660-dan yüksəkdir.",
- "is_writable" => "yazılabilir, lakin icazələr 750-dən yüksəkdir.",
- "item_markup" => "",
- "jsprintsetup_required" => "Xəbərdarlıq: Bu funksiya yalnız FireFox jsPrintSetup addon quraşdırıldığı halda işləyəcəkdir. Yadda saxlanılsın?",
- "language" => "Dil",
- "last_used_invoice_number" => "Son istifadə edilmiş Faktura nömrəsi",
- "last_used_quote_number" => "Son istifadə edilmiş Kvota sayı",
- "last_used_work_order_number" => "Son istifadə edilən W / O sayı",
- "left" => "Sol",
- "license" => "Lisenziya",
- "license_configuration" => "Lisenziya bəyanatı",
- "line_sequence" => "Sıra Ardıcıllığı",
- "lines_per_page" => "Səhifə başına xəttlər",
- "lines_per_page_number" => "Səhifə başına sətirlər bir rəqəm ilə olmalıdır.",
- "lines_per_page_required" => "Səyfə Başına olan xəttər sahəsi boş qala bilməz.",
- "locale" => "Yerləşdirmə",
- "locale_configuration" => "Lokallaşdırma Konfiqurasiyası",
- "locale_info" => "Lokallaşdırma Konfiqurasiya Məlumatı",
- "location" => "Fond",
- "location_configuration" => "Anbar Yerləri",
- "location_info" => "Yer Konfiqurasiya Məlumatı",
- "login_form" => "",
- "logout" => "Çıxışdan əvvəl məlumatlari ehtiyat bazasına köçürmək istəyirsinizmi? Çıxış üçün Bekap və ya [Ləğv] üçün [OK]' düyməsinə basın.",
- "mailchimp" => "Mailçimp",
- "mailchimp_api_key" => "Mailchimp API Açarı",
- "mailchimp_configuration" => "Mailchimp Konfiqurasiyası",
- "mailchimp_key_successfully" => "API Açarı etibarlıdır.",
- "mailchimp_key_unsuccessfully" => "API Açarı etibarsızdır.",
- "mailchimp_lists" => "Mailchimp siyahısı (lar)",
- "mailchimp_tooltip" => "API Açarının İşarəsinə basın.",
- "message" => "Mesaj",
- "message_configuration" => "Mesaj Konfiqurasiyası",
- "msg_msg" => "Saxlanılan Mətn Mesajı",
- "msg_msg_placeholder" => "SMS şablonunu istifadə etmək istəyirsinizsə, mesajınızı buraya qeyd edin, əks halda qutunu boş buraxın.",
- "msg_pwd" => "SMS-API Şifrəsi",
- "msg_pwd_required" => "SMS-API şifrəsi tələb olunan bir sahədir",
- "msg_src" => "SMS-API Göndərici ID",
- "msg_src_required" => "SMS-API Göndərici ID tələb olunan sahədir",
- "msg_uid" => "SMS-API İstifadəçi adı",
- "msg_uid_required" => "SMS-API İstifadəçi adı tələb olunan sahədir",
- "multi_pack_enabled" => "Hər bir elementə birdən çox paket",
- "no_risk" => "Təhlükəsizlik / zəiflik riski yoxdur.",
- "none" => "Heç biri",
- "notify_alignment" => "Bildiriş Pəncərə Mövqeyi",
- "number_format" => "Nömrə Formatı",
- "number_locale" => "Yerləşdirmə",
- "number_locale_invalid" => "Kompaniyanın tel.",
- "number_locale_required" => "Şirkət telefonu olan sahə boş qalma bilməz.",
- "number_locale_tooltip" => "Bu link vasitəsilə uyğun bir yer tapın.",
- "os_timezone" => "OSPOS Saat qurşağı:",
- "ospos_info" => "OSPOS quraşdırılması məlumatı",
- "payment_options_order" => "Sifariş üçün Ödəmə Şərtləri",
- "perm_risk" => "Permissions higher than 750 leaves this software at risk.",
- "phone" => "Şirkətin Telefon Nömrəsi",
- "phone_required" => "Şirkət Telefonu tələb olunan bir sahədir.",
- "print_bottom_margin" => "Çərçivədki aşağı Sərhəd",
- "print_bottom_margin_number" => "Aşağıdaki Sərhəd rəqəm ilə olmalıdır.",
- "print_bottom_margin_required" => "Aşağıdakı Sərhəd boş qala bilməz.",
- "print_delay_autoreturn" => "Gecikmiş satışa Avto qaytarılma",
- "print_delay_autoreturn_number" => "Satışı dayandırmaq üçün autoqaytarılma zəruri bir sahədir.",
- "print_delay_autoreturn_required" => "Satışı dayandırmaq üçün autoqaytarılma bir sıra olmalıdır.",
- "print_footer" => "Brauzer Altlığını Çap Et",
- "print_header" => "Brauzer Başlığını çap et",
- "print_left_margin" => "Soldaki Künc",
- "print_left_margin_number" => "Soldaki Künc rəqəm ilə olmalıdır.",
- "print_left_margin_required" => "Soldaki Künc olan sahə boş qala bilməz.",
- "print_receipt_check_behaviour" => "Qəbzin çapını təsdiqləyin",
- "print_receipt_check_behaviour_always" => "Həmişə yoxlanılır",
- "print_receipt_check_behaviour_last" => "Son seçimi yadda saxla",
- "print_receipt_check_behaviour_never" => "Həmişə təsdiqləsin",
- "print_right_margin" => "Sağdaki Künc",
- "print_right_margin_number" => "Sağdakı Künc rəqəm ilə olmalıdır.",
- "print_right_margin_required" => "Sağdakı Künc olan sahə boş qala bilməz.",
- "print_silently" => "Çap Edilmiş Yazışmanı Gostər",
- "print_top_margin" => "Üstdəki Künc",
- "print_top_margin_number" => "Üstdəki Künc rəqəm ilə olmalıdır.",
- "print_top_margin_required" => "Üstdəki Sahə Boş qala bilməz.",
- "quantity_decimals" => "Ondalıqların Miqdarı",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Standart şərhlər",
- "receipt" => "Çek",
- "receipt_category" => "",
- "receipt_configuration" => "Çek Cap Parametirləri",
- "receipt_default" => "Adi",
- "receipt_font_size" => "Yazı Tipi",
- "receipt_font_size_number" => "Yazı ölçüsü bir sıra olmalıdır.",
- "receipt_font_size_required" => "Yazı tipi ölçüsü zəruri bir sahədir.",
- "receipt_info" => "Alınan Konfiqurasiya Məlumatı",
- "receipt_printer" => "Bilet Çap edən",
- "receipt_short" => "Qısa",
- "receipt_show_company_name" => "Şirkətin Adını Göstər",
- "receipt_show_description" => "Təsviri Göstər",
- "receipt_show_serialnumber" => "Serial nömrəsi göstər",
- "receipt_show_tax_ind" => "Vergi göstəricisinə bax",
- "receipt_show_taxes" => "Vergini Göstər",
- "receipt_show_total_discount" => "Ümumi Endirim göstər",
- "receipt_template" => "Geri qaytarmaq mütləq məsafə lazımdır",
- "receiving_calculate_average_price" => "Otalama Qiyməti Hesabla (Alınan)",
- "recv_invoice_format" => "Alınan Fatura Formatı",
- "register_mode_default" => "Standart Qeydiyyat Rejimi",
- "report_an_issue" => "Bir problemi bildirişi",
- "return_policy_required" => "Geri Qaytarma Qanunu olan sahə zəruri sahədir.",
- "reward" => "Mükafat",
- "reward_configuration" => "Konfiqurasiya ugurla saxlanıldı",
- "right" => "Konfiqurasiya ugursuz oldu saxlanilmadi",
- "sales_invoice_format" => "Satış Fatura Formatı",
- "sales_quote_format" => "Satış Sitat Formati",
- "mailpath_invalid" => "",
- "saved_successfully" => "Konfiqurasiya uğurla saxlanıldı.",
- "saved_unsuccessfully" => "Konfiqurasiyanı saxlamq mümkün olmadı.",
- "security_issue" => "Təhlükəsizlik açığı xəbərdarlığı",
- "server_notice" => "Xahiş edirik, hesabatın təqdim edilməsi üçün aşağıdakı məlumatı istifadə edin.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Ofis İşarəsini Göstər",
- "statistics" => "Statistikalari Göndər",
- "statistics_tooltip" => "İnkişaf və xüsusiyyət təkmilləşdirilməsi məqsədi ilə statistika göndərin.",
- "stock_location" => "Ehtiyyat Yeri",
- "stock_location_duplicate" => "Ehtiyyat Olan Yer Unikal Olmalıdir.",
- "stock_location_invalid_chars" => "Ehtiyyat Yeri təşkil etməməlidir '_'.",
- "stock_location_required" => "Ehtiyyat Yeri Olan Sahə boş qala bilməz.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Sütun 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Təklif Çərçivələrini Axtar",
- "suggestions_second_column" => "Sütun 2",
- "suggestions_third_column" => "Sütun 3",
- "system_conf" => "Quraşdırma və Conf",
- "system_info" => "System Info",
- "table" => "Masa",
- "table_configuration" => "Cədvəl Konfiqurasiyası",
- "takings_printer" => "Printer Çeki",
- "tax" => "Vergi",
- "tax_category" => "Vergi Kategoriyasi",
- "tax_category_duplicate" => "Daxil edilən vergi kategoriyası artıq mövcuddur.",
- "tax_category_invalid_chars" => "Daxil edilən vergi kategoriyası səhvdir.",
- "tax_category_required" => "Vergi Kategoriyası tələb olunur.",
- "tax_category_used" => "Vergi kateqoriyası istifadə olunduğu üçün silinə bilməz.",
- "tax_configuration" => "Vergi Konfiqurasiyası",
- "tax_decimals" => "Vaxt",
- "tax_id" => "Vergi İD",
- "tax_included" => "Vergi Daxildir",
- "theme" => "Vebsayt",
- "theme_preview" => "",
- "thousands_separator" => "Minliklər Ayıran",
- "timezone" => "Vaxt Zonası",
- "timezone_error" => "OSPOS Saat qurşağı Yerli saat qurşağınızdan fərqlidir.",
- "top" => "Yuxarı",
- "use_destination_based_tax" => "Təyinatından vergi istifadə edin",
- "user_timezone" => "Yerli saat qurşağı:",
- "website" => "Vebsayt",
- "wholesale_markup" => "",
- "work_order_enable" => "İş Sifariş Dəstəyi",
- "work_order_format" => "İş Sifarş Farmatı",
+ 'address' => 'Şirkət Unvanı',
+ 'address_required' => 'Şirkətin adı olan boşluq sahəsi doldurulmalıdı.',
+ 'all_set' => 'Bütün fayl icazələri düzgün qurulub!',
+ 'allow_duplicate_barcodes' => 'Dublikat Barkodlarına icazə verin',
+ 'apostrophe' => 'Apastrof',
+ 'backup_button' => 'Ehtiyyat Köçürmə',
+ 'backup_database' => 'Məlumat Bazasını Ehtiyyat Yaddaşına Göndər',
+ 'barcode' => 'Barkod',
+ 'barcode_company' => 'Şirkətin Adı',
+ 'barcode_configuration' => 'Barkod Konfiqurasiyası',
+ 'barcode_content' => 'Barkod Məzmunu',
+ 'barcode_first_row' => 'Sıra 1',
+ 'barcode_font' => 'Yazı Tipi',
+ 'barcode_formats' => 'Giriş Formatları',
+ 'barcode_generate_if_empty' => 'Boşdursa Yarat.',
+ 'barcode_height' => 'Hündürlük',
+ 'barcode_id' => 'Malın İd/Adı',
+ 'barcode_info' => 'Barkod Konfiqurasiya Məlumatı',
+ 'barcode_layout' => 'Barkod Çərçivəsi',
+ 'barcode_name' => 'Ad',
+ 'barcode_number' => 'Barkod',
+ 'barcode_number_in_row' => 'Sıradakı Nömrə',
+ 'barcode_page_cellspacing' => 'Səhifədə hüceyrə sahəsini göstərin.',
+ 'barcode_page_width' => 'Səyfənin genişliyini göstər',
+ 'barcode_price' => 'Qiymət',
+ 'barcode_second_row' => 'Sıra 2',
+ 'barcode_third_row' => 'Sira 3',
+ 'barcode_tooltip' => 'Diqqət: Bu xüsusiyyət malların dublikat olmaslna, idxal edilməsinə və ya yaradılmasına səbəb ola bilər. Çoğaltıcı barkod istəmirsinizsə istifadə etməyin.',
+ 'barcode_type' => 'Barkod Növü',
+ 'barcode_width' => 'Genişlik',
+ 'bottom' => 'Aşağı',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Nəğd Pul Cədvəlləri',
+ 'cash_decimals_tooltip' => 'Nağd pul və Məzənnədəki ədədlər eyni olarsa, onda nağd pul yuvarlaqlaşması baş verməz.',
+ 'cash_rounding' => 'Nəğd Pul Yuvarlaqlaşdırılması',
+ 'category_dropdown' => 'Bölməni açılan siyahida göstər',
+ 'center' => 'Mərkəz',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'vergül',
+ 'company' => 'Şirkətin Adı',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Şəkili Dəyiş',
+ 'company_logo' => 'Şirkətin Logosu',
+ 'company_remove_image' => 'Şəkili Sil',
+ 'company_required' => 'Şirkətin adı qeyd olunmalıdır',
+ 'company_select_image' => 'Şəkil Seç',
+ 'company_website_url' => 'Şirkətin web saytı düzgün URL deyil.',
+ 'country_codes' => 'Ölkə Kodları',
+ 'country_codes_tooltip' => 'Vergüllə ayrılmış ölkə kodları üçün nominantim adres axtarışı.',
+ 'currency_code' => 'Valyuta Kodu',
+ 'currency_decimals' => 'Məzənnə Rəqəmləri',
+ 'currency_symbol' => 'Valyuta Simvolu',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Mükafat',
+ 'customer_reward_duplicate' => 'Mükafat unikal olmalıdir.',
+ 'customer_reward_enable' => 'Müştəri mükafatlarını aktivləşdirin',
+ 'customer_reward_invalid_chars' => "Mukafat '_ ' təşkil edə bilməz",
+ 'customer_reward_required' => 'Mükafat olan sahə boş qala bilməz',
+ 'customer_sales_tax_support' => 'Müştəri Satış Vergi Dəstəyi',
+ 'date_or_time_format' => 'Tarix və Vaxt Filteri',
+ 'datetimeformat' => 'Tarix və Vaxt formatı',
+ 'decimal_point' => 'Ondaliq Nöqtə',
+ 'default_barcode_font_size_number' => 'Standart Barkod Yazı Növü Ölçüsü rəqəm ilə olmalıdır.',
+ 'default_barcode_font_size_required' => 'Standart Barkod Yazı Növü Ölçüsü olan sahə boş qala bilməz.',
+ 'default_barcode_height_number' => 'Standart Barkod hündürlüyü rəqəm ilə olmalıdır.',
+ 'default_barcode_height_required' => 'Standart Barkod olan sahə boş qala bilməz.',
+ 'default_barcode_num_in_row_number' => 'Sıradakı Barkod Nömrəsi rəqəm ilə olmalıdır.',
+ 'default_barcode_num_in_row_required' => 'Standart Barkod Nömrəsi olan sahə boş qala bilməz.',
+ 'default_barcode_page_cellspacing_number' => 'Standart Barkod Səhifədki hücrə boşluğu rəqəm ilə olmalıdır.',
+ 'default_barcode_page_cellspacing_required' => 'Standart Barkod Səhifədəki hücrə boşluğu olan sahə boş qala bilməz.',
+ 'default_barcode_page_width_number' => 'Standart Barkod Sahifə genişliyi rəqəm ilə olmalıdır.',
+ 'default_barcode_page_width_required' => 'Standart Barkod Səhifə Genişliyi olan sahə boş qala bilməz.',
+ 'default_barcode_width_number' => 'Standart Barkod Genişliyi rəqəm ilə olmalıdır.',
+ 'default_barcode_width_required' => 'Standart Barkod Genişliyi olan sahə boş qala bilməz.',
+ 'default_item_columns' => 'Sabit Görünür Malların Sütunları',
+ 'default_origin_tax_code' => 'Vergi Kodunun Standart Mənbəyi',
+ 'default_receivings_discount' => 'Alışdan sonra standart endirim',
+ 'default_receivings_discount_number' => 'Sabit alacaqlar endirimi bir nömrə olmalıdır.',
+ 'default_receivings_discount_required' => 'Standart alış endirimi tələb olunan sahədir.',
+ 'default_sales_discount' => 'Standart Satış Endirimi',
+ 'default_sales_discount_number' => 'Standart Satış Endirimi rəqəm ilə olmalıdır.',
+ 'default_sales_discount_required' => 'Standart Satış Endirimi tələb olunan sahədi.',
+ 'default_tax_category' => 'Standart Vergi Bölməsi',
+ 'default_tax_code' => 'Standart Vergo kodu',
+ 'default_tax_jurisdiction' => 'Standart Vergi Yurisdiksiyası',
+ 'default_tax_name_number' => 'Standart Vergi Adı uzun adlı olmalıdır .',
+ 'default_tax_name_required' => 'Adi vergi mütləq rəqəmlə olmalıdır.',
+ 'default_tax_rate' => 'Adi vergi dərəcəsi %',
+ 'default_tax_rate_1' => 'Vergi Dərəcəsi 1',
+ 'default_tax_rate_2' => 'Vergi Məzənnəsi 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Standart Vergi Məzənnəsi rəqəm ilə olmalıdır.',
+ 'default_tax_rate_required' => 'Standart Vergi Məzənnəsi olan sahə boş qala bilməz.',
+ 'derive_sale_quantity' => 'Tərtib edilmiş satış məbləğinə icazə verin',
+ 'derive_sale_quantity_tooltip' => 'Əgər yoxlanılırsa, uzunmüddətli məbləğdə sifariş edilən əşyalar üçün yeni bir mal növü veriləcəkdir',
+ 'dinner_table' => 'Cədvəl',
+ 'dinner_table_duplicate' => 'Cədvəl unikal olmalıdır.',
+ 'dinner_table_enable' => 'Axşam yeməyi masalarını aktiv edin',
+ 'dinner_table_invalid_chars' => "Masanın adı '_' təşkil etməməlidir.",
+ 'dinner_table_required' => 'Masa olan sahə boş qala bilməz.',
+ 'dot' => 'nöqtə',
+ 'email' => 'Elektron Adres',
+ 'email_configuration' => 'Elektron Adres Konfiqurasiyası',
+ 'email_mailpath' => 'Email Göndərməyə qısa yol',
+ 'email_protocol' => 'Protokol',
+ 'email_receipt_check_behaviour' => 'E-poçt qəbzi qutusu',
+ 'email_receipt_check_behaviour_always' => 'Həmişə yoxlanılır',
+ 'email_receipt_check_behaviour_last' => 'Son seçimi yadda saxla',
+ 'email_receipt_check_behaviour_never' => 'Həmişə aktiv deyil',
+ 'email_smtp_crypto' => 'SMTP Şifrələmə',
+ 'email_smtp_host' => 'SMTP Serveri',
+ 'email_smtp_pass' => 'SMTP Şifrəsi',
+ 'email_smtp_port' => 'SMTP Portu',
+ 'email_smtp_timeout' => 'STMTP vaxt bitimi (lər)',
+ 'email_smtp_user' => 'SMTP İstifadəçi Adı',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Məxvilik Təmin edin',
+ 'enforce_privacy_tooltip' => 'Müştərilərin gizliliyini qorumaq, silmək halında məlumat şifrələməsini təmin etmək',
+ 'fax' => 'Faks',
+ 'file_perm' => 'Fayl icazəsində problem var, lütfən bu səhvləri düzəldib səhifəni yeniləyin.',
+ 'financial_year' => 'Maliyyə İli Başlancığı',
+ 'financial_year_apr' => '1 Aprel',
+ 'financial_year_aug' => '1 Avgust',
+ 'financial_year_dec' => '1 Dekabr',
+ 'financial_year_feb' => '1 Fevral',
+ 'financial_year_jan' => '1 Yanvar',
+ 'financial_year_jul' => '1 İyul',
+ 'financial_year_jun' => '1 İyun',
+ 'financial_year_mar' => '1 Mart',
+ 'financial_year_may' => '1 May',
+ 'financial_year_nov' => '1 Noyabr',
+ 'financial_year_oct' => '1 Oktyabr',
+ 'financial_year_sep' => '1 Sentyabr',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => 'Giriş Səyfəsi reCAPTCHA',
+ 'gcaptcha_secret_key' => 'reCAPTCHA Gizli Açarı',
+ 'gcaptcha_secret_key_required' => 'reCAPTCHA Gizli Açar olan sahə boş qala bilməz',
+ 'gcaptcha_site_key' => 'reCAPTCHA Sayt Açarı',
+ 'gcaptcha_site_key_required' => 'reCAPTCHA Sayt Açarı olan sahə boş qala bilməz',
+ 'gcaptcha_tooltip' => 'Giriş səhifəsini Google reCAPTCHA ilə qoruyun, APİ açarını uyğunlaşdırmaq üçün işarə ilə göstərilən düyməyə basın.',
+ 'general' => 'Ümumi',
+ 'general_configuration' => 'Ümumi Konfiqurasiya',
+ 'giftcard_number' => 'Hədiyyə Kartı Nömrəsi',
+ 'giftcard_random' => 'Təsadüfən Yarat',
+ 'giftcard_series' => 'Bölümlərə görə Yarat',
+ 'image_allowed_file_types' => 'İcazəli fayl növləri',
+ 'image_max_height_tooltip' => 'Şəkillərinin maksimum hündürlüyü pikselə(px).',
+ 'image_max_size_tooltip' => 'Şəkil yükləmələrinin maksimum fayl ölçüsü kilobaytla(kb).',
+ 'image_max_width_tooltip' => 'Şəkillərinin maksimum enliliyi pikselə(px).',
+ 'image_restrictions' => 'Şəkil yükləmə məhdudiyyətləri',
+ 'include_hsn' => 'HSN Kodlarına dəstək verin',
+ 'info' => 'Məlumat',
+ 'info_configuration' => 'Dükan İnformasiyası',
+ 'input_groups' => '',
+ 'integrations' => 'İnteqrasiya',
+ 'integrations_configuration' => 'Üçüncü tərəf inteqrasiya',
+ 'invoice' => 'Faktura',
+ 'invoice_configuration' => 'Faktura Çap Parametrləri',
+ 'invoice_default_comments' => 'Standart Faktura Şərhləri',
+ 'invoice_email_message' => 'Faktura E-poçt Şablonu',
+ 'invoice_enable' => 'Fakturanı Aktivləşdir',
+ 'invoice_printer' => 'Faktura Printeri',
+ 'invoice_type' => 'Qaimənin Tipi',
+ 'is_readable' => 'oxunur, lakin icazələr 660-dan yüksəkdir.',
+ 'is_writable' => 'yazılabilir, lakin icazələr 750-dən yüksəkdir.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Xəbərdarlıq: Bu funksiya yalnız FireFox jsPrintSetup addon quraşdırıldığı halda işləyəcəkdir. Yadda saxlanılsın?',
+ 'language' => 'Dil',
+ 'last_used_invoice_number' => 'Son istifadə edilmiş Faktura nömrəsi',
+ 'last_used_quote_number' => 'Son istifadə edilmiş Kvota sayı',
+ 'last_used_work_order_number' => 'Son istifadə edilən W / O sayı',
+ 'left' => 'Sol',
+ 'license' => 'Lisenziya',
+ 'license_configuration' => 'Lisenziya bəyanatı',
+ 'line_sequence' => 'Sıra Ardıcıllığı',
+ 'lines_per_page' => 'Səhifə başına xəttlər',
+ 'lines_per_page_number' => 'Səhifə başına sətirlər bir rəqəm ilə olmalıdır.',
+ 'lines_per_page_required' => 'Səyfə Başına olan xəttər sahəsi boş qala bilməz.',
+ 'locale' => 'Yerləşdirmə',
+ 'locale_configuration' => 'Lokallaşdırma Konfiqurasiyası',
+ 'locale_info' => 'Lokallaşdırma Konfiqurasiya Məlumatı',
+ 'location' => 'Fond',
+ 'location_configuration' => 'Anbar Yerləri',
+ 'location_info' => 'Yer Konfiqurasiya Məlumatı',
+ 'login_form' => '',
+ 'logout' => "Çıxışdan əvvəl məlumatlari ehtiyat bazasına köçürmək istəyirsinizmi? Çıxış üçün Bekap və ya [Ləğv] üçün [OK]' düyməsinə basın.",
+ 'mailchimp' => 'Mailçimp',
+ 'mailchimp_api_key' => 'Mailchimp API Açarı',
+ 'mailchimp_configuration' => 'Mailchimp Konfiqurasiyası',
+ 'mailchimp_key_successfully' => 'API Açarı etibarlıdır.',
+ 'mailchimp_key_unsuccessfully' => 'API Açarı etibarsızdır.',
+ 'mailchimp_lists' => 'Mailchimp siyahısı (lar)',
+ 'mailchimp_tooltip' => 'API Açarının İşarəsinə basın.',
+ 'message' => 'Mesaj',
+ 'message_configuration' => 'Mesaj Konfiqurasiyası',
+ 'msg_msg' => 'Saxlanılan Mətn Mesajı',
+ 'msg_msg_placeholder' => 'SMS şablonunu istifadə etmək istəyirsinizsə, mesajınızı buraya qeyd edin, əks halda qutunu boş buraxın.',
+ 'msg_pwd' => 'SMS-API Şifrəsi',
+ 'msg_pwd_required' => 'SMS-API şifrəsi tələb olunan bir sahədir',
+ 'msg_src' => 'SMS-API Göndərici ID',
+ 'msg_src_required' => 'SMS-API Göndərici ID tələb olunan sahədir',
+ 'msg_uid' => 'SMS-API İstifadəçi adı',
+ 'msg_uid_required' => 'SMS-API İstifadəçi adı tələb olunan sahədir',
+ 'multi_pack_enabled' => 'Hər bir elementə birdən çox paket',
+ 'no_risk' => 'Təhlükəsizlik / zəiflik riski yoxdur.',
+ 'none' => 'Heç biri',
+ 'notify_alignment' => 'Bildiriş Pəncərə Mövqeyi',
+ 'number_format' => 'Nömrə Formatı',
+ 'number_locale' => 'Yerləşdirmə',
+ 'number_locale_invalid' => 'Daxil edilən yerləşdirmə etibarsızdır.',
+ 'number_locale_required' => 'Yerləşdirmə tələb olunan sahədir.',
+ 'number_locale_tooltip' => 'Bu link vasitəsilə uyğun bir yer tapın.',
+ 'os_timezone' => 'OSPOS Saat qurşağı:',
+ 'ospos_info' => 'OSPOS quraşdırılması məlumatı',
+ 'payment_options_order' => 'Sifariş üçün Ödəmə Şərtləri',
+ 'payment_reference_code_length_limits' => 'Ödəniş İstinad Kodu
Uzunluq Limitləri',
+ 'payment_reference_code_length_max_label' => 'Maks',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => 'Permissions higher than 750 leaves this software at risk.',
+ 'phone' => 'Şirkətin Telefon Nömrəsi',
+ 'phone_required' => 'Şirkət Telefonu tələb olunan bir sahədir.',
+ 'print_bottom_margin' => 'Çərçivədki aşağı Sərhəd',
+ 'print_bottom_margin_number' => 'Aşağıdaki Sərhəd rəqəm ilə olmalıdır.',
+ 'print_bottom_margin_required' => 'Aşağıdakı Sərhəd boş qala bilməz.',
+ 'print_delay_autoreturn' => 'Gecikmiş satışa Avto qaytarılma',
+ 'print_delay_autoreturn_number' => 'Satışı dayandırmaq üçün autoqaytarılma zəruri bir sahədir.',
+ 'print_delay_autoreturn_required' => 'Satışı dayandırmaq üçün autoqaytarılma bir sıra olmalıdır.',
+ 'print_footer' => 'Brauzer Altlığını Çap Et',
+ 'print_header' => 'Brauzer Başlığını çap et',
+ 'print_left_margin' => 'Soldaki Künc',
+ 'print_left_margin_number' => 'Soldaki Künc rəqəm ilə olmalıdır.',
+ 'print_left_margin_required' => 'Soldaki Künc olan sahə boş qala bilməz.',
+ 'print_receipt_check_behaviour' => 'Qəbzin çapını təsdiqləyin',
+ 'print_receipt_check_behaviour_always' => 'Həmişə yoxlanılır',
+ 'print_receipt_check_behaviour_last' => 'Son seçimi yadda saxla',
+ 'print_receipt_check_behaviour_never' => 'Həmişə təsdiqləsin',
+ 'print_right_margin' => 'Sağdaki Künc',
+ 'print_right_margin_number' => 'Sağdakı Künc rəqəm ilə olmalıdır.',
+ 'print_right_margin_required' => 'Sağdakı Künc olan sahə boş qala bilməz.',
+ 'print_silently' => 'Çap Edilmiş Yazışmanı Gostər',
+ 'print_top_margin' => 'Üstdəki Künc',
+ 'print_top_margin_number' => 'Üstdəki Künc rəqəm ilə olmalıdır.',
+ 'print_top_margin_required' => 'Üstdəki Sahə Boş qala bilməz.',
+ 'quantity_decimals' => 'Ondalıqların Miqdarı',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Standart şərhlər',
+ 'receipt' => 'Çek',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Çek Cap Parametirləri',
+ 'receipt_default' => 'Adi',
+ 'receipt_font_size' => 'Yazı Tipi',
+ 'receipt_font_size_number' => 'Yazı ölçüsü bir sıra olmalıdır.',
+ 'receipt_font_size_required' => 'Yazı tipi ölçüsü zəruri bir sahədir.',
+ 'receipt_info' => 'Alınan Konfiqurasiya Məlumatı',
+ 'receipt_printer' => 'Bilet Çap edən',
+ 'receipt_short' => 'Qısa',
+ 'receipt_show_company_name' => 'Şirkətin Adını Göstər',
+ 'receipt_show_description' => 'Təsviri Göstər',
+ 'receipt_show_serialnumber' => 'Serial nömrəsi göstər',
+ 'receipt_show_tax_ind' => 'Vergi göstəricisinə bax',
+ 'receipt_show_taxes' => 'Vergini Göstər',
+ 'receipt_show_total_discount' => 'Ümumi Endirim göstər',
+ 'receipt_template' => 'Qəbz Şablonu',
+ 'receiving_calculate_average_price' => 'Otalama Qiyməti Hesabla (Alınan)',
+ 'recv_invoice_format' => 'Alınan Fatura Formatı',
+ 'register_mode_default' => 'Standart Qeydiyyat Rejimi',
+ 'report_an_issue' => 'Bir problemi bildirişi',
+ 'return_policy_required' => 'Geri Qaytarma Qanunu olan sahə zəruri sahədir.',
+ 'reward' => 'Mükafat',
+ 'reward_configuration' => 'Mükafat Konfiqurasiyası',
+ 'right' => 'Sağ',
+ 'sales_invoice_format' => 'Satış Fatura Formatı',
+ 'sales_quote_format' => 'Satış Sitat Formati',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => 'Konfiqurasiya uğurla saxlanıldı.',
+ 'saved_unsuccessfully' => 'Konfiqurasiyanı saxlamq mümkün olmadı.',
+ 'security_issue' => 'Təhlükəsizlik açığı xəbərdarlığı',
+ 'server_notice' => 'Xahiş edirik, hesabatın təqdim edilməsi üçün aşağıdakı məlumatı istifadə edin.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Ofis İşarəsini Göstər',
+ 'statistics' => 'Statistikalari Göndər',
+ 'statistics_tooltip' => 'İnkişaf və xüsusiyyət təkmilləşdirilməsi məqsədi ilə statistika göndərin.',
+ 'stock_location' => 'Ehtiyyat Yeri',
+ 'stock_location_duplicate' => 'Ehtiyyat Olan Yer Unikal Olmalıdir.',
+ 'stock_location_invalid_chars' => "Ehtiyyat Yeri təşkil etməməlidir '_'.",
+ 'stock_location_required' => 'Ehtiyyat Yeri Olan Sahə boş qala bilməz.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Sütun 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Təklif Çərçivələrini Axtar',
+ 'suggestions_second_column' => 'Sütun 2',
+ 'suggestions_third_column' => 'Sütun 3',
+ 'system_conf' => 'Quraşdırma və Conf',
+ 'system_info' => 'System Info',
+ 'table' => 'Masa',
+ 'table_configuration' => 'Cədvəl Konfiqurasiyası',
+ 'takings_printer' => 'Printer Çeki',
+ 'tax' => 'Vergi',
+ 'tax_category' => 'Vergi Kategoriyasi',
+ 'tax_category_duplicate' => 'Daxil edilən vergi kategoriyası artıq mövcuddur.',
+ 'tax_category_invalid_chars' => 'Daxil edilən vergi kategoriyası səhvdir.',
+ 'tax_category_required' => 'Vergi Kategoriyası tələb olunur.',
+ 'tax_category_used' => 'Vergi kateqoriyası istifadə olunduğu üçün silinə bilməz.',
+ 'tax_configuration' => 'Vergi Konfiqurasiyası',
+ 'tax_decimals' => 'Vergi Rəqəmləri',
+ 'tax_id' => 'Vergi İD',
+ 'tax_included' => 'Vergi Daxildir',
+ 'theme' => 'Mövzu',
+ 'theme_preview' => '',
+ 'thousands_separator' => 'Minliklər Ayıran',
+ 'timezone' => 'Vaxt Zonası',
+ 'timezone_error' => 'OSPOS Saat qurşağı Yerli saat qurşağınızdan fərqlidir.',
+ 'top' => 'Yuxarı',
+ 'use_destination_based_tax' => 'Təyinatından vergi istifadə edin',
+ 'user_timezone' => 'Yerli saat qurşağı:',
+ 'website' => 'Vebsayt',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'İş Sifariş Dəstəyi',
+ 'work_order_format' => 'İş Sifarş Farmatı',
];
diff --git a/app/Language/az/Login.php b/app/Language/az/Login.php
index 7f5913520..692713e28 100644
--- a/app/Language/az/Login.php
+++ b/app/Language/az/Login.php
@@ -1,25 +1,30 @@
"Mən robot deyiləm.",
- "go" => "daxil ol",
- "invalid_gcaptcha" => "Robot olmadığınızı təsdiqləyin.",
- "invalid_installation" => "Quraşdırma düzgün deyil, php.ini faylını yoxlayın.",
- "invalid_username_and_password" => "Yanlış istifadəçi adı və ya şifrə.",
- "login" => "Giriş",
- "logout" => "Çıxış",
- "migration_needed" => "{0} -ə daxil olandan sonra verilənlər bazası miqrasiyası başlayacaq.",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "Şifrə",
- "required_username" => "",
- "username" => "İstifadəçi",
- "welcome" => "{0} -ə xoş gəlmisiniz!",
+ "gcaptcha" => "Mən robot deyiləm.",
+ "go" => "daxil ol",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Robot olmadığınızı təsdiqləyin.",
+ "invalid_installation" => "Quraşdırma düzgün deyil, php.ini faylını yoxlayın.",
+ "invalid_username_and_password" => "Yanlış istifadəçi adı və ya şifrə.",
+ "login" => "Giriş",
+ "logout" => "Çıxış",
+ "migrating_database" => "Verilənlər bazası miqrasiya edilir",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "Verilənlər bazası uğurla miqrasiya edildi!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "{0} -ə daxil olandan sonra verilənlər bazası miqrasiyası başlayacaq.",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "Şifrə",
+ "required_username" => "",
+ "username" => "İstifadəçi",
+ "welcome" => "{0} -ə xoş gəlmisiniz!"
];
diff --git a/app/Language/az/Sales.php b/app/Language/az/Sales.php
index b2e47a35e..5dd9ef272 100644
--- a/app/Language/az/Sales.php
+++ b/app/Language/az/Sales.php
@@ -1,231 +1,235 @@
"Mövcud ballar",
- "rewards_package" => "Mükafatlar",
- "rewards_remaining_balance" => "Mükafatın yerdə qalan bal dəyəri ",
- "account_number" => "Hesab #",
- "add_payment" => "Ödəniş Əlavə Etmək",
- "amount_due" => "Qalıq",
- "amount_tendered" => "Ödənilən məbləğ",
- "authorized_signature" => "Səlahiyyətli İmza",
- "cancel_sale" => "İmtina",
- "cash" => "Nəğd pullar",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "Nağd pulun tənzimlənməsi",
- "cash_deposit" => "Nağd depozit",
- "cash_filter" => "Nəğd Pul",
- "change_due" => "Qalıq",
- "change_price" => "Satış qiymətini dəyiş",
- "check" => "Çek",
- "check_balance" => "Çek Xatırladan",
- "check_filter" => "Çek",
- "close" => "",
- "comment" => "Şərh",
- "comments" => "Şərhlər",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Tamamlayın",
- "confirm_cancel_sale" => "Siz əminsiniz ki,satışı ləğv etmək istəyirsiniz? Bütün detallar silinəcək.",
- "confirm_delete" => "Siz əminsiniz ki seçilmiş satışı (lar) silmək istəyirsiz?",
- "confirm_restore" => "Seçilmiş Satışları bərpa etmək istədiyinizə əminsinizmi?",
- "credit" => "Kredit kartı",
- "credit_deposit" => "Kredit Depoziti",
- "credit_filter" => "Kredit kartı",
- "current_table" => "",
- "customer" => "Ad",
- "customer_address" => "Ünvan",
- "customer_discount" => "Endirim",
- "customer_email" => "E-poçt",
- "customer_location" => "Yer",
- "customer_mailchimp_status" => "Mailchimp Statusu",
- "customer_optional" => "(Ödənişlərdə tələb olunur)",
- "customer_required" => "(Vacib)",
- "customer_total" => "Cəmi",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Satış Tarixi",
- "date_range" => "Tarix Aralığı",
- "date_required" => "Düzgün tarix daxil edilməlidir.",
- "date_type" => "Boşluğa tarix əlavə edilməlidir.",
- "debit" => "Debit kart",
- "debit_filter" => "",
- "delete" => "Silməyə izin ver",
- "delete_confirmation" => "Siz bu satışı silmək istəyinizə əminsiniz? Bu əməlliyat bərpa edilməyəcək.",
- "delete_entire_sale" => "Bütün Satışı Silmək",
- "delete_successful" => "Siz uğurla satışı sildiniz.",
- "delete_unsuccessful" => "Satışın silinməsi uğursuz oldu.",
- "description_abbrv" => "Təsvir.",
- "discard" => "İmtina",
- "discard_quote" => "",
- "discount" => "Disk",
- "discount_included" => "% Endirim",
- "discount_short" => "%",
- "due" => "Görə",
- "due_filter" => "Görə",
- "edit" => "Redaktə",
- "edit_item" => "Malın Redaktəsi",
- "edit_sale" => "Satışın Redaktəsi",
- "email_receipt" => "E-poçt Qəbz",
- "employee" => "Əməkdaş",
- "entry" => "Daxil",
- "error_editing_item" => "XƏTA Malın redaktəsində",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Malın axtarışı",
- "find_or_scan_item_or_receipt" => "Tapmaq skan etmək və ya kvitansiya",
- "giftcard" => "Hədiyyə Kartı",
- "giftcard_balance" => "Hədiyyə Kartı Balansı",
- "giftcard_filter" => "",
- "giftcard_number" => "Hədiyyə kartının nömrəsi",
- "group_by_category" => "Bölməyə görə grup",
- "group_by_type" => "Növə görə qrup",
- "hsn" => "HSN",
- "id" => "Satış İD",
- "include_prices" => "Qiymətlər daxildir?",
- "invoice" => "Qaimə",
- "invoice_confirm" => "Bu qaimə göndəriləcək",
- "invoice_enable" => "Qaimə Yarat",
- "invoice_filter" => "Qaimələr",
- "invoice_no_email" => "Bu müştərinin elektron ünvanı düzgün deyil.",
- "invoice_number" => "Qaimə #",
- "invoice_number_duplicate" => "Qaimə nömrəsi unikal olmalıdır.",
- "invoice_sent" => "Qaimə göndərildi",
- "invoice_total" => "Qaimə Çəmi",
- "invoice_type_custom_invoice" => "Fərqli Qaimə (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Fərqli Vergi Qaiməsi (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Qaimə (invoice.php)",
- "invoice_type_tax_invoice" => "Vergi Qaiməsi (tax_invoice.php)",
- "invoice_unsent" => "Qaimə göndərilə bilmədi",
- "invoice_update" => "Yeniden say",
- "item_insufficient_of_stock" => "Anbarda kifayət qədər mal yoxdur.",
- "item_name" => "Malın adı",
- "item_number" => "Mal #",
- "item_out_of_stock" => "Mal satılıb.",
- "key_browser" => "Faydalı Qısayollar",
- "key_cancel" => "Cari Kotirovka/Fatura/Satışı ləğv edir",
- "key_customer_search" => "Müştəri Axtarışı",
- "key_finish_quote" => "Ödəniş etmədən Kotirovka/Faturanı tamamlayın",
- "key_finish_sale" => "Ödəniş əlavə edib, faktura/satışı tamamlayın",
- "key_full" => "Tam Ekran rejimində açın",
- "key_function" => "Function",
- "key_help" => "Qısa yollar",
- "key_help_modal" => "Qısa yollar pəncərəsini açın",
- "key_in" => "Yaxınlaşdır",
- "key_item_search" => "Element Axtarışı",
- "key_out" => "Uzaqlaşdır",
- "key_payment" => "Ödəniş əlavə et",
- "key_print" => "Cari səhifəni çap et",
- "key_restore" => "Orjinal ekran ölçüsünə qayıt",
- "key_search" => "Axtarışın hesabat cədvəlləri",
- "key_suspend" => "Cari satışı dayandırın",
- "key_suspended" => "Dayandırılmış Satışları göstər",
- "key_system" => "Sistem Qısayolları",
- "key_tendered" => "Təklif olunan məbləği dəyişdirin",
- "key_title" => "Satış üçün klaviatura qısa yolları",
- "mc" => "",
- "mode" => "Qeydiyyat Rejimi",
- "must_enter_numeric" => "Ödəniş məbləği rəqəm ilə olmalıdır.",
- "must_enter_numeric_giftcard" => "Hədiyyə Kartın nömrəsi rəqəmlə olmalıdır.",
- "new_customer" => "Yeni Müştəri",
- "new_item" => "Yeni Mal",
- "no_description" => "Heç Biri",
- "no_filter" => "Hamısı",
- "no_items_in_cart" => "Səbətdə heç bir mal yoxdur.",
- "no_sales_to_display" => "Satış yoxdur.",
- "none_selected" => "Silmək üçün hər hansı bir Satış (lar) seçmədiniz.",
- "nontaxed_ind" => " . ",
- "not_authorized" => "Bu hərəkət səlahiyyətli deyil.",
- "one_or_multiple" => "Satış (lar)",
- "payment" => "Ödəniş Növü",
- "payment_amount" => "Məbləğ",
- "payment_not_cover_total" => "Ödəmə məbləği Toplamdan çox və ya bərabər olmalıdır.",
- "payment_type" => "Növ",
- "payments" => "",
- "payments_total" => "Cəmi Ödənilənlər",
- "price" => "Qiymət",
- "print_after_sale" => "Satışdan sonra Çap edin",
- "quantity" => "Miqdarı",
- "quantity_less_than_reorder_level" => "Diqqət: İstədiyinizin Miqdarı bu Öhdəlik üçün Yenidən Səviyyə səviyyəsindən aşağıdadır.",
- "quantity_less_than_zero" => "Xəbərdarlıq: İstədiyiniz miqdar kifayət deyil. Siz hələ də satışı edə bilərsiniz, lakin malın sayını yoxlayın.",
- "quantity_of_items" => "{0} Məhsulların miqdarı",
- "quote" => "Qiymət ver",
- "quote_number" => "Sitat Nömrəsi",
- "quote_number_duplicate" => "Sitatın nömrəsi unikal olmalıdır.",
- "quote_sent" => "Sitat göndərildi",
- "quote_unsent" => "Sitat göndırilə bilmədi",
- "receipt" => "malın çeki",
- "receipt_no_email" => "Bu müştərinin etibarlı bir e-poçt ünvanı yoxdur.",
- "receipt_number" => "Satış №",
- "receipt_sent" => "Çek Göndərildi",
- "receipt_unsent" => "Çek göndərilə Bilmədi",
- "refund" => "Qaytarılma növü",
- "register" => "jurnal satışı",
- "remove_customer" => "müştəriləri silmək",
- "remove_discount" => "",
- "return" => "qaytarmaq",
- "rewards" => "Mükafat Balları",
- "rewards_balance" => "Mükafat Balları Balansı",
- "sale" => "satış",
- "sale_by_invoice" => "Faktura ilə Satış",
- "sale_for_customer" => "Müştəri:",
- "sale_time" => "Vaxt",
- "sales_tax" => "Satış Vergisi",
- "sales_total" => "",
- "select_customer" => "Müştəri seçmək",
- "send_invoice" => "Faktura Göndər",
- "send_quote" => "Sitat Göndər",
- "send_receipt" => "Çek Göndər",
- "send_work_order" => "İş Sifarişini Göndərin",
- "serial" => "seriya nömrəsi",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Fakturanı Göstər",
- "show_receipt" => "Çek Göstər",
- "start_typing_customer_name" => "müştəri adını çap etməyə başlayın...",
- "start_typing_item_name" => "Malın adın başlayın çap etməyə yada skan edin şifrəni...",
- "stock" => "Anbar",
- "stock_location" => "Ehtiyyatın Yeri",
- "sub_total" => "yekun",
- "successfully_deleted" => "satış",
- "successfully_restored" => "Siz uğurla bərpa etdimiz",
- "successfully_suspended_sale" => "Sizin satışınız uğurla dayandırıldı.",
- "successfully_updated" => "Satış uğurla yeniləndi.",
- "suspend_sale" => "Dayandırmaq",
- "suspended_doc_id" => "Sənəd",
- "suspended_sale_id" => "Satış dayandırıldı İD",
- "suspended_sales" => "satış dayandırıldı",
- "table" => "Masa",
- "takings" => "Gündəlik Satışlar",
- "tax" => "vergi",
- "tax_id" => "Vergi İD",
- "tax_invoice" => "Vergi Qaimə",
- "tax_percent" => "vergi %",
- "taxed_ind" => "T",
- "total" => "cəm",
- "total_tax_exclusive" => "Vergi Xaric",
- "transaction_failed" => "Satış əməliyyatı uğursuz oldu.",
- "unable_to_add_item" => "Satışa əlavə edilən məhsul uğursuz oldu",
- "unsuccessfully_deleted" => "Satış (lar) silmək uğursuz oldu.",
- "unsuccessfully_restored" => "Satış (lar) bərpa olunmadı.",
- "unsuccessfully_suspended_sale" => "Satış dayandırıla bilmədi.",
- "unsuccessfully_updated" => "Satış yeniləməsi uğursuz oldu.",
- "unsuspend" => "blok etmək",
- "unsuspend_and_delete" => "blok etmək və silmək",
- "update" => "Yenilə",
- "upi" => "UPI",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "İş Sifarişi",
- "work_order_number" => "Sifariş nömrəsi",
- "work_order_number_duplicate" => "İş sifarişinin nömrəsi unikal olmalıdır.",
- "work_order_sent" => "İş sifarişi göndərildi",
- "work_order_unsent" => "İş Sifarişi göndərilməmişdi",
+ 'account_number' => 'Hesab #',
+ 'add_payment' => 'Ödəniş Əlavə Etmək',
+ 'amount_due' => 'Qalıq',
+ 'amount_tendered' => 'Ödənilən məbləğ',
+ 'authorized_signature' => 'Səlahiyyətli İmza',
+ 'cancel_sale' => 'İmtina',
+ 'cash' => 'Nəğd pullar',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'Nağd pulun tənzimlənməsi',
+ 'cash_deposit' => 'Nağd depozit',
+ 'cash_filter' => 'Nəğd Pul',
+ 'change_due' => 'Qalıq',
+ 'change_price' => 'Satış qiymətini dəyiş',
+ 'check' => 'Çek',
+ 'check_balance' => 'Çek Xatırladan',
+ 'check_filter' => 'Çek',
+ 'close' => '',
+ 'comment' => 'Şərh',
+ 'comments' => 'Şərhlər',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Tamamlayın',
+ 'confirm_cancel_sale' => 'Siz əminsiniz ki,satışı ləğv etmək istəyirsiniz? Bütün detallar silinəcək.',
+ 'confirm_delete' => 'Siz əminsiniz ki seçilmiş satışı (lar) silmək istəyirsiz?',
+ 'confirm_restore' => 'Seçilmiş Satışları bərpa etmək istədiyinizə əminsinizmi?',
+ 'credit' => 'Kredit kartı',
+ 'credit_deposit' => 'Kredit Depoziti',
+ 'credit_filter' => 'Kredit kartı',
+ 'current_table' => '',
+ 'customer' => 'Ad',
+ 'customer_address' => 'Ünvan',
+ 'customer_discount' => 'Endirim',
+ 'customer_email' => 'E-poçt',
+ 'customer_location' => 'Yer',
+ 'customer_mailchimp_status' => 'Mailchimp Statusu',
+ 'customer_optional' => '(Ödənişlərdə tələb olunur)',
+ 'customer_required' => '(Vacib)',
+ 'customer_total' => 'Cəmi',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Mövcud ballar',
+ 'daily_sales' => '',
+ 'date' => 'Satış Tarixi',
+ 'date_range' => 'Tarix Aralığı',
+ 'date_required' => 'Düzgün tarix daxil edilməlidir.',
+ 'date_type' => 'Boşluğa tarix əlavə edilməlidir.',
+ 'debit' => 'Debit kart',
+ 'debit_filter' => '',
+ 'delete' => 'Silməyə izin ver',
+ 'delete_confirmation' => 'Siz bu satışı silmək istəyinizə əminsiniz? Bu əməlliyat bərpa edilməyəcək.',
+ 'delete_entire_sale' => 'Bütün Satışı Silmək',
+ 'delete_successful' => 'Siz uğurla satışı sildiniz.',
+ 'delete_unsuccessful' => 'Satışın silinməsi uğursuz oldu.',
+ 'description_abbrv' => 'Təsvir.',
+ 'discard' => 'İmtina',
+ 'discard_quote' => '',
+ 'discount' => 'Disk',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Endirim',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'Görə',
+ 'due_filter' => 'Görə',
+ 'edit' => 'Redaktə',
+ 'edit_item' => 'Malın Redaktəsi',
+ 'edit_sale' => 'Satışın Redaktəsi',
+ 'email_receipt' => 'E-poçt Qəbz',
+ 'employee' => 'Əməkdaş',
+ 'entry' => 'Daxil',
+ 'error_editing_item' => 'XƏTA Malın redaktəsində',
+ 'find_or_scan_item' => 'Malın axtarışı',
+ 'find_or_scan_item_or_receipt' => 'Tapmaq skan etmək və ya kvitansiya',
+ 'giftcard' => 'Hədiyyə Kartı',
+ 'giftcard_balance' => 'Hədiyyə Kartı Balansı',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Hədiyyə kartının nömrəsi',
+ 'group_by_category' => 'Bölməyə görə grup',
+ 'group_by_type' => 'Növə görə qrup',
+ 'hsn' => 'HSN',
+ 'id' => 'Satış İD',
+ 'include_prices' => 'Qiymətlər daxildir?',
+ 'invoice' => 'Qaimə',
+ 'invoice_confirm' => 'Bu qaimə göndəriləcək',
+ 'invoice_enable' => 'Qaimə Yarat',
+ 'invoice_filter' => 'Qaimələr',
+ 'invoice_no_email' => 'Bu müştərinin elektron ünvanı düzgün deyil.',
+ 'invoice_number' => 'Qaimə #',
+ 'invoice_number_duplicate' => 'Qaimə nömrəsi unikal olmalıdır.',
+ 'invoice_sent' => 'Qaimə göndərildi',
+ 'invoice_total' => 'Qaimə Çəmi',
+ 'invoice_type_custom_invoice' => 'Fərqli Qaimə (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Fərqli Vergi Qaiməsi (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Qaimə (invoice.php)',
+ 'invoice_type_tax_invoice' => 'Vergi Qaiməsi (tax_invoice.php)',
+ 'invoice_unsent' => 'Qaimə göndərilə bilmədi',
+ 'invoice_update' => 'Yeniden say',
+ 'item_insufficient_of_stock' => 'Anbarda kifayət qədər mal yoxdur.',
+ 'item_name' => 'Malın adı',
+ 'item_number' => 'Mal #',
+ 'item_out_of_stock' => 'Mal satılıb.',
+ 'key_browser' => 'Faydalı Qısayollar',
+ 'key_cancel' => 'Cari Kotirovka/Fatura/Satışı ləğv edir',
+ 'key_customer_search' => 'Müştəri Axtarışı',
+ 'key_finish_quote' => 'Ödəniş etmədən Kotirovka/Faturanı tamamlayın',
+ 'key_finish_sale' => 'Ödəniş əlavə edib, faktura/satışı tamamlayın',
+ 'key_full' => 'Tam Ekran rejimində açın',
+ 'key_function' => 'Function',
+ 'key_help' => 'Qısa yollar',
+ 'key_help_modal' => 'Qısa yollar pəncərəsini açın',
+ 'key_in' => 'Yaxınlaşdır',
+ 'key_item_search' => 'Element Axtarışı',
+ 'key_out' => 'Uzaqlaşdır',
+ 'key_payment' => 'Ödəniş əlavə et',
+ 'key_print' => 'Cari səhifəni çap et',
+ 'key_restore' => 'Orjinal ekran ölçüsünə qayıt',
+ 'key_search' => 'Axtarışın hesabat cədvəlləri',
+ 'key_suspend' => 'Cari satışı dayandırın',
+ 'key_suspended' => 'Dayandırılmış Satışları göstər',
+ 'key_system' => 'Sistem Qısayolları',
+ 'key_tendered' => 'Təklif olunan məbləği dəyişdirin',
+ 'key_title' => 'Satış üçün klaviatura qısa yolları',
+ 'mc' => '',
+ 'mode' => 'Qeydiyyat Rejimi',
+ 'must_enter_numeric' => 'Ödəniş məbləği rəqəm ilə olmalıdır.',
+ 'must_enter_numeric_giftcard' => 'Hədiyyə Kartın nömrəsi rəqəmlə olmalıdır.',
+ 'must_enter_reference_code' => 'İstinad/Axtarış nömrəsi daxil edilməlidir.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Yeni Müştəri',
+ 'new_item' => 'Yeni Mal',
+ 'no_description' => 'Heç Biri',
+ 'no_filter' => 'Hamısı',
+ 'no_items_in_cart' => 'Səbətdə heç bir mal yoxdur.',
+ 'no_sales_to_display' => 'Satış yoxdur.',
+ 'none_selected' => 'Silmək üçün hər hansı bir Satış (lar) seçmədiniz.',
+ 'nontaxed_ind' => ' . ',
+ 'not_authorized' => 'Bu hərəkət səlahiyyətli deyil.',
+ 'one_or_multiple' => 'Satış (lar)',
+ 'payment' => 'Ödəniş Növü',
+ 'payment_amount' => 'Məbləğ',
+ 'payment_not_cover_total' => 'Ödəmə məbləği Toplamdan çox və ya bərabər olmalıdır.',
+ 'payment_type' => 'Növ',
+ 'payments' => '',
+ 'payments_total' => 'Cəmi Ödənilənlər',
+ 'price' => 'Qiymət',
+ 'print_after_sale' => 'Satışdan sonra Çap edin',
+ 'quantity' => 'Miqdarı',
+ 'quantity_less_than_reorder_level' => 'Diqqət: İstədiyinizin Miqdarı bu Öhdəlik üçün Yenidən Səviyyə səviyyəsindən aşağıdadır.',
+ 'quantity_less_than_zero' => 'Xəbərdarlıq: İstədiyiniz miqdar kifayət deyil. Siz hələ də satışı edə bilərsiniz, lakin malın sayını yoxlayın.',
+ 'quantity_of_items' => '{0} Məhsulların miqdarı',
+ 'quote' => 'Qiymət ver',
+ 'quote_number' => 'Sitat Nömrəsi',
+ 'quote_number_duplicate' => 'Sitatın nömrəsi unikal olmalıdır.',
+ 'quote_sent' => 'Sitat göndərildi',
+ 'quote_unsent' => 'Sitat göndırilə bilmədi',
+ 'receipt' => 'malın çeki',
+ 'receipt_no_email' => 'Bu müştərinin etibarlı bir e-poçt ünvanı yoxdur.',
+ 'receipt_number' => 'Satış №',
+ 'receipt_sent' => 'Çek Göndərildi',
+ 'receipt_unsent' => 'Çek göndərilə Bilmədi',
+ 'reference_code' => 'Ödəniş İstinad Kodu',
+ 'reference_code_invalid_characters' => 'İstinad kodu yalnız hərf və rəqəmlərdən ibarət olmalıdır.',
+ 'reference_code_length_error' => 'İstinad kodunun uzunluğu etibarsızdır.',
+ 'refund' => 'Qaytarılma növü',
+ 'register' => 'jurnal satışı',
+ 'remove_customer' => 'müştəriləri silmək',
+ 'remove_discount' => '',
+ 'return' => 'qaytarmaq',
+ 'rewards' => 'Mükafat Balları',
+ 'rewards_balance' => 'Mükafat Balları Balansı',
+ 'rewards_package' => 'Mükafatlar',
+ 'rewards_remaining_balance' => 'Mükafatın yerdə qalan bal dəyəri ',
+ 'sale' => 'satış',
+ 'sale_by_invoice' => 'Faktura ilə Satış',
+ 'sale_for_customer' => 'Müştəri:',
+ 'sale_time' => 'Vaxt',
+ 'sales_tax' => 'Satış Vergisi',
+ 'sales_total' => '',
+ 'select_customer' => 'Müştəri seçmək',
+ 'send_invoice' => 'Faktura Göndər',
+ 'send_quote' => 'Sitat Göndər',
+ 'send_receipt' => 'Çek Göndər',
+ 'send_work_order' => 'İş Sifarişini Göndərin',
+ 'serial' => 'seriya nömrəsi',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Fakturanı Göstər',
+ 'show_receipt' => 'Çek Göstər',
+ 'start_typing_customer_name' => 'müştəri adını çap etməyə başlayın...',
+ 'start_typing_item_name' => 'Malın adın başlayın çap etməyə yada skan edin şifrəni...',
+ 'stock' => 'Anbar',
+ 'stock_location' => 'Ehtiyyatın Yeri',
+ 'sub_total' => 'yekun',
+ 'successfully_deleted' => 'satış',
+ 'successfully_restored' => 'Siz uğurla bərpa etdimiz',
+ 'successfully_suspended_sale' => 'Sizin satışınız uğurla dayandırıldı.',
+ 'successfully_updated' => 'Satış uğurla yeniləndi.',
+ 'suspend_sale' => 'Dayandırmaq',
+ 'suspended_doc_id' => 'Sənəd',
+ 'suspended_sale_id' => 'Satış dayandırıldı İD',
+ 'suspended_sales' => 'satış dayandırıldı',
+ 'table' => 'Masa',
+ 'takings' => 'Gündəlik Satışlar',
+ 'tax' => 'vergi',
+ 'tax_id' => 'Vergi İD',
+ 'tax_invoice' => 'Vergi Qaimə',
+ 'tax_percent' => 'vergi %',
+ 'taxed_ind' => 'T',
+ 'total' => 'cəm',
+ 'total_tax_exclusive' => 'Vergi Xaric',
+ 'transaction_failed' => 'Satış əməliyyatı uğursuz oldu.',
+ 'unable_to_add_item' => 'Satışa əlavə edilən məhsul uğursuz oldu',
+ 'unsuccessfully_deleted' => 'Satış (lar) silmək uğursuz oldu.',
+ 'unsuccessfully_restored' => 'Satış (lar) bərpa olunmadı.',
+ 'unsuccessfully_suspended_sale' => 'Satış dayandırıla bilmədi.',
+ 'unsuccessfully_updated' => 'Satış yeniləməsi uğursuz oldu.',
+ 'unsuspend' => 'blok etmək',
+ 'unsuspend_and_delete' => 'blok etmək və silmək',
+ 'update' => 'Yenilə',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'İş Sifarişi',
+ 'work_order_number' => 'Sifariş nömrəsi',
+ 'work_order_number_duplicate' => 'İş sifarişinin nömrəsi unikal olmalıdır.',
+ 'work_order_sent' => 'İş sifarişi göndərildi',
+ 'work_order_unsent' => 'İş Sifarişi göndərilməmişdi',
];
diff --git a/app/Language/bg/Config.php b/app/Language/bg/Config.php
index 01b98e603..c932fd673 100644
--- a/app/Language/bg/Config.php
+++ b/app/Language/bg/Config.php
@@ -1,332 +1,335 @@
"Адрес на компанията",
- "address_required" => "Адресът на компанията е задължително поле.",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "Разрешаване на дублирани баркодове",
- "apostrophe" => "апостроф",
- "backup_button" => "резервно копие",
- "backup_database" => "Резервно копие база данни",
- "barcode" => "Баркод",
- "barcode_company" => "Име на компанията",
- "barcode_configuration" => "Конфигуриране на баркод",
- "barcode_content" => "Съдържание на баркод",
- "barcode_first_row" => "Ред 1",
- "barcode_font" => "Font",
- "barcode_formats" => "Input Formats",
- "barcode_generate_if_empty" => "Generate if empty.",
- "barcode_height" => "Height (px)",
- "barcode_id" => "Item Id/Name",
- "barcode_info" => "Barcode Configuration Information",
- "barcode_layout" => "Barcode Layout",
- "barcode_name" => "Name",
- "barcode_number" => "Barcode",
- "barcode_number_in_row" => "Number in row",
- "barcode_page_cellspacing" => "Display page cellspacing.",
- "barcode_page_width" => "Display page width",
- "barcode_price" => "Price",
- "barcode_second_row" => "Row 2",
- "barcode_third_row" => "Row 3",
- "barcode_tooltip" => "Warning: This feature can cause duplicate items to be imported or created. Do not use if you do not want duplicate barcodes.",
- "barcode_type" => "Barcode Type",
- "barcode_width" => "Width (px)",
- "bottom" => "Bottom",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Cash Decimals",
- "cash_decimals_tooltip" => "If Cash Decimals and Currency Decimals are the same then no cash rounding will take place.",
- "cash_rounding" => "Cash Rounding",
- "category_dropdown" => "",
- "center" => "Center",
- "change_apperance_tooltip" => "",
- "comma" => "comma",
- "company" => "Company Name",
- "company_avatar" => "",
- "company_change_image" => "Change Image",
- "company_logo" => "Company Logo",
- "company_remove_image" => "Remove Image",
- "company_required" => "Company name is a required field",
- "company_select_image" => "Select Image",
- "company_website_url" => "Company website is not a valid URL (http://...).",
- "country_codes" => "Country Codes",
- "country_codes_tooltip" => "Comma separated list of country codes for nominatim address lookup.",
- "currency_code" => "",
- "currency_decimals" => "Currency Decimals",
- "currency_symbol" => "Currency Symbol",
- "current_employee_only" => "",
- "customer_reward" => "Reward",
- "customer_reward_duplicate" => "Reward must be unique.",
- "customer_reward_enable" => "Enable Customer Rewards",
- "customer_reward_invalid_chars" => "Reward can not contain '_'",
- "customer_reward_required" => "Reward is a required field",
- "customer_sales_tax_support" => "Customer Sales Tax Support",
- "date_or_time_format" => "Date and Time Filter",
- "datetimeformat" => "Date and Time Format",
- "decimal_point" => "Decimal Point",
- "default_barcode_font_size_number" => "Default Barcode Font Size must be a number.",
- "default_barcode_font_size_required" => "Default Barcode Font Size is a required field.",
- "default_barcode_height_number" => "Default Barcode Height must be a number.",
- "default_barcode_height_required" => "Default Barcode Height is a required field.",
- "default_barcode_num_in_row_number" => "Default Barcode Number in Row must be a number.",
- "default_barcode_num_in_row_required" => "Default Barcode Number in Row is a required field.",
- "default_barcode_page_cellspacing_number" => "Default Barcode Page Cellspacing must be a number.",
- "default_barcode_page_cellspacing_required" => "Default Barcode Page Cellspacing is a required field.",
- "default_barcode_page_width_number" => "Default Barcode Page Width must be a number.",
- "default_barcode_page_width_required" => "Default Barcode Page Width is a required field.",
- "default_barcode_width_number" => "Default Barcode Width must be a number.",
- "default_barcode_width_required" => "Default Barcode Width is a required field.",
- "default_item_columns" => "",
- "default_origin_tax_code" => "Default Origin Tax Code",
- "default_receivings_discount" => "",
- "default_receivings_discount_number" => "",
- "default_receivings_discount_required" => "",
- "default_sales_discount" => "Default Sales Discount %",
- "default_sales_discount_number" => "Default Sales Discount must be a number.",
- "default_sales_discount_required" => "Default Sales Discount is a required field.",
- "default_tax_category" => "",
- "default_tax_code" => "",
- "default_tax_jurisdiction" => "",
- "default_tax_name_number" => "Default Tax Name must be a string.",
- "default_tax_name_required" => "Default Tax Name is a required field.",
- "default_tax_rate" => "Default Tax Rate %",
- "default_tax_rate_1" => "Tax 1 Rate",
- "default_tax_rate_2" => "Tax 2 Rate",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Default Tax Rate must be a number.",
- "default_tax_rate_required" => "Default Tax Rate is a required field.",
- "derive_sale_quantity" => "",
- "derive_sale_quantity_tooltip" => "",
- "dinner_table" => "Table",
- "dinner_table_duplicate" => "Table must be unique.",
- "dinner_table_enable" => "Enable Dinner Tables",
- "dinner_table_invalid_chars" => "Table Name can not contain '_'.",
- "dinner_table_required" => "Table is a required field.",
- "dot" => "dot",
- "email" => "Email",
- "email_configuration" => "Email Configuration",
- "email_mailpath" => "Path to Sendmail",
- "email_protocol" => "Protocol",
- "email_receipt_check_behaviour" => "",
- "email_receipt_check_behaviour_always" => "",
- "email_receipt_check_behaviour_last" => "",
- "email_receipt_check_behaviour_never" => "",
- "email_smtp_crypto" => "SMTP Encryption",
- "email_smtp_host" => "SMTP Server",
- "email_smtp_pass" => "SMTP Password",
- "email_smtp_port" => "SMTP Port",
- "email_smtp_timeout" => "SMTP Timeout (s)",
- "email_smtp_user" => "SMTP Username",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "",
- "enforce_privacy_tooltip" => "",
- "fax" => "Fax",
- "file_perm" => "There are problems with file permissions please fix and reload this page.",
- "financial_year" => "Fiscal Year Start",
- "financial_year_apr" => "1st of April",
- "financial_year_aug" => "1st of August",
- "financial_year_dec" => "1st of December",
- "financial_year_feb" => "1st of February",
- "financial_year_jan" => "1st of January",
- "financial_year_jul" => "1st of July",
- "financial_year_jun" => "1st of June",
- "financial_year_mar" => "1st of March",
- "financial_year_may" => "1st of May",
- "financial_year_nov" => "1st of November",
- "financial_year_oct" => "1st of October",
- "financial_year_sep" => "1st of September",
- "floating_labels" => "",
- "gcaptcha_enable" => "Login Page reCAPTCHA",
- "gcaptcha_secret_key" => "reCAPTCHA Secret Key",
- "gcaptcha_secret_key_required" => "reCAPTCHA Secret Key is a required field",
- "gcaptcha_site_key" => "reCAPTCHA Site Key",
- "gcaptcha_site_key_required" => "reCAPTCHA Site Key is a required field",
- "gcaptcha_tooltip" => "Protect the Login page with Google reCAPTCHA, click the icon for an API key pair.",
- "general" => "General",
- "general_configuration" => "General Configuration",
- "giftcard_number" => "Gift Card Number",
- "giftcard_random" => "Generate Random",
- "giftcard_series" => "Generate in Series",
- "image_allowed_file_types" => "",
- "image_max_height_tooltip" => "",
- "image_max_size_tooltip" => "",
- "image_max_width_tooltip" => "",
- "image_restrictions" => "",
- "include_hsn" => "",
- "info" => "Information",
- "info_configuration" => "Store Information",
- "input_groups" => "",
- "integrations" => "",
- "integrations_configuration" => "",
- "invoice" => "Invoice",
- "invoice_configuration" => "Invoice Print Settings",
- "invoice_default_comments" => "Default Invoice Comments",
- "invoice_email_message" => "Invoice Email Template",
- "invoice_enable" => "Enable Invoicing",
- "invoice_printer" => "Invoice Printer",
- "invoice_type" => "",
- "is_readable" => "",
- "is_writable" => "is writable, but the permissions are higher than 750.",
- "item_markup" => "",
- "jsprintsetup_required" => "Warning: This functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?",
- "language" => "Language",
- "last_used_invoice_number" => "Last used Invoice Number",
- "last_used_quote_number" => "Last used Quote Number",
- "last_used_work_order_number" => "Last used W/O Number",
- "left" => "Left",
- "license" => "License",
- "license_configuration" => "License Statement",
- "line_sequence" => "Line Sequence",
- "lines_per_page" => "Lines per Page",
- "lines_per_page_number" => "Линиите на страница трябва да са число.",
- "lines_per_page_required" => "Lines per Page is a required field.",
- "locale" => "Localization",
- "locale_configuration" => "Localization Configuration",
- "locale_info" => "Localization Configuration Information",
- "location" => "Stock",
- "location_configuration" => "Stock Locations",
- "location_info" => "Location Configuration Information",
- "login_form" => "",
- "logout" => "Do you want to make a backup before logging out? Click [OK] to backup or [Cancel] to logout.",
- "mailchimp" => "Mailchimp",
- "mailchimp_api_key" => "Mailchimp API Key",
- "mailchimp_configuration" => "Mailchimp Configuration",
- "mailchimp_key_successfully" => "API Key is valid.",
- "mailchimp_key_unsuccessfully" => "API Key is invalid.",
- "mailchimp_lists" => "Mailchimp List(s)",
- "mailchimp_tooltip" => "Click the icon for an API Key.",
- "message" => "Message",
- "message_configuration" => "Message Configuration",
- "msg_msg" => "Saved Text Message",
- "msg_msg_placeholder" => "If you wish to use a SMS template save your message here, otherwise leave the box blank.",
- "msg_pwd" => "SMS-API Password",
- "msg_pwd_required" => "SMS-API Password is a required field",
- "msg_src" => "SMS-API Sender ID",
- "msg_src_required" => "SMS-API Sender ID is a required field",
- "msg_uid" => "SMS-API Username",
- "msg_uid_required" => "SMS-API Username is a required field",
- "multi_pack_enabled" => "",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "none",
- "notify_alignment" => "Notification Popup Position",
- "number_format" => "Number Format",
- "number_locale" => "Localization",
- "number_locale_invalid" => "The entered locale is invalid. Check the link in the tooltip to find a valid locale.",
- "number_locale_required" => "Number Locale is a required field.",
- "number_locale_tooltip" => "Find a suitable locale through this link.",
- "os_timezone" => "",
- "ospos_info" => "",
- "payment_options_order" => "Payment Options Order",
- "perm_risk" => "Permissions higher than 750 leaves this software at risk.",
- "phone" => "Company Phone",
- "phone_required" => "Company Phone is a required field.",
- "print_bottom_margin" => "Margin Bottom",
- "print_bottom_margin_number" => "Margin Bottom must be a number.",
- "print_bottom_margin_required" => "Margin Bottom is a required field.",
- "print_delay_autoreturn" => "",
- "print_delay_autoreturn_number" => "",
- "print_delay_autoreturn_required" => "",
- "print_footer" => "Print Browser Footer",
- "print_header" => "Print Browser Header",
- "print_left_margin" => "Margin Left",
- "print_left_margin_number" => "Margin Left must be a number.",
- "print_left_margin_required" => "Margin Left is a required field.",
- "print_receipt_check_behaviour" => "",
- "print_receipt_check_behaviour_always" => "",
- "print_receipt_check_behaviour_last" => "",
- "print_receipt_check_behaviour_never" => "",
- "print_right_margin" => "Margin Right",
- "print_right_margin_number" => "Margin Right must be a number.",
- "print_right_margin_required" => "Margin Right is a required field.",
- "print_silently" => "Show Print Dialog",
- "print_top_margin" => "Margin Top",
- "print_top_margin_number" => "Margin Top must be a number.",
- "print_top_margin_required" => "Margin Top is a required field.",
- "quantity_decimals" => "Quantity Decimals",
- "quick_cash_enable" => "",
- "quote_default_comments" => "",
- "receipt" => "Receipt",
- "receipt_category" => "",
- "receipt_configuration" => "Receipt Print Settings",
- "receipt_default" => "Default",
- "receipt_font_size" => "Font Size",
- "receipt_font_size_number" => "Font Size must be a number.",
- "receipt_font_size_required" => "Font Size is a required field.",
- "receipt_info" => "Receipt Configuration Information",
- "receipt_printer" => "Ticket Printer",
- "receipt_short" => "Short",
- "receipt_show_company_name" => "Show Company Name",
- "receipt_show_description" => "Show Description",
- "receipt_show_serialnumber" => "Show Serial Number",
- "receipt_show_tax_ind" => "",
- "receipt_show_taxes" => "Show Taxes",
- "receipt_show_total_discount" => "Show Total Discount",
- "receipt_template" => "Receipt Template",
- "receiving_calculate_average_price" => "Calc avg. Price (Receiving)",
- "recv_invoice_format" => "Receivings Invoice Format",
- "register_mode_default" => "Default Register Mode",
- "report_an_issue" => "",
- "return_policy_required" => "Return policy is a required field.",
- "reward" => "Reward",
- "reward_configuration" => "Reward Configuration",
- "right" => "Right",
- "sales_invoice_format" => "Sales Invoice Format",
- "sales_quote_format" => "Sales Quote Format",
- "mailpath_invalid" => "",
- "saved_successfully" => "Configuration save successful.",
- "saved_unsuccessfully" => "Configuration save failed.",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "Please use the below info for issue reporting.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Show office icon",
- "statistics" => "Send Statistics",
- "statistics_tooltip" => "Send statistics for development and feature improvement purposes.",
- "stock_location" => "Stock location",
- "stock_location_duplicate" => "Stock Location must be unique.",
- "stock_location_invalid_chars" => "Stock Location can not contain '_'.",
- "stock_location_required" => "Stock location is a required field.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Column 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Search Suggestions Layout",
- "suggestions_second_column" => "Column 2",
- "suggestions_third_column" => "Column 3",
- "system_conf" => "Setup & Conf",
- "system_info" => "System Info",
- "table" => "Table",
- "table_configuration" => "Table Configuration",
- "takings_printer" => "Receipt Printer",
- "tax" => "Tax",
- "tax_category" => "Tax Category",
- "tax_category_duplicate" => "",
- "tax_category_invalid_chars" => "",
- "tax_category_required" => "",
- "tax_category_used" => "Tax category cannot be deleted because it is being used.",
- "tax_configuration" => "Tax Configuration",
- "tax_decimals" => "Tax Decimals",
- "tax_id" => "",
- "tax_included" => "Tax Included",
- "theme" => "Theme",
- "theme_preview" => "",
- "thousands_separator" => "Thousands Separator",
- "timezone" => "Timezone",
- "timezone_error" => "",
- "top" => "Top",
- "use_destination_based_tax" => "",
- "user_timezone" => "",
- "website" => "Website",
- "wholesale_markup" => "",
- "work_order_enable" => "Work Order Support",
- "work_order_format" => "Work Order Format",
+ 'address' => 'Адрес на компанията',
+ 'address_required' => 'Адресът на компанията е задължително поле.',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => 'Разрешаване на дублирани баркодове',
+ 'apostrophe' => 'апостроф',
+ 'backup_button' => 'резервно копие',
+ 'backup_database' => 'Резервно копие база данни',
+ 'barcode' => 'Баркод',
+ 'barcode_company' => 'Име на компанията',
+ 'barcode_configuration' => 'Конфигуриране на баркод',
+ 'barcode_content' => 'Съдържание на баркод',
+ 'barcode_first_row' => 'Ред 1',
+ 'barcode_font' => 'Font',
+ 'barcode_formats' => 'Input Formats',
+ 'barcode_generate_if_empty' => 'Generate if empty.',
+ 'barcode_height' => 'Height (px)',
+ 'barcode_id' => 'Item Id/Name',
+ 'barcode_info' => 'Barcode Configuration Information',
+ 'barcode_layout' => 'Barcode Layout',
+ 'barcode_name' => 'Name',
+ 'barcode_number' => 'Barcode',
+ 'barcode_number_in_row' => 'Number in row',
+ 'barcode_page_cellspacing' => 'Display page cellspacing.',
+ 'barcode_page_width' => 'Display page width',
+ 'barcode_price' => 'Price',
+ 'barcode_second_row' => 'Row 2',
+ 'barcode_third_row' => 'Row 3',
+ 'barcode_tooltip' => 'Warning: This feature can cause duplicate items to be imported or created. Do not use if you do not want duplicate barcodes.',
+ 'barcode_type' => 'Barcode Type',
+ 'barcode_width' => 'Width (px)',
+ 'bottom' => 'Bottom',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Cash Decimals',
+ 'cash_decimals_tooltip' => 'If Cash Decimals and Currency Decimals are the same then no cash rounding will take place.',
+ 'cash_rounding' => 'Cash Rounding',
+ 'category_dropdown' => '',
+ 'center' => 'Center',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'comma',
+ 'company' => 'Company Name',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Change Image',
+ 'company_logo' => 'Company Logo',
+ 'company_remove_image' => 'Remove Image',
+ 'company_required' => 'Company name is a required field',
+ 'company_select_image' => 'Select Image',
+ 'company_website_url' => 'Company website is not a valid URL (http://...).',
+ 'country_codes' => 'Country Codes',
+ 'country_codes_tooltip' => 'Comma separated list of country codes for nominatim address lookup.',
+ 'currency_code' => '',
+ 'currency_decimals' => 'Currency Decimals',
+ 'currency_symbol' => 'Currency Symbol',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Reward',
+ 'customer_reward_duplicate' => 'Reward must be unique.',
+ 'customer_reward_enable' => 'Enable Customer Rewards',
+ 'customer_reward_invalid_chars' => "Reward can not contain '_'",
+ 'customer_reward_required' => 'Reward is a required field',
+ 'customer_sales_tax_support' => 'Customer Sales Tax Support',
+ 'date_or_time_format' => 'Date and Time Filter',
+ 'datetimeformat' => 'Date and Time Format',
+ 'decimal_point' => 'Decimal Point',
+ 'default_barcode_font_size_number' => 'Default Barcode Font Size must be a number.',
+ 'default_barcode_font_size_required' => 'Default Barcode Font Size is a required field.',
+ 'default_barcode_height_number' => 'Default Barcode Height must be a number.',
+ 'default_barcode_height_required' => 'Default Barcode Height is a required field.',
+ 'default_barcode_num_in_row_number' => 'Default Barcode Number in Row must be a number.',
+ 'default_barcode_num_in_row_required' => 'Default Barcode Number in Row is a required field.',
+ 'default_barcode_page_cellspacing_number' => 'Default Barcode Page Cellspacing must be a number.',
+ 'default_barcode_page_cellspacing_required' => 'Default Barcode Page Cellspacing is a required field.',
+ 'default_barcode_page_width_number' => 'Default Barcode Page Width must be a number.',
+ 'default_barcode_page_width_required' => 'Default Barcode Page Width is a required field.',
+ 'default_barcode_width_number' => 'Default Barcode Width must be a number.',
+ 'default_barcode_width_required' => 'Default Barcode Width is a required field.',
+ 'default_item_columns' => '',
+ 'default_origin_tax_code' => 'Default Origin Tax Code',
+ 'default_receivings_discount' => '',
+ 'default_receivings_discount_number' => '',
+ 'default_receivings_discount_required' => '',
+ 'default_sales_discount' => 'Default Sales Discount %',
+ 'default_sales_discount_number' => 'Default Sales Discount must be a number.',
+ 'default_sales_discount_required' => 'Default Sales Discount is a required field.',
+ 'default_tax_category' => '',
+ 'default_tax_code' => '',
+ 'default_tax_jurisdiction' => '',
+ 'default_tax_name_number' => 'Default Tax Name must be a string.',
+ 'default_tax_name_required' => 'Default Tax Name is a required field.',
+ 'default_tax_rate' => 'Default Tax Rate %',
+ 'default_tax_rate_1' => 'Tax 1 Rate',
+ 'default_tax_rate_2' => 'Tax 2 Rate',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Default Tax Rate must be a number.',
+ 'default_tax_rate_required' => 'Default Tax Rate is a required field.',
+ 'derive_sale_quantity' => '',
+ 'derive_sale_quantity_tooltip' => '',
+ 'dinner_table' => 'Table',
+ 'dinner_table_duplicate' => 'Table must be unique.',
+ 'dinner_table_enable' => 'Enable Dinner Tables',
+ 'dinner_table_invalid_chars' => "Table Name can not contain '_'.",
+ 'dinner_table_required' => 'Table is a required field.',
+ 'dot' => 'dot',
+ 'email' => 'Email',
+ 'email_configuration' => 'Email Configuration',
+ 'email_mailpath' => 'Path to Sendmail',
+ 'email_protocol' => 'Protocol',
+ 'email_receipt_check_behaviour' => '',
+ 'email_receipt_check_behaviour_always' => '',
+ 'email_receipt_check_behaviour_last' => '',
+ 'email_receipt_check_behaviour_never' => '',
+ 'email_smtp_crypto' => 'SMTP Encryption',
+ 'email_smtp_host' => 'SMTP Server',
+ 'email_smtp_pass' => 'SMTP Password',
+ 'email_smtp_port' => 'SMTP Port',
+ 'email_smtp_timeout' => 'SMTP Timeout (s)',
+ 'email_smtp_user' => 'SMTP Username',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => '',
+ 'enforce_privacy_tooltip' => '',
+ 'fax' => 'Fax',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => 'Fiscal Year Start',
+ 'financial_year_apr' => '1st of April',
+ 'financial_year_aug' => '1st of August',
+ 'financial_year_dec' => '1st of December',
+ 'financial_year_feb' => '1st of February',
+ 'financial_year_jan' => '1st of January',
+ 'financial_year_jul' => '1st of July',
+ 'financial_year_jun' => '1st of June',
+ 'financial_year_mar' => '1st of March',
+ 'financial_year_may' => '1st of May',
+ 'financial_year_nov' => '1st of November',
+ 'financial_year_oct' => '1st of October',
+ 'financial_year_sep' => '1st of September',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => 'Login Page reCAPTCHA',
+ 'gcaptcha_secret_key' => 'reCAPTCHA Secret Key',
+ 'gcaptcha_secret_key_required' => 'reCAPTCHA Secret Key is a required field',
+ 'gcaptcha_site_key' => 'reCAPTCHA Site Key',
+ 'gcaptcha_site_key_required' => 'reCAPTCHA Site Key is a required field',
+ 'gcaptcha_tooltip' => 'Protect the Login page with Google reCAPTCHA, click the icon for an API key pair.',
+ 'general' => 'General',
+ 'general_configuration' => 'General Configuration',
+ 'giftcard_number' => 'Gift Card Number',
+ 'giftcard_random' => 'Generate Random',
+ 'giftcard_series' => 'Generate in Series',
+ 'image_allowed_file_types' => '',
+ 'image_max_height_tooltip' => '',
+ 'image_max_size_tooltip' => '',
+ 'image_max_width_tooltip' => '',
+ 'image_restrictions' => '',
+ 'include_hsn' => '',
+ 'info' => 'Information',
+ 'info_configuration' => 'Store Information',
+ 'input_groups' => '',
+ 'integrations' => '',
+ 'integrations_configuration' => '',
+ 'invoice' => 'Invoice',
+ 'invoice_configuration' => 'Invoice Print Settings',
+ 'invoice_default_comments' => 'Default Invoice Comments',
+ 'invoice_email_message' => 'Invoice Email Template',
+ 'invoice_enable' => 'Enable Invoicing',
+ 'invoice_printer' => 'Invoice Printer',
+ 'invoice_type' => '',
+ 'is_readable' => '',
+ 'is_writable' => 'is writable, but the permissions are higher than 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Warning: This functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?',
+ 'language' => 'Language',
+ 'last_used_invoice_number' => 'Last used Invoice Number',
+ 'last_used_quote_number' => 'Last used Quote Number',
+ 'last_used_work_order_number' => 'Last used W/O Number',
+ 'left' => 'Left',
+ 'license' => 'License',
+ 'license_configuration' => 'License Statement',
+ 'line_sequence' => 'Line Sequence',
+ 'lines_per_page' => 'Lines per Page',
+ 'lines_per_page_number' => 'Линиите на страница трябва да са число.',
+ 'lines_per_page_required' => 'Lines per Page is a required field.',
+ 'locale' => 'Localization',
+ 'locale_configuration' => 'Localization Configuration',
+ 'locale_info' => 'Localization Configuration Information',
+ 'location' => 'Stock',
+ 'location_configuration' => 'Stock Locations',
+ 'location_info' => 'Location Configuration Information',
+ 'login_form' => '',
+ 'logout' => 'Do you want to make a backup before logging out? Click [OK] to backup or [Cancel] to logout.',
+ 'mailchimp' => 'Mailchimp',
+ 'mailchimp_api_key' => 'Mailchimp API Key',
+ 'mailchimp_configuration' => 'Mailchimp Configuration',
+ 'mailchimp_key_successfully' => 'API Key is valid.',
+ 'mailchimp_key_unsuccessfully' => 'API Key is invalid.',
+ 'mailchimp_lists' => 'Mailchimp List(s)',
+ 'mailchimp_tooltip' => 'Click the icon for an API Key.',
+ 'message' => 'Message',
+ 'message_configuration' => 'Message Configuration',
+ 'msg_msg' => 'Saved Text Message',
+ 'msg_msg_placeholder' => 'If you wish to use a SMS template save your message here, otherwise leave the box blank.',
+ 'msg_pwd' => 'SMS-API Password',
+ 'msg_pwd_required' => 'SMS-API Password is a required field',
+ 'msg_src' => 'SMS-API Sender ID',
+ 'msg_src_required' => 'SMS-API Sender ID is a required field',
+ 'msg_uid' => 'SMS-API Username',
+ 'msg_uid_required' => 'SMS-API Username is a required field',
+ 'multi_pack_enabled' => '',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => 'none',
+ 'notify_alignment' => 'Notification Popup Position',
+ 'number_format' => 'Number Format',
+ 'number_locale' => 'Localization',
+ 'number_locale_invalid' => 'The entered locale is invalid. Check the link in the tooltip to find a valid locale.',
+ 'number_locale_required' => 'Number Locale is a required field.',
+ 'number_locale_tooltip' => 'Find a suitable locale through this link.',
+ 'os_timezone' => '',
+ 'ospos_info' => '',
+ 'payment_options_order' => 'Payment Options Order',
+ 'payment_reference_code_length_limits' => 'Референтен код на плащане
Ограничения на дължината',
+ 'payment_reference_code_length_max_label' => 'Макс',
+ 'payment_reference_code_length_min_label' => 'Мин',
+ 'perm_risk' => 'Permissions higher than 750 leaves this software at risk.',
+ 'phone' => 'Company Phone',
+ 'phone_required' => 'Company Phone is a required field.',
+ 'print_bottom_margin' => 'Margin Bottom',
+ 'print_bottom_margin_number' => 'Margin Bottom must be a number.',
+ 'print_bottom_margin_required' => 'Margin Bottom is a required field.',
+ 'print_delay_autoreturn' => '',
+ 'print_delay_autoreturn_number' => '',
+ 'print_delay_autoreturn_required' => '',
+ 'print_footer' => 'Print Browser Footer',
+ 'print_header' => 'Print Browser Header',
+ 'print_left_margin' => 'Margin Left',
+ 'print_left_margin_number' => 'Margin Left must be a number.',
+ 'print_left_margin_required' => 'Margin Left is a required field.',
+ 'print_receipt_check_behaviour' => '',
+ 'print_receipt_check_behaviour_always' => '',
+ 'print_receipt_check_behaviour_last' => '',
+ 'print_receipt_check_behaviour_never' => '',
+ 'print_right_margin' => 'Margin Right',
+ 'print_right_margin_number' => 'Margin Right must be a number.',
+ 'print_right_margin_required' => 'Margin Right is a required field.',
+ 'print_silently' => 'Show Print Dialog',
+ 'print_top_margin' => 'Margin Top',
+ 'print_top_margin_number' => 'Margin Top must be a number.',
+ 'print_top_margin_required' => 'Margin Top is a required field.',
+ 'quantity_decimals' => 'Quantity Decimals',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => '',
+ 'receipt' => 'Receipt',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Receipt Print Settings',
+ 'receipt_default' => 'Default',
+ 'receipt_font_size' => 'Font Size',
+ 'receipt_font_size_number' => 'Font Size must be a number.',
+ 'receipt_font_size_required' => 'Font Size is a required field.',
+ 'receipt_info' => 'Receipt Configuration Information',
+ 'receipt_printer' => 'Ticket Printer',
+ 'receipt_short' => 'Short',
+ 'receipt_show_company_name' => 'Show Company Name',
+ 'receipt_show_description' => 'Show Description',
+ 'receipt_show_serialnumber' => 'Show Serial Number',
+ 'receipt_show_tax_ind' => '',
+ 'receipt_show_taxes' => 'Show Taxes',
+ 'receipt_show_total_discount' => 'Show Total Discount',
+ 'receipt_template' => 'Receipt Template',
+ 'receiving_calculate_average_price' => 'Calc avg. Price (Receiving)',
+ 'recv_invoice_format' => 'Receivings Invoice Format',
+ 'register_mode_default' => 'Default Register Mode',
+ 'report_an_issue' => '',
+ 'return_policy_required' => 'Return policy is a required field.',
+ 'reward' => 'Reward',
+ 'reward_configuration' => 'Reward Configuration',
+ 'right' => 'Right',
+ 'sales_invoice_format' => 'Sales Invoice Format',
+ 'sales_quote_format' => 'Sales Quote Format',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => 'Configuration save successful.',
+ 'saved_unsuccessfully' => 'Configuration save failed.',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Please use the below info for issue reporting.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Show office icon',
+ 'statistics' => 'Send Statistics',
+ 'statistics_tooltip' => 'Send statistics for development and feature improvement purposes.',
+ 'stock_location' => 'Stock location',
+ 'stock_location_duplicate' => 'Stock Location must be unique.',
+ 'stock_location_invalid_chars' => "Stock Location can not contain '_'.",
+ 'stock_location_required' => 'Stock location is a required field.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Column 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Search Suggestions Layout',
+ 'suggestions_second_column' => 'Column 2',
+ 'suggestions_third_column' => 'Column 3',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => 'Table',
+ 'table_configuration' => 'Table Configuration',
+ 'takings_printer' => 'Receipt Printer',
+ 'tax' => 'Tax',
+ 'tax_category' => 'Tax Category',
+ 'tax_category_duplicate' => '',
+ 'tax_category_invalid_chars' => '',
+ 'tax_category_required' => '',
+ 'tax_category_used' => 'Tax category cannot be deleted because it is being used.',
+ 'tax_configuration' => 'Tax Configuration',
+ 'tax_decimals' => 'Tax Decimals',
+ 'tax_id' => '',
+ 'tax_included' => 'Tax Included',
+ 'theme' => 'Theme',
+ 'theme_preview' => '',
+ 'thousands_separator' => 'Thousands Separator',
+ 'timezone' => 'Timezone',
+ 'timezone_error' => '',
+ 'top' => 'Top',
+ 'use_destination_based_tax' => '',
+ 'user_timezone' => '',
+ 'website' => 'Website',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Work Order Support',
+ 'work_order_format' => 'Work Order Format',
];
diff --git a/app/Language/bg/Login.php b/app/Language/bg/Login.php
index 29d7dfea3..c2a94c8c4 100644
--- a/app/Language/bg/Login.php
+++ b/app/Language/bg/Login.php
@@ -1,25 +1,30 @@
"Не съм робот.",
- "go" => "Go",
- "invalid_gcaptcha" => "Invalid I'm not a robot.",
- "invalid_installation" => "The installation is not correct, check your php.ini file.",
- "invalid_username_and_password" => "Invalid Username or Password.",
- "login" => "Login",
- "logout" => "",
- "migration_needed" => "",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "Password",
- "required_username" => "",
- "username" => "Username",
- "welcome" => "",
+ "gcaptcha" => "Не съм робот.",
+ "go" => "Go",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Invalid I'm not a robot.",
+ "invalid_installation" => "The installation is not correct, check your php.ini file.",
+ "invalid_username_and_password" => "Invalid Username or Password.",
+ "login" => "Login",
+ "logout" => "",
+ "migrating_database" => "Мигриране на базата данни",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "Базата данни е мигрирана успешно!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "Password",
+ "required_username" => "",
+ "username" => "Username",
+ "welcome" => ""
];
diff --git a/app/Language/bg/Sales.php b/app/Language/bg/Sales.php
index 63a551553..2a6eb45f4 100644
--- a/app/Language/bg/Sales.php
+++ b/app/Language/bg/Sales.php
@@ -1,231 +1,235 @@
"Налични точки",
- "rewards_package" => "Награди",
- "rewards_remaining_balance" => "Оставащата стойност на точките за награда е ",
- "account_number" => "Номер на акаунт",
- "add_payment" => "Добавяне на плащане",
- "amount_due" => "Дължима сума",
- "amount_tendered" => "Предоставена сума",
- "authorized_signature" => "Оторизиран подпис",
- "cancel_sale" => "Отказ",
- "cash" => "В брой",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "Корекция на пари в брой",
- "cash_deposit" => "Депозит в брой",
- "cash_filter" => "В брой",
- "change_due" => "Промяна на дължимото",
- "change_price" => "Промяна на продажната цена",
- "check" => "Проверка",
- "check_balance" => "Проверете остатъка",
- "check_filter" => "Проверка",
- "close" => "",
- "comment" => "Коментар",
- "comments" => "Коментари",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Завършен",
- "confirm_cancel_sale" => "Сигурни ли сте, че искате да изчистите тази продажба? Всичко ще бъде изтрито.",
- "confirm_delete" => "Наистина ли искате да изтриете избраната Продажба (и)?",
- "confirm_restore" => "Наистина ли искате да възстановите избраната Продажба (и)?",
- "credit" => "Кредитна карта",
- "credit_deposit" => "Кредитен депозит",
- "credit_filter" => "Кредитна карта",
- "current_table" => "",
- "customer" => "Име",
- "customer_address" => "Адрес",
- "customer_discount" => "Намаление",
- "customer_email" => "Електронна поща",
- "customer_location" => "Местоположение",
- "customer_mailchimp_status" => "Състояние на Mailchimp",
- "customer_optional" => "(Незадължително)",
- "customer_required" => "(Задължително)",
- "customer_total" => "Обща сума",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Дата на продажба",
- "date_range" => "Период от време",
- "date_required" => "Трябва да въведете правилна дата.",
- "date_type" => "Датата е задължително поле.",
- "debit" => "Дебитна карта",
- "debit_filter" => "",
- "delete" => "Разреши изтриване",
- "delete_confirmation" => "Наистина ли искате да изтриете тази продажба? Това действие не може да бъде отменено.",
- "delete_entire_sale" => "Изтриване на цялата продажба",
- "delete_successful" => "Продажбата е изтрита успешно.",
- "delete_unsuccessful" => "Изтриването на продажба не бе успешно.",
- "description_abbrv" => "Описание.",
- "discard" => "Разпродажба",
- "discard_quote" => "",
- "discount" => "Намаление%",
- "discount_included" => "% Отстъпка",
- "discount_short" => "%",
- "due" => "Дължимото",
- "due_filter" => "Дължимо",
- "edit" => "Редактиране",
- "edit_item" => "Редактиране на елемент",
- "edit_sale" => "Редактиране на продажбата",
- "email_receipt" => "Електронна разписка",
- "employee" => "Служител",
- "entry" => "Вход",
- "error_editing_item" => "Грешка при редактирането на елемента",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Намерете или сканирайте елемента",
- "find_or_scan_item_or_receipt" => "Намерете или сканирайте елемент или разпис",
- "giftcard" => "Gift Карта",
- "giftcard_balance" => "Gift Card Баланс",
- "giftcard_filter" => "",
- "giftcard_number" => "Gift Card Номер",
- "group_by_category" => "Групирайте по категория",
- "group_by_type" => "Групиране по тип",
- "hsn" => "HSN",
- "id" => "Номер на продажба",
- "include_prices" => "Включва цени?",
- "invoice" => "Фактура",
- "invoice_confirm" => "Тази фактура ще бъде изпратена до",
- "invoice_enable" => "Създаване на фактура",
- "invoice_filter" => "Фактури",
- "invoice_no_email" => "Този клиент няма валиден имейл адрес.",
- "invoice_number" => "Фактура #",
- "invoice_number_duplicate" => "Номерът на фактурите трябва да е уникален.",
- "invoice_sent" => "Фактура, изпратена до",
- "invoice_total" => "Фактура общо",
- "invoice_type_custom_invoice" => "Ръчна фактура",
- "invoice_type_custom_tax_invoice" => "Фактура по избор(custom_tax_invoice.php)",
- "invoice_type_invoice" => "Фактура",
- "invoice_type_tax_invoice" => "Данъчна фактура (tax_invoice.php)",
- "invoice_unsent" => "Фактурата не можа да бъде изпратена до",
- "invoice_update" => "Преизчисляване",
- "item_insufficient_of_stock" => "Елементът има недостатъчен запас.",
- "item_name" => "Име на предмета",
- "item_number" => "Предмет #",
- "item_out_of_stock" => "Елементът е изчерпан.",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "Режим на регистрация",
- "must_enter_numeric" => "Сумата Предложена трябва да е число.",
- "must_enter_numeric_giftcard" => "Gift Card номера трябва да бъде число.",
- "new_customer" => "Нов клиент",
- "new_item" => "Нов продукт",
- "no_description" => "Нито един",
- "no_filter" => "Всичко",
- "no_items_in_cart" => "В количката няма продукти.",
- "no_sales_to_display" => "Няма продажби за показване .",
- "none_selected" => "Не сте избрали каквито и да е Продажби за изтриване.",
- "nontaxed_ind" => " sales nontaxed ind ",
- "not_authorized" => "Това действие не е разрешено.",
- "one_or_multiple" => "Продажба (и)",
- "payment" => "Вид плащане",
- "payment_amount" => "Количество",
- "payment_not_cover_total" => "Сумата за плащане трябва да е по-голяма или равна на цялата сума.",
- "payment_type" => "Тип",
- "payments" => "",
- "payments_total" => "Общо плащания",
- "price" => "Цена",
- "print_after_sale" => "Печат след продажбата",
- "quantity" => "Количество",
- "quantity_less_than_reorder_level" => "Предупреждение: Желаното количество е под нивото на зареждане за тази позиция.",
- "quantity_less_than_zero" => "Предупреждение: Желаното количество е недостатъчно. Все още можете да обработвате продажбата, но одитирайте инвентара си.",
- "quantity_of_items" => "Количество{0} елементи",
- "quote" => "Цитат",
- "quote_number" => "Номер на цитата",
- "quote_number_duplicate" => "Номерът на Цитат трябва да е уникален.",
- "quote_sent" => "Цитат изпратен до",
- "quote_unsent" => "Цитатът не можа да бъде изпратен до",
- "receipt" => "Касова бележка",
- "receipt_no_email" => "Този клиент няма валиден имейл адрес.",
- "receipt_number" => "Продажба #",
- "receipt_sent" => "Разписката е изпратена до",
- "receipt_unsent" => "Разписката не бе изпратена до",
- "refund" => "Вид на въстановяването",
- "register" => "Регистър на продажбите",
- "remove_customer" => "Премахване на клиент",
- "remove_discount" => "",
- "return" => "Връщане",
- "rewards" => "Наградни точки",
- "rewards_balance" => "Reward Points Баланс",
- "sale" => "Продажба",
- "sale_by_invoice" => "Продажба по фактура",
- "sale_for_customer" => "Клиент:",
- "sale_time" => "Време",
- "sales_tax" => "Данък върху продажбите",
- "sales_total" => "",
- "select_customer" => "Изберете клиент (по избор)",
- "send_invoice" => "Изпратете фактура",
- "send_quote" => "Изпрати цитат",
- "send_receipt" => "Изпращане на разписка",
- "send_work_order" => "Изпращане на поръчка за работа",
- "serial" => "Сериен",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Показване на фактурата",
- "show_receipt" => "Показване на разписката",
- "start_typing_customer_name" => "Започнете да пишете подробности за клиента ...",
- "start_typing_item_name" => "Започнете да въвеждате името на елемента или да сканирате баркод ...",
- "stock" => "Наличност",
- "stock_location" => "Местоположение на наличност",
- "sub_total" => "Междинна сума",
- "successfully_deleted" => "Вие успешно сте изтрили",
- "successfully_restored" => "Вие успешно сте възстановили",
- "successfully_suspended_sale" => "Успешно спиране на продажбата.",
- "successfully_updated" => "Обновихте продажбата успешно.",
- "suspend_sale" => "Задържане",
- "suspended_doc_id" => "Документ",
- "suspended_sale_id" => "Номер",
- "suspended_sales" => "Преустановен",
- "table" => "Маса",
- "takings" => "Ежедневни продажби",
- "tax" => "Данък",
- "tax_id" => "Данъчен номер",
- "tax_invoice" => "Данъчна фактура",
- "tax_percent" => "Данък %",
- "taxed_ind" => "",
- "total" => "Обща сума",
- "total_tax_exclusive" => "Без данък",
- "transaction_failed" => "Продажната транзакция е неуспешна.",
- "unable_to_add_item" => "Добавянето на продукта към продажбата не бе успешно",
- "unsuccessfully_deleted" => "Изтриването на продажба (и) не бе успешно.",
- "unsuccessfully_restored" => "Възстановяването на Продажбата (ите) не бе успешна.",
- "unsuccessfully_suspended_sale" => "Преустановяването на продажбата бе неуспешно.",
- "unsuccessfully_updated" => "Актуализацията на продажбата не бе успешна.",
- "unsuspend" => "Възстановяване",
- "unsuspend_and_delete" => "Action",
- "update" => "Актуализация",
- "upi" => "",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "Работна поръчка",
- "work_order_number" => "Номер работна поръчка",
- "work_order_number_duplicate" => "Номерът на работната поръчка трябва да е уникален.",
- "work_order_sent" => "Работната поръчка е изпратена до",
- "work_order_unsent" => "Работната поръчка не бе изпратена до",
+ 'account_number' => 'Номер на акаунт',
+ 'add_payment' => 'Добавяне на плащане',
+ 'amount_due' => 'Дължима сума',
+ 'amount_tendered' => 'Предоставена сума',
+ 'authorized_signature' => 'Оторизиран подпис',
+ 'cancel_sale' => 'Отказ',
+ 'cash' => 'В брой',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'Корекция на пари в брой',
+ 'cash_deposit' => 'Депозит в брой',
+ 'cash_filter' => 'В брой',
+ 'change_due' => 'Промяна на дължимото',
+ 'change_price' => 'Промяна на продажната цена',
+ 'check' => 'Проверка',
+ 'check_balance' => 'Проверете остатъка',
+ 'check_filter' => 'Проверка',
+ 'close' => '',
+ 'comment' => 'Коментар',
+ 'comments' => 'Коментари',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Завършен',
+ 'confirm_cancel_sale' => 'Сигурни ли сте, че искате да изчистите тази продажба? Всичко ще бъде изтрито.',
+ 'confirm_delete' => 'Наистина ли искате да изтриете избраната Продажба (и)?',
+ 'confirm_restore' => 'Наистина ли искате да възстановите избраната Продажба (и)?',
+ 'credit' => 'Кредитна карта',
+ 'credit_deposit' => 'Кредитен депозит',
+ 'credit_filter' => 'Кредитна карта',
+ 'current_table' => '',
+ 'customer' => 'Име',
+ 'customer_address' => 'Адрес',
+ 'customer_discount' => 'Намаление',
+ 'customer_email' => 'Електронна поща',
+ 'customer_location' => 'Местоположение',
+ 'customer_mailchimp_status' => 'Състояние на Mailchimp',
+ 'customer_optional' => '(Незадължително)',
+ 'customer_required' => '(Задължително)',
+ 'customer_total' => 'Обща сума',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Налични точки',
+ 'daily_sales' => '',
+ 'date' => 'Дата на продажба',
+ 'date_range' => 'Период от време',
+ 'date_required' => 'Трябва да въведете правилна дата.',
+ 'date_type' => 'Датата е задължително поле.',
+ 'debit' => 'Дебитна карта',
+ 'debit_filter' => '',
+ 'delete' => 'Разреши изтриване',
+ 'delete_confirmation' => 'Наистина ли искате да изтриете тази продажба? Това действие не може да бъде отменено.',
+ 'delete_entire_sale' => 'Изтриване на цялата продажба',
+ 'delete_successful' => 'Продажбата е изтрита успешно.',
+ 'delete_unsuccessful' => 'Изтриването на продажба не бе успешно.',
+ 'description_abbrv' => 'Описание.',
+ 'discard' => 'Разпродажба',
+ 'discard_quote' => '',
+ 'discount' => 'Намаление%',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Отстъпка',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'Дължимото',
+ 'due_filter' => 'Дължимо',
+ 'edit' => 'Редактиране',
+ 'edit_item' => 'Редактиране на елемент',
+ 'edit_sale' => 'Редактиране на продажбата',
+ 'email_receipt' => 'Електронна разписка',
+ 'employee' => 'Служител',
+ 'entry' => 'Вход',
+ 'error_editing_item' => 'Грешка при редактирането на елемента',
+ 'find_or_scan_item' => 'Намерете или сканирайте елемента',
+ 'find_or_scan_item_or_receipt' => 'Намерете или сканирайте елемент или разпис',
+ 'giftcard' => 'Gift Карта',
+ 'giftcard_balance' => 'Gift Card Баланс',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Gift Card Номер',
+ 'group_by_category' => 'Групирайте по категория',
+ 'group_by_type' => 'Групиране по тип',
+ 'hsn' => 'HSN',
+ 'id' => 'Номер на продажба',
+ 'include_prices' => 'Включва цени?',
+ 'invoice' => 'Фактура',
+ 'invoice_confirm' => 'Тази фактура ще бъде изпратена до',
+ 'invoice_enable' => 'Създаване на фактура',
+ 'invoice_filter' => 'Фактури',
+ 'invoice_no_email' => 'Този клиент няма валиден имейл адрес.',
+ 'invoice_number' => 'Фактура #',
+ 'invoice_number_duplicate' => 'Номерът на фактурите трябва да е уникален.',
+ 'invoice_sent' => 'Фактура, изпратена до',
+ 'invoice_total' => 'Фактура общо',
+ 'invoice_type_custom_invoice' => 'Ръчна фактура',
+ 'invoice_type_custom_tax_invoice' => 'Фактура по избор(custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Фактура',
+ 'invoice_type_tax_invoice' => 'Данъчна фактура (tax_invoice.php)',
+ 'invoice_unsent' => 'Фактурата не можа да бъде изпратена до',
+ 'invoice_update' => 'Преизчисляване',
+ 'item_insufficient_of_stock' => 'Елементът има недостатъчен запас.',
+ 'item_name' => 'Име на предмета',
+ 'item_number' => 'Предмет #',
+ 'item_out_of_stock' => 'Елементът е изчерпан.',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'Режим на регистрация',
+ 'must_enter_numeric' => 'Сумата Предложена трябва да е число.',
+ 'must_enter_numeric_giftcard' => 'Gift Card номера трябва да бъде число.',
+ 'must_enter_reference_code' => 'Трябва да се въведе референтен/извличащ номер.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Нов клиент',
+ 'new_item' => 'Нов продукт',
+ 'no_description' => 'Нито един',
+ 'no_filter' => 'Всичко',
+ 'no_items_in_cart' => 'В количката няма продукти.',
+ 'no_sales_to_display' => 'Няма продажби за показване .',
+ 'none_selected' => 'Не сте избрали каквито и да е Продажби за изтриване.',
+ 'nontaxed_ind' => ' sales nontaxed ind ',
+ 'not_authorized' => 'Това действие не е разрешено.',
+ 'one_or_multiple' => 'Продажба (и)',
+ 'payment' => 'Вид плащане',
+ 'payment_amount' => 'Количество',
+ 'payment_not_cover_total' => 'Сумата за плащане трябва да е по-голяма или равна на цялата сума.',
+ 'payment_type' => 'Тип',
+ 'payments' => '',
+ 'payments_total' => 'Общо плащания',
+ 'price' => 'Цена',
+ 'print_after_sale' => 'Печат след продажбата',
+ 'quantity' => 'Количество',
+ 'quantity_less_than_reorder_level' => 'Предупреждение: Желаното количество е под нивото на зареждане за тази позиция.',
+ 'quantity_less_than_zero' => 'Предупреждение: Желаното количество е недостатъчно. Все още можете да обработвате продажбата, но одитирайте инвентара си.',
+ 'quantity_of_items' => 'Количество{0} елементи',
+ 'quote' => 'Цитат',
+ 'quote_number' => 'Номер на цитата',
+ 'quote_number_duplicate' => 'Номерът на Цитат трябва да е уникален.',
+ 'quote_sent' => 'Цитат изпратен до',
+ 'quote_unsent' => 'Цитатът не можа да бъде изпратен до',
+ 'receipt' => 'Касова бележка',
+ 'receipt_no_email' => 'Този клиент няма валиден имейл адрес.',
+ 'receipt_number' => 'Продажба #',
+ 'receipt_sent' => 'Разписката е изпратена до',
+ 'receipt_unsent' => 'Разписката не бе изпратена до',
+ 'reference_code' => 'Референтен код на плащане',
+ 'reference_code_invalid_characters' => 'Референтният код трябва да съдържа само букви и цифри.',
+ 'reference_code_length_error' => 'Дължината на референтния код е невалидна.',
+ 'refund' => 'Вид на въстановяването',
+ 'register' => 'Регистър на продажбите',
+ 'remove_customer' => 'Премахване на клиент',
+ 'remove_discount' => '',
+ 'return' => 'Връщане',
+ 'rewards' => 'Наградни точки',
+ 'rewards_balance' => 'Reward Points Баланс',
+ 'rewards_package' => 'Награди',
+ 'rewards_remaining_balance' => 'Оставащата стойност на точките за награда е ',
+ 'sale' => 'Продажба',
+ 'sale_by_invoice' => 'Продажба по фактура',
+ 'sale_for_customer' => 'Клиент:',
+ 'sale_time' => 'Време',
+ 'sales_tax' => 'Данък върху продажбите',
+ 'sales_total' => '',
+ 'select_customer' => 'Изберете клиент (по избор)',
+ 'send_invoice' => 'Изпратете фактура',
+ 'send_quote' => 'Изпрати цитат',
+ 'send_receipt' => 'Изпращане на разписка',
+ 'send_work_order' => 'Изпращане на поръчка за работа',
+ 'serial' => 'Сериен',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Показване на фактурата',
+ 'show_receipt' => 'Показване на разписката',
+ 'start_typing_customer_name' => 'Започнете да пишете подробности за клиента ...',
+ 'start_typing_item_name' => 'Започнете да въвеждате името на елемента или да сканирате баркод ...',
+ 'stock' => 'Наличност',
+ 'stock_location' => 'Местоположение на наличност',
+ 'sub_total' => 'Междинна сума',
+ 'successfully_deleted' => 'Вие успешно сте изтрили',
+ 'successfully_restored' => 'Вие успешно сте възстановили',
+ 'successfully_suspended_sale' => 'Успешно спиране на продажбата.',
+ 'successfully_updated' => 'Обновихте продажбата успешно.',
+ 'suspend_sale' => 'Задържане',
+ 'suspended_doc_id' => 'Документ',
+ 'suspended_sale_id' => 'Номер',
+ 'suspended_sales' => 'Преустановен',
+ 'table' => 'Маса',
+ 'takings' => 'Ежедневни продажби',
+ 'tax' => 'Данък',
+ 'tax_id' => 'Данъчен номер',
+ 'tax_invoice' => 'Данъчна фактура',
+ 'tax_percent' => 'Данък %',
+ 'taxed_ind' => '',
+ 'total' => 'Обща сума',
+ 'total_tax_exclusive' => 'Без данък',
+ 'transaction_failed' => 'Продажната транзакция е неуспешна.',
+ 'unable_to_add_item' => 'Добавянето на продукта към продажбата не бе успешно',
+ 'unsuccessfully_deleted' => 'Изтриването на продажба (и) не бе успешно.',
+ 'unsuccessfully_restored' => 'Възстановяването на Продажбата (ите) не бе успешна.',
+ 'unsuccessfully_suspended_sale' => 'Преустановяването на продажбата бе неуспешно.',
+ 'unsuccessfully_updated' => 'Актуализацията на продажбата не бе успешна.',
+ 'unsuspend' => 'Възстановяване',
+ 'unsuspend_and_delete' => 'Action',
+ 'update' => 'Актуализация',
+ 'upi' => '',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'Работна поръчка',
+ 'work_order_number' => 'Номер работна поръчка',
+ 'work_order_number_duplicate' => 'Номерът на работната поръчка трябва да е уникален.',
+ 'work_order_sent' => 'Работната поръчка е изпратена до',
+ 'work_order_unsent' => 'Работната поръчка не бе изпратена до',
];
diff --git a/app/Language/bs/Config.php b/app/Language/bs/Config.php
index a1d5502b2..f195ba96f 100644
--- a/app/Language/bs/Config.php
+++ b/app/Language/bs/Config.php
@@ -1,332 +1,335 @@
"Adresa kompanije",
- "address_required" => "Adresa kompanije je obavezno polje.",
- "all_set" => "Sva su dopuštenja datoteka ispravno postavljena!",
- "allow_duplicate_barcodes" => "Dozvoli dvostruke barkodove",
- "apostrophe" => "apostrof",
- "backup_button" => "Rezervna kopija",
- "backup_database" => "Rezervna kopija baze podataka",
- "barcode" => "Barkod",
- "barcode_company" => "Kompanija",
- "barcode_configuration" => "Konfiguracija barkoda",
- "barcode_content" => "Sadržaj barkoda",
- "barcode_first_row" => "1 red",
- "barcode_font" => "Font",
- "barcode_formats" => "Unesi format",
- "barcode_generate_if_empty" => "Generiši ako je prazno.",
- "barcode_height" => "Visina(px)",
- "barcode_id" => "Id / naziv artikla",
- "barcode_info" => "Informacije o konfiguraciji barkoda",
- "barcode_layout" => "Izgled barkoda",
- "barcode_name" => "Naziv",
- "barcode_number" => "Barkod",
- "barcode_number_in_row" => "Broj u redu",
- "barcode_page_cellspacing" => "Prikaži razmak ćelija na stranici.",
- "barcode_page_width" => "Širina stranice",
- "barcode_price" => "Cijena",
- "barcode_second_row" => "2.red",
- "barcode_third_row" => "3.red",
- "barcode_tooltip" => "Upozorenje: Ova funkcija može prouzrokovati uvoz ili kreiranje duplikata. Ne koristite ako ne želite duple barkodove.",
- "barcode_type" => "Tip barkoda",
- "barcode_width" => "Širina (px)",
- "bottom" => "Dno",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Decimale gotovine",
- "cash_decimals_tooltip" => "Ako su Decimale gotovine i Valutne decimale iste, onda neće biti zaokruživanja gotovine.",
- "cash_rounding" => "Zaokruživanje gotovine",
- "category_dropdown" => "Prikaži kategoriju kao padajući meni",
- "center" => "Centar",
- "change_apperance_tooltip" => "",
- "comma" => "zarez",
- "company" => "Kompanija",
- "company_avatar" => "",
- "company_change_image" => "Promijeni logo",
- "company_logo" => "Logo kompanije",
- "company_remove_image" => "Ukloni logo",
- "company_required" => "Naziv kompanije je obavezno polje",
- "company_select_image" => "Izaberite sliku",
- "company_website_url" => "Veb lokacija kompanije nije važeća URL adresa (http://...).",
- "country_codes" => "Kod zemlje",
- "country_codes_tooltip" => "Lista kodova zemalja odvojena zarezima za traženje nominalnih adresa.",
- "currency_code" => "Kod valute",
- "currency_decimals" => "Velutne decimale",
- "currency_symbol" => "Simbol valute",
- "current_employee_only" => "",
- "customer_reward" => "Nagrada",
- "customer_reward_duplicate" => "Nagrada mora biti jedinstvena.",
- "customer_reward_enable" => "Omogući nagrade kupcima",
- "customer_reward_invalid_chars" => "Nagrada ne može sadržavati '_'",
- "customer_reward_required" => "Nagrada je obavezno polje",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "Filter datuma i vremena",
- "datetimeformat" => "Format datuma i vremena",
- "decimal_point" => "Decimalna točka",
- "default_barcode_font_size_number" => "Veličina fonta za barkod mora biti broj.",
- "default_barcode_font_size_required" => "Veličina fonta barkoda je obavezno polje.",
- "default_barcode_height_number" => "Visina barkoda mora biti broj.",
- "default_barcode_height_required" => "Visina barkoda je obavezno polje.",
- "default_barcode_num_in_row_number" => "Broj barkoda u redu mora biti broj.",
- "default_barcode_num_in_row_required" => "Broj barkoda u redu je obavezno polje.",
- "default_barcode_page_cellspacing_number" => "Razmak između ćelija sa barkodom mora biti broj.",
- "default_barcode_page_cellspacing_required" => "Rastojanje ćelija na stranici sa barkodom je obavezno polje.",
- "default_barcode_page_width_number" => "Širina stranice sa bar kodom mora biti broj.",
- "default_barcode_page_width_required" => "Širina stranice sa barkodom je obavezno polje.",
- "default_barcode_width_number" => "Standardna širina barkoda mora biti broj.",
- "default_barcode_width_required" => "Širina barkoda je obavezno polje.",
- "default_item_columns" => "Vidljiva stavka kolone",
- "default_origin_tax_code" => "Šifra poreza",
- "default_receivings_discount" => "Popust za ulaze",
- "default_receivings_discount_number" => "Popust za ulaz mora biti broj.",
- "default_receivings_discount_required" => "Popust za ulaz je obavezno polje.",
- "default_sales_discount" => "Popust na prodaju",
- "default_sales_discount_number" => "Popust na prodaju mora biti broj.",
- "default_sales_discount_required" => "Popust na prodaju je obavezno polje.",
- "default_tax_category" => "Poreska kategorija",
- "default_tax_code" => "Poreska šifra",
- "default_tax_jurisdiction" => "Poreska uprava",
- "default_tax_name_number" => "Naziv poreza mora biti string.",
- "default_tax_name_required" => "Naziv poreza je obavezno polje.",
- "default_tax_rate" => "Stopa poreza %",
- "default_tax_rate_1" => "Stopa poreza 1 %",
- "default_tax_rate_2" => "Stopa poreza 2 %",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Stopa poreza mora biti broj.",
- "default_tax_rate_required" => "Stopa poreza je obavezno polje.",
- "derive_sale_quantity" => "Dozvoli izvedenu količinu prodaje",
- "derive_sale_quantity_tooltip" => "Ako se izabere, za artikle naručene po produženom iznosu biće obezbjeđen novi tip artikla",
- "dinner_table" => "Sto",
- "dinner_table_duplicate" => "Sto mora biti jedinstven.",
- "dinner_table_enable" => "Omogući stolove za večeru",
- "dinner_table_invalid_chars" => "Naziv stola ne može sadržavati '_'.",
- "dinner_table_required" => "Sto je obavezno polje.",
- "dot" => "tačka",
- "email" => "E-mail",
- "email_configuration" => "Konfiguracija e-mail",
- "email_mailpath" => "Putanja do Sendmaila",
- "email_protocol" => "Protokol",
- "email_receipt_check_behaviour" => "Polje za potvrdu e-mail",
- "email_receipt_check_behaviour_always" => "Uvijek potvrđeno",
- "email_receipt_check_behaviour_last" => "Zapamti poslednji izbor",
- "email_receipt_check_behaviour_never" => "Uvijek nepotvrđeno",
- "email_smtp_crypto" => "SMTP šifriranje",
- "email_smtp_host" => "SMTP Server",
- "email_smtp_pass" => "SMTP Lozinka",
- "email_smtp_port" => "SMTP Port",
- "email_smtp_timeout" => "SMTP pauza",
- "email_smtp_user" => "SMTP Korisničko ime",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Ostvarite privatnost",
- "enforce_privacy_tooltip" => "Zaštitite privatnost kupaca primjenjujući kodiranje podataka u slučaju brisanja njihovih podataka",
- "fax" => "Faks",
- "file_perm" => "Postoje problemi sa dozvolama za datoteke, popravite i ponovo učitajte ovu stranicu.",
- "financial_year" => "Početak fiskalne godine",
- "financial_year_apr" => "1. April",
- "financial_year_aug" => "1. Avgust",
- "financial_year_dec" => "1. Decembar",
- "financial_year_feb" => "1. Februar",
- "financial_year_jan" => "1. Januar",
- "financial_year_jul" => "1. Juli",
- "financial_year_jun" => "1. Juni",
- "financial_year_mar" => "1. Mart",
- "financial_year_may" => "1. Maj",
- "financial_year_nov" => "1. Novembar",
- "financial_year_oct" => "1. Oktobar",
- "financial_year_sep" => "1. Septembar",
- "floating_labels" => "Plutajuće etikete",
- "gcaptcha_enable" => "Stranica za prijavu reCAPTCHA",
- "gcaptcha_secret_key" => "reCAPTCHA tajni ključ",
- "gcaptcha_secret_key_required" => "reCAPTCHA tajni ključ je obavezno polje",
- "gcaptcha_site_key" => "reCAPTCHA ključ sajta",
- "gcaptcha_site_key_required" => "reCAPTCHA Ključ sajta je obavezno polje",
- "gcaptcha_tooltip" => "Zaštitite stranicu za prijavu pomoću Google reCAPTCHA, kliknite na ikonu za par API ključeva.",
- "general" => "Generalno",
- "general_configuration" => "Opšta konfiguracija",
- "giftcard_number" => "Broj poklon kartice",
- "giftcard_random" => "Generiši nasumice",
- "giftcard_series" => "Generiši u seriji",
- "image_allowed_file_types" => "Dozvoljeni tipovi datoteka",
- "image_max_height_tooltip" => "Maksimalna dozvoljena visina učitavanja slike u pikselima (px).",
- "image_max_size_tooltip" => "Maksimalna dozvoljena veličina datoteke za prijenos slike u kilobajtima (kb).",
- "image_max_width_tooltip" => "Maksimalna dozvoljena širina slike u pikselima (px).",
- "image_restrictions" => "Ograničenja za učitavanje slike",
- "include_hsn" => "Uključite podršku za HSN kodove",
- "info" => "Informacije",
- "info_configuration" => "Info o web trgovini",
- "input_groups" => "Grupe unosa",
- "integrations" => "Integracije",
- "integrations_configuration" => "Integracije trećih strana",
- "invoice" => "Faktura",
- "invoice_configuration" => "Podešavanja štamapnja",
- "invoice_default_comments" => "Komentar na fakturi",
- "invoice_email_message" => "Predložak e-mail za fakture",
- "invoice_enable" => "Omogući fakturisanje",
- "invoice_printer" => "Štampanje faktura",
- "invoice_type" => "Tip fakture",
- "is_readable" => "čitljiv je, ali dozvole su veće od 660.",
- "is_writable" => "može se napisati, ali dozvole su veće od 750.",
- "item_markup" => "",
- "jsprintsetup_required" => "Upozorenje! Onemogućene opcije će raditi samo ako imate instaliran FireFox jsPrintSetup dodatak. Svakako snimiti?",
- "language" => "Jezik",
- "last_used_invoice_number" => "Zadnji korišćeni broj fakture",
- "last_used_quote_number" => "Zadnji korišćeni broj citata",
- "last_used_work_order_number" => "Zadnji korišćeni broj R/N",
- "left" => "Lijevo",
- "license" => "Licenca",
- "license_configuration" => "Izjava o licenci",
- "line_sequence" => "Redoslijed linija",
- "lines_per_page" => "Linija po stranici",
- "lines_per_page_number" => "Redovi po stranici moraju biti broj.",
- "lines_per_page_required" => "Broj linija po stranici je obavezno polje.",
- "locale" => "Lokalizacija",
- "locale_configuration" => "Konfiguracija",
- "locale_info" => "Info o lokalnoj konfiguraciji",
- "location" => "Skladište",
- "location_configuration" => "Lokacije skladišta",
- "location_info" => "Informacije o konfiguraciji lokacije",
- "login_form" => "Stil formulara za prijavu",
- "logout" => "Zar ne želite da napravite rezervnu kopiju prije odjave? Kliknite [OK] za sigurnosnu kopiju, [Cancel] da biste se odjavili.",
- "mailchimp" => "MeilChimp",
- "mailchimp_api_key" => "MailChimp API ključ",
- "mailchimp_configuration" => "MailChimp konfiguracija",
- "mailchimp_key_successfully" => "API ključ je važeći.",
- "mailchimp_key_unsuccessfully" => "API ključ je nevažeći.",
- "mailchimp_lists" => "MailChimp lista(e)",
- "mailchimp_tooltip" => "Kliknite na ikonu za API ključ.",
- "message" => "Poruke",
- "message_configuration" => "Konfigurisanje poruke",
- "msg_msg" => "Snimljena tekst poruka",
- "msg_msg_placeholder" => "Ako želite koristiti SMS šablon, snimite poruku ovdje. U suprotnom ostavite prazno polje.",
- "msg_pwd" => "SMS-API lozinke",
- "msg_pwd_required" => "SMS-API lozinke je obavezno polje",
- "msg_src" => "SMS-API ID pošiljaoca",
- "msg_src_required" => "SMS-API Id pošiljaoca je obavezno polje",
- "msg_uid" => "SMS-API korisnika",
- "msg_uid_required" => "SMS-API korisnika je obavezno polje",
- "multi_pack_enabled" => "Više pakovanja po stavci",
- "no_risk" => "Nema rizika / ugroženosti.",
- "none" => "nijedan",
- "notify_alignment" => "Položaj iskačuće obavijesti",
- "number_format" => "Format broja",
- "number_locale" => "Lokalizacija",
- "number_locale_invalid" => "Unijeti jezik je nevažeći. Provjerite vezu u opisu alatke da biste pronašli važeći jezik.",
- "number_locale_required" => "Broj lokacije je obavezno polje.",
- "number_locale_tooltip" => "Pronađite odgovarajuću lokaciju na ovom linku.",
- "os_timezone" => "OSPOS vremenska zona:",
- "ospos_info" => "OSPOS instalacione informacije",
- "payment_options_order" => "Narudžba opcije plaćanja",
- "perm_risk" => "Dozvole veće od 750 za pisanje i 660 za čitanje dovode ovaj program u rizik.",
- "phone" => "Telefon kompanije",
- "phone_required" => "Telefon kompanije je obavezno polje.",
- "print_bottom_margin" => "Donja margina",
- "print_bottom_margin_number" => "Donja margina mora biti broj.",
- "print_bottom_margin_required" => "Donja margina je obavezno polje.",
- "print_delay_autoreturn" => "Automatski povratak na odgodu prodaje",
- "print_delay_autoreturn_number" => "Odgoda automatskog povratka na prodaju je obavezno polje.",
- "print_delay_autoreturn_required" => "Odlaganje automatskog povratka na prodaju mora biti broj.",
- "print_footer" => "Štampanje podnožja",
- "print_header" => "Štampanje zaglavlja",
- "print_left_margin" => "Lijeva margina",
- "print_left_margin_number" => "Lijeva margina mora biti broj.",
- "print_left_margin_required" => "Lijeva margina je obavezno polje.",
- "print_receipt_check_behaviour" => "Polje za potvrdu štampanja računa",
- "print_receipt_check_behaviour_always" => "Uvijek potvrđeno",
- "print_receipt_check_behaviour_last" => "Zapamti poslednji izbor",
- "print_receipt_check_behaviour_never" => "Uvijek nepotvrđeno",
- "print_right_margin" => "Desna margina",
- "print_right_margin_number" => "Desna margina mora biti broj.",
- "print_right_margin_required" => "Desna margina je obavezno polje.",
- "print_silently" => "Prikaži dijalog za štampanje",
- "print_top_margin" => "Gornja margina",
- "print_top_margin_number" => "Gornja margina mora biti broj.",
- "print_top_margin_required" => "Gornja margina je obavezno polje.",
- "quantity_decimals" => "Decimale količine",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Difoltni komentari citata",
- "receipt" => "Račun",
- "receipt_category" => "",
- "receipt_configuration" => "Podešavanja štamapnja",
- "receipt_default" => "Podrazumijevano",
- "receipt_font_size" => "Veličina fonta",
- "receipt_font_size_number" => "Veličina fonta mora biti broj.",
- "receipt_font_size_required" => "Veličina fonta je obavezno polje.",
- "receipt_info" => "Informacije o POS računu",
- "receipt_printer" => "POS štampač",
- "receipt_short" => "Kratko",
- "receipt_show_company_name" => "Prikaži kompaniju",
- "receipt_show_description" => "Prikaži opis",
- "receipt_show_serialnumber" => "Prikaži serijski broj",
- "receipt_show_tax_ind" => "Prikaži poreski indikator",
- "receipt_show_taxes" => "Prikaži porez",
- "receipt_show_total_discount" => "Prikaži ukupni popust",
- "receipt_template" => "Šablon računa",
- "receiving_calculate_average_price" => "Izrač. prosječnih cijena (ulaza)",
- "recv_invoice_format" => "Format računa fakture",
- "register_mode_default" => "Mod registracije",
- "report_an_issue" => "Prijavi problem",
- "return_policy_required" => "Politika povrata je obavezno polje.",
- "reward" => "Nagrada",
- "reward_configuration" => "Konfigurisanje poklona",
- "right" => "Desno",
- "sales_invoice_format" => "Format fakture",
- "sales_quote_format" => "Format navedene prodaje",
- "mailpath_invalid" => "",
- "saved_successfully" => "Konfiguracija je uspješno snimljena.",
- "saved_unsuccessfully" => "Konfiguracija nije uspješno snimljena.",
- "security_issue" => "Upozorenje o sigurnosnoj ranjivosti",
- "server_notice" => "Koristite informacije u nastavku za prijavljivanje problema.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Prikaži ikonu kancelarije",
- "statistics" => "Pošalji statistiku",
- "statistics_tooltip" => "Pošaljite statistiku u svrhu razvoja i poboljšanja funkcija.",
- "stock_location" => "Lokacija skladišta",
- "stock_location_duplicate" => "Lokacija zaliha mora biti jedinstvena.",
- "stock_location_invalid_chars" => "Lokacija skaldišta ne može sadržavati '_'.",
- "stock_location_required" => "Lokacija skladišta je obavezno polje.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Kolona 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Prijedlozi za pretraživanje",
- "suggestions_second_column" => "Kolona 2",
- "suggestions_third_column" => "Kolona 3",
- "system_conf" => "Podešavanja & Konf",
- "system_info" => "Sistem Info",
- "table" => "Sto",
- "table_configuration" => "Konfigurisanje stola",
- "takings_printer" => "Štampanje računa",
- "tax" => "Porez",
- "tax_category" => "Kategorija",
- "tax_category_duplicate" => "Unesena kategorija već postoji.",
- "tax_category_invalid_chars" => "Unesena kategorija je nevažeća.",
- "tax_category_required" => "Obavezna je kategorija.",
- "tax_category_used" => "Kategorija se ne može izbrisati jer se koristi.",
- "tax_configuration" => "Konfigurisanje poreza",
- "tax_decimals" => "Poreske decimale",
- "tax_id" => "ID poreza",
- "tax_included" => "Uključen porez",
- "theme" => "Tema",
- "theme_preview" => "Pregled teme:",
- "thousands_separator" => "Separator za hiljade",
- "timezone" => "Vremenska zona",
- "timezone_error" => "Vremenska zona OSPOS razlikuje se od vaše lokalne vremenske zone.",
- "top" => "Vrh",
- "use_destination_based_tax" => "Koristite porez na osnovu odredišta",
- "user_timezone" => "Lokalna vremenska zona:",
- "website" => "web stranica",
- "wholesale_markup" => "",
- "work_order_enable" => "Podnošenje radnog naloga",
- "work_order_format" => "Format radnog naloga",
+ 'address' => 'Adresa kompanije',
+ 'address_required' => 'Adresa kompanije je obavezno polje.',
+ 'all_set' => 'Sva su dopuštenja datoteka ispravno postavljena!',
+ 'allow_duplicate_barcodes' => 'Dozvoli dvostruke barkodove',
+ 'apostrophe' => 'apostrof',
+ 'backup_button' => 'Rezervna kopija',
+ 'backup_database' => 'Rezervna kopija baze podataka',
+ 'barcode' => 'Barkod',
+ 'barcode_company' => 'Kompanija',
+ 'barcode_configuration' => 'Konfiguracija barkoda',
+ 'barcode_content' => 'Sadržaj barkoda',
+ 'barcode_first_row' => '1 red',
+ 'barcode_font' => 'Font',
+ 'barcode_formats' => 'Unesi format',
+ 'barcode_generate_if_empty' => 'Generiši ako je prazno.',
+ 'barcode_height' => 'Visina(px)',
+ 'barcode_id' => 'Id / naziv artikla',
+ 'barcode_info' => 'Informacije o konfiguraciji barkoda',
+ 'barcode_layout' => 'Izgled barkoda',
+ 'barcode_name' => 'Naziv',
+ 'barcode_number' => 'Barkod',
+ 'barcode_number_in_row' => 'Broj u redu',
+ 'barcode_page_cellspacing' => 'Prikaži razmak ćelija na stranici.',
+ 'barcode_page_width' => 'Širina stranice',
+ 'barcode_price' => 'Cijena',
+ 'barcode_second_row' => '2.red',
+ 'barcode_third_row' => '3.red',
+ 'barcode_tooltip' => 'Upozorenje: Ova funkcija može prouzrokovati uvoz ili kreiranje duplikata. Ne koristite ako ne želite duple barkodove.',
+ 'barcode_type' => 'Tip barkoda',
+ 'barcode_width' => 'Širina (px)',
+ 'bottom' => 'Dno',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Decimale gotovine',
+ 'cash_decimals_tooltip' => 'Ako su Decimale gotovine i Valutne decimale iste, onda neće biti zaokruživanja gotovine.',
+ 'cash_rounding' => 'Zaokruživanje gotovine',
+ 'category_dropdown' => 'Prikaži kategoriju kao padajući meni',
+ 'center' => 'Centar',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'zarez',
+ 'company' => 'Kompanija',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Promijeni logo',
+ 'company_logo' => 'Logo kompanije',
+ 'company_remove_image' => 'Ukloni logo',
+ 'company_required' => 'Naziv kompanije je obavezno polje',
+ 'company_select_image' => 'Izaberite sliku',
+ 'company_website_url' => 'Veb lokacija kompanije nije važeća URL adresa (http://...).',
+ 'country_codes' => 'Kod zemlje',
+ 'country_codes_tooltip' => 'Lista kodova zemalja odvojena zarezima za traženje nominalnih adresa.',
+ 'currency_code' => 'Kod valute',
+ 'currency_decimals' => 'Velutne decimale',
+ 'currency_symbol' => 'Simbol valute',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Nagrada',
+ 'customer_reward_duplicate' => 'Nagrada mora biti jedinstvena.',
+ 'customer_reward_enable' => 'Omogući nagrade kupcima',
+ 'customer_reward_invalid_chars' => "Nagrada ne može sadržavati '_'",
+ 'customer_reward_required' => 'Nagrada je obavezno polje',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => 'Filter datuma i vremena',
+ 'datetimeformat' => 'Format datuma i vremena',
+ 'decimal_point' => 'Decimalna točka',
+ 'default_barcode_font_size_number' => 'Veličina fonta za barkod mora biti broj.',
+ 'default_barcode_font_size_required' => 'Veličina fonta barkoda je obavezno polje.',
+ 'default_barcode_height_number' => 'Visina barkoda mora biti broj.',
+ 'default_barcode_height_required' => 'Visina barkoda je obavezno polje.',
+ 'default_barcode_num_in_row_number' => 'Broj barkoda u redu mora biti broj.',
+ 'default_barcode_num_in_row_required' => 'Broj barkoda u redu je obavezno polje.',
+ 'default_barcode_page_cellspacing_number' => 'Razmak između ćelija sa barkodom mora biti broj.',
+ 'default_barcode_page_cellspacing_required' => 'Rastojanje ćelija na stranici sa barkodom je obavezno polje.',
+ 'default_barcode_page_width_number' => 'Širina stranice sa bar kodom mora biti broj.',
+ 'default_barcode_page_width_required' => 'Širina stranice sa barkodom je obavezno polje.',
+ 'default_barcode_width_number' => 'Standardna širina barkoda mora biti broj.',
+ 'default_barcode_width_required' => 'Širina barkoda je obavezno polje.',
+ 'default_item_columns' => 'Vidljiva stavka kolone',
+ 'default_origin_tax_code' => 'Šifra poreza',
+ 'default_receivings_discount' => 'Popust za ulaze',
+ 'default_receivings_discount_number' => 'Popust za ulaz mora biti broj.',
+ 'default_receivings_discount_required' => 'Popust za ulaz je obavezno polje.',
+ 'default_sales_discount' => 'Popust na prodaju',
+ 'default_sales_discount_number' => 'Popust na prodaju mora biti broj.',
+ 'default_sales_discount_required' => 'Popust na prodaju je obavezno polje.',
+ 'default_tax_category' => 'Poreska kategorija',
+ 'default_tax_code' => 'Poreska šifra',
+ 'default_tax_jurisdiction' => 'Poreska uprava',
+ 'default_tax_name_number' => 'Naziv poreza mora biti string.',
+ 'default_tax_name_required' => 'Naziv poreza je obavezno polje.',
+ 'default_tax_rate' => 'Stopa poreza %',
+ 'default_tax_rate_1' => 'Stopa poreza 1 %',
+ 'default_tax_rate_2' => 'Stopa poreza 2 %',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Stopa poreza mora biti broj.',
+ 'default_tax_rate_required' => 'Stopa poreza je obavezno polje.',
+ 'derive_sale_quantity' => 'Dozvoli izvedenu količinu prodaje',
+ 'derive_sale_quantity_tooltip' => 'Ako se izabere, za artikle naručene po produženom iznosu biće obezbjeđen novi tip artikla',
+ 'dinner_table' => 'Sto',
+ 'dinner_table_duplicate' => 'Sto mora biti jedinstven.',
+ 'dinner_table_enable' => 'Omogući stolove za večeru',
+ 'dinner_table_invalid_chars' => "Naziv stola ne može sadržavati '_'.",
+ 'dinner_table_required' => 'Sto je obavezno polje.',
+ 'dot' => 'tačka',
+ 'email' => 'E-mail',
+ 'email_configuration' => 'Konfiguracija e-mail',
+ 'email_mailpath' => 'Putanja do Sendmaila',
+ 'email_protocol' => 'Protokol',
+ 'email_receipt_check_behaviour' => 'Polje za potvrdu e-mail',
+ 'email_receipt_check_behaviour_always' => 'Uvijek potvrđeno',
+ 'email_receipt_check_behaviour_last' => 'Zapamti poslednji izbor',
+ 'email_receipt_check_behaviour_never' => 'Uvijek nepotvrđeno',
+ 'email_smtp_crypto' => 'SMTP šifriranje',
+ 'email_smtp_host' => 'SMTP Server',
+ 'email_smtp_pass' => 'SMTP Lozinka',
+ 'email_smtp_port' => 'SMTP Port',
+ 'email_smtp_timeout' => 'SMTP pauza',
+ 'email_smtp_user' => 'SMTP Korisničko ime',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Ostvarite privatnost',
+ 'enforce_privacy_tooltip' => 'Zaštitite privatnost kupaca primjenjujući kodiranje podataka u slučaju brisanja njihovih podataka',
+ 'fax' => 'Faks',
+ 'file_perm' => 'Postoje problemi sa dozvolama za datoteke, popravite i ponovo učitajte ovu stranicu.',
+ 'financial_year' => 'Početak fiskalne godine',
+ 'financial_year_apr' => '1. April',
+ 'financial_year_aug' => '1. Avgust',
+ 'financial_year_dec' => '1. Decembar',
+ 'financial_year_feb' => '1. Februar',
+ 'financial_year_jan' => '1. Januar',
+ 'financial_year_jul' => '1. Juli',
+ 'financial_year_jun' => '1. Juni',
+ 'financial_year_mar' => '1. Mart',
+ 'financial_year_may' => '1. Maj',
+ 'financial_year_nov' => '1. Novembar',
+ 'financial_year_oct' => '1. Oktobar',
+ 'financial_year_sep' => '1. Septembar',
+ 'floating_labels' => 'Plutajuće etikete',
+ 'gcaptcha_enable' => 'Stranica za prijavu reCAPTCHA',
+ 'gcaptcha_secret_key' => 'reCAPTCHA tajni ključ',
+ 'gcaptcha_secret_key_required' => 'reCAPTCHA tajni ključ je obavezno polje',
+ 'gcaptcha_site_key' => 'reCAPTCHA ključ sajta',
+ 'gcaptcha_site_key_required' => 'reCAPTCHA Ključ sajta je obavezno polje',
+ 'gcaptcha_tooltip' => 'Zaštitite stranicu za prijavu pomoću Google reCAPTCHA, kliknite na ikonu za par API ključeva.',
+ 'general' => 'Generalno',
+ 'general_configuration' => 'Opšta konfiguracija',
+ 'giftcard_number' => 'Broj poklon kartice',
+ 'giftcard_random' => 'Generiši nasumice',
+ 'giftcard_series' => 'Generiši u seriji',
+ 'image_allowed_file_types' => 'Dozvoljeni tipovi datoteka',
+ 'image_max_height_tooltip' => 'Maksimalna dozvoljena visina učitavanja slike u pikselima (px).',
+ 'image_max_size_tooltip' => 'Maksimalna dozvoljena veličina datoteke za prijenos slike u kilobajtima (kb).',
+ 'image_max_width_tooltip' => 'Maksimalna dozvoljena širina slike u pikselima (px).',
+ 'image_restrictions' => 'Ograničenja za učitavanje slike',
+ 'include_hsn' => 'Uključite podršku za HSN kodove',
+ 'info' => 'Informacije',
+ 'info_configuration' => 'Info o web trgovini',
+ 'input_groups' => 'Grupe unosa',
+ 'integrations' => 'Integracije',
+ 'integrations_configuration' => 'Integracije trećih strana',
+ 'invoice' => 'Faktura',
+ 'invoice_configuration' => 'Podešavanja štamapnja',
+ 'invoice_default_comments' => 'Komentar na fakturi',
+ 'invoice_email_message' => 'Predložak e-mail za fakture',
+ 'invoice_enable' => 'Omogući fakturisanje',
+ 'invoice_printer' => 'Štampanje faktura',
+ 'invoice_type' => 'Tip fakture',
+ 'is_readable' => 'čitljiv je, ali dozvole su veće od 660.',
+ 'is_writable' => 'može se napisati, ali dozvole su veće od 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Upozorenje! Onemogućene opcije će raditi samo ako imate instaliran FireFox jsPrintSetup dodatak. Svakako snimiti?',
+ 'language' => 'Jezik',
+ 'last_used_invoice_number' => 'Zadnji korišćeni broj fakture',
+ 'last_used_quote_number' => 'Zadnji korišćeni broj citata',
+ 'last_used_work_order_number' => 'Zadnji korišćeni broj R/N',
+ 'left' => 'Lijevo',
+ 'license' => 'Licenca',
+ 'license_configuration' => 'Izjava o licenci',
+ 'line_sequence' => 'Redoslijed linija',
+ 'lines_per_page' => 'Linija po stranici',
+ 'lines_per_page_number' => 'Redovi po stranici moraju biti broj.',
+ 'lines_per_page_required' => 'Broj linija po stranici je obavezno polje.',
+ 'locale' => 'Lokalizacija',
+ 'locale_configuration' => 'Konfiguracija',
+ 'locale_info' => 'Info o lokalnoj konfiguraciji',
+ 'location' => 'Skladište',
+ 'location_configuration' => 'Lokacije skladišta',
+ 'location_info' => 'Informacije o konfiguraciji lokacije',
+ 'login_form' => 'Stil formulara za prijavu',
+ 'logout' => 'Zar ne želite da napravite rezervnu kopiju prije odjave? Kliknite [OK] za sigurnosnu kopiju, [Cancel] da biste se odjavili.',
+ 'mailchimp' => 'MeilChimp',
+ 'mailchimp_api_key' => 'MailChimp API ključ',
+ 'mailchimp_configuration' => 'MailChimp konfiguracija',
+ 'mailchimp_key_successfully' => 'API ključ je važeći.',
+ 'mailchimp_key_unsuccessfully' => 'API ključ je nevažeći.',
+ 'mailchimp_lists' => 'MailChimp lista(e)',
+ 'mailchimp_tooltip' => 'Kliknite na ikonu za API ključ.',
+ 'message' => 'Poruke',
+ 'message_configuration' => 'Konfigurisanje poruke',
+ 'msg_msg' => 'Snimljena tekst poruka',
+ 'msg_msg_placeholder' => 'Ako želite koristiti SMS šablon, snimite poruku ovdje. U suprotnom ostavite prazno polje.',
+ 'msg_pwd' => 'SMS-API lozinke',
+ 'msg_pwd_required' => 'SMS-API lozinke je obavezno polje',
+ 'msg_src' => 'SMS-API ID pošiljaoca',
+ 'msg_src_required' => 'SMS-API Id pošiljaoca je obavezno polje',
+ 'msg_uid' => 'SMS-API korisnika',
+ 'msg_uid_required' => 'SMS-API korisnika je obavezno polje',
+ 'multi_pack_enabled' => 'Više pakovanja po stavci',
+ 'no_risk' => 'Nema rizika / ugroženosti.',
+ 'none' => 'nijedan',
+ 'notify_alignment' => 'Položaj iskačuće obavijesti',
+ 'number_format' => 'Format broja',
+ 'number_locale' => 'Lokalizacija',
+ 'number_locale_invalid' => 'Unijeti jezik je nevažeći. Provjerite vezu u opisu alatke da biste pronašli važeći jezik.',
+ 'number_locale_required' => 'Broj lokacije je obavezno polje.',
+ 'number_locale_tooltip' => 'Pronađite odgovarajuću lokaciju na ovom linku.',
+ 'os_timezone' => 'OSPOS vremenska zona:',
+ 'ospos_info' => 'OSPOS instalacione informacije',
+ 'payment_options_order' => 'Narudžba opcije plaćanja',
+ 'payment_reference_code_length_limits' => 'Referentni kod plaćanja
Ograničenja duljine',
+ 'payment_reference_code_length_max_label' => 'Maks',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => 'Dozvole veće od 750 za pisanje i 660 za čitanje dovode ovaj program u rizik.',
+ 'phone' => 'Telefon kompanije',
+ 'phone_required' => 'Telefon kompanije je obavezno polje.',
+ 'print_bottom_margin' => 'Donja margina',
+ 'print_bottom_margin_number' => 'Donja margina mora biti broj.',
+ 'print_bottom_margin_required' => 'Donja margina je obavezno polje.',
+ 'print_delay_autoreturn' => 'Automatski povratak na odgodu prodaje',
+ 'print_delay_autoreturn_number' => 'Odgoda automatskog povratka na prodaju je obavezno polje.',
+ 'print_delay_autoreturn_required' => 'Odlaganje automatskog povratka na prodaju mora biti broj.',
+ 'print_footer' => 'Štampanje podnožja',
+ 'print_header' => 'Štampanje zaglavlja',
+ 'print_left_margin' => 'Lijeva margina',
+ 'print_left_margin_number' => 'Lijeva margina mora biti broj.',
+ 'print_left_margin_required' => 'Lijeva margina je obavezno polje.',
+ 'print_receipt_check_behaviour' => 'Polje za potvrdu štampanja računa',
+ 'print_receipt_check_behaviour_always' => 'Uvijek potvrđeno',
+ 'print_receipt_check_behaviour_last' => 'Zapamti poslednji izbor',
+ 'print_receipt_check_behaviour_never' => 'Uvijek nepotvrđeno',
+ 'print_right_margin' => 'Desna margina',
+ 'print_right_margin_number' => 'Desna margina mora biti broj.',
+ 'print_right_margin_required' => 'Desna margina je obavezno polje.',
+ 'print_silently' => 'Prikaži dijalog za štampanje',
+ 'print_top_margin' => 'Gornja margina',
+ 'print_top_margin_number' => 'Gornja margina mora biti broj.',
+ 'print_top_margin_required' => 'Gornja margina je obavezno polje.',
+ 'quantity_decimals' => 'Decimale količine',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Difoltni komentari citata',
+ 'receipt' => 'Račun',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Podešavanja štamapnja',
+ 'receipt_default' => 'Podrazumijevano',
+ 'receipt_font_size' => 'Veličina fonta',
+ 'receipt_font_size_number' => 'Veličina fonta mora biti broj.',
+ 'receipt_font_size_required' => 'Veličina fonta je obavezno polje.',
+ 'receipt_info' => 'Informacije o POS računu',
+ 'receipt_printer' => 'POS štampač',
+ 'receipt_short' => 'Kratko',
+ 'receipt_show_company_name' => 'Prikaži kompaniju',
+ 'receipt_show_description' => 'Prikaži opis',
+ 'receipt_show_serialnumber' => 'Prikaži serijski broj',
+ 'receipt_show_tax_ind' => 'Prikaži poreski indikator',
+ 'receipt_show_taxes' => 'Prikaži porez',
+ 'receipt_show_total_discount' => 'Prikaži ukupni popust',
+ 'receipt_template' => 'Šablon računa',
+ 'receiving_calculate_average_price' => 'Izrač. prosječnih cijena (ulaza)',
+ 'recv_invoice_format' => 'Format računa fakture',
+ 'register_mode_default' => 'Mod registracije',
+ 'report_an_issue' => 'Prijavi problem',
+ 'return_policy_required' => 'Politika povrata je obavezno polje.',
+ 'reward' => 'Nagrada',
+ 'reward_configuration' => 'Konfigurisanje poklona',
+ 'right' => 'Desno',
+ 'sales_invoice_format' => 'Format fakture',
+ 'sales_quote_format' => 'Format navedene prodaje',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => 'Konfiguracija je uspješno snimljena.',
+ 'saved_unsuccessfully' => 'Konfiguracija nije uspješno snimljena.',
+ 'security_issue' => 'Upozorenje o sigurnosnoj ranjivosti',
+ 'server_notice' => 'Koristite informacije u nastavku za prijavljivanje problema.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Prikaži ikonu kancelarije',
+ 'statistics' => 'Pošalji statistiku',
+ 'statistics_tooltip' => 'Pošaljite statistiku u svrhu razvoja i poboljšanja funkcija.',
+ 'stock_location' => 'Lokacija skladišta',
+ 'stock_location_duplicate' => 'Lokacija zaliha mora biti jedinstvena.',
+ 'stock_location_invalid_chars' => "Lokacija skaldišta ne može sadržavati '_'.",
+ 'stock_location_required' => 'Lokacija skladišta je obavezno polje.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Kolona 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Prijedlozi za pretraživanje',
+ 'suggestions_second_column' => 'Kolona 2',
+ 'suggestions_third_column' => 'Kolona 3',
+ 'system_conf' => 'Podešavanja & Konf',
+ 'system_info' => 'Sistem Info',
+ 'table' => 'Sto',
+ 'table_configuration' => 'Konfigurisanje stola',
+ 'takings_printer' => 'Štampanje računa',
+ 'tax' => 'Porez',
+ 'tax_category' => 'Kategorija',
+ 'tax_category_duplicate' => 'Unesena kategorija već postoji.',
+ 'tax_category_invalid_chars' => 'Unesena kategorija je nevažeća.',
+ 'tax_category_required' => 'Obavezna je kategorija.',
+ 'tax_category_used' => 'Kategorija se ne može izbrisati jer se koristi.',
+ 'tax_configuration' => 'Konfigurisanje poreza',
+ 'tax_decimals' => 'Poreske decimale',
+ 'tax_id' => 'ID poreza',
+ 'tax_included' => 'Uključen porez',
+ 'theme' => 'Tema',
+ 'theme_preview' => 'Pregled teme:',
+ 'thousands_separator' => 'Separator za hiljade',
+ 'timezone' => 'Vremenska zona',
+ 'timezone_error' => 'Vremenska zona OSPOS razlikuje se od vaše lokalne vremenske zone.',
+ 'top' => 'Vrh',
+ 'use_destination_based_tax' => 'Koristite porez na osnovu odredišta',
+ 'user_timezone' => 'Lokalna vremenska zona:',
+ 'website' => 'web stranica',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Podnošenje radnog naloga',
+ 'work_order_format' => 'Format radnog naloga',
];
diff --git a/app/Language/bs/Login.php b/app/Language/bs/Login.php
index f65ae5809..7ab8c5b47 100644
--- a/app/Language/bs/Login.php
+++ b/app/Language/bs/Login.php
@@ -1,25 +1,30 @@
"Ja nisam robot.",
- "go" => "Idi",
- "invalid_gcaptcha" => "Molimo potvrdite da niste robot.",
- "invalid_installation" => "Instalacija nije ispravna, provjerite vašu php.ini datoteku.",
- "invalid_username_and_password" => "Pogrešno korisničko ime i/ili lozinka.",
- "login" => "Prijava",
- "logout" => "Odjava",
- "migration_needed" => "Migracija baze podataka na {0} će početi nakon prijavljivanja.",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "Lozinka",
- "required_username" => "",
- "username" => "Korisničko ime",
- "welcome" => "Dobrodošli u {0}!",
+ "gcaptcha" => "Ja nisam robot.",
+ "go" => "Idi",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Molimo potvrdite da niste robot.",
+ "invalid_installation" => "Instalacija nije ispravna, provjerite vašu php.ini datoteku.",
+ "invalid_username_and_password" => "Pogrešno korisničko ime i/ili lozinka.",
+ "login" => "Prijava",
+ "logout" => "Odjava",
+ "migrating_database" => "Migracija baze podataka",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "Baza podataka je uspješno migrirana!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "Migracija baze podataka na {0} će početi nakon prijavljivanja.",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "Lozinka",
+ "required_username" => "",
+ "username" => "Korisničko ime",
+ "welcome" => "Dobrodošli u {0}!"
];
diff --git a/app/Language/bs/Sales.php b/app/Language/bs/Sales.php
index ec725cba7..b8db13bc4 100644
--- a/app/Language/bs/Sales.php
+++ b/app/Language/bs/Sales.php
@@ -1,231 +1,235 @@
"Dostupni poeni",
- "rewards_package" => "Nagrade",
- "rewards_remaining_balance" => "Preostala vrijednost nagradnih bodova je ",
- "account_number" => "Broj računa",
- "add_payment" => "Plaćanje",
- "amount_due" => "Iznos duga",
- "amount_tendered" => "Ponuđeni iznos",
- "authorized_signature" => "Ovlašćeni potpis",
- "cancel_sale" => "Otkaži",
- "cash" => "Gotovina",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "Usklađivanje gotovine",
- "cash_deposit" => "Polog gotovine",
- "cash_filter" => "Gotovina",
- "change_due" => "Kusur",
- "change_price" => "Promjena prodajne cijene",
- "check" => "Ček",
- "check_balance" => "Provjeri razliku",
- "check_filter" => "Ček",
- "close" => "",
- "comment" => "Komentar",
- "comments" => "Komentari",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Završeno",
- "confirm_cancel_sale" => "Da li ste sigurni da želite da očistite ovu prodaju? Sve stavke će biti izbrisane.",
- "confirm_delete" => "Da li ste sigurni da želite da izbrišete izabranu prodaju?",
- "confirm_restore" => "Da li ste sigurni da želite da vratite izabranu prodaju?",
- "credit" => "Kreditna kartica",
- "credit_deposit" => "Kreditni depozit",
- "credit_filter" => "Kreditna kartica",
- "current_table" => "",
- "customer" => "Kupac",
- "customer_address" => "Adresa kupca",
- "customer_discount" => "Popust",
- "customer_email" => "E-mail kupca",
- "customer_location" => "Mjesto kupca",
- "customer_mailchimp_status" => "Status MailChimp-a",
- "customer_optional" => "(Potrebno za odloženo plaćanje)",
- "customer_required" => "Obavezno",
- "customer_total" => "Ukupno",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Datum prodaje",
- "date_range" => "Period",
- "date_required" => "Morate unijeti ispravan datum.",
- "date_type" => "Datum je obavezno polje.",
- "debit" => "Dugovna kartica",
- "debit_filter" => "",
- "delete" => "Dozvoli brisanje",
- "delete_confirmation" => "Da li ste sigurni da želite da izbrišete ovu prodaju? Ova radnja se ne može opozvati.",
- "delete_entire_sale" => "Izbriši cijelu prodaju",
- "delete_successful" => "Prodaja je uspješno izbrisana.",
- "delete_unsuccessful" => "Brisanje prodaje nije uspjelo.",
- "description_abbrv" => "Opis",
- "discard" => "Odbaci",
- "discard_quote" => "",
- "discount" => "Popust",
- "discount_included" => "% Rabat",
- "discount_short" => "%",
- "due" => "Dug",
- "due_filter" => "Dug",
- "edit" => "Uredi",
- "edit_item" => "Uredi artikal",
- "edit_sale" => "Uredi prodaju",
- "email_receipt" => "Potvrda putem e-mail",
- "employee" => "Zaposlenik",
- "entry" => "Ulaz",
- "error_editing_item" => "Greška pri uređivanju artikla",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Pronađi/Skeniraj artikal",
- "find_or_scan_item_or_receipt" => "Pronađi/Skeniraj artikal ili priznanicu",
- "giftcard" => "Poklon kartica",
- "giftcard_balance" => "Saldo poklon kartice",
- "giftcard_filter" => "",
- "giftcard_number" => "Broj poklon kartice",
- "group_by_category" => "Grupiraj po kategoriji",
- "group_by_type" => "Grupiraj po tipu",
- "hsn" => "HSN",
- "id" => "ID prodaje",
- "include_prices" => "Uključi cijene?",
- "invoice" => "Faktura",
- "invoice_confirm" => "Ova faktura će biti poslata na",
- "invoice_enable" => "Broj fakture",
- "invoice_filter" => "Fakture",
- "invoice_no_email" => "Kupac nema važeću adresu e-pošte.",
- "invoice_number" => "Broj fakture",
- "invoice_number_duplicate" => "Broj fakture {0} mora biti jedinstven.",
- "invoice_sent" => "Faktura poslata",
- "invoice_total" => "Ukupan iznos fakture",
- "invoice_type_custom_invoice" => "Prilagođena faktura (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Prilagođena poreska faktura (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Faktura (invoice.php)",
- "invoice_type_tax_invoice" => "Poreska faktura (tax_invoice.php)",
- "invoice_unsent" => "Faktura nije poslata",
- "invoice_update" => "Ažuriranje",
- "item_insufficient_of_stock" => "Artikla nema dovoljno na zalihi.",
- "item_name" => "Naziv artikla",
- "item_number" => "Barkod",
- "item_out_of_stock" => "Artikal je rasprodan.",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "Mod registrovanja",
- "must_enter_numeric" => "Ponuđeni iznos mora biti broj.",
- "must_enter_numeric_giftcard" => "Broj poklon kartice mora biti broj.",
- "new_customer" => "Novi kupac",
- "new_item" => "Novi artikal",
- "no_description" => "Nema opisa",
- "no_filter" => "Svi",
- "no_items_in_cart" => "Nema artikala u korpi.",
- "no_sales_to_display" => "Nema prodaje za prikaz.",
- "none_selected" => "Niste izabrali nijedu prodaju za brisanje.",
- "nontaxed_ind" => " ",
- "not_authorized" => "Ova radnja nije ovlašćena.",
- "one_or_multiple" => "Prodaja",
- "payment" => "Tip plaćanja",
- "payment_amount" => "Iznos",
- "payment_not_cover_total" => "Iznos plaćanja mora biti veći ili jednak ukupnom iznosu.",
- "payment_type" => "Tip",
- "payments" => "",
- "payments_total" => "Ukupno plaćeno",
- "price" => "Cijena",
- "print_after_sale" => "Štampaj poslije prodaje",
- "quantity" => "Količina",
- "quantity_less_than_reorder_level" => "Upozorenje! Željena količina je ispod minimalne.",
- "quantity_less_than_zero" => "Upozorenje: Željena količina je nedovoljna. Možete nastaviti prodaju, ali provjerite svoju zalihu.",
- "quantity_of_items" => "Količina od {0} stavke(i)",
- "quote" => "Ponuda",
- "quote_number" => "Broj ponude",
- "quote_number_duplicate" => "Broj ponude mora biti jedinstven.",
- "quote_sent" => "Ponuda poslata na",
- "quote_unsent" => "Ponuda nije poslata na",
- "receipt" => "Račun",
- "receipt_no_email" => "Ovaj kupac nema važeću e-mail adresu.",
- "receipt_number" => "Rasprodaja #",
- "receipt_sent" => "Račun poslat",
- "receipt_unsent" => "Račun nije poslat",
- "refund" => "Tip povrata",
- "register" => "Registar prodaje",
- "remove_customer" => "Uklonite kupca",
- "remove_discount" => "",
- "return" => "Povrat",
- "rewards" => "Nagradni bodovi",
- "rewards_balance" => "Bilans nagradnih bodova",
- "sale" => "Prodaja",
- "sale_by_invoice" => "Prodaja po fakturi",
- "sale_for_customer" => "Kupac:",
- "sale_time" => "Vrijeme",
- "sales_tax" => "Porez na promet",
- "sales_total" => "",
- "select_customer" => "Odaberi kupca",
- "send_invoice" => "Pošalji fakturu",
- "send_quote" => "Pošalji ponudu",
- "send_receipt" => "Pošalji račun",
- "send_work_order" => "Pošalji radni nalog",
- "serial" => "Serijski broj",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Pokaži fakturu",
- "show_receipt" => "Pokaži račun",
- "start_typing_customer_name" => "Počnite upisivati naziv kupca ...",
- "start_typing_item_name" => "Počnite upisivati naziv artikla ili skenirajte barkod...",
- "stock" => "Zaliha",
- "stock_location" => "Lokacija skladišta",
- "sub_total" => "Međuzbir",
- "successfully_deleted" => "Uspješno ste izbrisali",
- "successfully_restored" => "Uspješno ste obnovili",
- "successfully_suspended_sale" => "Obustava prodaje je uspjela.",
- "successfully_updated" => "Prodaja je uspješno ažurirana.",
- "suspend_sale" => "Obustavi",
- "suspended_doc_id" => "Dokument",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Obustavljeno",
- "table" => "Sto",
- "takings" => "Dnevna prodaja",
- "tax" => "Porez",
- "tax_id" => "Porez Id",
- "tax_invoice" => "Poreska faktura",
- "tax_percent" => "Porez %",
- "taxed_ind" => "P",
- "total" => "Ukupno",
- "total_tax_exclusive" => "Porez isključen",
- "transaction_failed" => "Obrada nije ispravna.",
- "unable_to_add_item" => "Dodavanje artikla u rasprodaju nije uspjelo",
- "unsuccessfully_deleted" => "Brisanje prodaje nije uspjelo.",
- "unsuccessfully_restored" => "Obnova prodaje(a) nije uspjela.",
- "unsuccessfully_suspended_sale" => "Obustava prodaje nije uspjela.",
- "unsuccessfully_updated" => "Ažuriranje prodaje nije uspjelo.",
- "unsuspend" => "Odustani",
- "unsuspend_and_delete" => "Akcija",
- "update" => "Ažuriranje",
- "upi" => "UPI",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "Radni nalog",
- "work_order_number" => "Broj radnog naloga",
- "work_order_number_duplicate" => "Broj radnog naloga mora biti jedinstven.",
- "work_order_sent" => "Radni nalog poslat na",
- "work_order_unsent" => "Slanje radnog naloga nije uspjelo",
+ 'account_number' => 'Broj računa',
+ 'add_payment' => 'Plaćanje',
+ 'amount_due' => 'Iznos duga',
+ 'amount_tendered' => 'Ponuđeni iznos',
+ 'authorized_signature' => 'Ovlašćeni potpis',
+ 'cancel_sale' => 'Otkaži',
+ 'cash' => 'Gotovina',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'Usklađivanje gotovine',
+ 'cash_deposit' => 'Polog gotovine',
+ 'cash_filter' => 'Gotovina',
+ 'change_due' => 'Kusur',
+ 'change_price' => 'Promjena prodajne cijene',
+ 'check' => 'Ček',
+ 'check_balance' => 'Provjeri razliku',
+ 'check_filter' => 'Ček',
+ 'close' => '',
+ 'comment' => 'Komentar',
+ 'comments' => 'Komentari',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Završeno',
+ 'confirm_cancel_sale' => 'Da li ste sigurni da želite da očistite ovu prodaju? Sve stavke će biti izbrisane.',
+ 'confirm_delete' => 'Da li ste sigurni da želite da izbrišete izabranu prodaju?',
+ 'confirm_restore' => 'Da li ste sigurni da želite da vratite izabranu prodaju?',
+ 'credit' => 'Kreditna kartica',
+ 'credit_deposit' => 'Kreditni depozit',
+ 'credit_filter' => 'Kreditna kartica',
+ 'current_table' => '',
+ 'customer' => 'Kupac',
+ 'customer_address' => 'Adresa kupca',
+ 'customer_discount' => 'Popust',
+ 'customer_email' => 'E-mail kupca',
+ 'customer_location' => 'Mjesto kupca',
+ 'customer_mailchimp_status' => 'Status MailChimp-a',
+ 'customer_optional' => '(Potrebno za odloženo plaćanje)',
+ 'customer_required' => 'Obavezno',
+ 'customer_total' => 'Ukupno',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Dostupni poeni',
+ 'daily_sales' => '',
+ 'date' => 'Datum prodaje',
+ 'date_range' => 'Period',
+ 'date_required' => 'Morate unijeti ispravan datum.',
+ 'date_type' => 'Datum je obavezno polje.',
+ 'debit' => 'Dugovna kartica',
+ 'debit_filter' => '',
+ 'delete' => 'Dozvoli brisanje',
+ 'delete_confirmation' => 'Da li ste sigurni da želite da izbrišete ovu prodaju? Ova radnja se ne može opozvati.',
+ 'delete_entire_sale' => 'Izbriši cijelu prodaju',
+ 'delete_successful' => 'Prodaja je uspješno izbrisana.',
+ 'delete_unsuccessful' => 'Brisanje prodaje nije uspjelo.',
+ 'description_abbrv' => 'Opis',
+ 'discard' => 'Odbaci',
+ 'discard_quote' => '',
+ 'discount' => 'Popust',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Rabat',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'Dug',
+ 'due_filter' => 'Dug',
+ 'edit' => 'Uredi',
+ 'edit_item' => 'Uredi artikal',
+ 'edit_sale' => 'Uredi prodaju',
+ 'email_receipt' => 'Potvrda putem e-mail',
+ 'employee' => 'Zaposlenik',
+ 'entry' => 'Ulaz',
+ 'error_editing_item' => 'Greška pri uređivanju artikla',
+ 'find_or_scan_item' => 'Pronađi/Skeniraj artikal',
+ 'find_or_scan_item_or_receipt' => 'Pronađi/Skeniraj artikal ili priznanicu',
+ 'giftcard' => 'Poklon kartica',
+ 'giftcard_balance' => 'Saldo poklon kartice',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Broj poklon kartice',
+ 'group_by_category' => 'Grupiraj po kategoriji',
+ 'group_by_type' => 'Grupiraj po tipu',
+ 'hsn' => 'HSN',
+ 'id' => 'ID prodaje',
+ 'include_prices' => 'Uključi cijene?',
+ 'invoice' => 'Faktura',
+ 'invoice_confirm' => 'Ova faktura će biti poslata na',
+ 'invoice_enable' => 'Broj fakture',
+ 'invoice_filter' => 'Fakture',
+ 'invoice_no_email' => 'Kupac nema važeću adresu e-pošte.',
+ 'invoice_number' => 'Broj fakture',
+ 'invoice_number_duplicate' => 'Broj fakture {0} mora biti jedinstven.',
+ 'invoice_sent' => 'Faktura poslata',
+ 'invoice_total' => 'Ukupan iznos fakture',
+ 'invoice_type_custom_invoice' => 'Prilagođena faktura (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Prilagođena poreska faktura (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Faktura (invoice.php)',
+ 'invoice_type_tax_invoice' => 'Poreska faktura (tax_invoice.php)',
+ 'invoice_unsent' => 'Faktura nije poslata',
+ 'invoice_update' => 'Ažuriranje',
+ 'item_insufficient_of_stock' => 'Artikla nema dovoljno na zalihi.',
+ 'item_name' => 'Naziv artikla',
+ 'item_number' => 'Barkod',
+ 'item_out_of_stock' => 'Artikal je rasprodan.',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'Mod registrovanja',
+ 'must_enter_numeric' => 'Ponuđeni iznos mora biti broj.',
+ 'must_enter_numeric_giftcard' => 'Broj poklon kartice mora biti broj.',
+ 'must_enter_reference_code' => 'Referentni/broj za preuzimanje mora biti unesen.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Novi kupac',
+ 'new_item' => 'Novi artikal',
+ 'no_description' => 'Nema opisa',
+ 'no_filter' => 'Svi',
+ 'no_items_in_cart' => 'Nema artikala u korpi.',
+ 'no_sales_to_display' => 'Nema prodaje za prikaz.',
+ 'none_selected' => 'Niste izabrali nijedu prodaju za brisanje.',
+ 'nontaxed_ind' => ' ',
+ 'not_authorized' => 'Ova radnja nije ovlašćena.',
+ 'one_or_multiple' => 'Prodaja',
+ 'payment' => 'Tip plaćanja',
+ 'payment_amount' => 'Iznos',
+ 'payment_not_cover_total' => 'Iznos plaćanja mora biti veći ili jednak ukupnom iznosu.',
+ 'payment_type' => 'Tip',
+ 'payments' => '',
+ 'payments_total' => 'Ukupno plaćeno',
+ 'price' => 'Cijena',
+ 'print_after_sale' => 'Štampaj poslije prodaje',
+ 'quantity' => 'Količina',
+ 'quantity_less_than_reorder_level' => 'Upozorenje! Željena količina je ispod minimalne.',
+ 'quantity_less_than_zero' => 'Upozorenje: Željena količina je nedovoljna. Možete nastaviti prodaju, ali provjerite svoju zalihu.',
+ 'quantity_of_items' => 'Količina od {0} stavke(i)',
+ 'quote' => 'Ponuda',
+ 'quote_number' => 'Broj ponude',
+ 'quote_number_duplicate' => 'Broj ponude mora biti jedinstven.',
+ 'quote_sent' => 'Ponuda poslata na',
+ 'quote_unsent' => 'Ponuda nije poslata na',
+ 'receipt' => 'Račun',
+ 'receipt_no_email' => 'Ovaj kupac nema važeću e-mail adresu.',
+ 'receipt_number' => 'Rasprodaja #',
+ 'receipt_sent' => 'Račun poslat',
+ 'receipt_unsent' => 'Račun nije poslat',
+ 'reference_code' => 'Referentni kod plaćanja',
+ 'reference_code_invalid_characters' => 'Referentni kod smije sadržavati samo slova i brojeve.',
+ 'reference_code_length_error' => 'Duljina referentnog koda nije ispravna.',
+ 'refund' => 'Tip povrata',
+ 'register' => 'Registar prodaje',
+ 'remove_customer' => 'Uklonite kupca',
+ 'remove_discount' => '',
+ 'return' => 'Povrat',
+ 'rewards' => 'Nagradni bodovi',
+ 'rewards_balance' => 'Bilans nagradnih bodova',
+ 'rewards_package' => 'Nagrade',
+ 'rewards_remaining_balance' => 'Preostala vrijednost nagradnih bodova je ',
+ 'sale' => 'Prodaja',
+ 'sale_by_invoice' => 'Prodaja po fakturi',
+ 'sale_for_customer' => 'Kupac:',
+ 'sale_time' => 'Vrijeme',
+ 'sales_tax' => 'Porez na promet',
+ 'sales_total' => '',
+ 'select_customer' => 'Odaberi kupca',
+ 'send_invoice' => 'Pošalji fakturu',
+ 'send_quote' => 'Pošalji ponudu',
+ 'send_receipt' => 'Pošalji račun',
+ 'send_work_order' => 'Pošalji radni nalog',
+ 'serial' => 'Serijski broj',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Pokaži fakturu',
+ 'show_receipt' => 'Pokaži račun',
+ 'start_typing_customer_name' => 'Počnite upisivati naziv kupca ...',
+ 'start_typing_item_name' => 'Počnite upisivati naziv artikla ili skenirajte barkod...',
+ 'stock' => 'Zaliha',
+ 'stock_location' => 'Lokacija skladišta',
+ 'sub_total' => 'Međuzbir',
+ 'successfully_deleted' => 'Uspješno ste izbrisali',
+ 'successfully_restored' => 'Uspješno ste obnovili',
+ 'successfully_suspended_sale' => 'Obustava prodaje je uspjela.',
+ 'successfully_updated' => 'Prodaja je uspješno ažurirana.',
+ 'suspend_sale' => 'Obustavi',
+ 'suspended_doc_id' => 'Dokument',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Obustavljeno',
+ 'table' => 'Sto',
+ 'takings' => 'Dnevna prodaja',
+ 'tax' => 'Porez',
+ 'tax_id' => 'Porez Id',
+ 'tax_invoice' => 'Poreska faktura',
+ 'tax_percent' => 'Porez %',
+ 'taxed_ind' => 'P',
+ 'total' => 'Ukupno',
+ 'total_tax_exclusive' => 'Porez isključen',
+ 'transaction_failed' => 'Obrada nije ispravna.',
+ 'unable_to_add_item' => 'Dodavanje artikla u rasprodaju nije uspjelo',
+ 'unsuccessfully_deleted' => 'Brisanje prodaje nije uspjelo.',
+ 'unsuccessfully_restored' => 'Obnova prodaje(a) nije uspjela.',
+ 'unsuccessfully_suspended_sale' => 'Obustava prodaje nije uspjela.',
+ 'unsuccessfully_updated' => 'Ažuriranje prodaje nije uspjelo.',
+ 'unsuspend' => 'Odustani',
+ 'unsuspend_and_delete' => 'Akcija',
+ 'update' => 'Ažuriranje',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'Radni nalog',
+ 'work_order_number' => 'Broj radnog naloga',
+ 'work_order_number_duplicate' => 'Broj radnog naloga mora biti jedinstven.',
+ 'work_order_sent' => 'Radni nalog poslat na',
+ 'work_order_unsent' => 'Slanje radnog naloga nije uspjelo',
];
diff --git a/app/Language/ckb/Config.php b/app/Language/ckb/Config.php
index f2ccefcbc..f2403a0ef 100644
--- a/app/Language/ckb/Config.php
+++ b/app/Language/ckb/Config.php
@@ -1,331 +1,334 @@
"ناونیشانی کۆمپانیا",
- 'address_required' => "ناونیشانی کۆمپانیا خانەیەکی پێویستە.",
- 'all_set' => "هەموو ڕێگەپێدانەکانی فایلەکان بە دروستی دانراون!",
- 'allow_duplicate_barcodes' => "ڕێگە بە لەبەرگرتنەوەی باڕکۆدەکان بدە",
- 'apostrophe' => "وێرگوڵ",
- 'backup_button' => "پاڵپشت",
- 'backup_database' => "بنکەدراوەی پاڵپشت",
- 'barcode' => "باڕکۆد",
- 'barcode_company' => "ناوی کۆمپانیا",
- 'barcode_configuration' => "داڕشتنی باڕکۆد",
- 'barcode_content' => "ناوەڕۆکی باڕکۆد",
- 'barcode_first_row' => "ڕیزی ١",
- 'barcode_font' => "فۆنت",
- 'barcode_formats' => "فۆڕماتە پێدراوەکان",
- 'barcode_generate_if_empty' => "ئەگەر بەتاڵ بوو دروستی بکە.",
- 'barcode_height' => "بەرزی (پیکسڵ)",
- 'barcode_id' => "ناسنامە/ناوی ئایتم",
- 'barcode_info' => "زانیاریی داڕشتنی باڕکۆد",
- 'barcode_layout' => "کڵێشەی باڕکۆد",
- 'barcode_name' => "ناو",
- 'barcode_number' => "باڕکۆد",
- 'barcode_number_in_row' => "ژمارە لە ڕیزدا",
- 'barcode_page_cellspacing' => "دووری خانەکانی لاپەڕە پیشان بدە.",
- 'barcode_page_width' => "پانایی لاپەڕە پیشان بدە",
- 'barcode_price' => "نرخ",
- 'barcode_second_row' => "ڕیزی ٢",
- 'barcode_third_row' => "ڕیزی ٣",
- 'barcode_tooltip' => "ئاگاداری: ئەم تایبەتمەندییە دەتوانێت ببێتە هۆی هاوردەکردن یان دروستکردنی ئایتمی لەبەرگیراو. ئەگەر بارکۆدی لەبەرگیراوت ناوێت بەکاری مەهێنە.",
- 'barcode_type' => "جۆری باڕکۆد",
- 'barcode_width' => "پانی (پیکسڵ)",
- 'bottom' => "ژێرەوە",
- 'cash_button' => "",
- 'cash_button_1' => "",
- 'cash_button_2' => "",
- 'cash_button_3' => "",
- 'cash_button_4' => "",
- 'cash_button_5' => "",
- 'cash_button_6' => "",
- 'cash_decimals' => "خانەی دەیانی نەختینەیی",
- 'cash_decimals_tooltip' => "ئەگەر دەیانیی نەختینەیی و دەیانیی دراو وەک یەک بن ئەوا هیچ گەورەکردنێکی نەختینەیی دەستپێناکات، مەگەر گەورەکردنی نەختینە لەسەر نیوەی پێنج دانرابێت.",
- 'cash_rounding' => "گەورەکردنی نەختینەیی",
- 'category_dropdown' => "پۆلێنەکە وەک درۆپداون نیشان بدە",
- 'center' => "ناوەند",
- 'change_apperance_tooltip' => "",
- 'comma' => "کۆما",
- 'company' => "ناوی کۆمپانیا",
- 'company_avatar' => "",
- 'company_change_image' => "وێنەکە بگۆڕە",
- 'company_logo' => "لۆگۆی کۆمپانیا",
- 'company_remove_image' => "وێنەکە لابەرە",
- 'company_required' => "ناوی کۆمپانیا خانەیەکی پێویستە",
- 'company_select_image' => "وێنە هەڵبژێرە",
- 'company_website_url' => "ماڵپەڕی کۆمپانیا یوئارئێلێکی (http://...) دروست نییە.",
- 'country_codes' => "کۆدی وڵات",
- 'country_codes_tooltip' => "لیستی ناوی وڵاتان کە بە کۆما جیاکراونەتەوە بۆ گەڕان.",
- 'currency_code' => "کۆدی دراو",
- 'currency_decimals' => "دەیانیی دراو",
- 'currency_symbol' => "هێمای دراو",
- 'current_employee_only' => "",
- 'customer_reward' => "پاداشت",
- 'customer_reward_duplicate' => "پاداشت دەبێت بێهاوتا بێت.",
- 'customer_reward_enable' => "پاداشتی کڕیار چالاک بکە",
- 'customer_reward_invalid_chars' => "پاداشت ناتوانێت '_' لەخۆبگرێت",
- 'customer_reward_required' => "پاداشت خانەیەکی پێویستە",
- 'customer_sales_tax_support' => "",
- 'date_or_time_format' => "فلتەری بەروار و کات",
- 'datetimeformat' => "فۆڕماتی بەروار و کات",
- 'decimal_point' => "خاڵی دەیانیی",
- 'default_barcode_font_size_number' => "بارکۆدی بنەڕەتیی قەبارەی فۆنت دەبێت ژمارە بێت.",
- 'default_barcode_font_size_required' => "بارکۆدی بنەڕەتیی قەبارەی فۆنت خانەیەکی پێویستە.",
- 'default_barcode_height_number' => "بارکۆدی بنەڕەتیی بەرزی دەبێت ژمارە بێت.",
- 'default_barcode_height_required' => "بارکۆدی بنەڕەتیی بەرزی خانەیەکی پێویستە.",
- 'default_barcode_num_in_row_number' => "ژمارەی بارکۆدی بنەڕەتی لە ڕیزدا دەبێت ژمارە بێت.",
- 'default_barcode_num_in_row_required' => "ژمارەی بارکۆدی بنەڕەتی لە ڕیزدا خانەیەکی پێویستە.",
- 'default_barcode_page_cellspacing_number' => "بارکۆدی بنەڕەتیی دووری خانەکانی لاپەڕە دەبێت ژمارە بێت.",
- 'default_barcode_page_cellspacing_required' => "بارکۆدی بنەڕەتیی دووری خانەکانی لاپەڕە خانەیەکی پێویستە.",
- 'default_barcode_page_width_number' => "بارکۆدی بنەڕەتیی پانی لاپەڕە دەبێت ژمارە بێت.",
- 'default_barcode_page_width_required' => "بارکۆدی بنەڕەتیی پانی لاپەڕە خانەیەکی پێویستە.",
- 'default_barcode_width_number' => "بارکۆدی بنەڕەتیی پانی دەبێت ژمارە بێت.",
- 'default_barcode_width_required' => "بارکۆدی بنەڕەتیی پانی خانەیەکی پێویستە.",
- 'default_item_columns' => "ستوونی ئایتمی بینراوی بنەڕەتی",
- 'default_origin_tax_code' => "کۆدی باجی ئەسڵی بنەڕەتیی",
- 'default_receivings_discount' => "داشکاندنی بنەڕەتیی وەرگیراوەکان",
- 'default_receivings_discount_number' => "داشکاندنی بنەڕەتیی وەرگیراوەکان دەبێت ژمارە بێت.",
- 'default_receivings_discount_required' => "داشکاندنی بنەڕەتیی وەرگیراوەکان خانەیەکی پێویستە.",
- 'default_sales_discount' => "داشکاندنی بنەڕەتیی فرۆشتن",
- 'default_sales_discount_number' => "داشکاندنی بنەڕەتیی فرۆشتن دەبێت ژمارە بێت.",
- 'default_sales_discount_required' => "داشکاندنی بنەڕەتیی فرۆشتن خانەیەکی پێویستە.",
- 'default_tax_category' => "پۆلێنی باجی بنەڕەتی",
- 'default_tax_code' => "کۆدی باجی بنەڕەتی",
- 'default_tax_jurisdiction' => "دەسەڵاتی دادوەری باجی بنەڕەتی",
- 'default_tax_name_number' => "ناوی باجی بنەڕەتی دەبێت دەقێک بێت.",
- 'default_tax_name_required' => "ناوی باجی بنەڕەتی خانەیەکی پێویستە.",
- 'default_tax_rate' => "ڕێژەی باجی بنەڕەتی %",
- 'default_tax_rate_1' => "ڕێژەی باجی ١",
- 'default_tax_rate_2' => "ڕێژەی باجی ٢",
- 'default_tax_rate_3' => "",
- 'default_tax_rate_number' => "ڕێژەی باجی بنەڕەتی دەبێت ژمارە بێت.",
- 'default_tax_rate_required' => "ڕێژەی باجی بنەڕەتی خانەیەکی پێویستە.",
- 'derive_sale_quantity' => "ڕێگە بدە بە بڕی فرۆشتنی وەرگیراو",
- 'derive_sale_quantity_tooltip' => "ئەگەر پشکنین بکرێت ئەوا جۆرێکی نوێی ئایتم دابین دەکرێت بۆ ئەو ئایتمانەی کە بە بڕی درێژکراوە داواکراون",
- 'dinner_table' => "مێز",
- 'dinner_table_duplicate' => "مێز دەبێت بێهاوتا بێت.",
- 'dinner_table_enable' => "مێزەکانی نانی ئێوارە چالاک بکە",
- 'dinner_table_invalid_chars' => "ناوی مێز ناتوانێت '_' لەخۆبگرێت.",
- 'dinner_table_required' => "مێز خانەیەکی پێویستە.",
- 'dot' => "دۆت",
- 'email' => "ئیمەیڵ",
- 'email_configuration' => "ڕێکخستنی ئیمەیڵ",
- 'email_mailpath' => "ڕێگای چوونە سەر بەرنامەی سێندمەیڵ",
- 'email_protocol' => "پڕۆتۆکۆڵ",
- 'email_receipt_check_behaviour' => "خانەی وەرگرتنی ئیمەیڵ",
- 'email_receipt_check_behaviour_always' => "هەمیشە هەڵبژێردراوە",
- 'email_receipt_check_behaviour_last' => "کۆتا هەڵبژاردنت بیر بێت",
- 'email_receipt_check_behaviour_never' => "هەرگیز هەڵنەبژێردراوە",
- 'email_smtp_crypto' => "بەشفرەکردنی پڕۆتۆکۆڵی SMTP",
- 'email_smtp_host' => "سێرڤەری SMTP",
- 'email_smtp_pass' => "وشەی نهێنی SMTP",
- 'email_smtp_port' => "پۆرتی SMTP",
- 'email_smtp_timeout' => "کاتی شکستی SMTP (چرکە)",
- 'email_smtp_user' => "ناوی بەکارهێنەری SMTP",
- 'enable_avatar' => "",
- 'enable_avatar_tooltip' => "",
- 'enable_dropdown_tooltip' => "",
- 'enable_new_look' => "",
- 'enable_right_bar' => "",
- 'enable_right_bar_tooltip' => "",
- 'enforce_privacy' => "پاراستنی نهێنی جێبەجێ بکە",
- 'enforce_privacy_tooltip' => "پاراستنی نهێنی کڕیاران لە ڕێگەی جێبەجێکردنی تێکەڵکردنی داتاکان لە ئەگەری سڕانەوەی داتاکانیان",
- 'fax' => "فاکس",
- 'file_perm' => "کێشە لە ڕێگەپێدانەکانی فایل هەیە. تکایە ئەم پەڕەیە چاک بکەوە و دووبارە باری بکەوە.",
- 'financial_year' => "دەستپێکردنی ساڵی دارایی",
- 'financial_year_apr' => "١ی نیسان",
- 'financial_year_aug' => "١ی ئاب",
- 'financial_year_dec' => "١ی کانوونی یەکەم",
- 'financial_year_feb' => "١ی شوبات",
- 'financial_year_jan' => "١ی کانوونی دووەم",
- 'financial_year_jul' => "١ی تەمووز",
- 'financial_year_jun' => "١ی حوزەیران",
- 'financial_year_mar' => "١ی ئازار",
- 'financial_year_may' => "١ی ئایار",
- 'financial_year_nov' => "١ی تشرینی دووەم",
- 'financial_year_oct' => "١ی تشرینی یەکەم",
- 'financial_year_sep' => "١ی ئەیلوول",
- 'floating_labels' => "لەیبڵە هەڵفڕیوەکان",
- 'gcaptcha_enable' => "پەڕەی چوونەژوورەوەی ڕیکاپچا",
- 'gcaptcha_secret_key' => "کلیلی نهێنی ڕیکاپچا",
- 'gcaptcha_secret_key_required' => "خانەی کلیلی نهێنی ڕیکاپچا پێویستە",
- 'gcaptcha_site_key' => "کلیلی سایتی ڕیکاپچا",
- 'gcaptcha_site_key_required' => "خانەی کلیلی سایتی ڕیکاپچا پێویستە",
- 'gcaptcha_tooltip' => "لاپەڕەی چوونەژوورەوە لەڕێی گوگڵ ڕیکاپچا بپارێزە، کرتە لە ئایکۆنەکە بکە بۆ جووتە کلیلی ئای پی ئەی.",
- 'general' => "گشتی",
- 'general_configuration' => "ڕێکخستنی گشتی",
- 'giftcard_number' => "ژمارەی کارتی دیاری",
- 'giftcard_random' => "دروستکردنی هەڕەمەکی",
- 'giftcard_series' => "دروستکردن بە زنجیرە",
- 'image_allowed_file_types' => "جۆری فایلە ڕێگەپێدراوەکان",
- 'image_max_height_tooltip' => "زۆرترین بەرزیی رێگەپێدراو بۆ بارکردنی وێنە بە پیکسڵ (پیکس).",
- 'image_max_size_tooltip' => "زۆرترین قەبارەی رێگەپێدراوی فایلی بارکردنی وێنە بە کیلۆبایت (کب).",
- 'image_max_width_tooltip' => "زۆرترین پانی ڕێگەپێدراوی بارکردنی وێنە بە پێکسڵ (پیکس).",
- 'image_restrictions' => "سنووربەندییەکانی بارکردنی وێنە",
- 'include_hsn' => "پاڵپشتی بۆ کۆدەکانی (ئێیچ ئێس ئێن) لەخۆ بگرە",
- 'info' => "زانیاری",
- 'info_configuration' => "زانیاری فڕۆشتگا",
- 'input_groups' => "گروپەکانی زانیارییە پێدراوەکان",
- 'integrations' => "یەکگرتنەکان",
- 'integrations_configuration' => "یەکگرتنەکانی لایەنی سێیەم",
- 'invoice' => "فاکتۆرە",
- 'invoice_configuration' => "ڕێکخستنەکانی چاپی فاکتورە",
- 'invoice_default_comments' => "سەرنجەکانی فاکتۆرەی بنەڕەتیی",
- 'invoice_email_message' => "تێمپڵەیتی ئیمەیڵی فاکتۆرە",
- 'invoice_enable' => "بەفاکتۆرەکردن چالاک بکە",
- 'invoice_printer' => "پرنتەری فاکتۆرە",
- 'invoice_type' => "جۆری فاکتۆرە",
- 'is_readable' => "دەتواندرێت بخوێندرێتەوە، بەڵام ڕێگەپێدانەکان بەهەڵە داندراون. تکایە لەسەر ٦٤٠ یان ٦٦٠ دایبنێ و ڕفرێشی بکەوە.",
- 'is_writable' => "دەتوانرێت بنووسرێتەوە، بەڵام ڕێگەپێدانەکان بەهەڵە دانراون. تکایە لەسەر ٧٥٠ دایبنێ و ڕفرێشی بکەوە.",
- 'item_markup' => "",
- 'jsprintsetup_required' => "ئاگاداری: ئەم کاراییە تەنها لەو کاتەدا کاردەکات کە زیادکراوی FireFox jsPrintSetupت دامەزرابێت. سەرەڕای ئەمە هێشتا دەتەوێت پاشەکەوتی بکە؟",
- 'language' => "زمان",
- 'last_used_invoice_number' => "کۆتا ژمارەی فاکتۆرەی بەکارهاتوو",
- 'last_used_quote_number' => "کۆتا ژمارەی دەرخستەی نرخەکانی بەکارهاتوو",
- 'last_used_work_order_number' => "کۆتا ژمارەی بەکارهاتووی داواکاری کار",
- 'left' => "چەپ",
- 'license' => "مۆڵەت",
- 'license_configuration' => "بەیاننامەی مۆڵەت",
- 'line_sequence' => "زنجیرەی هێڵ",
- 'lines_per_page' => "هێڵەکانی هەر پەڕەیەک",
- 'lines_per_page_number' => "هێڵەکانی هەر پەڕەیەک دەبێت ژمارە بێت.",
- 'lines_per_page_required' => "خانەی هێڵەکانی هەر پەڕەیەک پێویستە.",
- 'locale' => "خۆماڵیکردن",
- 'locale_configuration' => "ڕێکخستنی خۆماڵیکردن",
- 'locale_info' => "زانیاریی ڕێکخستنی خۆماڵیکردن",
- 'location' => "کۆگا",
- 'location_configuration' => "شوێنی کۆگا",
- 'location_info' => "زانیاری ڕێکخستنی شوێن",
- 'login_form' => "ستایلی فۆڕمی چوونەژوورەوە",
- 'logout' => "دەتەوێت پاڵپشت دروست بکەیت پێش چوونە دەرەوە؟ کرتە بکە لەسەر [باشە] بۆ پاڵپشت دروستکردن یان [هەڵوەشاندنەوە] بۆ چوونە دەرەوە.",
- 'mailchimp' => "مەیڵچیمپ",
- 'mailchimp_api_key' => "کلیلی (ئەی پی ئای)ی مەیڵچیمپ",
- 'mailchimp_configuration' => "ڕێکخستنی مەیڵچیمپ",
- 'mailchimp_key_successfully' => "کلیلی (ئەی پی ئای) دروستە.",
- 'mailchimp_key_unsuccessfully' => "کلیلی (ئەی پی ئای) نادروستە.",
- 'mailchimp_lists' => "لیست(ەکان)ی مەیڵچیمپ",
- 'mailchimp_tooltip' => "کرتە لەسەر ئایکۆنی کلیلی (ئەی پی ئای) بکە.",
- 'message' => "نامە",
- 'message_configuration' => "ڕێکخستنی نامە",
- 'msg_msg' => "دەقی نامەی پاشەکەوتکراو",
- 'msg_msg_placeholder' => "ئەگەر دەتەوێت تێمپڵەیتی کورتەنامە بەکاربهێنیت ئەوا نامەکەت لێرەدا پاشەکەوت بکە، ئەگەرنا خانەکە بە بەتاڵی بهێڵەرەوە.",
- 'msg_pwd' => "وشەی نهێنی کورتەنامە-ئەی پی ئای",
- 'msg_pwd_required' => "خانەی وشەی نهێنی کورتەنامە-ئەی پی ئای پێویستە",
- 'msg_src' => "ناسنامەی نێردەری کورتەنامە-ئەی پی ئای",
- 'msg_src_required' => "خانەی ناسنامەی کورتەنامە-ئەی پی ئای پێویستە",
- 'msg_uid' => "ناوی بەکارهێنەری کورتەنامە-ئەی پی ئای",
- 'msg_uid_required' => "خانەی ناوی بەکارهێنەری کورتەنامە-ئەی پی ئای پێویستە",
- 'multi_pack_enabled' => "چەندین پاکێج بۆ هەر ئایتمێک",
- 'no_risk' => "هیچ مەترسیەکی ئاسایش یا لاوازبوون نییە.",
- 'none' => "هیچ",
- 'notify_alignment' => "شوێنی دەرکەوتنی ئاگادارکردنەوە",
- 'number_format' => "فۆڕماتی ژمارە",
- 'number_locale' => "خۆماڵیکردن",
- 'number_locale_invalid' => "ناوچەی داخڵکراو نادروستە. بۆ دۆزینەوەی ناوچەیەکی دروست، بەستەرەکەی ناو ئامرازەکە بپشکنە.",
- 'number_locale_required' => "خانەی ژمارەی ناوچە پێویستە.",
- 'number_locale_tooltip' => "لە ڕێگەی ئەم بەستەرەوە ناوچەی گونجاو بدۆزەرەوە.",
- 'os_timezone' => "ناوچەی کاتی OSPOS:",
- 'ospos_info' => "زانیاری دامەزراندنی OSPOS",
- 'payment_options_order' => "ڕیزبەندی بژاردەکانی پارەدان",
- 'perm_risk' => "ڕێگەپێدانی هەڵە ئەم نەرمەکاڵایە دەخاتە مەترسییەوە.",
- 'phone' => "تەلەفوونی کۆمپانیا",
- 'phone_required' => "خانەی تەلەفوونی کۆمپانیا پێویستە.",
- 'print_bottom_margin' => "پەراوێزی خوارەوە",
- 'print_bottom_margin_number' => "پەراوێزی خوارەوە دەبێت ژمارە بێت.",
- 'print_bottom_margin_required' => "خانەی پەراوێزی خوارەوە پێویستە.",
- 'print_delay_autoreturn' => "گەڕانەوەی خۆکارانە بۆ دواکەوتنی فرۆشتن",
- 'print_delay_autoreturn_number' => "خانەی گەڕانەوەی خۆکارانە بۆ دواکەوتنی فرۆشتن پێویستە.",
- 'print_delay_autoreturn_required' => "گەڕانەوەی خۆکارانە بۆ دواکەوتنی فرۆشتن دەبێت ژمارە بێت.",
- 'print_footer' => "چاپی فووتەری وێبگەڕ",
- 'print_header' => "چاپی هێدەری وێبگەڕ",
- 'print_left_margin' => "پەراوێزی چەپ",
- 'print_left_margin_number' => "پەراوێزی چەپ دەبێت ژمارە بێت.",
- 'print_left_margin_required' => "خانەی پەراوێزی چەپ پێویستە.",
- 'print_receipt_check_behaviour' => "چاپی خانەی هەڵبژاردنی فاکتورە",
- 'print_receipt_check_behaviour_always' => "هەمیشە هەڵبژێردراوە",
- 'print_receipt_check_behaviour_last' => "کۆتا هەڵبژاردنت بیر بێت",
- 'print_receipt_check_behaviour_never' => "هەرگیز هەڵنەبژێردراوە",
- 'print_right_margin' => "پەراوێزی ڕاست",
- 'print_right_margin_number' => "پەراوێزی ڕاست ئەبێت ژمارە بێت.",
- 'print_right_margin_required' => "خانەی پەراوێزی ڕاست پێویستە.",
- 'print_silently' => "دیالۆگی چاپ نیشان بدە",
- 'print_top_margin' => "پەراوێزی سەرەوە",
- 'print_top_margin_number' => "پەراوێزی سەرەوە دەبێت ژمارە بێت.",
- 'print_top_margin_required' => "خانەی پەراوێزی سەرەوە پێویستە.",
- 'quantity_decimals' => "ژمارەی خانەی دەیان",
- 'quick_cash_enable' => "",
- 'quote_default_comments' => "سەرنجە بنەڕەتییەکانی دەرخستەی نرخەکان",
- 'receipt' => "پسوڵە",
- 'receipt_category' => "",
- 'receipt_configuration' => "ڕێکخستنەکانی چاپی پسوڵە",
- 'receipt_default' => "بنەڕەتیی",
- 'receipt_font_size' => "قەبارەی فۆنت",
- 'receipt_font_size_number' => "قەبارەی فۆنت دەبێت ژمارە بێت.",
- 'receipt_font_size_required' => "خانەی قەبارەی فۆنت پێویستە.",
- 'receipt_info' => "زانیاری ڕێکخستنی پسوڵە",
- 'receipt_printer' => "چاپکەری بلیت",
- 'receipt_short' => "کورت",
- 'receipt_show_company_name' => "ناوی کۆمپانیا نیشان بدە",
- 'receipt_show_description' => "دەربارە نیشان بدە",
- 'receipt_show_serialnumber' => "ژمارەی زنجیرەیی نیشان بدە",
- 'receipt_show_tax_ind' => "دەرخەری باج نیشان بدە",
- 'receipt_show_taxes' => "باجەکان نیشان بدە",
- 'receipt_show_total_discount' => "داشکاندنی گشتی نیشان بدە",
- 'receipt_template' => "تێمپڵەیتی پسوڵە",
- 'receiving_calculate_average_price' => "هەژمارکردنی نرخی تێکڕا (وەرگیراوەکان)",
- 'recv_invoice_format' => "فۆڕماتی فاکتورەی وەرگیراوەکان",
- 'register_mode_default' => "دۆخی تۆمارکردنی بنەڕەتیی",
- 'report_an_issue' => "ڕاپۆرتکردنی کێشەیەک",
- 'return_policy_required' => "خانەی ڕێکاری گەڕانەوە پێویستە.",
- 'reward' => "پاداشت",
- 'reward_configuration' => "ڕێکخستنی پاداشت",
- 'right' => "ڕاست",
- 'sales_invoice_format' => "فۆڕماتی فاکتورەی فرۆشتن",
- 'sales_quote_format' => "فۆڕماتی دەرخستەی نرخەکانی فرۆشتن",
- 'saved_successfully' => "پاشەکەوتکردنی ڕێکخستن سەرکەوتوو بوو.",
- 'saved_unsuccessfully' => "پاشەکەوتکردنی ڕێکخستن سەرکەوتوو نەبوو.",
- 'security_issue' => "ئاگادارکردنەوەی لاوازی ئاسایش",
- 'server_notice' => "تکایە ئەم زانیاریانەی خوارەوە بەکاربهێنە بۆ ڕاپۆرتکردنی کێشە.",
- 'service_charge' => "",
- 'show_due_enable' => "",
- 'show_office_group' => "ئایکۆنی ئۆفیس پیشان بدە",
- 'statistics' => "ناردنی ئامار",
- 'statistics_tooltip' => "ناردنی ئامارەکان بە مەبەستی پەرەپێدان و باشترکردنی تایبەتمەندییەکان.",
- 'stock_location' => "شوێنی کۆگا",
- 'stock_location_duplicate' => "شوێنی کۆگا دەبێت بێهاوتا بێت.",
- 'stock_location_invalid_chars' => "شوێنی کۆگا ناتوانێت '_' لەخۆبگرێت.",
- 'stock_location_required' => "خانەی شوێنی کۆگا پێویستە.",
- 'suggestions_fifth_column' => "",
- 'suggestions_first_column' => "ستوونی ١",
- 'suggestions_fourth_column' => "",
- 'suggestions_layout' => "نەخشەی پێشنیارەکانی گەڕان",
- 'suggestions_second_column' => "ستوونی ٢",
- 'suggestions_third_column' => "ستوونی ٣",
- 'system_conf' => "دامەزراندن و ڕێکخستن",
- 'system_info' => "زانیاری سیستەم",
- 'table' => "مێز",
- 'table_configuration' => "ڕێکخستنی جەدۆل",
- 'takings_printer' => "چاپکەری پسوڵە",
- 'tax' => "باج",
- 'tax_category' => "پۆلێنی باج",
- 'tax_category_duplicate' => "پۆلێنی باجی داخڵکراو پێشتر بوونی هەیە.",
- 'tax_category_invalid_chars' => "پلێنی باجی داخڵکراو نادروستە.",
- 'tax_category_required' => "پۆلێنی باج پێویستە.",
- 'tax_category_used' => "پۆلێنی باج ناتوانرێت بسڕدرێتەوە چونکە بەکاردەهێنرێت.",
- 'tax_configuration' => "ڕێکخستنی باج",
- 'tax_decimals' => "خانەی دەیانی باج",
- 'tax_id' => "ناسنامەی باج",
- 'tax_included' => "باج لەخۆدەگرێت",
- 'theme' => "ڕووکار",
- 'theme_preview' => "پێشبینینی ڕووکار:",
- 'thousands_separator' => "جیاکەرەوەی هەزاران",
- 'timezone' => "ناوچەی کات",
- 'timezone_error' => "ناوچەی کاتی OSPOS جیاوازە لە ناوچەی کاتی ناوخۆیی خۆت.",
- 'top' => "سەرەوە",
- 'use_destination_based_tax' => "بەکارهێنانی باجی بنەمادار بە شوێنی مەبەست",
- 'user_timezone' => "ناوچەی کاتی ناوخۆیی:",
- 'website' => "ماڵپەڕ",
- 'wholesale_markup' => "",
- 'work_order_enable' => "پاڵپشتی داواکاری کار",
- 'work_order_format' => "فۆڕماتی داواکاری کار",
+ 'address' => 'ناونیشانی کۆمپانیا',
+ 'address_required' => 'ناونیشانی کۆمپانیا خانەیەکی پێویستە.',
+ 'all_set' => 'هەموو ڕێگەپێدانەکانی فایلەکان بە دروستی دانراون!',
+ 'allow_duplicate_barcodes' => 'ڕێگە بە لەبەرگرتنەوەی باڕکۆدەکان بدە',
+ 'apostrophe' => 'وێرگوڵ',
+ 'backup_button' => 'پاڵپشت',
+ 'backup_database' => 'بنکەدراوەی پاڵپشت',
+ 'barcode' => 'باڕکۆد',
+ 'barcode_company' => 'ناوی کۆمپانیا',
+ 'barcode_configuration' => 'داڕشتنی باڕکۆد',
+ 'barcode_content' => 'ناوەڕۆکی باڕکۆد',
+ 'barcode_first_row' => 'ڕیزی ١',
+ 'barcode_font' => 'فۆنت',
+ 'barcode_formats' => 'فۆڕماتە پێدراوەکان',
+ 'barcode_generate_if_empty' => 'ئەگەر بەتاڵ بوو دروستی بکە.',
+ 'barcode_height' => 'بەرزی (پیکسڵ)',
+ 'barcode_id' => 'ناسنامە/ناوی ئایتم',
+ 'barcode_info' => 'زانیاریی داڕشتنی باڕکۆد',
+ 'barcode_layout' => 'کڵێشەی باڕکۆد',
+ 'barcode_name' => 'ناو',
+ 'barcode_number' => 'باڕکۆد',
+ 'barcode_number_in_row' => 'ژمارە لە ڕیزدا',
+ 'barcode_page_cellspacing' => 'دووری خانەکانی لاپەڕە پیشان بدە.',
+ 'barcode_page_width' => 'پانایی لاپەڕە پیشان بدە',
+ 'barcode_price' => 'نرخ',
+ 'barcode_second_row' => 'ڕیزی ٢',
+ 'barcode_third_row' => 'ڕیزی ٣',
+ 'barcode_tooltip' => 'ئاگاداری: ئەم تایبەتمەندییە دەتوانێت ببێتە هۆی هاوردەکردن یان دروستکردنی ئایتمی لەبەرگیراو. ئەگەر بارکۆدی لەبەرگیراوت ناوێت بەکاری مەهێنە.',
+ 'barcode_type' => 'جۆری باڕکۆد',
+ 'barcode_width' => 'پانی (پیکسڵ)',
+ 'bottom' => 'ژێرەوە',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'خانەی دەیانی نەختینەیی',
+ 'cash_decimals_tooltip' => 'ئەگەر دەیانیی نەختینەیی و دەیانیی دراو وەک یەک بن ئەوا هیچ گەورەکردنێکی نەختینەیی دەستپێناکات، مەگەر گەورەکردنی نەختینە لەسەر نیوەی پێنج دانرابێت.',
+ 'cash_rounding' => 'گەورەکردنی نەختینەیی',
+ 'category_dropdown' => 'پۆلێنەکە وەک درۆپداون نیشان بدە',
+ 'center' => 'ناوەند',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'کۆما',
+ 'company' => 'ناوی کۆمپانیا',
+ 'company_avatar' => '',
+ 'company_change_image' => 'وێنەکە بگۆڕە',
+ 'company_logo' => 'لۆگۆی کۆمپانیا',
+ 'company_remove_image' => 'وێنەکە لابەرە',
+ 'company_required' => 'ناوی کۆمپانیا خانەیەکی پێویستە',
+ 'company_select_image' => 'وێنە هەڵبژێرە',
+ 'company_website_url' => 'ماڵپەڕی کۆمپانیا یوئارئێلێکی (http://...) دروست نییە.',
+ 'country_codes' => 'کۆدی وڵات',
+ 'country_codes_tooltip' => 'لیستی ناوی وڵاتان کە بە کۆما جیاکراونەتەوە بۆ گەڕان.',
+ 'currency_code' => 'کۆدی دراو',
+ 'currency_decimals' => 'دەیانیی دراو',
+ 'currency_symbol' => 'هێمای دراو',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'پاداشت',
+ 'customer_reward_duplicate' => 'پاداشت دەبێت بێهاوتا بێت.',
+ 'customer_reward_enable' => 'پاداشتی کڕیار چالاک بکە',
+ 'customer_reward_invalid_chars' => "پاداشت ناتوانێت '_' لەخۆبگرێت",
+ 'customer_reward_required' => 'پاداشت خانەیەکی پێویستە',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => 'فلتەری بەروار و کات',
+ 'datetimeformat' => 'فۆڕماتی بەروار و کات',
+ 'decimal_point' => 'خاڵی دەیانیی',
+ 'default_barcode_font_size_number' => 'بارکۆدی بنەڕەتیی قەبارەی فۆنت دەبێت ژمارە بێت.',
+ 'default_barcode_font_size_required' => 'بارکۆدی بنەڕەتیی قەبارەی فۆنت خانەیەکی پێویستە.',
+ 'default_barcode_height_number' => 'بارکۆدی بنەڕەتیی بەرزی دەبێت ژمارە بێت.',
+ 'default_barcode_height_required' => 'بارکۆدی بنەڕەتیی بەرزی خانەیەکی پێویستە.',
+ 'default_barcode_num_in_row_number' => 'ژمارەی بارکۆدی بنەڕەتی لە ڕیزدا دەبێت ژمارە بێت.',
+ 'default_barcode_num_in_row_required' => 'ژمارەی بارکۆدی بنەڕەتی لە ڕیزدا خانەیەکی پێویستە.',
+ 'default_barcode_page_cellspacing_number' => 'بارکۆدی بنەڕەتیی دووری خانەکانی لاپەڕە دەبێت ژمارە بێت.',
+ 'default_barcode_page_cellspacing_required' => 'بارکۆدی بنەڕەتیی دووری خانەکانی لاپەڕە خانەیەکی پێویستە.',
+ 'default_barcode_page_width_number' => 'بارکۆدی بنەڕەتیی پانی لاپەڕە دەبێت ژمارە بێت.',
+ 'default_barcode_page_width_required' => 'بارکۆدی بنەڕەتیی پانی لاپەڕە خانەیەکی پێویستە.',
+ 'default_barcode_width_number' => 'بارکۆدی بنەڕەتیی پانی دەبێت ژمارە بێت.',
+ 'default_barcode_width_required' => 'بارکۆدی بنەڕەتیی پانی خانەیەکی پێویستە.',
+ 'default_item_columns' => 'ستوونی ئایتمی بینراوی بنەڕەتی',
+ 'default_origin_tax_code' => 'کۆدی باجی ئەسڵی بنەڕەتیی',
+ 'default_receivings_discount' => 'داشکاندنی بنەڕەتیی وەرگیراوەکان',
+ 'default_receivings_discount_number' => 'داشکاندنی بنەڕەتیی وەرگیراوەکان دەبێت ژمارە بێت.',
+ 'default_receivings_discount_required' => 'داشکاندنی بنەڕەتیی وەرگیراوەکان خانەیەکی پێویستە.',
+ 'default_sales_discount' => 'داشکاندنی بنەڕەتیی فرۆشتن',
+ 'default_sales_discount_number' => 'داشکاندنی بنەڕەتیی فرۆشتن دەبێت ژمارە بێت.',
+ 'default_sales_discount_required' => 'داشکاندنی بنەڕەتیی فرۆشتن خانەیەکی پێویستە.',
+ 'default_tax_category' => 'پۆلێنی باجی بنەڕەتی',
+ 'default_tax_code' => 'کۆدی باجی بنەڕەتی',
+ 'default_tax_jurisdiction' => 'دەسەڵاتی دادوەری باجی بنەڕەتی',
+ 'default_tax_name_number' => 'ناوی باجی بنەڕەتی دەبێت دەقێک بێت.',
+ 'default_tax_name_required' => 'ناوی باجی بنەڕەتی خانەیەکی پێویستە.',
+ 'default_tax_rate' => 'ڕێژەی باجی بنەڕەتی %',
+ 'default_tax_rate_1' => 'ڕێژەی باجی ١',
+ 'default_tax_rate_2' => 'ڕێژەی باجی ٢',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'ڕێژەی باجی بنەڕەتی دەبێت ژمارە بێت.',
+ 'default_tax_rate_required' => 'ڕێژەی باجی بنەڕەتی خانەیەکی پێویستە.',
+ 'derive_sale_quantity' => 'ڕێگە بدە بە بڕی فرۆشتنی وەرگیراو',
+ 'derive_sale_quantity_tooltip' => 'ئەگەر پشکنین بکرێت ئەوا جۆرێکی نوێی ئایتم دابین دەکرێت بۆ ئەو ئایتمانەی کە بە بڕی درێژکراوە داواکراون',
+ 'dinner_table' => 'مێز',
+ 'dinner_table_duplicate' => 'مێز دەبێت بێهاوتا بێت.',
+ 'dinner_table_enable' => 'مێزەکانی نانی ئێوارە چالاک بکە',
+ 'dinner_table_invalid_chars' => "ناوی مێز ناتوانێت '_' لەخۆبگرێت.",
+ 'dinner_table_required' => 'مێز خانەیەکی پێویستە.',
+ 'dot' => 'دۆت',
+ 'email' => 'ئیمەیڵ',
+ 'email_configuration' => 'ڕێکخستنی ئیمەیڵ',
+ 'email_mailpath' => 'ڕێگای چوونە سەر بەرنامەی سێندمەیڵ',
+ 'email_protocol' => 'پڕۆتۆکۆڵ',
+ 'email_receipt_check_behaviour' => 'خانەی وەرگرتنی ئیمەیڵ',
+ 'email_receipt_check_behaviour_always' => 'هەمیشە هەڵبژێردراوە',
+ 'email_receipt_check_behaviour_last' => 'کۆتا هەڵبژاردنت بیر بێت',
+ 'email_receipt_check_behaviour_never' => 'هەرگیز هەڵنەبژێردراوە',
+ 'email_smtp_crypto' => 'بەشفرەکردنی پڕۆتۆکۆڵی SMTP',
+ 'email_smtp_host' => 'سێرڤەری SMTP',
+ 'email_smtp_pass' => 'وشەی نهێنی SMTP',
+ 'email_smtp_port' => 'پۆرتی SMTP',
+ 'email_smtp_timeout' => 'کاتی شکستی SMTP (چرکە)',
+ 'email_smtp_user' => 'ناوی بەکارهێنەری SMTP',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'پاراستنی نهێنی جێبەجێ بکە',
+ 'enforce_privacy_tooltip' => 'پاراستنی نهێنی کڕیاران لە ڕێگەی جێبەجێکردنی تێکەڵکردنی داتاکان لە ئەگەری سڕانەوەی داتاکانیان',
+ 'fax' => 'فاکس',
+ 'file_perm' => 'کێشە لە ڕێگەپێدانەکانی فایل هەیە. تکایە ئەم پەڕەیە چاک بکەوە و دووبارە باری بکەوە.',
+ 'financial_year' => 'دەستپێکردنی ساڵی دارایی',
+ 'financial_year_apr' => '١ی نیسان',
+ 'financial_year_aug' => '١ی ئاب',
+ 'financial_year_dec' => '١ی کانوونی یەکەم',
+ 'financial_year_feb' => '١ی شوبات',
+ 'financial_year_jan' => '١ی کانوونی دووەم',
+ 'financial_year_jul' => '١ی تەمووز',
+ 'financial_year_jun' => '١ی حوزەیران',
+ 'financial_year_mar' => '١ی ئازار',
+ 'financial_year_may' => '١ی ئایار',
+ 'financial_year_nov' => '١ی تشرینی دووەم',
+ 'financial_year_oct' => '١ی تشرینی یەکەم',
+ 'financial_year_sep' => '١ی ئەیلوول',
+ 'floating_labels' => 'لەیبڵە هەڵفڕیوەکان',
+ 'gcaptcha_enable' => 'پەڕەی چوونەژوورەوەی ڕیکاپچا',
+ 'gcaptcha_secret_key' => 'کلیلی نهێنی ڕیکاپچا',
+ 'gcaptcha_secret_key_required' => 'خانەی کلیلی نهێنی ڕیکاپچا پێویستە',
+ 'gcaptcha_site_key' => 'کلیلی سایتی ڕیکاپچا',
+ 'gcaptcha_site_key_required' => 'خانەی کلیلی سایتی ڕیکاپچا پێویستە',
+ 'gcaptcha_tooltip' => 'لاپەڕەی چوونەژوورەوە لەڕێی گوگڵ ڕیکاپچا بپارێزە، کرتە لە ئایکۆنەکە بکە بۆ جووتە کلیلی ئای پی ئەی.',
+ 'general' => 'گشتی',
+ 'general_configuration' => 'ڕێکخستنی گشتی',
+ 'giftcard_number' => 'ژمارەی کارتی دیاری',
+ 'giftcard_random' => 'دروستکردنی هەڕەمەکی',
+ 'giftcard_series' => 'دروستکردن بە زنجیرە',
+ 'image_allowed_file_types' => 'جۆری فایلە ڕێگەپێدراوەکان',
+ 'image_max_height_tooltip' => 'زۆرترین بەرزیی رێگەپێدراو بۆ بارکردنی وێنە بە پیکسڵ (پیکس).',
+ 'image_max_size_tooltip' => 'زۆرترین قەبارەی رێگەپێدراوی فایلی بارکردنی وێنە بە کیلۆبایت (کب).',
+ 'image_max_width_tooltip' => 'زۆرترین پانی ڕێگەپێدراوی بارکردنی وێنە بە پێکسڵ (پیکس).',
+ 'image_restrictions' => 'سنووربەندییەکانی بارکردنی وێنە',
+ 'include_hsn' => 'پاڵپشتی بۆ کۆدەکانی (ئێیچ ئێس ئێن) لەخۆ بگرە',
+ 'info' => 'زانیاری',
+ 'info_configuration' => 'زانیاری فڕۆشتگا',
+ 'input_groups' => 'گروپەکانی زانیارییە پێدراوەکان',
+ 'integrations' => 'یەکگرتنەکان',
+ 'integrations_configuration' => 'یەکگرتنەکانی لایەنی سێیەم',
+ 'invoice' => 'فاکتۆرە',
+ 'invoice_configuration' => 'ڕێکخستنەکانی چاپی فاکتورە',
+ 'invoice_default_comments' => 'سەرنجەکانی فاکتۆرەی بنەڕەتیی',
+ 'invoice_email_message' => 'تێمپڵەیتی ئیمەیڵی فاکتۆرە',
+ 'invoice_enable' => 'بەفاکتۆرەکردن چالاک بکە',
+ 'invoice_printer' => 'پرنتەری فاکتۆرە',
+ 'invoice_type' => 'جۆری فاکتۆرە',
+ 'is_readable' => 'دەتواندرێت بخوێندرێتەوە، بەڵام ڕێگەپێدانەکان بەهەڵە داندراون. تکایە لەسەر ٦٤٠ یان ٦٦٠ دایبنێ و ڕفرێشی بکەوە.',
+ 'is_writable' => 'دەتوانرێت بنووسرێتەوە، بەڵام ڕێگەپێدانەکان بەهەڵە دانراون. تکایە لەسەر ٧٥٠ دایبنێ و ڕفرێشی بکەوە.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'ئاگاداری: ئەم کاراییە تەنها لەو کاتەدا کاردەکات کە زیادکراوی FireFox jsPrintSetupت دامەزرابێت. سەرەڕای ئەمە هێشتا دەتەوێت پاشەکەوتی بکە؟',
+ 'language' => 'زمان',
+ 'last_used_invoice_number' => 'کۆتا ژمارەی فاکتۆرەی بەکارهاتوو',
+ 'last_used_quote_number' => 'کۆتا ژمارەی دەرخستەی نرخەکانی بەکارهاتوو',
+ 'last_used_work_order_number' => 'کۆتا ژمارەی بەکارهاتووی داواکاری کار',
+ 'left' => 'چەپ',
+ 'license' => 'مۆڵەت',
+ 'license_configuration' => 'بەیاننامەی مۆڵەت',
+ 'line_sequence' => 'زنجیرەی هێڵ',
+ 'lines_per_page' => 'هێڵەکانی هەر پەڕەیەک',
+ 'lines_per_page_number' => 'هێڵەکانی هەر پەڕەیەک دەبێت ژمارە بێت.',
+ 'lines_per_page_required' => 'خانەی هێڵەکانی هەر پەڕەیەک پێویستە.',
+ 'locale' => 'خۆماڵیکردن',
+ 'locale_configuration' => 'ڕێکخستنی خۆماڵیکردن',
+ 'locale_info' => 'زانیاریی ڕێکخستنی خۆماڵیکردن',
+ 'location' => 'کۆگا',
+ 'location_configuration' => 'شوێنی کۆگا',
+ 'location_info' => 'زانیاری ڕێکخستنی شوێن',
+ 'login_form' => 'ستایلی فۆڕمی چوونەژوورەوە',
+ 'logout' => 'دەتەوێت پاڵپشت دروست بکەیت پێش چوونە دەرەوە؟ کرتە بکە لەسەر [باشە] بۆ پاڵپشت دروستکردن یان [هەڵوەشاندنەوە] بۆ چوونە دەرەوە.',
+ 'mailchimp' => 'مەیڵچیمپ',
+ 'mailchimp_api_key' => 'کلیلی (ئەی پی ئای)ی مەیڵچیمپ',
+ 'mailchimp_configuration' => 'ڕێکخستنی مەیڵچیمپ',
+ 'mailchimp_key_successfully' => 'کلیلی (ئەی پی ئای) دروستە.',
+ 'mailchimp_key_unsuccessfully' => 'کلیلی (ئەی پی ئای) نادروستە.',
+ 'mailchimp_lists' => 'لیست(ەکان)ی مەیڵچیمپ',
+ 'mailchimp_tooltip' => 'کرتە لەسەر ئایکۆنی کلیلی (ئەی پی ئای) بکە.',
+ 'message' => 'نامە',
+ 'message_configuration' => 'ڕێکخستنی نامە',
+ 'msg_msg' => 'دەقی نامەی پاشەکەوتکراو',
+ 'msg_msg_placeholder' => 'ئەگەر دەتەوێت تێمپڵەیتی کورتەنامە بەکاربهێنیت ئەوا نامەکەت لێرەدا پاشەکەوت بکە، ئەگەرنا خانەکە بە بەتاڵی بهێڵەرەوە.',
+ 'msg_pwd' => 'وشەی نهێنی کورتەنامە-ئەی پی ئای',
+ 'msg_pwd_required' => 'خانەی وشەی نهێنی کورتەنامە-ئەی پی ئای پێویستە',
+ 'msg_src' => 'ناسنامەی نێردەری کورتەنامە-ئەی پی ئای',
+ 'msg_src_required' => 'خانەی ناسنامەی کورتەنامە-ئەی پی ئای پێویستە',
+ 'msg_uid' => 'ناوی بەکارهێنەری کورتەنامە-ئەی پی ئای',
+ 'msg_uid_required' => 'خانەی ناوی بەکارهێنەری کورتەنامە-ئەی پی ئای پێویستە',
+ 'multi_pack_enabled' => 'چەندین پاکێج بۆ هەر ئایتمێک',
+ 'no_risk' => 'هیچ مەترسیەکی ئاسایش یا لاوازبوون نییە.',
+ 'none' => 'هیچ',
+ 'notify_alignment' => 'شوێنی دەرکەوتنی ئاگادارکردنەوە',
+ 'number_format' => 'فۆڕماتی ژمارە',
+ 'number_locale' => 'خۆماڵیکردن',
+ 'number_locale_invalid' => 'ناوچەی داخڵکراو نادروستە. بۆ دۆزینەوەی ناوچەیەکی دروست، بەستەرەکەی ناو ئامرازەکە بپشکنە.',
+ 'number_locale_required' => 'خانەی ژمارەی ناوچە پێویستە.',
+ 'number_locale_tooltip' => 'لە ڕێگەی ئەم بەستەرەوە ناوچەی گونجاو بدۆزەرەوە.',
+ 'os_timezone' => 'ناوچەی کاتی OSPOS:',
+ 'ospos_info' => 'زانیاری دامەزراندنی OSPOS',
+ 'payment_options_order' => 'ڕیزبەندی بژاردەکانی پارەدان',
+ 'payment_reference_code_length_limits' => 'کۆدی مەرجعی پارەدان
سنووری درێژی',
+ 'payment_reference_code_length_max_label' => 'زۆرترین',
+ 'payment_reference_code_length_min_label' => 'کەمترین',
+ 'perm_risk' => 'ڕێگەپێدانی هەڵە ئەم نەرمەکاڵایە دەخاتە مەترسییەوە.',
+ 'phone' => 'تەلەفوونی کۆمپانیا',
+ 'phone_required' => 'خانەی تەلەفوونی کۆمپانیا پێویستە.',
+ 'print_bottom_margin' => 'پەراوێزی خوارەوە',
+ 'print_bottom_margin_number' => 'پەراوێزی خوارەوە دەبێت ژمارە بێت.',
+ 'print_bottom_margin_required' => 'خانەی پەراوێزی خوارەوە پێویستە.',
+ 'print_delay_autoreturn' => 'گەڕانەوەی خۆکارانە بۆ دواکەوتنی فرۆشتن',
+ 'print_delay_autoreturn_number' => 'خانەی گەڕانەوەی خۆکارانە بۆ دواکەوتنی فرۆشتن پێویستە.',
+ 'print_delay_autoreturn_required' => 'گەڕانەوەی خۆکارانە بۆ دواکەوتنی فرۆشتن دەبێت ژمارە بێت.',
+ 'print_footer' => 'چاپی فووتەری وێبگەڕ',
+ 'print_header' => 'چاپی هێدەری وێبگەڕ',
+ 'print_left_margin' => 'پەراوێزی چەپ',
+ 'print_left_margin_number' => 'پەراوێزی چەپ دەبێت ژمارە بێت.',
+ 'print_left_margin_required' => 'خانەی پەراوێزی چەپ پێویستە.',
+ 'print_receipt_check_behaviour' => 'چاپی خانەی هەڵبژاردنی فاکتورە',
+ 'print_receipt_check_behaviour_always' => 'هەمیشە هەڵبژێردراوە',
+ 'print_receipt_check_behaviour_last' => 'کۆتا هەڵبژاردنت بیر بێت',
+ 'print_receipt_check_behaviour_never' => 'هەرگیز هەڵنەبژێردراوە',
+ 'print_right_margin' => 'پەراوێزی ڕاست',
+ 'print_right_margin_number' => 'پەراوێزی ڕاست ئەبێت ژمارە بێت.',
+ 'print_right_margin_required' => 'خانەی پەراوێزی ڕاست پێویستە.',
+ 'print_silently' => 'دیالۆگی چاپ نیشان بدە',
+ 'print_top_margin' => 'پەراوێزی سەرەوە',
+ 'print_top_margin_number' => 'پەراوێزی سەرەوە دەبێت ژمارە بێت.',
+ 'print_top_margin_required' => 'خانەی پەراوێزی سەرەوە پێویستە.',
+ 'quantity_decimals' => 'ژمارەی خانەی دەیان',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'سەرنجە بنەڕەتییەکانی دەرخستەی نرخەکان',
+ 'receipt' => 'پسوڵە',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'ڕێکخستنەکانی چاپی پسوڵە',
+ 'receipt_default' => 'بنەڕەتیی',
+ 'receipt_font_size' => 'قەبارەی فۆنت',
+ 'receipt_font_size_number' => 'قەبارەی فۆنت دەبێت ژمارە بێت.',
+ 'receipt_font_size_required' => 'خانەی قەبارەی فۆنت پێویستە.',
+ 'receipt_info' => 'زانیاری ڕێکخستنی پسوڵە',
+ 'receipt_printer' => 'چاپکەری بلیت',
+ 'receipt_short' => 'کورت',
+ 'receipt_show_company_name' => 'ناوی کۆمپانیا نیشان بدە',
+ 'receipt_show_description' => 'دەربارە نیشان بدە',
+ 'receipt_show_serialnumber' => 'ژمارەی زنجیرەیی نیشان بدە',
+ 'receipt_show_tax_ind' => 'دەرخەری باج نیشان بدە',
+ 'receipt_show_taxes' => 'باجەکان نیشان بدە',
+ 'receipt_show_total_discount' => 'داشکاندنی گشتی نیشان بدە',
+ 'receipt_template' => 'تێمپڵەیتی پسوڵە',
+ 'receiving_calculate_average_price' => 'هەژمارکردنی نرخی تێکڕا (وەرگیراوەکان)',
+ 'recv_invoice_format' => 'فۆڕماتی فاکتورەی وەرگیراوەکان',
+ 'register_mode_default' => 'دۆخی تۆمارکردنی بنەڕەتیی',
+ 'report_an_issue' => 'ڕاپۆرتکردنی کێشەیەک',
+ 'return_policy_required' => 'خانەی ڕێکاری گەڕانەوە پێویستە.',
+ 'reward' => 'پاداشت',
+ 'reward_configuration' => 'ڕێکخستنی پاداشت',
+ 'right' => 'ڕاست',
+ 'sales_invoice_format' => 'فۆڕماتی فاکتورەی فرۆشتن',
+ 'sales_quote_format' => 'فۆڕماتی دەرخستەی نرخەکانی فرۆشتن',
+ 'saved_successfully' => 'پاشەکەوتکردنی ڕێکخستن سەرکەوتوو بوو.',
+ 'saved_unsuccessfully' => 'پاشەکەوتکردنی ڕێکخستن سەرکەوتوو نەبوو.',
+ 'security_issue' => 'ئاگادارکردنەوەی لاوازی ئاسایش',
+ 'server_notice' => 'تکایە ئەم زانیاریانەی خوارەوە بەکاربهێنە بۆ ڕاپۆرتکردنی کێشە.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'ئایکۆنی ئۆفیس پیشان بدە',
+ 'statistics' => 'ناردنی ئامار',
+ 'statistics_tooltip' => 'ناردنی ئامارەکان بە مەبەستی پەرەپێدان و باشترکردنی تایبەتمەندییەکان.',
+ 'stock_location' => 'شوێنی کۆگا',
+ 'stock_location_duplicate' => 'شوێنی کۆگا دەبێت بێهاوتا بێت.',
+ 'stock_location_invalid_chars' => "شوێنی کۆگا ناتوانێت '_' لەخۆبگرێت.",
+ 'stock_location_required' => 'خانەی شوێنی کۆگا پێویستە.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'ستوونی ١',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'نەخشەی پێشنیارەکانی گەڕان',
+ 'suggestions_second_column' => 'ستوونی ٢',
+ 'suggestions_third_column' => 'ستوونی ٣',
+ 'system_conf' => 'دامەزراندن و ڕێکخستن',
+ 'system_info' => 'زانیاری سیستەم',
+ 'table' => 'مێز',
+ 'table_configuration' => 'ڕێکخستنی جەدۆل',
+ 'takings_printer' => 'چاپکەری پسوڵە',
+ 'tax' => 'باج',
+ 'tax_category' => 'پۆلێنی باج',
+ 'tax_category_duplicate' => 'پۆلێنی باجی داخڵکراو پێشتر بوونی هەیە.',
+ 'tax_category_invalid_chars' => 'پلێنی باجی داخڵکراو نادروستە.',
+ 'tax_category_required' => 'پۆلێنی باج پێویستە.',
+ 'tax_category_used' => 'پۆلێنی باج ناتوانرێت بسڕدرێتەوە چونکە بەکاردەهێنرێت.',
+ 'tax_configuration' => 'ڕێکخستنی باج',
+ 'tax_decimals' => 'خانەی دەیانی باج',
+ 'tax_id' => 'ناسنامەی باج',
+ 'tax_included' => 'باج لەخۆدەگرێت',
+ 'theme' => 'ڕووکار',
+ 'theme_preview' => 'پێشبینینی ڕووکار:',
+ 'thousands_separator' => 'جیاکەرەوەی هەزاران',
+ 'timezone' => 'ناوچەی کات',
+ 'timezone_error' => 'ناوچەی کاتی OSPOS جیاوازە لە ناوچەی کاتی ناوخۆیی خۆت.',
+ 'top' => 'سەرەوە',
+ 'use_destination_based_tax' => 'بەکارهێنانی باجی بنەمادار بە شوێنی مەبەست',
+ 'user_timezone' => 'ناوچەی کاتی ناوخۆیی:',
+ 'website' => 'ماڵپەڕ',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'پاڵپشتی داواکاری کار',
+ 'work_order_format' => 'فۆڕماتی داواکاری کار',
];
diff --git a/app/Language/ckb/Login.php b/app/Language/ckb/Login.php
index 9141fecfd..387cd9e35 100644
--- a/app/Language/ckb/Login.php
+++ b/app/Language/ckb/Login.php
@@ -1,25 +1,30 @@
"من ڕۆبۆت نیم.",
- 'go' => "بەردەوامبە",
- 'invalid_gcaptcha' => "تکایە دڵنیابکەرەوە لەوەی کە تۆ ڕۆبۆت نیت.",
- 'invalid_installation' => "دابەزاندن دروست نییە، فایلیphp.ini ـەکەت بپشکنە.",
- 'invalid_username_and_password' => "ناوی بەکارهێنەر و/یان وشەی نهێنی نادروست.",
- 'login' => "چوونەژوورەوە",
- 'logout' => "چوونەدەرەوە",
- 'migration_needed' => "گواستنەوەی داتابەیس بۆ {0} دوای چوونەژوورەوە دەست پێدەکات.",
- 'migration_required' => "",
- 'migration_auth_message' => "",
- 'migration_initializing' => "",
- 'migration_running' => "",
- 'migration_complete' => "",
- 'migration_complete_login' => "",
- 'migration_failed' => "",
- 'migration_error_connection' => "",
- 'migration_complete_redirect' => "",
- 'password' => "وشەی نهێنی",
- 'required_username' => "خانەی ناوی بەکارهێنەر پێویستە.",
- 'username' => "ناوی بەکارهێنەر",
- 'welcome' => "بەخێربێن بۆ {0}!",
+ "gcaptcha" => "من ڕۆبۆت نیم.",
+ "go" => "بەردەوامبە",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "تکایە دڵنیابکەرەوە لەوەی کە تۆ ڕۆبۆت نیت.",
+ "invalid_installation" => "دابەزاندن دروست نییە، فایلیphp.ini ـەکەت بپشکنە.",
+ "invalid_username_and_password" => "ناوی بەکارهێنەر و/یان وشەی نهێنی نادروست.",
+ "login" => "چوونەژوورەوە",
+ "logout" => "چوونەدەرەوە",
+ "migrating_database" => "",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "گواستنەوەی داتابەیس بۆ {0} دوای چوونەژوورەوە دەست پێدەکات.",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "وشەی نهێنی",
+ "required_username" => "خانەی ناوی بەکارهێنەر پێویستە.",
+ "username" => "ناوی بەکارهێنەر",
+ "welcome" => "بەخێربێن بۆ {0}!"
];
diff --git a/app/Language/ckb/Sales.php b/app/Language/ckb/Sales.php
index 3c7973f99..1a9d3b14e 100644
--- a/app/Language/ckb/Sales.php
+++ b/app/Language/ckb/Sales.php
@@ -1,232 +1,236 @@
"خاڵە بەردەستەکان",
- 'rewards_package' => "پاداشتەکان",
- 'rewards_remaining_balance' => "بەهای پاداشتی خاڵە ماووەکان بریتییە لە ",
- 'account_number' => "هەژمار #",
- 'add_payment' => "زیادکردنی پارەدان",
- 'amount_due' => "بڕی پارە کە دەبێ بدرێت",
- 'amount_tendered' => "بڕی پێشکەشکراو",
- 'authorized_signature' => "واژۆی ڕێگەپێدراو",
- 'cancel_sale' => "هەڵوەشاندنەوە",
- 'cash' => "پارەی نەختینە",
- 'cash_1' => "",
- 'cash_2' => "",
- 'cash_3' => "",
- 'cash_4' => "",
- 'cash_adjustment' => "ڕێکخستنی پارەی نەختینە",
- 'cash_deposit' => "پارەی نەختینەی دانراو",
- 'cash_filter' => "نەختینە",
- 'change_due' => "ئەو گۆڕانکارییانەی دەبێت بکرێت",
- 'change_price' => "گۆڕینی نرخی فرۆشتن",
- 'check' => "چەکی پارە",
- 'check_balance' => "پاشماوەی چەکی پارە",
- 'check_filter' => "چەکی پارە",
- 'close' => "",
- 'comment' => "سەرنج",
- 'comments' => "سەرنجەکان",
- 'company_name' => "",
- 'complete' => "",
- 'complete_sale' => "تەواو",
- 'confirm_cancel_sale' => "دڵنیایت دەتەوێت ئەم فرۆشتنە بسڕیتەوە؟ هەموو کاڵاکان دەسڕێنەوە.",
- 'confirm_delete' => "ئایا دڵنیای کە دەتەوێت فرۆشتنە هەڵبژێردراوەکان بسڕیتەوە؟",
- 'confirm_restore' => "ئایا دڵنیای کە دەتەوێت فرۆشتنە هەڵبژێردراوەکان بگەڕێنیتەوە؟",
- 'credit' => "کارتی کرێدت",
- 'credit_deposit' => "دانانی کرێدت",
- 'credit_filter' => "کارتی کرێدت",
- 'current_table' => "",
- 'customer' => "کڕیار",
- 'customer_address' => "ناونیشان",
- 'customer_discount' => "داشکاندن",
- 'customer_email' => "ئیمەیڵ",
- 'customer_location' => "ناونیشان",
- 'customer_mailchimp_status' => "دۆخی بەکارهێنان مایلچیمپ",
- 'customer_optional' => "(پێویستە بۆئەو پارانەی دەبێت بدرێت)",
- 'customer_required' => "(پێویستە)",
- 'customer_total' => "کۆی گشتی",
- 'customer_total_spent' => "",
- 'daily_sales' => "",
- 'date' => "بەرواری فرۆشتن",
- 'date_range' => "مەودای بەروار",
- 'date_required' => "دەبێت بەروارێکی دروست داخڵ بکرێت.",
- 'date_type' => "بەروار خانەیەکی پێویستە.",
- 'debit' => "کارتی دێبت",
- 'debit_filter' => "",
- 'delete' => "ڕێگە بدە بە سڕینەوە",
- 'delete_confirmation' => "دڵنیای کە دەتەوێت ئەم فرۆشتنە بسڕیتەوە؟ ئەم کارە ناتوانرێت پووچەڵ بکرێتەوە.",
- 'delete_entire_sale' => "هەموو فرۆشتنەکە بسڕەوە",
- 'delete_successful' => "سڕینەوەی فرۆشتن سەرکەوتوو بوو.",
- 'delete_unsuccessful' => "سڕینەوەی فرۆشتن شکستی هێنا.",
- 'description_abbrv' => "وەسف.",
- 'discard' => "ڕەتکردنەوە",
- 'discard_quote' => "",
- 'discount' => "داشکاندن",
- 'discount_included' => "% داشکاندن",
- 'discount_short' => "%",
- 'due' => "ئەو بڕەی پێویستە بدرێت",
- 'due_filter' => "ئەو بڕەی پێویستە بدرێت",
- 'edit' => "دەستکاری",
- 'edit_item' => "دەستکاریکردنی ئایتم",
- 'edit_sale' => "دەستکاریکردنی فرۆشتن",
- 'email_receipt' => "وەسڵی ئیمەیڵ",
- 'employee' => "فەرمانبەر",
- 'entry' => "تۆمار",
- 'error_editing_item' => "هەڵە لە دەستکاریکردنی ئایتم",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- 'find_or_scan_item' => "دۆزینەوە یان سکانکردنی ئایتم",
- 'find_or_scan_item_or_receipt' => "دۆزینەوە یان سکانکردنی ئایتم یان پسوڵە",
- 'giftcard' => "کارتی دیاری",
- 'giftcard_balance' => "باڵانسی کارتی دیاری",
- 'giftcard_filter' => "",
- 'giftcard_number' => "ژمارەی کارتی دیاری",
- 'group_by_category' => "گروپ بەپێی پۆلێن",
- 'group_by_type' => "گروپ بەپێی جۆر",
- 'hsn' => "کۆدی سیستەمی هارمونیزە",
- 'id' => "ناسنامەی فرۆشتن",
- 'include_prices' => "نرخەکان لەخۆ بگرێت؟",
- 'invoice' => "فاکتۆرە",
- 'invoice_confirm' => "ئەم فاکتورەیە دەنێردرێت بۆ",
- 'invoice_enable' => "ژمارەی فاکتورە",
- 'invoice_filter' => "فاکتۆرەکان",
- 'invoice_no_email' => "ئەم کڕیارە ناونیشانی ئیمەیڵی دروستی نییە.",
- 'invoice_number' => "فاکتورە #",
- 'invoice_number_duplicate' => "ژمارەی فاکتورە {0} دەبێت تایبەت بێت.",
- 'invoice_sent' => "فاکتورە نێردراوە بۆ",
- 'invoice_total' => "کۆی گشتی فاکتورە",
- 'invoice_type_custom_invoice' => "فاکتورەی تایبەت (custom_invoice.php)",
- 'invoice_type_custom_tax_invoice' => "فاکتورەی باجی تایبەتمەند (custom_tax_invoice.php)",
- 'invoice_type_invoice' => "فاکتورە (invoice.php)",
- 'invoice_type_tax_invoice' => "فاکتورەی باج (tax_invoice.php)",
- 'invoice_unsent' => "فاکتورە نەتوانرا بنێردریت بۆ",
- 'invoice_update' => "ژماردنەوەی دووبارە",
- 'item_insufficient_of_stock' => "ئایتمەکە بڕی پێویستی نییە لە کۆگا.",
- 'item_name' => "ناوی ئایتم",
- 'item_number' => "ئایتم #",
- 'item_out_of_stock' => "ئایتم لە کۆگادا تەواو بووە.",
- 'key_browser' => "کورتە ڕێگای یارمەتیدەر",
- 'key_cancel' => "هەڵوەشاندنەوەی دەرخستەی نرخ/فاکتورە/فرۆشتن",
- 'key_customer_search' => "گەڕان بەدوای کڕیاردا",
- 'key_finish_quote' => "تەواوکردنی دەرخستەی نرخ/فاکتورە بەبێ پارەدان",
- 'key_finish_sale' => "زیادکردنی پارەدان و تەواوکردنی فاکتورە/فرۆشتن",
- 'key_full' => "لە دۆخی تەواوی شاشەدا بیکەرەوە",
- 'key_function' => "فرمان",
- 'key_help' => "کورتە ڕێگاکان",
- 'key_help_modal' => "پەنجەرەی کورتە ڕێگاکان بکەرەوە",
- 'key_in' => "نزیک کردنەوە",
- 'key_item_search' => "گەڕان بەدوای ئایتم",
- 'key_out' => "دوورخستنەوە",
- 'key_payment' => "زیادکردنی پارەدان",
- 'key_print' => "لاپەڕەی ئێستا چاپ بکە",
- 'key_restore' => "گەڕاندنەوەی پیشاندانی ئەسڵی/زووم",
- 'key_search' => "خشتەکانی ڕاپۆرتەکانی گەڕان",
- 'key_suspend' => "فرۆشتنی ئێستا ڕابگرە",
- 'key_suspended' => "فرۆشتنی ڕاگیراو پیشان بدە",
- 'key_system' => "کورتە ڕێگاکانی سیستەم",
- 'key_tendered' => "دەسکاریکردنی بڕی پێشکەشکراو",
- 'key_title' => "کورتە ڕێگاکانی تەختەکلیلی فرۆشتن",
- 'mc' => "",
- 'mode' => "دۆخی تۆمارکردن",
- 'must_enter_numeric' => "بڕی پێشکەشکراو دەبێت ژمارەیەک بێت.",
- 'must_enter_numeric_giftcard' => "ژمارەی کارتی دیاری دەبێت ژمارەیەک بێت.",
- 'new_customer' => "کڕیاری نوێ",
- 'new_item' => "ئایتمی نوێ",
- 'no_description' => "هیچ وەسفێک نییە",
- 'no_filter' => "هەموو",
- 'no_items_in_cart' => "هیچ ئایتمێک لە عەرەبانەکەدا نییە.",
- 'no_sales_to_display' => "هیچ فرۆشتنێک نییە بۆ پیشاندان.",
- 'none_selected' => "تۆ هیچ فرۆشتنێکت هەڵنەبژاردووە بۆ سڕینەوە.",
- 'nontaxed_ind' => " ",
- 'not_authorized' => "ئەم کارە ڕێگەپێدراو نییە.",
- 'one_or_multiple' => "فرۆشتن(ەکان)",
- 'payment' => "جۆری پارەدان",
- 'payment_amount' => "بڕ",
- 'payment_not_cover_total' => "بڕی پارەدان دەبێت زیاتر بێت یان یەکسان بێت بە کۆی گشتی.",
- 'payment_type' => "جۆر",
- 'payments' => "",
- 'payments_total' => "کۆی پارەدانەکان",
- 'price' => "نرخ",
- 'print_after_sale' => "چاپکردن دوای فرۆشتن",
- 'quantity' => "بڕ",
- 'quantity_less_than_reorder_level' => "ئاگاداری: بڕی خوازراو لە خوار ئاستی پێویستەوەیە بۆ ئەو ئایتمە.",
- 'quantity_less_than_zero' => "ئاگاداری: بڕی خوازراو بەس نییە. هێشتا دەتوانیت فرۆشتنەکە پڕۆسێس بکەیت، بەڵام دەبێت وردبینی بۆ کۆگاکەت بکەیت.",
- 'quantity_of_items' => "بڕی {0} ئایتم",
- 'quote' => "دەرخستەی نرخ",
- 'quote_number' => "ژمارەی دەرخستەی نرخ",
- 'quote_number_duplicate' => "ژمارەی دەرخستەی نرخ دەبێت تایبەت بێت.",
- 'quote_sent' => "دەرخستەی نرخ نێردرا بۆ",
- 'quote_unsent' => "دەرخستەی نرخ شکستی هێنا لە ناردنی بۆ",
- 'receipt' => "پسوڵەی فرۆشتن",
- 'receipt_no_email' => "ئەم کڕیارە ناونیشانی ئیمەیڵی دروستی نییە.",
- 'receipt_number' => "فرۆشتن #",
- 'receipt_sent' => "پسوڵەی نێردرا بۆ",
- 'receipt_unsent' => "پسوڵەکە شکستی هێنا لە ناردنی بۆ",
- 'refund' => "جۆری گەڕاندنەوەی پارە",
- 'register' => "تۆماری فرۆشتن",
- 'remove_customer' => "لابردنی کڕیار",
- 'remove_discount' => "",
- 'return' => "گەڕانەوە",
- 'rewards' => "خاڵەکانی پاداشت",
- 'rewards_balance' => "باڵانسی خاڵەکانی پاداشت",
- 'sale' => "فرۆشتن",
- 'sale_by_invoice' => "فرۆشتن بە فاکتورە",
- 'sale_for_customer' => "کڕیار:",
- 'sale_time' => "کات",
- 'sales_tax' => "باجی فرۆشتن",
- 'sales_total' => "",
- 'select_customer' => "کڕیار هەڵبژێرە",
- 'selected_customer' => "کڕیاری هەڵبژێردراو",
- 'send_invoice' => "فاکتورە بنێرە",
- 'send_quote' => "دەرخستەی نرخ بنێرە",
- 'send_receipt' => "پسوڵە بنێرە",
- 'send_work_order' => "داواکاری کار بنێرە",
- 'serial' => "زنجیرەیی",
- 'service_charge' => "",
- 'show_due' => "",
- 'show_invoice' => "فاکتورە پیشان بدە",
- 'show_receipt' => "فاکتورە پیشان بدە",
- 'start_typing_customer_name' => "دەست بکە بە نووسینی وردەکارییەکانی کڕیار...",
- 'start_typing_item_name' => "دەست بکە بە نووسینی ناوی ئایتم یان بارکۆد سکان بکە...",
- 'stock' => "کۆگا",
- 'stock_location' => "ناونیشانی کۆگا",
- 'sub_total' => "کۆی سەرەتایی",
- 'successfully_deleted' => "بەسەرکەوتوویی سڕیتەوە",
- 'successfully_restored' => "بەسەرکەوتوویی گەڕاندتەوە",
- 'successfully_suspended_sale' => "فرۆشتن بەسەرکەوتوویی راگیرا.",
- 'successfully_updated' => "فرۆشتن بەسەرکەوتوویی تازەکرایەوە.",
- 'suspend_sale' => "ڕاگرتن",
- 'suspended_doc_id' => "بەڵگەنامە",
- 'suspended_sale_id' => "ناسنامە",
- 'suspended_sales' => "ڕاگیرا",
- 'table' => "مێز",
- 'takings' => "فرۆشتنی ڕۆژانە",
- 'tax' => "باج",
- 'tax_id' => "ناسنامەی باج",
- 'tax_invoice' => "فاکتورەی باج",
- 'tax_percent' => "باج %",
- 'taxed_ind' => "T",
- 'total' => "گشتی",
- 'total_tax_exclusive' => "باج لەخۆناگرێت",
- 'transaction_failed' => "مامەڵەی فرۆشتن شکستی هێنا.",
- 'unable_to_add_item' => "زیادکردنی ئایتم بۆ فرۆشتن شکستی هێنا",
- 'unsuccessfully_deleted' => "سڕینەوەی فرۆشتن(ەکان) شکستی هێنا.",
- 'unsuccessfully_restored' => "گەڕاندنەوەی فرۆشتن(ەکان) شکستی هێنا.",
- 'unsuccessfully_suspended_sale' => "ڕاگرتنی فرۆشتن شکستی هێنا.",
- 'unsuccessfully_updated' => "نوێکردنەوەی فرۆشتن شکستی هێنا.",
- 'unsuspend' => "ڕاگرتن هەڵبوەشێنەوە",
- 'unsuspend_and_delete' => "کردار",
- 'update' => "نوێکردنەوە",
- 'upi' => "UPI (سیستەمی پارەدان بەهۆکاری یەکگرتوو)",
- 'visa' => "",
- 'wholesale' => "",
- 'work_order' => "داواکاری کار",
- 'work_order_number' => "ژامرەی داواکاری کار",
- 'work_order_number_duplicate' => "ژمارەی داواکاری کار دەبێت تایبەت بێت.",
- 'work_order_sent' => "داواکاری کار نێردرا بۆ",
- 'work_order_unsent' => "داواکاری کار شکستی هێنا لە ناردنی بۆ",
+ 'account_number' => 'هەژمار #',
+ 'add_payment' => 'زیادکردنی پارەدان',
+ 'amount_due' => 'بڕی پارە کە دەبێ بدرێت',
+ 'amount_tendered' => 'بڕی پێشکەشکراو',
+ 'authorized_signature' => 'واژۆی ڕێگەپێدراو',
+ 'cancel_sale' => 'هەڵوەشاندنەوە',
+ 'cash' => 'پارەی نەختینە',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'ڕێکخستنی پارەی نەختینە',
+ 'cash_deposit' => 'پارەی نەختینەی دانراو',
+ 'cash_filter' => 'نەختینە',
+ 'change_due' => 'ئەو گۆڕانکارییانەی دەبێت بکرێت',
+ 'change_price' => 'گۆڕینی نرخی فرۆشتن',
+ 'check' => 'چەکی پارە',
+ 'check_balance' => 'پاشماوەی چەکی پارە',
+ 'check_filter' => 'چەکی پارە',
+ 'close' => '',
+ 'comment' => 'سەرنج',
+ 'comments' => 'سەرنجەکان',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'تەواو',
+ 'confirm_cancel_sale' => 'دڵنیایت دەتەوێت ئەم فرۆشتنە بسڕیتەوە؟ هەموو کاڵاکان دەسڕێنەوە.',
+ 'confirm_delete' => 'ئایا دڵنیای کە دەتەوێت فرۆشتنە هەڵبژێردراوەکان بسڕیتەوە؟',
+ 'confirm_restore' => 'ئایا دڵنیای کە دەتەوێت فرۆشتنە هەڵبژێردراوەکان بگەڕێنیتەوە؟',
+ 'credit' => 'کارتی کرێدت',
+ 'credit_deposit' => 'دانانی کرێدت',
+ 'credit_filter' => 'کارتی کرێدت',
+ 'current_table' => '',
+ 'customer' => 'کڕیار',
+ 'customer_address' => 'ناونیشان',
+ 'customer_discount' => 'داشکاندن',
+ 'customer_email' => 'ئیمەیڵ',
+ 'customer_location' => 'ناونیشان',
+ 'customer_mailchimp_status' => 'دۆخی بەکارهێنان مایلچیمپ',
+ 'customer_optional' => '(پێویستە بۆئەو پارانەی دەبێت بدرێت)',
+ 'customer_required' => '(پێویستە)',
+ 'customer_total' => 'کۆی گشتی',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'خاڵە بەردەستەکان',
+ 'daily_sales' => '',
+ 'date' => 'بەرواری فرۆشتن',
+ 'date_range' => 'مەودای بەروار',
+ 'date_required' => 'دەبێت بەروارێکی دروست داخڵ بکرێت.',
+ 'date_type' => 'بەروار خانەیەکی پێویستە.',
+ 'debit' => 'کارتی دێبت',
+ 'debit_filter' => '',
+ 'delete' => 'ڕێگە بدە بە سڕینەوە',
+ 'delete_confirmation' => 'دڵنیای کە دەتەوێت ئەم فرۆشتنە بسڕیتەوە؟ ئەم کارە ناتوانرێت پووچەڵ بکرێتەوە.',
+ 'delete_entire_sale' => 'هەموو فرۆشتنەکە بسڕەوە',
+ 'delete_successful' => 'سڕینەوەی فرۆشتن سەرکەوتوو بوو.',
+ 'delete_unsuccessful' => 'سڕینەوەی فرۆشتن شکستی هێنا.',
+ 'description_abbrv' => 'وەسف.',
+ 'discard' => 'ڕەتکردنەوە',
+ 'discard_quote' => '',
+ 'discount' => 'داشکاندن',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% داشکاندن',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'ئەو بڕەی پێویستە بدرێت',
+ 'due_filter' => 'ئەو بڕەی پێویستە بدرێت',
+ 'edit' => 'دەستکاری',
+ 'edit_item' => 'دەستکاریکردنی ئایتم',
+ 'edit_sale' => 'دەستکاریکردنی فرۆشتن',
+ 'email_receipt' => 'وەسڵی ئیمەیڵ',
+ 'employee' => 'فەرمانبەر',
+ 'entry' => 'تۆمار',
+ 'error_editing_item' => 'هەڵە لە دەستکاریکردنی ئایتم',
+ 'find_or_scan_item' => 'دۆزینەوە یان سکانکردنی ئایتم',
+ 'find_or_scan_item_or_receipt' => 'دۆزینەوە یان سکانکردنی ئایتم یان پسوڵە',
+ 'giftcard' => 'کارتی دیاری',
+ 'giftcard_balance' => 'باڵانسی کارتی دیاری',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'ژمارەی کارتی دیاری',
+ 'group_by_category' => 'گروپ بەپێی پۆلێن',
+ 'group_by_type' => 'گروپ بەپێی جۆر',
+ 'hsn' => 'کۆدی سیستەمی هارمونیزە',
+ 'id' => 'ناسنامەی فرۆشتن',
+ 'include_prices' => 'نرخەکان لەخۆ بگرێت؟',
+ 'invoice' => 'فاکتۆرە',
+ 'invoice_confirm' => 'ئەم فاکتورەیە دەنێردرێت بۆ',
+ 'invoice_enable' => 'ژمارەی فاکتورە',
+ 'invoice_filter' => 'فاکتۆرەکان',
+ 'invoice_no_email' => 'ئەم کڕیارە ناونیشانی ئیمەیڵی دروستی نییە.',
+ 'invoice_number' => 'فاکتورە #',
+ 'invoice_number_duplicate' => 'ژمارەی فاکتورە {0} دەبێت تایبەت بێت.',
+ 'invoice_sent' => 'فاکتورە نێردراوە بۆ',
+ 'invoice_total' => 'کۆی گشتی فاکتورە',
+ 'invoice_type_custom_invoice' => 'فاکتورەی تایبەت (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'فاکتورەی باجی تایبەتمەند (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'فاکتورە (invoice.php)',
+ 'invoice_type_tax_invoice' => 'فاکتورەی باج (tax_invoice.php)',
+ 'invoice_unsent' => 'فاکتورە نەتوانرا بنێردریت بۆ',
+ 'invoice_update' => 'ژماردنەوەی دووبارە',
+ 'item_insufficient_of_stock' => 'ئایتمەکە بڕی پێویستی نییە لە کۆگا.',
+ 'item_name' => 'ناوی ئایتم',
+ 'item_number' => 'ئایتم #',
+ 'item_out_of_stock' => 'ئایتم لە کۆگادا تەواو بووە.',
+ 'key_browser' => 'کورتە ڕێگای یارمەتیدەر',
+ 'key_cancel' => 'هەڵوەشاندنەوەی دەرخستەی نرخ/فاکتورە/فرۆشتن',
+ 'key_customer_search' => 'گەڕان بەدوای کڕیاردا',
+ 'key_finish_quote' => 'تەواوکردنی دەرخستەی نرخ/فاکتورە بەبێ پارەدان',
+ 'key_finish_sale' => 'زیادکردنی پارەدان و تەواوکردنی فاکتورە/فرۆشتن',
+ 'key_full' => 'لە دۆخی تەواوی شاشەدا بیکەرەوە',
+ 'key_function' => 'فرمان',
+ 'key_help' => 'کورتە ڕێگاکان',
+ 'key_help_modal' => 'پەنجەرەی کورتە ڕێگاکان بکەرەوە',
+ 'key_in' => 'نزیک کردنەوە',
+ 'key_item_search' => 'گەڕان بەدوای ئایتم',
+ 'key_out' => 'دوورخستنەوە',
+ 'key_payment' => 'زیادکردنی پارەدان',
+ 'key_print' => 'لاپەڕەی ئێستا چاپ بکە',
+ 'key_restore' => 'گەڕاندنەوەی پیشاندانی ئەسڵی/زووم',
+ 'key_search' => 'خشتەکانی ڕاپۆرتەکانی گەڕان',
+ 'key_suspend' => 'فرۆشتنی ئێستا ڕابگرە',
+ 'key_suspended' => 'فرۆشتنی ڕاگیراو پیشان بدە',
+ 'key_system' => 'کورتە ڕێگاکانی سیستەم',
+ 'key_tendered' => 'دەسکاریکردنی بڕی پێشکەشکراو',
+ 'key_title' => 'کورتە ڕێگاکانی تەختەکلیلی فرۆشتن',
+ 'mc' => '',
+ 'mode' => 'دۆخی تۆمارکردن',
+ 'must_enter_numeric' => 'بڕی پێشکەشکراو دەبێت ژمارەیەک بێت.',
+ 'must_enter_numeric_giftcard' => 'ژمارەی کارتی دیاری دەبێت ژمارەیەک بێت.',
+ 'must_enter_reference_code' => 'ژمارەی مەرجع/وەرگرتن دەبێت بنووسرێت.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'کڕیاری نوێ',
+ 'new_item' => 'ئایتمی نوێ',
+ 'no_description' => 'هیچ وەسفێک نییە',
+ 'no_filter' => 'هەموو',
+ 'no_items_in_cart' => 'هیچ ئایتمێک لە عەرەبانەکەدا نییە.',
+ 'no_sales_to_display' => 'هیچ فرۆشتنێک نییە بۆ پیشاندان.',
+ 'none_selected' => 'تۆ هیچ فرۆشتنێکت هەڵنەبژاردووە بۆ سڕینەوە.',
+ 'nontaxed_ind' => ' ',
+ 'not_authorized' => 'ئەم کارە ڕێگەپێدراو نییە.',
+ 'one_or_multiple' => 'فرۆشتن(ەکان)',
+ 'payment' => 'جۆری پارەدان',
+ 'payment_amount' => 'بڕ',
+ 'payment_not_cover_total' => 'بڕی پارەدان دەبێت زیاتر بێت یان یەکسان بێت بە کۆی گشتی.',
+ 'payment_type' => 'جۆر',
+ 'payments' => '',
+ 'payments_total' => 'کۆی پارەدانەکان',
+ 'price' => 'نرخ',
+ 'print_after_sale' => 'چاپکردن دوای فرۆشتن',
+ 'quantity' => 'بڕ',
+ 'quantity_less_than_reorder_level' => 'ئاگاداری: بڕی خوازراو لە خوار ئاستی پێویستەوەیە بۆ ئەو ئایتمە.',
+ 'quantity_less_than_zero' => 'ئاگاداری: بڕی خوازراو بەس نییە. هێشتا دەتوانیت فرۆشتنەکە پڕۆسێس بکەیت، بەڵام دەبێت وردبینی بۆ کۆگاکەت بکەیت.',
+ 'quantity_of_items' => 'بڕی {0} ئایتم',
+ 'quote' => 'دەرخستەی نرخ',
+ 'quote_number' => 'ژمارەی دەرخستەی نرخ',
+ 'quote_number_duplicate' => 'ژمارەی دەرخستەی نرخ دەبێت تایبەت بێت.',
+ 'quote_sent' => 'دەرخستەی نرخ نێردرا بۆ',
+ 'quote_unsent' => 'دەرخستەی نرخ شکستی هێنا لە ناردنی بۆ',
+ 'receipt' => 'پسوڵەی فرۆشتن',
+ 'receipt_no_email' => 'ئەم کڕیارە ناونیشانی ئیمەیڵی دروستی نییە.',
+ 'receipt_number' => 'فرۆشتن #',
+ 'receipt_sent' => 'پسوڵەی نێردرا بۆ',
+ 'receipt_unsent' => 'پسوڵەکە شکستی هێنا لە ناردنی بۆ',
+ 'reference_code' => 'کۆدی مەرجعی پارەدان',
+ 'reference_code_invalid_characters' => 'کۆدی مەرجع دەبێت تەنها پیت و ژمارە لەخۆ بگرێت.',
+ 'reference_code_length_error' => 'درێژی کۆدی مەرجع دروست نییە.',
+ 'refund' => 'جۆری گەڕاندنەوەی پارە',
+ 'register' => 'تۆماری فرۆشتن',
+ 'remove_customer' => 'لابردنی کڕیار',
+ 'remove_discount' => '',
+ 'return' => 'گەڕانەوە',
+ 'rewards' => 'خاڵەکانی پاداشت',
+ 'rewards_balance' => 'باڵانسی خاڵەکانی پاداشت',
+ 'rewards_package' => 'پاداشتەکان',
+ 'rewards_remaining_balance' => 'بەهای پاداشتی خاڵە ماووەکان بریتییە لە ',
+ 'sale' => 'فرۆشتن',
+ 'sale_by_invoice' => 'فرۆشتن بە فاکتورە',
+ 'sale_for_customer' => 'کڕیار:',
+ 'sale_time' => 'کات',
+ 'sales_tax' => 'باجی فرۆشتن',
+ 'sales_total' => '',
+ 'select_customer' => 'کڕیار هەڵبژێرە',
+ 'selected_customer' => 'کڕیاری هەڵبژێردراو',
+ 'send_invoice' => 'فاکتورە بنێرە',
+ 'send_quote' => 'دەرخستەی نرخ بنێرە',
+ 'send_receipt' => 'پسوڵە بنێرە',
+ 'send_work_order' => 'داواکاری کار بنێرە',
+ 'serial' => 'زنجیرەیی',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'فاکتورە پیشان بدە',
+ 'show_receipt' => 'فاکتورە پیشان بدە',
+ 'start_typing_customer_name' => 'دەست بکە بە نووسینی وردەکارییەکانی کڕیار...',
+ 'start_typing_item_name' => 'دەست بکە بە نووسینی ناوی ئایتم یان بارکۆد سکان بکە...',
+ 'stock' => 'کۆگا',
+ 'stock_location' => 'ناونیشانی کۆگا',
+ 'sub_total' => 'کۆی سەرەتایی',
+ 'successfully_deleted' => 'بەسەرکەوتوویی سڕیتەوە',
+ 'successfully_restored' => 'بەسەرکەوتوویی گەڕاندتەوە',
+ 'successfully_suspended_sale' => 'فرۆشتن بەسەرکەوتوویی راگیرا.',
+ 'successfully_updated' => 'فرۆشتن بەسەرکەوتوویی تازەکرایەوە.',
+ 'suspend_sale' => 'ڕاگرتن',
+ 'suspended_doc_id' => 'بەڵگەنامە',
+ 'suspended_sale_id' => 'ناسنامە',
+ 'suspended_sales' => 'ڕاگیرا',
+ 'table' => 'مێز',
+ 'takings' => 'فرۆشتنی ڕۆژانە',
+ 'tax' => 'باج',
+ 'tax_id' => 'ناسنامەی باج',
+ 'tax_invoice' => 'فاکتورەی باج',
+ 'tax_percent' => 'باج %',
+ 'taxed_ind' => 'T',
+ 'total' => 'گشتی',
+ 'total_tax_exclusive' => 'باج لەخۆناگرێت',
+ 'transaction_failed' => 'مامەڵەی فرۆشتن شکستی هێنا.',
+ 'unable_to_add_item' => 'زیادکردنی ئایتم بۆ فرۆشتن شکستی هێنا',
+ 'unsuccessfully_deleted' => 'سڕینەوەی فرۆشتن(ەکان) شکستی هێنا.',
+ 'unsuccessfully_restored' => 'گەڕاندنەوەی فرۆشتن(ەکان) شکستی هێنا.',
+ 'unsuccessfully_suspended_sale' => 'ڕاگرتنی فرۆشتن شکستی هێنا.',
+ 'unsuccessfully_updated' => 'نوێکردنەوەی فرۆشتن شکستی هێنا.',
+ 'unsuspend' => 'ڕاگرتن هەڵبوەشێنەوە',
+ 'unsuspend_and_delete' => 'کردار',
+ 'update' => 'نوێکردنەوە',
+ 'upi' => 'UPI (سیستەمی پارەدان بەهۆکاری یەکگرتوو)',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'داواکاری کار',
+ 'work_order_number' => 'ژامرەی داواکاری کار',
+ 'work_order_number_duplicate' => 'ژمارەی داواکاری کار دەبێت تایبەت بێت.',
+ 'work_order_sent' => 'داواکاری کار نێردرا بۆ',
+ 'work_order_unsent' => 'داواکاری کار شکستی هێنا لە ناردنی بۆ',
];
diff --git a/app/Language/cs/Config.php b/app/Language/cs/Config.php
index c4f0a1ea4..623c03797 100644
--- a/app/Language/cs/Config.php
+++ b/app/Language/cs/Config.php
@@ -1,332 +1,335 @@
"Adresa společnosti",
- "address_required" => "",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "",
- "apostrophe" => "",
- "backup_button" => "",
- "backup_database" => "",
- "barcode" => "",
- "barcode_company" => "",
- "barcode_configuration" => "",
- "barcode_content" => "",
- "barcode_first_row" => "",
- "barcode_font" => "",
- "barcode_formats" => "",
- "barcode_generate_if_empty" => "",
- "barcode_height" => "",
- "barcode_id" => "",
- "barcode_info" => "",
- "barcode_layout" => "",
- "barcode_name" => "",
- "barcode_number" => "",
- "barcode_number_in_row" => "",
- "barcode_page_cellspacing" => "",
- "barcode_page_width" => "",
- "barcode_price" => "",
- "barcode_second_row" => "",
- "barcode_third_row" => "",
- "barcode_tooltip" => "",
- "barcode_type" => "",
- "barcode_width" => "",
- "bottom" => "",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "",
- "cash_decimals_tooltip" => "",
- "cash_rounding" => "",
- "category_dropdown" => "",
- "center" => "",
- "change_apperance_tooltip" => "",
- "comma" => "",
- "company" => "",
- "company_avatar" => "",
- "company_change_image" => "",
- "company_logo" => "",
- "company_remove_image" => "",
- "company_required" => "",
- "company_select_image" => "",
- "company_website_url" => "",
- "country_codes" => "",
- "country_codes_tooltip" => "",
- "currency_code" => "",
- "currency_decimals" => "",
- "currency_symbol" => "",
- "current_employee_only" => "",
- "customer_reward" => "",
- "customer_reward_duplicate" => "",
- "customer_reward_enable" => "",
- "customer_reward_invalid_chars" => "",
- "customer_reward_required" => "",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "",
- "datetimeformat" => "",
- "decimal_point" => "",
- "default_barcode_font_size_number" => "",
- "default_barcode_font_size_required" => "",
- "default_barcode_height_number" => "",
- "default_barcode_height_required" => "",
- "default_barcode_num_in_row_number" => "",
- "default_barcode_num_in_row_required" => "",
- "default_barcode_page_cellspacing_number" => "",
- "default_barcode_page_cellspacing_required" => "",
- "default_barcode_page_width_number" => "",
- "default_barcode_page_width_required" => "",
- "default_barcode_width_number" => "",
- "default_barcode_width_required" => "",
- "default_item_columns" => "",
- "default_origin_tax_code" => "",
- "default_receivings_discount" => "",
- "default_receivings_discount_number" => "",
- "default_receivings_discount_required" => "",
- "default_sales_discount" => "",
- "default_sales_discount_number" => "",
- "default_sales_discount_required" => "",
- "default_tax_category" => "",
- "default_tax_code" => "",
- "default_tax_jurisdiction" => "",
- "default_tax_name_number" => "",
- "default_tax_name_required" => "",
- "default_tax_rate" => "",
- "default_tax_rate_1" => "",
- "default_tax_rate_2" => "",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "",
- "default_tax_rate_required" => "",
- "derive_sale_quantity" => "",
- "derive_sale_quantity_tooltip" => "",
- "dinner_table" => "",
- "dinner_table_duplicate" => "",
- "dinner_table_enable" => "",
- "dinner_table_invalid_chars" => "",
- "dinner_table_required" => "",
- "dot" => "",
- "email" => "",
- "email_configuration" => "",
- "email_mailpath" => "",
- "email_protocol" => "",
- "email_receipt_check_behaviour" => "",
- "email_receipt_check_behaviour_always" => "",
- "email_receipt_check_behaviour_last" => "",
- "email_receipt_check_behaviour_never" => "",
- "email_smtp_crypto" => "",
- "email_smtp_host" => "",
- "email_smtp_pass" => "",
- "email_smtp_port" => "",
- "email_smtp_timeout" => "",
- "email_smtp_user" => "",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "",
- "enforce_privacy_tooltip" => "",
- "fax" => "",
- "file_perm" => "There are problems with file permissions please fix and reload this page.",
- "financial_year" => "",
- "financial_year_apr" => "",
- "financial_year_aug" => "",
- "financial_year_dec" => "",
- "financial_year_feb" => "",
- "financial_year_jan" => "",
- "financial_year_jul" => "",
- "financial_year_jun" => "",
- "financial_year_mar" => "",
- "financial_year_may" => "",
- "financial_year_nov" => "",
- "financial_year_oct" => "",
- "financial_year_sep" => "",
- "floating_labels" => "",
- "gcaptcha_enable" => "",
- "gcaptcha_secret_key" => "",
- "gcaptcha_secret_key_required" => "",
- "gcaptcha_site_key" => "",
- "gcaptcha_site_key_required" => "",
- "gcaptcha_tooltip" => "",
- "general" => "",
- "general_configuration" => "",
- "giftcard_number" => "",
- "giftcard_random" => "",
- "giftcard_series" => "",
- "image_allowed_file_types" => "",
- "image_max_height_tooltip" => "",
- "image_max_size_tooltip" => "",
- "image_max_width_tooltip" => "",
- "image_restrictions" => "",
- "include_hsn" => "",
- "info" => "",
- "info_configuration" => "",
- "input_groups" => "",
- "integrations" => "",
- "integrations_configuration" => "",
- "invoice" => "",
- "invoice_configuration" => "",
- "invoice_default_comments" => "",
- "invoice_email_message" => "",
- "invoice_enable" => "",
- "invoice_printer" => "",
- "invoice_type" => "",
- "is_readable" => "",
- "is_writable" => "is writable, but the permissions are higher than 750.",
- "item_markup" => "",
- "jsprintsetup_required" => "",
- "language" => "",
- "last_used_invoice_number" => "",
- "last_used_quote_number" => "",
- "last_used_work_order_number" => "",
- "left" => "",
- "license" => "",
- "license_configuration" => "",
- "line_sequence" => "",
- "lines_per_page" => "",
- "lines_per_page_number" => "",
- "lines_per_page_required" => "",
- "locale" => "",
- "locale_configuration" => "",
- "locale_info" => "",
- "location" => "",
- "location_configuration" => "",
- "location_info" => "",
- "login_form" => "",
- "logout" => "",
- "mailchimp" => "",
- "mailchimp_api_key" => "",
- "mailchimp_configuration" => "",
- "mailchimp_key_successfully" => "",
- "mailchimp_key_unsuccessfully" => "",
- "mailchimp_lists" => "",
- "mailchimp_tooltip" => "",
- "message" => "",
- "message_configuration" => "",
- "msg_msg" => "",
- "msg_msg_placeholder" => "",
- "msg_pwd" => "",
- "msg_pwd_required" => "",
- "msg_src" => "",
- "msg_src_required" => "",
- "msg_uid" => "",
- "msg_uid_required" => "",
- "multi_pack_enabled" => "",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "",
- "notify_alignment" => "",
- "number_format" => "",
- "number_locale" => "",
- "number_locale_invalid" => "",
- "number_locale_required" => "",
- "number_locale_tooltip" => "",
- "os_timezone" => "",
- "ospos_info" => "",
- "payment_options_order" => "",
- "perm_risk" => "Permissions higher than 750 leaves this software at risk.",
- "phone" => "",
- "phone_required" => "",
- "print_bottom_margin" => "",
- "print_bottom_margin_number" => "",
- "print_bottom_margin_required" => "",
- "print_delay_autoreturn" => "",
- "print_delay_autoreturn_number" => "",
- "print_delay_autoreturn_required" => "",
- "print_footer" => "",
- "print_header" => "",
- "print_left_margin" => "",
- "print_left_margin_number" => "",
- "print_left_margin_required" => "",
- "print_receipt_check_behaviour" => "",
- "print_receipt_check_behaviour_always" => "",
- "print_receipt_check_behaviour_last" => "",
- "print_receipt_check_behaviour_never" => "",
- "print_right_margin" => "",
- "print_right_margin_number" => "",
- "print_right_margin_required" => "",
- "print_silently" => "",
- "print_top_margin" => "",
- "print_top_margin_number" => "",
- "print_top_margin_required" => "",
- "quantity_decimals" => "",
- "quick_cash_enable" => "",
- "quote_default_comments" => "",
- "receipt" => "",
- "receipt_category" => "",
- "receipt_configuration" => "",
- "receipt_default" => "",
- "receipt_font_size" => "",
- "receipt_font_size_number" => "",
- "receipt_font_size_required" => "",
- "receipt_info" => "",
- "receipt_printer" => "",
- "receipt_short" => "",
- "receipt_show_company_name" => "",
- "receipt_show_description" => "",
- "receipt_show_serialnumber" => "",
- "receipt_show_tax_ind" => "",
- "receipt_show_taxes" => "",
- "receipt_show_total_discount" => "",
- "receipt_template" => "",
- "receiving_calculate_average_price" => "",
- "recv_invoice_format" => "",
- "register_mode_default" => "",
- "report_an_issue" => "",
- "return_policy_required" => "",
- "reward" => "",
- "reward_configuration" => "",
- "right" => "",
- "sales_invoice_format" => "",
- "sales_quote_format" => "",
- "mailpath_invalid" => "",
- "saved_successfully" => "",
- "saved_unsuccessfully" => "",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "Please use the below info for issue reporting.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "",
- "statistics" => "",
- "statistics_tooltip" => "",
- "stock_location" => "",
- "stock_location_duplicate" => "",
- "stock_location_invalid_chars" => "",
- "stock_location_required" => "",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "",
- "suggestions_second_column" => "",
- "suggestions_third_column" => "",
- "system_conf" => "Setup & Conf",
- "system_info" => "System Info",
- "table" => "",
- "table_configuration" => "",
- "takings_printer" => "",
- "tax" => "",
- "tax_category" => "",
- "tax_category_duplicate" => "",
- "tax_category_invalid_chars" => "",
- "tax_category_required" => "",
- "tax_category_used" => "",
- "tax_configuration" => "",
- "tax_decimals" => "",
- "tax_id" => "",
- "tax_included" => "",
- "theme" => "",
- "theme_preview" => "",
- "thousands_separator" => "",
- "timezone" => "",
- "timezone_error" => "",
- "top" => "",
- "use_destination_based_tax" => "",
- "user_timezone" => "",
- "website" => "",
- "wholesale_markup" => "",
- "work_order_enable" => "",
- "work_order_format" => "",
+ 'address' => 'Adresa společnosti',
+ 'address_required' => '',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => '',
+ 'apostrophe' => '',
+ 'backup_button' => '',
+ 'backup_database' => '',
+ 'barcode' => '',
+ 'barcode_company' => '',
+ 'barcode_configuration' => '',
+ 'barcode_content' => '',
+ 'barcode_first_row' => '',
+ 'barcode_font' => '',
+ 'barcode_formats' => '',
+ 'barcode_generate_if_empty' => '',
+ 'barcode_height' => '',
+ 'barcode_id' => '',
+ 'barcode_info' => '',
+ 'barcode_layout' => '',
+ 'barcode_name' => '',
+ 'barcode_number' => '',
+ 'barcode_number_in_row' => '',
+ 'barcode_page_cellspacing' => '',
+ 'barcode_page_width' => '',
+ 'barcode_price' => '',
+ 'barcode_second_row' => '',
+ 'barcode_third_row' => '',
+ 'barcode_tooltip' => '',
+ 'barcode_type' => '',
+ 'barcode_width' => '',
+ 'bottom' => '',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => '',
+ 'cash_decimals_tooltip' => '',
+ 'cash_rounding' => '',
+ 'category_dropdown' => '',
+ 'center' => '',
+ 'change_apperance_tooltip' => '',
+ 'comma' => '',
+ 'company' => '',
+ 'company_avatar' => '',
+ 'company_change_image' => '',
+ 'company_logo' => '',
+ 'company_remove_image' => '',
+ 'company_required' => '',
+ 'company_select_image' => '',
+ 'company_website_url' => '',
+ 'country_codes' => '',
+ 'country_codes_tooltip' => '',
+ 'currency_code' => '',
+ 'currency_decimals' => '',
+ 'currency_symbol' => '',
+ 'current_employee_only' => '',
+ 'customer_reward' => '',
+ 'customer_reward_duplicate' => '',
+ 'customer_reward_enable' => '',
+ 'customer_reward_invalid_chars' => '',
+ 'customer_reward_required' => '',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => '',
+ 'datetimeformat' => '',
+ 'decimal_point' => '',
+ 'default_barcode_font_size_number' => '',
+ 'default_barcode_font_size_required' => '',
+ 'default_barcode_height_number' => '',
+ 'default_barcode_height_required' => '',
+ 'default_barcode_num_in_row_number' => '',
+ 'default_barcode_num_in_row_required' => '',
+ 'default_barcode_page_cellspacing_number' => '',
+ 'default_barcode_page_cellspacing_required' => '',
+ 'default_barcode_page_width_number' => '',
+ 'default_barcode_page_width_required' => '',
+ 'default_barcode_width_number' => '',
+ 'default_barcode_width_required' => '',
+ 'default_item_columns' => '',
+ 'default_origin_tax_code' => '',
+ 'default_receivings_discount' => '',
+ 'default_receivings_discount_number' => '',
+ 'default_receivings_discount_required' => '',
+ 'default_sales_discount' => '',
+ 'default_sales_discount_number' => '',
+ 'default_sales_discount_required' => '',
+ 'default_tax_category' => '',
+ 'default_tax_code' => '',
+ 'default_tax_jurisdiction' => '',
+ 'default_tax_name_number' => '',
+ 'default_tax_name_required' => '',
+ 'default_tax_rate' => '',
+ 'default_tax_rate_1' => '',
+ 'default_tax_rate_2' => '',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => '',
+ 'default_tax_rate_required' => '',
+ 'derive_sale_quantity' => '',
+ 'derive_sale_quantity_tooltip' => '',
+ 'dinner_table' => '',
+ 'dinner_table_duplicate' => '',
+ 'dinner_table_enable' => '',
+ 'dinner_table_invalid_chars' => '',
+ 'dinner_table_required' => '',
+ 'dot' => '',
+ 'email' => '',
+ 'email_configuration' => '',
+ 'email_mailpath' => '',
+ 'email_protocol' => '',
+ 'email_receipt_check_behaviour' => '',
+ 'email_receipt_check_behaviour_always' => '',
+ 'email_receipt_check_behaviour_last' => '',
+ 'email_receipt_check_behaviour_never' => '',
+ 'email_smtp_crypto' => '',
+ 'email_smtp_host' => '',
+ 'email_smtp_pass' => '',
+ 'email_smtp_port' => '',
+ 'email_smtp_timeout' => '',
+ 'email_smtp_user' => '',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => '',
+ 'enforce_privacy_tooltip' => '',
+ 'fax' => '',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => '',
+ 'financial_year_apr' => '',
+ 'financial_year_aug' => '',
+ 'financial_year_dec' => '',
+ 'financial_year_feb' => '',
+ 'financial_year_jan' => '',
+ 'financial_year_jul' => '',
+ 'financial_year_jun' => '',
+ 'financial_year_mar' => '',
+ 'financial_year_may' => '',
+ 'financial_year_nov' => '',
+ 'financial_year_oct' => '',
+ 'financial_year_sep' => '',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => '',
+ 'gcaptcha_secret_key' => '',
+ 'gcaptcha_secret_key_required' => '',
+ 'gcaptcha_site_key' => '',
+ 'gcaptcha_site_key_required' => '',
+ 'gcaptcha_tooltip' => '',
+ 'general' => '',
+ 'general_configuration' => '',
+ 'giftcard_number' => '',
+ 'giftcard_random' => '',
+ 'giftcard_series' => '',
+ 'image_allowed_file_types' => '',
+ 'image_max_height_tooltip' => '',
+ 'image_max_size_tooltip' => '',
+ 'image_max_width_tooltip' => '',
+ 'image_restrictions' => '',
+ 'include_hsn' => '',
+ 'info' => '',
+ 'info_configuration' => '',
+ 'input_groups' => '',
+ 'integrations' => '',
+ 'integrations_configuration' => '',
+ 'invoice' => '',
+ 'invoice_configuration' => '',
+ 'invoice_default_comments' => '',
+ 'invoice_email_message' => '',
+ 'invoice_enable' => '',
+ 'invoice_printer' => '',
+ 'invoice_type' => '',
+ 'is_readable' => '',
+ 'is_writable' => 'is writable, but the permissions are higher than 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => '',
+ 'language' => '',
+ 'last_used_invoice_number' => '',
+ 'last_used_quote_number' => '',
+ 'last_used_work_order_number' => '',
+ 'left' => '',
+ 'license' => '',
+ 'license_configuration' => '',
+ 'line_sequence' => '',
+ 'lines_per_page' => '',
+ 'lines_per_page_number' => '',
+ 'lines_per_page_required' => '',
+ 'locale' => '',
+ 'locale_configuration' => '',
+ 'locale_info' => '',
+ 'location' => '',
+ 'location_configuration' => '',
+ 'location_info' => '',
+ 'login_form' => '',
+ 'logout' => '',
+ 'mailchimp' => '',
+ 'mailchimp_api_key' => '',
+ 'mailchimp_configuration' => '',
+ 'mailchimp_key_successfully' => '',
+ 'mailchimp_key_unsuccessfully' => '',
+ 'mailchimp_lists' => '',
+ 'mailchimp_tooltip' => '',
+ 'message' => '',
+ 'message_configuration' => '',
+ 'msg_msg' => '',
+ 'msg_msg_placeholder' => '',
+ 'msg_pwd' => '',
+ 'msg_pwd_required' => '',
+ 'msg_src' => '',
+ 'msg_src_required' => '',
+ 'msg_uid' => '',
+ 'msg_uid_required' => '',
+ 'multi_pack_enabled' => '',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => '',
+ 'notify_alignment' => '',
+ 'number_format' => '',
+ 'number_locale' => '',
+ 'number_locale_invalid' => '',
+ 'number_locale_required' => '',
+ 'number_locale_tooltip' => '',
+ 'os_timezone' => '',
+ 'ospos_info' => '',
+ 'payment_options_order' => '',
+ 'payment_reference_code_length_limits' => 'Referenční kód platby
Omezení délky',
+ 'payment_reference_code_length_max_label' => 'Max',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => 'Permissions higher than 750 leaves this software at risk.',
+ 'phone' => '',
+ 'phone_required' => '',
+ 'print_bottom_margin' => '',
+ 'print_bottom_margin_number' => '',
+ 'print_bottom_margin_required' => '',
+ 'print_delay_autoreturn' => '',
+ 'print_delay_autoreturn_number' => '',
+ 'print_delay_autoreturn_required' => '',
+ 'print_footer' => '',
+ 'print_header' => '',
+ 'print_left_margin' => '',
+ 'print_left_margin_number' => '',
+ 'print_left_margin_required' => '',
+ 'print_receipt_check_behaviour' => '',
+ 'print_receipt_check_behaviour_always' => '',
+ 'print_receipt_check_behaviour_last' => '',
+ 'print_receipt_check_behaviour_never' => '',
+ 'print_right_margin' => '',
+ 'print_right_margin_number' => '',
+ 'print_right_margin_required' => '',
+ 'print_silently' => '',
+ 'print_top_margin' => '',
+ 'print_top_margin_number' => '',
+ 'print_top_margin_required' => '',
+ 'quantity_decimals' => '',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => '',
+ 'receipt' => '',
+ 'receipt_category' => '',
+ 'receipt_configuration' => '',
+ 'receipt_default' => '',
+ 'receipt_font_size' => '',
+ 'receipt_font_size_number' => '',
+ 'receipt_font_size_required' => '',
+ 'receipt_info' => '',
+ 'receipt_printer' => '',
+ 'receipt_short' => '',
+ 'receipt_show_company_name' => '',
+ 'receipt_show_description' => '',
+ 'receipt_show_serialnumber' => '',
+ 'receipt_show_tax_ind' => '',
+ 'receipt_show_taxes' => '',
+ 'receipt_show_total_discount' => '',
+ 'receipt_template' => '',
+ 'receiving_calculate_average_price' => '',
+ 'recv_invoice_format' => '',
+ 'register_mode_default' => '',
+ 'report_an_issue' => '',
+ 'return_policy_required' => '',
+ 'reward' => '',
+ 'reward_configuration' => '',
+ 'right' => '',
+ 'sales_invoice_format' => '',
+ 'sales_quote_format' => '',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => '',
+ 'saved_unsuccessfully' => '',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Please use the below info for issue reporting.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => '',
+ 'statistics' => '',
+ 'statistics_tooltip' => '',
+ 'stock_location' => '',
+ 'stock_location_duplicate' => '',
+ 'stock_location_invalid_chars' => '',
+ 'stock_location_required' => '',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => '',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => '',
+ 'suggestions_second_column' => '',
+ 'suggestions_third_column' => '',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => '',
+ 'table_configuration' => '',
+ 'takings_printer' => '',
+ 'tax' => '',
+ 'tax_category' => '',
+ 'tax_category_duplicate' => '',
+ 'tax_category_invalid_chars' => '',
+ 'tax_category_required' => '',
+ 'tax_category_used' => '',
+ 'tax_configuration' => '',
+ 'tax_decimals' => '',
+ 'tax_id' => '',
+ 'tax_included' => '',
+ 'theme' => '',
+ 'theme_preview' => '',
+ 'thousands_separator' => '',
+ 'timezone' => '',
+ 'timezone_error' => '',
+ 'top' => '',
+ 'use_destination_based_tax' => '',
+ 'user_timezone' => '',
+ 'website' => '',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => '',
+ 'work_order_format' => '',
];
diff --git a/app/Language/cs/Login.php b/app/Language/cs/Login.php
index 308401be6..bfc6ec15c 100644
--- a/app/Language/cs/Login.php
+++ b/app/Language/cs/Login.php
@@ -1,25 +1,30 @@
"Nejsem robot.",
- "go" => "Přihlásit",
- "invalid_gcaptcha" => "Špatné zadání.",
- "invalid_installation" => "Instalace není v pořádku, zkontrolujte soubor php.ini.",
- "invalid_username_and_password" => "Neplatné jméno nebo heslo.",
- "login" => "Login",
- "logout" => "",
- "migration_needed" => "",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "Heslo",
- "required_username" => "",
- "username" => "Uživatelské jméno",
- "welcome" => "",
+ "gcaptcha" => "Nejsem robot.",
+ "go" => "Přihlásit",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Špatné zadání.",
+ "invalid_installation" => "Instalace není v pořádku, zkontrolujte soubor php.ini.",
+ "invalid_username_and_password" => "Neplatné jméno nebo heslo.",
+ "login" => "Login",
+ "logout" => "",
+ "migrating_database" => "Migrace databáze",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "Databáze byla úspěšně migrována!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "Heslo",
+ "required_username" => "",
+ "username" => "Uživatelské jméno",
+ "welcome" => ""
];
diff --git a/app/Language/cs/Sales.php b/app/Language/cs/Sales.php
index 999ee8474..713d07bbd 100644
--- a/app/Language/cs/Sales.php
+++ b/app/Language/cs/Sales.php
@@ -1,231 +1,235 @@
"Dostupné body",
- "rewards_package" => "",
- "rewards_remaining_balance" => "",
- "account_number" => "",
- "add_payment" => "Přidat platbu",
- "amount_due" => "K úhradě",
- "amount_tendered" => "Uhrazeno",
- "authorized_signature" => "",
- "cancel_sale" => "Zrušit",
- "cash" => "Hotovost",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "",
- "cash_deposit" => "",
- "cash_filter" => "Hotově",
- "change_due" => "Zbývá",
- "change_price" => "",
- "check" => "Bankovním převodem",
- "check_balance" => "",
- "check_filter" => "",
- "close" => "",
- "comment" => "Komentář",
- "comments" => "Komentář",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Dokončit",
- "confirm_cancel_sale" => "Opravdu chcete zrušit účtenku? Všechny položky budou smazány.",
- "confirm_delete" => "Opravdu chcete smazat vybranou účtenku?",
- "confirm_restore" => "Opravdu chcete obnovit vybranou účtenku?",
- "credit" => "Kreditní karta",
- "credit_deposit" => "",
- "credit_filter" => "",
- "current_table" => "",
- "customer" => "Jméno",
- "customer_address" => "Adresa",
- "customer_discount" => "Sleva",
- "customer_email" => "Email",
- "customer_location" => "Místo",
- "customer_mailchimp_status" => "Stav mailchimp",
- "customer_optional" => "(Volitelné)",
- "customer_required" => "(Vyžadováno)",
- "customer_total" => "Celkem",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Datum prodeje",
- "date_range" => "Rozsah data",
- "date_required" => "Musí být vloženo správné datum.",
- "date_type" => "Datum je nutno zadat.",
- "debit" => "Debetní karta",
- "debit_filter" => "",
- "delete" => "Povolit mazání",
- "delete_confirmation" => "Opravdu chcete smazat tuto účtenku? Tato operace není vratná.",
- "delete_entire_sale" => "Zrušit celou účtenku",
- "delete_successful" => "Účtenka byla smazána.",
- "delete_unsuccessful" => "Účtenka nebyla smazána.",
- "description_abbrv" => "Položka.",
- "discard" => "Zrušit",
- "discard_quote" => "",
- "discount" => "Sleva %",
- "discount_included" => "% Sleva",
- "discount_short" => "%",
- "due" => "",
- "due_filter" => "Neuhrazeno",
- "edit" => "Upravit",
- "edit_item" => "Upravit položku",
- "edit_sale" => "Upravit účtenku",
- "email_receipt" => "Odeslat účtenku",
- "employee" => "Prodávající",
- "entry" => "Záznam",
- "error_editing_item" => "Chyba při úpravě položky",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Najít nebo skenovat položku",
- "find_or_scan_item_or_receipt" => "Najít nebo skenovat položku či účtenku",
- "giftcard" => "Dárkový poukaz",
- "giftcard_balance" => "",
- "giftcard_filter" => "",
- "giftcard_number" => "Číslo dárkového poukazu",
- "group_by_category" => "Seskupit podle kategorií",
- "group_by_type" => "Seskupit podle typu",
- "hsn" => "",
- "id" => "Číslo dokladu",
- "include_prices" => "",
- "invoice" => "Faktura",
- "invoice_confirm" => "Tato faktura bude odeslána",
- "invoice_enable" => "Vytvořit fakturu",
- "invoice_filter" => "Faktury",
- "invoice_no_email" => "Zákazníl nemá platný e-mail.",
- "invoice_number" => "Faktura č",
- "invoice_number_duplicate" => "Číslo faktury musí být jedinečné.",
- "invoice_sent" => "Faktura odeslána",
- "invoice_total" => "",
- "invoice_type_custom_invoice" => "",
- "invoice_type_custom_tax_invoice" => "",
- "invoice_type_invoice" => "",
- "invoice_type_tax_invoice" => "",
- "invoice_unsent" => "Fakturu se nepodařilo odeslat",
- "invoice_update" => "Přepočítat",
- "item_insufficient_of_stock" => "Není dostatek kusů na skladě.",
- "item_name" => "Název položky",
- "item_number" => "Číslo položky",
- "item_out_of_stock" => "Položka není skladem.",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "Typ dokladu",
- "must_enter_numeric" => "",
- "must_enter_numeric_giftcard" => "Číslo dárkového poukazu musí být číslo.",
- "new_customer" => "Nový zákazník",
- "new_item" => "Nová položka",
- "no_description" => "Žádný",
- "no_filter" => "Vše",
- "no_items_in_cart" => "Nejsou zde žádné položky.",
- "no_sales_to_display" => "Žádné účtenky k zobrazení.",
- "none_selected" => "Nebylo nic vybráno ke smazání.",
- "nontaxed_ind" => "",
- "not_authorized" => "Tato akce nebyla povolena.",
- "one_or_multiple" => "",
- "payment" => "Způsob platby",
- "payment_amount" => "Částka",
- "payment_not_cover_total" => "Zaplacená částka musí být stejná nebo větší než celková částka.",
- "payment_type" => "Typ",
- "payments" => "",
- "payments_total" => "Uhrazeno",
- "price" => "Cena",
- "print_after_sale" => "Vytisknout automaticky",
- "quantity" => "ks",
- "quantity_less_than_reorder_level" => "Upozornění: Množství zboží je pod nastavenou úrovní pro doobjednání.",
- "quantity_less_than_zero" => "Pozor: Není dostatek zboží. Můžete pokračovat v prodeji, ale zkontrolujte si stav skladu.",
- "quantity_of_items" => "Množství položek {0}",
- "quote" => "Nabídka",
- "quote_number" => "Číslo nabídky",
- "quote_number_duplicate" => "Číslo nabídky musí být jedinečné.",
- "quote_sent" => "Nabidku odeslat",
- "quote_unsent" => "Nabídku odeslat",
- "receipt" => "Účtenka",
- "receipt_no_email" => "Zákazníl nemá platný e-mail.",
- "receipt_number" => "Číslo dokladu",
- "receipt_sent" => "Účtenku odeslat",
- "receipt_unsent" => "Účtenku nelze odeslat",
- "refund" => "",
- "register" => "Pokladna",
- "remove_customer" => "Odebrat zákazníka",
- "remove_discount" => "",
- "return" => "Vratka",
- "rewards" => "",
- "rewards_balance" => "",
- "sale" => "",
- "sale_by_invoice" => "",
- "sale_for_customer" => "Zákazník:",
- "sale_time" => "Čas",
- "sales_tax" => "DPH",
- "sales_total" => "",
- "select_customer" => "Vyberte zákazníka",
- "send_invoice" => "Odeslat fakturu",
- "send_quote" => "Odeslat nabídku",
- "send_receipt" => "Odeslat účtenku",
- "send_work_order" => "",
- "serial" => "Sériové číslo",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Zobrazit fakturu",
- "show_receipt" => "Zobrazit účtenku",
- "start_typing_customer_name" => "Vložte podrobnosti o zákazníkovi...",
- "start_typing_item_name" => "Napište název položky nebo naskenujte čárový kód..",
- "stock" => "Sklad",
- "stock_location" => "Umístění skladu",
- "sub_total" => "Bez DPH",
- "successfully_deleted" => "Bylo uspěšně smazáno",
- "successfully_restored" => "Bylo úspěšně obnoveno",
- "successfully_suspended_sale" => "Prodej byl úspěšně zaparkován.",
- "successfully_updated" => "Účtenka byla upravena.",
- "suspend_sale" => "Zaparkovat",
- "suspended_doc_id" => "Dokument",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Zaparkovat",
- "table" => "Stůl",
- "takings" => "Transakce",
- "tax" => "DPH",
- "tax_id" => "",
- "tax_invoice" => "",
- "tax_percent" => "DPH %",
- "taxed_ind" => "",
- "total" => "Celkem",
- "total_tax_exclusive" => "Bez DPH",
- "transaction_failed" => "",
- "unable_to_add_item" => "Přidání položky se nepovedlo",
- "unsuccessfully_deleted" => "Účtenka nebyla smazána.",
- "unsuccessfully_restored" => "Účtenka nebyla obnovena.",
- "unsuccessfully_suspended_sale" => "Prodej se nepovedlo zaparkovat.",
- "unsuccessfully_updated" => "Účtenka nebyla upravena.",
- "unsuspend" => "Odparkovat",
- "unsuspend_and_delete" => "Akce",
- "update" => "Obnovit",
- "upi" => "",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "",
- "work_order_number" => "",
- "work_order_number_duplicate" => "",
- "work_order_sent" => "",
- "work_order_unsent" => "",
+ 'account_number' => '',
+ 'add_payment' => 'Přidat platbu',
+ 'amount_due' => 'K úhradě',
+ 'amount_tendered' => 'Uhrazeno',
+ 'authorized_signature' => '',
+ 'cancel_sale' => 'Zrušit',
+ 'cash' => 'Hotovost',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => '',
+ 'cash_deposit' => '',
+ 'cash_filter' => 'Hotově',
+ 'change_due' => 'Zbývá',
+ 'change_price' => '',
+ 'check' => 'Bankovním převodem',
+ 'check_balance' => '',
+ 'check_filter' => '',
+ 'close' => '',
+ 'comment' => 'Komentář',
+ 'comments' => 'Komentář',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Dokončit',
+ 'confirm_cancel_sale' => 'Opravdu chcete zrušit účtenku? Všechny položky budou smazány.',
+ 'confirm_delete' => 'Opravdu chcete smazat vybranou účtenku?',
+ 'confirm_restore' => 'Opravdu chcete obnovit vybranou účtenku?',
+ 'credit' => 'Kreditní karta',
+ 'credit_deposit' => '',
+ 'credit_filter' => '',
+ 'current_table' => '',
+ 'customer' => 'Jméno',
+ 'customer_address' => 'Adresa',
+ 'customer_discount' => 'Sleva',
+ 'customer_email' => 'Email',
+ 'customer_location' => 'Místo',
+ 'customer_mailchimp_status' => 'Stav mailchimp',
+ 'customer_optional' => '(Volitelné)',
+ 'customer_required' => '(Vyžadováno)',
+ 'customer_total' => 'Celkem',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Dostupné body',
+ 'daily_sales' => '',
+ 'date' => 'Datum prodeje',
+ 'date_range' => 'Rozsah data',
+ 'date_required' => 'Musí být vloženo správné datum.',
+ 'date_type' => 'Datum je nutno zadat.',
+ 'debit' => 'Debetní karta',
+ 'debit_filter' => '',
+ 'delete' => 'Povolit mazání',
+ 'delete_confirmation' => 'Opravdu chcete smazat tuto účtenku? Tato operace není vratná.',
+ 'delete_entire_sale' => 'Zrušit celou účtenku',
+ 'delete_successful' => 'Účtenka byla smazána.',
+ 'delete_unsuccessful' => 'Účtenka nebyla smazána.',
+ 'description_abbrv' => 'Položka.',
+ 'discard' => 'Zrušit',
+ 'discard_quote' => '',
+ 'discount' => 'Sleva %',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Sleva',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => '',
+ 'due_filter' => 'Neuhrazeno',
+ 'edit' => 'Upravit',
+ 'edit_item' => 'Upravit položku',
+ 'edit_sale' => 'Upravit účtenku',
+ 'email_receipt' => 'Odeslat účtenku',
+ 'employee' => 'Prodávající',
+ 'entry' => 'Záznam',
+ 'error_editing_item' => 'Chyba při úpravě položky',
+ 'find_or_scan_item' => 'Najít nebo skenovat položku',
+ 'find_or_scan_item_or_receipt' => 'Najít nebo skenovat položku či účtenku',
+ 'giftcard' => 'Dárkový poukaz',
+ 'giftcard_balance' => '',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Číslo dárkového poukazu',
+ 'group_by_category' => 'Seskupit podle kategorií',
+ 'group_by_type' => 'Seskupit podle typu',
+ 'hsn' => '',
+ 'id' => 'Číslo dokladu',
+ 'include_prices' => '',
+ 'invoice' => 'Faktura',
+ 'invoice_confirm' => 'Tato faktura bude odeslána',
+ 'invoice_enable' => 'Vytvořit fakturu',
+ 'invoice_filter' => 'Faktury',
+ 'invoice_no_email' => 'Zákazníl nemá platný e-mail.',
+ 'invoice_number' => 'Faktura č',
+ 'invoice_number_duplicate' => 'Číslo faktury musí být jedinečné.',
+ 'invoice_sent' => 'Faktura odeslána',
+ 'invoice_total' => '',
+ 'invoice_type_custom_invoice' => '',
+ 'invoice_type_custom_tax_invoice' => '',
+ 'invoice_type_invoice' => '',
+ 'invoice_type_tax_invoice' => '',
+ 'invoice_unsent' => 'Fakturu se nepodařilo odeslat',
+ 'invoice_update' => 'Přepočítat',
+ 'item_insufficient_of_stock' => 'Není dostatek kusů na skladě.',
+ 'item_name' => 'Název položky',
+ 'item_number' => 'Číslo položky',
+ 'item_out_of_stock' => 'Položka není skladem.',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'Typ dokladu',
+ 'must_enter_numeric' => '',
+ 'must_enter_numeric_giftcard' => 'Číslo dárkového poukazu musí být číslo.',
+ 'must_enter_reference_code' => 'Je nutné zadat referenční/vyhledávací číslo.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Nový zákazník',
+ 'new_item' => 'Nová položka',
+ 'no_description' => 'Žádný',
+ 'no_filter' => 'Vše',
+ 'no_items_in_cart' => 'Nejsou zde žádné položky.',
+ 'no_sales_to_display' => 'Žádné účtenky k zobrazení.',
+ 'none_selected' => 'Nebylo nic vybráno ke smazání.',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => 'Tato akce nebyla povolena.',
+ 'one_or_multiple' => '',
+ 'payment' => 'Způsob platby',
+ 'payment_amount' => 'Částka',
+ 'payment_not_cover_total' => 'Zaplacená částka musí být stejná nebo větší než celková částka.',
+ 'payment_type' => 'Typ',
+ 'payments' => '',
+ 'payments_total' => 'Uhrazeno',
+ 'price' => 'Cena',
+ 'print_after_sale' => 'Vytisknout automaticky',
+ 'quantity' => 'ks',
+ 'quantity_less_than_reorder_level' => 'Upozornění: Množství zboží je pod nastavenou úrovní pro doobjednání.',
+ 'quantity_less_than_zero' => 'Pozor: Není dostatek zboží. Můžete pokračovat v prodeji, ale zkontrolujte si stav skladu.',
+ 'quantity_of_items' => 'Množství položek {0}',
+ 'quote' => 'Nabídka',
+ 'quote_number' => 'Číslo nabídky',
+ 'quote_number_duplicate' => 'Číslo nabídky musí být jedinečné.',
+ 'quote_sent' => 'Nabidku odeslat',
+ 'quote_unsent' => 'Nabídku odeslat',
+ 'receipt' => 'Účtenka',
+ 'receipt_no_email' => 'Zákazníl nemá platný e-mail.',
+ 'receipt_number' => 'Číslo dokladu',
+ 'receipt_sent' => 'Účtenku odeslat',
+ 'receipt_unsent' => 'Účtenku nelze odeslat',
+ 'reference_code' => 'Referenční kód platby',
+ 'reference_code_invalid_characters' => 'Referenční kód smí obsahovat pouze písmena a číslice.',
+ 'reference_code_length_error' => 'Délka referenčního kódu je neplatná.',
+ 'refund' => '',
+ 'register' => 'Pokladna',
+ 'remove_customer' => 'Odebrat zákazníka',
+ 'remove_discount' => '',
+ 'return' => 'Vratka',
+ 'rewards' => '',
+ 'rewards_balance' => '',
+ 'rewards_package' => '',
+ 'rewards_remaining_balance' => '',
+ 'sale' => '',
+ 'sale_by_invoice' => '',
+ 'sale_for_customer' => 'Zákazník:',
+ 'sale_time' => 'Čas',
+ 'sales_tax' => 'DPH',
+ 'sales_total' => '',
+ 'select_customer' => 'Vyberte zákazníka',
+ 'send_invoice' => 'Odeslat fakturu',
+ 'send_quote' => 'Odeslat nabídku',
+ 'send_receipt' => 'Odeslat účtenku',
+ 'send_work_order' => '',
+ 'serial' => 'Sériové číslo',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Zobrazit fakturu',
+ 'show_receipt' => 'Zobrazit účtenku',
+ 'start_typing_customer_name' => 'Vložte podrobnosti o zákazníkovi...',
+ 'start_typing_item_name' => 'Napište název položky nebo naskenujte čárový kód..',
+ 'stock' => 'Sklad',
+ 'stock_location' => 'Umístění skladu',
+ 'sub_total' => 'Bez DPH',
+ 'successfully_deleted' => 'Bylo uspěšně smazáno',
+ 'successfully_restored' => 'Bylo úspěšně obnoveno',
+ 'successfully_suspended_sale' => 'Prodej byl úspěšně zaparkován.',
+ 'successfully_updated' => 'Účtenka byla upravena.',
+ 'suspend_sale' => 'Zaparkovat',
+ 'suspended_doc_id' => 'Dokument',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Zaparkovat',
+ 'table' => 'Stůl',
+ 'takings' => 'Transakce',
+ 'tax' => 'DPH',
+ 'tax_id' => '',
+ 'tax_invoice' => '',
+ 'tax_percent' => 'DPH %',
+ 'taxed_ind' => '',
+ 'total' => 'Celkem',
+ 'total_tax_exclusive' => 'Bez DPH',
+ 'transaction_failed' => '',
+ 'unable_to_add_item' => 'Přidání položky se nepovedlo',
+ 'unsuccessfully_deleted' => 'Účtenka nebyla smazána.',
+ 'unsuccessfully_restored' => 'Účtenka nebyla obnovena.',
+ 'unsuccessfully_suspended_sale' => 'Prodej se nepovedlo zaparkovat.',
+ 'unsuccessfully_updated' => 'Účtenka nebyla upravena.',
+ 'unsuspend' => 'Odparkovat',
+ 'unsuspend_and_delete' => 'Akce',
+ 'update' => 'Obnovit',
+ 'upi' => '',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => '',
+ 'work_order_number' => '',
+ 'work_order_number_duplicate' => '',
+ 'work_order_sent' => '',
+ 'work_order_unsent' => '',
];
diff --git a/app/Language/da/Config.php b/app/Language/da/Config.php
index 68af43e14..7190f300e 100644
--- a/app/Language/da/Config.php
+++ b/app/Language/da/Config.php
@@ -1,332 +1,335 @@
"Firma adresse",
- "address_required" => "Firma adresse er et obligatorisk felt.",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "Tillad duplikatstregkoder",
- "apostrophe" => "apostrof",
- "backup_button" => "Backup",
- "backup_database" => "Backup Database",
- "barcode" => "Stregkode",
- "barcode_company" => "Firmanavn",
- "barcode_configuration" => "Stregkode konfiguration",
- "barcode_content" => "Stregkode indhold",
- "barcode_first_row" => "Række 1",
- "barcode_font" => "Skrifttype",
- "barcode_formats" => "Inputformater",
- "barcode_generate_if_empty" => "Generer hvis tom.",
- "barcode_height" => "Højde (px)",
- "barcode_id" => "Genstands Id/navn",
- "barcode_info" => "Information om stregkode konfiguration",
- "barcode_layout" => "Stregkode layout",
- "barcode_name" => "Navn",
- "barcode_number" => "Stregkode",
- "barcode_number_in_row" => "Nummer i rækken",
- "barcode_page_cellspacing" => "Vis sidens celleafstand.",
- "barcode_page_width" => "Vis sidens bredde",
- "barcode_price" => "Pris",
- "barcode_second_row" => "Række 2",
- "barcode_third_row" => "Række 3",
- "barcode_tooltip" => "Advarsel: Denne funktion kan forårsage, at duplikerede genstande vil blive importeret eller oprettet. Anvend ikke hvis du ikke vil have duplikerede stregkoder.",
- "barcode_type" => "Stregkode type",
- "barcode_width" => "Bredde (px)",
- "bottom" => "Bund",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Kontante decimaler",
- "cash_decimals_tooltip" => "Hvis kontante decimaler og valuta decimaler er de samme, kan kontanterne ikke rundes op.",
- "cash_rounding" => "Kontant afrunding",
- "category_dropdown" => "",
- "center" => "Centrum",
- "change_apperance_tooltip" => "",
- "comma" => "Komma",
- "company" => "Firma navn",
- "company_avatar" => "",
- "company_change_image" => "Skift billede",
- "company_logo" => "Firma logo",
- "company_remove_image" => "Fjern billede",
- "company_required" => "Firma navn er et obligatorisk",
- "company_select_image" => "Vælg billede",
- "company_website_url" => "Firma hjemmeside er ikke en gyldig URL (http://...).",
- "country_codes" => "Landekoder",
- "country_codes_tooltip" => "Kommasepareret liste af landekoder til nominatim adresse søgning.",
- "currency_code" => "Valuta kode",
- "currency_decimals" => "Valuta decimaler",
- "currency_symbol" => "Valuta symbol",
- "current_employee_only" => "",
- "customer_reward" => "Belønning",
- "customer_reward_duplicate" => "Belønning skal være unik.",
- "customer_reward_enable" => "Aktiver kunde belønninger",
- "customer_reward_invalid_chars" => "Belønning må ikke indholde '_'",
- "customer_reward_required" => "Belønning er et obligatorisk felt",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "Dato- og tidfilter",
- "datetimeformat" => "Dato og tid format",
- "decimal_point" => "Decimaltegn",
- "default_barcode_font_size_number" => "Standard stregkode skriftstørrelse skal være et tal",
- "default_barcode_font_size_required" => "Standard stregkode skriftstørrelse er et obligatorisk felt",
- "default_barcode_height_number" => "Standard stregkode højde skal være et tal",
- "default_barcode_height_required" => "Standard stegkode højde er et obligatorisk felt",
- "default_barcode_num_in_row_number" => "Standard stregkode tal i en række skal være et tal",
- "default_barcode_num_in_row_required" => "Standard stregkode tal i en række er et obligatorisk felt",
- "default_barcode_page_cellspacing_number" => "Standard stregkodeside-celleafstand skal være et tal",
- "default_barcode_page_cellspacing_required" => "Standard stegkodeside-celleafstand er et obligatorisk felt",
- "default_barcode_page_width_number" => "Standard stregkode side bredde skal være et tal",
- "default_barcode_page_width_required" => "Standard stregkode side bredde er et obligatorisk felt",
- "default_barcode_width_number" => "Standard stregkode bredde skal være et tal",
- "default_barcode_width_required" => "Standard stregkode bredde er et obligatorisk felt",
- "default_item_columns" => "Standard synlige genstands-kolonner",
- "default_origin_tax_code" => "Standard oprindelse af afgiftskode",
- "default_receivings_discount" => "Standard modtagelsesrabat",
- "default_receivings_discount_number" => "Standard modtagelsesrabat skal være et tal",
- "default_receivings_discount_required" => "Standard modtagelsesrabat er et obligatorisk felt",
- "default_sales_discount" => "Standard salgsrabat",
- "default_sales_discount_number" => "Standard salgsrabat skal være et tal",
- "default_sales_discount_required" => "Standard salgsrabat er et obligatorisk felt",
- "default_tax_category" => "Standard afgiftskategori",
- "default_tax_code" => "Standard afgiftskode",
- "default_tax_jurisdiction" => "Standard afgift jurisdiktion",
- "default_tax_name_number" => "Standard afgiftsnavn skal være en streng",
- "default_tax_name_required" => "Standard afgiftsnavn er et obligatorisk felt",
- "default_tax_rate" => "Standard afgiftsrate %",
- "default_tax_rate_1" => "Afgift 1 procent",
- "default_tax_rate_2" => "Afgift 2 procent",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Standard afgiftsrate skal være et tal",
- "default_tax_rate_required" => "Standard afgiftsrate er et obligatorisk felt",
- "derive_sale_quantity" => "Tillad afledt salgsmængde",
- "derive_sale_quantity_tooltip" => "Hvis markeret, vil en ny varetype blive stillet til rådighed for varer bestilt med et udvidet beløb",
- "dinner_table" => "Tabel",
- "dinner_table_duplicate" => "Tabel skal være unik",
- "dinner_table_enable" => "Enable Dinner Tables",
- "dinner_table_invalid_chars" => "Table Name can not contain '_'.",
- "dinner_table_required" => "Table is a required field.",
- "dot" => "punktum",
- "email" => "Email",
- "email_configuration" => "Email konfiguration",
- "email_mailpath" => "Stig til Sendmail",
- "email_protocol" => "Protokol",
- "email_receipt_check_behaviour" => "Email kvitteringsfelt",
- "email_receipt_check_behaviour_always" => "Altid markeret",
- "email_receipt_check_behaviour_last" => "Husk sidste valg",
- "email_receipt_check_behaviour_never" => "Aldrig markeret",
- "email_smtp_crypto" => "SMTP Kryptering",
- "email_smtp_host" => "SMTP Server",
- "email_smtp_pass" => "SMTP Kodeord",
- "email_smtp_port" => "SMTP Port",
- "email_smtp_timeout" => "SMTP Timeout (sekunder)",
- "email_smtp_user" => "SMTP Brugernavn",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Håndhæv privathed",
- "enforce_privacy_tooltip" => "Beskyt kunders privatliv, der håndhæver datascrambling i tilfælde af, at deres data bliver slettet",
- "fax" => "Fax",
- "file_perm" => "There are problems with file permissions please fix and reload this page.",
- "financial_year" => "Fiscal Year Start",
- "financial_year_apr" => "1st of April",
- "financial_year_aug" => "1st of August",
- "financial_year_dec" => "1st of December",
- "financial_year_feb" => "1st of February",
- "financial_year_jan" => "1st of January",
- "financial_year_jul" => "1st of July",
- "financial_year_jun" => "1st of June",
- "financial_year_mar" => "1st of March",
- "financial_year_may" => "1st of May",
- "financial_year_nov" => "1st of November",
- "financial_year_oct" => "1st of October",
- "financial_year_sep" => "1st of September",
- "floating_labels" => "",
- "gcaptcha_enable" => "Login Page reCAPTCHA",
- "gcaptcha_secret_key" => "reCAPTCHA Secret Key",
- "gcaptcha_secret_key_required" => "reCAPTCHA Secret Key is a required field",
- "gcaptcha_site_key" => "reCAPTCHA Site Key",
- "gcaptcha_site_key_required" => "reCAPTCHA Site Key is a required field",
- "gcaptcha_tooltip" => "Protect the Login page with Google reCAPTCHA, click the icon for an API key pair.",
- "general" => "General",
- "general_configuration" => "General Configuration",
- "giftcard_number" => "Gift Card Number",
- "giftcard_random" => "Generate Random",
- "giftcard_series" => "Generate in Series",
- "image_allowed_file_types" => "",
- "image_max_height_tooltip" => "",
- "image_max_size_tooltip" => "",
- "image_max_width_tooltip" => "",
- "image_restrictions" => "",
- "include_hsn" => "Include Support for HSN Codes",
- "info" => "Information",
- "info_configuration" => "Store Information",
- "input_groups" => "",
- "integrations" => "Integrations",
- "integrations_configuration" => "Third Party Integrations",
- "invoice" => "Invoice",
- "invoice_configuration" => "Invoice Print Settings",
- "invoice_default_comments" => "Default Invoice Comments",
- "invoice_email_message" => "Invoice Email Template",
- "invoice_enable" => "Enable Invoicing",
- "invoice_printer" => "Invoice Printer",
- "invoice_type" => "Invoice Type",
- "is_readable" => "",
- "is_writable" => "is writable, but the permissions are higher than 750.",
- "item_markup" => "",
- "jsprintsetup_required" => "Warning: This functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?",
- "language" => "Language",
- "last_used_invoice_number" => "Last used Invoice Number",
- "last_used_quote_number" => "Last used Quote Number",
- "last_used_work_order_number" => "Last used W/O Number",
- "left" => "Left",
- "license" => "License",
- "license_configuration" => "License Statement",
- "line_sequence" => "Line Sequence",
- "lines_per_page" => "Lines per Page",
- "lines_per_page_number" => "Lines per Page must be a number.",
- "lines_per_page_required" => "Lines per Page is a required field.",
- "locale" => "Localization",
- "locale_configuration" => "Localization Configuration",
- "locale_info" => "Localization Configuration Information",
- "location" => "Stock",
- "location_configuration" => "Stock Locations",
- "location_info" => "Location Configuration Information",
- "login_form" => "",
- "logout" => "Do you want to make a backup before logging out? Click [OK] to backup or [Cancel] to logout.",
- "mailchimp" => "Mailchimp",
- "mailchimp_api_key" => "Mailchimp API Key",
- "mailchimp_configuration" => "Mailchimp Configuration",
- "mailchimp_key_successfully" => "API Key is valid.",
- "mailchimp_key_unsuccessfully" => "API Key is invalid.",
- "mailchimp_lists" => "Mailchimp List(s)",
- "mailchimp_tooltip" => "Click the icon for an API Key.",
- "message" => "Message",
- "message_configuration" => "Message Configuration",
- "msg_msg" => "Saved Text Message",
- "msg_msg_placeholder" => "If you wish to use a SMS template save your message here, otherwise leave the box blank.",
- "msg_pwd" => "SMS-API Password",
- "msg_pwd_required" => "SMS-API Password is a required field",
- "msg_src" => "SMS-API Sender ID",
- "msg_src_required" => "SMS-API Sender ID is a required field",
- "msg_uid" => "SMS-API Username",
- "msg_uid_required" => "SMS-API Username is a required field",
- "multi_pack_enabled" => "Multiple Packages per Item",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "none",
- "notify_alignment" => "Notification Popup Position",
- "number_format" => "Number Format",
- "number_locale" => "Localization",
- "number_locale_invalid" => "The entered locale is invalid. Check the link in the tooltip to find a valid locale.",
- "number_locale_required" => "Number Locale is a required field.",
- "number_locale_tooltip" => "Find a suitable locale through this link.",
- "os_timezone" => "",
- "ospos_info" => "OSPOS Installation Info",
- "payment_options_order" => "Payment Options Order",
- "perm_risk" => "Permissions higher than 750 leaves this software at risk.",
- "phone" => "Company Phone",
- "phone_required" => "Company Phone is a required field.",
- "print_bottom_margin" => "Margin Bottom",
- "print_bottom_margin_number" => "Margin Bottom must be a number.",
- "print_bottom_margin_required" => "Margin Bottom is a required field.",
- "print_delay_autoreturn" => "Autoreturn to Sale delay",
- "print_delay_autoreturn_number" => "Autoreturn to Sale delay is a required field.",
- "print_delay_autoreturn_required" => "Autoreturn to Sale delay must be a number.",
- "print_footer" => "Print Browser Footer",
- "print_header" => "Print Browser Header",
- "print_left_margin" => "Margin Left",
- "print_left_margin_number" => "Margin Left must be a number.",
- "print_left_margin_required" => "Margin Left is a required field.",
- "print_receipt_check_behaviour" => "Print Receipt checkbox",
- "print_receipt_check_behaviour_always" => "Always checked",
- "print_receipt_check_behaviour_last" => "Remember last selection",
- "print_receipt_check_behaviour_never" => "Always unchecked",
- "print_right_margin" => "Margin Right",
- "print_right_margin_number" => "Margin Right must be a number.",
- "print_right_margin_required" => "Margin Right is a required field.",
- "print_silently" => "Show Print Dialog",
- "print_top_margin" => "Margin Top",
- "print_top_margin_number" => "Margin Top must be a number.",
- "print_top_margin_required" => "Margin Top is a required field.",
- "quantity_decimals" => "Quantity Decimals",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Default Quote Comments",
- "receipt" => "Receipt",
- "receipt_category" => "",
- "receipt_configuration" => "Receipt Print Settings",
- "receipt_default" => "Default",
- "receipt_font_size" => "Font Size",
- "receipt_font_size_number" => "Font Size must be a number.",
- "receipt_font_size_required" => "Font Size is a required field.",
- "receipt_info" => "Receipt Configuration Information",
- "receipt_printer" => "Ticket Printer",
- "receipt_short" => "Short",
- "receipt_show_company_name" => "Show Company Name",
- "receipt_show_description" => "Show Description",
- "receipt_show_serialnumber" => "Show Serial Number",
- "receipt_show_tax_ind" => "Show Tax Indicator",
- "receipt_show_taxes" => "Show Taxes",
- "receipt_show_total_discount" => "Show Total Discount",
- "receipt_template" => "Receipt Template",
- "receiving_calculate_average_price" => "Calc avg. Price (Receiving)",
- "recv_invoice_format" => "Receivings Invoice Format",
- "register_mode_default" => "Default Register Mode",
- "report_an_issue" => "",
- "return_policy_required" => "Return policy is a required field.",
- "reward" => "Reward",
- "reward_configuration" => "Reward Configuration",
- "right" => "Right",
- "sales_invoice_format" => "Sales Invoice Format",
- "sales_quote_format" => "Sales Quote Format",
- "mailpath_invalid" => "",
- "saved_successfully" => "Configuration save successful.",
- "saved_unsuccessfully" => "Configuration save failed.",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "Please use the below info for issue reporting.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Show office icon",
- "statistics" => "Send Statistics",
- "statistics_tooltip" => "Send statistics for development and feature improvement purposes.",
- "stock_location" => "Stock location",
- "stock_location_duplicate" => "Stock Location must be unique.",
- "stock_location_invalid_chars" => "Stock Location can not contain '_'.",
- "stock_location_required" => "Stock location is a required field.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Column 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Search Suggestions Layout",
- "suggestions_second_column" => "Column 2",
- "suggestions_third_column" => "Column 3",
- "system_conf" => "Setup & Conf",
- "system_info" => "System Info",
- "table" => "Table",
- "table_configuration" => "Table Configuration",
- "takings_printer" => "Receipt Printer",
- "tax" => "Tax",
- "tax_category" => "Tax Category",
- "tax_category_duplicate" => "The entered tax category already exists.",
- "tax_category_invalid_chars" => "The entered tax category is invalid.",
- "tax_category_required" => "The tax category is required.",
- "tax_category_used" => "Tax category cannot be deleted because it is being used.",
- "tax_configuration" => "Tax Configuration",
- "tax_decimals" => "Tax Decimals",
- "tax_id" => "Tax Id",
- "tax_included" => "Tax Included",
- "theme" => "Theme",
- "theme_preview" => "",
- "thousands_separator" => "Thousands Separator",
- "timezone" => "Timezone",
- "timezone_error" => "",
- "top" => "Top",
- "use_destination_based_tax" => "Use Destination Based Tax",
- "user_timezone" => "",
- "website" => "Website",
- "wholesale_markup" => "",
- "work_order_enable" => "Work Order Support",
- "work_order_format" => "Work Order Format",
+ 'address' => 'Firma adresse',
+ 'address_required' => 'Firma adresse er et obligatorisk felt.',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => 'Tillad duplikatstregkoder',
+ 'apostrophe' => 'apostrof',
+ 'backup_button' => 'Backup',
+ 'backup_database' => 'Backup Database',
+ 'barcode' => 'Stregkode',
+ 'barcode_company' => 'Firmanavn',
+ 'barcode_configuration' => 'Stregkode konfiguration',
+ 'barcode_content' => 'Stregkode indhold',
+ 'barcode_first_row' => 'Række 1',
+ 'barcode_font' => 'Skrifttype',
+ 'barcode_formats' => 'Inputformater',
+ 'barcode_generate_if_empty' => 'Generer hvis tom.',
+ 'barcode_height' => 'Højde (px)',
+ 'barcode_id' => 'Genstands Id/navn',
+ 'barcode_info' => 'Information om stregkode konfiguration',
+ 'barcode_layout' => 'Stregkode layout',
+ 'barcode_name' => 'Navn',
+ 'barcode_number' => 'Stregkode',
+ 'barcode_number_in_row' => 'Nummer i rækken',
+ 'barcode_page_cellspacing' => 'Vis sidens celleafstand.',
+ 'barcode_page_width' => 'Vis sidens bredde',
+ 'barcode_price' => 'Pris',
+ 'barcode_second_row' => 'Række 2',
+ 'barcode_third_row' => 'Række 3',
+ 'barcode_tooltip' => 'Advarsel: Denne funktion kan forårsage, at duplikerede genstande vil blive importeret eller oprettet. Anvend ikke hvis du ikke vil have duplikerede stregkoder.',
+ 'barcode_type' => 'Stregkode type',
+ 'barcode_width' => 'Bredde (px)',
+ 'bottom' => 'Bund',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Kontante decimaler',
+ 'cash_decimals_tooltip' => 'Hvis kontante decimaler og valuta decimaler er de samme, kan kontanterne ikke rundes op.',
+ 'cash_rounding' => 'Kontant afrunding',
+ 'category_dropdown' => '',
+ 'center' => 'Centrum',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'Komma',
+ 'company' => 'Firma navn',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Skift billede',
+ 'company_logo' => 'Firma logo',
+ 'company_remove_image' => 'Fjern billede',
+ 'company_required' => 'Firma navn er et obligatorisk',
+ 'company_select_image' => 'Vælg billede',
+ 'company_website_url' => 'Firma hjemmeside er ikke en gyldig URL (http://...).',
+ 'country_codes' => 'Landekoder',
+ 'country_codes_tooltip' => 'Kommasepareret liste af landekoder til nominatim adresse søgning.',
+ 'currency_code' => 'Valuta kode',
+ 'currency_decimals' => 'Valuta decimaler',
+ 'currency_symbol' => 'Valuta symbol',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Belønning',
+ 'customer_reward_duplicate' => 'Belønning skal være unik.',
+ 'customer_reward_enable' => 'Aktiver kunde belønninger',
+ 'customer_reward_invalid_chars' => "Belønning må ikke indholde '_'",
+ 'customer_reward_required' => 'Belønning er et obligatorisk felt',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => 'Dato- og tidfilter',
+ 'datetimeformat' => 'Dato og tid format',
+ 'decimal_point' => 'Decimaltegn',
+ 'default_barcode_font_size_number' => 'Standard stregkode skriftstørrelse skal være et tal',
+ 'default_barcode_font_size_required' => 'Standard stregkode skriftstørrelse er et obligatorisk felt',
+ 'default_barcode_height_number' => 'Standard stregkode højde skal være et tal',
+ 'default_barcode_height_required' => 'Standard stegkode højde er et obligatorisk felt',
+ 'default_barcode_num_in_row_number' => 'Standard stregkode tal i en række skal være et tal',
+ 'default_barcode_num_in_row_required' => 'Standard stregkode tal i en række er et obligatorisk felt',
+ 'default_barcode_page_cellspacing_number' => 'Standard stregkodeside-celleafstand skal være et tal',
+ 'default_barcode_page_cellspacing_required' => 'Standard stegkodeside-celleafstand er et obligatorisk felt',
+ 'default_barcode_page_width_number' => 'Standard stregkode side bredde skal være et tal',
+ 'default_barcode_page_width_required' => 'Standard stregkode side bredde er et obligatorisk felt',
+ 'default_barcode_width_number' => 'Standard stregkode bredde skal være et tal',
+ 'default_barcode_width_required' => 'Standard stregkode bredde er et obligatorisk felt',
+ 'default_item_columns' => 'Standard synlige genstands-kolonner',
+ 'default_origin_tax_code' => 'Standard oprindelse af afgiftskode',
+ 'default_receivings_discount' => 'Standard modtagelsesrabat',
+ 'default_receivings_discount_number' => 'Standard modtagelsesrabat skal være et tal',
+ 'default_receivings_discount_required' => 'Standard modtagelsesrabat er et obligatorisk felt',
+ 'default_sales_discount' => 'Standard salgsrabat',
+ 'default_sales_discount_number' => 'Standard salgsrabat skal være et tal',
+ 'default_sales_discount_required' => 'Standard salgsrabat er et obligatorisk felt',
+ 'default_tax_category' => 'Standard afgiftskategori',
+ 'default_tax_code' => 'Standard afgiftskode',
+ 'default_tax_jurisdiction' => 'Standard afgift jurisdiktion',
+ 'default_tax_name_number' => 'Standard afgiftsnavn skal være en streng',
+ 'default_tax_name_required' => 'Standard afgiftsnavn er et obligatorisk felt',
+ 'default_tax_rate' => 'Standard afgiftsrate %',
+ 'default_tax_rate_1' => 'Afgift 1 procent',
+ 'default_tax_rate_2' => 'Afgift 2 procent',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Standard afgiftsrate skal være et tal',
+ 'default_tax_rate_required' => 'Standard afgiftsrate er et obligatorisk felt',
+ 'derive_sale_quantity' => 'Tillad afledt salgsmængde',
+ 'derive_sale_quantity_tooltip' => 'Hvis markeret, vil en ny varetype blive stillet til rådighed for varer bestilt med et udvidet beløb',
+ 'dinner_table' => 'Tabel',
+ 'dinner_table_duplicate' => 'Tabel skal være unik',
+ 'dinner_table_enable' => 'Enable Dinner Tables',
+ 'dinner_table_invalid_chars' => "Table Name can not contain '_'.",
+ 'dinner_table_required' => 'Table is a required field.',
+ 'dot' => 'punktum',
+ 'email' => 'Email',
+ 'email_configuration' => 'Email konfiguration',
+ 'email_mailpath' => 'Stig til Sendmail',
+ 'email_protocol' => 'Protokol',
+ 'email_receipt_check_behaviour' => 'Email kvitteringsfelt',
+ 'email_receipt_check_behaviour_always' => 'Altid markeret',
+ 'email_receipt_check_behaviour_last' => 'Husk sidste valg',
+ 'email_receipt_check_behaviour_never' => 'Aldrig markeret',
+ 'email_smtp_crypto' => 'SMTP Kryptering',
+ 'email_smtp_host' => 'SMTP Server',
+ 'email_smtp_pass' => 'SMTP Kodeord',
+ 'email_smtp_port' => 'SMTP Port',
+ 'email_smtp_timeout' => 'SMTP Timeout (sekunder)',
+ 'email_smtp_user' => 'SMTP Brugernavn',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Håndhæv privathed',
+ 'enforce_privacy_tooltip' => 'Beskyt kunders privatliv, der håndhæver datascrambling i tilfælde af, at deres data bliver slettet',
+ 'fax' => 'Fax',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => 'Fiscal Year Start',
+ 'financial_year_apr' => '1st of April',
+ 'financial_year_aug' => '1st of August',
+ 'financial_year_dec' => '1st of December',
+ 'financial_year_feb' => '1st of February',
+ 'financial_year_jan' => '1st of January',
+ 'financial_year_jul' => '1st of July',
+ 'financial_year_jun' => '1st of June',
+ 'financial_year_mar' => '1st of March',
+ 'financial_year_may' => '1st of May',
+ 'financial_year_nov' => '1st of November',
+ 'financial_year_oct' => '1st of October',
+ 'financial_year_sep' => '1st of September',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => 'Login Page reCAPTCHA',
+ 'gcaptcha_secret_key' => 'reCAPTCHA Secret Key',
+ 'gcaptcha_secret_key_required' => 'reCAPTCHA Secret Key is a required field',
+ 'gcaptcha_site_key' => 'reCAPTCHA Site Key',
+ 'gcaptcha_site_key_required' => 'reCAPTCHA Site Key is a required field',
+ 'gcaptcha_tooltip' => 'Protect the Login page with Google reCAPTCHA, click the icon for an API key pair.',
+ 'general' => 'General',
+ 'general_configuration' => 'General Configuration',
+ 'giftcard_number' => 'Gift Card Number',
+ 'giftcard_random' => 'Generate Random',
+ 'giftcard_series' => 'Generate in Series',
+ 'image_allowed_file_types' => '',
+ 'image_max_height_tooltip' => '',
+ 'image_max_size_tooltip' => '',
+ 'image_max_width_tooltip' => '',
+ 'image_restrictions' => '',
+ 'include_hsn' => 'Include Support for HSN Codes',
+ 'info' => 'Information',
+ 'info_configuration' => 'Store Information',
+ 'input_groups' => '',
+ 'integrations' => 'Integrations',
+ 'integrations_configuration' => 'Third Party Integrations',
+ 'invoice' => 'Invoice',
+ 'invoice_configuration' => 'Invoice Print Settings',
+ 'invoice_default_comments' => 'Default Invoice Comments',
+ 'invoice_email_message' => 'Invoice Email Template',
+ 'invoice_enable' => 'Enable Invoicing',
+ 'invoice_printer' => 'Invoice Printer',
+ 'invoice_type' => 'Invoice Type',
+ 'is_readable' => '',
+ 'is_writable' => 'is writable, but the permissions are higher than 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Warning: This functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?',
+ 'language' => 'Language',
+ 'last_used_invoice_number' => 'Last used Invoice Number',
+ 'last_used_quote_number' => 'Last used Quote Number',
+ 'last_used_work_order_number' => 'Last used W/O Number',
+ 'left' => 'Left',
+ 'license' => 'License',
+ 'license_configuration' => 'License Statement',
+ 'line_sequence' => 'Line Sequence',
+ 'lines_per_page' => 'Lines per Page',
+ 'lines_per_page_number' => 'Lines per Page must be a number.',
+ 'lines_per_page_required' => 'Lines per Page is a required field.',
+ 'locale' => 'Localization',
+ 'locale_configuration' => 'Localization Configuration',
+ 'locale_info' => 'Localization Configuration Information',
+ 'location' => 'Stock',
+ 'location_configuration' => 'Stock Locations',
+ 'location_info' => 'Location Configuration Information',
+ 'login_form' => '',
+ 'logout' => 'Do you want to make a backup before logging out? Click [OK] to backup or [Cancel] to logout.',
+ 'mailchimp' => 'Mailchimp',
+ 'mailchimp_api_key' => 'Mailchimp API Key',
+ 'mailchimp_configuration' => 'Mailchimp Configuration',
+ 'mailchimp_key_successfully' => 'API Key is valid.',
+ 'mailchimp_key_unsuccessfully' => 'API Key is invalid.',
+ 'mailchimp_lists' => 'Mailchimp List(s)',
+ 'mailchimp_tooltip' => 'Click the icon for an API Key.',
+ 'message' => 'Message',
+ 'message_configuration' => 'Message Configuration',
+ 'msg_msg' => 'Saved Text Message',
+ 'msg_msg_placeholder' => 'If you wish to use a SMS template save your message here, otherwise leave the box blank.',
+ 'msg_pwd' => 'SMS-API Password',
+ 'msg_pwd_required' => 'SMS-API Password is a required field',
+ 'msg_src' => 'SMS-API Sender ID',
+ 'msg_src_required' => 'SMS-API Sender ID is a required field',
+ 'msg_uid' => 'SMS-API Username',
+ 'msg_uid_required' => 'SMS-API Username is a required field',
+ 'multi_pack_enabled' => 'Multiple Packages per Item',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => 'none',
+ 'notify_alignment' => 'Notification Popup Position',
+ 'number_format' => 'Number Format',
+ 'number_locale' => 'Localization',
+ 'number_locale_invalid' => 'The entered locale is invalid. Check the link in the tooltip to find a valid locale.',
+ 'number_locale_required' => 'Number Locale is a required field.',
+ 'number_locale_tooltip' => 'Find a suitable locale through this link.',
+ 'os_timezone' => '',
+ 'ospos_info' => 'OSPOS Installation Info',
+ 'payment_options_order' => 'Payment Options Order',
+ 'payment_reference_code_length_limits' => 'Betalingsreferencekode
Længdegrænser',
+ 'payment_reference_code_length_max_label' => 'Maks',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => 'Permissions higher than 750 leaves this software at risk.',
+ 'phone' => 'Company Phone',
+ 'phone_required' => 'Company Phone is a required field.',
+ 'print_bottom_margin' => 'Margin Bottom',
+ 'print_bottom_margin_number' => 'Margin Bottom must be a number.',
+ 'print_bottom_margin_required' => 'Margin Bottom is a required field.',
+ 'print_delay_autoreturn' => 'Autoreturn to Sale delay',
+ 'print_delay_autoreturn_number' => 'Autoreturn to Sale delay is a required field.',
+ 'print_delay_autoreturn_required' => 'Autoreturn to Sale delay must be a number.',
+ 'print_footer' => 'Print Browser Footer',
+ 'print_header' => 'Print Browser Header',
+ 'print_left_margin' => 'Margin Left',
+ 'print_left_margin_number' => 'Margin Left must be a number.',
+ 'print_left_margin_required' => 'Margin Left is a required field.',
+ 'print_receipt_check_behaviour' => 'Print Receipt checkbox',
+ 'print_receipt_check_behaviour_always' => 'Always checked',
+ 'print_receipt_check_behaviour_last' => 'Remember last selection',
+ 'print_receipt_check_behaviour_never' => 'Always unchecked',
+ 'print_right_margin' => 'Margin Right',
+ 'print_right_margin_number' => 'Margin Right must be a number.',
+ 'print_right_margin_required' => 'Margin Right is a required field.',
+ 'print_silently' => 'Show Print Dialog',
+ 'print_top_margin' => 'Margin Top',
+ 'print_top_margin_number' => 'Margin Top must be a number.',
+ 'print_top_margin_required' => 'Margin Top is a required field.',
+ 'quantity_decimals' => 'Quantity Decimals',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Default Quote Comments',
+ 'receipt' => 'Receipt',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Receipt Print Settings',
+ 'receipt_default' => 'Default',
+ 'receipt_font_size' => 'Font Size',
+ 'receipt_font_size_number' => 'Font Size must be a number.',
+ 'receipt_font_size_required' => 'Font Size is a required field.',
+ 'receipt_info' => 'Receipt Configuration Information',
+ 'receipt_printer' => 'Ticket Printer',
+ 'receipt_short' => 'Short',
+ 'receipt_show_company_name' => 'Show Company Name',
+ 'receipt_show_description' => 'Show Description',
+ 'receipt_show_serialnumber' => 'Show Serial Number',
+ 'receipt_show_tax_ind' => 'Show Tax Indicator',
+ 'receipt_show_taxes' => 'Show Taxes',
+ 'receipt_show_total_discount' => 'Show Total Discount',
+ 'receipt_template' => 'Receipt Template',
+ 'receiving_calculate_average_price' => 'Calc avg. Price (Receiving)',
+ 'recv_invoice_format' => 'Receivings Invoice Format',
+ 'register_mode_default' => 'Default Register Mode',
+ 'report_an_issue' => '',
+ 'return_policy_required' => 'Return policy is a required field.',
+ 'reward' => 'Reward',
+ 'reward_configuration' => 'Reward Configuration',
+ 'right' => 'Right',
+ 'sales_invoice_format' => 'Sales Invoice Format',
+ 'sales_quote_format' => 'Sales Quote Format',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => 'Configuration save successful.',
+ 'saved_unsuccessfully' => 'Configuration save failed.',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Please use the below info for issue reporting.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Show office icon',
+ 'statistics' => 'Send Statistics',
+ 'statistics_tooltip' => 'Send statistics for development and feature improvement purposes.',
+ 'stock_location' => 'Stock location',
+ 'stock_location_duplicate' => 'Stock Location must be unique.',
+ 'stock_location_invalid_chars' => "Stock Location can not contain '_'.",
+ 'stock_location_required' => 'Stock location is a required field.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Column 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Search Suggestions Layout',
+ 'suggestions_second_column' => 'Column 2',
+ 'suggestions_third_column' => 'Column 3',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => 'Table',
+ 'table_configuration' => 'Table Configuration',
+ 'takings_printer' => 'Receipt Printer',
+ 'tax' => 'Tax',
+ 'tax_category' => 'Tax Category',
+ 'tax_category_duplicate' => 'The entered tax category already exists.',
+ 'tax_category_invalid_chars' => 'The entered tax category is invalid.',
+ 'tax_category_required' => 'The tax category is required.',
+ 'tax_category_used' => 'Tax category cannot be deleted because it is being used.',
+ 'tax_configuration' => 'Tax Configuration',
+ 'tax_decimals' => 'Tax Decimals',
+ 'tax_id' => 'Tax Id',
+ 'tax_included' => 'Tax Included',
+ 'theme' => 'Theme',
+ 'theme_preview' => '',
+ 'thousands_separator' => 'Thousands Separator',
+ 'timezone' => 'Timezone',
+ 'timezone_error' => '',
+ 'top' => 'Top',
+ 'use_destination_based_tax' => 'Use Destination Based Tax',
+ 'user_timezone' => '',
+ 'website' => 'Website',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Work Order Support',
+ 'work_order_format' => 'Work Order Format',
];
diff --git a/app/Language/da/Login.php b/app/Language/da/Login.php
index 652c3f22c..8dd4517d3 100644
--- a/app/Language/da/Login.php
+++ b/app/Language/da/Login.php
@@ -1,25 +1,30 @@
"",
- "go" => "",
- "invalid_gcaptcha" => "",
- "invalid_installation" => "",
- "invalid_username_and_password" => "",
- "login" => "",
- "logout" => "",
- "migration_needed" => "",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "",
- "required_username" => "",
- "username" => "",
- "welcome" => "",
+ "gcaptcha" => "",
+ "go" => "",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "",
+ "invalid_installation" => "",
+ "invalid_username_and_password" => "",
+ "login" => "",
+ "logout" => "",
+ "migrating_database" => "Migrerer database",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "Database migreret!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "",
+ "required_username" => "",
+ "username" => "",
+ "welcome" => ""
];
diff --git a/app/Language/da/Sales.php b/app/Language/da/Sales.php
index ccdf0d830..ea05059ff 100644
--- a/app/Language/da/Sales.php
+++ b/app/Language/da/Sales.php
@@ -1,231 +1,235 @@
"",
- "rewards_package" => "",
- "rewards_remaining_balance" => "",
- "account_number" => "",
- "add_payment" => "",
- "amount_due" => "",
- "amount_tendered" => "",
- "authorized_signature" => "",
- "cancel_sale" => "",
- "cash" => "Kontant",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "",
- "cash_deposit" => "",
- "cash_filter" => "",
- "change_due" => "",
- "change_price" => "",
- "check" => "",
- "check_balance" => "",
- "check_filter" => "",
- "close" => "",
- "comment" => "Kommentar",
- "comments" => "Kommentarer",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "",
- "confirm_cancel_sale" => "",
- "confirm_delete" => "",
- "confirm_restore" => "",
- "credit" => "",
- "credit_deposit" => "",
- "credit_filter" => "",
- "current_table" => "",
- "customer" => "",
- "customer_address" => "",
- "customer_discount" => "Rabat",
- "customer_email" => "",
- "customer_location" => "",
- "customer_mailchimp_status" => "",
- "customer_optional" => "",
- "customer_required" => "",
- "customer_total" => "",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "",
- "date_range" => "",
- "date_required" => "",
- "date_type" => "",
- "debit" => "Debit kort",
- "debit_filter" => "",
- "delete" => "",
- "delete_confirmation" => "Er du sikker på at du ønsker at slette dette salg? Dette kan ikke fortrydes.",
- "delete_entire_sale" => "Slet hele salget",
- "delete_successful" => "Salg slettet succesfuldt.",
- "delete_unsuccessful" => "Sletning af salg fejlede.",
- "description_abbrv" => "Beskr.",
- "discard" => "Kassér",
- "discard_quote" => "",
- "discount" => "",
- "discount_included" => "",
- "discount_short" => "",
- "due" => "",
- "due_filter" => "",
- "edit" => "",
- "edit_item" => "",
- "edit_sale" => "",
- "email_receipt" => "",
- "employee" => "",
- "entry" => "",
- "error_editing_item" => "",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "",
- "find_or_scan_item_or_receipt" => "",
- "giftcard" => "Gavekort",
- "giftcard_balance" => "",
- "giftcard_filter" => "",
- "giftcard_number" => "",
- "group_by_category" => "",
- "group_by_type" => "",
- "hsn" => "",
- "id" => "",
- "include_prices" => "",
- "invoice" => "",
- "invoice_confirm" => "",
- "invoice_enable" => "",
- "invoice_filter" => "",
- "invoice_no_email" => "",
- "invoice_number" => "",
- "invoice_number_duplicate" => "",
- "invoice_sent" => "",
- "invoice_total" => "",
- "invoice_type_custom_invoice" => "",
- "invoice_type_custom_tax_invoice" => "",
- "invoice_type_invoice" => "",
- "invoice_type_tax_invoice" => "",
- "invoice_unsent" => "",
- "invoice_update" => "",
- "item_insufficient_of_stock" => "",
- "item_name" => "",
- "item_number" => "",
- "item_out_of_stock" => "",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "",
- "must_enter_numeric" => "",
- "must_enter_numeric_giftcard" => "",
- "new_customer" => "",
- "new_item" => "",
- "no_description" => "",
- "no_filter" => "",
- "no_items_in_cart" => "",
- "no_sales_to_display" => "",
- "none_selected" => "",
- "nontaxed_ind" => "",
- "not_authorized" => "",
- "one_or_multiple" => "",
- "payment" => "",
- "payment_amount" => "",
- "payment_not_cover_total" => "",
- "payment_type" => "",
- "payments" => "",
- "payments_total" => "",
- "price" => "",
- "print_after_sale" => "",
- "quantity" => "",
- "quantity_less_than_reorder_level" => "",
- "quantity_less_than_zero" => "",
- "quantity_of_items" => "",
- "quote" => "",
- "quote_number" => "",
- "quote_number_duplicate" => "",
- "quote_sent" => "",
- "quote_unsent" => "",
- "receipt" => "",
- "receipt_no_email" => "",
- "receipt_number" => "",
- "receipt_sent" => "",
- "receipt_unsent" => "",
- "refund" => "",
- "register" => "",
- "remove_customer" => "",
- "remove_discount" => "",
- "return" => "",
- "rewards" => "",
- "rewards_balance" => "",
- "sale" => "",
- "sale_by_invoice" => "",
- "sale_for_customer" => "",
- "sale_time" => "",
- "sales_tax" => "",
- "sales_total" => "",
- "select_customer" => "",
- "send_invoice" => "",
- "send_quote" => "",
- "send_receipt" => "",
- "send_work_order" => "",
- "serial" => "",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "",
- "show_receipt" => "",
- "start_typing_customer_name" => "",
- "start_typing_item_name" => "",
- "stock" => "",
- "stock_location" => "",
- "sub_total" => "",
- "successfully_deleted" => "",
- "successfully_restored" => "",
- "successfully_suspended_sale" => "",
- "successfully_updated" => "",
- "suspend_sale" => "",
- "suspended_doc_id" => "",
- "suspended_sale_id" => "",
- "suspended_sales" => "",
- "table" => "",
- "takings" => "",
- "tax" => "",
- "tax_id" => "",
- "tax_invoice" => "",
- "tax_percent" => "",
- "taxed_ind" => "",
- "total" => "",
- "total_tax_exclusive" => "",
- "transaction_failed" => "",
- "unable_to_add_item" => "",
- "unsuccessfully_deleted" => "",
- "unsuccessfully_restored" => "",
- "unsuccessfully_suspended_sale" => "",
- "unsuccessfully_updated" => "",
- "unsuspend" => "",
- "unsuspend_and_delete" => "",
- "update" => "",
- "upi" => "",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "",
- "work_order_number" => "",
- "work_order_number_duplicate" => "",
- "work_order_sent" => "",
- "work_order_unsent" => "",
+ 'account_number' => '',
+ 'add_payment' => '',
+ 'amount_due' => '',
+ 'amount_tendered' => '',
+ 'authorized_signature' => '',
+ 'cancel_sale' => '',
+ 'cash' => 'Kontant',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => '',
+ 'cash_deposit' => '',
+ 'cash_filter' => '',
+ 'change_due' => '',
+ 'change_price' => '',
+ 'check' => '',
+ 'check_balance' => '',
+ 'check_filter' => '',
+ 'close' => '',
+ 'comment' => 'Kommentar',
+ 'comments' => 'Kommentarer',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => '',
+ 'confirm_cancel_sale' => '',
+ 'confirm_delete' => '',
+ 'confirm_restore' => '',
+ 'credit' => '',
+ 'credit_deposit' => '',
+ 'credit_filter' => '',
+ 'current_table' => '',
+ 'customer' => '',
+ 'customer_address' => '',
+ 'customer_discount' => 'Rabat',
+ 'customer_email' => '',
+ 'customer_location' => '',
+ 'customer_mailchimp_status' => '',
+ 'customer_optional' => '',
+ 'customer_required' => '',
+ 'customer_total' => '',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => '',
+ 'daily_sales' => '',
+ 'date' => '',
+ 'date_range' => '',
+ 'date_required' => '',
+ 'date_type' => '',
+ 'debit' => 'Debit kort',
+ 'debit_filter' => '',
+ 'delete' => '',
+ 'delete_confirmation' => 'Er du sikker på at du ønsker at slette dette salg? Dette kan ikke fortrydes.',
+ 'delete_entire_sale' => 'Slet hele salget',
+ 'delete_successful' => 'Salg slettet succesfuldt.',
+ 'delete_unsuccessful' => 'Sletning af salg fejlede.',
+ 'description_abbrv' => 'Beskr.',
+ 'discard' => 'Kassér',
+ 'discard_quote' => '',
+ 'discount' => '',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '',
+ 'due' => '',
+ 'due_filter' => '',
+ 'edit' => '',
+ 'edit_item' => '',
+ 'edit_sale' => '',
+ 'email_receipt' => '',
+ 'employee' => '',
+ 'entry' => '',
+ 'error_editing_item' => '',
+ 'find_or_scan_item' => '',
+ 'find_or_scan_item_or_receipt' => '',
+ 'giftcard' => 'Gavekort',
+ 'giftcard_balance' => '',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => '',
+ 'group_by_category' => '',
+ 'group_by_type' => '',
+ 'hsn' => '',
+ 'id' => '',
+ 'include_prices' => '',
+ 'invoice' => '',
+ 'invoice_confirm' => '',
+ 'invoice_enable' => '',
+ 'invoice_filter' => '',
+ 'invoice_no_email' => '',
+ 'invoice_number' => '',
+ 'invoice_number_duplicate' => '',
+ 'invoice_sent' => '',
+ 'invoice_total' => '',
+ 'invoice_type_custom_invoice' => '',
+ 'invoice_type_custom_tax_invoice' => '',
+ 'invoice_type_invoice' => '',
+ 'invoice_type_tax_invoice' => '',
+ 'invoice_unsent' => '',
+ 'invoice_update' => '',
+ 'item_insufficient_of_stock' => '',
+ 'item_name' => '',
+ 'item_number' => '',
+ 'item_out_of_stock' => '',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => '',
+ 'must_enter_numeric' => '',
+ 'must_enter_numeric_giftcard' => '',
+ 'must_enter_reference_code' => 'Reference-/hentningsnummer skal angives.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => '',
+ 'new_item' => '',
+ 'no_description' => '',
+ 'no_filter' => '',
+ 'no_items_in_cart' => '',
+ 'no_sales_to_display' => '',
+ 'none_selected' => '',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => '',
+ 'one_or_multiple' => '',
+ 'payment' => '',
+ 'payment_amount' => '',
+ 'payment_not_cover_total' => '',
+ 'payment_type' => '',
+ 'payments' => '',
+ 'payments_total' => '',
+ 'price' => '',
+ 'print_after_sale' => '',
+ 'quantity' => '',
+ 'quantity_less_than_reorder_level' => '',
+ 'quantity_less_than_zero' => '',
+ 'quantity_of_items' => '',
+ 'quote' => '',
+ 'quote_number' => '',
+ 'quote_number_duplicate' => '',
+ 'quote_sent' => '',
+ 'quote_unsent' => '',
+ 'receipt' => '',
+ 'receipt_no_email' => '',
+ 'receipt_number' => '',
+ 'receipt_sent' => '',
+ 'receipt_unsent' => '',
+ 'reference_code' => 'Betalingsreferencekode',
+ 'reference_code_invalid_characters' => 'Referencekoden må kun indeholde bogstaver og tal.',
+ 'reference_code_length_error' => 'Referencekodets længde er ugyldig.',
+ 'refund' => '',
+ 'register' => '',
+ 'remove_customer' => '',
+ 'remove_discount' => '',
+ 'return' => '',
+ 'rewards' => '',
+ 'rewards_balance' => '',
+ 'rewards_package' => '',
+ 'rewards_remaining_balance' => '',
+ 'sale' => '',
+ 'sale_by_invoice' => '',
+ 'sale_for_customer' => '',
+ 'sale_time' => '',
+ 'sales_tax' => '',
+ 'sales_total' => '',
+ 'select_customer' => '',
+ 'send_invoice' => '',
+ 'send_quote' => '',
+ 'send_receipt' => '',
+ 'send_work_order' => '',
+ 'serial' => '',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => '',
+ 'show_receipt' => '',
+ 'start_typing_customer_name' => '',
+ 'start_typing_item_name' => '',
+ 'stock' => '',
+ 'stock_location' => '',
+ 'sub_total' => '',
+ 'successfully_deleted' => '',
+ 'successfully_restored' => '',
+ 'successfully_suspended_sale' => '',
+ 'successfully_updated' => '',
+ 'suspend_sale' => '',
+ 'suspended_doc_id' => '',
+ 'suspended_sale_id' => '',
+ 'suspended_sales' => '',
+ 'table' => '',
+ 'takings' => '',
+ 'tax' => '',
+ 'tax_id' => '',
+ 'tax_invoice' => '',
+ 'tax_percent' => '',
+ 'taxed_ind' => '',
+ 'total' => '',
+ 'total_tax_exclusive' => '',
+ 'transaction_failed' => '',
+ 'unable_to_add_item' => '',
+ 'unsuccessfully_deleted' => '',
+ 'unsuccessfully_restored' => '',
+ 'unsuccessfully_suspended_sale' => '',
+ 'unsuccessfully_updated' => '',
+ 'unsuspend' => '',
+ 'unsuspend_and_delete' => '',
+ 'update' => '',
+ 'upi' => '',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => '',
+ 'work_order_number' => '',
+ 'work_order_number_duplicate' => '',
+ 'work_order_sent' => '',
+ 'work_order_unsent' => '',
];
diff --git a/app/Language/de-CH/Config.php b/app/Language/de-CH/Config.php
index 4e480e6a9..a25d2f2c2 100644
--- a/app/Language/de-CH/Config.php
+++ b/app/Language/de-CH/Config.php
@@ -1,332 +1,335 @@
"Adresse",
- "address_required" => "Adresse ist erforderlich",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "",
- "apostrophe" => "apostrophe",
- "backup_button" => "Sicherung",
- "backup_database" => "Sicherungs-Datenbank",
- "barcode" => "Barcodes",
- "barcode_company" => "Firmenname",
- "barcode_configuration" => "Barcodes",
- "barcode_content" => "Barcode Inhalt",
- "barcode_first_row" => "Erste Zeile",
- "barcode_font" => "Schrift",
- "barcode_formats" => "",
- "barcode_generate_if_empty" => "Generiere Barcode wenn leer",
- "barcode_height" => "Höhe",
- "barcode_id" => "Artikel-Nr/Name",
- "barcode_info" => "Barcode Einstellung",
- "barcode_layout" => "Barcode Layout",
- "barcode_name" => "Name",
- "barcode_number" => "UPC/EAN/ISBN",
- "barcode_number_in_row" => "Nummer in Zeile",
- "barcode_page_cellspacing" => "Zellenabstand auf Seite",
- "barcode_page_width" => "Seitenbreite",
- "barcode_price" => "Preis",
- "barcode_second_row" => "Zeile 2",
- "barcode_third_row" => "Zeile 3",
- "barcode_tooltip" => "",
- "barcode_type" => "Barcode Typ",
- "barcode_width" => "Breite (px)",
- "bottom" => "Bottom",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "",
- "cash_decimals_tooltip" => "",
- "cash_rounding" => "",
- "category_dropdown" => "",
- "center" => "Center",
- "change_apperance_tooltip" => "",
- "comma" => "comma",
- "company" => "Firmenname",
- "company_avatar" => "",
- "company_change_image" => "Change Image",
- "company_logo" => "Logo",
- "company_remove_image" => "Remove Image",
- "company_required" => "Firmenname ist erforderlich",
- "company_select_image" => "Select Image",
- "company_website_url" => "Webseite ist nicht in korrektem Format",
- "country_codes" => "Country Codes",
- "country_codes_tooltip" => "Comma separated list of country codes for nominatim address lookup.",
- "currency_code" => "",
- "currency_decimals" => "Currency Decimals",
- "currency_symbol" => "Währungssymbol",
- "current_employee_only" => "",
- "customer_reward" => "",
- "customer_reward_duplicate" => "",
- "customer_reward_enable" => "",
- "customer_reward_invalid_chars" => "",
- "customer_reward_required" => "",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "",
- "datetimeformat" => "Datum und Zeit",
- "decimal_point" => "Dezimaltrennzeichen",
- "default_barcode_font_size_number" => "Die Barcode Schriftgrösse muss eine Zahl sein",
- "default_barcode_font_size_required" => "Die Barcode Schriftgrösse ist erforderlich",
- "default_barcode_height_number" => "Die Barcode Höhe muss eine Zahl sein",
- "default_barcode_height_required" => "Die Barcode Höhe ist erforderlich",
- "default_barcode_num_in_row_number" => "Die Barcode Num muss eine Zahl sein",
- "default_barcode_num_in_row_required" => "Die Barcode Num ist erforderlich",
- "default_barcode_page_cellspacing_number" => "Der Barcode Zellabstand muss eine Zahl sein",
- "default_barcode_page_cellspacing_required" => "Der Barcode Zellabstand ist erforderlich",
- "default_barcode_page_width_number" => "Die Barcode Seitenbreite muss eine Zahl sein",
- "default_barcode_page_width_required" => "Die Barcode Seitenbreite ist erforderlich",
- "default_barcode_width_number" => "Die Barcode Breite muss eine Zahl sein",
- "default_barcode_width_required" => "Die Barcode Breite ist erforderlich",
- "default_item_columns" => "",
- "default_origin_tax_code" => "",
- "default_receivings_discount" => "",
- "default_receivings_discount_number" => "",
- "default_receivings_discount_required" => "",
- "default_sales_discount" => "Standard Verkaufsrabatt",
- "default_sales_discount_number" => "Der Standard Verkaufsrabatt muss eine Zahl sein",
- "default_sales_discount_required" => "Der Standard Verkaufsrabatt ist erforderlich",
- "default_tax_category" => "",
- "default_tax_code" => "",
- "default_tax_jurisdiction" => "",
- "default_tax_name_number" => "",
- "default_tax_name_required" => "The default tax name is a required field",
- "default_tax_rate" => "MWSt %",
- "default_tax_rate_1" => "MWSt 1",
- "default_tax_rate_2" => "MWSt 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "MWSt Rate",
- "default_tax_rate_required" => "MWSt ist erforderlich",
- "derive_sale_quantity" => "",
- "derive_sale_quantity_tooltip" => "",
- "dinner_table" => "",
- "dinner_table_duplicate" => "",
- "dinner_table_enable" => "",
- "dinner_table_invalid_chars" => "",
- "dinner_table_required" => "",
- "dot" => "dot",
- "email" => "Email",
- "email_configuration" => "Email Configuration",
- "email_mailpath" => "Path to Sendmail",
- "email_protocol" => "Protocol",
- "email_receipt_check_behaviour" => "",
- "email_receipt_check_behaviour_always" => "",
- "email_receipt_check_behaviour_last" => "",
- "email_receipt_check_behaviour_never" => "",
- "email_smtp_crypto" => "SMTP Encryption",
- "email_smtp_host" => "SMTP Server",
- "email_smtp_pass" => "SMTP Password",
- "email_smtp_port" => "SMTP Port",
- "email_smtp_timeout" => "SMTP Timeout (s)",
- "email_smtp_user" => "SMTP Username",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "",
- "enforce_privacy_tooltip" => "",
- "fax" => "Fax",
- "file_perm" => "There are problems with file permissions please fix and reload this page.",
- "financial_year" => "",
- "financial_year_apr" => "",
- "financial_year_aug" => "",
- "financial_year_dec" => "",
- "financial_year_feb" => "",
- "financial_year_jan" => "",
- "financial_year_jul" => "",
- "financial_year_jun" => "",
- "financial_year_mar" => "",
- "financial_year_may" => "",
- "financial_year_nov" => "",
- "financial_year_oct" => "",
- "financial_year_sep" => "",
- "floating_labels" => "",
- "gcaptcha_enable" => "",
- "gcaptcha_secret_key" => "",
- "gcaptcha_secret_key_required" => "",
- "gcaptcha_site_key" => "",
- "gcaptcha_site_key_required" => "",
- "gcaptcha_tooltip" => "",
- "general" => "Einstellungen",
- "general_configuration" => "Einstellungen",
- "giftcard_number" => "",
- "giftcard_random" => "",
- "giftcard_series" => "",
- "image_allowed_file_types" => "",
- "image_max_height_tooltip" => "",
- "image_max_size_tooltip" => "",
- "image_max_width_tooltip" => "",
- "image_restrictions" => "",
- "include_hsn" => "",
- "info" => "Instellungen",
- "info_configuration" => "Instellungen",
- "input_groups" => "",
- "integrations" => "",
- "integrations_configuration" => "",
- "invoice" => "Rechnungs",
- "invoice_configuration" => "Druckereinstellungen",
- "invoice_default_comments" => "Rechnungskommentar",
- "invoice_email_message" => "Rechnungsvorlage (Email)",
- "invoice_enable" => "Enable Invoicing",
- "invoice_printer" => "Rechnungsdrucker",
- "invoice_type" => "",
- "is_readable" => "",
- "is_writable" => "is writable, but the permissions are higher than 750.",
- "item_markup" => "",
- "jsprintsetup_required" => "Warnung! Diese Funktion ist nur funktionsfähig",
- "language" => "Sprache",
- "last_used_invoice_number" => "",
- "last_used_quote_number" => "",
- "last_used_work_order_number" => "",
- "left" => "Left",
- "license" => "License",
- "license_configuration" => "License Statement",
- "line_sequence" => "",
- "lines_per_page" => "Zeilen pro Seite",
- "lines_per_page_number" => "Zeilen pro Seite muss eine Zahl sein",
- "lines_per_page_required" => "Zeilen pro Seite ist erforderlich",
- "locale" => "Länder",
- "locale_configuration" => "Länderkonfiguration",
- "locale_info" => "Info Länderkonfiguration",
- "location" => "Lagerort",
- "location_configuration" => "Lagerort",
- "location_info" => "Lagerort-Information",
- "login_form" => "",
- "logout" => "Wollen Sie eine Sicherung machen vor dem Beenden? Klicke [OK] für Sicherung",
- "mailchimp" => "",
- "mailchimp_api_key" => "",
- "mailchimp_configuration" => "",
- "mailchimp_key_successfully" => "",
- "mailchimp_key_unsuccessfully" => "",
- "mailchimp_lists" => "",
- "mailchimp_tooltip" => "",
- "message" => "Message",
- "message_configuration" => "Message Configuration",
- "msg_msg" => "Saved Text Message",
- "msg_msg_placeholder" => "If you wish to use a SMS template save your message here. Otherwise leave the box blank.",
- "msg_pwd" => "SMS-API Password",
- "msg_pwd_required" => "SMS-API Password is a required field",
- "msg_src" => "SMS-API Sender ID",
- "msg_src_required" => "SMS-API Sender ID is a required field",
- "msg_uid" => "SMS-API Username",
- "msg_uid_required" => "SMS-API Username is a required field",
- "multi_pack_enabled" => "",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "none",
- "notify_alignment" => "Notification Popup Position",
- "number_format" => "Zahlenformat",
- "number_locale" => "Länderkonfiguration",
- "number_locale_invalid" => "Die eingegebene Lokale ist falsch. Bitte sehen Sie sich den Link tim Tooltip an um einen korrekten Wert zu finden",
- "number_locale_required" => "Localennummer ist ein Pflichtfeld",
- "number_locale_tooltip" => "Finden Sie eine korrekte Lokale über diesen Link",
- "os_timezone" => "",
- "ospos_info" => "",
- "payment_options_order" => "Payment Options Order",
- "perm_risk" => "Permissions higher than 750 leaves this software at risk.",
- "phone" => "Telefon",
- "phone_required" => "Telefon ist erforderlich",
- "print_bottom_margin" => "Unterer Rand",
- "print_bottom_margin_number" => "Unterer Rand muss eine Zahl sein",
- "print_bottom_margin_required" => "Unterer Rand ist erforderlich",
- "print_delay_autoreturn" => "",
- "print_delay_autoreturn_number" => "",
- "print_delay_autoreturn_required" => "",
- "print_footer" => "Drucke Browser Fusszeile",
- "print_header" => "Drucke Browser Kopfzeile",
- "print_left_margin" => "Rand links",
- "print_left_margin_number" => "Rand links muss eine Zahl sein",
- "print_left_margin_required" => "Rand links ist erforderlich",
- "print_receipt_check_behaviour" => "",
- "print_receipt_check_behaviour_always" => "",
- "print_receipt_check_behaviour_last" => "",
- "print_receipt_check_behaviour_never" => "",
- "print_right_margin" => "Rand rechts",
- "print_right_margin_number" => "Rand rechts muss eine Zahl sein",
- "print_right_margin_required" => "Rand rechts ist erforderlich",
- "print_silently" => "Zeige Druckdialog",
- "print_top_margin" => "Rand oben",
- "print_top_margin_number" => "Rand oben muss eine Zahl sein",
- "print_top_margin_required" => "Rand oben ist erforderlich",
- "quantity_decimals" => "Quantity Decimals",
- "quick_cash_enable" => "",
- "quote_default_comments" => "",
- "receipt" => "Eingang",
- "receipt_category" => "",
- "receipt_configuration" => "Druckereinstellungen",
- "receipt_default" => "Default",
- "receipt_font_size" => "",
- "receipt_font_size_number" => "",
- "receipt_font_size_required" => "",
- "receipt_info" => "Quittungsinformation",
- "receipt_printer" => "Quittungsdrucker",
- "receipt_short" => "Short",
- "receipt_show_company_name" => "",
- "receipt_show_description" => "Show Description",
- "receipt_show_serialnumber" => "Show Serial Number",
- "receipt_show_tax_ind" => "",
- "receipt_show_taxes" => "Zeige MWSt",
- "receipt_show_total_discount" => "Zeige Gesamtrabatt",
- "receipt_template" => "Receipt Template",
- "receiving_calculate_average_price" => "Berechne Durchschnittseinkaufspreis",
- "recv_invoice_format" => "Format Eingangsrechnung",
- "register_mode_default" => "",
- "report_an_issue" => "",
- "return_policy_required" => "Rücknahmepolitik erforderlich",
- "reward" => "",
- "reward_configuration" => "",
- "right" => "Right",
- "sales_invoice_format" => "Format Verkaufsrechnung",
- "sales_quote_format" => "",
- "mailpath_invalid" => "Ungültiger Sendmail-Pfad. Nur Buchstaben, Zahlen, Bindestriche, Unterstriche, Schrägstriche und Punkte sind erlaubt.",
- "saved_successfully" => "Einstellungen erfolgreich gesichert",
- "saved_unsuccessfully" => "Einstellungen konnten nicht gesichert werden",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "Please use the below info for issue reporting.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "",
- "statistics" => "Send statistics",
- "statistics_tooltip" => "Send statistics for development and feature improvement purposes",
- "stock_location" => "Lagerort",
- "stock_location_duplicate" => "Bitte verwenden Sie einen eindeutigen Lagerort",
- "stock_location_invalid_chars" => "Der Lagerort kann keine Unterstriche enthalten",
- "stock_location_required" => "Lagerort Nummer ist erforderlich",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "",
- "suggestions_second_column" => "",
- "suggestions_third_column" => "",
- "system_conf" => "Setup & Conf",
- "system_info" => "System Info",
- "table" => "",
- "table_configuration" => "",
- "takings_printer" => "Takings Printer",
- "tax" => "",
- "tax_category" => "",
- "tax_category_duplicate" => "",
- "tax_category_invalid_chars" => "",
- "tax_category_required" => "",
- "tax_category_used" => "",
- "tax_configuration" => "",
- "tax_decimals" => "Tax Decimals",
- "tax_id" => "",
- "tax_included" => "MWSt inbegriffen",
- "theme" => "Design",
- "theme_preview" => "",
- "thousands_separator" => "Tausendertrennzeichen",
- "timezone" => "Zeitzone",
- "timezone_error" => "",
- "top" => "Top",
- "use_destination_based_tax" => "",
- "user_timezone" => "",
- "website" => "Website",
- "wholesale_markup" => "",
- "work_order_enable" => "",
- "work_order_format" => "",
+ 'address' => 'Adresse',
+ 'address_required' => 'Adresse ist erforderlich',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => '',
+ 'apostrophe' => 'apostrophe',
+ 'backup_button' => 'Sicherung',
+ 'backup_database' => 'Sicherungs-Datenbank',
+ 'barcode' => 'Barcodes',
+ 'barcode_company' => 'Firmenname',
+ 'barcode_configuration' => 'Barcodes',
+ 'barcode_content' => 'Barcode Inhalt',
+ 'barcode_first_row' => 'Erste Zeile',
+ 'barcode_font' => 'Schrift',
+ 'barcode_formats' => '',
+ 'barcode_generate_if_empty' => 'Generiere Barcode wenn leer',
+ 'barcode_height' => 'Höhe',
+ 'barcode_id' => 'Artikel-Nr/Name',
+ 'barcode_info' => 'Barcode Einstellung',
+ 'barcode_layout' => 'Barcode Layout',
+ 'barcode_name' => 'Name',
+ 'barcode_number' => 'UPC/EAN/ISBN',
+ 'barcode_number_in_row' => 'Nummer in Zeile',
+ 'barcode_page_cellspacing' => 'Zellenabstand auf Seite',
+ 'barcode_page_width' => 'Seitenbreite',
+ 'barcode_price' => 'Preis',
+ 'barcode_second_row' => 'Zeile 2',
+ 'barcode_third_row' => 'Zeile 3',
+ 'barcode_tooltip' => '',
+ 'barcode_type' => 'Barcode Typ',
+ 'barcode_width' => 'Breite (px)',
+ 'bottom' => 'Bottom',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => '',
+ 'cash_decimals_tooltip' => '',
+ 'cash_rounding' => '',
+ 'category_dropdown' => '',
+ 'center' => 'Center',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'comma',
+ 'company' => 'Firmenname',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Change Image',
+ 'company_logo' => 'Logo',
+ 'company_remove_image' => 'Remove Image',
+ 'company_required' => 'Firmenname ist erforderlich',
+ 'company_select_image' => 'Select Image',
+ 'company_website_url' => 'Webseite ist nicht in korrektem Format',
+ 'country_codes' => 'Country Codes',
+ 'country_codes_tooltip' => 'Comma separated list of country codes for nominatim address lookup.',
+ 'currency_code' => '',
+ 'currency_decimals' => 'Currency Decimals',
+ 'currency_symbol' => 'Währungssymbol',
+ 'current_employee_only' => '',
+ 'customer_reward' => '',
+ 'customer_reward_duplicate' => '',
+ 'customer_reward_enable' => '',
+ 'customer_reward_invalid_chars' => '',
+ 'customer_reward_required' => '',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => '',
+ 'datetimeformat' => 'Datum und Zeit',
+ 'decimal_point' => 'Dezimaltrennzeichen',
+ 'default_barcode_font_size_number' => 'Die Barcode Schriftgrösse muss eine Zahl sein',
+ 'default_barcode_font_size_required' => 'Die Barcode Schriftgrösse ist erforderlich',
+ 'default_barcode_height_number' => 'Die Barcode Höhe muss eine Zahl sein',
+ 'default_barcode_height_required' => 'Die Barcode Höhe ist erforderlich',
+ 'default_barcode_num_in_row_number' => 'Die Barcode Num muss eine Zahl sein',
+ 'default_barcode_num_in_row_required' => 'Die Barcode Num ist erforderlich',
+ 'default_barcode_page_cellspacing_number' => 'Der Barcode Zellabstand muss eine Zahl sein',
+ 'default_barcode_page_cellspacing_required' => 'Der Barcode Zellabstand ist erforderlich',
+ 'default_barcode_page_width_number' => 'Die Barcode Seitenbreite muss eine Zahl sein',
+ 'default_barcode_page_width_required' => 'Die Barcode Seitenbreite ist erforderlich',
+ 'default_barcode_width_number' => 'Die Barcode Breite muss eine Zahl sein',
+ 'default_barcode_width_required' => 'Die Barcode Breite ist erforderlich',
+ 'default_item_columns' => '',
+ 'default_origin_tax_code' => '',
+ 'default_receivings_discount' => '',
+ 'default_receivings_discount_number' => '',
+ 'default_receivings_discount_required' => '',
+ 'default_sales_discount' => 'Standard Verkaufsrabatt',
+ 'default_sales_discount_number' => 'Der Standard Verkaufsrabatt muss eine Zahl sein',
+ 'default_sales_discount_required' => 'Der Standard Verkaufsrabatt ist erforderlich',
+ 'default_tax_category' => '',
+ 'default_tax_code' => '',
+ 'default_tax_jurisdiction' => '',
+ 'default_tax_name_number' => '',
+ 'default_tax_name_required' => 'The default tax name is a required field',
+ 'default_tax_rate' => 'MWSt %',
+ 'default_tax_rate_1' => 'MWSt 1',
+ 'default_tax_rate_2' => 'MWSt 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'MWSt Rate',
+ 'default_tax_rate_required' => 'MWSt ist erforderlich',
+ 'derive_sale_quantity' => '',
+ 'derive_sale_quantity_tooltip' => '',
+ 'dinner_table' => '',
+ 'dinner_table_duplicate' => '',
+ 'dinner_table_enable' => '',
+ 'dinner_table_invalid_chars' => '',
+ 'dinner_table_required' => '',
+ 'dot' => 'dot',
+ 'email' => 'Email',
+ 'email_configuration' => 'Email Configuration',
+ 'email_mailpath' => 'Path to Sendmail',
+ 'email_protocol' => 'Protocol',
+ 'email_receipt_check_behaviour' => '',
+ 'email_receipt_check_behaviour_always' => '',
+ 'email_receipt_check_behaviour_last' => '',
+ 'email_receipt_check_behaviour_never' => '',
+ 'email_smtp_crypto' => 'SMTP Encryption',
+ 'email_smtp_host' => 'SMTP Server',
+ 'email_smtp_pass' => 'SMTP Password',
+ 'email_smtp_port' => 'SMTP Port',
+ 'email_smtp_timeout' => 'SMTP Timeout (s)',
+ 'email_smtp_user' => 'SMTP Username',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => '',
+ 'enforce_privacy_tooltip' => '',
+ 'fax' => 'Fax',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => '',
+ 'financial_year_apr' => '',
+ 'financial_year_aug' => '',
+ 'financial_year_dec' => '',
+ 'financial_year_feb' => '',
+ 'financial_year_jan' => '',
+ 'financial_year_jul' => '',
+ 'financial_year_jun' => '',
+ 'financial_year_mar' => '',
+ 'financial_year_may' => '',
+ 'financial_year_nov' => '',
+ 'financial_year_oct' => '',
+ 'financial_year_sep' => '',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => '',
+ 'gcaptcha_secret_key' => '',
+ 'gcaptcha_secret_key_required' => '',
+ 'gcaptcha_site_key' => '',
+ 'gcaptcha_site_key_required' => '',
+ 'gcaptcha_tooltip' => '',
+ 'general' => 'Einstellungen',
+ 'general_configuration' => 'Einstellungen',
+ 'giftcard_number' => '',
+ 'giftcard_random' => '',
+ 'giftcard_series' => '',
+ 'image_allowed_file_types' => '',
+ 'image_max_height_tooltip' => '',
+ 'image_max_size_tooltip' => '',
+ 'image_max_width_tooltip' => '',
+ 'image_restrictions' => '',
+ 'include_hsn' => '',
+ 'info' => 'Instellungen',
+ 'info_configuration' => 'Instellungen',
+ 'input_groups' => '',
+ 'integrations' => '',
+ 'integrations_configuration' => '',
+ 'invoice' => 'Rechnungs',
+ 'invoice_configuration' => 'Druckereinstellungen',
+ 'invoice_default_comments' => 'Rechnungskommentar',
+ 'invoice_email_message' => 'Rechnungsvorlage (Email)',
+ 'invoice_enable' => 'Enable Invoicing',
+ 'invoice_printer' => 'Rechnungsdrucker',
+ 'invoice_type' => '',
+ 'is_readable' => '',
+ 'is_writable' => 'is writable, but the permissions are higher than 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Warnung! Diese Funktion ist nur funktionsfähig',
+ 'language' => 'Sprache',
+ 'last_used_invoice_number' => '',
+ 'last_used_quote_number' => '',
+ 'last_used_work_order_number' => '',
+ 'left' => 'Left',
+ 'license' => 'License',
+ 'license_configuration' => 'License Statement',
+ 'line_sequence' => '',
+ 'lines_per_page' => 'Zeilen pro Seite',
+ 'lines_per_page_number' => 'Zeilen pro Seite muss eine Zahl sein',
+ 'lines_per_page_required' => 'Zeilen pro Seite ist erforderlich',
+ 'locale' => 'Länder',
+ 'locale_configuration' => 'Länderkonfiguration',
+ 'locale_info' => 'Info Länderkonfiguration',
+ 'location' => 'Lagerort',
+ 'location_configuration' => 'Lagerort',
+ 'location_info' => 'Lagerort-Information',
+ 'login_form' => '',
+ 'logout' => 'Wollen Sie eine Sicherung machen vor dem Beenden? Klicke [OK] für Sicherung',
+ 'mailchimp' => '',
+ 'mailchimp_api_key' => '',
+ 'mailchimp_configuration' => '',
+ 'mailchimp_key_successfully' => '',
+ 'mailchimp_key_unsuccessfully' => '',
+ 'mailchimp_lists' => '',
+ 'mailchimp_tooltip' => '',
+ 'message' => 'Message',
+ 'message_configuration' => 'Message Configuration',
+ 'msg_msg' => 'Saved Text Message',
+ 'msg_msg_placeholder' => 'If you wish to use a SMS template save your message here. Otherwise leave the box blank.',
+ 'msg_pwd' => 'SMS-API Password',
+ 'msg_pwd_required' => 'SMS-API Password is a required field',
+ 'msg_src' => 'SMS-API Sender ID',
+ 'msg_src_required' => 'SMS-API Sender ID is a required field',
+ 'msg_uid' => 'SMS-API Username',
+ 'msg_uid_required' => 'SMS-API Username is a required field',
+ 'multi_pack_enabled' => '',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => 'none',
+ 'notify_alignment' => 'Notification Popup Position',
+ 'number_format' => 'Zahlenformat',
+ 'number_locale' => 'Länderkonfiguration',
+ 'number_locale_invalid' => 'Die eingegebene Lokale ist falsch. Bitte sehen Sie sich den Link tim Tooltip an um einen korrekten Wert zu finden',
+ 'number_locale_required' => 'Localennummer ist ein Pflichtfeld',
+ 'number_locale_tooltip' => 'Finden Sie eine korrekte Lokale über diesen Link',
+ 'os_timezone' => '',
+ 'ospos_info' => '',
+ 'payment_options_order' => 'Payment Options Order',
+ 'payment_reference_code_length_limits' => 'Zahlungsreferenzcode
Längenbeschränkungen',
+ 'payment_reference_code_length_max_label' => 'Max',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => 'Permissions higher than 750 leaves this software at risk.',
+ 'phone' => 'Telefon',
+ 'phone_required' => 'Telefon ist erforderlich',
+ 'print_bottom_margin' => 'Unterer Rand',
+ 'print_bottom_margin_number' => 'Unterer Rand muss eine Zahl sein',
+ 'print_bottom_margin_required' => 'Unterer Rand ist erforderlich',
+ 'print_delay_autoreturn' => '',
+ 'print_delay_autoreturn_number' => '',
+ 'print_delay_autoreturn_required' => '',
+ 'print_footer' => 'Drucke Browser Fusszeile',
+ 'print_header' => 'Drucke Browser Kopfzeile',
+ 'print_left_margin' => 'Rand links',
+ 'print_left_margin_number' => 'Rand links muss eine Zahl sein',
+ 'print_left_margin_required' => 'Rand links ist erforderlich',
+ 'print_receipt_check_behaviour' => '',
+ 'print_receipt_check_behaviour_always' => '',
+ 'print_receipt_check_behaviour_last' => '',
+ 'print_receipt_check_behaviour_never' => '',
+ 'print_right_margin' => 'Rand rechts',
+ 'print_right_margin_number' => 'Rand rechts muss eine Zahl sein',
+ 'print_right_margin_required' => 'Rand rechts ist erforderlich',
+ 'print_silently' => 'Zeige Druckdialog',
+ 'print_top_margin' => 'Rand oben',
+ 'print_top_margin_number' => 'Rand oben muss eine Zahl sein',
+ 'print_top_margin_required' => 'Rand oben ist erforderlich',
+ 'quantity_decimals' => 'Quantity Decimals',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => '',
+ 'receipt' => 'Eingang',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Druckereinstellungen',
+ 'receipt_default' => 'Default',
+ 'receipt_font_size' => '',
+ 'receipt_font_size_number' => '',
+ 'receipt_font_size_required' => '',
+ 'receipt_info' => 'Quittungsinformation',
+ 'receipt_printer' => 'Quittungsdrucker',
+ 'receipt_short' => 'Short',
+ 'receipt_show_company_name' => '',
+ 'receipt_show_description' => 'Show Description',
+ 'receipt_show_serialnumber' => 'Show Serial Number',
+ 'receipt_show_tax_ind' => '',
+ 'receipt_show_taxes' => 'Zeige MWSt',
+ 'receipt_show_total_discount' => 'Zeige Gesamtrabatt',
+ 'receipt_template' => 'Receipt Template',
+ 'receiving_calculate_average_price' => 'Berechne Durchschnittseinkaufspreis',
+ 'recv_invoice_format' => 'Format Eingangsrechnung',
+ 'register_mode_default' => '',
+ 'report_an_issue' => '',
+ 'return_policy_required' => 'Rücknahmepolitik erforderlich',
+ 'reward' => '',
+ 'reward_configuration' => '',
+ 'right' => 'Right',
+ 'sales_invoice_format' => 'Format Verkaufsrechnung',
+ 'sales_quote_format' => '',
+ 'mailpath_invalid' => 'Ungültiger Sendmail-Pfad. Nur Buchstaben, Zahlen, Bindestriche, Unterstriche, Schrägstriche und Punkte sind erlaubt.',
+ 'saved_successfully' => 'Einstellungen erfolgreich gesichert',
+ 'saved_unsuccessfully' => 'Einstellungen konnten nicht gesichert werden',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Please use the below info for issue reporting.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => '',
+ 'statistics' => 'Send statistics',
+ 'statistics_tooltip' => 'Send statistics for development and feature improvement purposes',
+ 'stock_location' => 'Lagerort',
+ 'stock_location_duplicate' => 'Bitte verwenden Sie einen eindeutigen Lagerort',
+ 'stock_location_invalid_chars' => 'Der Lagerort kann keine Unterstriche enthalten',
+ 'stock_location_required' => 'Lagerort Nummer ist erforderlich',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => '',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => '',
+ 'suggestions_second_column' => '',
+ 'suggestions_third_column' => '',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => '',
+ 'table_configuration' => '',
+ 'takings_printer' => 'Takings Printer',
+ 'tax' => '',
+ 'tax_category' => '',
+ 'tax_category_duplicate' => '',
+ 'tax_category_invalid_chars' => '',
+ 'tax_category_required' => '',
+ 'tax_category_used' => '',
+ 'tax_configuration' => '',
+ 'tax_decimals' => 'Tax Decimals',
+ 'tax_id' => '',
+ 'tax_included' => 'MWSt inbegriffen',
+ 'theme' => 'Design',
+ 'theme_preview' => '',
+ 'thousands_separator' => 'Tausendertrennzeichen',
+ 'timezone' => 'Zeitzone',
+ 'timezone_error' => '',
+ 'top' => 'Top',
+ 'use_destination_based_tax' => '',
+ 'user_timezone' => '',
+ 'website' => 'Website',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => '',
+ 'work_order_format' => '',
];
diff --git a/app/Language/de-CH/Login.php b/app/Language/de-CH/Login.php
index 15b565a62..43cdbee87 100644
--- a/app/Language/de-CH/Login.php
+++ b/app/Language/de-CH/Login.php
@@ -1,25 +1,30 @@
"",
- "go" => "Start",
- "invalid_gcaptcha" => "",
- "invalid_installation" => "",
- "invalid_username_and_password" => "Ungültiger Benutzername/Passwort",
- "login" => "Login",
- "logout" => "Abmelden",
- "migration_needed" => "Eine Datenbank-Migration auf {0} wird nach der Anmeldung gestartet.",
- "migration_required" => "Datenbank-Migration erforderlich",
- "migration_auth_message" => "Administrator-Anmeldedaten sind erforderlich, um die Datenbank-Migration auf Version {0} zu autorisieren. Bitte melden Sie sich an, um fortzufahren.",
- "migration_initializing" => "Datenbank wird initialisiert",
- "migration_running" => "Datenbank-Migrationen werden ausgeführt...",
- "migration_complete" => "Datenbank erfolgreich initialisiert!",
- "migration_complete_login" => "Sie können sich jetzt anmelden.",
- "migration_failed" => "Migration fehlgeschlagen",
- "migration_error_connection" => "Verbindungsfehler. Bitte versuchen Sie es erneut.",
- "migration_complete_redirect" => "Migration abgeschlossen. Weiterleitung zur Anmeldung...",
- "password" => "Passwort",
- "required_username" => "Das Feld Benutzername ist erforderlich.",
- "username" => "Benutzername",
- "welcome" => "Willkommen bei {0}!",
+ "gcaptcha" => "",
+ "go" => "Start",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "",
+ "invalid_installation" => "",
+ "invalid_username_and_password" => "Ungültiger Benutzername/Passwort",
+ "login" => "Login",
+ "logout" => "Abmelden",
+ "migrating_database" => "Datenbank wird migriert",
+ "migration_auth_message" => "Administrator-Anmeldedaten sind erforderlich, um die Datenbank-Migration auf Version {0} zu autorisieren. Bitte melden Sie sich an, um fortzufahren.",
+ "migration_complete" => "Datenbank erfolgreich initialisiert!",
+ "migration_complete_login" => "Sie können sich jetzt anmelden.",
+ "migration_complete_migrate" => "Datenbank erfolgreich migriert!",
+ "migration_complete_redirect" => "Migration abgeschlossen. Weiterleitung zur Anmeldung...",
+ "migration_error_connection" => "Verbindungsfehler. Bitte versuchen Sie es erneut.",
+ "migration_failed" => "Migration fehlgeschlagen",
+ "migration_initializing" => "Datenbank wird initialisiert",
+ "migration_needed" => "Eine Datenbank-Migration auf {0} wird nach der Anmeldung gestartet.",
+ "migration_required" => "Datenbank-Migration erforderlich",
+ "migration_running" => "Datenbank-Migrationen werden ausgeführt...",
+ "password" => "Passwort",
+ "required_username" => "Das Feld Benutzername ist erforderlich.",
+ "username" => "Benutzername",
+ "welcome" => "Willkommen bei {0}!"
];
diff --git a/app/Language/de-CH/Sales.php b/app/Language/de-CH/Sales.php
index e23ad70ce..f774b4ad6 100644
--- a/app/Language/de-CH/Sales.php
+++ b/app/Language/de-CH/Sales.php
@@ -1,231 +1,235 @@
"",
- "rewards_package" => "",
- "rewards_remaining_balance" => "",
- "account_number" => "",
- "add_payment" => "Zahlung",
- "amount_due" => "fälliger Betrag",
- "amount_tendered" => "Erhalten",
- "authorized_signature" => "",
- "cancel_sale" => "Annullieren",
- "cash" => "Bar",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "",
- "cash_deposit" => "",
- "cash_filter" => "Bar",
- "change_due" => "Wechselgeld",
- "change_price" => "",
- "check" => "Scheck",
- "check_balance" => "Scheck-Differenz",
- "check_filter" => "",
- "close" => "",
- "comment" => "Bemerkung",
- "comments" => "Bemerkungen",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Abschliessen",
- "confirm_cancel_sale" => "Wollen Sie diesen Verkauf abschliessen? Alle Artikeleinträge werden entfernt",
- "confirm_delete" => "Wollen Sie die gewählten Aufträge löschen?",
- "confirm_restore" => "",
- "credit" => "Kreditkarte",
- "credit_deposit" => "",
- "credit_filter" => "",
- "current_table" => "",
- "customer" => "Kunde",
- "customer_address" => "Customer Address",
- "customer_discount" => "Discount",
- "customer_email" => "Customer Email",
- "customer_location" => "Customer Location",
- "customer_mailchimp_status" => "",
- "customer_optional" => "",
- "customer_required" => "",
- "customer_total" => "Total",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Datum",
- "date_range" => "Zeitrahmen",
- "date_required" => "Ein korrektas Datum ist erforderlich",
- "date_type" => "Datum ist erforderlich",
- "debit" => "Debitkarte",
- "debit_filter" => "",
- "delete" => "",
- "delete_confirmation" => "Wollen Sie diesen Auftrag löschen? Rückgängig unmöglich",
- "delete_entire_sale" => "Auftrag löschen",
- "delete_successful" => "Löschung erfolgreich",
- "delete_unsuccessful" => "Löschung nicht erfolgreich",
- "description_abbrv" => "Bez.",
- "discard" => "",
- "discard_quote" => "",
- "discount" => "%",
- "discount_included" => "Rabatt %",
- "discount_short" => "%",
- "due" => "",
- "due_filter" => "",
- "edit" => "Ändern",
- "edit_item" => "Ändere Art.",
- "edit_sale" => "Auftrag ändern",
- "email_receipt" => "Quittung per Email",
- "employee" => "Mitarbeiter",
- "entry" => "",
- "error_editing_item" => "Fehler beim Ändern des Artikels",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Finde/Scanne Artikel",
- "find_or_scan_item_or_receipt" => "Finde/Scanne Artikel oder Quittung",
- "giftcard" => "Gutschein",
- "giftcard_balance" => "Gutschein Restwert",
- "giftcard_filter" => "",
- "giftcard_number" => "Gutschein Nr.",
- "group_by_category" => "",
- "group_by_type" => "",
- "hsn" => "",
- "id" => "ID",
- "include_prices" => "",
- "invoice" => "Rechnung",
- "invoice_confirm" => "Diese rechnung wird gesendet an",
- "invoice_enable" => "Erzeuge Rechnung",
- "invoice_filter" => "Rechnungen",
- "invoice_no_email" => "Dieser Kunde hat keine gültige Email Adresse",
- "invoice_number" => "Rechnungs-Nr.",
- "invoice_number_duplicate" => "Bitte geben Sie eine eindeutige Rechnungsnummer ein",
- "invoice_sent" => "Rechnung gesendet an",
- "invoice_total" => "",
- "invoice_type_custom_invoice" => "",
- "invoice_type_custom_tax_invoice" => "",
- "invoice_type_invoice" => "",
- "invoice_type_tax_invoice" => "",
- "invoice_unsent" => "Rechnung nicht gesendet",
- "invoice_update" => "Aktualisieren",
- "item_insufficient_of_stock" => "Artikel hat Unterbestand",
- "item_name" => "Artikelname",
- "item_number" => "Artikel-Nr.",
- "item_out_of_stock" => "Artikel ist nicht am Lager",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "Verkaufstyp",
- "must_enter_numeric" => "Eingabe muss eine Zahl sein",
- "must_enter_numeric_giftcard" => "Gutschein-Nr. muss eine Zahl sein",
- "new_customer" => "Neuer Kunde",
- "new_item" => "Neuer Artikel",
- "no_description" => "nichts",
- "no_filter" => "Alle",
- "no_items_in_cart" => "Warenkorb ist leer",
- "no_sales_to_display" => "Keine Artikel zum Anzeigen",
- "none_selected" => "Sie haben keinen Auftrag zum Löschen ausgewählt",
- "nontaxed_ind" => "",
- "not_authorized" => "",
- "one_or_multiple" => "Verkäufe",
- "payment" => "Zahlungsart",
- "payment_amount" => "Betrag",
- "payment_not_cover_total" => "Betrag deckt Rechnungsbetrag nicht",
- "payment_type" => "Typ",
- "payments" => "",
- "payments_total" => "Zahlung Total",
- "price" => "Preis",
- "print_after_sale" => "Drucke Bon nach Verkauf",
- "quantity" => "Menge",
- "quantity_less_than_reorder_level" => "Warnung: Gewünschte Menge ist nicht verfügbar.",
- "quantity_less_than_zero" => "Warnung: Gewünschte Menge ist nicht verfügbar. Sie können den Verkauf fortsetzen, dennoch prüfen Sie bitte den Lagerbestand.",
- "quantity_of_items" => "",
- "quote" => "",
- "quote_number" => "",
- "quote_number_duplicate" => "",
- "quote_sent" => "",
- "quote_unsent" => "",
- "receipt" => "Quittung",
- "receipt_no_email" => "",
- "receipt_number" => "Quittung Nr.",
- "receipt_sent" => "Quittung gesendet an",
- "receipt_unsent" => "Quittung nicht gesendet",
- "refund" => "",
- "register" => "Kasse",
- "remove_customer" => "Entferne Kunde",
- "remove_discount" => "",
- "return" => "Retoure",
- "rewards" => "",
- "rewards_balance" => "",
- "sale" => "Verkauf",
- "sale_by_invoice" => "",
- "sale_for_customer" => "Kunde:",
- "sale_time" => "Zeit",
- "sales_tax" => "",
- "sales_total" => "",
- "select_customer" => "Wähle Kunde (optional)",
- "send_invoice" => "Sende Rechnung",
- "send_quote" => "",
- "send_receipt" => "Sende Quittung",
- "send_work_order" => "",
- "serial" => "Seriennummer",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Rechnung",
- "show_receipt" => "Quittung",
- "start_typing_customer_name" => "Geben Sie den Kundennamen ein...",
- "start_typing_item_name" => "Geben Sie den Artikel ein oder scannen Sie ihn...",
- "stock" => "",
- "stock_location" => "Lagerort",
- "sub_total" => "Zwischentotal",
- "successfully_deleted" => "Löschung erfolgreich",
- "successfully_restored" => "",
- "successfully_suspended_sale" => "Auftrag wurde erfolgreich pendent gehalten",
- "successfully_updated" => "Änderung erfolgreich",
- "suspend_sale" => "->Pendent",
- "suspended_doc_id" => "",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Pendente Aufträge",
- "table" => "",
- "takings" => "Einnahmen",
- "tax" => "MWSt",
- "tax_id" => "",
- "tax_invoice" => "",
- "tax_percent" => "MWSt %",
- "taxed_ind" => "",
- "total" => "Total",
- "total_tax_exclusive" => "Total exkl. MWSt.",
- "transaction_failed" => "Verarbeitung fehlerhaft",
- "unable_to_add_item" => "Kann Artikel nicht zum Auftrag hinzufügen",
- "unsuccessfully_deleted" => "Löschung nicht erfolgreich",
- "unsuccessfully_restored" => "",
- "unsuccessfully_suspended_sale" => "Auftrag wurde erfolgreich pendent gehalten",
- "unsuccessfully_updated" => "Änderung nicht erfolgreich",
- "unsuspend" => "Aktivieren",
- "unsuspend_and_delete" => "Aktivieren und löschen",
- "update" => "Ändern",
- "upi" => "",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "",
- "work_order_number" => "",
- "work_order_number_duplicate" => "",
- "work_order_sent" => "",
- "work_order_unsent" => "",
+ 'account_number' => '',
+ 'add_payment' => 'Zahlung',
+ 'amount_due' => 'fälliger Betrag',
+ 'amount_tendered' => 'Erhalten',
+ 'authorized_signature' => '',
+ 'cancel_sale' => 'Annullieren',
+ 'cash' => 'Bar',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => '',
+ 'cash_deposit' => '',
+ 'cash_filter' => 'Bar',
+ 'change_due' => 'Wechselgeld',
+ 'change_price' => '',
+ 'check' => 'Scheck',
+ 'check_balance' => 'Scheck-Differenz',
+ 'check_filter' => '',
+ 'close' => '',
+ 'comment' => 'Bemerkung',
+ 'comments' => 'Bemerkungen',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Abschliessen',
+ 'confirm_cancel_sale' => 'Wollen Sie diesen Verkauf abschliessen? Alle Artikeleinträge werden entfernt',
+ 'confirm_delete' => 'Wollen Sie die gewählten Aufträge löschen?',
+ 'confirm_restore' => '',
+ 'credit' => 'Kreditkarte',
+ 'credit_deposit' => '',
+ 'credit_filter' => '',
+ 'current_table' => '',
+ 'customer' => 'Kunde',
+ 'customer_address' => 'Customer Address',
+ 'customer_discount' => 'Discount',
+ 'customer_email' => 'Customer Email',
+ 'customer_location' => 'Customer Location',
+ 'customer_mailchimp_status' => '',
+ 'customer_optional' => '',
+ 'customer_required' => '',
+ 'customer_total' => 'Total',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => '',
+ 'daily_sales' => '',
+ 'date' => 'Datum',
+ 'date_range' => 'Zeitrahmen',
+ 'date_required' => 'Ein korrektas Datum ist erforderlich',
+ 'date_type' => 'Datum ist erforderlich',
+ 'debit' => 'Debitkarte',
+ 'debit_filter' => '',
+ 'delete' => '',
+ 'delete_confirmation' => 'Wollen Sie diesen Auftrag löschen? Rückgängig unmöglich',
+ 'delete_entire_sale' => 'Auftrag löschen',
+ 'delete_successful' => 'Löschung erfolgreich',
+ 'delete_unsuccessful' => 'Löschung nicht erfolgreich',
+ 'description_abbrv' => 'Bez.',
+ 'discard' => '',
+ 'discard_quote' => '',
+ 'discount' => '%',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => 'Rabatt %',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => '',
+ 'due_filter' => '',
+ 'edit' => 'Ändern',
+ 'edit_item' => 'Ändere Art.',
+ 'edit_sale' => 'Auftrag ändern',
+ 'email_receipt' => 'Quittung per Email',
+ 'employee' => 'Mitarbeiter',
+ 'entry' => '',
+ 'error_editing_item' => 'Fehler beim Ändern des Artikels',
+ 'find_or_scan_item' => 'Finde/Scanne Artikel',
+ 'find_or_scan_item_or_receipt' => 'Finde/Scanne Artikel oder Quittung',
+ 'giftcard' => 'Gutschein',
+ 'giftcard_balance' => 'Gutschein Restwert',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Gutschein Nr.',
+ 'group_by_category' => '',
+ 'group_by_type' => '',
+ 'hsn' => '',
+ 'id' => 'ID',
+ 'include_prices' => '',
+ 'invoice' => 'Rechnung',
+ 'invoice_confirm' => 'Diese rechnung wird gesendet an',
+ 'invoice_enable' => 'Erzeuge Rechnung',
+ 'invoice_filter' => 'Rechnungen',
+ 'invoice_no_email' => 'Dieser Kunde hat keine gültige Email Adresse',
+ 'invoice_number' => 'Rechnungs-Nr.',
+ 'invoice_number_duplicate' => 'Bitte geben Sie eine eindeutige Rechnungsnummer ein',
+ 'invoice_sent' => 'Rechnung gesendet an',
+ 'invoice_total' => '',
+ 'invoice_type_custom_invoice' => '',
+ 'invoice_type_custom_tax_invoice' => '',
+ 'invoice_type_invoice' => '',
+ 'invoice_type_tax_invoice' => '',
+ 'invoice_unsent' => 'Rechnung nicht gesendet',
+ 'invoice_update' => 'Aktualisieren',
+ 'item_insufficient_of_stock' => 'Artikel hat Unterbestand',
+ 'item_name' => 'Artikelname',
+ 'item_number' => 'Artikel-Nr.',
+ 'item_out_of_stock' => 'Artikel ist nicht am Lager',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'Verkaufstyp',
+ 'must_enter_numeric' => 'Eingabe muss eine Zahl sein',
+ 'must_enter_numeric_giftcard' => 'Gutschein-Nr. muss eine Zahl sein',
+ 'must_enter_reference_code' => 'Referenz-/Abrufnummer muss eingegeben werden.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Neuer Kunde',
+ 'new_item' => 'Neuer Artikel',
+ 'no_description' => 'nichts',
+ 'no_filter' => 'Alle',
+ 'no_items_in_cart' => 'Warenkorb ist leer',
+ 'no_sales_to_display' => 'Keine Artikel zum Anzeigen',
+ 'none_selected' => 'Sie haben keinen Auftrag zum Löschen ausgewählt',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => '',
+ 'one_or_multiple' => 'Verkäufe',
+ 'payment' => 'Zahlungsart',
+ 'payment_amount' => 'Betrag',
+ 'payment_not_cover_total' => 'Betrag deckt Rechnungsbetrag nicht',
+ 'payment_type' => 'Typ',
+ 'payments' => '',
+ 'payments_total' => 'Zahlung Total',
+ 'price' => 'Preis',
+ 'print_after_sale' => 'Drucke Bon nach Verkauf',
+ 'quantity' => 'Menge',
+ 'quantity_less_than_reorder_level' => 'Warnung: Gewünschte Menge ist nicht verfügbar.',
+ 'quantity_less_than_zero' => 'Warnung: Gewünschte Menge ist nicht verfügbar. Sie können den Verkauf fortsetzen, dennoch prüfen Sie bitte den Lagerbestand.',
+ 'quantity_of_items' => '',
+ 'quote' => '',
+ 'quote_number' => '',
+ 'quote_number_duplicate' => '',
+ 'quote_sent' => '',
+ 'quote_unsent' => '',
+ 'receipt' => 'Quittung',
+ 'receipt_no_email' => '',
+ 'receipt_number' => 'Quittung Nr.',
+ 'receipt_sent' => 'Quittung gesendet an',
+ 'receipt_unsent' => 'Quittung nicht gesendet',
+ 'reference_code' => 'Zahlungsreferenzcode',
+ 'reference_code_invalid_characters' => 'Der Referenzcode darf nur Buchstaben und Zahlen enthalten.',
+ 'reference_code_length_error' => 'Die Länge des Referenzcodes ist ungültig.',
+ 'refund' => '',
+ 'register' => 'Kasse',
+ 'remove_customer' => 'Entferne Kunde',
+ 'remove_discount' => '',
+ 'return' => 'Retoure',
+ 'rewards' => '',
+ 'rewards_balance' => '',
+ 'rewards_package' => '',
+ 'rewards_remaining_balance' => '',
+ 'sale' => 'Verkauf',
+ 'sale_by_invoice' => '',
+ 'sale_for_customer' => 'Kunde:',
+ 'sale_time' => 'Zeit',
+ 'sales_tax' => '',
+ 'sales_total' => '',
+ 'select_customer' => 'Wähle Kunde (optional)',
+ 'send_invoice' => 'Sende Rechnung',
+ 'send_quote' => '',
+ 'send_receipt' => 'Sende Quittung',
+ 'send_work_order' => '',
+ 'serial' => 'Seriennummer',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Rechnung',
+ 'show_receipt' => 'Quittung',
+ 'start_typing_customer_name' => 'Geben Sie den Kundennamen ein...',
+ 'start_typing_item_name' => 'Geben Sie den Artikel ein oder scannen Sie ihn...',
+ 'stock' => '',
+ 'stock_location' => 'Lagerort',
+ 'sub_total' => 'Zwischentotal',
+ 'successfully_deleted' => 'Löschung erfolgreich',
+ 'successfully_restored' => '',
+ 'successfully_suspended_sale' => 'Auftrag wurde erfolgreich pendent gehalten',
+ 'successfully_updated' => 'Änderung erfolgreich',
+ 'suspend_sale' => '->Pendent',
+ 'suspended_doc_id' => '',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Pendente Aufträge',
+ 'table' => '',
+ 'takings' => 'Einnahmen',
+ 'tax' => 'MWSt',
+ 'tax_id' => '',
+ 'tax_invoice' => '',
+ 'tax_percent' => 'MWSt %',
+ 'taxed_ind' => '',
+ 'total' => 'Total',
+ 'total_tax_exclusive' => 'Total exkl. MWSt.',
+ 'transaction_failed' => 'Verarbeitung fehlerhaft',
+ 'unable_to_add_item' => 'Kann Artikel nicht zum Auftrag hinzufügen',
+ 'unsuccessfully_deleted' => 'Löschung nicht erfolgreich',
+ 'unsuccessfully_restored' => '',
+ 'unsuccessfully_suspended_sale' => 'Auftrag wurde erfolgreich pendent gehalten',
+ 'unsuccessfully_updated' => 'Änderung nicht erfolgreich',
+ 'unsuspend' => 'Aktivieren',
+ 'unsuspend_and_delete' => 'Aktivieren und löschen',
+ 'update' => 'Ändern',
+ 'upi' => '',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => '',
+ 'work_order_number' => '',
+ 'work_order_number_duplicate' => '',
+ 'work_order_sent' => '',
+ 'work_order_unsent' => '',
];
diff --git a/app/Language/de-DE/Config.php b/app/Language/de-DE/Config.php
index d52077369..cccf7c4bd 100644
--- a/app/Language/de-DE/Config.php
+++ b/app/Language/de-DE/Config.php
@@ -1,332 +1,335 @@
"Adresse",
- "address_required" => "Adresse ist erforderlich.",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "Erlaube doppelte Barcodes",
- "apostrophe" => "Apostroph",
- "backup_button" => "Sicherung",
- "backup_database" => "Sicherungs-Datenbank",
- "barcode" => "Barcodes",
- "barcode_company" => "Firmenname",
- "barcode_configuration" => "Barcodes",
- "barcode_content" => "Barcode Inhalt",
- "barcode_first_row" => "Erste Zeile",
- "barcode_font" => "Schrift",
- "barcode_formats" => "Eingabeformate",
- "barcode_generate_if_empty" => "Generiere Barcode wenn leer.",
- "barcode_height" => "Höhe",
- "barcode_id" => "Artikel-Nr/Name",
- "barcode_info" => "Barcode Einstellung",
- "barcode_layout" => "Barcode-Layout",
- "barcode_name" => "Name",
- "barcode_number" => "UPC/EAN/ISBN",
- "barcode_number_in_row" => "Nummer in Zeile",
- "barcode_page_cellspacing" => "Zellenabstand auf Seite.",
- "barcode_page_width" => "Seitenbreite",
- "barcode_price" => "Preis",
- "barcode_second_row" => "Zeile 2",
- "barcode_third_row" => "Zeile 3",
- "barcode_tooltip" => "Warnung: Diese Funktion kann dazu führen, dass doppelte Elemente importiert oder erstellt werden. Nicht verwenden, wenn Sie keine doppelten Barcodes wünschen.",
- "barcode_type" => "Barcode Typ",
- "barcode_width" => "Breite (px)",
- "bottom" => "Unten",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Bargeld Dezimalstellen",
- "cash_decimals_tooltip" => "Wenn Währung und Bargeld die gleiche Anzahl Dezimalstellen haben, wird nicht gerundet.",
- "cash_rounding" => "Bargeld Rundung",
- "category_dropdown" => "",
- "center" => "Mitte",
- "change_apperance_tooltip" => "",
- "comma" => "Komma",
- "company" => "Firmenname",
- "company_avatar" => "",
- "company_change_image" => "Bild ändern",
- "company_logo" => "Logo",
- "company_remove_image" => "Bild löschen",
- "company_required" => "Firmenname ist erforderlich",
- "company_select_image" => "Bild auswählen",
- "company_website_url" => "Webseite ist nicht in korrektem Format (http://...).",
- "country_codes" => "Ländercodes",
- "country_codes_tooltip" => "Kommagetrennte Liste der Ländercodes für den Adressvergleich.",
- "currency_code" => "Währungscode",
- "currency_decimals" => "Währungsdezimalzahlen",
- "currency_symbol" => "Währungssymbol",
- "current_employee_only" => "",
- "customer_reward" => "Prämie",
- "customer_reward_duplicate" => "Die Prämie muss eindeutig sein.",
- "customer_reward_enable" => "Kundenprämien aktivieren",
- "customer_reward_invalid_chars" => "Eine Prämie darf kein '_' enthalten",
- "customer_reward_required" => "Prämie ist erforderlich",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "Datum und Uhrzeit Filter",
- "datetimeformat" => "Datum und Zeit Format",
- "decimal_point" => "Dezimaltrennzeichen",
- "default_barcode_font_size_number" => "Standard Barcode Schriftgröße muss eine Zahl sein.",
- "default_barcode_font_size_required" => "Standard Barcode Schriftgröße ist erforderlich.",
- "default_barcode_height_number" => "Standard Barcode Höhe muss eine Zahl sein.",
- "default_barcode_height_required" => "Standard Barcode Höhe ist erforderlich.",
- "default_barcode_num_in_row_number" => "Standard Barcode Nummer muss eine Zahl sein.",
- "default_barcode_num_in_row_required" => "Die Barcode Nummer ist erforderlich.",
- "default_barcode_page_cellspacing_number" => "Standard Barcode Zellabstand muss eine Zahl sein.",
- "default_barcode_page_cellspacing_required" => "Der Barcode Zellabstand ist erforderlich.",
- "default_barcode_page_width_number" => "Standard Barcode Seitenbreite muss eine Zahl sein.",
- "default_barcode_page_width_required" => "Die Barcode Seitenbreite ist erforderlich.",
- "default_barcode_width_number" => "Standard Barcode Breite muss eine Zahl sein.",
- "default_barcode_width_required" => "Standard Barcode Breite ist erforderlich.",
- "default_item_columns" => "Standardmäßig sichtbare Spalten für Artikel",
- "default_origin_tax_code" => "Standard Steuer Kürzel",
- "default_receivings_discount" => "Standard Rabatt für Eingänge",
- "default_receivings_discount_number" => "Standard Rabatt für Eingänge muss eine Zahl sein.",
- "default_receivings_discount_required" => "Standard Rabatt für Eingänge ist erforderlich.",
- "default_sales_discount" => "Standard Verkaufsrabatt",
- "default_sales_discount_number" => "Der Standard Verkaufsrabatt muss eine Zahl sein.",
- "default_sales_discount_required" => "Der Standard Verkaufsrabatt ist erforderlich.",
- "default_tax_category" => "Standard-Steuerkategorie",
- "default_tax_code" => "Standard Steuercode",
- "default_tax_jurisdiction" => "Standard Steuerbehörde",
- "default_tax_name_number" => "Standard Steuer Name muss ein String sein.",
- "default_tax_name_required" => "Standardsteuerfeld ist erforderlich.",
- "default_tax_rate" => "MWSt %",
- "default_tax_rate_1" => "MWSt 1",
- "default_tax_rate_2" => "MWSt 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Standard Steuersatz muss eine Zahl sein.",
- "default_tax_rate_required" => "Standard Steuersatz ist erforderlich.",
- "derive_sale_quantity" => "Aus Gesamtbetrag abgeleitete Verkaufsmengen",
- "derive_sale_quantity_tooltip" => "Falls ausgewählt wird ein neuer Artikeltyp für nach Gesamtbetrag bestellte Artikel bereitgestellt",
- "dinner_table" => "Tisch",
- "dinner_table_duplicate" => "Tisch muss eindeutig sein.",
- "dinner_table_enable" => "Esstische aktivieren",
- "dinner_table_invalid_chars" => "Tischname darf kein '_' enthalten.",
- "dinner_table_required" => "Tisch wird benötigt.",
- "dot" => "Punkt",
- "email" => "eMail",
- "email_configuration" => "Email Konfiguration",
- "email_mailpath" => "Pfad zu Sendmail",
- "email_protocol" => "Protokoll",
- "email_receipt_check_behaviour" => "Kontrollkästchen E-Mail-Empfangsbestätigung",
- "email_receipt_check_behaviour_always" => "Immer ausgewählt",
- "email_receipt_check_behaviour_last" => "Letzte Auswahl speichern",
- "email_receipt_check_behaviour_never" => "Nie ausgewählt",
- "email_smtp_crypto" => "SMTP Verschlüsselung",
- "email_smtp_host" => "SMTP-Server",
- "email_smtp_pass" => "SMTP Passwort",
- "email_smtp_port" => "SMTP-Port",
- "email_smtp_timeout" => "SMTP-Timeout",
- "email_smtp_user" => "SMTP Benutzername",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Datenschutz durchsetzen",
- "enforce_privacy_tooltip" => "Schützen Sie die Privatsphäre Ihrer Kunden und erzwingen Sie die Verschlüsselung von Daten im Falle der Löschung ihrer Daten",
- "fax" => "Fax",
- "file_perm" => "There are problems with file permissions please fix and reload this page.",
- "financial_year" => "Beginn Geschäftsjahr",
- "financial_year_apr" => "1. April",
- "financial_year_aug" => "1. August",
- "financial_year_dec" => "1. Dezember",
- "financial_year_feb" => "1. Februar",
- "financial_year_jan" => "1. Januar",
- "financial_year_jul" => "1. Juli",
- "financial_year_jun" => "1. Juni",
- "financial_year_mar" => "1. März",
- "financial_year_may" => "1. Mai",
- "financial_year_nov" => "1. November",
- "financial_year_oct" => "1. Oktober",
- "financial_year_sep" => "1. September",
- "floating_labels" => "",
- "gcaptcha_enable" => "Login reCAPTCHA",
- "gcaptcha_secret_key" => "reCAPTCHA: Geheimer Schlüssel",
- "gcaptcha_secret_key_required" => "reCAPTCHA Secret Key wird benötigt",
- "gcaptcha_site_key" => "reCAPTCHA: Seitenschlüssel",
- "gcaptcha_site_key_required" => "reCAPTCHA Site Key wird benötigt",
- "gcaptcha_tooltip" => "Login mit Google reCAPTCHA schützen, das Icon anklicken um ein Schlüsselpaar zu erhalten.",
- "general" => "Allgemeines",
- "general_configuration" => "Allgemeine Konfiguration",
- "giftcard_number" => "Gutscheinnummer",
- "giftcard_random" => "Zufällig Erzeugen",
- "giftcard_series" => "Serie Erzeugen",
- "image_allowed_file_types" => "",
- "image_max_height_tooltip" => "",
- "image_max_size_tooltip" => "",
- "image_max_width_tooltip" => "",
- "image_restrictions" => "",
- "include_hsn" => "Unterstützung für HSN-Codes einbinden",
- "info" => "Informationen",
- "info_configuration" => "Generelle Einstellungen",
- "input_groups" => "",
- "integrations" => "Integrationen",
- "integrations_configuration" => "Drittanbieter Integrationen",
- "invoice" => "Rechnungs",
- "invoice_configuration" => "Druckereinstellungen",
- "invoice_default_comments" => "Rechnungskommentar",
- "invoice_email_message" => "Rechnungsvorlage (Email)",
- "invoice_enable" => "Rechnungsstellung einschalten",
- "invoice_printer" => "Rechnungsdrucker",
- "invoice_type" => "Rechnungsart",
- "is_readable" => "",
- "is_writable" => "is writable, but the permissions are higher than 750.",
- "item_markup" => "",
- "jsprintsetup_required" => "Warnung: Diese Funktion benötigt das Firefox jsPrintSetup addon. Trotzdem speichern?",
- "language" => "Sprache",
- "last_used_invoice_number" => "Zuletzt verwendete Rechnungsnummer",
- "last_used_quote_number" => "Zuletzt verwendete Angebotsnummer",
- "last_used_work_order_number" => "Zuletzt verwendete Arbeitsauftragsnummer",
- "left" => "Links",
- "license" => "Lizenz",
- "license_configuration" => "Lizenzvereinbarung",
- "line_sequence" => "Zeilenfolge",
- "lines_per_page" => "Zeilen pro Seite",
- "lines_per_page_number" => "Zeilen pro Seite muss eine Zahl sein.",
- "lines_per_page_required" => "Zeilen pro Seite ist erforderlich.",
- "locale" => "Länder",
- "locale_configuration" => "Länderkonfiguration",
- "locale_info" => "Info Länderkonfiguration",
- "location" => "Lagerort",
- "location_configuration" => "Lagerort",
- "location_info" => "Lagerort-Information",
- "login_form" => "",
- "logout" => "Wollen Sie vor dem Beenden eine Sicherung erstellen? Klicke [OK] für Sicherung.",
- "mailchimp" => "Mailchimp",
- "mailchimp_api_key" => "Mailchimp API Schlüssel",
- "mailchimp_configuration" => "Mailchimp Konfiguration",
- "mailchimp_key_successfully" => "API Key ist gültig.",
- "mailchimp_key_unsuccessfully" => "API Key ist ungültig.",
- "mailchimp_lists" => "Mailchimp Liste(n)",
- "mailchimp_tooltip" => "Icon anklicken um API Key zu erhalten.",
- "message" => "Nachricht",
- "message_configuration" => "Nachrichtenkonfiguration",
- "msg_msg" => "Gespeicherte Nachricht",
- "msg_msg_placeholder" => "Wenn Sie eine SMS Vorlage benutzen wollen, geben Sie diese hier ein, ansonsten lassen Sie dieses Feld frei.",
- "msg_pwd" => "SMS-API Passwort",
- "msg_pwd_required" => "SMS-API Passwort ist ein Pflichtfeld",
- "msg_src" => "SMS-API Sender ID",
- "msg_src_required" => "SMS-API Sender ID ist ein Pflichtfeld",
- "msg_uid" => "SMS-API Benutzername",
- "msg_uid_required" => "SMS-API Benutzername ist ein Pflichtfeld",
- "multi_pack_enabled" => "Mehrere Pakete pro Artikel",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "none",
- "notify_alignment" => "Benachrichtigungs Popup Position",
- "number_format" => "Zahlenformat",
- "number_locale" => "Länderkonfiguration",
- "number_locale_invalid" => "Die eingegebene Lokale ist falsch. Bitte sehen Sie sich den Link im Tooltip an um einen korrekten Wert zu finden.",
- "number_locale_required" => "Locale-Nummer ist ein Pflichtfeld.",
- "number_locale_tooltip" => "Finden Sie eine korrekte Lokale über diesen Link.",
- "os_timezone" => "",
- "ospos_info" => "OSPOS Installations Information",
- "payment_options_order" => "Zahlungsarten Reihenfolge",
- "perm_risk" => "Permissions higher than 750 leaves this software at risk.",
- "phone" => "Telefon",
- "phone_required" => "Telefon ist erforderlich.",
- "print_bottom_margin" => "Unterer Rand",
- "print_bottom_margin_number" => "Unterer Rand muss eine Zahl sein.",
- "print_bottom_margin_required" => "Unterer Rand ist erforderlich.",
- "print_delay_autoreturn" => "Automatisch zu 'Verkauf' zurückkehren nach",
- "print_delay_autoreturn_number" => "Automatisch zu 'Verkauf' zurückkehren nach ist erforderlich.",
- "print_delay_autoreturn_required" => "Automatisch zu 'Verkauf' zurückkehren nach muss eine Zahl sein.",
- "print_footer" => "Drucke Browser Fusszeile",
- "print_header" => "Drucke Browser Kopfzeile",
- "print_left_margin" => "Rand links",
- "print_left_margin_number" => "Rand links muss eine Zahl sein.",
- "print_left_margin_required" => "Rand links ist erforderlich.",
- "print_receipt_check_behaviour" => "Quittung drucken",
- "print_receipt_check_behaviour_always" => "Immer ausgewählt",
- "print_receipt_check_behaviour_last" => "Letzte Auswahl speichern",
- "print_receipt_check_behaviour_never" => "Nie ausgewählt",
- "print_right_margin" => "Rand rechts",
- "print_right_margin_number" => "Rand rechts muss eine Zahl sein.",
- "print_right_margin_required" => "Rand rechts ist erforderlich.",
- "print_silently" => "Zeige Druckdialog",
- "print_top_margin" => "Rand oben",
- "print_top_margin_number" => "Rand oben muss eine Zahl sein.",
- "print_top_margin_required" => "Rand oben ist erforderlich.",
- "quantity_decimals" => "Mengendezimalstellen",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Angebot Standard-Kommentare",
- "receipt" => "Eingang",
- "receipt_category" => "",
- "receipt_configuration" => "Druckereinstellungen",
- "receipt_default" => "Default",
- "receipt_font_size" => "Schriftgröße",
- "receipt_font_size_number" => "Schriftgröße muss eine Zahl sein.",
- "receipt_font_size_required" => "Schriftgröße ist erforderlich.",
- "receipt_info" => "Quittungsinformation",
- "receipt_printer" => "Quittungsdrucker",
- "receipt_short" => "Kurz",
- "receipt_show_company_name" => "Firmenname anzeigen",
- "receipt_show_description" => "Beschreibung anzeigen",
- "receipt_show_serialnumber" => "Seriennummer anzeigen",
- "receipt_show_tax_ind" => "",
- "receipt_show_taxes" => "Zeige MWSt",
- "receipt_show_total_discount" => "Zeige Gesamtrabatt",
- "receipt_template" => "Quittungs Template",
- "receiving_calculate_average_price" => "Berechne Durchschnittseinkaufspreis",
- "recv_invoice_format" => "Format Eingangsrechnung",
- "register_mode_default" => "Standard Kassenmodus",
- "report_an_issue" => "",
- "return_policy_required" => "Rücknahmebedingungen sind erforderlich.",
- "reward" => "Prämie",
- "reward_configuration" => "Prämien Konfiguration",
- "right" => "Rechts",
- "sales_invoice_format" => "Format Verkaufsrechnung",
- "sales_quote_format" => "Angebotsformat",
- "mailpath_invalid" => "Ungültiger Sendmail-Pfad. Nur Buchstaben, Zahlen, Bindestriche, Unterstriche, Schrägstriche und Punkte sind erlaubt.",
- "saved_successfully" => "Einstellungen erfolgreich gesichert.",
- "saved_unsuccessfully" => "Einstellungen konnten nicht gesichert werden.",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "Bitte nutzen Sie die unten genannten Informationen für Problemberichterstattung.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Verwaltungssymbol anzeigen",
- "statistics" => "Statistiken Senden",
- "statistics_tooltip" => "Statistiken Senden für programierung und verbesserungen.",
- "stock_location" => "Lagerort",
- "stock_location_duplicate" => "Bitte verwenden Sie einen eindeutigen Lagerort.",
- "stock_location_invalid_chars" => "Der Lagerort kann keine Unterstriche enthalten.",
- "stock_location_required" => "Lagerort Nummer ist erforderlich.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Spalte 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Vorschläge Layout",
- "suggestions_second_column" => "Spalte 2",
- "suggestions_third_column" => "Spalte 3",
- "system_conf" => "Setup & Conf",
- "system_info" => "System Info",
- "table" => "Tabelle",
- "table_configuration" => "Tabelle konfigurieren",
- "takings_printer" => "Einnahmendrucker",
- "tax" => "Steuer",
- "tax_category" => "Steuerkategorie",
- "tax_category_duplicate" => "Die eingegebene Steuerkategorie existiert bereits.",
- "tax_category_invalid_chars" => "Die eingegebene Steuerkategorie ist ungültig.",
- "tax_category_required" => "Die Steuerkategorie ist erforderlich.",
- "tax_category_used" => "Die Steuerkategorie kann nicht gelöscht werden, da sie in Benutzung ist.",
- "tax_configuration" => "Steuer-Konfiguration",
- "tax_decimals" => "Steuer Dezimalstellen",
- "tax_id" => "Steuer ID",
- "tax_included" => "MWSt inbegriffen",
- "theme" => "Design",
- "theme_preview" => "",
- "thousands_separator" => "Tausendertrennzeichen",
- "timezone" => "Zeitzone",
- "timezone_error" => "",
- "top" => "Oben",
- "use_destination_based_tax" => "Zielabhängige Steuer verwenden",
- "user_timezone" => "",
- "website" => "Website",
- "wholesale_markup" => "",
- "work_order_enable" => "Unterstützung von Arbeitsaufträgen",
- "work_order_format" => "Arbeitsauftragsformat",
+ 'address' => 'Adresse',
+ 'address_required' => 'Adresse ist erforderlich.',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => 'Erlaube doppelte Barcodes',
+ 'apostrophe' => 'Apostroph',
+ 'backup_button' => 'Sicherung',
+ 'backup_database' => 'Sicherungs-Datenbank',
+ 'barcode' => 'Barcodes',
+ 'barcode_company' => 'Firmenname',
+ 'barcode_configuration' => 'Barcodes',
+ 'barcode_content' => 'Barcode Inhalt',
+ 'barcode_first_row' => 'Erste Zeile',
+ 'barcode_font' => 'Schrift',
+ 'barcode_formats' => 'Eingabeformate',
+ 'barcode_generate_if_empty' => 'Generiere Barcode wenn leer.',
+ 'barcode_height' => 'Höhe',
+ 'barcode_id' => 'Artikel-Nr/Name',
+ 'barcode_info' => 'Barcode Einstellung',
+ 'barcode_layout' => 'Barcode-Layout',
+ 'barcode_name' => 'Name',
+ 'barcode_number' => 'UPC/EAN/ISBN',
+ 'barcode_number_in_row' => 'Nummer in Zeile',
+ 'barcode_page_cellspacing' => 'Zellenabstand auf Seite.',
+ 'barcode_page_width' => 'Seitenbreite',
+ 'barcode_price' => 'Preis',
+ 'barcode_second_row' => 'Zeile 2',
+ 'barcode_third_row' => 'Zeile 3',
+ 'barcode_tooltip' => 'Warnung: Diese Funktion kann dazu führen, dass doppelte Elemente importiert oder erstellt werden. Nicht verwenden, wenn Sie keine doppelten Barcodes wünschen.',
+ 'barcode_type' => 'Barcode Typ',
+ 'barcode_width' => 'Breite (px)',
+ 'bottom' => 'Unten',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Bargeld Dezimalstellen',
+ 'cash_decimals_tooltip' => 'Wenn Währung und Bargeld die gleiche Anzahl Dezimalstellen haben, wird nicht gerundet.',
+ 'cash_rounding' => 'Bargeld Rundung',
+ 'category_dropdown' => '',
+ 'center' => 'Mitte',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'Komma',
+ 'company' => 'Firmenname',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Bild ändern',
+ 'company_logo' => 'Logo',
+ 'company_remove_image' => 'Bild löschen',
+ 'company_required' => 'Firmenname ist erforderlich',
+ 'company_select_image' => 'Bild auswählen',
+ 'company_website_url' => 'Webseite ist nicht in korrektem Format (http://...).',
+ 'country_codes' => 'Ländercodes',
+ 'country_codes_tooltip' => 'Kommagetrennte Liste der Ländercodes für den Adressvergleich.',
+ 'currency_code' => 'Währungscode',
+ 'currency_decimals' => 'Währungsdezimalzahlen',
+ 'currency_symbol' => 'Währungssymbol',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Prämie',
+ 'customer_reward_duplicate' => 'Die Prämie muss eindeutig sein.',
+ 'customer_reward_enable' => 'Kundenprämien aktivieren',
+ 'customer_reward_invalid_chars' => "Eine Prämie darf kein '_' enthalten",
+ 'customer_reward_required' => 'Prämie ist erforderlich',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => 'Datum und Uhrzeit Filter',
+ 'datetimeformat' => 'Datum und Zeit Format',
+ 'decimal_point' => 'Dezimaltrennzeichen',
+ 'default_barcode_font_size_number' => 'Standard Barcode Schriftgröße muss eine Zahl sein.',
+ 'default_barcode_font_size_required' => 'Standard Barcode Schriftgröße ist erforderlich.',
+ 'default_barcode_height_number' => 'Standard Barcode Höhe muss eine Zahl sein.',
+ 'default_barcode_height_required' => 'Standard Barcode Höhe ist erforderlich.',
+ 'default_barcode_num_in_row_number' => 'Standard Barcode Nummer muss eine Zahl sein.',
+ 'default_barcode_num_in_row_required' => 'Die Barcode Nummer ist erforderlich.',
+ 'default_barcode_page_cellspacing_number' => 'Standard Barcode Zellabstand muss eine Zahl sein.',
+ 'default_barcode_page_cellspacing_required' => 'Der Barcode Zellabstand ist erforderlich.',
+ 'default_barcode_page_width_number' => 'Standard Barcode Seitenbreite muss eine Zahl sein.',
+ 'default_barcode_page_width_required' => 'Die Barcode Seitenbreite ist erforderlich.',
+ 'default_barcode_width_number' => 'Standard Barcode Breite muss eine Zahl sein.',
+ 'default_barcode_width_required' => 'Standard Barcode Breite ist erforderlich.',
+ 'default_item_columns' => 'Standardmäßig sichtbare Spalten für Artikel',
+ 'default_origin_tax_code' => 'Standard Steuer Kürzel',
+ 'default_receivings_discount' => 'Standard Rabatt für Eingänge',
+ 'default_receivings_discount_number' => 'Standard Rabatt für Eingänge muss eine Zahl sein.',
+ 'default_receivings_discount_required' => 'Standard Rabatt für Eingänge ist erforderlich.',
+ 'default_sales_discount' => 'Standard Verkaufsrabatt',
+ 'default_sales_discount_number' => 'Der Standard Verkaufsrabatt muss eine Zahl sein.',
+ 'default_sales_discount_required' => 'Der Standard Verkaufsrabatt ist erforderlich.',
+ 'default_tax_category' => 'Standard-Steuerkategorie',
+ 'default_tax_code' => 'Standard Steuercode',
+ 'default_tax_jurisdiction' => 'Standard Steuerbehörde',
+ 'default_tax_name_number' => 'Standard Steuer Name muss ein String sein.',
+ 'default_tax_name_required' => 'Standardsteuerfeld ist erforderlich.',
+ 'default_tax_rate' => 'MWSt %',
+ 'default_tax_rate_1' => 'MWSt 1',
+ 'default_tax_rate_2' => 'MWSt 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Standard Steuersatz muss eine Zahl sein.',
+ 'default_tax_rate_required' => 'Standard Steuersatz ist erforderlich.',
+ 'derive_sale_quantity' => 'Aus Gesamtbetrag abgeleitete Verkaufsmengen',
+ 'derive_sale_quantity_tooltip' => 'Falls ausgewählt wird ein neuer Artikeltyp für nach Gesamtbetrag bestellte Artikel bereitgestellt',
+ 'dinner_table' => 'Tisch',
+ 'dinner_table_duplicate' => 'Tisch muss eindeutig sein.',
+ 'dinner_table_enable' => 'Esstische aktivieren',
+ 'dinner_table_invalid_chars' => "Tischname darf kein '_' enthalten.",
+ 'dinner_table_required' => 'Tisch wird benötigt.',
+ 'dot' => 'Punkt',
+ 'email' => 'eMail',
+ 'email_configuration' => 'Email Konfiguration',
+ 'email_mailpath' => 'Pfad zu Sendmail',
+ 'email_protocol' => 'Protokoll',
+ 'email_receipt_check_behaviour' => 'Kontrollkästchen E-Mail-Empfangsbestätigung',
+ 'email_receipt_check_behaviour_always' => 'Immer ausgewählt',
+ 'email_receipt_check_behaviour_last' => 'Letzte Auswahl speichern',
+ 'email_receipt_check_behaviour_never' => 'Nie ausgewählt',
+ 'email_smtp_crypto' => 'SMTP Verschlüsselung',
+ 'email_smtp_host' => 'SMTP-Server',
+ 'email_smtp_pass' => 'SMTP Passwort',
+ 'email_smtp_port' => 'SMTP-Port',
+ 'email_smtp_timeout' => 'SMTP-Timeout',
+ 'email_smtp_user' => 'SMTP Benutzername',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Datenschutz durchsetzen',
+ 'enforce_privacy_tooltip' => 'Schützen Sie die Privatsphäre Ihrer Kunden und erzwingen Sie die Verschlüsselung von Daten im Falle der Löschung ihrer Daten',
+ 'fax' => 'Fax',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => 'Beginn Geschäftsjahr',
+ 'financial_year_apr' => '1. April',
+ 'financial_year_aug' => '1. August',
+ 'financial_year_dec' => '1. Dezember',
+ 'financial_year_feb' => '1. Februar',
+ 'financial_year_jan' => '1. Januar',
+ 'financial_year_jul' => '1. Juli',
+ 'financial_year_jun' => '1. Juni',
+ 'financial_year_mar' => '1. März',
+ 'financial_year_may' => '1. Mai',
+ 'financial_year_nov' => '1. November',
+ 'financial_year_oct' => '1. Oktober',
+ 'financial_year_sep' => '1. September',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => 'Login reCAPTCHA',
+ 'gcaptcha_secret_key' => 'reCAPTCHA: Geheimer Schlüssel',
+ 'gcaptcha_secret_key_required' => 'reCAPTCHA Secret Key wird benötigt',
+ 'gcaptcha_site_key' => 'reCAPTCHA: Seitenschlüssel',
+ 'gcaptcha_site_key_required' => 'reCAPTCHA Site Key wird benötigt',
+ 'gcaptcha_tooltip' => 'Login mit Google reCAPTCHA schützen, das Icon anklicken um ein Schlüsselpaar zu erhalten.',
+ 'general' => 'Allgemeines',
+ 'general_configuration' => 'Allgemeine Konfiguration',
+ 'giftcard_number' => 'Gutscheinnummer',
+ 'giftcard_random' => 'Zufällig Erzeugen',
+ 'giftcard_series' => 'Serie Erzeugen',
+ 'image_allowed_file_types' => '',
+ 'image_max_height_tooltip' => '',
+ 'image_max_size_tooltip' => '',
+ 'image_max_width_tooltip' => '',
+ 'image_restrictions' => '',
+ 'include_hsn' => 'Unterstützung für HSN-Codes einbinden',
+ 'info' => 'Informationen',
+ 'info_configuration' => 'Generelle Einstellungen',
+ 'input_groups' => '',
+ 'integrations' => 'Integrationen',
+ 'integrations_configuration' => 'Drittanbieter Integrationen',
+ 'invoice' => 'Rechnungs',
+ 'invoice_configuration' => 'Druckereinstellungen',
+ 'invoice_default_comments' => 'Rechnungskommentar',
+ 'invoice_email_message' => 'Rechnungsvorlage (Email)',
+ 'invoice_enable' => 'Rechnungsstellung einschalten',
+ 'invoice_printer' => 'Rechnungsdrucker',
+ 'invoice_type' => 'Rechnungsart',
+ 'is_readable' => '',
+ 'is_writable' => 'is writable, but the permissions are higher than 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Warnung: Diese Funktion benötigt das Firefox jsPrintSetup addon. Trotzdem speichern?',
+ 'language' => 'Sprache',
+ 'last_used_invoice_number' => 'Zuletzt verwendete Rechnungsnummer',
+ 'last_used_quote_number' => 'Zuletzt verwendete Angebotsnummer',
+ 'last_used_work_order_number' => 'Zuletzt verwendete Arbeitsauftragsnummer',
+ 'left' => 'Links',
+ 'license' => 'Lizenz',
+ 'license_configuration' => 'Lizenzvereinbarung',
+ 'line_sequence' => 'Zeilenfolge',
+ 'lines_per_page' => 'Zeilen pro Seite',
+ 'lines_per_page_number' => 'Zeilen pro Seite muss eine Zahl sein.',
+ 'lines_per_page_required' => 'Zeilen pro Seite ist erforderlich.',
+ 'locale' => 'Länder',
+ 'locale_configuration' => 'Länderkonfiguration',
+ 'locale_info' => 'Info Länderkonfiguration',
+ 'location' => 'Lagerort',
+ 'location_configuration' => 'Lagerort',
+ 'location_info' => 'Lagerort-Information',
+ 'login_form' => '',
+ 'logout' => 'Wollen Sie vor dem Beenden eine Sicherung erstellen? Klicke [OK] für Sicherung.',
+ 'mailchimp' => 'Mailchimp',
+ 'mailchimp_api_key' => 'Mailchimp API Schlüssel',
+ 'mailchimp_configuration' => 'Mailchimp Konfiguration',
+ 'mailchimp_key_successfully' => 'API Key ist gültig.',
+ 'mailchimp_key_unsuccessfully' => 'API Key ist ungültig.',
+ 'mailchimp_lists' => 'Mailchimp Liste(n)',
+ 'mailchimp_tooltip' => 'Icon anklicken um API Key zu erhalten.',
+ 'message' => 'Nachricht',
+ 'message_configuration' => 'Nachrichtenkonfiguration',
+ 'msg_msg' => 'Gespeicherte Nachricht',
+ 'msg_msg_placeholder' => 'Wenn Sie eine SMS Vorlage benutzen wollen, geben Sie diese hier ein, ansonsten lassen Sie dieses Feld frei.',
+ 'msg_pwd' => 'SMS-API Passwort',
+ 'msg_pwd_required' => 'SMS-API Passwort ist ein Pflichtfeld',
+ 'msg_src' => 'SMS-API Sender ID',
+ 'msg_src_required' => 'SMS-API Sender ID ist ein Pflichtfeld',
+ 'msg_uid' => 'SMS-API Benutzername',
+ 'msg_uid_required' => 'SMS-API Benutzername ist ein Pflichtfeld',
+ 'multi_pack_enabled' => 'Mehrere Pakete pro Artikel',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => 'none',
+ 'notify_alignment' => 'Benachrichtigungs Popup Position',
+ 'number_format' => 'Zahlenformat',
+ 'number_locale' => 'Länderkonfiguration',
+ 'number_locale_invalid' => 'Die eingegebene Lokale ist falsch. Bitte sehen Sie sich den Link im Tooltip an um einen korrekten Wert zu finden.',
+ 'number_locale_required' => 'Locale-Nummer ist ein Pflichtfeld.',
+ 'number_locale_tooltip' => 'Finden Sie eine korrekte Lokale über diesen Link.',
+ 'os_timezone' => '',
+ 'ospos_info' => 'OSPOS Installations Information',
+ 'payment_options_order' => 'Zahlungsarten Reihenfolge',
+ 'payment_reference_code_length_limits' => 'Zahlungsreferenzcode
Längenbeschränkungen',
+ 'payment_reference_code_length_max_label' => 'Max',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => 'Permissions higher than 750 leaves this software at risk.',
+ 'phone' => 'Telefon',
+ 'phone_required' => 'Telefon ist erforderlich.',
+ 'print_bottom_margin' => 'Unterer Rand',
+ 'print_bottom_margin_number' => 'Unterer Rand muss eine Zahl sein.',
+ 'print_bottom_margin_required' => 'Unterer Rand ist erforderlich.',
+ 'print_delay_autoreturn' => "Automatisch zu 'Verkauf' zurückkehren nach",
+ 'print_delay_autoreturn_number' => "Automatisch zu 'Verkauf' zurückkehren nach ist erforderlich.",
+ 'print_delay_autoreturn_required' => "Automatisch zu 'Verkauf' zurückkehren nach muss eine Zahl sein.",
+ 'print_footer' => 'Drucke Browser Fusszeile',
+ 'print_header' => 'Drucke Browser Kopfzeile',
+ 'print_left_margin' => 'Rand links',
+ 'print_left_margin_number' => 'Rand links muss eine Zahl sein.',
+ 'print_left_margin_required' => 'Rand links ist erforderlich.',
+ 'print_receipt_check_behaviour' => 'Quittung drucken',
+ 'print_receipt_check_behaviour_always' => 'Immer ausgewählt',
+ 'print_receipt_check_behaviour_last' => 'Letzte Auswahl speichern',
+ 'print_receipt_check_behaviour_never' => 'Nie ausgewählt',
+ 'print_right_margin' => 'Rand rechts',
+ 'print_right_margin_number' => 'Rand rechts muss eine Zahl sein.',
+ 'print_right_margin_required' => 'Rand rechts ist erforderlich.',
+ 'print_silently' => 'Zeige Druckdialog',
+ 'print_top_margin' => 'Rand oben',
+ 'print_top_margin_number' => 'Rand oben muss eine Zahl sein.',
+ 'print_top_margin_required' => 'Rand oben ist erforderlich.',
+ 'quantity_decimals' => 'Mengendezimalstellen',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Angebot Standard-Kommentare',
+ 'receipt' => 'Eingang',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Druckereinstellungen',
+ 'receipt_default' => 'Default',
+ 'receipt_font_size' => 'Schriftgröße',
+ 'receipt_font_size_number' => 'Schriftgröße muss eine Zahl sein.',
+ 'receipt_font_size_required' => 'Schriftgröße ist erforderlich.',
+ 'receipt_info' => 'Quittungsinformation',
+ 'receipt_printer' => 'Quittungsdrucker',
+ 'receipt_short' => 'Kurz',
+ 'receipt_show_company_name' => 'Firmenname anzeigen',
+ 'receipt_show_description' => 'Beschreibung anzeigen',
+ 'receipt_show_serialnumber' => 'Seriennummer anzeigen',
+ 'receipt_show_tax_ind' => '',
+ 'receipt_show_taxes' => 'Zeige MWSt',
+ 'receipt_show_total_discount' => 'Zeige Gesamtrabatt',
+ 'receipt_template' => 'Quittungs Template',
+ 'receiving_calculate_average_price' => 'Berechne Durchschnittseinkaufspreis',
+ 'recv_invoice_format' => 'Format Eingangsrechnung',
+ 'register_mode_default' => 'Standard Kassenmodus',
+ 'report_an_issue' => '',
+ 'return_policy_required' => 'Rücknahmebedingungen sind erforderlich.',
+ 'reward' => 'Prämie',
+ 'reward_configuration' => 'Prämien Konfiguration',
+ 'right' => 'Rechts',
+ 'sales_invoice_format' => 'Format Verkaufsrechnung',
+ 'sales_quote_format' => 'Angebotsformat',
+ 'mailpath_invalid' => 'Ungültiger Sendmail-Pfad. Nur Buchstaben, Zahlen, Bindestriche, Unterstriche, Schrägstriche und Punkte sind erlaubt.',
+ 'saved_successfully' => 'Einstellungen erfolgreich gesichert.',
+ 'saved_unsuccessfully' => 'Einstellungen konnten nicht gesichert werden.',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Bitte nutzen Sie die unten genannten Informationen für Problemberichterstattung.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Verwaltungssymbol anzeigen',
+ 'statistics' => 'Statistiken Senden',
+ 'statistics_tooltip' => 'Statistiken Senden für programierung und verbesserungen.',
+ 'stock_location' => 'Lagerort',
+ 'stock_location_duplicate' => 'Bitte verwenden Sie einen eindeutigen Lagerort.',
+ 'stock_location_invalid_chars' => 'Der Lagerort kann keine Unterstriche enthalten.',
+ 'stock_location_required' => 'Lagerort Nummer ist erforderlich.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Spalte 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Vorschläge Layout',
+ 'suggestions_second_column' => 'Spalte 2',
+ 'suggestions_third_column' => 'Spalte 3',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => 'Tabelle',
+ 'table_configuration' => 'Tabelle konfigurieren',
+ 'takings_printer' => 'Einnahmendrucker',
+ 'tax' => 'Steuer',
+ 'tax_category' => 'Steuerkategorie',
+ 'tax_category_duplicate' => 'Die eingegebene Steuerkategorie existiert bereits.',
+ 'tax_category_invalid_chars' => 'Die eingegebene Steuerkategorie ist ungültig.',
+ 'tax_category_required' => 'Die Steuerkategorie ist erforderlich.',
+ 'tax_category_used' => 'Die Steuerkategorie kann nicht gelöscht werden, da sie in Benutzung ist.',
+ 'tax_configuration' => 'Steuer-Konfiguration',
+ 'tax_decimals' => 'Steuer Dezimalstellen',
+ 'tax_id' => 'Steuer ID',
+ 'tax_included' => 'MWSt inbegriffen',
+ 'theme' => 'Design',
+ 'theme_preview' => '',
+ 'thousands_separator' => 'Tausendertrennzeichen',
+ 'timezone' => 'Zeitzone',
+ 'timezone_error' => '',
+ 'top' => 'Oben',
+ 'use_destination_based_tax' => 'Zielabhängige Steuer verwenden',
+ 'user_timezone' => '',
+ 'website' => 'Website',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Unterstützung von Arbeitsaufträgen',
+ 'work_order_format' => 'Arbeitsauftragsformat',
];
diff --git a/app/Language/de-DE/Login.php b/app/Language/de-DE/Login.php
index 723ab9a60..fad409933 100644
--- a/app/Language/de-DE/Login.php
+++ b/app/Language/de-DE/Login.php
@@ -1,25 +1,30 @@
"Ich bin kein Roboter.",
- "go" => "Los",
- "invalid_gcaptcha" => "Ich bin kein Roboter ist ungültig.",
- "invalid_installation" => "Die Installation ist nicht korrekt, überprüfen Sie Ihre php.ini-Datei.",
- "invalid_username_and_password" => "Ungültiger Benutzername oder Passwort.",
- "login" => "Login",
- "logout" => "Abmelden",
- "migration_needed" => "Eine Datenbank-Migration auf {0} wird nach der Anmeldung gestartet.",
- "migration_required" => "Datenbank-Migration erforderlich",
- "migration_auth_message" => "Administrator-Anmeldedaten sind erforderlich, um die Datenbank-Migration auf Version {0} zu autorisieren. Bitte melden Sie sich an, um fortzufahren.",
- "migration_initializing" => "Datenbank wird initialisiert",
- "migration_running" => "Datenbank-Migrationen werden ausgeführt...",
- "migration_complete" => "Datenbank erfolgreich initialisiert!",
- "migration_complete_login" => "Sie können sich jetzt anmelden.",
- "migration_failed" => "Migration fehlgeschlagen",
- "migration_error_connection" => "Verbindungsfehler. Bitte versuchen Sie es erneut.",
- "migration_complete_redirect" => "Migration abgeschlossen. Weiterleitung zur Anmeldung...",
- "password" => "Passwort",
- "required_username" => "Das Feld Benutzername ist erforderlich.",
- "username" => "Benutzername",
- "welcome" => "Willkommen bei {0}!",
+ "gcaptcha" => "Ich bin kein Roboter.",
+ "go" => "Los",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Ich bin kein Roboter ist ungültig.",
+ "invalid_installation" => "Die Installation ist nicht korrekt, überprüfen Sie Ihre php.ini-Datei.",
+ "invalid_username_and_password" => "Ungültiger Benutzername oder Passwort.",
+ "login" => "Login",
+ "logout" => "Abmelden",
+ "migrating_database" => "Datenbank wird migriert",
+ "migration_auth_message" => "Administrator-Anmeldedaten sind erforderlich, um die Datenbank-Migration auf Version {0} zu autorisieren. Bitte melden Sie sich an, um fortzufahren.",
+ "migration_complete" => "Datenbank erfolgreich initialisiert!",
+ "migration_complete_login" => "Sie können sich jetzt anmelden.",
+ "migration_complete_migrate" => "Datenbank erfolgreich migriert!",
+ "migration_complete_redirect" => "Migration abgeschlossen. Weiterleitung zur Anmeldung...",
+ "migration_error_connection" => "Verbindungsfehler. Bitte versuchen Sie es erneut.",
+ "migration_failed" => "Migration fehlgeschlagen",
+ "migration_initializing" => "Datenbank wird initialisiert",
+ "migration_needed" => "Eine Datenbank-Migration auf {0} wird nach der Anmeldung gestartet.",
+ "migration_required" => "Datenbank-Migration erforderlich",
+ "migration_running" => "Datenbank-Migrationen werden ausgeführt...",
+ "password" => "Passwort",
+ "required_username" => "Das Feld Benutzername ist erforderlich.",
+ "username" => "Benutzername",
+ "welcome" => "Willkommen bei {0}!"
];
diff --git a/app/Language/de-DE/Sales.php b/app/Language/de-DE/Sales.php
index 1cad8dc35..7bb7db0d7 100644
--- a/app/Language/de-DE/Sales.php
+++ b/app/Language/de-DE/Sales.php
@@ -1,235 +1,235 @@
"Verfügbare Punkte",
- "rewards_package" => "Prämie",
- "rewards_remaining_balance" => "Verbleibende Prämienpunkte ",
- "account_number" => "Kundennummer",
- "add_payment" => "Zahlung",
- "amount_due" => "fälliger Betrag",
- "amount_tendered" => "Erhalten",
- "authorized_signature" => "Unterschrift",
- "cancel_sale" => "Annullieren",
- "cash" => "Bar",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "",
- "cash_deposit" => "Bareinzahlung",
- "cash_filter" => "Bar",
- "change_due" => "Wechselgeld",
- "change_price" => "",
- "check" => "Scheck",
- "check_balance" => "Scheck-Differenz",
- "check_filter" => "Scheck",
- "close" => "",
- "comment" => "Bemerkung",
- "comments" => "Bemerkungen",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Abschliessen",
- "confirm_cancel_sale" => "Wollen Sie diesen Verkauf wirklich zurücksetzen? Alle Artikeleinträge werden entfernt.",
- "confirm_delete" => "Wollen Sie die gewählten Aufträge löschen?",
- "confirm_restore" => "Sind Sie sicher, dass Sie die ausgewählten Verkäufe wiederherstellen möchten?",
- "credit" => "Kreditkarte",
- "credit_deposit" => "Krediteinlage",
- "credit_filter" => "",
- "current_table" => "",
- "customer" => "Kunde",
- "customer_address" => "Kundenadresse",
- "customer_discount" => "Rabatt",
- "customer_email" => "Kunden eMail",
- "customer_location" => "Kunden Stadt",
- "customer_mailchimp_status" => "Mailchim Status",
- "customer_optional" => "(Benötigt für fällige Zahlungen)",
- "customer_required" => "(Benötigt)",
- "customer_total" => "Gesamtbetrag",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Datum",
- "date_range" => "Zeitraum",
- "date_required" => "Ein korrektes Datum ist erforderlich.",
- "date_type" => "Datum ist erforderlich.",
- "debit" => "EC-Karte",
- "debit_filter" => "",
- "delete" => "löschen",
- "delete_confirmation" => "Wollen Sie diesen Auftrag wirklich löschen? Dies kann nicht rückgängig gemacht werden.",
- "delete_entire_sale" => "Auftrag löschen",
- "delete_successful" => "Erfolgreich gelöscht.",
- "delete_unsuccessful" => "Löschen fehlgeschlagen.",
- "description_abbrv" => "Bez.",
- "discard" => "Verwerfen",
- "discard_quote" => "",
- "discount" => "%",
- "discount_included" => "% Rabatt",
- "discount_short" => "%",
- "due" => "fällig",
- "due_filter" => "Fällig",
- "edit" => "Ändern",
- "edit_item" => "Artikel Ändern",
- "edit_sale" => "Auftrag ändern",
- "email_receipt" => "Quittung per Email",
- "employee" => "Mitarbeiter",
- "entry" => "Eintrag",
- "error_editing_item" => "Fehler beim Ändern des Artikels",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Finde/Scanne Artikel",
- "find_or_scan_item_or_receipt" => "Finde/Scanne Artikel oder Quittung",
- "giftcard" => "Gutschein",
- "giftcard_balance" => "Gutschein Restwert",
- "giftcard_filter" => "",
- "giftcard_number" => "Gutschein Nummer",
- "group_by_category" => "Gruppiere nach Kategorie",
- "group_by_type" => "Gruppiere nach Typ",
- "hsn" => "HSN",
- "id" => "ID",
- "include_prices" => "Inklusiv Preise?",
- "invoice" => "Rechnung",
- "invoice_confirm" => "Diese Rechnung wird gesendet an",
- "invoice_enable" => "Erzeuge Rechnung",
- "invoice_filter" => "Rechnungen",
- "invoice_no_email" => "Dieser Kunde hat keine gültige Email Adresse.",
- "invoice_number" => "Rechnungsnummer",
- "invoice_number_duplicate" => "Rechnungsnummer muss eindeutig sein.",
- "invoice_sent" => "Rechnung gesendet an",
- "invoice_total" => "Rechnungsbetrag",
- "invoice_type_custom_invoice" => "Benutzerdefinierte Rechnung (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Benutzerdefinierte Steuerrechnung (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Rechnung (invoice.php)",
- "invoice_type_tax_invoice" => "Steuerrechnung (tax_invoice.php)",
- "invoice_unsent" => "Rechnung nicht gesendet",
- "invoice_update" => "Aktualisieren",
- "item_insufficient_of_stock" => "Artikel hat Unterbestand.",
- "item_name" => "Artikelname",
- "item_number" => "Artikelnummer",
- "item_out_of_stock" => "Artikel ist nicht auf Lager.",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "Verkaufstyp",
- "must_enter_numeric" => "Eingabe muss eine Zahl sein.",
- "must_enter_numeric_giftcard" => "Gutschein-Nr. muss eine Zahl sein.",
- "new_customer" => "Neuer Kunde",
- "new_item" => "Neuer Artikel",
- "no_description" => "Nichts",
- "no_filter" => "Alle",
- "no_items_in_cart" => "Warenkorb ist leer.",
- "no_sales_to_display" => "Keine Artikel zum Anzeigen.",
- "none_selected" => "Sie haben keinen Auftrag zum Löschen ausgewählt.",
- "nontaxed_ind" => "",
- "not_authorized" => "Diese Aktion ist nicht erlaubt.",
- "one_or_multiple" => "Verkäufe",
- "payment" => "Zahlungsart",
- "payment_amount" => "Betrag",
- "payment_not_cover_total" => "Betrag deckt Rechnungsbetrag nicht.",
- "payment_type" => "Typ",
- "payments" => "",
- "payments_total" => "Zahlung Total",
- "price" => "Preis",
- "print_after_sale" => "Drucke Bon nach Verkauf",
- "quantity" => "Menge",
- "quantity_less_than_reorder_level" => "Warnung: Gewünschte Menge ist nicht verfügbar.",
- "quantity_less_than_zero" => "Warnung: Gewünschte Menge ist nicht verfügbar. Sie können den Verkauf fortsetzen, dennoch prüfen Sie bitte den Lagerbestand.",
- "quantity_of_items" => "Menge von {0} Artikeln",
- "quote" => "Angebot",
- "quote_number" => "Angebotsnummer",
- "quote_number_duplicate" => "Die Angebotsnummer muss eindeutig sein.",
- "quote_sent" => "Angebot gesendet an",
- "quote_unsent" => "Angebot senden fehlgeschlagen",
- "receipt" => "Quittung",
- "receipt_no_email" => "Der Kunde hat keine gültige E-Mail Adresse.",
- "receipt_number" => "Quittungsnummer",
- "receipt_sent" => "Quittung gesendet an",
- "receipt_unsent" => "Quittung nicht gesendet",
- "refund" => "",
- "register" => "Kasse",
- "remove_customer" => "Entferne Kunde",
- "remove_discount" => "",
- "return" => "Retoure",
- "rewards" => "Prämienpunkte",
- "rewards_balance" => "Prämienpunkte Stand",
- "sale" => "Verkauf",
- "sale_by_invoice" => "Verkauf auf Rechnung",
- "sale_for_customer" => "Kunde:",
- "sale_time" => "Zeit",
- "sales_tax" => "Mehrwertsteuer",
- "sales_total" => "",
- "select_customer" => "Wähle Kunde (optional)",
- "send_invoice" => "Sende Rechnung",
- "send_quote" => "Angebot Senden",
- "send_receipt" => "Sende Quittung",
- "send_work_order" => "Arbeitsauftrag senden",
- "serial" => "Seriennummer",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Rechnung",
- "show_receipt" => "Quittung",
- "start_typing_customer_name" => "Geben Sie den Kundennamen ein...",
- "start_typing_item_name" => "Geben Sie den Artikel ein oder scannen Sie ihn...",
- "stock" => "Vorrat",
- "stock_location" => "Lagerort",
- "sub_total" => "Zwischentotal",
- "successfully_deleted" => "Löschung erfolgreich",
- "successfully_restored" => "Erfolgreich wiederhergestellt",
- "successfully_suspended_sale" => "Verkauf erfolgreich gestoppt.",
- "successfully_updated" => "Verkauf erfolgreich geändert.",
- "suspend_sale" => "-> Aussetzen",
- "suspended_doc_id" => "Dokument",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Ausgesetzte Aufträge",
- "table" => "Tisch",
- "takings" => "Einnahmen",
- "tax" => "Steuer",
- "tax_id" => "Steuer ID",
- "tax_invoice" => "Steuerrechnung",
- "tax_percent" => "Steuer %",
- "taxed_ind" => "",
- "total" => "Gesamtbetrag",
- "total_tax_exclusive" => "exkl. Steuer",
- "transaction_failed" => "Verarbeitung fehlerhaft.",
- "unable_to_add_item" => "Kann Artikel nicht zum Auftrag hinzufügen",
- "unsuccessfully_deleted" => "Löschen des Verkaufs fehlgeschlagen.",
- "unsuccessfully_restored" => "Wiederherstellung fehlgeschlagen.",
- "unsuccessfully_suspended_sale" => "Verkaufsstopp fehlgeschlagen.",
- "unsuccessfully_updated" => "Änderung fehlgeschlagen.",
- "unsuspend" => "Aktivieren",
- "unsuspend_and_delete" => "Aktivieren und löschen",
- "update" => "Ändern",
- "upi" => "UPI",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "Arbeitsauftrag",
- "work_order_number" => "Arbeitsauftragsnummer",
- "work_order_number_duplicate" => "Arbeitsauftragsnummer muss eindeutig sein.",
- "work_order_sent" => "Arbeitsauftrag gesendet an",
- "work_order_unsent" => "Der Arbeitsauftrag konnte nicht gesendet werden an",
- "sale_not_found" => "Verkauf nicht gefunden",
- "ubl_invoice" => "UBL-Rechnung",
- "download_ubl" => "UBL-Rechnung herunterladen",
- "ubl_generation_failed" => "UBL-Rechnung konnte nicht erstellt werden",
+ 'account_number' => 'Kundennummer',
+ 'add_payment' => 'Zahlung',
+ 'amount_due' => 'fälliger Betrag',
+ 'amount_tendered' => 'Erhalten',
+ 'authorized_signature' => 'Unterschrift',
+ 'cancel_sale' => 'Annullieren',
+ 'cash' => 'Bar',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => '',
+ 'cash_deposit' => 'Bareinzahlung',
+ 'cash_filter' => 'Bar',
+ 'change_due' => 'Wechselgeld',
+ 'change_price' => '',
+ 'check' => 'Scheck',
+ 'check_balance' => 'Scheck-Differenz',
+ 'check_filter' => 'Scheck',
+ 'close' => '',
+ 'comment' => 'Bemerkung',
+ 'comments' => 'Bemerkungen',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Abschliessen',
+ 'confirm_cancel_sale' => 'Wollen Sie diesen Verkauf wirklich zurücksetzen? Alle Artikeleinträge werden entfernt.',
+ 'confirm_delete' => 'Wollen Sie die gewählten Aufträge löschen?',
+ 'confirm_restore' => 'Sind Sie sicher, dass Sie die ausgewählten Verkäufe wiederherstellen möchten?',
+ 'credit' => 'Kreditkarte',
+ 'credit_deposit' => 'Krediteinlage',
+ 'credit_filter' => '',
+ 'current_table' => '',
+ 'customer' => 'Kunde',
+ 'customer_address' => 'Kundenadresse',
+ 'customer_discount' => 'Rabatt',
+ 'customer_email' => 'Kunden eMail',
+ 'customer_location' => 'Kunden Stadt',
+ 'customer_mailchimp_status' => 'Mailchim Status',
+ 'customer_optional' => '(Benötigt für fällige Zahlungen)',
+ 'customer_required' => '(Benötigt)',
+ 'customer_total' => 'Gesamtbetrag',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Verfügbare Punkte',
+ 'daily_sales' => '',
+ 'date' => 'Datum',
+ 'date_range' => 'Zeitraum',
+ 'date_required' => 'Ein korrektes Datum ist erforderlich.',
+ 'date_type' => 'Datum ist erforderlich.',
+ 'debit' => 'EC-Karte',
+ 'debit_filter' => '',
+ 'delete' => 'löschen',
+ 'delete_confirmation' => 'Wollen Sie diesen Auftrag wirklich löschen? Dies kann nicht rückgängig gemacht werden.',
+ 'delete_entire_sale' => 'Auftrag löschen',
+ 'delete_successful' => 'Erfolgreich gelöscht.',
+ 'delete_unsuccessful' => 'Löschen fehlgeschlagen.',
+ 'description_abbrv' => 'Bez.',
+ 'discard' => 'Verwerfen',
+ 'discard_quote' => '',
+ 'discount' => '%',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Rabatt',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'fällig',
+ 'due_filter' => 'Fällig',
+ 'edit' => 'Ändern',
+ 'edit_item' => 'Artikel Ändern',
+ 'edit_sale' => 'Auftrag ändern',
+ 'email_receipt' => 'Quittung per Email',
+ 'employee' => 'Mitarbeiter',
+ 'entry' => 'Eintrag',
+ 'error_editing_item' => 'Fehler beim Ändern des Artikels',
+ 'find_or_scan_item' => 'Finde/Scanne Artikel',
+ 'find_or_scan_item_or_receipt' => 'Finde/Scanne Artikel oder Quittung',
+ 'giftcard' => 'Gutschein',
+ 'giftcard_balance' => 'Gutschein Restwert',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Gutschein Nummer',
+ 'group_by_category' => 'Gruppiere nach Kategorie',
+ 'group_by_type' => 'Gruppiere nach Typ',
+ 'hsn' => 'HSN',
+ 'id' => 'ID',
+ 'include_prices' => 'Inklusiv Preise?',
+ 'invoice' => 'Rechnung',
+ 'invoice_confirm' => 'Diese Rechnung wird gesendet an',
+ 'invoice_enable' => 'Erzeuge Rechnung',
+ 'invoice_filter' => 'Rechnungen',
+ 'invoice_no_email' => 'Dieser Kunde hat keine gültige Email Adresse.',
+ 'invoice_number' => 'Rechnungsnummer',
+ 'invoice_number_duplicate' => 'Rechnungsnummer muss eindeutig sein.',
+ 'invoice_sent' => 'Rechnung gesendet an',
+ 'invoice_total' => 'Rechnungsbetrag',
+ 'invoice_type_custom_invoice' => 'Benutzerdefinierte Rechnung (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Benutzerdefinierte Steuerrechnung (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Rechnung (invoice.php)',
+ 'invoice_type_tax_invoice' => 'Steuerrechnung (tax_invoice.php)',
+ 'invoice_unsent' => 'Rechnung nicht gesendet',
+ 'invoice_update' => 'Aktualisieren',
+ 'item_insufficient_of_stock' => 'Artikel hat Unterbestand.',
+ 'item_name' => 'Artikelname',
+ 'item_number' => 'Artikelnummer',
+ 'item_out_of_stock' => 'Artikel ist nicht auf Lager.',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'Verkaufstyp',
+ 'must_enter_numeric' => 'Eingabe muss eine Zahl sein.',
+ 'must_enter_numeric_giftcard' => 'Gutschein-Nr. muss eine Zahl sein.',
+ 'must_enter_reference_code' => 'Referenz-/Abrufnummer muss eingegeben werden.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Neuer Kunde',
+ 'new_item' => 'Neuer Artikel',
+ 'no_description' => 'Nichts',
+ 'no_filter' => 'Alle',
+ 'no_items_in_cart' => 'Warenkorb ist leer.',
+ 'no_sales_to_display' => 'Keine Artikel zum Anzeigen.',
+ 'none_selected' => 'Sie haben keinen Auftrag zum Löschen ausgewählt.',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => 'Diese Aktion ist nicht erlaubt.',
+ 'one_or_multiple' => 'Verkäufe',
+ 'payment' => 'Zahlungsart',
+ 'payment_amount' => 'Betrag',
+ 'payment_not_cover_total' => 'Betrag deckt Rechnungsbetrag nicht.',
+ 'payment_type' => 'Typ',
+ 'payments' => '',
+ 'payments_total' => 'Zahlung Total',
+ 'price' => 'Preis',
+ 'print_after_sale' => 'Drucke Bon nach Verkauf',
+ 'quantity' => 'Menge',
+ 'quantity_less_than_reorder_level' => 'Warnung: Gewünschte Menge ist nicht verfügbar.',
+ 'quantity_less_than_zero' => 'Warnung: Gewünschte Menge ist nicht verfügbar. Sie können den Verkauf fortsetzen, dennoch prüfen Sie bitte den Lagerbestand.',
+ 'quantity_of_items' => 'Menge von {0} Artikeln',
+ 'quote' => 'Angebot',
+ 'quote_number' => 'Angebotsnummer',
+ 'quote_number_duplicate' => 'Die Angebotsnummer muss eindeutig sein.',
+ 'quote_sent' => 'Angebot gesendet an',
+ 'quote_unsent' => 'Angebot senden fehlgeschlagen',
+ 'receipt' => 'Quittung',
+ 'receipt_no_email' => 'Der Kunde hat keine gültige E-Mail Adresse.',
+ 'receipt_number' => 'Quittungsnummer',
+ 'receipt_sent' => 'Quittung gesendet an',
+ 'receipt_unsent' => 'Quittung nicht gesendet',
+ 'reference_code' => 'Zahlungsreferenzcode',
+ 'reference_code_invalid_characters' => 'Der Referenzcode darf nur Buchstaben und Zahlen enthalten.',
+ 'reference_code_length_error' => 'Die Länge des Referenzcodes ist ungültig.',
+ 'refund' => '',
+ 'register' => 'Kasse',
+ 'remove_customer' => 'Entferne Kunde',
+ 'remove_discount' => '',
+ 'return' => 'Retoure',
+ 'rewards' => 'Prämienpunkte',
+ 'rewards_balance' => 'Prämienpunkte Stand',
+ 'rewards_package' => 'Prämie',
+ 'rewards_remaining_balance' => 'Verbleibende Prämienpunkte ',
+ 'sale' => 'Verkauf',
+ 'sale_by_invoice' => 'Verkauf auf Rechnung',
+ 'sale_for_customer' => 'Kunde:',
+ 'sale_time' => 'Zeit',
+ 'sales_tax' => 'Mehrwertsteuer',
+ 'sales_total' => '',
+ 'select_customer' => 'Wähle Kunde (optional)',
+ 'send_invoice' => 'Sende Rechnung',
+ 'send_quote' => 'Angebot Senden',
+ 'send_receipt' => 'Sende Quittung',
+ 'send_work_order' => 'Arbeitsauftrag senden',
+ 'serial' => 'Seriennummer',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Rechnung',
+ 'show_receipt' => 'Quittung',
+ 'start_typing_customer_name' => 'Geben Sie den Kundennamen ein...',
+ 'start_typing_item_name' => 'Geben Sie den Artikel ein oder scannen Sie ihn...',
+ 'stock' => 'Vorrat',
+ 'stock_location' => 'Lagerort',
+ 'sub_total' => 'Zwischentotal',
+ 'successfully_deleted' => 'Löschung erfolgreich',
+ 'successfully_restored' => 'Erfolgreich wiederhergestellt',
+ 'successfully_suspended_sale' => 'Verkauf erfolgreich gestoppt.',
+ 'successfully_updated' => 'Verkauf erfolgreich geändert.',
+ 'suspend_sale' => '-> Aussetzen',
+ 'suspended_doc_id' => 'Dokument',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Ausgesetzte Aufträge',
+ 'table' => 'Tisch',
+ 'takings' => 'Einnahmen',
+ 'tax' => 'Steuer',
+ 'tax_id' => 'Steuer ID',
+ 'tax_invoice' => 'Steuerrechnung',
+ 'tax_percent' => 'Steuer %',
+ 'taxed_ind' => '',
+ 'total' => 'Gesamtbetrag',
+ 'total_tax_exclusive' => 'exkl. Steuer',
+ 'transaction_failed' => 'Verarbeitung fehlerhaft.',
+ 'unable_to_add_item' => 'Kann Artikel nicht zum Auftrag hinzufügen',
+ 'unsuccessfully_deleted' => 'Löschen des Verkaufs fehlgeschlagen.',
+ 'unsuccessfully_restored' => 'Wiederherstellung fehlgeschlagen.',
+ 'unsuccessfully_suspended_sale' => 'Verkaufsstopp fehlgeschlagen.',
+ 'unsuccessfully_updated' => 'Änderung fehlgeschlagen.',
+ 'unsuspend' => 'Aktivieren',
+ 'unsuspend_and_delete' => 'Aktivieren und löschen',
+ 'update' => 'Ändern',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'Arbeitsauftrag',
+ 'work_order_number' => 'Arbeitsauftragsnummer',
+ 'work_order_number_duplicate' => 'Arbeitsauftragsnummer muss eindeutig sein.',
+ 'work_order_sent' => 'Arbeitsauftrag gesendet an',
+ 'work_order_unsent' => 'Der Arbeitsauftrag konnte nicht gesendet werden an',
];
diff --git a/app/Language/el/Config.php b/app/Language/el/Config.php
index 0d4edefef..a4d3aa00a 100644
--- a/app/Language/el/Config.php
+++ b/app/Language/el/Config.php
@@ -1,332 +1,335 @@
"",
- "address_required" => "",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "",
- "apostrophe" => "",
- "backup_button" => "",
- "backup_database" => "",
- "barcode" => "",
- "barcode_company" => "",
- "barcode_configuration" => "",
- "barcode_content" => "",
- "barcode_first_row" => "",
- "barcode_font" => "",
- "barcode_formats" => "",
- "barcode_generate_if_empty" => "",
- "barcode_height" => "",
- "barcode_id" => "",
- "barcode_info" => "",
- "barcode_layout" => "",
- "barcode_name" => "",
- "barcode_number" => "",
- "barcode_number_in_row" => "",
- "barcode_page_cellspacing" => "",
- "barcode_page_width" => "",
- "barcode_price" => "",
- "barcode_second_row" => "",
- "barcode_third_row" => "",
- "barcode_tooltip" => "",
- "barcode_type" => "",
- "barcode_width" => "",
- "bottom" => "",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "",
- "cash_decimals_tooltip" => "",
- "cash_rounding" => "",
- "category_dropdown" => "",
- "center" => "",
- "change_apperance_tooltip" => "",
- "comma" => "",
- "company" => "",
- "company_avatar" => "",
- "company_change_image" => "",
- "company_logo" => "",
- "company_remove_image" => "",
- "company_required" => "",
- "company_select_image" => "",
- "company_website_url" => "",
- "country_codes" => "",
- "country_codes_tooltip" => "",
- "currency_code" => "",
- "currency_decimals" => "",
- "currency_symbol" => "",
- "current_employee_only" => "",
- "customer_reward" => "",
- "customer_reward_duplicate" => "",
- "customer_reward_enable" => "",
- "customer_reward_invalid_chars" => "",
- "customer_reward_required" => "",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "",
- "datetimeformat" => "",
- "decimal_point" => "",
- "default_barcode_font_size_number" => "",
- "default_barcode_font_size_required" => "",
- "default_barcode_height_number" => "",
- "default_barcode_height_required" => "",
- "default_barcode_num_in_row_number" => "",
- "default_barcode_num_in_row_required" => "",
- "default_barcode_page_cellspacing_number" => "",
- "default_barcode_page_cellspacing_required" => "",
- "default_barcode_page_width_number" => "",
- "default_barcode_page_width_required" => "",
- "default_barcode_width_number" => "",
- "default_barcode_width_required" => "",
- "default_item_columns" => "",
- "default_origin_tax_code" => "",
- "default_receivings_discount" => "",
- "default_receivings_discount_number" => "",
- "default_receivings_discount_required" => "",
- "default_sales_discount" => "",
- "default_sales_discount_number" => "",
- "default_sales_discount_required" => "",
- "default_tax_category" => "",
- "default_tax_code" => "",
- "default_tax_jurisdiction" => "",
- "default_tax_name_number" => "",
- "default_tax_name_required" => "",
- "default_tax_rate" => "",
- "default_tax_rate_1" => "",
- "default_tax_rate_2" => "",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "",
- "default_tax_rate_required" => "",
- "derive_sale_quantity" => "",
- "derive_sale_quantity_tooltip" => "",
- "dinner_table" => "",
- "dinner_table_duplicate" => "",
- "dinner_table_enable" => "",
- "dinner_table_invalid_chars" => "",
- "dinner_table_required" => "",
- "dot" => "",
- "email" => "",
- "email_configuration" => "",
- "email_mailpath" => "",
- "email_protocol" => "",
- "email_receipt_check_behaviour" => "",
- "email_receipt_check_behaviour_always" => "",
- "email_receipt_check_behaviour_last" => "",
- "email_receipt_check_behaviour_never" => "",
- "email_smtp_crypto" => "",
- "email_smtp_host" => "",
- "email_smtp_pass" => "",
- "email_smtp_port" => "",
- "email_smtp_timeout" => "",
- "email_smtp_user" => "",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "",
- "enforce_privacy_tooltip" => "",
- "fax" => "",
- "file_perm" => "There are problems with file permissions please fix and reload this page.",
- "financial_year" => "",
- "financial_year_apr" => "",
- "financial_year_aug" => "",
- "financial_year_dec" => "",
- "financial_year_feb" => "",
- "financial_year_jan" => "",
- "financial_year_jul" => "",
- "financial_year_jun" => "",
- "financial_year_mar" => "",
- "financial_year_may" => "",
- "financial_year_nov" => "",
- "financial_year_oct" => "",
- "financial_year_sep" => "",
- "floating_labels" => "",
- "gcaptcha_enable" => "",
- "gcaptcha_secret_key" => "",
- "gcaptcha_secret_key_required" => "",
- "gcaptcha_site_key" => "",
- "gcaptcha_site_key_required" => "",
- "gcaptcha_tooltip" => "",
- "general" => "",
- "general_configuration" => "",
- "giftcard_number" => "",
- "giftcard_random" => "",
- "giftcard_series" => "",
- "image_allowed_file_types" => "",
- "image_max_height_tooltip" => "",
- "image_max_size_tooltip" => "",
- "image_max_width_tooltip" => "",
- "image_restrictions" => "",
- "include_hsn" => "",
- "info" => "",
- "info_configuration" => "",
- "input_groups" => "",
- "integrations" => "",
- "integrations_configuration" => "",
- "invoice" => "",
- "invoice_configuration" => "",
- "invoice_default_comments" => "",
- "invoice_email_message" => "",
- "invoice_enable" => "",
- "invoice_printer" => "",
- "invoice_type" => "",
- "is_readable" => "",
- "is_writable" => "is writable, but the permissions are higher than 750.",
- "item_markup" => "",
- "jsprintsetup_required" => "",
- "language" => "",
- "last_used_invoice_number" => "",
- "last_used_quote_number" => "",
- "last_used_work_order_number" => "",
- "left" => "",
- "license" => "",
- "license_configuration" => "",
- "line_sequence" => "",
- "lines_per_page" => "",
- "lines_per_page_number" => "",
- "lines_per_page_required" => "",
- "locale" => "",
- "locale_configuration" => "",
- "locale_info" => "",
- "location" => "",
- "location_configuration" => "",
- "location_info" => "",
- "login_form" => "",
- "logout" => "",
- "mailchimp" => "",
- "mailchimp_api_key" => "",
- "mailchimp_configuration" => "",
- "mailchimp_key_successfully" => "",
- "mailchimp_key_unsuccessfully" => "",
- "mailchimp_lists" => "",
- "mailchimp_tooltip" => "",
- "message" => "",
- "message_configuration" => "",
- "msg_msg" => "",
- "msg_msg_placeholder" => "",
- "msg_pwd" => "",
- "msg_pwd_required" => "",
- "msg_src" => "",
- "msg_src_required" => "",
- "msg_uid" => "",
- "msg_uid_required" => "",
- "multi_pack_enabled" => "",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "",
- "notify_alignment" => "",
- "number_format" => "",
- "number_locale" => "",
- "number_locale_invalid" => "",
- "number_locale_required" => "",
- "number_locale_tooltip" => "",
- "os_timezone" => "",
- "ospos_info" => "",
- "payment_options_order" => "",
- "perm_risk" => "Permissions higher than 750 leaves this software at risk.",
- "phone" => "",
- "phone_required" => "",
- "print_bottom_margin" => "",
- "print_bottom_margin_number" => "",
- "print_bottom_margin_required" => "",
- "print_delay_autoreturn" => "",
- "print_delay_autoreturn_number" => "",
- "print_delay_autoreturn_required" => "",
- "print_footer" => "",
- "print_header" => "",
- "print_left_margin" => "",
- "print_left_margin_number" => "",
- "print_left_margin_required" => "",
- "print_receipt_check_behaviour" => "",
- "print_receipt_check_behaviour_always" => "",
- "print_receipt_check_behaviour_last" => "",
- "print_receipt_check_behaviour_never" => "",
- "print_right_margin" => "",
- "print_right_margin_number" => "",
- "print_right_margin_required" => "",
- "print_silently" => "",
- "print_top_margin" => "",
- "print_top_margin_number" => "",
- "print_top_margin_required" => "",
- "quantity_decimals" => "",
- "quick_cash_enable" => "",
- "quote_default_comments" => "",
- "receipt" => "",
- "receipt_category" => "",
- "receipt_configuration" => "",
- "receipt_default" => "",
- "receipt_font_size" => "",
- "receipt_font_size_number" => "",
- "receipt_font_size_required" => "",
- "receipt_info" => "",
- "receipt_printer" => "",
- "receipt_short" => "",
- "receipt_show_company_name" => "",
- "receipt_show_description" => "",
- "receipt_show_serialnumber" => "",
- "receipt_show_tax_ind" => "",
- "receipt_show_taxes" => "",
- "receipt_show_total_discount" => "",
- "receipt_template" => "",
- "receiving_calculate_average_price" => "",
- "recv_invoice_format" => "",
- "register_mode_default" => "",
- "report_an_issue" => "",
- "return_policy_required" => "",
- "reward" => "",
- "reward_configuration" => "",
- "right" => "",
- "sales_invoice_format" => "",
- "sales_quote_format" => "",
- "mailpath_invalid" => "",
- "saved_successfully" => "",
- "saved_unsuccessfully" => "",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "Please use the below info for issue reporting.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "",
- "statistics" => "",
- "statistics_tooltip" => "",
- "stock_location" => "",
- "stock_location_duplicate" => "",
- "stock_location_invalid_chars" => "",
- "stock_location_required" => "",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "",
- "suggestions_second_column" => "",
- "suggestions_third_column" => "",
- "system_conf" => "Setup & Conf",
- "system_info" => "System Info",
- "table" => "",
- "table_configuration" => "",
- "takings_printer" => "",
- "tax" => "",
- "tax_category" => "",
- "tax_category_duplicate" => "",
- "tax_category_invalid_chars" => "",
- "tax_category_required" => "",
- "tax_category_used" => "",
- "tax_configuration" => "",
- "tax_decimals" => "",
- "tax_id" => "",
- "tax_included" => "",
- "theme" => "",
- "theme_preview" => "",
- "thousands_separator" => "",
- "timezone" => "",
- "timezone_error" => "",
- "top" => "",
- "use_destination_based_tax" => "",
- "user_timezone" => "",
- "website" => "",
- "wholesale_markup" => "",
- "work_order_enable" => "",
- "work_order_format" => "",
+ 'address' => '',
+ 'address_required' => '',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => '',
+ 'apostrophe' => '',
+ 'backup_button' => '',
+ 'backup_database' => '',
+ 'barcode' => '',
+ 'barcode_company' => '',
+ 'barcode_configuration' => '',
+ 'barcode_content' => '',
+ 'barcode_first_row' => '',
+ 'barcode_font' => '',
+ 'barcode_formats' => '',
+ 'barcode_generate_if_empty' => '',
+ 'barcode_height' => '',
+ 'barcode_id' => '',
+ 'barcode_info' => '',
+ 'barcode_layout' => '',
+ 'barcode_name' => '',
+ 'barcode_number' => '',
+ 'barcode_number_in_row' => '',
+ 'barcode_page_cellspacing' => '',
+ 'barcode_page_width' => '',
+ 'barcode_price' => '',
+ 'barcode_second_row' => '',
+ 'barcode_third_row' => '',
+ 'barcode_tooltip' => '',
+ 'barcode_type' => '',
+ 'barcode_width' => '',
+ 'bottom' => '',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => '',
+ 'cash_decimals_tooltip' => '',
+ 'cash_rounding' => '',
+ 'category_dropdown' => '',
+ 'center' => '',
+ 'change_apperance_tooltip' => '',
+ 'comma' => '',
+ 'company' => '',
+ 'company_avatar' => '',
+ 'company_change_image' => '',
+ 'company_logo' => '',
+ 'company_remove_image' => '',
+ 'company_required' => '',
+ 'company_select_image' => '',
+ 'company_website_url' => '',
+ 'country_codes' => '',
+ 'country_codes_tooltip' => '',
+ 'currency_code' => '',
+ 'currency_decimals' => '',
+ 'currency_symbol' => '',
+ 'current_employee_only' => '',
+ 'customer_reward' => '',
+ 'customer_reward_duplicate' => '',
+ 'customer_reward_enable' => '',
+ 'customer_reward_invalid_chars' => '',
+ 'customer_reward_required' => '',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => '',
+ 'datetimeformat' => '',
+ 'decimal_point' => '',
+ 'default_barcode_font_size_number' => '',
+ 'default_barcode_font_size_required' => '',
+ 'default_barcode_height_number' => '',
+ 'default_barcode_height_required' => '',
+ 'default_barcode_num_in_row_number' => '',
+ 'default_barcode_num_in_row_required' => '',
+ 'default_barcode_page_cellspacing_number' => '',
+ 'default_barcode_page_cellspacing_required' => '',
+ 'default_barcode_page_width_number' => '',
+ 'default_barcode_page_width_required' => '',
+ 'default_barcode_width_number' => '',
+ 'default_barcode_width_required' => '',
+ 'default_item_columns' => '',
+ 'default_origin_tax_code' => '',
+ 'default_receivings_discount' => '',
+ 'default_receivings_discount_number' => '',
+ 'default_receivings_discount_required' => '',
+ 'default_sales_discount' => '',
+ 'default_sales_discount_number' => '',
+ 'default_sales_discount_required' => '',
+ 'default_tax_category' => '',
+ 'default_tax_code' => '',
+ 'default_tax_jurisdiction' => '',
+ 'default_tax_name_number' => '',
+ 'default_tax_name_required' => '',
+ 'default_tax_rate' => '',
+ 'default_tax_rate_1' => '',
+ 'default_tax_rate_2' => '',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => '',
+ 'default_tax_rate_required' => '',
+ 'derive_sale_quantity' => '',
+ 'derive_sale_quantity_tooltip' => '',
+ 'dinner_table' => '',
+ 'dinner_table_duplicate' => '',
+ 'dinner_table_enable' => '',
+ 'dinner_table_invalid_chars' => '',
+ 'dinner_table_required' => '',
+ 'dot' => '',
+ 'email' => '',
+ 'email_configuration' => '',
+ 'email_mailpath' => '',
+ 'email_protocol' => '',
+ 'email_receipt_check_behaviour' => '',
+ 'email_receipt_check_behaviour_always' => '',
+ 'email_receipt_check_behaviour_last' => '',
+ 'email_receipt_check_behaviour_never' => '',
+ 'email_smtp_crypto' => '',
+ 'email_smtp_host' => '',
+ 'email_smtp_pass' => '',
+ 'email_smtp_port' => '',
+ 'email_smtp_timeout' => '',
+ 'email_smtp_user' => '',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => '',
+ 'enforce_privacy_tooltip' => '',
+ 'fax' => '',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => '',
+ 'financial_year_apr' => '',
+ 'financial_year_aug' => '',
+ 'financial_year_dec' => '',
+ 'financial_year_feb' => '',
+ 'financial_year_jan' => '',
+ 'financial_year_jul' => '',
+ 'financial_year_jun' => '',
+ 'financial_year_mar' => '',
+ 'financial_year_may' => '',
+ 'financial_year_nov' => '',
+ 'financial_year_oct' => '',
+ 'financial_year_sep' => '',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => '',
+ 'gcaptcha_secret_key' => '',
+ 'gcaptcha_secret_key_required' => '',
+ 'gcaptcha_site_key' => '',
+ 'gcaptcha_site_key_required' => '',
+ 'gcaptcha_tooltip' => '',
+ 'general' => '',
+ 'general_configuration' => '',
+ 'giftcard_number' => '',
+ 'giftcard_random' => '',
+ 'giftcard_series' => '',
+ 'image_allowed_file_types' => '',
+ 'image_max_height_tooltip' => '',
+ 'image_max_size_tooltip' => '',
+ 'image_max_width_tooltip' => '',
+ 'image_restrictions' => '',
+ 'include_hsn' => '',
+ 'info' => '',
+ 'info_configuration' => '',
+ 'input_groups' => '',
+ 'integrations' => '',
+ 'integrations_configuration' => '',
+ 'invoice' => '',
+ 'invoice_configuration' => '',
+ 'invoice_default_comments' => '',
+ 'invoice_email_message' => '',
+ 'invoice_enable' => '',
+ 'invoice_printer' => '',
+ 'invoice_type' => '',
+ 'is_readable' => '',
+ 'is_writable' => 'is writable, but the permissions are higher than 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => '',
+ 'language' => '',
+ 'last_used_invoice_number' => '',
+ 'last_used_quote_number' => '',
+ 'last_used_work_order_number' => '',
+ 'left' => '',
+ 'license' => '',
+ 'license_configuration' => '',
+ 'line_sequence' => '',
+ 'lines_per_page' => '',
+ 'lines_per_page_number' => '',
+ 'lines_per_page_required' => '',
+ 'locale' => '',
+ 'locale_configuration' => '',
+ 'locale_info' => '',
+ 'location' => '',
+ 'location_configuration' => '',
+ 'location_info' => '',
+ 'login_form' => '',
+ 'logout' => '',
+ 'mailchimp' => '',
+ 'mailchimp_api_key' => '',
+ 'mailchimp_configuration' => '',
+ 'mailchimp_key_successfully' => '',
+ 'mailchimp_key_unsuccessfully' => '',
+ 'mailchimp_lists' => '',
+ 'mailchimp_tooltip' => '',
+ 'message' => '',
+ 'message_configuration' => '',
+ 'msg_msg' => '',
+ 'msg_msg_placeholder' => '',
+ 'msg_pwd' => '',
+ 'msg_pwd_required' => '',
+ 'msg_src' => '',
+ 'msg_src_required' => '',
+ 'msg_uid' => '',
+ 'msg_uid_required' => '',
+ 'multi_pack_enabled' => '',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => '',
+ 'notify_alignment' => '',
+ 'number_format' => '',
+ 'number_locale' => '',
+ 'number_locale_invalid' => '',
+ 'number_locale_required' => '',
+ 'number_locale_tooltip' => '',
+ 'os_timezone' => '',
+ 'ospos_info' => '',
+ 'payment_options_order' => '',
+ 'payment_reference_code_length_limits' => 'Κωδικός αναφοράς πληρωμής
Όρια μήκους',
+ 'payment_reference_code_length_max_label' => 'Μέγ',
+ 'payment_reference_code_length_min_label' => 'Ελάχ',
+ 'perm_risk' => 'Permissions higher than 750 leaves this software at risk.',
+ 'phone' => '',
+ 'phone_required' => '',
+ 'print_bottom_margin' => '',
+ 'print_bottom_margin_number' => '',
+ 'print_bottom_margin_required' => '',
+ 'print_delay_autoreturn' => '',
+ 'print_delay_autoreturn_number' => '',
+ 'print_delay_autoreturn_required' => '',
+ 'print_footer' => '',
+ 'print_header' => '',
+ 'print_left_margin' => '',
+ 'print_left_margin_number' => '',
+ 'print_left_margin_required' => '',
+ 'print_receipt_check_behaviour' => '',
+ 'print_receipt_check_behaviour_always' => '',
+ 'print_receipt_check_behaviour_last' => '',
+ 'print_receipt_check_behaviour_never' => '',
+ 'print_right_margin' => '',
+ 'print_right_margin_number' => '',
+ 'print_right_margin_required' => '',
+ 'print_silently' => '',
+ 'print_top_margin' => '',
+ 'print_top_margin_number' => '',
+ 'print_top_margin_required' => '',
+ 'quantity_decimals' => '',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => '',
+ 'receipt' => '',
+ 'receipt_category' => '',
+ 'receipt_configuration' => '',
+ 'receipt_default' => '',
+ 'receipt_font_size' => '',
+ 'receipt_font_size_number' => '',
+ 'receipt_font_size_required' => '',
+ 'receipt_info' => '',
+ 'receipt_printer' => '',
+ 'receipt_short' => '',
+ 'receipt_show_company_name' => '',
+ 'receipt_show_description' => '',
+ 'receipt_show_serialnumber' => '',
+ 'receipt_show_tax_ind' => '',
+ 'receipt_show_taxes' => '',
+ 'receipt_show_total_discount' => '',
+ 'receipt_template' => '',
+ 'receiving_calculate_average_price' => '',
+ 'recv_invoice_format' => '',
+ 'register_mode_default' => '',
+ 'report_an_issue' => '',
+ 'return_policy_required' => '',
+ 'reward' => '',
+ 'reward_configuration' => '',
+ 'right' => '',
+ 'sales_invoice_format' => '',
+ 'sales_quote_format' => '',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => '',
+ 'saved_unsuccessfully' => '',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Please use the below info for issue reporting.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => '',
+ 'statistics' => '',
+ 'statistics_tooltip' => '',
+ 'stock_location' => '',
+ 'stock_location_duplicate' => '',
+ 'stock_location_invalid_chars' => '',
+ 'stock_location_required' => '',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => '',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => '',
+ 'suggestions_second_column' => '',
+ 'suggestions_third_column' => '',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => '',
+ 'table_configuration' => '',
+ 'takings_printer' => '',
+ 'tax' => '',
+ 'tax_category' => '',
+ 'tax_category_duplicate' => '',
+ 'tax_category_invalid_chars' => '',
+ 'tax_category_required' => '',
+ 'tax_category_used' => '',
+ 'tax_configuration' => '',
+ 'tax_decimals' => '',
+ 'tax_id' => '',
+ 'tax_included' => '',
+ 'theme' => '',
+ 'theme_preview' => '',
+ 'thousands_separator' => '',
+ 'timezone' => '',
+ 'timezone_error' => '',
+ 'top' => '',
+ 'use_destination_based_tax' => '',
+ 'user_timezone' => '',
+ 'website' => '',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => '',
+ 'work_order_format' => '',
];
diff --git a/app/Language/el/Login.php b/app/Language/el/Login.php
index 652c3f22c..19f7b296e 100644
--- a/app/Language/el/Login.php
+++ b/app/Language/el/Login.php
@@ -1,25 +1,30 @@
"",
- "go" => "",
- "invalid_gcaptcha" => "",
- "invalid_installation" => "",
- "invalid_username_and_password" => "",
- "login" => "",
- "logout" => "",
- "migration_needed" => "",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "",
- "required_username" => "",
- "username" => "",
- "welcome" => "",
+ "gcaptcha" => "",
+ "go" => "",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "",
+ "invalid_installation" => "",
+ "invalid_username_and_password" => "",
+ "login" => "",
+ "logout" => "",
+ "migrating_database" => "Μετεγκατάσταση βάσης δεδομένων",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "Η βάση δεδομένων μεταφέρθηκε επιτυχώς!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "",
+ "required_username" => "",
+ "username" => "",
+ "welcome" => ""
];
diff --git a/app/Language/el/Sales.php b/app/Language/el/Sales.php
index 867213f70..c7ab87cf1 100644
--- a/app/Language/el/Sales.php
+++ b/app/Language/el/Sales.php
@@ -1,231 +1,235 @@
"Διαθέσιμοι Πόντοι",
- "rewards_package" => "Ανταμοιβές",
- "rewards_remaining_balance" => "Η αξία των υπολειπόμενων πόντων ανταμοιβής είναι ",
- "account_number" => "Λογαριασμός #",
- "add_payment" => "Προσθήκη Πληρωμής",
- "amount_due" => "Ποσό επιστροφής",
- "amount_tendered" => "Ποσό Είσπραξης",
- "authorized_signature" => "Εγκεκριμένη Υπογραφή",
- "cancel_sale" => "Ακύρωση",
- "cash" => "Μετρητά",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "",
- "cash_deposit" => "Προκαταβολή Μετρητών",
- "cash_filter" => "Μετρητά",
- "change_due" => "Ποσό Επιστροφής",
- "change_price" => "",
- "check" => "Επιταγή",
- "check_balance" => "Υπόλοιπο Επιταγής",
- "check_filter" => "Επιταγή",
- "close" => "",
- "comment" => "Σχόλιο",
- "comments" => "Σχόλια",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Ολοκλήρωση",
- "confirm_cancel_sale" => "Είστε σίγουροι πως θέλετε να ακυρώσετε την συναλλαγή? Όλα τα είδη θα χαθούν.",
- "confirm_delete" => "Είστε σίγουροι πως θέλετε να διαγράψετε την/τις επιλεγμένες Πωλήσεις?",
- "confirm_restore" => "Είστε σίγουροι πως θέλετε να επαναφέρετε την/τις επιλεγμένες Πωλήσεις?",
- "credit" => "Πιστωτική Κάρτα",
- "credit_deposit" => "Ποσό Πίστωσης",
- "credit_filter" => "",
- "current_table" => "",
- "customer" => "Όνομα",
- "customer_address" => "Διεύθυνση",
- "customer_discount" => "Έκπτωση",
- "customer_email" => "Διεύθυνση ηλεκτρονικού ταχυδρομείου",
- "customer_location" => "Τοποθεσία",
- "customer_mailchimp_status" => "Κατάσταση Mailchimp",
- "customer_optional" => "(Απαραίτητο για πληρωμές επί Πιστώσει)",
- "customer_required" => "(Απαραίτητο)",
- "customer_total" => "Σύνολο",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Ημερομηνία Πώλησης",
- "date_range" => "Εύρος Ημερομηνιών",
- "date_required" => "Πρέπει να εισάγετε μια σωστή ημερομηνία.",
- "date_type" => "Ημερομηνία είναι απαραίτητο πεδίο.",
- "debit" => "Χρεωστική Κάρτα",
- "debit_filter" => "",
- "delete" => "Επιτρέπεται Διαγραφή",
- "delete_confirmation" => "Είστε σίγουροι πως θέλετε να διαγράψετε την πώληση? Η διαγραφή δε αναιρείται.",
- "delete_entire_sale" => "Διαγραφή Ολόκληρης Πώλησης",
- "delete_successful" => "Διαγραφή Πώλησης επιτυχής.",
- "delete_unsuccessful" => "Αποτυχία διαγραφής Πώλησης.",
- "description_abbrv" => "Περιγρ.",
- "discard" => "Απόρριψη",
- "discard_quote" => "",
- "discount" => "Έκπτ.",
- "discount_included" => "% Έκπτωσης",
- "discount_short" => "%",
- "due" => "Πρέπει να πληρωθεί",
- "due_filter" => "Πρέπει να πληρωθεί",
- "edit" => "Επεξεργασία",
- "edit_item" => "Επεξεργασία είδους",
- "edit_sale" => "Επεξεργασία Πώλησης",
- "email_receipt" => "Απόδειξη Ηλεκτρονικού Ταχυδρομείου",
- "employee" => "Υπάλληλος",
- "entry" => "Εγγραφή",
- "error_editing_item" => "Σφάλμα επεξεργασίας είδους",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Εύρεση ή Σκανάρισμα Είδους",
- "find_or_scan_item_or_receipt" => "Εύρεση ή Σκανάρισμα είδους ή Απόδειξης",
- "giftcard" => "Δωροκάρτα",
- "giftcard_balance" => "Υπόλοιπο Δωροκάρτας",
- "giftcard_filter" => "",
- "giftcard_number" => "Αριθμός Δωροκάρτας",
- "group_by_category" => "Ομαδοποίηση ανά Κατηγορία",
- "group_by_type" => "Ομαδοποίηση ανά Είδος",
- "hsn" => "HSN",
- "id" => "ID Πώλησης",
- "include_prices" => "Συμπερίληψη Τιμών?",
- "invoice" => "Τιμολόγιο",
- "invoice_confirm" => "Το τιμολόγιο θα αποσταλεί σε",
- "invoice_enable" => "Δημιουργία Τιμολογίου",
- "invoice_filter" => "Τιμολόγια",
- "invoice_no_email" => "Ο Πελάτης δεν έχει έγκυρο λογαριασμό ταχυδρομείου.",
- "invoice_number" => "Τιμολόγιο #",
- "invoice_number_duplicate" => "Ο Αριθμός Τιμολογίου πρέπει να είναι μοναδικός.",
- "invoice_sent" => "Το Τιμολόγιο απεστάλη σε",
- "invoice_total" => "Σύνολο Τιμολογίου",
- "invoice_type_custom_invoice" => "Προσαρμοσμένο Τιμολόγιο (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Προσαρμοσμένο Φορολογικό Τιμολόγιο (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Τιμολόγιο (invoice.php)",
- "invoice_type_tax_invoice" => "Φορολογικό Τιμολόγιο (tax_invoice.php)",
- "invoice_unsent" => "Ανεπιτυχής αποστολή Τιμολογίου σε",
- "invoice_update" => "Επαναμέτρηση",
- "item_insufficient_of_stock" => "Το είδος έχει ανεπαρκή απόθεμα.",
- "item_name" => "Όνομα Είδους",
- "item_number" => "# Είδους",
- "item_out_of_stock" => "Το είδος δεν υπάρχει σε απόθεμα.",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "Λειτουργία Ταμείου",
- "must_enter_numeric" => "Το Ποσό Είσπραξης πρέπει να είναι Αριθμός.",
- "must_enter_numeric_giftcard" => "Ο Αριθμός της Δωροκάρτας πρέπει να είναι αριθμός.",
- "new_customer" => "Νέος Πελάτης",
- "new_item" => "Νέο Είδος",
- "no_description" => "Δεν έχει περιγραφή",
- "no_filter" => "Όλα",
- "no_items_in_cart" => "Δεν υπάρχουν είδη στο καλάθι.",
- "no_sales_to_display" => "Δεν υπάρχουν Πωλήσεις προς προβολή.",
- "none_selected" => "Δεν έχετε επιλέξει Πώληση/σεις για διαγραφή.",
- "nontaxed_ind" => "",
- "not_authorized" => "Αυτή η ενέργεια δεν είναι εξουσιοδοτημένη.",
- "one_or_multiple" => "Πώληση/εις",
- "payment" => "Τύπος Πληρωμής",
- "payment_amount" => "Ποσό",
- "payment_not_cover_total" => "Το Ποσό πρέπει να είναι μεγαλύτερο ή ίσο του Συνόλου.",
- "payment_type" => "Τύπος",
- "payments" => "",
- "payments_total" => "Συνολικό Ποσό",
- "price" => "Τιμή",
- "print_after_sale" => "Εκτύπωση μετά την Πώληση",
- "quantity" => "Ποσότητα",
- "quantity_less_than_reorder_level" => "Προσοχή: Επιθυμητή Ποσότητα είναι λιγότερη από την τιμή Επαναπαραγγελίας για το είδος.",
- "quantity_less_than_zero" => "Προσοχή: Επιθυμητή Ποσότητα είναι ανεπαρκής. Μπορείτε να επεξεργαστείτε την πώληση, αλλά ελέγξτε το απόθεμα.",
- "quantity_of_items" => "Ποσότητα των {0} Ειδών",
- "quote" => "Παράθεση",
- "quote_number" => "Αριθμός Παράθεσης",
- "quote_number_duplicate" => "Ο Αριθμός Παράθεσης πρέπει να είναι μοναδικός.",
- "quote_sent" => "Η Παράθεση απεστάλη σε",
- "quote_unsent" => "Αποτυχία αποστολής Παράθεσης σε",
- "receipt" => "Απόδειξη Πώλησης",
- "receipt_no_email" => "Ο πελάτης δεν έχει έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου.",
- "receipt_number" => "Πώληση #",
- "receipt_sent" => "Η Απόδειξη εστάλη σε",
- "receipt_unsent" => "Αποτυχία αποστολής Απόδειξης σε",
- "refund" => "",
- "register" => "Μητρώο Πωλήσεων",
- "remove_customer" => "Αφαίρεση Πελάτη",
- "remove_discount" => "",
- "return" => "Επιστροφή",
- "rewards" => "Πόντοι Ανταμοιβής",
- "rewards_balance" => "Υπόλοιπο Πόντων Ανταμοιβής",
- "sale" => "Πώληση",
- "sale_by_invoice" => "Πώληση ανά Τιμολόγιο",
- "sale_for_customer" => "Πελάτης:",
- "sale_time" => "Ώρα",
- "sales_tax" => "Φόρος Πώλησης",
- "sales_total" => "",
- "select_customer" => "Επιλογή Πελάτη",
- "send_invoice" => "Αποστολή Τιμολογίου",
- "send_quote" => "Αποστολή Παράθεσης",
- "send_receipt" => "Αποστολή Απόδειξης",
- "send_work_order" => "Αποστολή Εντολής Εργασίας",
- "serial" => "Σειριακός",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Εμφάνιση Τιμολογίου",
- "show_receipt" => "Εμφάνιση Απόδειξης",
- "start_typing_customer_name" => "Πληκτρολογήστε τις λεπτομέρειες πελάτη...",
- "start_typing_item_name" => "Πληκτρολογήστε το είδος ή σκανάρετε το Barcode...",
- "stock" => "Απόθεμα",
- "stock_location" => "Τοποθεσία Αποθέματος",
- "sub_total" => "Υποσύνολο",
- "successfully_deleted" => "Έχετε διαγράψει επιτυχώς",
- "successfully_restored" => "Έχετε επαναφέρει επιτυχώς",
- "successfully_suspended_sale" => "Αναμονή Πώλησης επιτυχής.",
- "successfully_updated" => "Ενημέρωση Πώλησης επιτυχής.",
- "suspend_sale" => "Αναμονή",
- "suspended_doc_id" => "Έγγραφο",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Ανεστάλη",
- "table" => "Πίνακας",
- "takings" => "Ημερήσιες Πωλήσεις",
- "tax" => "Φόρος",
- "tax_id" => "Id Φόρου",
- "tax_invoice" => "Φόρος τιμολογίου",
- "tax_percent" => "% Φόρου",
- "taxed_ind" => "",
- "total" => "Σύνολο",
- "total_tax_exclusive" => "Εξαιρουμένου Φόρου",
- "transaction_failed" => "Συναλλαγή Πώλησης απέτυχε.",
- "unable_to_add_item" => "Προσθήκη είδους στην Πώληση απέτυχε",
- "unsuccessfully_deleted" => "Διαγραφή Πώλησης/εων απέτυχε.",
- "unsuccessfully_restored" => "Επαναφορά Πώλησης/εων απέτυχε.",
- "unsuccessfully_suspended_sale" => "Αναμονή Πώλησης απέτυχε.",
- "unsuccessfully_updated" => "Ενημέρωση πώλησης απέτυχε.",
- "unsuspend" => "Επαναφορά από Αναμονή",
- "unsuspend_and_delete" => "Ενέργεια",
- "update" => "Ενημέρωση",
- "upi" => "UPI",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "Παραγγελία Εργασίας",
- "work_order_number" => "Αριθμός Παραγγελίας Εργασίας",
- "work_order_number_duplicate" => "Ο Αριθμός της Παραγγελίας Εργασίας πρέπει να είναι μοναδικός.",
- "work_order_sent" => "Εντολή Εργασίας απεστάλη σε",
- "work_order_unsent" => "Ανεπιτυχής αποστολή Εντολής Εργασίας",
+ 'account_number' => 'Λογαριασμός #',
+ 'add_payment' => 'Προσθήκη Πληρωμής',
+ 'amount_due' => 'Ποσό επιστροφής',
+ 'amount_tendered' => 'Ποσό Είσπραξης',
+ 'authorized_signature' => 'Εγκεκριμένη Υπογραφή',
+ 'cancel_sale' => 'Ακύρωση',
+ 'cash' => 'Μετρητά',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => '',
+ 'cash_deposit' => 'Προκαταβολή Μετρητών',
+ 'cash_filter' => 'Μετρητά',
+ 'change_due' => 'Ποσό Επιστροφής',
+ 'change_price' => '',
+ 'check' => 'Επιταγή',
+ 'check_balance' => 'Υπόλοιπο Επιταγής',
+ 'check_filter' => 'Επιταγή',
+ 'close' => '',
+ 'comment' => 'Σχόλιο',
+ 'comments' => 'Σχόλια',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Ολοκλήρωση',
+ 'confirm_cancel_sale' => 'Είστε σίγουροι πως θέλετε να ακυρώσετε την συναλλαγή? Όλα τα είδη θα χαθούν.',
+ 'confirm_delete' => 'Είστε σίγουροι πως θέλετε να διαγράψετε την/τις επιλεγμένες Πωλήσεις?',
+ 'confirm_restore' => 'Είστε σίγουροι πως θέλετε να επαναφέρετε την/τις επιλεγμένες Πωλήσεις?',
+ 'credit' => 'Πιστωτική Κάρτα',
+ 'credit_deposit' => 'Ποσό Πίστωσης',
+ 'credit_filter' => '',
+ 'current_table' => '',
+ 'customer' => 'Όνομα',
+ 'customer_address' => 'Διεύθυνση',
+ 'customer_discount' => 'Έκπτωση',
+ 'customer_email' => 'Διεύθυνση ηλεκτρονικού ταχυδρομείου',
+ 'customer_location' => 'Τοποθεσία',
+ 'customer_mailchimp_status' => 'Κατάσταση Mailchimp',
+ 'customer_optional' => '(Απαραίτητο για πληρωμές επί Πιστώσει)',
+ 'customer_required' => '(Απαραίτητο)',
+ 'customer_total' => 'Σύνολο',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Διαθέσιμοι Πόντοι',
+ 'daily_sales' => '',
+ 'date' => 'Ημερομηνία Πώλησης',
+ 'date_range' => 'Εύρος Ημερομηνιών',
+ 'date_required' => 'Πρέπει να εισάγετε μια σωστή ημερομηνία.',
+ 'date_type' => 'Ημερομηνία είναι απαραίτητο πεδίο.',
+ 'debit' => 'Χρεωστική Κάρτα',
+ 'debit_filter' => '',
+ 'delete' => 'Επιτρέπεται Διαγραφή',
+ 'delete_confirmation' => 'Είστε σίγουροι πως θέλετε να διαγράψετε την πώληση? Η διαγραφή δε αναιρείται.',
+ 'delete_entire_sale' => 'Διαγραφή Ολόκληρης Πώλησης',
+ 'delete_successful' => 'Διαγραφή Πώλησης επιτυχής.',
+ 'delete_unsuccessful' => 'Αποτυχία διαγραφής Πώλησης.',
+ 'description_abbrv' => 'Περιγρ.',
+ 'discard' => 'Απόρριψη',
+ 'discard_quote' => '',
+ 'discount' => 'Έκπτ.',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Έκπτωσης',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'Πρέπει να πληρωθεί',
+ 'due_filter' => 'Πρέπει να πληρωθεί',
+ 'edit' => 'Επεξεργασία',
+ 'edit_item' => 'Επεξεργασία είδους',
+ 'edit_sale' => 'Επεξεργασία Πώλησης',
+ 'email_receipt' => 'Απόδειξη Ηλεκτρονικού Ταχυδρομείου',
+ 'employee' => 'Υπάλληλος',
+ 'entry' => 'Εγγραφή',
+ 'error_editing_item' => 'Σφάλμα επεξεργασίας είδους',
+ 'find_or_scan_item' => 'Εύρεση ή Σκανάρισμα Είδους',
+ 'find_or_scan_item_or_receipt' => 'Εύρεση ή Σκανάρισμα είδους ή Απόδειξης',
+ 'giftcard' => 'Δωροκάρτα',
+ 'giftcard_balance' => 'Υπόλοιπο Δωροκάρτας',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Αριθμός Δωροκάρτας',
+ 'group_by_category' => 'Ομαδοποίηση ανά Κατηγορία',
+ 'group_by_type' => 'Ομαδοποίηση ανά Είδος',
+ 'hsn' => 'HSN',
+ 'id' => 'ID Πώλησης',
+ 'include_prices' => 'Συμπερίληψη Τιμών?',
+ 'invoice' => 'Τιμολόγιο',
+ 'invoice_confirm' => 'Το τιμολόγιο θα αποσταλεί σε',
+ 'invoice_enable' => 'Δημιουργία Τιμολογίου',
+ 'invoice_filter' => 'Τιμολόγια',
+ 'invoice_no_email' => 'Ο Πελάτης δεν έχει έγκυρο λογαριασμό ταχυδρομείου.',
+ 'invoice_number' => 'Τιμολόγιο #',
+ 'invoice_number_duplicate' => 'Ο Αριθμός Τιμολογίου πρέπει να είναι μοναδικός.',
+ 'invoice_sent' => 'Το Τιμολόγιο απεστάλη σε',
+ 'invoice_total' => 'Σύνολο Τιμολογίου',
+ 'invoice_type_custom_invoice' => 'Προσαρμοσμένο Τιμολόγιο (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Προσαρμοσμένο Φορολογικό Τιμολόγιο (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Τιμολόγιο (invoice.php)',
+ 'invoice_type_tax_invoice' => 'Φορολογικό Τιμολόγιο (tax_invoice.php)',
+ 'invoice_unsent' => 'Ανεπιτυχής αποστολή Τιμολογίου σε',
+ 'invoice_update' => 'Επαναμέτρηση',
+ 'item_insufficient_of_stock' => 'Το είδος έχει ανεπαρκή απόθεμα.',
+ 'item_name' => 'Όνομα Είδους',
+ 'item_number' => '# Είδους',
+ 'item_out_of_stock' => 'Το είδος δεν υπάρχει σε απόθεμα.',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'Λειτουργία Ταμείου',
+ 'must_enter_numeric' => 'Το Ποσό Είσπραξης πρέπει να είναι Αριθμός.',
+ 'must_enter_numeric_giftcard' => 'Ο Αριθμός της Δωροκάρτας πρέπει να είναι αριθμός.',
+ 'must_enter_reference_code' => 'Πρέπει να εισαχθεί αριθμός αναφοράς/ανάκτησης.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Νέος Πελάτης',
+ 'new_item' => 'Νέο Είδος',
+ 'no_description' => 'Δεν έχει περιγραφή',
+ 'no_filter' => 'Όλα',
+ 'no_items_in_cart' => 'Δεν υπάρχουν είδη στο καλάθι.',
+ 'no_sales_to_display' => 'Δεν υπάρχουν Πωλήσεις προς προβολή.',
+ 'none_selected' => 'Δεν έχετε επιλέξει Πώληση/σεις για διαγραφή.',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => 'Αυτή η ενέργεια δεν είναι εξουσιοδοτημένη.',
+ 'one_or_multiple' => 'Πώληση/εις',
+ 'payment' => 'Τύπος Πληρωμής',
+ 'payment_amount' => 'Ποσό',
+ 'payment_not_cover_total' => 'Το Ποσό πρέπει να είναι μεγαλύτερο ή ίσο του Συνόλου.',
+ 'payment_type' => 'Τύπος',
+ 'payments' => '',
+ 'payments_total' => 'Συνολικό Ποσό',
+ 'price' => 'Τιμή',
+ 'print_after_sale' => 'Εκτύπωση μετά την Πώληση',
+ 'quantity' => 'Ποσότητα',
+ 'quantity_less_than_reorder_level' => 'Προσοχή: Επιθυμητή Ποσότητα είναι λιγότερη από την τιμή Επαναπαραγγελίας για το είδος.',
+ 'quantity_less_than_zero' => 'Προσοχή: Επιθυμητή Ποσότητα είναι ανεπαρκής. Μπορείτε να επεξεργαστείτε την πώληση, αλλά ελέγξτε το απόθεμα.',
+ 'quantity_of_items' => 'Ποσότητα των {0} Ειδών',
+ 'quote' => 'Παράθεση',
+ 'quote_number' => 'Αριθμός Παράθεσης',
+ 'quote_number_duplicate' => 'Ο Αριθμός Παράθεσης πρέπει να είναι μοναδικός.',
+ 'quote_sent' => 'Η Παράθεση απεστάλη σε',
+ 'quote_unsent' => 'Αποτυχία αποστολής Παράθεσης σε',
+ 'receipt' => 'Απόδειξη Πώλησης',
+ 'receipt_no_email' => 'Ο πελάτης δεν έχει έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου.',
+ 'receipt_number' => 'Πώληση #',
+ 'receipt_sent' => 'Η Απόδειξη εστάλη σε',
+ 'receipt_unsent' => 'Αποτυχία αποστολής Απόδειξης σε',
+ 'reference_code' => 'Κωδικός αναφοράς πληρωμής',
+ 'reference_code_invalid_characters' => 'Ο κωδικός αναφοράς πρέπει να περιέχει μόνο γράμματα και αριθμούς.',
+ 'reference_code_length_error' => 'Το μήκος του κωδικού αναφοράς δεν είναι έγκυρο.',
+ 'refund' => '',
+ 'register' => 'Μητρώο Πωλήσεων',
+ 'remove_customer' => 'Αφαίρεση Πελάτη',
+ 'remove_discount' => '',
+ 'return' => 'Επιστροφή',
+ 'rewards' => 'Πόντοι Ανταμοιβής',
+ 'rewards_balance' => 'Υπόλοιπο Πόντων Ανταμοιβής',
+ 'rewards_package' => 'Ανταμοιβές',
+ 'rewards_remaining_balance' => 'Η αξία των υπολειπόμενων πόντων ανταμοιβής είναι ',
+ 'sale' => 'Πώληση',
+ 'sale_by_invoice' => 'Πώληση ανά Τιμολόγιο',
+ 'sale_for_customer' => 'Πελάτης:',
+ 'sale_time' => 'Ώρα',
+ 'sales_tax' => 'Φόρος Πώλησης',
+ 'sales_total' => '',
+ 'select_customer' => 'Επιλογή Πελάτη',
+ 'send_invoice' => 'Αποστολή Τιμολογίου',
+ 'send_quote' => 'Αποστολή Παράθεσης',
+ 'send_receipt' => 'Αποστολή Απόδειξης',
+ 'send_work_order' => 'Αποστολή Εντολής Εργασίας',
+ 'serial' => 'Σειριακός',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Εμφάνιση Τιμολογίου',
+ 'show_receipt' => 'Εμφάνιση Απόδειξης',
+ 'start_typing_customer_name' => 'Πληκτρολογήστε τις λεπτομέρειες πελάτη...',
+ 'start_typing_item_name' => 'Πληκτρολογήστε το είδος ή σκανάρετε το Barcode...',
+ 'stock' => 'Απόθεμα',
+ 'stock_location' => 'Τοποθεσία Αποθέματος',
+ 'sub_total' => 'Υποσύνολο',
+ 'successfully_deleted' => 'Έχετε διαγράψει επιτυχώς',
+ 'successfully_restored' => 'Έχετε επαναφέρει επιτυχώς',
+ 'successfully_suspended_sale' => 'Αναμονή Πώλησης επιτυχής.',
+ 'successfully_updated' => 'Ενημέρωση Πώλησης επιτυχής.',
+ 'suspend_sale' => 'Αναμονή',
+ 'suspended_doc_id' => 'Έγγραφο',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Ανεστάλη',
+ 'table' => 'Πίνακας',
+ 'takings' => 'Ημερήσιες Πωλήσεις',
+ 'tax' => 'Φόρος',
+ 'tax_id' => 'Id Φόρου',
+ 'tax_invoice' => 'Φόρος τιμολογίου',
+ 'tax_percent' => '% Φόρου',
+ 'taxed_ind' => '',
+ 'total' => 'Σύνολο',
+ 'total_tax_exclusive' => 'Εξαιρουμένου Φόρου',
+ 'transaction_failed' => 'Συναλλαγή Πώλησης απέτυχε.',
+ 'unable_to_add_item' => 'Προσθήκη είδους στην Πώληση απέτυχε',
+ 'unsuccessfully_deleted' => 'Διαγραφή Πώλησης/εων απέτυχε.',
+ 'unsuccessfully_restored' => 'Επαναφορά Πώλησης/εων απέτυχε.',
+ 'unsuccessfully_suspended_sale' => 'Αναμονή Πώλησης απέτυχε.',
+ 'unsuccessfully_updated' => 'Ενημέρωση πώλησης απέτυχε.',
+ 'unsuspend' => 'Επαναφορά από Αναμονή',
+ 'unsuspend_and_delete' => 'Ενέργεια',
+ 'update' => 'Ενημέρωση',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'Παραγγελία Εργασίας',
+ 'work_order_number' => 'Αριθμός Παραγγελίας Εργασίας',
+ 'work_order_number_duplicate' => 'Ο Αριθμός της Παραγγελίας Εργασίας πρέπει να είναι μοναδικός.',
+ 'work_order_sent' => 'Εντολή Εργασίας απεστάλη σε',
+ 'work_order_unsent' => 'Ανεπιτυχής αποστολή Εντολής Εργασίας',
];
diff --git a/app/Language/en-GB/Config.php b/app/Language/en-GB/Config.php
index 7f40ec8a3..5de11324b 100644
--- a/app/Language/en-GB/Config.php
+++ b/app/Language/en-GB/Config.php
@@ -1,332 +1,335 @@
"Company Address",
- "address_required" => "Company Address is a required field.",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "Allow Duplicate Barcodes",
- "apostrophe" => "apostrophe",
- "backup_button" => "Backup",
- "backup_database" => "Backup Database",
- "barcode" => "Barcode",
- "barcode_company" => "Company Name",
- "barcode_configuration" => "Barcode Configuration",
- "barcode_content" => "Barcode Content",
- "barcode_first_row" => "Row 1",
- "barcode_font" => "Font",
- "barcode_formats" => "Input Formats",
- "barcode_generate_if_empty" => "Generate if empty.",
- "barcode_height" => "Height (px)",
- "barcode_id" => "Item Id/Name",
- "barcode_info" => "Barcode Configuration Information",
- "barcode_layout" => "Barcode Layout",
- "barcode_name" => "Name",
- "barcode_number" => "Barcode",
- "barcode_number_in_row" => "Number in row",
- "barcode_page_cellspacing" => "Display page cellspacing.",
- "barcode_page_width" => "Display page width",
- "barcode_price" => "Price",
- "barcode_second_row" => "Row 2",
- "barcode_third_row" => "Row 3",
- "barcode_tooltip" => "Warning: This feature can cause duplicate items to be imported or created. Do not use if you do not want duplicate barcodes.",
- "barcode_type" => "Barcode Type",
- "barcode_width" => "Width (px)",
- "bottom" => "Bottom",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Cash Decimals",
- "cash_decimals_tooltip" => "If Cash Decimals and Currency Decimals are the same then no cash triggered rounding will take place, unless Cash Rounding is set to Half Five.",
- "cash_rounding" => "Cash Rounding",
- "category_dropdown" => "Show Category as a dropdown",
- "center" => "Centre",
- "change_apperance_tooltip" => "",
- "comma" => "comma",
- "company" => "Company Name",
- "company_avatar" => "",
- "company_change_image" => "Change Image",
- "company_logo" => "Company Logo",
- "company_remove_image" => "Remove Image",
- "company_required" => "Company name is a required field",
- "company_select_image" => "Select Image",
- "company_website_url" => "Company website is not a valid URL (http://...).",
- "country_codes" => "Country Codes",
- "country_codes_tooltip" => "Comma separated list of country codes for nominatim address lookup.",
- "currency_code" => "Currency Code",
- "currency_decimals" => "Currency Decimals",
- "currency_symbol" => "Currency Symbol",
- "current_employee_only" => "",
- "customer_reward" => "Reward",
- "customer_reward_duplicate" => "Please use a unique reward name.",
- "customer_reward_enable" => "Enable Customer Rewards",
- "customer_reward_invalid_chars" => "The reward name cannot contain '_'",
- "customer_reward_required" => "Reward is a required field",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "Date and Time Filter",
- "datetimeformat" => "Date and Time Format",
- "decimal_point" => "Decimal Point",
- "default_barcode_font_size_number" => "Default Barcode Font size must be a number.",
- "default_barcode_font_size_required" => "Default Barcode Font size is a required field.",
- "default_barcode_height_number" => "Default Barcode Height must be a number.",
- "default_barcode_height_required" => "Default Barcode Height is a required field.",
- "default_barcode_num_in_row_number" => "Default Barcode Number in row must be a number.",
- "default_barcode_num_in_row_required" => "Default Barcode Number in row is a required field.",
- "default_barcode_page_cellspacing_number" => "Default Barcode Page Cellspacing must be a number.",
- "default_barcode_page_cellspacing_required" => "Default Barcode Page Cellspacing is a required field.",
- "default_barcode_page_width_number" => "Default Barcode Page Width must be a number.",
- "default_barcode_page_width_required" => "Default Barcode Page Width is a required field.",
- "default_barcode_width_number" => "Default Barcode Width must be a number.",
- "default_barcode_width_required" => "Default Barcode Width is a required field.",
- "default_item_columns" => "Default Visible Item Columns",
- "default_origin_tax_code" => "Default Origin Tax Code",
- "default_receivings_discount" => "Default Receivings Discount",
- "default_receivings_discount_number" => "Default Receivings Discount must be a number.",
- "default_receivings_discount_required" => "Default Receivings Discount is a required field.",
- "default_sales_discount" => "Default Sales Discount",
- "default_sales_discount_number" => "Default Sales Discount must be a number.",
- "default_sales_discount_required" => "Default Sales Discount is a required field.",
- "default_tax_category" => "Default Tax Category",
- "default_tax_code" => "Default Tax Code",
- "default_tax_jurisdiction" => "Default Tax Jurisdiction",
- "default_tax_name_number" => "Default Tax Name must be a string.",
- "default_tax_name_required" => "Default Tax Name is a required field.",
- "default_tax_rate" => "Default Tax Rate %",
- "default_tax_rate_1" => "Tax 1 Rate",
- "default_tax_rate_2" => "Tax 2 Rate",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Default Tax Rate must be a number.",
- "default_tax_rate_required" => "Default Tax Rate is a required field.",
- "derive_sale_quantity" => "Allow Derived Sale Quantity",
- "derive_sale_quantity_tooltip" => "If checked then a new item type will be provided for items ordered by extended amount",
- "dinner_table" => "Table",
- "dinner_table_duplicate" => "Please use an unique table name.",
- "dinner_table_enable" => "Enable Dinner Tables",
- "dinner_table_invalid_chars" => "The table name cannot contain '_'.",
- "dinner_table_required" => "Table is a required field.",
- "dot" => "dot",
- "email" => "Email",
- "email_configuration" => "Email Configuration",
- "email_mailpath" => "Path to Sendmail",
- "email_protocol" => "Protocol",
- "email_receipt_check_behaviour" => "Email Receipt checkbox",
- "email_receipt_check_behaviour_always" => "Always checked",
- "email_receipt_check_behaviour_last" => "Remember last selection",
- "email_receipt_check_behaviour_never" => "Always unchecked",
- "email_smtp_crypto" => "SMTP Encryption",
- "email_smtp_host" => "SMTP Server",
- "email_smtp_pass" => "SMTP Password",
- "email_smtp_port" => "SMTP Port",
- "email_smtp_timeout" => "SMTP Timeout (s)",
- "email_smtp_user" => "SMTP Username",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Enforce privacy",
- "enforce_privacy_tooltip" => "Protect Customers privacy enforcing data scrambling in case of their data being deleted",
- "fax" => "Fax",
- "file_perm" => "There are problems with file permissions. Please fix and reload this page.",
- "financial_year" => "Financial Year Start",
- "financial_year_apr" => "1st of April",
- "financial_year_aug" => "1st of August",
- "financial_year_dec" => "1st of December",
- "financial_year_feb" => "1st of February",
- "financial_year_jan" => "1st of January",
- "financial_year_jul" => "1st of July",
- "financial_year_jun" => "1st of June",
- "financial_year_mar" => "1st of March",
- "financial_year_may" => "1st of May",
- "financial_year_nov" => "1st of November",
- "financial_year_oct" => "1st of October",
- "financial_year_sep" => "1st of September",
- "floating_labels" => "Floating Labels",
- "gcaptcha_enable" => "Login Page reCAPTCHA",
- "gcaptcha_secret_key" => "reCAPTCHA Secret Key",
- "gcaptcha_secret_key_required" => "reCAPTCHA Secret Key is a required field",
- "gcaptcha_site_key" => "reCAPTCHA Site Key",
- "gcaptcha_site_key_required" => "reCAPTCHA Site Key is a required field",
- "gcaptcha_tooltip" => "Protect the Login page with Google reCAPTCHA, click the icon for an API key pair.",
- "general" => "General",
- "general_configuration" => "General Configuration",
- "giftcard_number" => "Gift Card Number",
- "giftcard_random" => "Generate Random",
- "giftcard_series" => "Generate in Series",
- "image_allowed_file_types" => "Allowed file types",
- "image_max_height_tooltip" => "Maximum allowed height of image uploads in pixels (px).",
- "image_max_size_tooltip" => "Maximum allowed file size of image uploads in kilobytes (kb).",
- "image_max_width_tooltip" => "Maximum allowed width of image uploads in pixels (px).",
- "image_restrictions" => "Image Upload Restrictions",
- "include_hsn" => "Include Support for HSN Codes",
- "info" => "Information",
- "info_configuration" => "Shop Information",
- "input_groups" => "Input Groups",
- "integrations" => "Integrations",
- "integrations_configuration" => "Third Party Integrations",
- "invoice" => "Invoice",
- "invoice_configuration" => "Invoice Print Settings",
- "invoice_default_comments" => "Default Invoice Comments",
- "invoice_email_message" => "Invoice Email Template",
- "invoice_enable" => "Enable Invoicing",
- "invoice_printer" => "Invoice Printer",
- "invoice_type" => "Invoice Type",
- "is_readable" => "is readable, but the permissions are incorrectly set. Please set it to 640 or 660 and refresh.",
- "is_writable" => "is writable, but the permissions are incorrectly set. Please set it to 750 and refresh.",
- "item_markup" => "",
- "jsprintsetup_required" => "Warning! This disabled functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?",
- "language" => "Language",
- "last_used_invoice_number" => "Last used Invoice Number",
- "last_used_quote_number" => "Last used Quote Number",
- "last_used_work_order_number" => "Last used W/O Number",
- "left" => "Left",
- "license" => "License",
- "license_configuration" => "License Statement",
- "line_sequence" => "Line Sequence",
- "lines_per_page" => "Lines Per Page",
- "lines_per_page_number" => "Lines Per Page must be a number.",
- "lines_per_page_required" => "Lines Per Page is a required field.",
- "locale" => "Localisation",
- "locale_configuration" => "Localisation Configuration",
- "locale_info" => "Localisation Configuration Information",
- "location" => "Stock",
- "location_configuration" => "Stock Locations",
- "location_info" => "Location Configuration Information",
- "login_form" => "Login Form Style",
- "logout" => "Don't you want to make a backup before logging out? Click [OK] to backup, [Cancel] to logout.",
- "mailchimp" => "MailChimp",
- "mailchimp_api_key" => "MailChimp API Key",
- "mailchimp_configuration" => "MailChimp Configuration",
- "mailchimp_key_successfully" => "Valid API Key.",
- "mailchimp_key_unsuccessfully" => "Invalid API Key.",
- "mailchimp_lists" => "MailChimp List(s)",
- "mailchimp_tooltip" => "Click the icon for an API key.",
- "message" => "Message",
- "message_configuration" => "Message Configuration",
- "msg_msg" => "Saved Text Message",
- "msg_msg_placeholder" => "If you wish to use a SMS template save your message here. Otherwise leave the box blank.",
- "msg_pwd" => "SMS-API Password",
- "msg_pwd_required" => "SMS-API Password is a required field",
- "msg_src" => "SMS-API Sender ID",
- "msg_src_required" => "SMS-API Sender ID is a required field",
- "msg_uid" => "SMS-API Username",
- "msg_uid_required" => "SMS-API Username is a required field",
- "multi_pack_enabled" => "Multiple Packages per Item",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "none",
- "notify_alignment" => "Notification Popup Position",
- "number_format" => "Number Format",
- "number_locale" => "Localisation",
- "number_locale_invalid" => "The entered locale is invalid. Check the link in the tooltip to find a sensible value.",
- "number_locale_required" => "Number Locale is a required field.",
- "number_locale_tooltip" => "Find a suitable locale through this link.",
- "os_timezone" => "OSPOS Timezone:",
- "ospos_info" => "OSPOS Installation Info",
- "payment_options_order" => "Payment Options Order",
- "perm_risk" => "Incorrect permissions leaves this software at risk.",
- "phone" => "Company Phone",
- "phone_required" => "Company Phone is a required field.",
- "print_bottom_margin" => "Margin Bottom",
- "print_bottom_margin_number" => "Bottom Margin must be a number.",
- "print_bottom_margin_required" => "Bottom Margin is a required field.",
- "print_delay_autoreturn" => "Autoreturn to Sale delay",
- "print_delay_autoreturn_number" => "Autoreturn to Sale delay is a required field.",
- "print_delay_autoreturn_required" => "Autoreturn to Sale delay must be a number.",
- "print_footer" => "Print Browser Footer",
- "print_header" => "Print Browser Header",
- "print_left_margin" => "Margin Left",
- "print_left_margin_number" => "Left Margin must be a number.",
- "print_left_margin_required" => "Left Margin is a required field.",
- "print_receipt_check_behaviour" => "Print Receipt checkbox",
- "print_receipt_check_behaviour_always" => "Always checked",
- "print_receipt_check_behaviour_last" => "Remember last selection",
- "print_receipt_check_behaviour_never" => "Always unchecked",
- "print_right_margin" => "Margin Right",
- "print_right_margin_number" => "Default Right Margin must be a number.",
- "print_right_margin_required" => "Default Right Margin is a required field.",
- "print_silently" => "Show Print Dialog",
- "print_top_margin" => "Margin Top",
- "print_top_margin_number" => "Default Top Margin must be a number.",
- "print_top_margin_required" => "Default Top Margin is a required field.",
- "quantity_decimals" => "Quantity Decimals",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Default Quote Comments",
- "receipt" => "Receipt",
- "receipt_category" => "",
- "receipt_configuration" => "Receipt Print Settings",
- "receipt_default" => "Default",
- "receipt_font_size" => "Font Size",
- "receipt_font_size_number" => "Font Size must be a number.",
- "receipt_font_size_required" => "Font Size is a required field.",
- "receipt_info" => "Receipt Configuration Information",
- "receipt_printer" => "Ticket Printer",
- "receipt_short" => "Short",
- "receipt_show_company_name" => "Show Company Name",
- "receipt_show_description" => "Show Description",
- "receipt_show_serialnumber" => "Show Serial Number",
- "receipt_show_tax_ind" => "Show Tax Indicator",
- "receipt_show_taxes" => "Show Taxes",
- "receipt_show_total_discount" => "Show Total Discount",
- "receipt_template" => "Receipt Template",
- "receiving_calculate_average_price" => "Change Cost Price (Receiving)",
- "recv_invoice_format" => "Receivings Invoice Format",
- "register_mode_default" => "Default Register Mode",
- "report_an_issue" => "Report an issue",
- "return_policy_required" => "Return policy is a required field.",
- "reward" => "Reward",
- "reward_configuration" => "Reward Configuration",
- "right" => "Right",
- "sales_invoice_format" => "Sales Invoice Format",
- "sales_quote_format" => "Sales Quote Format",
- "mailpath_invalid" => "Invalid sendmail path. Only letters, numbers, dashes, underscores, slashes and dots are allowed.",
- "saved_successfully" => "Configuration saved successfully.",
- "saved_unsuccessfully" => "Configuration save failed.",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "Please use the below info for issue reporting.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Show office icon",
- "statistics" => "Send Statistics",
- "statistics_tooltip" => "Send statistics for development and feature improvement purposes.",
- "stock_location" => "Stock location",
- "stock_location_duplicate" => "Please use an unique location name.",
- "stock_location_invalid_chars" => "Stock location name cannot contain '_'.",
- "stock_location_required" => "Stock location is a required field.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Column 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Search Suggestions Layout",
- "suggestions_second_column" => "Column 2",
- "suggestions_third_column" => "Column 3",
- "system_conf" => "Setup & Conf",
- "system_info" => "System Info",
- "table" => "Table",
- "table_configuration" => "Table Configuration",
- "takings_printer" => "Takings Printer",
- "tax" => "Tax",
- "tax_category" => "Tax Category",
- "tax_category_duplicate" => "The entered Tax Category already exists.",
- "tax_category_invalid_chars" => "The entered Tax Category is invalid.",
- "tax_category_required" => "The Tax Category is required.",
- "tax_category_used" => "Tax Category cannot be deleted because it is being used.",
- "tax_configuration" => "Tax Configuration",
- "tax_decimals" => "Tax Decimals",
- "tax_id" => "Tax Id",
- "tax_included" => "Tax Included",
- "theme" => "Theme",
- "theme_preview" => "Preview Theme:",
- "thousands_separator" => "Thousands Separator",
- "timezone" => "Timezone",
- "timezone_error" => "OSPOS Timezone is Different from your Local Timezone.",
- "top" => "Top",
- "use_destination_based_tax" => "Use Destination Based Tax",
- "user_timezone" => "Local Timezone:",
- "website" => "Website",
- "wholesale_markup" => "",
- "work_order_enable" => "Work Order Support",
- "work_order_format" => "Work Order Format",
+ 'address' => 'Company Address',
+ 'address_required' => 'Company Address is a required field.',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => 'Allow Duplicate Barcodes',
+ 'apostrophe' => 'apostrophe',
+ 'backup_button' => 'Backup',
+ 'backup_database' => 'Backup Database',
+ 'barcode' => 'Barcode',
+ 'barcode_company' => 'Company Name',
+ 'barcode_configuration' => 'Barcode Configuration',
+ 'barcode_content' => 'Barcode Content',
+ 'barcode_first_row' => 'Row 1',
+ 'barcode_font' => 'Font',
+ 'barcode_formats' => 'Input Formats',
+ 'barcode_generate_if_empty' => 'Generate if empty.',
+ 'barcode_height' => 'Height (px)',
+ 'barcode_id' => 'Item Id/Name',
+ 'barcode_info' => 'Barcode Configuration Information',
+ 'barcode_layout' => 'Barcode Layout',
+ 'barcode_name' => 'Name',
+ 'barcode_number' => 'Barcode',
+ 'barcode_number_in_row' => 'Number in row',
+ 'barcode_page_cellspacing' => 'Display page cellspacing.',
+ 'barcode_page_width' => 'Display page width',
+ 'barcode_price' => 'Price',
+ 'barcode_second_row' => 'Row 2',
+ 'barcode_third_row' => 'Row 3',
+ 'barcode_tooltip' => 'Warning: This feature can cause duplicate items to be imported or created. Do not use if you do not want duplicate barcodes.',
+ 'barcode_type' => 'Barcode Type',
+ 'barcode_width' => 'Width (px)',
+ 'bottom' => 'Bottom',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Cash Decimals',
+ 'cash_decimals_tooltip' => 'If Cash Decimals and Currency Decimals are the same then no cash triggered rounding will take place, unless Cash Rounding is set to Half Five.',
+ 'cash_rounding' => 'Cash Rounding',
+ 'category_dropdown' => 'Show Category as a dropdown',
+ 'center' => 'Centre',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'comma',
+ 'company' => 'Company Name',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Change Image',
+ 'company_logo' => 'Company Logo',
+ 'company_remove_image' => 'Remove Image',
+ 'company_required' => 'Company name is a required field',
+ 'company_select_image' => 'Select Image',
+ 'company_website_url' => 'Company website is not a valid URL (http://...).',
+ 'country_codes' => 'Country Codes',
+ 'country_codes_tooltip' => 'Comma separated list of country codes for nominatim address lookup.',
+ 'currency_code' => 'Currency Code',
+ 'currency_decimals' => 'Currency Decimals',
+ 'currency_symbol' => 'Currency Symbol',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Reward',
+ 'customer_reward_duplicate' => 'Please use a unique reward name.',
+ 'customer_reward_enable' => 'Enable Customer Rewards',
+ 'customer_reward_invalid_chars' => "The reward name cannot contain '_'",
+ 'customer_reward_required' => 'Reward is a required field',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => 'Date and Time Filter',
+ 'datetimeformat' => 'Date and Time Format',
+ 'decimal_point' => 'Decimal Point',
+ 'default_barcode_font_size_number' => 'Default Barcode Font size must be a number.',
+ 'default_barcode_font_size_required' => 'Default Barcode Font size is a required field.',
+ 'default_barcode_height_number' => 'Default Barcode Height must be a number.',
+ 'default_barcode_height_required' => 'Default Barcode Height is a required field.',
+ 'default_barcode_num_in_row_number' => 'Default Barcode Number in row must be a number.',
+ 'default_barcode_num_in_row_required' => 'Default Barcode Number in row is a required field.',
+ 'default_barcode_page_cellspacing_number' => 'Default Barcode Page Cellspacing must be a number.',
+ 'default_barcode_page_cellspacing_required' => 'Default Barcode Page Cellspacing is a required field.',
+ 'default_barcode_page_width_number' => 'Default Barcode Page Width must be a number.',
+ 'default_barcode_page_width_required' => 'Default Barcode Page Width is a required field.',
+ 'default_barcode_width_number' => 'Default Barcode Width must be a number.',
+ 'default_barcode_width_required' => 'Default Barcode Width is a required field.',
+ 'default_item_columns' => 'Default Visible Item Columns',
+ 'default_origin_tax_code' => 'Default Origin Tax Code',
+ 'default_receivings_discount' => 'Default Receivings Discount',
+ 'default_receivings_discount_number' => 'Default Receivings Discount must be a number.',
+ 'default_receivings_discount_required' => 'Default Receivings Discount is a required field.',
+ 'default_sales_discount' => 'Default Sales Discount',
+ 'default_sales_discount_number' => 'Default Sales Discount must be a number.',
+ 'default_sales_discount_required' => 'Default Sales Discount is a required field.',
+ 'default_tax_category' => 'Default Tax Category',
+ 'default_tax_code' => 'Default Tax Code',
+ 'default_tax_jurisdiction' => 'Default Tax Jurisdiction',
+ 'default_tax_name_number' => 'Default Tax Name must be a string.',
+ 'default_tax_name_required' => 'Default Tax Name is a required field.',
+ 'default_tax_rate' => 'Default Tax Rate %',
+ 'default_tax_rate_1' => 'Tax 1 Rate',
+ 'default_tax_rate_2' => 'Tax 2 Rate',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Default Tax Rate must be a number.',
+ 'default_tax_rate_required' => 'Default Tax Rate is a required field.',
+ 'derive_sale_quantity' => 'Allow Derived Sale Quantity',
+ 'derive_sale_quantity_tooltip' => 'If checked then a new item type will be provided for items ordered by extended amount',
+ 'dinner_table' => 'Table',
+ 'dinner_table_duplicate' => 'Please use an unique table name.',
+ 'dinner_table_enable' => 'Enable Dinner Tables',
+ 'dinner_table_invalid_chars' => "The table name cannot contain '_'.",
+ 'dinner_table_required' => 'Table is a required field.',
+ 'dot' => 'dot',
+ 'email' => 'Email',
+ 'email_configuration' => 'Email Configuration',
+ 'email_mailpath' => 'Path to Sendmail',
+ 'email_protocol' => 'Protocol',
+ 'email_receipt_check_behaviour' => 'Email Receipt checkbox',
+ 'email_receipt_check_behaviour_always' => 'Always checked',
+ 'email_receipt_check_behaviour_last' => 'Remember last selection',
+ 'email_receipt_check_behaviour_never' => 'Always unchecked',
+ 'email_smtp_crypto' => 'SMTP Encryption',
+ 'email_smtp_host' => 'SMTP Server',
+ 'email_smtp_pass' => 'SMTP Password',
+ 'email_smtp_port' => 'SMTP Port',
+ 'email_smtp_timeout' => 'SMTP Timeout (s)',
+ 'email_smtp_user' => 'SMTP Username',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Enforce privacy',
+ 'enforce_privacy_tooltip' => 'Protect Customers privacy enforcing data scrambling in case of their data being deleted',
+ 'fax' => 'Fax',
+ 'file_perm' => 'There are problems with file permissions. Please fix and reload this page.',
+ 'financial_year' => 'Financial Year Start',
+ 'financial_year_apr' => '1st of April',
+ 'financial_year_aug' => '1st of August',
+ 'financial_year_dec' => '1st of December',
+ 'financial_year_feb' => '1st of February',
+ 'financial_year_jan' => '1st of January',
+ 'financial_year_jul' => '1st of July',
+ 'financial_year_jun' => '1st of June',
+ 'financial_year_mar' => '1st of March',
+ 'financial_year_may' => '1st of May',
+ 'financial_year_nov' => '1st of November',
+ 'financial_year_oct' => '1st of October',
+ 'financial_year_sep' => '1st of September',
+ 'floating_labels' => 'Floating Labels',
+ 'gcaptcha_enable' => 'Login Page reCAPTCHA',
+ 'gcaptcha_secret_key' => 'reCAPTCHA Secret Key',
+ 'gcaptcha_secret_key_required' => 'reCAPTCHA Secret Key is a required field',
+ 'gcaptcha_site_key' => 'reCAPTCHA Site Key',
+ 'gcaptcha_site_key_required' => 'reCAPTCHA Site Key is a required field',
+ 'gcaptcha_tooltip' => 'Protect the Login page with Google reCAPTCHA, click the icon for an API key pair.',
+ 'general' => 'General',
+ 'general_configuration' => 'General Configuration',
+ 'giftcard_number' => 'Gift Card Number',
+ 'giftcard_random' => 'Generate Random',
+ 'giftcard_series' => 'Generate in Series',
+ 'image_allowed_file_types' => 'Allowed file types',
+ 'image_max_height_tooltip' => 'Maximum allowed height of image uploads in pixels (px).',
+ 'image_max_size_tooltip' => 'Maximum allowed file size of image uploads in kilobytes (kb).',
+ 'image_max_width_tooltip' => 'Maximum allowed width of image uploads in pixels (px).',
+ 'image_restrictions' => 'Image Upload Restrictions',
+ 'include_hsn' => 'Include Support for HSN Codes',
+ 'info' => 'Information',
+ 'info_configuration' => 'Shop Information',
+ 'input_groups' => 'Input Groups',
+ 'integrations' => 'Integrations',
+ 'integrations_configuration' => 'Third Party Integrations',
+ 'invoice' => 'Invoice',
+ 'invoice_configuration' => 'Invoice Print Settings',
+ 'invoice_default_comments' => 'Default Invoice Comments',
+ 'invoice_email_message' => 'Invoice Email Template',
+ 'invoice_enable' => 'Enable Invoicing',
+ 'invoice_printer' => 'Invoice Printer',
+ 'invoice_type' => 'Invoice Type',
+ 'is_readable' => 'is readable, but the permissions are incorrectly set. Please set it to 640 or 660 and refresh.',
+ 'is_writable' => 'is writable, but the permissions are incorrectly set. Please set it to 750 and refresh.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Warning! This disabled functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?',
+ 'language' => 'Language',
+ 'last_used_invoice_number' => 'Last used Invoice Number',
+ 'last_used_quote_number' => 'Last used Quote Number',
+ 'last_used_work_order_number' => 'Last used W/O Number',
+ 'left' => 'Left',
+ 'license' => 'License',
+ 'license_configuration' => 'License Statement',
+ 'line_sequence' => 'Line Sequence',
+ 'lines_per_page' => 'Lines Per Page',
+ 'lines_per_page_number' => 'Lines Per Page must be a number.',
+ 'lines_per_page_required' => 'Lines Per Page is a required field.',
+ 'locale' => 'Localisation',
+ 'locale_configuration' => 'Localisation Configuration',
+ 'locale_info' => 'Localisation Configuration Information',
+ 'location' => 'Stock',
+ 'location_configuration' => 'Stock Locations',
+ 'location_info' => 'Location Configuration Information',
+ 'login_form' => 'Login Form Style',
+ 'logout' => "Don't you want to make a backup before logging out? Click [OK] to backup, [Cancel] to logout.",
+ 'mailchimp' => 'MailChimp',
+ 'mailchimp_api_key' => 'MailChimp API Key',
+ 'mailchimp_configuration' => 'MailChimp Configuration',
+ 'mailchimp_key_successfully' => 'Valid API Key.',
+ 'mailchimp_key_unsuccessfully' => 'Invalid API Key.',
+ 'mailchimp_lists' => 'MailChimp List(s)',
+ 'mailchimp_tooltip' => 'Click the icon for an API key.',
+ 'message' => 'Message',
+ 'message_configuration' => 'Message Configuration',
+ 'msg_msg' => 'Saved Text Message',
+ 'msg_msg_placeholder' => 'If you wish to use a SMS template save your message here. Otherwise leave the box blank.',
+ 'msg_pwd' => 'SMS-API Password',
+ 'msg_pwd_required' => 'SMS-API Password is a required field',
+ 'msg_src' => 'SMS-API Sender ID',
+ 'msg_src_required' => 'SMS-API Sender ID is a required field',
+ 'msg_uid' => 'SMS-API Username',
+ 'msg_uid_required' => 'SMS-API Username is a required field',
+ 'multi_pack_enabled' => 'Multiple Packages per Item',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => 'none',
+ 'notify_alignment' => 'Notification Popup Position',
+ 'number_format' => 'Number Format',
+ 'number_locale' => 'Localisation',
+ 'number_locale_invalid' => 'The entered locale is invalid. Check the link in the tooltip to find a sensible value.',
+ 'number_locale_required' => 'Number Locale is a required field.',
+ 'number_locale_tooltip' => 'Find a suitable locale through this link.',
+ 'os_timezone' => 'OSPOS Timezone:',
+ 'ospos_info' => 'OSPOS Installation Info',
+ 'payment_options_order' => 'Payment Options Order',
+ 'payment_reference_code_length_limits' => 'Payment Reference Code
Length Limits',
+ 'payment_reference_code_length_max_label' => 'Max',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => 'Incorrect permissions leaves this software at risk.',
+ 'phone' => 'Company Phone',
+ 'phone_required' => 'Company Phone is a required field.',
+ 'print_bottom_margin' => 'Margin Bottom',
+ 'print_bottom_margin_number' => 'Bottom Margin must be a number.',
+ 'print_bottom_margin_required' => 'Bottom Margin is a required field.',
+ 'print_delay_autoreturn' => 'Autoreturn to Sale delay',
+ 'print_delay_autoreturn_number' => 'Autoreturn to Sale delay is a required field.',
+ 'print_delay_autoreturn_required' => 'Autoreturn to Sale delay must be a number.',
+ 'print_footer' => 'Print Browser Footer',
+ 'print_header' => 'Print Browser Header',
+ 'print_left_margin' => 'Margin Left',
+ 'print_left_margin_number' => 'Left Margin must be a number.',
+ 'print_left_margin_required' => 'Left Margin is a required field.',
+ 'print_receipt_check_behaviour' => 'Print Receipt checkbox',
+ 'print_receipt_check_behaviour_always' => 'Always checked',
+ 'print_receipt_check_behaviour_last' => 'Remember last selection',
+ 'print_receipt_check_behaviour_never' => 'Always unchecked',
+ 'print_right_margin' => 'Margin Right',
+ 'print_right_margin_number' => 'Default Right Margin must be a number.',
+ 'print_right_margin_required' => 'Default Right Margin is a required field.',
+ 'print_silently' => 'Show Print Dialog',
+ 'print_top_margin' => 'Margin Top',
+ 'print_top_margin_number' => 'Default Top Margin must be a number.',
+ 'print_top_margin_required' => 'Default Top Margin is a required field.',
+ 'quantity_decimals' => 'Quantity Decimals',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Default Quote Comments',
+ 'receipt' => 'Receipt',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Receipt Print Settings',
+ 'receipt_default' => 'Default',
+ 'receipt_font_size' => 'Font Size',
+ 'receipt_font_size_number' => 'Font Size must be a number.',
+ 'receipt_font_size_required' => 'Font Size is a required field.',
+ 'receipt_info' => 'Receipt Configuration Information',
+ 'receipt_printer' => 'Ticket Printer',
+ 'receipt_short' => 'Short',
+ 'receipt_show_company_name' => 'Show Company Name',
+ 'receipt_show_description' => 'Show Description',
+ 'receipt_show_serialnumber' => 'Show Serial Number',
+ 'receipt_show_tax_ind' => 'Show Tax Indicator',
+ 'receipt_show_taxes' => 'Show Taxes',
+ 'receipt_show_total_discount' => 'Show Total Discount',
+ 'receipt_template' => 'Receipt Template',
+ 'receiving_calculate_average_price' => 'Change Cost Price (Receiving)',
+ 'recv_invoice_format' => 'Receivings Invoice Format',
+ 'register_mode_default' => 'Default Register Mode',
+ 'report_an_issue' => 'Report an issue',
+ 'return_policy_required' => 'Return policy is a required field.',
+ 'reward' => 'Reward',
+ 'reward_configuration' => 'Reward Configuration',
+ 'right' => 'Right',
+ 'sales_invoice_format' => 'Sales Invoice Format',
+ 'sales_quote_format' => 'Sales Quote Format',
+ 'mailpath_invalid' => 'Invalid sendmail path. Only letters, numbers, dashes, underscores, slashes and dots are allowed.',
+ 'saved_successfully' => 'Configuration saved successfully.',
+ 'saved_unsuccessfully' => 'Configuration save failed.',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Please use the below info for issue reporting.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Show office icon',
+ 'statistics' => 'Send Statistics',
+ 'statistics_tooltip' => 'Send statistics for development and feature improvement purposes.',
+ 'stock_location' => 'Stock location',
+ 'stock_location_duplicate' => 'Please use an unique location name.',
+ 'stock_location_invalid_chars' => "Stock location name cannot contain '_'.",
+ 'stock_location_required' => 'Stock location is a required field.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Column 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Search Suggestions Layout',
+ 'suggestions_second_column' => 'Column 2',
+ 'suggestions_third_column' => 'Column 3',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => 'Table',
+ 'table_configuration' => 'Table Configuration',
+ 'takings_printer' => 'Takings Printer',
+ 'tax' => 'Tax',
+ 'tax_category' => 'Tax Category',
+ 'tax_category_duplicate' => 'The entered Tax Category already exists.',
+ 'tax_category_invalid_chars' => 'The entered Tax Category is invalid.',
+ 'tax_category_required' => 'The Tax Category is required.',
+ 'tax_category_used' => 'Tax Category cannot be deleted because it is being used.',
+ 'tax_configuration' => 'Tax Configuration',
+ 'tax_decimals' => 'Tax Decimals',
+ 'tax_id' => 'Tax Id',
+ 'tax_included' => 'Tax Included',
+ 'theme' => 'Theme',
+ 'theme_preview' => 'Preview Theme:',
+ 'thousands_separator' => 'Thousands Separator',
+ 'timezone' => 'Timezone',
+ 'timezone_error' => 'OSPOS Timezone is Different from your Local Timezone.',
+ 'top' => 'Top',
+ 'use_destination_based_tax' => 'Use Destination Based Tax',
+ 'user_timezone' => 'Local Timezone:',
+ 'website' => 'Website',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Work Order Support',
+ 'work_order_format' => 'Work Order Format',
];
diff --git a/app/Language/en-GB/Login.php b/app/Language/en-GB/Login.php
index 928806a44..6ee49d47d 100644
--- a/app/Language/en-GB/Login.php
+++ b/app/Language/en-GB/Login.php
@@ -1,25 +1,30 @@
"I'm not a robot.",
- "go" => "Go",
- "invalid_gcaptcha" => "Please verify that you are not a robot.",
- "invalid_installation" => "The installation is not correct, check your php.ini file.",
- "invalid_username_and_password" => "Invalid username and/or password.",
- "login" => "Login",
- "logout" => "Logout",
- "migration_needed" => "A database migration to {0} will start after login.",
- "migration_required" => "Database Migration Required",
- "migration_auth_message" => "Administrator credentials are required to authorize the database migration to version {0}. Please login to proceed.",
- "migration_initializing" => "Initializing Database",
- "migration_running" => "Running database migrations...",
- "migration_complete" => "Database initialized successfully!",
- "migration_complete_login" => "You can now log in.",
- "migration_failed" => "Migration failed",
- "migration_error_connection" => "Connection error. Please try again.",
- "migration_complete_redirect" => "Migration complete. Redirecting to login...",
- "password" => "Password",
- "required_username" => "The username field is required.",
- "username" => "Username",
- "welcome" => "Welcome to {0}!",
+ "gcaptcha" => "I'm not a robot.",
+ "go" => "Go",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Please verify that you are not a robot.",
+ "invalid_installation" => "The installation is not correct, check your php.ini file.",
+ "invalid_username_and_password" => "Invalid username and/or password.",
+ "login" => "Login",
+ "logout" => "Logout",
+ "migrating_database" => "Migrating Database",
+ "migration_auth_message" => "Administrator credentials are required to authorize the database migration to version {0}. Please login to proceed.",
+ "migration_complete" => "Database initialized successfully!",
+ "migration_complete_login" => "You can now log in.",
+ "migration_complete_migrate" => "Database migrated successfully!",
+ "migration_complete_redirect" => "Migration complete. Redirecting to login...",
+ "migration_error_connection" => "Connection error. Please try again.",
+ "migration_failed" => "Migration failed",
+ "migration_initializing" => "Initializing Database",
+ "migration_needed" => "A database migration to {0} will start after login.",
+ "migration_required" => "Database Migration Required",
+ "migration_running" => "Running database migrations...",
+ "password" => "Password",
+ "required_username" => "The username field is required.",
+ "username" => "Username",
+ "welcome" => "Welcome to {0}!"
];
diff --git a/app/Language/en-GB/Sales.php b/app/Language/en-GB/Sales.php
index 84a7beae1..8551c0a8f 100644
--- a/app/Language/en-GB/Sales.php
+++ b/app/Language/en-GB/Sales.php
@@ -1,234 +1,238 @@
"Points Available",
- "rewards_package" => "Rewards",
- "rewards_remaining_balance" => "Reward Points remaining value is ",
- "account_number" => "Account #",
- "add_payment" => "Add Payment",
- "amount_due" => "Amount Due",
- "amount_tendered" => "Amount Tendered",
- "authorized_signature" => "Authorised Signature",
- "bank_transfer" => "Bank Transfer",
- "cancel_sale" => "Cancel",
- "cash" => "Cash",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "Cash Adjustment",
- "cash_deposit" => "Cash Deposit",
- "cash_filter" => "Cash",
- "change_due" => "Change Due",
- "change_price" => "Change Selling Price",
- "check" => "Cheque",
- "check_balance" => "Cheque remainder",
- "check_filter" => "Cheque",
- "close" => "",
- "comment" => "Comment",
- "comments" => "Comments",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Complete",
- "confirm_cancel_sale" => "Are you sure you want to clear this sale? All items will be cleared.",
- "confirm_delete" => "Are you sure you want to delete the selected Sale(s)?",
- "confirm_restore" => "Are you sure you want to restore the selected Sale(s)?",
- "credit" => "Credit Card",
- "credit_deposit" => "Credit Deposit",
- "credit_filter" => "Credit Card",
- "current_table" => "",
- "customer" => "Customer",
- "customer_address" => "Address",
- "customer_discount" => "Discount",
- "customer_email" => "Email",
- "customer_location" => "Location",
- "customer_mailchimp_status" => "MailChimp Status",
- "customer_optional" => "(Required for Due Payments)",
- "customer_required" => "(Required)",
- "customer_total" => "Total",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Sale Date",
- "date_range" => "Date Range",
- "date_required" => "A correct date must be entered.",
- "date_type" => "Date is a required field.",
- "debit" => "Debit Card",
- "debit_filter" => "",
- "delete" => "Allow Delete",
- "delete_confirmation" => "Are you sure you want to delete this sale? This action cannot be undone.",
- "delete_entire_sale" => "Delete Entire Sale",
- "delete_successful" => "Sale delete successful.",
- "delete_unsuccessful" => "Sale delete failed.",
- "description_abbrv" => "Desc.",
- "discard" => "Discard",
- "discard_quote" => "",
- "discount" => "Disc",
- "discount_included" => "% Discount",
- "discount_short" => "%",
- "due" => "Due",
- "due_filter" => "Due",
- "edit" => "Edit",
- "edit_item" => "Edit Item",
- "edit_sale" => "Edit Sale",
- "email_receipt" => "Email Receipt",
- "employee" => "Employee",
- "entry" => "Entry",
- "error_editing_item" => "Error editing item",
- "negative_price_invalid" => "Price cannot be negative.",
- "negative_quantity_invalid" => "Quantity cannot be negative.",
- "negative_discount_invalid" => "Discount cannot be negative.",
- "discount_percent_exceeds_100" => "Percentage discount cannot exceed 100%.",
- "discount_exceeds_item_total" => "Discount cannot exceed the item total.",
- "negative_total_invalid" => "Sale total cannot be negative. Check item discounts and quantities.",
- "find_or_scan_item" => "Find or Scan Item",
- "find_or_scan_item_or_receipt" => "Find or Scan Item or Receipt",
- "giftcard" => "Gift Card",
- "giftcard_balance" => "Gift Card Balance",
- "giftcard_filter" => "",
- "giftcard_number" => "Gift Card Number",
- "group_by_category" => "Group by Category",
- "group_by_type" => "Group by Type",
- "hsn" => "HSN",
- "id" => "Sale ID",
- "include_prices" => "Include Prices?",
- "invoice" => "Invoice",
- "invoice_confirm" => "This invoice will be sent to",
- "invoice_enable" => "Invoice Number",
- "invoice_filter" => "Invoices",
- "invoice_no_email" => "This customer does not have a valid email address.",
- "invoice_number" => "Invoice #",
- "invoice_number_duplicate" => "Invoice Number {0} must be unique.",
- "invoice_sent" => "Invoice sent to",
- "invoice_total" => "Invoice Total",
- "invoice_type_custom_invoice" => "Custom Invoice (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Custom Tax Invoice (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Invoice (invoice.php)",
- "invoice_type_tax_invoice" => "Tax Invoice (tax_invoice.php)",
- "invoice_unsent" => "Invoice failed to be sent to",
- "invoice_update" => "Recount",
- "item_insufficient_of_stock" => "Item has insufficient stock.",
- "item_name" => "Item Name",
- "item_number" => "Item #",
- "item_out_of_stock" => "Item is out of stock.",
- "key_browser" => "Helpful Shortcuts",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice without payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "Open in Full Screen Mode",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "Zoom in",
- "key_item_search" => "Item Search",
- "key_out" => "Zoom Out",
- "key_payment" => "Add Payment",
- "key_print" => "Print Current Page",
- "key_restore" => "Restore Original Display/Zoom",
- "key_search" => "Search Reports Tables",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "System Shortcuts",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "Register Mode",
- "must_enter_numeric" => "Amount Tendered must be a number.",
- "must_enter_numeric_giftcard" => "Gift Card Number must be a number.",
- "new_customer" => "New Customer",
- "new_item" => "New Item",
- "no_description" => "No description",
- "no_filter" => "All",
- "no_items_in_cart" => "There are no Items in the cart.",
- "no_sales_to_display" => "No Sales to display.",
- "none_selected" => "You have not selected any Sale(s) to delete.",
- "nontaxed_ind" => " ",
- "not_authorized" => "This action is not authorised.",
- "one_or_multiple" => "Sale(s)",
- "payment" => "Payment Type",
- "payment_amount" => "Amount",
- "payment_not_cover_total" => "Payment Amount does not cover Total.",
- "payment_type" => "Type",
- "payments" => "",
- "payments_total" => "Payments Total",
- "price" => "Price",
- "print_after_sale" => "Print after Sale",
- "quantity" => "Qty",
- "quantity_less_than_reorder_level" => "Warning: Desired Quantity is below Reorder Level for that Item.",
- "quantity_less_than_zero" => "Warning: Desired Quantity is out of stock, audit your inventory.",
- "quantity_of_items" => "Quantity of {0} Items",
- "quote" => "Quote",
- "quote_number" => "Quote Number",
- "quote_number_duplicate" => "Quote Number must be unique.",
- "quote_sent" => "Quote sent to",
- "quote_unsent" => "Quote failed to be sent to",
- "receipt" => "Sales Receipt",
- "receipt_no_email" => "This customer does not have a valid email address.",
- "receipt_number" => "Sale #",
- "receipt_sent" => "Receipt sent to",
- "receipt_unsent" => "Receipt failed to be sent to",
- "refund" => "Refund Type",
- "register" => "Sales Register",
- "remove_customer" => "Remove Customer",
- "remove_discount" => "",
- "return" => "Return",
- "rewards" => "Reward Points",
- "rewards_balance" => "Reward Points Balance",
- "sale" => "Sale",
- "sale_by_invoice" => "Sale by Invoice",
- "sale_for_customer" => "Customer:",
- "sale_time" => "Time",
- "sales_tax" => "Sales Tax",
- "sales_total" => "",
- "select_customer" => "Select Customer",
- "selected_customer" => "Selected Customer",
- "send_invoice" => "Send Invoice",
- "send_quote" => "Send Quote",
- "send_receipt" => "Send Receipt",
- "send_work_order" => "Send Work Order",
- "serial" => "Serial",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Show Invoice",
- "show_receipt" => "Show Receipt",
- "start_typing_customer_name" => "Start typing customer details...",
- "start_typing_item_name" => "Start typing Item Name or scan Barcode...",
- "stock" => "Stock",
- "stock_location" => "Stock Location",
- "sub_total" => "Sub Total",
- "successfully_deleted" => "You have successfully deleted Sale",
- "successfully_restored" => "You have successfully restored",
- "successfully_suspended_sale" => "Sale suspend successful.",
- "successfully_updated" => "Sale update successful.",
- "suspend_sale" => "Suspend",
- "suspended_doc_id" => "Document",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Suspended",
- "table" => "Table",
- "takings" => "Transactions",
- "tax" => "Tax",
- "tax_id" => "Tax Id",
- "tax_invoice" => "Tax Invoice",
- "tax_percent" => "Tax %",
- "taxed_ind" => "T",
- "total" => "Total",
- "total_tax_exclusive" => "Tax excluded",
- "transaction_failed" => "Sales Transaction failed.",
- "unable_to_add_item" => "Item add to Sale failed",
- "unsuccessfully_deleted" => "Sale(s) delete failed.",
- "unsuccessfully_restored" => "Sale(s) restore failed.",
- "unsuccessfully_suspended_sale" => "Sale suspend failed.",
- "unsuccessfully_updated" => "Sale update failed.",
- "unsuspend" => "Unsuspend",
- "unsuspend_and_delete" => "Action",
- "update" => "Update",
- "upi" => "UPI",
- "visa" => "",
- "wallet" => "Wallet",
- "wholesale" => "",
- "work_order" => "Work Order",
- "work_order_number" => "Work Order Number",
- "work_order_number_duplicate" => "Work Order Number must be unique.",
- "work_order_sent" => "Work Order sent to",
- "work_order_unsent" => "Work Order failed to be sent to",
+ 'account_number' => 'Account #',
+ 'add_payment' => 'Add Payment',
+ 'amount_due' => 'Amount Due',
+ 'amount_tendered' => 'Amount Tendered',
+ 'authorized_signature' => 'Authorised Signature',
+ 'bank_transfer' => 'Bank Transfer',
+ 'cancel_sale' => 'Cancel',
+ 'cash' => 'Cash',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'Cash Adjustment',
+ 'cash_deposit' => 'Cash Deposit',
+ 'cash_filter' => 'Cash',
+ 'change_due' => 'Change Due',
+ 'change_price' => 'Change Selling Price',
+ 'check' => 'Cheque',
+ 'check_balance' => 'Cheque remainder',
+ 'check_filter' => 'Cheque',
+ 'close' => '',
+ 'comment' => 'Comment',
+ 'comments' => 'Comments',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Complete',
+ 'confirm_cancel_sale' => 'Are you sure you want to clear this sale? All items will be cleared.',
+ 'confirm_delete' => 'Are you sure you want to delete the selected Sale(s)?',
+ 'confirm_restore' => 'Are you sure you want to restore the selected Sale(s)?',
+ 'credit' => 'Credit Card',
+ 'credit_deposit' => 'Credit Deposit',
+ 'credit_filter' => 'Credit Card',
+ 'current_table' => '',
+ 'customer' => 'Customer',
+ 'customer_address' => 'Address',
+ 'customer_discount' => 'Discount',
+ 'customer_email' => 'Email',
+ 'customer_location' => 'Location',
+ 'customer_mailchimp_status' => 'MailChimp Status',
+ 'customer_optional' => '(Required for Due Payments)',
+ 'customer_required' => '(Required)',
+ 'customer_total' => 'Total',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Points Available',
+ 'daily_sales' => '',
+ 'date' => 'Sale Date',
+ 'date_range' => 'Date Range',
+ 'date_required' => 'A correct date must be entered.',
+ 'date_type' => 'Date is a required field.',
+ 'debit' => 'Debit Card',
+ 'debit_filter' => '',
+ 'delete' => 'Allow Delete',
+ 'delete_confirmation' => 'Are you sure you want to delete this sale? This action cannot be undone.',
+ 'delete_entire_sale' => 'Delete Entire Sale',
+ 'delete_successful' => 'Sale delete successful.',
+ 'delete_unsuccessful' => 'Sale delete failed.',
+ 'description_abbrv' => 'Desc.',
+ 'discard' => 'Discard',
+ 'discard_quote' => '',
+ 'discount' => 'Disc',
+ 'discount_exceeds_item_total' => 'Discount cannot exceed the item total.',
+ 'discount_included' => '% Discount',
+ 'discount_percent_exceeds_100' => 'Percentage discount cannot exceed 100%.',
+ 'discount_short' => '%',
+ 'due' => 'Due',
+ 'due_filter' => 'Due',
+ 'edit' => 'Edit',
+ 'edit_item' => 'Edit Item',
+ 'edit_sale' => 'Edit Sale',
+ 'email_receipt' => 'Email Receipt',
+ 'employee' => 'Employee',
+ 'entry' => 'Entry',
+ 'error_editing_item' => 'Error editing item',
+ 'find_or_scan_item' => 'Find or Scan Item',
+ 'find_or_scan_item_or_receipt' => 'Find or Scan Item or Receipt',
+ 'giftcard' => 'Gift Card',
+ 'giftcard_balance' => 'Gift Card Balance',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Gift Card Number',
+ 'group_by_category' => 'Group by Category',
+ 'group_by_type' => 'Group by Type',
+ 'hsn' => 'HSN',
+ 'id' => 'Sale ID',
+ 'include_prices' => 'Include Prices?',
+ 'invoice' => 'Invoice',
+ 'invoice_confirm' => 'This invoice will be sent to',
+ 'invoice_enable' => 'Invoice Number',
+ 'invoice_filter' => 'Invoices',
+ 'invoice_no_email' => 'This customer does not have a valid email address.',
+ 'invoice_number' => 'Invoice #',
+ 'invoice_number_duplicate' => 'Invoice Number {0} must be unique.',
+ 'invoice_sent' => 'Invoice sent to',
+ 'invoice_total' => 'Invoice Total',
+ 'invoice_type_custom_invoice' => 'Custom Invoice (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Custom Tax Invoice (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Invoice (invoice.php)',
+ 'invoice_type_tax_invoice' => 'Tax Invoice (tax_invoice.php)',
+ 'invoice_unsent' => 'Invoice failed to be sent to',
+ 'invoice_update' => 'Recount',
+ 'item_insufficient_of_stock' => 'Item has insufficient stock.',
+ 'item_name' => 'Item Name',
+ 'item_number' => 'Item #',
+ 'item_out_of_stock' => 'Item is out of stock.',
+ 'key_browser' => 'Helpful Shortcuts',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice without payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => 'Open in Full Screen Mode',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => 'Zoom in',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => 'Zoom Out',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => 'Print Current Page',
+ 'key_restore' => 'Restore Original Display/Zoom',
+ 'key_search' => 'Search Reports Tables',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => 'System Shortcuts',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'Register Mode',
+ 'must_enter_numeric' => 'Amount Tendered must be a number.',
+ 'must_enter_numeric_giftcard' => 'Gift Card Number must be a number.',
+ 'must_enter_reference_code' => 'Reference/Retrieval Number must be entered.',
+ 'negative_discount_invalid' => 'Discount cannot be negative.',
+ 'negative_price_invalid' => 'Price cannot be negative.',
+ 'negative_quantity_invalid' => 'Quantity cannot be negative.',
+ 'negative_total_invalid' => 'Sale total cannot be negative. Check item discounts and quantities.',
+ 'new_customer' => 'New Customer',
+ 'new_item' => 'New Item',
+ 'no_description' => 'No description',
+ 'no_filter' => 'All',
+ 'no_items_in_cart' => 'There are no Items in the cart.',
+ 'no_sales_to_display' => 'No Sales to display.',
+ 'none_selected' => 'You have not selected any Sale(s) to delete.',
+ 'nontaxed_ind' => ' ',
+ 'not_authorized' => 'This action is not authorised.',
+ 'one_or_multiple' => 'Sale(s)',
+ 'payment' => 'Payment Type',
+ 'payment_amount' => 'Amount',
+ 'payment_not_cover_total' => 'Payment Amount does not cover Total.',
+ 'payment_type' => 'Type',
+ 'payments' => '',
+ 'payments_total' => 'Payments Total',
+ 'price' => 'Price',
+ 'print_after_sale' => 'Print after Sale',
+ 'quantity' => 'Qty',
+ 'quantity_less_than_reorder_level' => 'Warning: Desired Quantity is below Reorder Level for that Item.',
+ 'quantity_less_than_zero' => 'Warning: Desired Quantity is out of stock, audit your inventory.',
+ 'quantity_of_items' => 'Quantity of {0} Items',
+ 'quote' => 'Quote',
+ 'quote_number' => 'Quote Number',
+ 'quote_number_duplicate' => 'Quote Number must be unique.',
+ 'quote_sent' => 'Quote sent to',
+ 'quote_unsent' => 'Quote failed to be sent to',
+ 'receipt' => 'Sales Receipt',
+ 'receipt_no_email' => 'This customer does not have a valid email address.',
+ 'receipt_number' => 'Sale #',
+ 'receipt_sent' => 'Receipt sent to',
+ 'receipt_unsent' => 'Receipt failed to be sent to',
+ 'reference_code' => 'Payment Reference Code',
+ 'reference_code_invalid_characters' => 'Reference code must contain only letters and numbers.',
+ 'reference_code_length_error' => 'Reference code length is invalid.',
+ 'refund' => 'Refund Type',
+ 'register' => 'Sales Register',
+ 'remove_customer' => 'Remove Customer',
+ 'remove_discount' => '',
+ 'return' => 'Return',
+ 'rewards' => 'Reward Points',
+ 'rewards_balance' => 'Reward Points Balance',
+ 'rewards_package' => 'Rewards',
+ 'rewards_remaining_balance' => 'Reward Points remaining value is ',
+ 'sale' => 'Sale',
+ 'sale_by_invoice' => 'Sale by Invoice',
+ 'sale_for_customer' => 'Customer:',
+ 'sale_time' => 'Time',
+ 'sales_tax' => 'Sales Tax',
+ 'sales_total' => '',
+ 'select_customer' => 'Select Customer',
+ 'selected_customer' => 'Selected Customer',
+ 'send_invoice' => 'Send Invoice',
+ 'send_quote' => 'Send Quote',
+ 'send_receipt' => 'Send Receipt',
+ 'send_work_order' => 'Send Work Order',
+ 'serial' => 'Serial',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Show Invoice',
+ 'show_receipt' => 'Show Receipt',
+ 'start_typing_customer_name' => 'Start typing customer details...',
+ 'start_typing_item_name' => 'Start typing Item Name or scan Barcode...',
+ 'stock' => 'Stock',
+ 'stock_location' => 'Stock Location',
+ 'sub_total' => 'Sub Total',
+ 'successfully_deleted' => 'You have successfully deleted Sale',
+ 'successfully_restored' => 'You have successfully restored',
+ 'successfully_suspended_sale' => 'Sale suspend successful.',
+ 'successfully_updated' => 'Sale update successful.',
+ 'suspend_sale' => 'Suspend',
+ 'suspended_doc_id' => 'Document',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Suspended',
+ 'table' => 'Table',
+ 'takings' => 'Transactions',
+ 'tax' => 'Tax',
+ 'tax_id' => 'Tax Id',
+ 'tax_invoice' => 'Tax Invoice',
+ 'tax_percent' => 'Tax %',
+ 'taxed_ind' => 'T',
+ 'total' => 'Total',
+ 'total_tax_exclusive' => 'Tax excluded',
+ 'transaction_failed' => 'Sales Transaction failed.',
+ 'unable_to_add_item' => 'Item add to Sale failed',
+ 'unsuccessfully_deleted' => 'Sale(s) delete failed.',
+ 'unsuccessfully_restored' => 'Sale(s) restore failed.',
+ 'unsuccessfully_suspended_sale' => 'Sale suspend failed.',
+ 'unsuccessfully_updated' => 'Sale update failed.',
+ 'unsuspend' => 'Unsuspend',
+ 'unsuspend_and_delete' => 'Action',
+ 'update' => 'Update',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wallet' => 'Wallet',
+ 'wholesale' => '',
+ 'work_order' => 'Work Order',
+ 'work_order_number' => 'Work Order Number',
+ 'work_order_number_duplicate' => 'Work Order Number must be unique.',
+ 'work_order_sent' => 'Work Order sent to',
+ 'work_order_unsent' => 'Work Order failed to be sent to',
];
diff --git a/app/Language/en/Config.php b/app/Language/en/Config.php
index 37efcd443..3bef71672 100644
--- a/app/Language/en/Config.php
+++ b/app/Language/en/Config.php
@@ -1,337 +1,340 @@
"Company Address",
- "address_required" => "Company address is a required field.",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "Allow Duplicate Barcodes",
- "apostrophe" => "apostrophe",
- "backup_button" => "Backup",
- "backup_database" => "Backup Database",
- "barcode" => "Barcode",
- "barcode_company" => "Company Name",
- "barcode_configuration" => "Barcode Configuration",
- "barcode_content" => "Barcode Content",
- "barcode_first_row" => "Row 1",
- "barcode_font" => "Font",
- "barcode_formats" => "Input Formats",
- "barcode_generate_if_empty" => "Generate if empty.",
- "barcode_height" => "Height (px)",
- "barcode_id" => "Item Id/Name",
- "barcode_info" => "Barcode Configuration Information",
- "barcode_layout" => "Barcode Layout",
- "barcode_name" => "Name",
- "barcode_number" => "Barcode",
- "barcode_number_in_row" => "Number in row",
- "barcode_page_cellspacing" => "Display page cellspacing.",
- "barcode_page_width" => "Display page width",
- "barcode_price" => "Price",
- "barcode_second_row" => "Row 2",
- "barcode_third_row" => "Row 3",
- "barcode_tooltip" => "Warning: This feature can cause duplicate items to be imported or created. Do not use if you do not want duplicate barcodes.",
- "barcode_type" => "Barcode Type",
- "barcode_width" => "Width (px)",
- "bottom" => "Bottom",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Cash Decimals",
- "cash_decimals_tooltip" => "If Cash Decimals and Currency Decimals are the same then no cash triggered rounding will take place, unless Cash Rounding is set to Half Five.",
- "cash_rounding" => "Cash Rounding",
- "category_dropdown" => "Show Category as a dropdown",
- "center" => "Center",
- "change_apperance_tooltip" => "",
- "comma" => "comma",
- "company" => "Company Name",
- "company_avatar" => "",
- "company_change_image" => "Change Image",
- "company_logo" => "Company Logo",
- "company_remove_image" => "Remove Image",
- "company_required" => "Company name is a required field",
- "company_select_image" => "Select Image",
- "company_website_url" => "Company website is not a valid URL (http://...).",
- "country_codes" => "Country Codes",
- "country_codes_tooltip" => "Comma separated list of country codes for nominatim address lookup.",
- "currency_code" => "Currency Code",
- "currency_decimals" => "Currency Decimals",
- "currency_symbol" => "Currency Symbol",
- "current_employee_only" => "",
- "customer_reward" => "Reward",
- "customer_reward_duplicate" => "Reward must be unique.",
- "customer_reward_enable" => "Enable Customer Rewards",
- "customer_reward_invalid_chars" => "Reward can not contain '_'",
- "customer_reward_required" => "Reward is a required field",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "Date and Time Filter",
- "datetimeformat" => "Date and Time Format",
- "decimal_point" => "Decimal Point",
- "default_barcode_font_size_number" => "Default Barcode Font Size must be a number.",
- "default_barcode_font_size_required" => "Default Barcode Font Size is a required field.",
- "default_barcode_height_number" => "Default Barcode Height must be a number.",
- "default_barcode_height_required" => "Default Barcode Height is a required field.",
- "default_barcode_num_in_row_number" => "Default Barcode Number in Row must be a number.",
- "default_barcode_num_in_row_required" => "Default Barcode Number in Row is a required field.",
- "default_barcode_page_cellspacing_number" => "Default Barcode Page Cellspacing must be a number.",
- "default_barcode_page_cellspacing_required" => "Default Barcode Page Cellspacing is a required field.",
- "default_barcode_page_width_number" => "Default Barcode Page Width must be a number.",
- "default_barcode_page_width_required" => "Default Barcode Page Width is a required field.",
- "default_barcode_width_number" => "Default Barcode Width must be a number.",
- "default_barcode_width_required" => "Default Barcode Width is a required field.",
- "default_item_columns" => "Default Visible Item Columns",
- "default_origin_tax_code" => "Default Origin Tax Code",
- "default_receivings_discount" => "Default Receivings Discount",
- "default_receivings_discount_number" => "Default Receivings Discount must be a number.",
- "default_receivings_discount_required" => "Default Receivings Discount is a required field.",
- "default_sales_discount" => "Default Sales Discount",
- "default_sales_discount_number" => "Default Sales Discount must be a number.",
- "default_sales_discount_required" => "Default Sales Discount is a required field.",
- "default_tax_category" => "Default Tax Category",
- "default_tax_code" => "Default Tax Code",
- "default_tax_jurisdiction" => "Default Tax Jurisdiction",
- "default_tax_name_number" => "Default Tax Name must be a string.",
- "default_tax_name_required" => "Default Tax Name is a required field.",
- "default_tax_rate" => "Default Tax Rate %",
- "default_tax_rate_1" => "Tax 1 Rate",
- "default_tax_rate_2" => "Tax 2 Rate",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Default Tax Rate must be a number.",
- "default_tax_rate_required" => "Default Tax Rate is a required field.",
- "derive_sale_quantity" => "Allow Derived Sale Quantity",
- "derive_sale_quantity_tooltip" => "If checked then a new item type will be provided for items ordered by extended amount",
- "dinner_table" => "Table",
- "dinner_table_duplicate" => "Table must be unique.",
- "dinner_table_enable" => "Enable Dinner Tables",
- "dinner_table_invalid_chars" => "Table Name can not contain '_'.",
- "dinner_table_required" => "Table is a required field.",
- "dot" => "dot",
- "email" => "Email",
- "email_configuration" => "Email Configuration",
- "email_mailpath" => "Path to Sendmail",
- "email_protocol" => "Protocol",
- "email_receipt_check_behaviour" => "Email Receipt checkbox",
- "email_receipt_check_behaviour_always" => "Always checked",
- "email_receipt_check_behaviour_last" => "Remember last selection",
- "email_receipt_check_behaviour_never" => "Always unchecked",
- "email_smtp_crypto" => "SMTP Encryption",
- "email_smtp_host" => "SMTP Server",
- "email_smtp_pass" => "SMTP Password",
- "email_smtp_port" => "SMTP Port",
- "email_smtp_timeout" => "SMTP Timeout (s)",
- "email_smtp_user" => "SMTP Username",
- "encryption_failed" => "Failed to encrypt data. Please check encryption configuration.",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Enforce privacy",
- "enforce_privacy_tooltip" => "Protect Customers privacy enforcing data scrambling in case of their data being deleted",
- "fax" => "Fax",
- "file_perm" => "There are problems with file permissions. Please fix and reload this page.",
- "financial_year" => "Fiscal Year Start",
- "financial_year_apr" => "1st of April",
- "financial_year_aug" => "1st of August",
- "financial_year_dec" => "1st of December",
- "financial_year_feb" => "1st of February",
- "financial_year_jan" => "1st of January",
- "financial_year_jul" => "1st of July",
- "financial_year_jun" => "1st of June",
- "financial_year_mar" => "1st of March",
- "financial_year_may" => "1st of May",
- "financial_year_nov" => "1st of November",
- "financial_year_oct" => "1st of October",
- "financial_year_sep" => "1st of September",
- "floating_labels" => "Floating Labels",
- "gcaptcha_enable" => "Login Page reCAPTCHA",
- "gcaptcha_secret_key" => "reCAPTCHA Secret Key",
- "gcaptcha_secret_key_required" => "reCAPTCHA Secret Key is a required field",
- "gcaptcha_site_key" => "reCAPTCHA Site Key",
- "gcaptcha_site_key_required" => "reCAPTCHA Site Key is a required field",
- "gcaptcha_tooltip" => "Protect the Login page with Google reCAPTCHA, click the icon for an API key pair.",
- "general" => "General",
- "general_configuration" => "General Configuration",
- "giftcard_number" => "Gift Card Number",
- "giftcard_random" => "Generate Random",
- "giftcard_series" => "Generate in Series",
- "image_allowed_file_types" => "Allowed file types",
- "image_max_height_tooltip" => "Maximum allowed height of image uploads in pixels (px).",
- "image_max_size_tooltip" => "Maximum allowed file size of image uploads in kilobytes (kb).",
- "image_max_width_tooltip" => "Maximum allowed width of image uploads in pixels (px).",
- "image_restrictions" => "Image Upload Restrictions",
- "include_hsn" => "Include Support for HSN Codes",
- "info" => "Information",
- "info_configuration" => "Store Information",
- "input_groups" => "Input Groups",
- "integrations" => "Integrations",
- "integrations_configuration" => "Third Party Integrations",
- "invoice" => "Invoice",
- "invoice_configuration" => "Invoice Print Settings",
- "invoice_default_comments" => "Default Invoice Comments",
- "invoice_email_message" => "Invoice Email Template",
- "invoice_enable" => "Enable Invoicing",
- "invoice_printer" => "Invoice Printer",
- "invoice_type" => "Invoice Type",
- "is_readable" => "is readable, but the permissions are incorrectly set. Please set it to 640 or 660 and refresh.",
- "is_writable" => "is writable, but the permissions are incorrectly set. Please set it to 750 and refresh.",
- "item_markup" => "",
- "jsprintsetup_required" => "Warning: This functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?",
- "language" => "Language",
- "last_used_invoice_number" => "Last used Invoice Number",
- "last_used_quote_number" => "Last used Quote Number",
- "last_used_work_order_number" => "Last used W/O Number",
- "left" => "Left",
- "license" => "License",
- "license_configuration" => "License Statement",
- "line_sequence" => "Line Sequence",
- "lines_per_page" => "Lines per Page",
- "lines_per_page_number" => "Lines per Page must be a number.",
- "lines_per_page_required" => "Lines per Page is a required field.",
- "locale" => "Localization",
- "locale_configuration" => "Localization Configuration",
- "locale_info" => "Localization Configuration Information",
- "location" => "Stock",
- "location_configuration" => "Stock Locations",
- "location_info" => "Location Configuration Information",
- "login_form" => "Login Form Style",
- "logout" => "Do you want to make a backup before logging out? Click [OK] to backup or [Cancel] to logout.",
- "mailchimp" => "MailChimp",
- "mailchimp_api_key" => "MailChimp API Key",
- "mailchimp_configuration" => "MailChimp Configuration",
- "mailchimp_key_successfully" => "API Key is valid.",
- "mailchimp_key_unsuccessfully" => "API Key is invalid.",
- "mailchimp_lists" => "MailChimp List(s)",
- "mailchimp_tooltip" => "Click the icon for an API Key.",
- "message" => "Message",
- "message_configuration" => "Message Configuration",
- "msg_msg" => "Saved Text Message",
- "msg_msg_placeholder" => "If you wish to use a SMS template save your message here, otherwise leave the box blank.",
- "msg_pwd" => "SMS-API Password",
- "msg_pwd_required" => "SMS-API Password is a required field",
- "msg_src" => "SMS-API Sender ID",
- "msg_src_required" => "SMS-API Sender ID is a required field",
- "msg_uid" => "SMS-API Username",
- "msg_uid_required" => "SMS-API Username is a required field",
- "multi_pack_enabled" => "Multiple Packages per Item",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "none",
- "notify_alignment" => "Notification Popup Position",
- "number_format" => "Number Format",
- "number_locale" => "Localization",
- "number_locale_invalid" => "The entered locale is invalid. Check the link in the tooltip to find a valid locale.",
- "number_locale_required" => "Number Locale is a required field.",
- "number_locale_tooltip" => "Find a suitable locale through this link.",
- "os_timezone" => "OSPOS Timezone:",
- "ospos_info" => "OSPOS Installation Info",
- "payment_options_order" => "Payment Options Order",
- "perm_risk" => "Incorrect permissions leaves this software at risk.",
- "phone" => "Company Phone",
- "phone_required" => "Company Phone is a required field.",
- "print_bottom_margin" => "Margin Bottom",
- "print_bottom_margin_number" => "Margin Bottom must be a number.",
- "print_bottom_margin_required" => "Margin Bottom is a required field.",
- "print_delay_autoreturn" => "Autoreturn to Sale delay",
- "print_delay_autoreturn_number" => "Autoreturn to Sale delay is a required field.",
- "print_delay_autoreturn_required" => "Autoreturn to Sale delay must be a number.",
- "print_footer" => "Print Browser Footer",
- "print_header" => "Print Browser Header",
- "print_left_margin" => "Margin Left",
- "print_left_margin_number" => "Margin Left must be a number.",
- "print_left_margin_required" => "Margin Left is a required field.",
- "print_receipt_check_behaviour" => "Print Receipt checkbox",
- "print_receipt_check_behaviour_always" => "Always checked",
- "print_receipt_check_behaviour_last" => "Remember last selection",
- "print_receipt_check_behaviour_never" => "Always unchecked",
- "print_right_margin" => "Margin Right",
- "print_right_margin_number" => "Margin Right must be a number.",
- "print_right_margin_required" => "Margin Right is a required field.",
- "print_silently" => "Show Print Dialog",
- "print_top_margin" => "Margin Top",
- "print_top_margin_number" => "Margin Top must be a number.",
- "print_top_margin_required" => "Margin Top is a required field.",
- "quantity_decimals" => "Quantity Decimals",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Default Quote Comments",
- "receipt" => "Receipt",
- "receipt_category" => "",
- "receipt_configuration" => "Receipt Print Settings",
- "receipt_default" => "Default",
- "receipt_font_size" => "Font Size",
- "receipt_font_size_number" => "Font Size must be a number.",
- "receipt_font_size_required" => "Font Size is a required field.",
- "receipt_info" => "Receipt Configuration Information",
- "receipt_printer" => "Ticket Printer",
- "receipt_short" => "Short",
- "receipt_show_company_name" => "Show Company Name",
- "receipt_show_description" => "Show Description",
- "receipt_show_serialnumber" => "Show Serial Number",
- "receipt_show_tax_ind" => "Show Tax Indicator",
- "receipt_show_taxes" => "Show Taxes",
- "receipt_show_total_discount" => "Show Total Discount",
- "receipt_template" => "Receipt Template",
- "receiving_calculate_average_price" => "Calc avg. Price (Receiving)",
- "recv_invoice_format" => "Receivings Invoice Format",
- "register_mode_default" => "Default Register Mode",
- "report_an_issue" => "Report an issue",
- "return_policy_required" => "Return policy is a required field.",
- "reward" => "Reward",
- "reward_configuration" => "Reward Configuration",
- "right" => "Right",
- "sales_invoice_format" => "Sales Invoice Format",
- "sales_quote_format" => "Sales Quote Format",
- "mailpath_invalid" => "Invalid sendmail path. Only letters, numbers, dashes, underscores, slashes and dots are allowed.",
- "saved_successfully" => "Configuration save successful.",
- "saved_unsuccessfully" => "Configuration save failed.",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "Please use the below info for issue reporting.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Show office icon",
- "statistics" => "Send Statistics",
- "statistics_tooltip" => "Send statistics for development and feature improvement purposes.",
- "stock_location" => "Stock location",
- "stock_location_duplicate" => "Stock Location must be unique.",
- "stock_location_invalid_chars" => "Stock Location can not contain '_'.",
- "stock_location_required" => "Stock location is a required field.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Column 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Search Suggestions Layout",
- "suggestions_second_column" => "Column 2",
- "suggestions_third_column" => "Column 3",
- "shortcuts" => "Shortcuts",
- "shortcuts_configuration" => "Sales Keyboard Shortcut Configuration",
- "shortcuts_duplicate_bindings" => "Shortcut bindings must be unique.",
- "shortcuts_save_error" => "Unable to save shortcut settings.",
- "system_conf" => "Setup & Conf",
- "system_info" => "System Info",
- "table" => "Table",
- "table_configuration" => "Table Configuration",
- "takings_printer" => "Receipt Printer",
- "tax" => "Tax",
- "tax_category" => "Tax Category",
- "tax_category_duplicate" => "The entered tax category already exists.",
- "tax_category_invalid_chars" => "The entered tax category is invalid.",
- "tax_category_required" => "The tax category is required.",
- "tax_category_used" => "Tax category cannot be deleted because it is being used.",
- "tax_configuration" => "Tax Configuration",
- "tax_decimals" => "Tax Decimals",
- "tax_id" => "Tax Id",
- "tax_included" => "Tax Included",
- "theme" => "Theme",
- "theme_preview" => "Preview Theme:",
- "thousands_separator" => "Thousands Separator",
- "timezone" => "Timezone",
- "timezone_error" => "OSPOS Timezone is Different from your Local Timezone.",
- "top" => "Top",
- "use_destination_based_tax" => "Use Destination Based Tax",
- "user_timezone" => "Local Timezone:",
- "website" => "Website",
- "wholesale_markup" => "",
- "work_order_enable" => "Work Order Support",
- "work_order_format" => "Work Order Format",
+ 'address' => 'Company Address',
+ 'address_required' => 'Company address is a required field.',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => 'Allow Duplicate Barcodes',
+ 'apostrophe' => 'apostrophe',
+ 'backup_button' => 'Backup',
+ 'backup_database' => 'Backup Database',
+ 'barcode' => 'Barcode',
+ 'barcode_company' => 'Company Name',
+ 'barcode_configuration' => 'Barcode Configuration',
+ 'barcode_content' => 'Barcode Content',
+ 'barcode_first_row' => 'Row 1',
+ 'barcode_font' => 'Font',
+ 'barcode_formats' => 'Input Formats',
+ 'barcode_generate_if_empty' => 'Generate if empty.',
+ 'barcode_height' => 'Height (px)',
+ 'barcode_id' => 'Item Id/Name',
+ 'barcode_info' => 'Barcode Configuration Information',
+ 'barcode_layout' => 'Barcode Layout',
+ 'barcode_name' => 'Name',
+ 'barcode_number' => 'Barcode',
+ 'barcode_number_in_row' => 'Number in row',
+ 'barcode_page_cellspacing' => 'Display page cellspacing.',
+ 'barcode_page_width' => 'Display page width',
+ 'barcode_price' => 'Price',
+ 'barcode_second_row' => 'Row 2',
+ 'barcode_third_row' => 'Row 3',
+ 'barcode_tooltip' => 'Warning: This feature can cause duplicate items to be imported or created. Do not use if you do not want duplicate barcodes.',
+ 'barcode_type' => 'Barcode Type',
+ 'barcode_width' => 'Width (px)',
+ 'bottom' => 'Bottom',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Cash Decimals',
+ 'cash_decimals_tooltip' => 'If Cash Decimals and Currency Decimals are the same then no cash triggered rounding will take place, unless Cash Rounding is set to Half Five.',
+ 'cash_rounding' => 'Cash Rounding',
+ 'category_dropdown' => 'Show Category as a dropdown',
+ 'center' => 'Center',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'comma',
+ 'company' => 'Company Name',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Change Image',
+ 'company_logo' => 'Company Logo',
+ 'company_remove_image' => 'Remove Image',
+ 'company_required' => 'Company name is a required field',
+ 'company_select_image' => 'Select Image',
+ 'company_website_url' => 'Company website is not a valid URL (http://...).',
+ 'country_codes' => 'Country Codes',
+ 'country_codes_tooltip' => 'Comma separated list of country codes for nominatim address lookup.',
+ 'currency_code' => 'Currency Code',
+ 'currency_decimals' => 'Currency Decimals',
+ 'currency_symbol' => 'Currency Symbol',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Reward',
+ 'customer_reward_duplicate' => 'Reward must be unique.',
+ 'customer_reward_enable' => 'Enable Customer Rewards',
+ 'customer_reward_invalid_chars' => "Reward can not contain '_'",
+ 'customer_reward_required' => 'Reward is a required field',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => 'Date and Time Filter',
+ 'datetimeformat' => 'Date and Time Format',
+ 'decimal_point' => 'Decimal Point',
+ 'default_barcode_font_size_number' => 'Default Barcode Font Size must be a number.',
+ 'default_barcode_font_size_required' => 'Default Barcode Font Size is a required field.',
+ 'default_barcode_height_number' => 'Default Barcode Height must be a number.',
+ 'default_barcode_height_required' => 'Default Barcode Height is a required field.',
+ 'default_barcode_num_in_row_number' => 'Default Barcode Number in Row must be a number.',
+ 'default_barcode_num_in_row_required' => 'Default Barcode Number in Row is a required field.',
+ 'default_barcode_page_cellspacing_number' => 'Default Barcode Page Cellspacing must be a number.',
+ 'default_barcode_page_cellspacing_required' => 'Default Barcode Page Cellspacing is a required field.',
+ 'default_barcode_page_width_number' => 'Default Barcode Page Width must be a number.',
+ 'default_barcode_page_width_required' => 'Default Barcode Page Width is a required field.',
+ 'default_barcode_width_number' => 'Default Barcode Width must be a number.',
+ 'default_barcode_width_required' => 'Default Barcode Width is a required field.',
+ 'default_item_columns' => 'Default Visible Item Columns',
+ 'default_origin_tax_code' => 'Default Origin Tax Code',
+ 'default_receivings_discount' => 'Default Receivings Discount',
+ 'default_receivings_discount_number' => 'Default Receivings Discount must be a number.',
+ 'default_receivings_discount_required' => 'Default Receivings Discount is a required field.',
+ 'default_sales_discount' => 'Default Sales Discount',
+ 'default_sales_discount_number' => 'Default Sales Discount must be a number.',
+ 'default_sales_discount_required' => 'Default Sales Discount is a required field.',
+ 'default_tax_category' => 'Default Tax Category',
+ 'default_tax_code' => 'Default Tax Code',
+ 'default_tax_jurisdiction' => 'Default Tax Jurisdiction',
+ 'default_tax_name_number' => 'Default Tax Name must be a string.',
+ 'default_tax_name_required' => 'Default Tax Name is a required field.',
+ 'default_tax_rate' => 'Default Tax Rate %',
+ 'default_tax_rate_1' => 'Tax 1 Rate',
+ 'default_tax_rate_2' => 'Tax 2 Rate',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Default Tax Rate must be a number.',
+ 'default_tax_rate_required' => 'Default Tax Rate is a required field.',
+ 'derive_sale_quantity' => 'Allow Derived Sale Quantity',
+ 'derive_sale_quantity_tooltip' => 'If checked then a new item type will be provided for items ordered by extended amount',
+ 'dinner_table' => 'Table',
+ 'dinner_table_duplicate' => 'Table must be unique.',
+ 'dinner_table_enable' => 'Enable Dinner Tables',
+ 'dinner_table_invalid_chars' => "Table Name can not contain '_'.",
+ 'dinner_table_required' => 'Table is a required field.',
+ 'dot' => 'dot',
+ 'email' => 'Email',
+ 'email_configuration' => 'Email Configuration',
+ 'email_mailpath' => 'Path to Sendmail',
+ 'email_protocol' => 'Protocol',
+ 'email_receipt_check_behaviour' => 'Email Receipt checkbox',
+ 'email_receipt_check_behaviour_always' => 'Always checked',
+ 'email_receipt_check_behaviour_last' => 'Remember last selection',
+ 'email_receipt_check_behaviour_never' => 'Always unchecked',
+ 'email_smtp_crypto' => 'SMTP Encryption',
+ 'email_smtp_host' => 'SMTP Server',
+ 'email_smtp_pass' => 'SMTP Password',
+ 'email_smtp_port' => 'SMTP Port',
+ 'email_smtp_timeout' => 'SMTP Timeout (s)',
+ 'email_smtp_user' => 'SMTP Username',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'encryption_failed' => 'Failed to encrypt data. Please check encryption configuration.',
+ 'enforce_privacy' => 'Enforce privacy',
+ 'enforce_privacy_tooltip' => 'Protect Customers privacy enforcing data scrambling in case of their data being deleted',
+ 'fax' => 'Fax',
+ 'file_perm' => 'There are problems with file permissions. Please fix and reload this page.',
+ 'financial_year' => 'Fiscal Year Start',
+ 'financial_year_apr' => '1st of April',
+ 'financial_year_aug' => '1st of August',
+ 'financial_year_dec' => '1st of December',
+ 'financial_year_feb' => '1st of February',
+ 'financial_year_jan' => '1st of January',
+ 'financial_year_jul' => '1st of July',
+ 'financial_year_jun' => '1st of June',
+ 'financial_year_mar' => '1st of March',
+ 'financial_year_may' => '1st of May',
+ 'financial_year_nov' => '1st of November',
+ 'financial_year_oct' => '1st of October',
+ 'financial_year_sep' => '1st of September',
+ 'floating_labels' => 'Floating Labels',
+ 'gcaptcha_enable' => 'Login Page reCAPTCHA',
+ 'gcaptcha_secret_key' => 'reCAPTCHA Secret Key',
+ 'gcaptcha_secret_key_required' => 'reCAPTCHA Secret Key is a required field',
+ 'gcaptcha_site_key' => 'reCAPTCHA Site Key',
+ 'gcaptcha_site_key_required' => 'reCAPTCHA Site Key is a required field',
+ 'gcaptcha_tooltip' => 'Protect the Login page with Google reCAPTCHA, click the icon for an API key pair.',
+ 'general' => 'General',
+ 'general_configuration' => 'General Configuration',
+ 'giftcard_number' => 'Gift Card Number',
+ 'giftcard_random' => 'Generate Random',
+ 'giftcard_series' => 'Generate in Series',
+ 'image_allowed_file_types' => 'Allowed file types',
+ 'image_max_height_tooltip' => 'Maximum allowed height of image uploads in pixels (px).',
+ 'image_max_size_tooltip' => 'Maximum allowed file size of image uploads in kilobytes (kb).',
+ 'image_max_width_tooltip' => 'Maximum allowed width of image uploads in pixels (px).',
+ 'image_restrictions' => 'Image Upload Restrictions',
+ 'include_hsn' => 'Include Support for HSN Codes',
+ 'info' => 'Information',
+ 'info_configuration' => 'Store Information',
+ 'input_groups' => 'Input Groups',
+ 'integrations' => 'Integrations',
+ 'integrations_configuration' => 'Third Party Integrations',
+ 'invoice' => 'Invoice',
+ 'invoice_configuration' => 'Invoice Print Settings',
+ 'invoice_default_comments' => 'Default Invoice Comments',
+ 'invoice_email_message' => 'Invoice Email Template',
+ 'invoice_enable' => 'Enable Invoicing',
+ 'invoice_printer' => 'Invoice Printer',
+ 'invoice_type' => 'Invoice Type',
+ 'is_readable' => 'is readable, but the permissions are incorrectly set. Please set it to 640 or 660 and refresh.',
+ 'is_writable' => 'is writable, but the permissions are incorrectly set. Please set it to 750 and refresh.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Warning: This functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?',
+ 'language' => 'Language',
+ 'last_used_invoice_number' => 'Last used Invoice Number',
+ 'last_used_quote_number' => 'Last used Quote Number',
+ 'last_used_work_order_number' => 'Last used W/O Number',
+ 'left' => 'Left',
+ 'license' => 'License',
+ 'license_configuration' => 'License Statement',
+ 'line_sequence' => 'Line Sequence',
+ 'lines_per_page' => 'Lines per Page',
+ 'lines_per_page_number' => 'Lines per Page must be a number.',
+ 'lines_per_page_required' => 'Lines per Page is a required field.',
+ 'locale' => 'Localization',
+ 'locale_configuration' => 'Localization Configuration',
+ 'locale_info' => 'Localization Configuration Information',
+ 'location' => 'Stock',
+ 'location_configuration' => 'Stock Locations',
+ 'location_info' => 'Location Configuration Information',
+ 'login_form' => 'Login Form Style',
+ 'logout' => 'Do you want to make a backup before logging out? Click [OK] to backup or [Cancel] to logout.',
+ 'mailchimp' => 'MailChimp',
+ 'mailchimp_api_key' => 'MailChimp API Key',
+ 'mailchimp_configuration' => 'MailChimp Configuration',
+ 'mailchimp_key_successfully' => 'API Key is valid.',
+ 'mailchimp_key_unsuccessfully' => 'API Key is invalid.',
+ 'mailchimp_lists' => 'MailChimp List(s)',
+ 'mailchimp_tooltip' => 'Click the icon for an API Key.',
+ 'message' => 'Message',
+ 'message_configuration' => 'Message Configuration',
+ 'msg_msg' => 'Saved Text Message',
+ 'msg_msg_placeholder' => 'If you wish to use a SMS template save your message here, otherwise leave the box blank.',
+ 'msg_pwd' => 'SMS-API Password',
+ 'msg_pwd_required' => 'SMS-API Password is a required field',
+ 'msg_src' => 'SMS-API Sender ID',
+ 'msg_src_required' => 'SMS-API Sender ID is a required field',
+ 'msg_uid' => 'SMS-API Username',
+ 'msg_uid_required' => 'SMS-API Username is a required field',
+ 'multi_pack_enabled' => 'Multiple Packages per Item',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => 'none',
+ 'notify_alignment' => 'Notification Popup Position',
+ 'number_format' => 'Number Format',
+ 'number_locale' => 'Localization',
+ 'number_locale_invalid' => 'The entered locale is invalid. Check the link in the tooltip to find a valid locale.',
+ 'number_locale_required' => 'Number Locale is a required field.',
+ 'number_locale_tooltip' => 'Find a suitable locale through this link.',
+ 'os_timezone' => 'OSPOS Timezone:',
+ 'ospos_info' => 'OSPOS Installation Info',
+ 'payment_options_order' => 'Payment Options Order',
+ 'payment_reference_code_length_limits' => 'Payment Reference Code
Length Limits',
+ 'payment_reference_code_length_max_label' => 'Max',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => 'Incorrect permissions leaves this software at risk.',
+ 'phone' => 'Company Phone',
+ 'phone_required' => 'Company Phone is a required field.',
+ 'print_bottom_margin' => 'Margin Bottom',
+ 'print_bottom_margin_number' => 'Margin Bottom must be a number.',
+ 'print_bottom_margin_required' => 'Margin Bottom is a required field.',
+ 'print_delay_autoreturn' => 'Autoreturn to Sale delay',
+ 'print_delay_autoreturn_number' => 'Autoreturn to Sale delay is a required field.',
+ 'print_delay_autoreturn_required' => 'Autoreturn to Sale delay must be a number.',
+ 'print_footer' => 'Print Browser Footer',
+ 'print_header' => 'Print Browser Header',
+ 'print_left_margin' => 'Margin Left',
+ 'print_left_margin_number' => 'Margin Left must be a number.',
+ 'print_left_margin_required' => 'Margin Left is a required field.',
+ 'print_receipt_check_behaviour' => 'Print Receipt checkbox',
+ 'print_receipt_check_behaviour_always' => 'Always checked',
+ 'print_receipt_check_behaviour_last' => 'Remember last selection',
+ 'print_receipt_check_behaviour_never' => 'Always unchecked',
+ 'print_right_margin' => 'Margin Right',
+ 'print_right_margin_number' => 'Margin Right must be a number.',
+ 'print_right_margin_required' => 'Margin Right is a required field.',
+ 'print_silently' => 'Show Print Dialog',
+ 'print_top_margin' => 'Margin Top',
+ 'print_top_margin_number' => 'Margin Top must be a number.',
+ 'print_top_margin_required' => 'Margin Top is a required field.',
+ 'quantity_decimals' => 'Quantity Decimals',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Default Quote Comments',
+ 'receipt' => 'Receipt',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Receipt Print Settings',
+ 'receipt_default' => 'Default',
+ 'receipt_font_size' => 'Font Size',
+ 'receipt_font_size_number' => 'Font Size must be a number.',
+ 'receipt_font_size_required' => 'Font Size is a required field.',
+ 'receipt_info' => 'Receipt Configuration Information',
+ 'receipt_printer' => 'Ticket Printer',
+ 'receipt_short' => 'Short',
+ 'receipt_show_company_name' => 'Show Company Name',
+ 'receipt_show_description' => 'Show Description',
+ 'receipt_show_serialnumber' => 'Show Serial Number',
+ 'receipt_show_tax_ind' => 'Show Tax Indicator',
+ 'receipt_show_taxes' => 'Show Taxes',
+ 'receipt_show_total_discount' => 'Show Total Discount',
+ 'receipt_template' => 'Receipt Template',
+ 'receiving_calculate_average_price' => 'Calc avg. Price (Receiving)',
+ 'recv_invoice_format' => 'Receivings Invoice Format',
+ 'register_mode_default' => 'Default Register Mode',
+ 'report_an_issue' => 'Report an issue',
+ 'return_policy_required' => 'Return policy is a required field.',
+ 'reward' => 'Reward',
+ 'reward_configuration' => 'Reward Configuration',
+ 'right' => 'Right',
+ 'sales_invoice_format' => 'Sales Invoice Format',
+ 'sales_quote_format' => 'Sales Quote Format',
+ 'mailpath_invalid' => 'Invalid sendmail path. Only letters, numbers, dashes, underscores, slashes and dots are allowed.',
+ 'saved_successfully' => 'Configuration save successful.',
+ 'saved_unsuccessfully' => 'Configuration save failed.',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Please use the below info for issue reporting.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Show office icon',
+ 'statistics' => 'Send Statistics',
+ 'statistics_tooltip' => 'Send statistics for development and feature improvement purposes.',
+ 'stock_location' => 'Stock location',
+ 'stock_location_duplicate' => 'Stock Location must be unique.',
+ 'stock_location_invalid_chars' => "Stock Location can not contain '_'.",
+ 'stock_location_required' => 'Stock location is a required field.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Column 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Search Suggestions Layout',
+ 'suggestions_second_column' => 'Column 2',
+ 'suggestions_third_column' => 'Column 3',
+ 'shortcuts' => 'Shortcuts',
+ 'shortcuts_configuration' => 'Sales Keyboard Shortcut Configuration',
+ 'shortcuts_duplicate_bindings' => 'Shortcut bindings must be unique.',
+ 'shortcuts_save_error' => 'Unable to save shortcut settings.',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => 'Table',
+ 'table_configuration' => 'Table Configuration',
+ 'takings_printer' => 'Receipt Printer',
+ 'tax' => 'Tax',
+ 'tax_category' => 'Tax Category',
+ 'tax_category_duplicate' => 'The entered tax category already exists.',
+ 'tax_category_invalid_chars' => 'The entered tax category is invalid.',
+ 'tax_category_required' => 'The tax category is required.',
+ 'tax_category_used' => 'Tax category cannot be deleted because it is being used.',
+ 'tax_configuration' => 'Tax Configuration',
+ 'tax_decimals' => 'Tax Decimals',
+ 'tax_id' => 'Tax Id',
+ 'tax_included' => 'Tax Included',
+ 'theme' => 'Theme',
+ 'theme_preview' => 'Preview Theme:',
+ 'thousands_separator' => 'Thousands Separator',
+ 'timezone' => 'Timezone',
+ 'timezone_error' => 'OSPOS Timezone is Different from your Local Timezone.',
+ 'top' => 'Top',
+ 'use_destination_based_tax' => 'Use Destination Based Tax',
+ 'user_timezone' => 'Local Timezone:',
+ 'website' => 'Website',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Work Order Support',
+ 'work_order_format' => 'Work Order Format',
];
diff --git a/app/Language/en/Login.php b/app/Language/en/Login.php
index 928806a44..f6a5cb8a8 100644
--- a/app/Language/en/Login.php
+++ b/app/Language/en/Login.php
@@ -1,25 +1,30 @@
"I'm not a robot.",
- "go" => "Go",
- "invalid_gcaptcha" => "Please verify that you are not a robot.",
- "invalid_installation" => "The installation is not correct, check your php.ini file.",
- "invalid_username_and_password" => "Invalid username and/or password.",
- "login" => "Login",
- "logout" => "Logout",
- "migration_needed" => "A database migration to {0} will start after login.",
- "migration_required" => "Database Migration Required",
- "migration_auth_message" => "Administrator credentials are required to authorize the database migration to version {0}. Please login to proceed.",
- "migration_initializing" => "Initializing Database",
- "migration_running" => "Running database migrations...",
- "migration_complete" => "Database initialized successfully!",
- "migration_complete_login" => "You can now log in.",
- "migration_failed" => "Migration failed",
- "migration_error_connection" => "Connection error. Please try again.",
- "migration_complete_redirect" => "Migration complete. Redirecting to login...",
- "password" => "Password",
- "required_username" => "The username field is required.",
- "username" => "Username",
- "welcome" => "Welcome to {0}!",
+ "gcaptcha" => "I'm not a robot.",
+ "go" => "Go",
+ "initialization_message" => "The database has not been initialized.",
+ "initialization_required" => "Database Initialization Required",
+ "initialize" => "Initialize",
+ "invalid_gcaptcha" => "Please verify that you are not a robot.",
+ "invalid_installation" => "The installation is not correct, check your php.ini file.",
+ "invalid_username_and_password" => "Invalid username and/or password.",
+ "login" => "Login",
+ "logout" => "Logout",
+ "migrating_database" => "Migrating Database",
+ "migration_auth_message" => "Administrator credentials are required to authorize the database migration to version {0}. Please login to proceed.",
+ "migration_complete" => "Database initialized successfully!",
+ "migration_complete_login" => "You can now log in.",
+ "migration_complete_migrate" => "Database migrated successfully!",
+ "migration_complete_redirect" => "Migration complete. Redirecting to login...",
+ "migration_error_connection" => "Connection error. Please try again.",
+ "migration_failed" => "Migration failed",
+ "migration_initializing" => "Initializing Database",
+ "migration_needed" => "A database migration to {0} will start after login.",
+ "migration_required" => "Database Migration Required",
+ "migration_running" => "Running database migrations...",
+ "password" => "Password",
+ "required_username" => "The username field is required.",
+ "username" => "Username",
+ "welcome" => "Welcome to {0}!"
];
diff --git a/app/Language/en/Sales.php b/app/Language/en/Sales.php
index a1524e7fa..6b3b881c4 100644
--- a/app/Language/en/Sales.php
+++ b/app/Language/en/Sales.php
@@ -1,234 +1,238 @@
"Points Available",
- "rewards_package" => "Rewards",
- "rewards_remaining_balance" => "Reward Points remaining value is ",
- "account_number" => "Account #",
- "add_payment" => "Add Payment",
- "amount_due" => "Amount Due",
- "amount_tendered" => "Amount Tendered",
- "authorized_signature" => "Authorized Signature",
- "bank_transfer" => "Bank Transfer",
- "cancel_sale" => "Cancel",
- "cash" => "Cash",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "Cash Adjustment",
- "cash_deposit" => "Cash Deposit",
- "cash_filter" => "Cash",
- "change_due" => "Change Due",
- "change_price" => "Change Selling Price",
- "check" => "Check",
- "check_balance" => "Check remainder",
- "check_filter" => "Check",
- "close" => "",
- "comment" => "Comment",
- "comments" => "Comments",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Complete",
- "confirm_cancel_sale" => "Are you sure you want to clear this sale? All items will be cleared.",
- "confirm_delete" => "Are you sure you want to delete the selected Sale(s)?",
- "confirm_restore" => "Are you sure you want to restore the selected Sale(s)?",
- "credit" => "Credit Card",
- "credit_deposit" => "Credit Deposit",
- "credit_filter" => "Credit Card",
- "current_table" => "",
- "customer" => "Customer",
- "customer_address" => "Address",
- "customer_discount" => "Discount",
- "customer_email" => "Email",
- "customer_location" => "Location",
- "customer_mailchimp_status" => "MailChimp Status",
- "customer_optional" => "(Required for Due Payments)",
- "customer_required" => "(Required)",
- "customer_total" => "Total",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Sale Date",
- "date_range" => "Date Range",
- "date_required" => "A correct date must be entered.",
- "date_type" => "Date is a required field.",
- "debit" => "Debit Card",
- "debit_filter" => "",
- "delete" => "Allow Delete",
- "delete_confirmation" => "Are you sure you want to delete this sale? This action cannot be undone.",
- "delete_entire_sale" => "Delete Entire Sale",
- "delete_successful" => "Sale delete successful.",
- "delete_unsuccessful" => "Sale delete failed.",
- "description_abbrv" => "Desc.",
- "discard" => "Discard",
- "discard_quote" => "",
- "discount" => "Disc",
- "discount_included" => "% Discount",
- "discount_short" => "%",
- "due" => "Due",
- "due_filter" => "Due",
- "edit" => "Edit",
- "edit_item" => "Edit Item",
- "edit_sale" => "Edit Sale",
- "email_receipt" => "Email Receipt",
- "employee" => "Employee",
- "entry" => "Entry",
- "error_editing_item" => "Error editing item",
- "negative_price_invalid" => "Price cannot be negative.",
- "negative_quantity_invalid" => "Quantity cannot be negative.",
- "negative_discount_invalid" => "Discount cannot be negative.",
- "discount_percent_exceeds_100" => "Percentage discount cannot exceed 100%.",
- "discount_exceeds_item_total" => "Discount cannot exceed the item total.",
- "negative_total_invalid" => "Sale total cannot be negative. Check item discounts and quantities.",
- "find_or_scan_item" => "Find or Scan Item",
- "find_or_scan_item_or_receipt" => "Find or Scan Item or Receipt",
- "giftcard" => "Gift Card",
- "giftcard_balance" => "Gift Card Balance",
- "giftcard_filter" => "",
- "giftcard_number" => "Gift Card Number",
- "group_by_category" => "Group by Category",
- "group_by_type" => "Group by Type",
- "hsn" => "HSN",
- "id" => "Sale ID",
- "include_prices" => "Include Prices?",
- "invoice" => "Invoice",
- "invoice_confirm" => "This invoice will be sent to",
- "invoice_enable" => "Invoice Number",
- "invoice_filter" => "Invoices",
- "invoice_no_email" => "This customer does not have a valid email address.",
- "invoice_number" => "Invoice #",
- "invoice_number_duplicate" => "Invoice Number {0} must be unique.",
- "invoice_sent" => "Invoice sent to",
- "invoice_total" => "Invoice Total",
- "invoice_type_custom_invoice" => "Custom Invoice (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Custom Tax Invoice (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Invoice (invoice.php)",
- "invoice_type_tax_invoice" => "Tax Invoice (tax_invoice.php)",
- "invoice_unsent" => "Invoice failed to be sent to",
- "invoice_update" => "Recount",
- "item_insufficient_of_stock" => "Item has insufficient stock.",
- "item_name" => "Item Name",
- "item_number" => "Item #",
- "item_out_of_stock" => "Item is out of stock.",
- "key_browser" => "Helpful Shortcuts",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice without payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "Open in Full Screen Mode",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "Zoom in",
- "key_item_search" => "Item Search",
- "key_out" => "Zoom Out",
- "key_payment" => "Add Payment",
- "key_print" => "Print Current Page",
- "key_restore" => "Restore Original Display/Zoom",
- "key_search" => "Search Reports Tables",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "System Shortcuts",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "Register Mode",
- "must_enter_numeric" => "Amount Tendered must be a number.",
- "must_enter_numeric_giftcard" => "Gift Card Number must be a number.",
- "new_customer" => "New Customer",
- "new_item" => "New Item",
- "no_description" => "No description",
- "no_filter" => "All",
- "no_items_in_cart" => "There are no Items in the cart.",
- "no_sales_to_display" => "No Sales to display.",
- "none_selected" => "You have not selected any Sale(s) to delete.",
- "nontaxed_ind" => " ",
- "not_authorized" => "This action is not authorized.",
- "one_or_multiple" => "Sale(s)",
- "payment" => "Payment Type",
- "payment_amount" => "Amount",
- "payment_not_cover_total" => "Payment Amount must be greater than or equal to Total.",
- "payment_type" => "Type",
- "payments" => "",
- "payments_total" => "Payments Total",
- "price" => "Price",
- "print_after_sale" => "Print after Sale",
- "quantity" => "Quantity",
- "quantity_less_than_reorder_level" => "Warning: Desired Quantity is below Reorder Level for that Item.",
- "quantity_less_than_zero" => "Warning: Desired Quantity is insufficient. You can still process the sale, but audit your inventory.",
- "quantity_of_items" => "Quantity of {0} Items",
- "quote" => "Quote",
- "quote_number" => "Quote Number",
- "quote_number_duplicate" => "Quote Number must be unique.",
- "quote_sent" => "Quote sent to",
- "quote_unsent" => "Quote failed to be sent to",
- "receipt" => "Sales Receipt",
- "receipt_no_email" => "This customer does not have a valid email address.",
- "receipt_number" => "Sale #",
- "receipt_sent" => "Receipt sent to",
- "receipt_unsent" => "Receipt failed to be sent to",
- "refund" => "Refund Type",
- "register" => "Sales Register",
- "remove_customer" => "Remove Customer",
- "remove_discount" => "",
- "return" => "Return",
- "rewards" => "Reward Points",
- "rewards_balance" => "Reward Points Balance",
- "sale" => "Sale",
- "sale_by_invoice" => "Sale by Invoice",
- "sale_for_customer" => "Customer:",
- "sale_time" => "Time",
- "sales_tax" => "Sales Tax",
- "sales_total" => "",
- "select_customer" => "Select Customer",
- "selected_customer" => "Selected Customer",
- "send_invoice" => "Send Invoice",
- "send_quote" => "Send Quote",
- "send_receipt" => "Send Receipt",
- "send_work_order" => "Send Work Order",
- "serial" => "Serial",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Show Invoice",
- "show_receipt" => "Show Receipt",
- "start_typing_customer_name" => "Start typing customer details...",
- "start_typing_item_name" => "Start typing Item Name or scan Barcode...",
- "stock" => "Stock",
- "stock_location" => "Stock Location",
- "sub_total" => "Subtotal",
- "successfully_deleted" => "You have successfully deleted",
- "successfully_restored" => "You have successfully restored",
- "successfully_suspended_sale" => "Sale suspend successful.",
- "successfully_updated" => "Sale update successful.",
- "suspend_sale" => "Suspend",
- "suspended_doc_id" => "Document",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Suspended",
- "table" => "Table",
- "takings" => "Daily Sales",
- "tax" => "Tax",
- "tax_id" => "Tax Id",
- "tax_invoice" => "Tax Invoice",
- "tax_percent" => "Tax %",
- "taxed_ind" => "T",
- "total" => "Total",
- "total_tax_exclusive" => "Tax excluded",
- "transaction_failed" => "Sales Transaction failed.",
- "unable_to_add_item" => "Item add to Sale failed",
- "unsuccessfully_deleted" => "Sale(s) delete failed.",
- "unsuccessfully_restored" => "Sale(s) restore failed.",
- "unsuccessfully_suspended_sale" => "Sale suspend failed.",
- "unsuccessfully_updated" => "Sale update failed.",
- "unsuspend" => "Unsuspend",
- "unsuspend_and_delete" => "Action",
- "update" => "Update",
- "upi" => "UPI",
- "visa" => "",
- "wallet" => "Wallet",
- "wholesale" => "",
- "work_order" => "Work Order",
- "work_order_number" => "Work Order Number",
- "work_order_number_duplicate" => "Work Order Number must be unique.",
- "work_order_sent" => "Work Order sent to",
- "work_order_unsent" => "Work Order failed to be sent to",
+ 'account_number' => 'Account #',
+ 'add_payment' => 'Add Payment',
+ 'amount_due' => 'Amount Due',
+ 'amount_tendered' => 'Amount Tendered',
+ 'authorized_signature' => 'Authorized Signature',
+ 'bank_transfer' => 'Bank Transfer',
+ 'cancel_sale' => 'Cancel',
+ 'cash' => 'Cash',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'Cash Adjustment',
+ 'cash_deposit' => 'Cash Deposit',
+ 'cash_filter' => 'Cash',
+ 'change_due' => 'Change Due',
+ 'change_price' => 'Change Selling Price',
+ 'check' => 'Check',
+ 'check_balance' => 'Check remainder',
+ 'check_filter' => 'Check',
+ 'close' => 'Close',
+ 'comment' => 'Comment',
+ 'comments' => 'Comments',
+ 'company_name' => 'Company Name',
+ 'complete' => 'Complete',
+ 'complete_sale' => 'Complete',
+ 'confirm_cancel_sale' => 'Are you sure you want to clear this sale? All items will be cleared.',
+ 'confirm_delete' => 'Are you sure you want to delete the selected Sale(s)?',
+ 'confirm_restore' => 'Are you sure you want to restore the selected Sale(s)?',
+ 'credit' => 'Credit Card',
+ 'credit_deposit' => 'Credit Deposit',
+ 'credit_filter' => 'Credit Card',
+ 'current_table' => 'Current Table',
+ 'customer' => 'Customer',
+ 'customer_address' => 'Address',
+ 'customer_discount' => 'Discount',
+ 'customer_email' => 'Email',
+ 'customer_location' => 'Location',
+ 'customer_mailchimp_status' => 'MailChimp Status',
+ 'customer_optional' => '(Required for Due Payments)',
+ 'customer_required' => '(Required)',
+ 'customer_total' => 'Total',
+ 'customer_total_spent' => 'Total Spent',
+ 'customers_available_points' => 'Points Available',
+ 'daily_sales' => 'Daily Sales',
+ 'date' => 'Sale Date',
+ 'date_range' => 'Date Range',
+ 'date_required' => 'A correct date must be entered.',
+ 'date_type' => 'Date is a required field.',
+ 'debit' => 'Debit Card',
+ 'debit_filter' => 'Debit Card',
+ 'delete' => 'Allow Delete',
+ 'delete_confirmation' => 'Are you sure you want to delete this sale? This action cannot be undone.',
+ 'delete_entire_sale' => 'Delete Entire Sale',
+ 'delete_successful' => 'Sale delete successful.',
+ 'delete_unsuccessful' => 'Sale delete failed.',
+ 'description_abbrv' => 'Desc.',
+ 'discard' => 'Discard',
+ 'discard_quote' => 'Discard Quote',
+ 'discount' => 'Disc',
+ 'discount_exceeds_item_total' => 'Discount cannot exceed the item total.',
+ 'discount_included' => '% Discount',
+ 'discount_percent_exceeds_100' => 'Percentage discount cannot exceed 100%.',
+ 'discount_short' => '%',
+ 'due' => 'Due',
+ 'due_filter' => 'Due',
+ 'edit' => 'Edit',
+ 'edit_item' => 'Edit Item',
+ 'edit_sale' => 'Edit Sale',
+ 'email_receipt' => 'Email Receipt',
+ 'employee' => 'Employee',
+ 'entry' => 'Entry',
+ 'error_editing_item' => 'Error editing item',
+ 'find_or_scan_item' => 'Find or Scan Item',
+ 'find_or_scan_item_or_receipt' => 'Find or Scan Item or Receipt',
+ 'giftcard' => 'Gift Card',
+ 'giftcard_balance' => 'Gift Card Balance',
+ 'giftcard_filter' => 'Gift Card',
+ 'giftcard_number' => 'Gift Card Number',
+ 'group_by_category' => 'Group by Category',
+ 'group_by_type' => 'Group by Type',
+ 'hsn' => 'HSN',
+ 'id' => 'Sale ID',
+ 'include_prices' => 'Include Prices?',
+ 'invoice' => 'Invoice',
+ 'invoice_confirm' => 'This invoice will be sent to',
+ 'invoice_enable' => 'Invoice Number',
+ 'invoice_filter' => 'Invoices',
+ 'invoice_no_email' => 'This customer does not have a valid email address.',
+ 'invoice_number' => 'Invoice #',
+ 'invoice_number_duplicate' => 'Invoice Number {0} must be unique.',
+ 'invoice_sent' => 'Invoice sent to',
+ 'invoice_total' => 'Invoice Total',
+ 'invoice_type_custom_invoice' => 'Custom Invoice (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Custom Tax Invoice (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Invoice (invoice.php)',
+ 'invoice_type_tax_invoice' => 'Tax Invoice (tax_invoice.php)',
+ 'invoice_unsent' => 'Invoice failed to be sent to',
+ 'invoice_update' => 'Recount',
+ 'item_insufficient_of_stock' => 'Item has insufficient stock.',
+ 'item_name' => 'Item Name',
+ 'item_number' => 'Item #',
+ 'item_out_of_stock' => 'Item is out of stock.',
+ 'key_browser' => 'Helpful Shortcuts',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice without payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => 'Open in Full Screen Mode',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => 'Zoom in',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => 'Zoom Out',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => 'Print Current Page',
+ 'key_restore' => 'Restore Original Display/Zoom',
+ 'key_search' => 'Search Reports Tables',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => 'System Shortcuts',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'Register Mode',
+ 'must_enter_numeric' => 'Amount Tendered must be a number.',
+ 'must_enter_numeric_giftcard' => 'Gift Card Number must be a number.',
+ 'must_enter_reference_code' => 'Reference/Retrieval Number must be entered.',
+ 'negative_discount_invalid' => 'Discount cannot be negative.',
+ 'negative_price_invalid' => 'Price cannot be negative.',
+ 'negative_quantity_invalid' => 'Quantity cannot be negative.',
+ 'negative_total_invalid' => 'Sale total cannot be negative. Check item discounts and quantities.',
+ 'new_customer' => 'New Customer',
+ 'new_item' => 'New Item',
+ 'no_description' => 'No description',
+ 'no_filter' => 'All',
+ 'no_items_in_cart' => 'There are no Items in the cart.',
+ 'no_sales_to_display' => 'No Sales to display.',
+ 'none_selected' => 'You have not selected any Sale(s) to delete.',
+ 'nontaxed_ind' => ' ',
+ 'not_authorized' => 'This action is not authorized.',
+ 'one_or_multiple' => 'Sale(s)',
+ 'payment' => 'Payment Type',
+ 'payment_amount' => 'Amount',
+ 'payment_not_cover_total' => 'Payment Amount must be greater than or equal to Total.',
+ 'payment_type' => 'Type',
+ 'payments' => 'Payments',
+ 'payments_total' => 'Payments Total',
+ 'price' => 'Price',
+ 'print_after_sale' => 'Print after Sale',
+ 'quantity' => 'Quantity',
+ 'quantity_less_than_reorder_level' => 'Warning: Desired Quantity is below Reorder Level for that Item.',
+ 'quantity_less_than_zero' => 'Warning: Desired Quantity is insufficient. You can still process the sale, but audit your inventory.',
+ 'quantity_of_items' => 'Quantity of {0} Items',
+ 'quote' => 'Quote',
+ 'quote_number' => 'Quote Number',
+ 'quote_number_duplicate' => 'Quote Number must be unique.',
+ 'quote_sent' => 'Quote sent to',
+ 'quote_unsent' => 'Quote failed to be sent to',
+ 'receipt' => 'Sales Receipt',
+ 'receipt_no_email' => 'This customer does not have a valid email address.',
+ 'receipt_number' => 'Sale #',
+ 'receipt_sent' => 'Receipt sent to',
+ 'receipt_unsent' => 'Receipt failed to be sent to',
+ 'reference_code' => 'Payment Reference Code',
+ 'reference_code_invalid_characters' => 'Reference code must contain only letters and numbers.',
+ 'reference_code_length_error' => 'Reference code length is invalid.',
+ 'refund' => 'Refund Type',
+ 'register' => 'Sales Register',
+ 'remove_customer' => 'Remove Customer',
+ 'remove_discount' => 'Remove Discount',
+ 'return' => 'Return',
+ 'rewards' => 'Reward Points',
+ 'rewards_balance' => 'Reward Points Balance',
+ 'rewards_package' => 'Rewards',
+ 'rewards_remaining_balance' => 'Reward Points remaining value is ',
+ 'sale' => 'Sale',
+ 'sale_by_invoice' => 'Sale by Invoice',
+ 'sale_for_customer' => 'Customer:',
+ 'sale_time' => 'Time',
+ 'sales_tax' => 'Sales Tax',
+ 'sales_total' => 'Total',
+ 'select_customer' => 'Select Customer',
+ 'selected_customer' => 'Selected Customer',
+ 'send_invoice' => 'Send Invoice',
+ 'send_quote' => 'Send Quote',
+ 'send_receipt' => 'Send Receipt',
+ 'send_work_order' => 'Send Work Order',
+ 'serial' => 'Serial',
+ 'service_charge' => 'Service Charge',
+ 'show_due' => 'Show Amount Due',
+ 'show_invoice' => 'Show Invoice',
+ 'show_receipt' => 'Show Receipt',
+ 'start_typing_customer_name' => 'Start typing customer details...',
+ 'start_typing_item_name' => 'Start typing Item Name or scan Barcode...',
+ 'stock' => 'Stock',
+ 'stock_location' => 'Stock Location',
+ 'sub_total' => 'Subtotal',
+ 'successfully_deleted' => 'You have successfully deleted',
+ 'successfully_restored' => 'You have successfully restored',
+ 'successfully_suspended_sale' => 'Sale suspend successful.',
+ 'successfully_updated' => 'Sale update successful.',
+ 'suspend_sale' => 'Suspend',
+ 'suspended_doc_id' => 'Document',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Suspended',
+ 'table' => 'Table',
+ 'takings' => 'Daily Sales',
+ 'tax' => 'Tax',
+ 'tax_id' => 'Tax Id',
+ 'tax_invoice' => 'Tax Invoice',
+ 'tax_percent' => 'Tax %',
+ 'taxed_ind' => 'T',
+ 'total' => 'Total',
+ 'total_tax_exclusive' => 'Tax excluded',
+ 'transaction_failed' => 'Sales Transaction failed.',
+ 'unable_to_add_item' => 'Item add to Sale failed',
+ 'unsuccessfully_deleted' => 'Sale(s) delete failed.',
+ 'unsuccessfully_restored' => 'Sale(s) restore failed.',
+ 'unsuccessfully_suspended_sale' => 'Sale suspend failed.',
+ 'unsuccessfully_updated' => 'Sale update failed.',
+ 'unsuspend' => 'Unsuspend',
+ 'unsuspend_and_delete' => 'Action',
+ 'update' => 'Update',
+ 'upi' => 'UPI',
+ 'visa' => 'Visa',
+ 'wallet' => 'Wallet',
+ 'wholesale' => 'Wholesale',
+ 'work_order' => 'Work Order',
+ 'work_order_number' => 'Work Order Number',
+ 'work_order_number_duplicate' => 'Work Order Number must be unique.',
+ 'work_order_sent' => 'Work Order sent to',
+ 'work_order_unsent' => 'Work Order failed to be sent to',
];
diff --git a/app/Language/es-ES/Config.php b/app/Language/es-ES/Config.php
index a7c0033c4..393b01675 100644
--- a/app/Language/es-ES/Config.php
+++ b/app/Language/es-ES/Config.php
@@ -1,332 +1,335 @@
"Dirección del Comercio",
- "address_required" => "Dirección del Comercio es requerida.",
- "all_set" => "¡Todos los permisos de archivo están configurados correctamente!",
- "allow_duplicate_barcodes" => "Permitir código barras duplicados",
- "apostrophe" => "apostrofe",
- "backup_button" => "Respaldo",
- "backup_database" => "Respaldo de Base de Datos",
- "barcode" => "Código Barras",
- "barcode_company" => "Nombre del Comercio",
- "barcode_configuration" => "Configuración de Código de Barras",
- "barcode_content" => "Contenido de Código de Barras",
- "barcode_first_row" => "Fila 1",
- "barcode_font" => "Fuente",
- "barcode_formats" => "Formato entrada",
- "barcode_generate_if_empty" => "Generar si esta vacio.",
- "barcode_height" => "Alto (px)",
- "barcode_id" => "Id/Artículo",
- "barcode_info" => "Información de Configuración de Código de Barras",
- "barcode_layout" => "Diseño Código de Barras",
- "barcode_name" => "Nombre",
- "barcode_number" => "UPC/EAN/ISBN",
- "barcode_number_in_row" => "Número en la línea",
- "barcode_page_cellspacing" => "Mostrar espacios de celdas de página.",
- "barcode_page_width" => "Mostrar ancho de página",
- "barcode_price" => "Precio",
- "barcode_second_row" => "Fila 2",
- "barcode_third_row" => "Fila 3",
- "barcode_tooltip" => "Cuidado: esta característica puede causar duplicados ser importados o creados, No lo use si no quiere códigos de barras duplicadas.",
- "barcode_type" => "Tipo de Código de Barra",
- "barcode_width" => "Ancho (px)",
- "bottom" => "Abajo",
- "cash_button" => "Botones de Efectivo Rápido",
- "cash_button_1" => "Botón 1",
- "cash_button_2" => "Botón 2",
- "cash_button_3" => "Botón 3",
- "cash_button_4" => "Botón 4",
- "cash_button_5" => "Botón 5",
- "cash_button_6" => "Botón 6",
- "cash_decimals" => "Decimales del Efectivo",
- "cash_decimals_tooltip" => "Si los decimales del efectivo y del tipo de moneda son los mismos no habrá redondeo de los pagos en efectivo.",
- "cash_rounding" => "Redondeo del Efectivo",
- "category_dropdown" => "Mostrar Categoria como desplegable",
- "center" => "Centro",
- "change_apperance_tooltip" => "Cambiar Aspecto de OSPOS",
- "comma" => "coma",
- "company" => "Nombre del Comercio",
- "company_avatar" => "Avatar de Empleado",
- "company_change_image" => "Cambiar Imagen",
- "company_logo" => "Logotipo del Comercio",
- "company_remove_image" => "Quitar Imagen",
- "company_required" => "Nombre del Comercio es requerido",
- "company_select_image" => "Seleccionar Imagen",
- "company_website_url" => "Sitio Web no es una URL estándar (http://...).",
- "country_codes" => "Código de País",
- "country_codes_tooltip" => "Lista de codigo de paises separado por coma para busqueda de direcciones.",
- "currency_code" => "Código de Moneda",
- "currency_decimals" => "Decimales del tipo de moneda",
- "currency_symbol" => "Símbolo de la moneda",
- "current_employee_only" => "Mostrar registro sólo del empleado actual",
- "customer_reward" => "Cat. de Cliente",
- "customer_reward_duplicate" => "La recompensa debe ser única.",
- "customer_reward_enable" => "Activar recompenza para clientes",
- "customer_reward_invalid_chars" => "El nombre de la recompenza no puede contener el carácter '_'",
- "customer_reward_required" => "El nombre es un campo obligatorio",
- "customer_sales_tax_support" => "Habilitar la gestión de impuestos en las ventas a clientes",
- "date_or_time_format" => "Filtro de fecha y hora",
- "datetimeformat" => "Formato de fecha y hora",
- "decimal_point" => "Punto Decimal",
- "default_barcode_font_size_number" => "Tamaño de fuente de código de barras debe ser número.",
- "default_barcode_font_size_required" => "Tamaño de fuente de código de barras es requerido.",
- "default_barcode_height_number" => "Alto del código de barras debe ser un número.",
- "default_barcode_height_required" => "Altura del código de barras es requerido.",
- "default_barcode_num_in_row_number" => "Número por fila del código de barras debe ser un número.",
- "default_barcode_num_in_row_required" => "Número de código de barras predeterminado en fila es un campo obligatorio.",
- "default_barcode_page_cellspacing_number" => "Espacios de celdas por página del código de barras debe ser un número.",
- "default_barcode_page_cellspacing_required" => "Espacios de celdas por página del código de barras es requerido.",
- "default_barcode_page_width_number" => "Ancho de página del código de barras debe ser un número.",
- "default_barcode_page_width_required" => "Ancho de página del código de barras es requerido.",
- "default_barcode_width_number" => "Ancho del código de barras debe ser número.",
- "default_barcode_width_required" => "Ancho del código de barras es requerido.",
- "default_item_columns" => "Columnas de Productos Visibles por Defecto",
- "default_origin_tax_code" => "Código de impuesto por defecto",
- "default_receivings_discount" => "Descuento por Defecto para Recibos",
- "default_receivings_discount_number" => "El Descuento por Defecto Para Los Recibos Debe Ser Un Número.",
- "default_receivings_discount_required" => "El Descuento Predeterminado para los Recibos es un campo obligatorio.",
- "default_sales_discount" => "Descuento Predeterminado para Ventas",
- "default_sales_discount_number" => "Descuento en ventas predeterminado debe ser un número.",
- "default_sales_discount_required" => "Descuento en ventas predeterminado es requerido.",
- "default_tax_category" => "Categoría de Tasa predeterminada",
- "default_tax_code" => "Código de Impuesto Predeterminado",
- "default_tax_jurisdiction" => "Jurisdicción de Impuesto Predeterminado",
- "default_tax_name_number" => "El nombre de el impuesto debe ser letras.",
- "default_tax_name_required" => "El nombre del impuesto predeterminado es requerido.",
- "default_tax_rate" => "% de Impuestos Predeterminado",
- "default_tax_rate_1" => "Impuesto 1",
- "default_tax_rate_2" => "Impuesto 2",
- "default_tax_rate_3" => "Tasa de Impuestos 3",
- "default_tax_rate_number" => "El Impuesto Predeterminado debe ser un número.",
- "default_tax_rate_required" => "El Impuesto Predeterminado es requerido.",
- "derive_sale_quantity" => "Permitir cantidad de venta derivada",
- "derive_sale_quantity_tooltip" => "Si se marca entonces se proporcionará un nuevo tipo para los artículos ordenados por cantidad extendida",
- "dinner_table" => "Mesa",
- "dinner_table_duplicate" => "Utilice un nombre de mesa único.",
- "dinner_table_enable" => "Activar Mesa de Restaurante",
- "dinner_table_invalid_chars" => "El nombre de la mesa no puede contener '_'.",
- "dinner_table_required" => "La mesa es un campo obligatorio.",
- "dot" => "punto",
- "email" => "E-mail",
- "email_configuration" => "Configuracion de correo",
- "email_mailpath" => "Ruta a Sendmail",
- "email_protocol" => "Protocolo",
- "email_receipt_check_behaviour" => "Selector de Recibir por Correo",
- "email_receipt_check_behaviour_always" => "Siempre activado",
- "email_receipt_check_behaviour_last" => "Recordar ultima vez",
- "email_receipt_check_behaviour_never" => "Siempre desactivado",
- "email_smtp_crypto" => "Encriptado SMTP",
- "email_smtp_host" => "Servidor SMTP",
- "email_smtp_pass" => "Pasword SMTP",
- "email_smtp_port" => "Puerto SMTP",
- "email_smtp_timeout" => "Tiempo falla SMTP",
- "email_smtp_user" => "Usuario SMTP",
- "enable_avatar" => "Habilitar Avatar",
- "enable_avatar_tooltip" => "Habilitar Avatares para que se muestren en el menú desplegable Categorías y Registrarse ",
- "enable_dropdown_tooltip" => "No podrá agregar nuevas categorías si esto está marcado",
- "enable_new_look" => "Habilitar nueva apariencia",
- "enable_right_bar" => " Habilitar la barra lateral derecha",
- "enable_right_bar_tooltip" => "Cambiar la barra lateral de izquierda a derecha ",
- "enforce_privacy" => "Forzar privacidad",
- "enforce_privacy_tooltip" => "Proteja la privacidad de los clientes aplicando codificación de datos en caso de que se eliminen",
- "fax" => "Fax",
- "file_perm" => "Hay problemas con los permisos de archivo. Por favor corrija y vuelva a recargar esta página.",
- "financial_year" => "Inicio del año fiscal",
- "financial_year_apr" => "1º de Abril",
- "financial_year_aug" => "1º de Agosto",
- "financial_year_dec" => "1º de Diciembre",
- "financial_year_feb" => "1º de Febrero",
- "financial_year_jan" => "1º de Enero",
- "financial_year_jul" => "1º de Julio",
- "financial_year_jun" => "1º de Junio",
- "financial_year_mar" => "1º de Marzo",
- "financial_year_may" => "1º de Mayo",
- "financial_year_nov" => "1º de Noviembre",
- "financial_year_oct" => "1º de Octubre",
- "financial_year_sep" => "1º de Septiembre",
- "floating_labels" => "Etiquetas flotantes",
- "gcaptcha_enable" => "Inicio de sesión con reCAPTCHA",
- "gcaptcha_secret_key" => "Llave secreta reCAPTCHA",
- "gcaptcha_secret_key_required" => "reCAPTCHA Secret Key es requerida si se usa",
- "gcaptcha_site_key" => "Llave del sitio reCAPTCHA",
- "gcaptcha_site_key_required" => "reCAPTCHA Site Key es requerida si se usa",
- "gcaptcha_tooltip" => "Proteja la página de inicio de sesión con Google reCAPTCHA, haga clic en el icono de un par de claves de API.",
- "general" => "General",
- "general_configuration" => "Configuración General",
- "giftcard_number" => "Número de tarjeta de regalo",
- "giftcard_random" => "Generar aleatoriamente",
- "giftcard_series" => "Generar en serie",
- "image_allowed_file_types" => "Tipos de archivos permitidos",
- "image_max_height_tooltip" => "Altura máxima permitida de las cargas de imágenes en píxeles (px).",
- "image_max_size_tooltip" => "Tamaño máximo de archivo permitido de cargas de imágenes en kilobytes (kb).",
- "image_max_width_tooltip" => "Ancho máximo permitido de las cargas de imágenes en píxeles (px).",
- "image_restrictions" => "Restricciones de carga de imágenes",
- "include_hsn" => "Incluir Soporte para Códigos HSN",
- "info" => "Información",
- "info_configuration" => "Información del Comercio",
- "input_groups" => "Introducir Grupos",
- "integrations" => "Componentes Integrados",
- "integrations_configuration" => "Componentes de Terceros Integrados",
- "invoice" => "Factura",
- "invoice_configuration" => "Parámetros de Impresión",
- "invoice_default_comments" => "Comentarios predeterminados en la factura",
- "invoice_email_message" => "Plantilla de Factura por Email",
- "invoice_enable" => "Habilitar Facturación",
- "invoice_printer" => "Impresora Facturadora",
- "invoice_type" => "Tipo de Factura",
- "is_readable" => "es legible, pero los permisos de lectura son incorrectos. Pongalos en 640 o 660 cargue nuevamente.",
- "is_writable" => "es escribible, pero los permisos de escritura son incorrectos. Pongalos en 750 y recargue la página de nuevo.",
- "item_markup" => "Marcado de Artículo",
- "jsprintsetup_required" => "Advertencia!Esta funcionalidad desactivada solo funciona con el addon jsPrintSetup de FireFox instalado. Guardar de todas formas?",
- "language" => "Idioma",
- "last_used_invoice_number" => "Último numero de factura utilizado",
- "last_used_quote_number" => "Último número de presupuesto utilizado",
- "last_used_work_order_number" => "Ultimo usado sin numero",
- "left" => "Izquierda",
- "license" => "Licencia",
- "license_configuration" => "Anuncio de Licencia",
- "line_sequence" => "Secuencia de linea",
- "lines_per_page" => "Líneas por página",
- "lines_per_page_number" => "Líneas por página debe ser un número.",
- "lines_per_page_required" => "Líneas por página es requerido.",
- "locale" => "Localización",
- "locale_configuration" => "Configuración de la zona local",
- "locale_info" => "Informacion de la configuracion de la zona",
- "location" => "Inventario",
- "location_configuration" => "Ubicación de Inventario",
- "location_info" => "Información de Configuración de Ubicación",
- "login_form" => "Estilo del formulario de inicio de sesión",
- "logout" => "Desea hacer un respaldo antes de salir? Pulsa [OK] para respaldar o [Cancelar] para salir.",
- "mailchimp" => "Correo MailChimp",
- "mailchimp_api_key" => "Clave API de Mailchimp",
- "mailchimp_configuration" => "Configuración de Mailchimp",
- "mailchimp_key_successfully" => "Clave API correcta.",
- "mailchimp_key_unsuccessfully" => "Clave API incorrecta.",
- "mailchimp_lists" => "Lista(s) de Mailchimp",
- "mailchimp_tooltip" => "Haga clic en el icono de una clave de API.",
- "message" => "Mensajes SMS",
- "message_configuration" => "Configuracion del mensaje",
- "msg_msg" => "Texto del mensaje guardado",
- "msg_msg_placeholder" => "Si desea usar un formato de SMS guarde su mensaje aquí, en caso contrario deje en blanco.",
- "msg_pwd" => "SMS-API Password",
- "msg_pwd_required" => "SMS-API Password es un campo requerido",
- "msg_src" => "SMS-API ID remitente",
- "msg_src_required" => "SMS-API ID remitente es un campo requerido",
- "msg_uid" => "SMS-API Usuario",
- "msg_uid_required" => "SMS-API Usuario es un campo requerido",
- "multi_pack_enabled" => "Empaquetado Múltiple por Producto",
- "no_risk" => "Sin riesgos de seguridad/vulnerabilidad.",
- "none" => "ninguno",
- "notify_alignment" => "Posición de notificacion",
- "number_format" => "Formato de número",
- "number_locale" => "Localización",
- "number_locale_invalid" => "Localización ingresada invalida. Revisa el link en el tooltip para encontrar informacion.",
- "number_locale_required" => "Numero localizacion es un campo requerido.",
- "number_locale_tooltip" => "Encontrar una zonificacion adecuada en este enlace.",
- "os_timezone" => "Zona Horaria Local:",
- "ospos_info" => "Información de la Instalación OSPOS",
- "payment_options_order" => "Orden de opciones de pago",
- "perm_risk" => "Los permisos incorrectos dejan a este software en riesgo.",
- "phone" => "Teléfono comercial",
- "phone_required" => "Teléfono del Comercio es requerido.",
- "print_bottom_margin" => "Margen Inferior",
- "print_bottom_margin_number" => "Margen Inferior debe ser un número.",
- "print_bottom_margin_required" => "Margen Inferior es requerido.",
- "print_delay_autoreturn" => "Regresar automaticamente a Vender",
- "print_delay_autoreturn_number" => "Tiempo espera requerido para regresar a ventas.",
- "print_delay_autoreturn_required" => "El tiempo espera debe ser numérico.",
- "print_footer" => "Imprimir el pie de página del navegador",
- "print_header" => "Imprimir el encabezado del navegador",
- "print_left_margin" => "Margen Izquierdo",
- "print_left_margin_number" => "Margen Izquierdo debe ser un número.",
- "print_left_margin_required" => "Margen Izquierdo es requerido.",
- "print_receipt_check_behaviour" => "Selección de Imprimir recibo",
- "print_receipt_check_behaviour_always" => "Siempre activado",
- "print_receipt_check_behaviour_last" => "Recordar la ultima vez",
- "print_receipt_check_behaviour_never" => "Siempre desactivo",
- "print_right_margin" => "Margen Derecho",
- "print_right_margin_number" => "Margen Derecho debe ser un número.",
- "print_right_margin_required" => "Margen Derecho es requerido.",
- "print_silently" => "Mostrar configuracion pre- impresión",
- "print_top_margin" => "Margen Superior",
- "print_top_margin_number" => "Margen Superior debe ser un número.",
- "print_top_margin_required" => "Margen Superior es requerido.",
- "quantity_decimals" => "Decimales de Cantidades",
- "quick_cash_enable" => "Activar Botones de Efectivo",
- "quote_default_comments" => "Comentario inicial de cotizaciones",
- "receipt" => "Recibo",
- "receipt_category" => "Recibo con categoría",
- "receipt_configuration" => "Parámetros de Impresión",
- "receipt_default" => "Normal",
- "receipt_font_size" => "Tamaño letra",
- "receipt_font_size_number" => "Debe ser un numero el tamaño de letra.",
- "receipt_font_size_required" => "El tamaño de letra es requerido.",
- "receipt_info" => "Información de Configuración de Recibo",
- "receipt_printer" => "Impresora de Ticket",
- "receipt_short" => "Resumido",
- "receipt_show_company_name" => "Mostrar el nombre de la empresa",
- "receipt_show_description" => "Mostrar descripcion",
- "receipt_show_serialnumber" => "Mostrar numero de serie",
- "receipt_show_tax_ind" => "Mostrar indicador de impuestos",
- "receipt_show_taxes" => "Mostrar impuestos",
- "receipt_show_total_discount" => "Mostrar Descuento Total",
- "receipt_template" => "Formato de recibo",
- "receiving_calculate_average_price" => "Calcular Promedio de Precio. (Recepción)",
- "recv_invoice_format" => "Formato de Factura de Recepción",
- "register_mode_default" => "Modo de registro por defecto",
- "report_an_issue" => "Informe de algún problema",
- "return_policy_required" => "Política de Devolución requerida.",
- "reward" => "Recompensas",
- "reward_configuration" => "Configuración de recompensas",
- "right" => "Derecha",
- "sales_invoice_format" => "Formato de Facturas de Venta",
- "sales_quote_format" => "Formato de presupuesto de las ventas",
- "mailpath_invalid" => "Ruta de sendmail inválida. Solo se permiten letras, números, guiones, guiones bajos, barras y puntos.",
- "saved_successfully" => "Configuración guardada satisfactoriamente.",
- "saved_unsuccessfully" => "Configuración no guardada.",
- "security_issue" => "Advertencia de vulnerabilidad de seguridad",
- "server_notice" => "Por Favor Use la Siguiente Información para Reportar Problemas.",
- "service_charge" => "Costo de Servicio",
- "show_due_enable" => "Mostrar vencimientos de clientes",
- "show_office_group" => "Mostrar icono oficina",
- "statistics" => "Enviar estadísticas",
- "statistics_tooltip" => "Envíe estadísticas para el desarrollo y mejora de funciones.",
- "stock_location" => "Ubicación de Inventario",
- "stock_location_duplicate" => "El nombre de inventario debe ser único.",
- "stock_location_invalid_chars" => "Nombre de la Ubicación de Inventario no debe contener '_'.",
- "stock_location_required" => "Número de Ubicación de Inventario es requerido.",
- "suggestions_fifth_column" => "Columna 5",
- "suggestions_first_column" => "Columna 1",
- "suggestions_fourth_column" => "Columna 4",
- "suggestions_layout" => "Sugerencias de búsqueda",
- "suggestions_second_column" => "Columna 2",
- "suggestions_third_column" => "Columna 3",
- "system_conf" => "Sistema OSPOS",
- "system_info" => "System Info",
- "table" => "Mesa",
- "table_configuration" => "Configuración de Mesa",
- "takings_printer" => "Impresión de retenciones",
- "tax" => "Impuestos",
- "tax_category" => "Categoría impuesto",
- "tax_category_duplicate" => "Categoría de impuesto ingresada ya existe.",
- "tax_category_invalid_chars" => "Categoría de impuesto ingresada es invalida.",
- "tax_category_required" => "Categoría de impuesto es requerida.",
- "tax_category_used" => "La categoría de impuestos no puede borrarse, esta en uso.",
- "tax_configuration" => "Configuracion Impuesto",
- "tax_decimals" => "Decimales de impuestos",
- "tax_id" => "Identificador del Impuesto",
- "tax_included" => "Impuestos incluidos",
- "theme" => "Tema",
- "theme_preview" => "Vista Previa del Tema:",
- "thousands_separator" => "Separador de miles",
- "timezone" => "Zona Horaria",
- "timezone_error" => "La zona horaria de OSPOS es diferente de tu zona horaria local.",
- "top" => "Arriba",
- "use_destination_based_tax" => "Usar Impuesto Basado en Destino",
- "user_timezone" => "Zona Horaria OSPOS:",
- "website" => "Sitio Web",
- "wholesale_markup" => "Marcado al por mayor",
- "work_order_enable" => "Soporte Ordenes de Trabajo",
- "work_order_format" => "Formato Ordenes de trabajo",
+ 'address' => 'Dirección del Comercio',
+ 'address_required' => 'Dirección del Comercio es requerida.',
+ 'all_set' => '¡Todos los permisos de archivo están configurados correctamente!',
+ 'allow_duplicate_barcodes' => 'Permitir código barras duplicados',
+ 'apostrophe' => 'apostrofe',
+ 'backup_button' => 'Respaldo',
+ 'backup_database' => 'Respaldo de Base de Datos',
+ 'barcode' => 'Código Barras',
+ 'barcode_company' => 'Nombre del Comercio',
+ 'barcode_configuration' => 'Configuración de Código de Barras',
+ 'barcode_content' => 'Contenido de Código de Barras',
+ 'barcode_first_row' => 'Fila 1',
+ 'barcode_font' => 'Fuente',
+ 'barcode_formats' => 'Formato entrada',
+ 'barcode_generate_if_empty' => 'Generar si esta vacio.',
+ 'barcode_height' => 'Alto (px)',
+ 'barcode_id' => 'Id/Artículo',
+ 'barcode_info' => 'Información de Configuración de Código de Barras',
+ 'barcode_layout' => 'Diseño Código de Barras',
+ 'barcode_name' => 'Nombre',
+ 'barcode_number' => 'UPC/EAN/ISBN',
+ 'barcode_number_in_row' => 'Número en la línea',
+ 'barcode_page_cellspacing' => 'Mostrar espacios de celdas de página.',
+ 'barcode_page_width' => 'Mostrar ancho de página',
+ 'barcode_price' => 'Precio',
+ 'barcode_second_row' => 'Fila 2',
+ 'barcode_third_row' => 'Fila 3',
+ 'barcode_tooltip' => 'Cuidado: esta característica puede causar duplicados ser importados o creados, No lo use si no quiere códigos de barras duplicadas.',
+ 'barcode_type' => 'Tipo de Código de Barra',
+ 'barcode_width' => 'Ancho (px)',
+ 'bottom' => 'Abajo',
+ 'cash_button' => 'Botones de Efectivo Rápido',
+ 'cash_button_1' => 'Botón 1',
+ 'cash_button_2' => 'Botón 2',
+ 'cash_button_3' => 'Botón 3',
+ 'cash_button_4' => 'Botón 4',
+ 'cash_button_5' => 'Botón 5',
+ 'cash_button_6' => 'Botón 6',
+ 'cash_decimals' => 'Decimales del Efectivo',
+ 'cash_decimals_tooltip' => 'Si los decimales del efectivo y del tipo de moneda son los mismos no habrá redondeo de los pagos en efectivo.',
+ 'cash_rounding' => 'Redondeo del Efectivo',
+ 'category_dropdown' => 'Mostrar Categoria como desplegable',
+ 'center' => 'Centro',
+ 'change_apperance_tooltip' => 'Cambiar Aspecto de OSPOS',
+ 'comma' => 'coma',
+ 'company' => 'Nombre del Comercio',
+ 'company_avatar' => 'Avatar de Empleado',
+ 'company_change_image' => 'Cambiar Imagen',
+ 'company_logo' => 'Logotipo del Comercio',
+ 'company_remove_image' => 'Quitar Imagen',
+ 'company_required' => 'Nombre del Comercio es requerido',
+ 'company_select_image' => 'Seleccionar Imagen',
+ 'company_website_url' => 'Sitio Web no es una URL estándar (http://...).',
+ 'country_codes' => 'Código de País',
+ 'country_codes_tooltip' => 'Lista de codigo de paises separado por coma para busqueda de direcciones.',
+ 'currency_code' => 'Código de Moneda',
+ 'currency_decimals' => 'Decimales del tipo de moneda',
+ 'currency_symbol' => 'Símbolo de la moneda',
+ 'current_employee_only' => 'Mostrar registro sólo del empleado actual',
+ 'customer_reward' => 'Cat. de Cliente',
+ 'customer_reward_duplicate' => 'La recompensa debe ser única.',
+ 'customer_reward_enable' => 'Activar recompenza para clientes',
+ 'customer_reward_invalid_chars' => "El nombre de la recompenza no puede contener el carácter '_'",
+ 'customer_reward_required' => 'El nombre es un campo obligatorio',
+ 'customer_sales_tax_support' => 'Habilitar la gestión de impuestos en las ventas a clientes',
+ 'date_or_time_format' => 'Filtro de fecha y hora',
+ 'datetimeformat' => 'Formato de fecha y hora',
+ 'decimal_point' => 'Punto Decimal',
+ 'default_barcode_font_size_number' => 'Tamaño de fuente de código de barras debe ser número.',
+ 'default_barcode_font_size_required' => 'Tamaño de fuente de código de barras es requerido.',
+ 'default_barcode_height_number' => 'Alto del código de barras debe ser un número.',
+ 'default_barcode_height_required' => 'Altura del código de barras es requerido.',
+ 'default_barcode_num_in_row_number' => 'Número por fila del código de barras debe ser un número.',
+ 'default_barcode_num_in_row_required' => 'Número de código de barras predeterminado en fila es un campo obligatorio.',
+ 'default_barcode_page_cellspacing_number' => 'Espacios de celdas por página del código de barras debe ser un número.',
+ 'default_barcode_page_cellspacing_required' => 'Espacios de celdas por página del código de barras es requerido.',
+ 'default_barcode_page_width_number' => 'Ancho de página del código de barras debe ser un número.',
+ 'default_barcode_page_width_required' => 'Ancho de página del código de barras es requerido.',
+ 'default_barcode_width_number' => 'Ancho del código de barras debe ser número.',
+ 'default_barcode_width_required' => 'Ancho del código de barras es requerido.',
+ 'default_item_columns' => 'Columnas de Productos Visibles por Defecto',
+ 'default_origin_tax_code' => 'Código de impuesto por defecto',
+ 'default_receivings_discount' => 'Descuento por Defecto para Recibos',
+ 'default_receivings_discount_number' => 'El Descuento por Defecto Para Los Recibos Debe Ser Un Número.',
+ 'default_receivings_discount_required' => 'El Descuento Predeterminado para los Recibos es un campo obligatorio.',
+ 'default_sales_discount' => 'Descuento Predeterminado para Ventas',
+ 'default_sales_discount_number' => 'Descuento en ventas predeterminado debe ser un número.',
+ 'default_sales_discount_required' => 'Descuento en ventas predeterminado es requerido.',
+ 'default_tax_category' => 'Categoría de Tasa predeterminada',
+ 'default_tax_code' => 'Código de Impuesto Predeterminado',
+ 'default_tax_jurisdiction' => 'Jurisdicción de Impuesto Predeterminado',
+ 'default_tax_name_number' => 'El nombre de el impuesto debe ser letras.',
+ 'default_tax_name_required' => 'El nombre del impuesto predeterminado es requerido.',
+ 'default_tax_rate' => '% de Impuestos Predeterminado',
+ 'default_tax_rate_1' => 'Impuesto 1',
+ 'default_tax_rate_2' => 'Impuesto 2',
+ 'default_tax_rate_3' => 'Tasa de Impuestos 3',
+ 'default_tax_rate_number' => 'El Impuesto Predeterminado debe ser un número.',
+ 'default_tax_rate_required' => 'El Impuesto Predeterminado es requerido.',
+ 'derive_sale_quantity' => 'Permitir cantidad de venta derivada',
+ 'derive_sale_quantity_tooltip' => 'Si se marca entonces se proporcionará un nuevo tipo para los artículos ordenados por cantidad extendida',
+ 'dinner_table' => 'Mesa',
+ 'dinner_table_duplicate' => 'Utilice un nombre de mesa único.',
+ 'dinner_table_enable' => 'Activar Mesa de Restaurante',
+ 'dinner_table_invalid_chars' => "El nombre de la mesa no puede contener '_'.",
+ 'dinner_table_required' => 'La mesa es un campo obligatorio.',
+ 'dot' => 'punto',
+ 'email' => 'E-mail',
+ 'email_configuration' => 'Configuracion de correo',
+ 'email_mailpath' => 'Ruta a Sendmail',
+ 'email_protocol' => 'Protocolo',
+ 'email_receipt_check_behaviour' => 'Selector de Recibir por Correo',
+ 'email_receipt_check_behaviour_always' => 'Siempre activado',
+ 'email_receipt_check_behaviour_last' => 'Recordar ultima vez',
+ 'email_receipt_check_behaviour_never' => 'Siempre desactivado',
+ 'email_smtp_crypto' => 'Encriptado SMTP',
+ 'email_smtp_host' => 'Servidor SMTP',
+ 'email_smtp_pass' => 'Pasword SMTP',
+ 'email_smtp_port' => 'Puerto SMTP',
+ 'email_smtp_timeout' => 'Tiempo falla SMTP',
+ 'email_smtp_user' => 'Usuario SMTP',
+ 'enable_avatar' => 'Habilitar Avatar',
+ 'enable_avatar_tooltip' => 'Habilitar Avatares para que se muestren en el menú desplegable Categorías y Registrarse ',
+ 'enable_dropdown_tooltip' => 'No podrá agregar nuevas categorías si esto está marcado',
+ 'enable_new_look' => 'Habilitar nueva apariencia',
+ 'enable_right_bar' => ' Habilitar la barra lateral derecha',
+ 'enable_right_bar_tooltip' => 'Cambiar la barra lateral de izquierda a derecha ',
+ 'enforce_privacy' => 'Forzar privacidad',
+ 'enforce_privacy_tooltip' => 'Proteja la privacidad de los clientes aplicando codificación de datos en caso de que se eliminen',
+ 'fax' => 'Fax',
+ 'file_perm' => 'Hay problemas con los permisos de archivo. Por favor corrija y vuelva a recargar esta página.',
+ 'financial_year' => 'Inicio del año fiscal',
+ 'financial_year_apr' => '1º de Abril',
+ 'financial_year_aug' => '1º de Agosto',
+ 'financial_year_dec' => '1º de Diciembre',
+ 'financial_year_feb' => '1º de Febrero',
+ 'financial_year_jan' => '1º de Enero',
+ 'financial_year_jul' => '1º de Julio',
+ 'financial_year_jun' => '1º de Junio',
+ 'financial_year_mar' => '1º de Marzo',
+ 'financial_year_may' => '1º de Mayo',
+ 'financial_year_nov' => '1º de Noviembre',
+ 'financial_year_oct' => '1º de Octubre',
+ 'financial_year_sep' => '1º de Septiembre',
+ 'floating_labels' => 'Etiquetas flotantes',
+ 'gcaptcha_enable' => 'Inicio de sesión con reCAPTCHA',
+ 'gcaptcha_secret_key' => 'Llave secreta reCAPTCHA',
+ 'gcaptcha_secret_key_required' => 'reCAPTCHA Secret Key es requerida si se usa',
+ 'gcaptcha_site_key' => 'Llave del sitio reCAPTCHA',
+ 'gcaptcha_site_key_required' => 'reCAPTCHA Site Key es requerida si se usa',
+ 'gcaptcha_tooltip' => 'Proteja la página de inicio de sesión con Google reCAPTCHA, haga clic en el icono de un par de claves de API.',
+ 'general' => 'General',
+ 'general_configuration' => 'Configuración General',
+ 'giftcard_number' => 'Número de tarjeta de regalo',
+ 'giftcard_random' => 'Generar aleatoriamente',
+ 'giftcard_series' => 'Generar en serie',
+ 'image_allowed_file_types' => 'Tipos de archivos permitidos',
+ 'image_max_height_tooltip' => 'Altura máxima permitida de las cargas de imágenes en píxeles (px).',
+ 'image_max_size_tooltip' => 'Tamaño máximo de archivo permitido de cargas de imágenes en kilobytes (kb).',
+ 'image_max_width_tooltip' => 'Ancho máximo permitido de las cargas de imágenes en píxeles (px).',
+ 'image_restrictions' => 'Restricciones de carga de imágenes',
+ 'include_hsn' => 'Incluir Soporte para Códigos HSN',
+ 'info' => 'Información',
+ 'info_configuration' => 'Información del Comercio',
+ 'input_groups' => 'Introducir Grupos',
+ 'integrations' => 'Componentes Integrados',
+ 'integrations_configuration' => 'Componentes de Terceros Integrados',
+ 'invoice' => 'Factura',
+ 'invoice_configuration' => 'Parámetros de Impresión',
+ 'invoice_default_comments' => 'Comentarios predeterminados en la factura',
+ 'invoice_email_message' => 'Plantilla de Factura por Email',
+ 'invoice_enable' => 'Habilitar Facturación',
+ 'invoice_printer' => 'Impresora Facturadora',
+ 'invoice_type' => 'Tipo de Factura',
+ 'is_readable' => 'es legible, pero los permisos de lectura son incorrectos. Pongalos en 640 o 660 cargue nuevamente.',
+ 'is_writable' => 'es escribible, pero los permisos de escritura son incorrectos. Pongalos en 750 y recargue la página de nuevo.',
+ 'item_markup' => 'Marcado de Artículo',
+ 'jsprintsetup_required' => 'Advertencia!Esta funcionalidad desactivada solo funciona con el addon jsPrintSetup de FireFox instalado. Guardar de todas formas?',
+ 'language' => 'Idioma',
+ 'last_used_invoice_number' => 'Último numero de factura utilizado',
+ 'last_used_quote_number' => 'Último número de presupuesto utilizado',
+ 'last_used_work_order_number' => 'Ultimo usado sin numero',
+ 'left' => 'Izquierda',
+ 'license' => 'Licencia',
+ 'license_configuration' => 'Anuncio de Licencia',
+ 'line_sequence' => 'Secuencia de linea',
+ 'lines_per_page' => 'Líneas por página',
+ 'lines_per_page_number' => 'Líneas por página debe ser un número.',
+ 'lines_per_page_required' => 'Líneas por página es requerido.',
+ 'locale' => 'Localización',
+ 'locale_configuration' => 'Configuración de la zona local',
+ 'locale_info' => 'Informacion de la configuracion de la zona',
+ 'location' => 'Inventario',
+ 'location_configuration' => 'Ubicación de Inventario',
+ 'location_info' => 'Información de Configuración de Ubicación',
+ 'login_form' => 'Estilo del formulario de inicio de sesión',
+ 'logout' => 'Desea hacer un respaldo antes de salir? Pulsa [OK] para respaldar o [Cancelar] para salir.',
+ 'mailchimp' => 'Correo MailChimp',
+ 'mailchimp_api_key' => 'Clave API de Mailchimp',
+ 'mailchimp_configuration' => 'Configuración de Mailchimp',
+ 'mailchimp_key_successfully' => 'Clave API correcta.',
+ 'mailchimp_key_unsuccessfully' => 'Clave API incorrecta.',
+ 'mailchimp_lists' => 'Lista(s) de Mailchimp',
+ 'mailchimp_tooltip' => 'Haga clic en el icono de una clave de API.',
+ 'message' => 'Mensajes SMS',
+ 'message_configuration' => 'Configuracion del mensaje',
+ 'msg_msg' => 'Texto del mensaje guardado',
+ 'msg_msg_placeholder' => 'Si desea usar un formato de SMS guarde su mensaje aquí, en caso contrario deje en blanco.',
+ 'msg_pwd' => 'SMS-API Password',
+ 'msg_pwd_required' => 'SMS-API Password es un campo requerido',
+ 'msg_src' => 'SMS-API ID remitente',
+ 'msg_src_required' => 'SMS-API ID remitente es un campo requerido',
+ 'msg_uid' => 'SMS-API Usuario',
+ 'msg_uid_required' => 'SMS-API Usuario es un campo requerido',
+ 'multi_pack_enabled' => 'Empaquetado Múltiple por Producto',
+ 'no_risk' => 'Sin riesgos de seguridad/vulnerabilidad.',
+ 'none' => 'ninguno',
+ 'notify_alignment' => 'Posición de notificacion',
+ 'number_format' => 'Formato de número',
+ 'number_locale' => 'Localización',
+ 'number_locale_invalid' => 'Localización ingresada invalida. Revisa el link en el tooltip para encontrar informacion.',
+ 'number_locale_required' => 'Numero localizacion es un campo requerido.',
+ 'number_locale_tooltip' => 'Encontrar una zonificacion adecuada en este enlace.',
+ 'os_timezone' => 'Zona Horaria Local:',
+ 'ospos_info' => 'Información de la Instalación OSPOS',
+ 'payment_options_order' => 'Orden de opciones de pago',
+ 'payment_reference_code_length_limits' => 'Código de referencia de pago
Límites de longitud',
+ 'payment_reference_code_length_max_label' => 'Máx',
+ 'payment_reference_code_length_min_label' => 'Mín',
+ 'perm_risk' => 'Los permisos incorrectos dejan a este software en riesgo.',
+ 'phone' => 'Teléfono comercial',
+ 'phone_required' => 'Teléfono del Comercio es requerido.',
+ 'print_bottom_margin' => 'Margen Inferior',
+ 'print_bottom_margin_number' => 'Margen Inferior debe ser un número.',
+ 'print_bottom_margin_required' => 'Margen Inferior es requerido.',
+ 'print_delay_autoreturn' => 'Regresar automaticamente a Vender',
+ 'print_delay_autoreturn_number' => 'Tiempo espera requerido para regresar a ventas.',
+ 'print_delay_autoreturn_required' => 'El tiempo espera debe ser numérico.',
+ 'print_footer' => 'Imprimir el pie de página del navegador',
+ 'print_header' => 'Imprimir el encabezado del navegador',
+ 'print_left_margin' => 'Margen Izquierdo',
+ 'print_left_margin_number' => 'Margen Izquierdo debe ser un número.',
+ 'print_left_margin_required' => 'Margen Izquierdo es requerido.',
+ 'print_receipt_check_behaviour' => 'Selección de Imprimir recibo',
+ 'print_receipt_check_behaviour_always' => 'Siempre activado',
+ 'print_receipt_check_behaviour_last' => 'Recordar la ultima vez',
+ 'print_receipt_check_behaviour_never' => 'Siempre desactivo',
+ 'print_right_margin' => 'Margen Derecho',
+ 'print_right_margin_number' => 'Margen Derecho debe ser un número.',
+ 'print_right_margin_required' => 'Margen Derecho es requerido.',
+ 'print_silently' => 'Mostrar configuracion pre- impresión',
+ 'print_top_margin' => 'Margen Superior',
+ 'print_top_margin_number' => 'Margen Superior debe ser un número.',
+ 'print_top_margin_required' => 'Margen Superior es requerido.',
+ 'quantity_decimals' => 'Decimales de Cantidades',
+ 'quick_cash_enable' => 'Activar Botones de Efectivo',
+ 'quote_default_comments' => 'Comentario inicial de cotizaciones',
+ 'receipt' => 'Recibo',
+ 'receipt_category' => 'Recibo con categoría',
+ 'receipt_configuration' => 'Parámetros de Impresión',
+ 'receipt_default' => 'Normal',
+ 'receipt_font_size' => 'Tamaño letra',
+ 'receipt_font_size_number' => 'Debe ser un numero el tamaño de letra.',
+ 'receipt_font_size_required' => 'El tamaño de letra es requerido.',
+ 'receipt_info' => 'Información de Configuración de Recibo',
+ 'receipt_printer' => 'Impresora de Ticket',
+ 'receipt_short' => 'Resumido',
+ 'receipt_show_company_name' => 'Mostrar el nombre de la empresa',
+ 'receipt_show_description' => 'Mostrar descripcion',
+ 'receipt_show_serialnumber' => 'Mostrar numero de serie',
+ 'receipt_show_tax_ind' => 'Mostrar indicador de impuestos',
+ 'receipt_show_taxes' => 'Mostrar impuestos',
+ 'receipt_show_total_discount' => 'Mostrar Descuento Total',
+ 'receipt_template' => 'Formato de recibo',
+ 'receiving_calculate_average_price' => 'Calcular Promedio de Precio. (Recepción)',
+ 'recv_invoice_format' => 'Formato de Factura de Recepción',
+ 'register_mode_default' => 'Modo de registro por defecto',
+ 'report_an_issue' => 'Informe de algún problema',
+ 'return_policy_required' => 'Política de Devolución requerida.',
+ 'reward' => 'Recompensas',
+ 'reward_configuration' => 'Configuración de recompensas',
+ 'right' => 'Derecha',
+ 'sales_invoice_format' => 'Formato de Facturas de Venta',
+ 'sales_quote_format' => 'Formato de presupuesto de las ventas',
+ 'mailpath_invalid' => 'Ruta de sendmail inválida. Solo se permiten letras, números, guiones, guiones bajos, barras y puntos.',
+ 'saved_successfully' => 'Configuración guardada satisfactoriamente.',
+ 'saved_unsuccessfully' => 'Configuración no guardada.',
+ 'security_issue' => 'Advertencia de vulnerabilidad de seguridad',
+ 'server_notice' => 'Por Favor Use la Siguiente Información para Reportar Problemas.',
+ 'service_charge' => 'Costo de Servicio',
+ 'show_due_enable' => 'Mostrar vencimientos de clientes',
+ 'show_office_group' => 'Mostrar icono oficina',
+ 'statistics' => 'Enviar estadísticas',
+ 'statistics_tooltip' => 'Envíe estadísticas para el desarrollo y mejora de funciones.',
+ 'stock_location' => 'Ubicación de Inventario',
+ 'stock_location_duplicate' => 'El nombre de inventario debe ser único.',
+ 'stock_location_invalid_chars' => "Nombre de la Ubicación de Inventario no debe contener '_'.",
+ 'stock_location_required' => 'Número de Ubicación de Inventario es requerido.',
+ 'suggestions_fifth_column' => 'Columna 5',
+ 'suggestions_first_column' => 'Columna 1',
+ 'suggestions_fourth_column' => 'Columna 4',
+ 'suggestions_layout' => 'Sugerencias de búsqueda',
+ 'suggestions_second_column' => 'Columna 2',
+ 'suggestions_third_column' => 'Columna 3',
+ 'system_conf' => 'Sistema OSPOS',
+ 'system_info' => 'System Info',
+ 'table' => 'Mesa',
+ 'table_configuration' => 'Configuración de Mesa',
+ 'takings_printer' => 'Impresión de retenciones',
+ 'tax' => 'Impuestos',
+ 'tax_category' => 'Categoría impuesto',
+ 'tax_category_duplicate' => 'Categoría de impuesto ingresada ya existe.',
+ 'tax_category_invalid_chars' => 'Categoría de impuesto ingresada es invalida.',
+ 'tax_category_required' => 'Categoría de impuesto es requerida.',
+ 'tax_category_used' => 'La categoría de impuestos no puede borrarse, esta en uso.',
+ 'tax_configuration' => 'Configuracion Impuesto',
+ 'tax_decimals' => 'Decimales de impuestos',
+ 'tax_id' => 'Identificador del Impuesto',
+ 'tax_included' => 'Impuestos incluidos',
+ 'theme' => 'Tema',
+ 'theme_preview' => 'Vista Previa del Tema:',
+ 'thousands_separator' => 'Separador de miles',
+ 'timezone' => 'Zona Horaria',
+ 'timezone_error' => 'La zona horaria de OSPOS es diferente de tu zona horaria local.',
+ 'top' => 'Arriba',
+ 'use_destination_based_tax' => 'Usar Impuesto Basado en Destino',
+ 'user_timezone' => 'Zona Horaria OSPOS:',
+ 'website' => 'Sitio Web',
+ 'wholesale_markup' => 'Marcado al por mayor',
+ 'work_order_enable' => 'Soporte Ordenes de Trabajo',
+ 'work_order_format' => 'Formato Ordenes de trabajo',
];
diff --git a/app/Language/es-ES/Login.php b/app/Language/es-ES/Login.php
index 65f0b2287..e9a06a4b4 100644
--- a/app/Language/es-ES/Login.php
+++ b/app/Language/es-ES/Login.php
@@ -1,25 +1,30 @@
"No soy un robot.",
- "go" => "Ir",
- "invalid_gcaptcha" => "Por favor verifique si usted no es un robot.",
- "invalid_installation" => "La instalación no es correcta, comprueba el fichero php.ini.",
- "invalid_username_and_password" => "Usuario y/o Contraseña no validos.",
- "login" => "Iniciar Sesión",
- "logout" => "Cerrar sesión",
- "migration_needed" => "La migración de la base de datos a {0} se iniciará después del inicio de sesión.",
- "migration_required" => "Migración de base de datos requerida",
- "migration_auth_message" => "Se requieren credenciales de administrador para autorizar la migración de la base de datos a la versión {0}. Inicie sesión para continuar.",
- "migration_initializing" => "Inicializando base de datos",
- "migration_running" => "Ejecutando migraciones de base de datos...",
- "migration_complete" => "¡Base de datos inicializada correctamente!",
- "migration_complete_login" => "Ahora puede iniciar sesión.",
- "migration_failed" => "Migración fallida",
- "migration_error_connection" => "Error de conexión. Por favor, inténtelo de nuevo.",
- "migration_complete_redirect" => "Migración completada. Redirigiendo al inicio de sesión...",
- "password" => "Contraseña",
- "required_username" => "El campo de nombre de usuario es obligatorio.",
- "username" => "Usuario",
- "welcome" => "Bienvenido a {0}!",
+ "gcaptcha" => "No soy un robot.",
+ "go" => "Ir",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Por favor verifique si usted no es un robot.",
+ "invalid_installation" => "La instalación no es correcta, comprueba el fichero php.ini.",
+ "invalid_username_and_password" => "Usuario y/o Contraseña no validos.",
+ "login" => "Iniciar Sesión",
+ "logout" => "Cerrar sesión",
+ "migrating_database" => "Migrando base de datos",
+ "migration_auth_message" => "Se requieren credenciales de administrador para autorizar la migración de la base de datos a la versión {0}. Inicie sesión para continuar.",
+ "migration_complete" => "¡Base de datos inicializada correctamente!",
+ "migration_complete_login" => "Ahora puede iniciar sesión.",
+ "migration_complete_migrate" => "¡Base de datos migrada exitosamente!",
+ "migration_complete_redirect" => "Migración completada. Redirigiendo al inicio de sesión...",
+ "migration_error_connection" => "Error de conexión. Por favor, inténtelo de nuevo.",
+ "migration_failed" => "Migración fallida",
+ "migration_initializing" => "Inicializando base de datos",
+ "migration_needed" => "La migración de la base de datos a {0} se iniciará después del inicio de sesión.",
+ "migration_required" => "Migración de base de datos requerida",
+ "migration_running" => "Ejecutando migraciones de base de datos...",
+ "password" => "Contraseña",
+ "required_username" => "El campo de nombre de usuario es obligatorio.",
+ "username" => "Usuario",
+ "welcome" => "Bienvenido a {0}!"
];
diff --git a/app/Language/es-ES/Sales.php b/app/Language/es-ES/Sales.php
index 61591fb61..b3096c5b7 100644
--- a/app/Language/es-ES/Sales.php
+++ b/app/Language/es-ES/Sales.php
@@ -1,238 +1,238 @@
"Puntos Disponibles",
- "rewards_package" => "Paquete de recompensas",
- "rewards_remaining_balance" => "El remanente de puntos es ",
- "account_number" => "Cuenta #",
- "add_payment" => "Agregar Pago",
- "amount_due" => "Monto Adeudado",
- "amount_tendered" => "Cantidad Recibida",
- "authorized_signature" => "Firma Autorizada",
- "bank_transfer" => "Transferencia Bancaria",
- "cancel_sale" => "Cancelar Venta",
- "cash" => "Efectivo",
- "cash_1" => "1",
- "cash_2" => "5",
- "cash_3" => "10",
- "cash_4" => "20",
- "cash_adjustment" => "Ajuste de Efectivo",
- "cash_deposit" => "Deposito Efectivo",
- "cash_filter" => "Efectivo",
- "change_due" => "Cambio",
- "change_price" => "Cambiar el precio de venta",
- "check" => "Cheque",
- "check_balance" => "Balance de Cheque",
- "check_filter" => "Cheque",
- "close" => "Cerrar Lista",
- "comment" => "Comentario",
- "comments" => "Comentarios",
- "company_name" => "Nombre de Comañía",
- "complete" => "Completa",
- "complete_sale" => "Completar Venta",
- "confirm_cancel_sale" => "¿Seguro quiere cancelar esta venta? Todos los artículos serán eliminados.",
- "confirm_delete" => "¿Seguro quiere borrar las ventas seleccionadas?",
- "confirm_restore" => "Esta seguro de querer restaurar la(s) venta(s) seleccionada(s)?",
- "credit" => "Tarjeta de Crédito",
- "credit_deposit" => "Deposito Credito",
- "credit_filter" => "Tarjeta de Crédito",
- "current_table" => "Tabla Actual",
- "customer" => "cliente",
- "customer_address" => "Direccion",
- "customer_discount" => "Descuento",
- "customer_email" => "Email",
- "customer_location" => "Ubicacion",
- "customer_mailchimp_status" => "Estado de Mailchimp",
- "customer_optional" => "(Obligatorio para Pagos Vencidos)",
- "customer_required" => "(Requerido)",
- "customer_total" => "Total",
- "customer_total_spent" => "Total Gastado",
- "daily_sales" => "Sus Ventas Diarias",
- "date" => "Fecha",
- "date_range" => "Rango de Fecha",
- "date_required" => "Una fecha correcta debe ser ingresada.",
- "date_type" => "Campo de Fecha es requerido.",
- "debit" => "Tarjeta de Débito",
- "debit_filter" => "Tarjeta de Débito",
- "delete" => "Permitir borrar",
- "delete_confirmation" => "¿Seguro quiere borrar esta venta? Esta acción no se puede deshacer.",
- "delete_entire_sale" => "Borrar la venta completa",
- "delete_successful" => "Venta borrada correctamente.",
- "delete_unsuccessful" => "Venta no borrada, fallida.",
- "description_abbrv" => "Descrp.",
- "discard" => "Descartar",
- "discard_quote" => "Descartar",
- "discount" => "Descuento",
- "discount_included" => "% Descuento",
- "discount_short" => "%",
- "due" => "Adeudado",
- "due_filter" => "Adeudado",
- "edit" => "Editar",
- "edit_item" => "Editar Artículo",
- "edit_sale" => "Editar Venta",
- "email_receipt" => "Enviar Ticket",
- "employee" => "Empleado",
- "entry" => "Entrada",
- "error_editing_item" => "Error editando artículo",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Encontrar/Escanear Artículo",
- "find_or_scan_item_or_receipt" => "Encontrar/Escanear Artículo o Entrada",
- "giftcard" => "Tarjeta de Regalo",
- "giftcard_balance" => "Balance de Tarjeta de Regalo",
- "giftcard_filter" => "Tarjeta de Regalo",
- "giftcard_number" => "Número de Tarjeta de Regalo",
- "group_by_category" => "Grupo por Categoría",
- "group_by_type" => "Grupo por Tipo",
- "hsn" => "HSN",
- "id" => "ID de Venta",
- "include_prices" => "Incluir precios?",
- "invoice" => "Factura de venta",
- "invoice_confirm" => "Esta factura sera enviada a",
- "invoice_enable" => "Número de Factura",
- "invoice_filter" => "Facturas",
- "invoice_no_email" => "Este cliente no tiene un email válido.",
- "invoice_number" => "Factura #",
- "invoice_number_duplicate" => "Por favor ingrese un número de factura único.",
- "invoice_sent" => "Factura enviada a",
- "invoice_total" => "Total Facturado",
- "invoice_type_custom_invoice" => "Factura Personalizada",
- "invoice_type_custom_tax_invoice" => "Factura de Impuesto personalizada",
- "invoice_type_invoice" => "Factura",
- "invoice_type_tax_invoice" => "Factura de Impuestos",
- "invoice_unsent" => "Fallo el envio de la factura a",
- "invoice_update" => "Actualizar",
- "item_insufficient_of_stock" => "Cantidad insuficiente en existencia.",
- "item_name" => "Nombre del Artículo",
- "item_number" => "UPC/EAN/ISBN",
- "item_out_of_stock" => "El artículo está agotado.",
- "key_browser" => "Atajos Útiles",
- "key_cancel" => "Cancelar actual Cotización/Factura/Venta",
- "key_customer_search" => "Búsqueda de Clientes",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Agregar Pago y Completar Factura/Venta",
- "key_full" => "Abrir en Pantalla Completa",
- "key_function" => "Function",
- "key_help" => "Atajos",
- "key_help_modal" => "Abrir Ventana de Atajos",
- "key_in" => "Acercar",
- "key_item_search" => "Buscar Artículo",
- "key_out" => "Alejar",
- "key_payment" => "Agregar Pago",
- "key_print" => "Imprimir Página Actual",
- "key_restore" => "Restaurar Pantalla/Zoom Original",
- "key_search" => "Buscar Tablas de Reportes",
- "key_suspend" => "Suspender Venta Actual",
- "key_suspended" => "Mostrar Ventas Suspendidas",
- "key_system" => "Atajos del Sistema",
- "key_tendered" => "Editar Importe Licitado",
- "key_title" => "Atajas de Teclado para Ventas",
- "mc" => "Tarjeta Master Card",
- "mode" => "Modo",
- "must_enter_numeric" => "Cantidad Recibida debe ser número.",
- "must_enter_numeric_giftcard" => "Número de Tarjeta de Regalo debe ser número.",
- "new_customer" => "Cliente Nuevo",
- "new_item" => "Artículo Nuevo",
- "no_description" => "Ninguno",
- "no_filter" => "Todos",
- "no_items_in_cart" => "No hay artículos en el carrito.",
- "no_sales_to_display" => "No hay ventas que mostrar.",
- "none_selected" => "No has seleccionado venta para borrar.",
- "nontaxed_ind" => " Ventas no gravadas ",
- "not_authorized" => "Esta accion no esta autorizada.",
- "one_or_multiple" => "venta(s)",
- "payment" => "Tipo de Pago",
- "payment_amount" => "Cantidad",
- "payment_not_cover_total" => "La Cantidad Recibida no cubre el pago total.",
- "payment_type" => "Tipo",
- "payments" => "Pagos",
- "payments_total" => "Pagado",
- "price" => "Precio",
- "print_after_sale" => "Imprimir recibo después de una venta",
- "quantity" => "Cantidad",
- "quantity_less_than_reorder_level" => "Advertencia. La cantidad deseada es insuficiente.",
- "quantity_less_than_zero" => "Advertencia. La cantidad deseada no tiene stock suficiente. Puedes procesar la venta pero revisa tu inventario.",
- "quantity_of_items" => "Cantidad de {0} articulos",
- "quote" => "Cotizar",
- "quote_number" => "Número de Presupuesto",
- "quote_number_duplicate" => "Cotizacion debe ser unico.",
- "quote_sent" => "Cotizacion enviada a",
- "quote_unsent" => "Cotización no se pudo enviar",
- "receipt" => "Recibo de Venta",
- "receipt_no_email" => "Este cliente no tiene una dirección de correo valido.",
- "receipt_number" => "Venta #",
- "receipt_sent" => "Recibo enviada a",
- "receipt_unsent" => "Fallo el envio del recibo a",
- "refund" => "Tipo de reembolso",
- "register" => "Registro de Ventas",
- "remove_customer" => "Borrar Cliente",
- "remove_discount" => "Descuentos",
- "return" => "Devolución",
- "rewards" => "Puntos",
- "rewards_balance" => "Balance de puntos",
- "sale" => "Venta",
- "sale_by_invoice" => "Venta por factura",
- "sale_for_customer" => "Cliente:",
- "sale_time" => "Hora",
- "sales_tax" => "Impuesto",
- "sales_total" => "Ventas Totales",
- "select_customer" => "Seleccionar Cliente",
- "send_invoice" => "Enviar Factura",
- "send_quote" => "Enviar Cotización",
- "send_receipt" => "Enviar Recibo",
- "send_work_order" => "Enviar Orden de Trabajo",
- "serial" => "Serie",
- "service_charge" => "Costo de Servicio",
- "show_due" => "Mostrar los Importes Adeudados",
- "show_invoice" => "Factura",
- "show_receipt" => "Recibo",
- "start_typing_customer_name" => "Empieza a escribir el cliente...",
- "start_typing_item_name" => "Empieza a escribir o escanea el código de barras...",
- "stock" => "Inventario",
- "stock_location" => "Localizacion",
- "sub_total" => "SubTotal",
- "successfully_deleted" => "Borrada satisfactoriamente",
- "successfully_restored" => "Restaurado satisfactoriamente",
- "successfully_suspended_sale" => "La venta ha sido suspendida.",
- "successfully_updated" => "La venta ha sido actualizada.",
- "suspend_sale" => "Suspender",
- "suspended_doc_id" => "Documento",
- "suspended_sale_id" => "Id",
- "suspended_sales" => "Suspendidas",
- "table" => "Datos",
- "takings" => "Ventas Diarias",
- "tax" => "Imp",
- "tax_id" => "Identificador del Impuesto",
- "tax_invoice" => "Impuesto de la Factura",
- "tax_percent" => "% de Imp",
- "taxed_ind" => "Ventas gravadas",
- "total" => "Total",
- "total_tax_exclusive" => "Sin impuesto",
- "transaction_failed" => "La transacción de venta falló.",
- "unable_to_add_item" => "Error al agregar artículo a la venta",
- "unsuccessfully_deleted" => "Ha fallado la eliminación de la Venta.",
- "unsuccessfully_restored" => "Restaurar Venta fallida.",
- "unsuccessfully_suspended_sale" => "Venta suspendida satisfactoriamente.",
- "unsuccessfully_updated" => "Ha fallado la actualización de la venta.",
- "unsuspend" => "Retomar",
- "unsuspend_and_delete" => "Retomar y Borrar",
- "update" => "Editar",
- "upi" => "PIN UPI",
- "visa" => "Tarjeta Visa",
- "wallet" => "Monedero",
- "wholesale" => "Precio al por mayor",
- "work_order" => "Orden trabajo",
- "work_order_number" => "Numero Orden Trabajo",
- "work_order_number_duplicate" => "El numero de orden de trabajo debe ser unico.",
- "work_order_sent" => "Orden de trabajo enviada a",
- "work_order_unsent" => "Orden de trabajo fallida al enviar a",
- "sale_not_found" => "Venta no encontrada",
- "ubl_invoice" => "Factura UBL",
- "download_ubl" => "Descargar Factura UBL",
- "ubl_generation_failed" => "Error al generar la factura UBL",
- "selected_customer" => "Cliente seleccionado",
+ 'account_number' => 'Cuenta #',
+ 'add_payment' => 'Agregar Pago',
+ 'amount_due' => 'Monto Adeudado',
+ 'amount_tendered' => 'Cantidad Recibida',
+ 'authorized_signature' => 'Firma Autorizada',
+ 'bank_transfer' => 'Transferencia Bancaria',
+ 'cancel_sale' => 'Cancelar Venta',
+ 'cash' => 'Efectivo',
+ 'cash_1' => '1',
+ 'cash_2' => '5',
+ 'cash_3' => '10',
+ 'cash_4' => '20',
+ 'cash_adjustment' => 'Ajuste de Efectivo',
+ 'cash_deposit' => 'Deposito Efectivo',
+ 'cash_filter' => 'Efectivo',
+ 'change_due' => 'Cambio',
+ 'change_price' => 'Cambiar el precio de venta',
+ 'check' => 'Cheque',
+ 'check_balance' => 'Balance de Cheque',
+ 'check_filter' => 'Cheque',
+ 'close' => 'Cerrar Lista',
+ 'comment' => 'Comentario',
+ 'comments' => 'Comentarios',
+ 'company_name' => 'Nombre de Comañía',
+ 'complete' => 'Completa',
+ 'complete_sale' => 'Completar Venta',
+ 'confirm_cancel_sale' => '¿Seguro quiere cancelar esta venta? Todos los artículos serán eliminados.',
+ 'confirm_delete' => '¿Seguro quiere borrar las ventas seleccionadas?',
+ 'confirm_restore' => 'Esta seguro de querer restaurar la(s) venta(s) seleccionada(s)?',
+ 'credit' => 'Tarjeta de Crédito',
+ 'credit_deposit' => 'Deposito Credito',
+ 'credit_filter' => 'Tarjeta de Crédito',
+ 'current_table' => 'Tabla Actual',
+ 'customer' => 'cliente',
+ 'customer_address' => 'Direccion',
+ 'customer_discount' => 'Descuento',
+ 'customer_email' => 'Email',
+ 'customer_location' => 'Ubicacion',
+ 'customer_mailchimp_status' => 'Estado de Mailchimp',
+ 'customer_optional' => '(Obligatorio para Pagos Vencidos)',
+ 'customer_required' => '(Requerido)',
+ 'customer_total' => 'Total',
+ 'customer_total_spent' => 'Total Gastado',
+ 'customers_available_points' => 'Puntos Disponibles',
+ 'daily_sales' => 'Sus Ventas Diarias',
+ 'date' => 'Fecha',
+ 'date_range' => 'Rango de Fecha',
+ 'date_required' => 'Una fecha correcta debe ser ingresada.',
+ 'date_type' => 'Campo de Fecha es requerido.',
+ 'debit' => 'Tarjeta de Débito',
+ 'debit_filter' => 'Tarjeta de Débito',
+ 'delete' => 'Permitir borrar',
+ 'delete_confirmation' => '¿Seguro quiere borrar esta venta? Esta acción no se puede deshacer.',
+ 'delete_entire_sale' => 'Borrar la venta completa',
+ 'delete_successful' => 'Venta borrada correctamente.',
+ 'delete_unsuccessful' => 'Venta no borrada, fallida.',
+ 'description_abbrv' => 'Descrp.',
+ 'discard' => 'Descartar',
+ 'discard_quote' => 'Descartar',
+ 'discount' => 'Descuento',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Descuento',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'Adeudado',
+ 'due_filter' => 'Adeudado',
+ 'edit' => 'Editar',
+ 'edit_item' => 'Editar Artículo',
+ 'edit_sale' => 'Editar Venta',
+ 'email_receipt' => 'Enviar Ticket',
+ 'employee' => 'Empleado',
+ 'entry' => 'Entrada',
+ 'error_editing_item' => 'Error editando artículo',
+ 'find_or_scan_item' => 'Encontrar/Escanear Artículo',
+ 'find_or_scan_item_or_receipt' => 'Encontrar/Escanear Artículo o Entrada',
+ 'giftcard' => 'Tarjeta de Regalo',
+ 'giftcard_balance' => 'Balance de Tarjeta de Regalo',
+ 'giftcard_filter' => 'Tarjeta de Regalo',
+ 'giftcard_number' => 'Número de Tarjeta de Regalo',
+ 'group_by_category' => 'Grupo por Categoría',
+ 'group_by_type' => 'Grupo por Tipo',
+ 'hsn' => 'HSN',
+ 'id' => 'ID de Venta',
+ 'include_prices' => 'Incluir precios?',
+ 'invoice' => 'Factura de venta',
+ 'invoice_confirm' => 'Esta factura sera enviada a',
+ 'invoice_enable' => 'Número de Factura',
+ 'invoice_filter' => 'Facturas',
+ 'invoice_no_email' => 'Este cliente no tiene un email válido.',
+ 'invoice_number' => 'Factura #',
+ 'invoice_number_duplicate' => 'Por favor ingrese un número de factura único.',
+ 'invoice_sent' => 'Factura enviada a',
+ 'invoice_total' => 'Total Facturado',
+ 'invoice_type_custom_invoice' => 'Factura Personalizada',
+ 'invoice_type_custom_tax_invoice' => 'Factura de Impuesto personalizada',
+ 'invoice_type_invoice' => 'Factura',
+ 'invoice_type_tax_invoice' => 'Factura de Impuestos',
+ 'invoice_unsent' => 'Fallo el envio de la factura a',
+ 'invoice_update' => 'Actualizar',
+ 'item_insufficient_of_stock' => 'Cantidad insuficiente en existencia.',
+ 'item_name' => 'Nombre del Artículo',
+ 'item_number' => 'UPC/EAN/ISBN',
+ 'item_out_of_stock' => 'El artículo está agotado.',
+ 'key_browser' => 'Atajos Útiles',
+ 'key_cancel' => 'Cancelar actual Cotización/Factura/Venta',
+ 'key_customer_search' => 'Búsqueda de Clientes',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Agregar Pago y Completar Factura/Venta',
+ 'key_full' => 'Abrir en Pantalla Completa',
+ 'key_function' => 'Function',
+ 'key_help' => 'Atajos',
+ 'key_help_modal' => 'Abrir Ventana de Atajos',
+ 'key_in' => 'Acercar',
+ 'key_item_search' => 'Buscar Artículo',
+ 'key_out' => 'Alejar',
+ 'key_payment' => 'Agregar Pago',
+ 'key_print' => 'Imprimir Página Actual',
+ 'key_restore' => 'Restaurar Pantalla/Zoom Original',
+ 'key_search' => 'Buscar Tablas de Reportes',
+ 'key_suspend' => 'Suspender Venta Actual',
+ 'key_suspended' => 'Mostrar Ventas Suspendidas',
+ 'key_system' => 'Atajos del Sistema',
+ 'key_tendered' => 'Editar Importe Licitado',
+ 'key_title' => 'Atajas de Teclado para Ventas',
+ 'mc' => 'Tarjeta Master Card',
+ 'mode' => 'Modo',
+ 'must_enter_numeric' => 'Cantidad Recibida debe ser número.',
+ 'must_enter_numeric_giftcard' => 'Número de Tarjeta de Regalo debe ser número.',
+ 'must_enter_reference_code' => 'Se debe ingresar el número de referencia/recuperación.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Cliente Nuevo',
+ 'new_item' => 'Artículo Nuevo',
+ 'no_description' => 'Ninguno',
+ 'no_filter' => 'Todos',
+ 'no_items_in_cart' => 'No hay artículos en el carrito.',
+ 'no_sales_to_display' => 'No hay ventas que mostrar.',
+ 'none_selected' => 'No has seleccionado venta para borrar.',
+ 'nontaxed_ind' => ' Ventas no gravadas ',
+ 'not_authorized' => 'Esta accion no esta autorizada.',
+ 'one_or_multiple' => 'venta(s)',
+ 'payment' => 'Tipo de Pago',
+ 'payment_amount' => 'Cantidad',
+ 'payment_not_cover_total' => 'La Cantidad Recibida no cubre el pago total.',
+ 'payment_type' => 'Tipo',
+ 'payments' => 'Pagos',
+ 'payments_total' => 'Pagado',
+ 'price' => 'Precio',
+ 'print_after_sale' => 'Imprimir recibo después de una venta',
+ 'quantity' => 'Cantidad',
+ 'quantity_less_than_reorder_level' => 'Advertencia. La cantidad deseada es insuficiente.',
+ 'quantity_less_than_zero' => 'Advertencia. La cantidad deseada no tiene stock suficiente. Puedes procesar la venta pero revisa tu inventario.',
+ 'quantity_of_items' => 'Cantidad de {0} articulos',
+ 'quote' => 'Cotizar',
+ 'quote_number' => 'Número de Presupuesto',
+ 'quote_number_duplicate' => 'Cotizacion debe ser unico.',
+ 'quote_sent' => 'Cotizacion enviada a',
+ 'quote_unsent' => 'Cotización no se pudo enviar',
+ 'receipt' => 'Recibo de Venta',
+ 'receipt_no_email' => 'Este cliente no tiene una dirección de correo valido.',
+ 'receipt_number' => 'Venta #',
+ 'receipt_sent' => 'Recibo enviada a',
+ 'receipt_unsent' => 'Fallo el envio del recibo a',
+ 'reference_code' => 'Código de referencia de pago',
+ 'reference_code_invalid_characters' => 'El código de referencia solo debe contener letras y números.',
+ 'reference_code_length_error' => 'La longitud del código de referencia no es válida.',
+ 'refund' => 'Tipo de reembolso',
+ 'register' => 'Registro de Ventas',
+ 'remove_customer' => 'Borrar Cliente',
+ 'remove_discount' => 'Descuentos',
+ 'return' => 'Devolución',
+ 'rewards' => 'Puntos',
+ 'rewards_balance' => 'Balance de puntos',
+ 'rewards_package' => 'Paquete de recompensas',
+ 'rewards_remaining_balance' => 'El remanente de puntos es ',
+ 'sale' => 'Venta',
+ 'sale_by_invoice' => 'Venta por factura',
+ 'sale_for_customer' => 'Cliente:',
+ 'sale_time' => 'Hora',
+ 'sales_tax' => 'Impuesto',
+ 'sales_total' => 'Ventas Totales',
+ 'select_customer' => 'Seleccionar Cliente',
+ 'selected_customer' => 'Cliente seleccionado',
+ 'send_invoice' => 'Enviar Factura',
+ 'send_quote' => 'Enviar Cotización',
+ 'send_receipt' => 'Enviar Recibo',
+ 'send_work_order' => 'Enviar Orden de Trabajo',
+ 'serial' => 'Serie',
+ 'service_charge' => 'Costo de Servicio',
+ 'show_due' => 'Mostrar los Importes Adeudados',
+ 'show_invoice' => 'Factura',
+ 'show_receipt' => 'Recibo',
+ 'start_typing_customer_name' => 'Empieza a escribir el cliente...',
+ 'start_typing_item_name' => 'Empieza a escribir o escanea el código de barras...',
+ 'stock' => 'Inventario',
+ 'stock_location' => 'Localizacion',
+ 'sub_total' => 'SubTotal',
+ 'successfully_deleted' => 'Borrada satisfactoriamente',
+ 'successfully_restored' => 'Restaurado satisfactoriamente',
+ 'successfully_suspended_sale' => 'La venta ha sido suspendida.',
+ 'successfully_updated' => 'La venta ha sido actualizada.',
+ 'suspend_sale' => 'Suspender',
+ 'suspended_doc_id' => 'Documento',
+ 'suspended_sale_id' => 'Id',
+ 'suspended_sales' => 'Suspendidas',
+ 'table' => 'Datos',
+ 'takings' => 'Ventas Diarias',
+ 'tax' => 'Imp',
+ 'tax_id' => 'Identificador del Impuesto',
+ 'tax_invoice' => 'Impuesto de la Factura',
+ 'tax_percent' => '% de Imp',
+ 'taxed_ind' => 'Ventas gravadas',
+ 'total' => 'Total',
+ 'total_tax_exclusive' => 'Sin impuesto',
+ 'transaction_failed' => 'La transacción de venta falló.',
+ 'unable_to_add_item' => 'Error al agregar artículo a la venta',
+ 'unsuccessfully_deleted' => 'Ha fallado la eliminación de la Venta.',
+ 'unsuccessfully_restored' => 'Restaurar Venta fallida.',
+ 'unsuccessfully_suspended_sale' => 'Venta suspendida satisfactoriamente.',
+ 'unsuccessfully_updated' => 'Ha fallado la actualización de la venta.',
+ 'unsuspend' => 'Retomar',
+ 'unsuspend_and_delete' => 'Retomar y Borrar',
+ 'update' => 'Editar',
+ 'upi' => 'PIN UPI',
+ 'visa' => 'Tarjeta Visa',
+ 'wallet' => 'Monedero',
+ 'wholesale' => 'Precio al por mayor',
+ 'work_order' => 'Orden trabajo',
+ 'work_order_number' => 'Numero Orden Trabajo',
+ 'work_order_number_duplicate' => 'El numero de orden de trabajo debe ser unico.',
+ 'work_order_sent' => 'Orden de trabajo enviada a',
+ 'work_order_unsent' => 'Orden de trabajo fallida al enviar a',
];
diff --git a/app/Language/es-MX/Config.php b/app/Language/es-MX/Config.php
index 42a6d9906..e3d34980f 100644
--- a/app/Language/es-MX/Config.php
+++ b/app/Language/es-MX/Config.php
@@ -1,332 +1,335 @@
"Dirección de la Empresa",
- "address_required" => "La Dirección de la Empresa es un campo requerido.",
- "all_set" => "Todos los permisos han sido establecidos correctamente!",
- "allow_duplicate_barcodes" => "Permitir Códigos de Barra Duplicados",
- "apostrophe" => "apostrofé",
- "backup_button" => "Respaldar",
- "backup_database" => "Respaldar Base de Datos",
- "barcode" => "Código de Barras",
- "barcode_company" => "Nombre de la Empresa",
- "barcode_configuration" => "Configuración del Código de Barras",
- "barcode_content" => "Contenido del Código de Barras",
- "barcode_first_row" => "Fila 1",
- "barcode_font" => "Tipo de Letra",
- "barcode_formats" => "Formatos de Entrada",
- "barcode_generate_if_empty" => "Generar si está vacío.",
- "barcode_height" => "Alto (px)",
- "barcode_id" => "Id Artículo/Nombre",
- "barcode_info" => "Información de Configuración para Códigos de Barras",
- "barcode_layout" => "Formato Código de Barras",
- "barcode_name" => "Nombre",
- "barcode_number" => "Código de Barras",
- "barcode_number_in_row" => "Número en renglón",
- "barcode_page_cellspacing" => "Mostrar espaciado de celda de la página.",
- "barcode_page_width" => "Ancho de página",
- "barcode_price" => "Precio",
- "barcode_second_row" => "Renglón 2",
- "barcode_third_row" => "Renglón 3",
- "barcode_tooltip" => "Advertencia: Esta función puede hacer que se importen o creen elementos duplicados. No lo use si no desea códigos de barras duplicados.",
- "barcode_type" => "Tipo de código de barras",
- "barcode_width" => "Ancho (px)",
- "bottom" => "Final",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "decimales en efectivo",
- "cash_decimals_tooltip" => "Si los decimales son iguales entonces no tendrá redondeo.",
- "cash_rounding" => "Redondeo de efectivo",
- "category_dropdown" => "Mostrar categoría como un menú desplegable",
- "center" => "Centro",
- "change_apperance_tooltip" => "",
- "comma" => "coma",
- "company" => "Nombre de la Compañía",
- "company_avatar" => "",
- "company_change_image" => "Cambiar Imagen",
- "company_logo" => "Logo de la Compañía",
- "company_remove_image" => "Eliminar Imagen",
- "company_required" => "Nombre de la compañia es un campo requerido",
- "company_select_image" => "Seleccionar Imagen",
- "company_website_url" => "Website de la compañía no es una URL valida (http://...).",
- "country_codes" => "Códigos de Países",
- "country_codes_tooltip" => "Lista separada por comas de códigos de países para la búsqueda de direcciones nominatim.",
- "currency_code" => "código de moneda",
- "currency_decimals" => "Decimales de moneda",
- "currency_symbol" => "Símbolo de moneda",
- "current_employee_only" => "",
- "customer_reward" => "Recompensa",
- "customer_reward_duplicate" => "Recompensa debe ser única.",
- "customer_reward_enable" => "Habilita recompensas para los clientes",
- "customer_reward_invalid_chars" => "Recompensa no debe tener '_'",
- "customer_reward_required" => "Recompensa es un campo requerido",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "Filtro Fecha y Hora",
- "datetimeformat" => "Formato de Fecha y Hora",
- "decimal_point" => "Punto Decimal",
- "default_barcode_font_size_number" => "El tamaño de fuente del código de barras predeterminado debe ser un número.",
- "default_barcode_font_size_required" => "El tamaño de fuente predeterminado del código de barras es un campo obligatorio.",
- "default_barcode_height_number" => "La altura predeterminada del código de barras debe ser un número.",
- "default_barcode_height_required" => "La altura predeterminada del código de barras es un campo obligatorio.",
- "default_barcode_num_in_row_number" => "El número de código de barras predeterminado en la fila debe ser un número.",
- "default_barcode_num_in_row_required" => "El número de código de barras predeterminado en la fila es un campo obligatorio.",
- "default_barcode_page_cellspacing_number" => "El espacio entre celdas predeterminado de la página de código de barras debe ser un número.",
- "default_barcode_page_cellspacing_required" => "El espaciado entre celdas de página de código de barras predeterminado es un campo obligatorio.",
- "default_barcode_page_width_number" => "La anchura del código de barras debe ser un número.",
- "default_barcode_page_width_required" => "El ancho predeterminado del código de barras es un campo obligatorio.",
- "default_barcode_width_number" => "El Ancho del código de barra debe ser un número.",
- "default_barcode_width_required" => "El ancho predeterminado del código de barras es un campo obligatorio.",
- "default_item_columns" => "Número de artículos por columna predeterminado",
- "default_origin_tax_code" => "Código de Impuesto predeterminado",
- "default_receivings_discount" => "Descuentos de recibos predeterminados",
- "default_receivings_discount_number" => "Descuentos de recibos deben ser números.",
- "default_receivings_discount_required" => "Descuentos de recibos es un campo requerido.",
- "default_sales_discount" => "% Descuentos en ventas",
- "default_sales_discount_number" => "El descuento predeterminado debe ser un número.",
- "default_sales_discount_required" => "Descuento de Ventas por Defecto es un campo requerido.",
- "default_tax_category" => "Categoría de Impuesto Predeterminada",
- "default_tax_code" => "Código de Impuesto Predeterminado",
- "default_tax_jurisdiction" => "Jurisdicción de Impuesto Predeterminada",
- "default_tax_name_number" => "Nombre de Impuesto Predeterminado debe ser una cadena de texto.",
- "default_tax_name_required" => "Nombre de Impuesto Predeterminado es un campo requerido.",
- "default_tax_rate" => "Tasa impositiva predeterminada %",
- "default_tax_rate_1" => "Tasa de Impuestos 1",
- "default_tax_rate_2" => "Tasa de Impuestos 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "La tasa impositiva predeterminada debe ser un número.",
- "default_tax_rate_required" => "Tasa de impuestos predeterminada es un campo obligatorio.",
- "derive_sale_quantity" => "Permitir cantidad de venta derivada",
- "derive_sale_quantity_tooltip" => "Si se marca, se proporcionará un nuevo tipo de artículo para los artículos pedidos por cantidad extendida",
- "dinner_table" => "Mesa",
- "dinner_table_duplicate" => "La tabla debe ser única.",
- "dinner_table_enable" => "Habilitar Mesa de Alimentos",
- "dinner_table_invalid_chars" => "El nombre de la tabla no puede llevar '_'.",
- "dinner_table_required" => "Tabla es requerida.",
- "dot" => "punto(.)",
- "email" => "Email",
- "email_configuration" => "Configuración Email",
- "email_mailpath" => "Ruta a Sendmail",
- "email_protocol" => "Protocolo",
- "email_receipt_check_behaviour" => "Email Receipt checkbox",
- "email_receipt_check_behaviour_always" => "Siempre selecionado",
- "email_receipt_check_behaviour_last" => "Recuerda la última selección",
- "email_receipt_check_behaviour_never" => "Núnca seleccionado",
- "email_smtp_crypto" => "Encriptación SMTP",
- "email_smtp_host" => "Servidor SMTP",
- "email_smtp_pass" => "Contraseña del Servidor SMTP",
- "email_smtp_port" => "Puerto del Servidor SMTP",
- "email_smtp_timeout" => "Expiró Tiempo de Espera del Servidor SMTP",
- "email_smtp_user" => "Nombre de Usuario del Servidor SMTP",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Enforce privacy",
- "enforce_privacy_tooltip" => "Protect Customers privacy enforcing data scrambling in case of their data being deleted",
- "fax" => "Fax",
- "file_perm" => "Hay problemas con los permisos de archivo, por favor corríjalos y recargue esta página.",
- "financial_year" => "Inicio del Año Fiscal",
- "financial_year_apr" => "1.º de Abril",
- "financial_year_aug" => "1.º de Agosto",
- "financial_year_dec" => "1.º de Diciembre",
- "financial_year_feb" => "1.º de Febrero",
- "financial_year_jan" => "1.º de Enero",
- "financial_year_jul" => "1.º de Julio",
- "financial_year_jun" => "1.º de Junio",
- "financial_year_mar" => "1.º de Marzo",
- "financial_year_may" => "1.º de Mayo",
- "financial_year_nov" => "1.º de Noviembre",
- "financial_year_oct" => "1.º de Octubre",
- "financial_year_sep" => "1º. de Septiembre",
- "floating_labels" => "Etiquetas Flotantes",
- "gcaptcha_enable" => "reCAPTCHA de Página de Ingreso",
- "gcaptcha_secret_key" => "reCAPTCHA Secret Key",
- "gcaptcha_secret_key_required" => "reCAPTCHA Llave Secreta es un campo requerido",
- "gcaptcha_site_key" => "reCAPTCHA Site Key",
- "gcaptcha_site_key_required" => "reCAPTCHA Site Key is a required field",
- "gcaptcha_tooltip" => "Protect the Login page with Google reCAPTCHA, click the icon for an API key pair.",
- "general" => "General",
- "general_configuration" => "General Configuration",
- "giftcard_number" => "Gift Card Number",
- "giftcard_random" => "Generate Random",
- "giftcard_series" => "Generate in Series",
- "image_allowed_file_types" => "Tipo de archivos permitidos",
- "image_max_height_tooltip" => "Altura máxima permitida de imágenes en píxeles (px).",
- "image_max_size_tooltip" => "Tamaño máximo permitido de archivo de imágenes en kilobytes (kb).",
- "image_max_width_tooltip" => "Ancho máximo permitido para imágenes en píxeles (px).",
- "image_restrictions" => "Restricciones de carga de imágenes",
- "include_hsn" => "Include Support for HSN Codes",
- "info" => "Information",
- "info_configuration" => "Store Information",
- "input_groups" => "Grupos de Entrada",
- "integrations" => "Integraciones",
- "integrations_configuration" => "Integraciones Externas",
- "invoice" => "Invoice",
- "invoice_configuration" => "Invoice Print Settings",
- "invoice_default_comments" => "Default Invoice Comments",
- "invoice_email_message" => "Invoice Email Template",
- "invoice_enable" => "Enable Invoicing",
- "invoice_printer" => "Invoice Printer",
- "invoice_type" => "Invoice Type",
- "is_readable" => "es legible, pero los permisos están configurados incorrectamente. Configúrelo en 640 o 660 y actualice.",
- "is_writable" => "se puede escribir, pero los permisos están configurados incorrectamente. Configúrelo en 750 y actualice.",
- "item_markup" => "",
- "jsprintsetup_required" => "Warning: This functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?",
- "language" => "Language",
- "last_used_invoice_number" => "Last used Invoice Number",
- "last_used_quote_number" => "Last used Quote Number",
- "last_used_work_order_number" => "Last used W/O Number",
- "left" => "Left",
- "license" => "License",
- "license_configuration" => "License Statement",
- "line_sequence" => "Line Sequence",
- "lines_per_page" => "Lines per Page",
- "lines_per_page_number" => "Lines per Page must be a number.",
- "lines_per_page_required" => "Lines per Page is a required field.",
- "locale" => "Localization",
- "locale_configuration" => "Localization Configuration",
- "locale_info" => "Localization Configuration Information",
- "location" => "Stock",
- "location_configuration" => "Stock Locations",
- "location_info" => "Location Configuration Information",
- "login_form" => "Estilo de formulario de inicio de sesión",
- "logout" => "Do you want to make a backup before logging out? Click [OK] to backup or [Cancel] to logout.",
- "mailchimp" => "Mailchimp",
- "mailchimp_api_key" => "Mailchimp Clave API",
- "mailchimp_configuration" => "Configuración de MailChimp",
- "mailchimp_key_successfully" => "API Key is valid.",
- "mailchimp_key_unsuccessfully" => "API Key is invalid.",
- "mailchimp_lists" => "Lista (s) de MailChimp",
- "mailchimp_tooltip" => "Click the icon for an API Key.",
- "message" => "Message",
- "message_configuration" => "Message Configuration",
- "msg_msg" => "Saved Text Message",
- "msg_msg_placeholder" => "If you wish to use a SMS template save your message here, otherwise leave the box blank.",
- "msg_pwd" => "SMS-API Password",
- "msg_pwd_required" => "SMS-API Password is a required field",
- "msg_src" => "SMS-API Sender ID",
- "msg_src_required" => "SMS-API Sender ID is a required field",
- "msg_uid" => "SMS-API Username",
- "msg_uid_required" => "SMS-API Username is a required field",
- "multi_pack_enabled" => "Multiple Packages per Item",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "none",
- "notify_alignment" => "Notification Popup Position",
- "number_format" => "Number Format",
- "number_locale" => "Localization",
- "number_locale_invalid" => "The entered locale is invalid. Check the link in the tooltip to find a valid locale.",
- "number_locale_required" => "Number Locale is a required field.",
- "number_locale_tooltip" => "Find a suitable locale through this link.",
- "os_timezone" => "Zona horaria OSPOS:",
- "ospos_info" => "Información de instalación OSPOS",
- "payment_options_order" => "Payment Options Order",
- "perm_risk" => "Los permisos incorrectos ponen en riesgo este software.",
- "phone" => "Company Phone",
- "phone_required" => "Company Phone is a required field.",
- "print_bottom_margin" => "Margin Bottom",
- "print_bottom_margin_number" => "Margin Bottom must be a number.",
- "print_bottom_margin_required" => "Margin Bottom is a required field.",
- "print_delay_autoreturn" => "Autoreturn to Sale delay",
- "print_delay_autoreturn_number" => "Autoreturn to Sale delay is a required field.",
- "print_delay_autoreturn_required" => "Autoreturn to Sale delay must be a number.",
- "print_footer" => "Print Browser Footer",
- "print_header" => "Print Browser Header",
- "print_left_margin" => "Margin Left",
- "print_left_margin_number" => "Margin Left must be a number.",
- "print_left_margin_required" => "Margin Left is a required field.",
- "print_receipt_check_behaviour" => "Print Receipt checkbox",
- "print_receipt_check_behaviour_always" => "Always checked",
- "print_receipt_check_behaviour_last" => "Remember last selection",
- "print_receipt_check_behaviour_never" => "Always unchecked",
- "print_right_margin" => "Margin Right",
- "print_right_margin_number" => "Margin Right must be a number.",
- "print_right_margin_required" => "Margin Right is a required field.",
- "print_silently" => "Show Print Dialog",
- "print_top_margin" => "Margin Top",
- "print_top_margin_number" => "Margin Top must be a number.",
- "print_top_margin_required" => "Margin Top is a required field.",
- "quantity_decimals" => "Quantity Decimals",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Default Quote Comments",
- "receipt" => "Receipt",
- "receipt_category" => "",
- "receipt_configuration" => "Receipt Print Settings",
- "receipt_default" => "Default",
- "receipt_font_size" => "Font Size",
- "receipt_font_size_number" => "Font Size must be a number.",
- "receipt_font_size_required" => "Font Size is a required field.",
- "receipt_info" => "Receipt Configuration Information",
- "receipt_printer" => "Ticket Printer",
- "receipt_short" => "Short",
- "receipt_show_company_name" => "Show Company Name",
- "receipt_show_description" => "Show Description",
- "receipt_show_serialnumber" => "Show Serial Number",
- "receipt_show_tax_ind" => "Mostrar indicador de impuestos",
- "receipt_show_taxes" => "Show Taxes",
- "receipt_show_total_discount" => "Show Total Discount",
- "receipt_template" => "Receipt Template",
- "receiving_calculate_average_price" => "Calcular promedio, Precio (Recepción)",
- "recv_invoice_format" => "Receivings Invoice Format",
- "register_mode_default" => "Default Register Mode",
- "report_an_issue" => "Reportar un problema",
- "return_policy_required" => "Return policy is a required field.",
- "reward" => "Reward",
- "reward_configuration" => "Reward Configuration",
- "right" => "Right",
- "sales_invoice_format" => "Sales Invoice Format",
- "sales_quote_format" => "Sales Quote Format",
- "mailpath_invalid" => "Ruta de sendmail inválida. Solo se permiten letras, números, guiones, guiones bajos, barras y puntos.",
- "saved_successfully" => "Configuration save successful.",
- "saved_unsuccessfully" => "Configuration save failed.",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "Please use the below info for issue reporting.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Show office icon",
- "statistics" => "Send Statistics",
- "statistics_tooltip" => "Send statistics for development and feature improvement purposes.",
- "stock_location" => "Ubicación del inventario",
- "stock_location_duplicate" => "Stock Location must be unique.",
- "stock_location_invalid_chars" => "Stock Location can not contain '_'.",
- "stock_location_required" => "Stock location is a required field.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Column 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Search Suggestions Layout",
- "suggestions_second_column" => "Column 2",
- "suggestions_third_column" => "Column 3",
- "system_conf" => "Setup & Conf",
- "system_info" => "System Info",
- "table" => "Table",
- "table_configuration" => "Table Configuration",
- "takings_printer" => "Receipt Printer",
- "tax" => "Tax",
- "tax_category" => "Tax Category",
- "tax_category_duplicate" => "The entered tax category already exists.",
- "tax_category_invalid_chars" => "The entered tax category is invalid.",
- "tax_category_required" => "The tax category is required.",
- "tax_category_used" => "Tax category cannot be deleted because it is being used.",
- "tax_configuration" => "Tax Configuration",
- "tax_decimals" => "Tax Decimals",
- "tax_id" => "Tax Id",
- "tax_included" => "Tax Included",
- "theme" => "Theme",
- "theme_preview" => "Vista Previa del Tema:",
- "thousands_separator" => "Thousands Separator",
- "timezone" => "Timezone",
- "timezone_error" => "La zona horaria de OSPOS es diferente a su zona horaria local.",
- "top" => "Top",
- "use_destination_based_tax" => "Use Destination Based Tax",
- "user_timezone" => "Zona horaria local:",
- "website" => "Website",
- "wholesale_markup" => "",
- "work_order_enable" => "Work Order Support",
- "work_order_format" => "Work Order Format",
+ 'address' => 'Dirección de la Empresa',
+ 'address_required' => 'La Dirección de la Empresa es un campo requerido.',
+ 'all_set' => 'Todos los permisos han sido establecidos correctamente!',
+ 'allow_duplicate_barcodes' => 'Permitir Códigos de Barra Duplicados',
+ 'apostrophe' => 'apostrofé',
+ 'backup_button' => 'Respaldar',
+ 'backup_database' => 'Respaldar Base de Datos',
+ 'barcode' => 'Código de Barras',
+ 'barcode_company' => 'Nombre de la Empresa',
+ 'barcode_configuration' => 'Configuración del Código de Barras',
+ 'barcode_content' => 'Contenido del Código de Barras',
+ 'barcode_first_row' => 'Fila 1',
+ 'barcode_font' => 'Tipo de Letra',
+ 'barcode_formats' => 'Formatos de Entrada',
+ 'barcode_generate_if_empty' => 'Generar si está vacío.',
+ 'barcode_height' => 'Alto (px)',
+ 'barcode_id' => 'Id Artículo/Nombre',
+ 'barcode_info' => 'Información de Configuración para Códigos de Barras',
+ 'barcode_layout' => 'Formato Código de Barras',
+ 'barcode_name' => 'Nombre',
+ 'barcode_number' => 'Código de Barras',
+ 'barcode_number_in_row' => 'Número en renglón',
+ 'barcode_page_cellspacing' => 'Mostrar espaciado de celda de la página.',
+ 'barcode_page_width' => 'Ancho de página',
+ 'barcode_price' => 'Precio',
+ 'barcode_second_row' => 'Renglón 2',
+ 'barcode_third_row' => 'Renglón 3',
+ 'barcode_tooltip' => 'Advertencia: Esta función puede hacer que se importen o creen elementos duplicados. No lo use si no desea códigos de barras duplicados.',
+ 'barcode_type' => 'Tipo de código de barras',
+ 'barcode_width' => 'Ancho (px)',
+ 'bottom' => 'Final',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'decimales en efectivo',
+ 'cash_decimals_tooltip' => 'Si los decimales son iguales entonces no tendrá redondeo.',
+ 'cash_rounding' => 'Redondeo de efectivo',
+ 'category_dropdown' => 'Mostrar categoría como un menú desplegable',
+ 'center' => 'Centro',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'coma',
+ 'company' => 'Nombre de la Compañía',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Cambiar Imagen',
+ 'company_logo' => 'Logo de la Compañía',
+ 'company_remove_image' => 'Eliminar Imagen',
+ 'company_required' => 'Nombre de la compañia es un campo requerido',
+ 'company_select_image' => 'Seleccionar Imagen',
+ 'company_website_url' => 'Website de la compañía no es una URL valida (http://...).',
+ 'country_codes' => 'Códigos de Países',
+ 'country_codes_tooltip' => 'Lista separada por comas de códigos de países para la búsqueda de direcciones nominatim.',
+ 'currency_code' => 'código de moneda',
+ 'currency_decimals' => 'Decimales de moneda',
+ 'currency_symbol' => 'Símbolo de moneda',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Recompensa',
+ 'customer_reward_duplicate' => 'Recompensa debe ser única.',
+ 'customer_reward_enable' => 'Habilita recompensas para los clientes',
+ 'customer_reward_invalid_chars' => "Recompensa no debe tener '_'",
+ 'customer_reward_required' => 'Recompensa es un campo requerido',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => 'Filtro Fecha y Hora',
+ 'datetimeformat' => 'Formato de Fecha y Hora',
+ 'decimal_point' => 'Punto Decimal',
+ 'default_barcode_font_size_number' => 'El tamaño de fuente del código de barras predeterminado debe ser un número.',
+ 'default_barcode_font_size_required' => 'El tamaño de fuente predeterminado del código de barras es un campo obligatorio.',
+ 'default_barcode_height_number' => 'La altura predeterminada del código de barras debe ser un número.',
+ 'default_barcode_height_required' => 'La altura predeterminada del código de barras es un campo obligatorio.',
+ 'default_barcode_num_in_row_number' => 'El número de código de barras predeterminado en la fila debe ser un número.',
+ 'default_barcode_num_in_row_required' => 'El número de código de barras predeterminado en la fila es un campo obligatorio.',
+ 'default_barcode_page_cellspacing_number' => 'El espacio entre celdas predeterminado de la página de código de barras debe ser un número.',
+ 'default_barcode_page_cellspacing_required' => 'El espaciado entre celdas de página de código de barras predeterminado es un campo obligatorio.',
+ 'default_barcode_page_width_number' => 'La anchura del código de barras debe ser un número.',
+ 'default_barcode_page_width_required' => 'El ancho predeterminado del código de barras es un campo obligatorio.',
+ 'default_barcode_width_number' => 'El Ancho del código de barra debe ser un número.',
+ 'default_barcode_width_required' => 'El ancho predeterminado del código de barras es un campo obligatorio.',
+ 'default_item_columns' => 'Número de artículos por columna predeterminado',
+ 'default_origin_tax_code' => 'Código de Impuesto predeterminado',
+ 'default_receivings_discount' => 'Descuentos de recibos predeterminados',
+ 'default_receivings_discount_number' => 'Descuentos de recibos deben ser números.',
+ 'default_receivings_discount_required' => 'Descuentos de recibos es un campo requerido.',
+ 'default_sales_discount' => '% Descuentos en ventas',
+ 'default_sales_discount_number' => 'El descuento predeterminado debe ser un número.',
+ 'default_sales_discount_required' => 'Descuento de Ventas por Defecto es un campo requerido.',
+ 'default_tax_category' => 'Categoría de Impuesto Predeterminada',
+ 'default_tax_code' => 'Código de Impuesto Predeterminado',
+ 'default_tax_jurisdiction' => 'Jurisdicción de Impuesto Predeterminada',
+ 'default_tax_name_number' => 'Nombre de Impuesto Predeterminado debe ser una cadena de texto.',
+ 'default_tax_name_required' => 'Nombre de Impuesto Predeterminado es un campo requerido.',
+ 'default_tax_rate' => 'Tasa impositiva predeterminada %',
+ 'default_tax_rate_1' => 'Tasa de Impuestos 1',
+ 'default_tax_rate_2' => 'Tasa de Impuestos 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'La tasa impositiva predeterminada debe ser un número.',
+ 'default_tax_rate_required' => 'Tasa de impuestos predeterminada es un campo obligatorio.',
+ 'derive_sale_quantity' => 'Permitir cantidad de venta derivada',
+ 'derive_sale_quantity_tooltip' => 'Si se marca, se proporcionará un nuevo tipo de artículo para los artículos pedidos por cantidad extendida',
+ 'dinner_table' => 'Mesa',
+ 'dinner_table_duplicate' => 'La tabla debe ser única.',
+ 'dinner_table_enable' => 'Habilitar Mesa de Alimentos',
+ 'dinner_table_invalid_chars' => "El nombre de la tabla no puede llevar '_'.",
+ 'dinner_table_required' => 'Tabla es requerida.',
+ 'dot' => 'punto(.)',
+ 'email' => 'Email',
+ 'email_configuration' => 'Configuración Email',
+ 'email_mailpath' => 'Ruta a Sendmail',
+ 'email_protocol' => 'Protocolo',
+ 'email_receipt_check_behaviour' => 'Email Receipt checkbox',
+ 'email_receipt_check_behaviour_always' => 'Siempre selecionado',
+ 'email_receipt_check_behaviour_last' => 'Recuerda la última selección',
+ 'email_receipt_check_behaviour_never' => 'Núnca seleccionado',
+ 'email_smtp_crypto' => 'Encriptación SMTP',
+ 'email_smtp_host' => 'Servidor SMTP',
+ 'email_smtp_pass' => 'Contraseña del Servidor SMTP',
+ 'email_smtp_port' => 'Puerto del Servidor SMTP',
+ 'email_smtp_timeout' => 'Expiró Tiempo de Espera del Servidor SMTP',
+ 'email_smtp_user' => 'Nombre de Usuario del Servidor SMTP',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Enforce privacy',
+ 'enforce_privacy_tooltip' => 'Protect Customers privacy enforcing data scrambling in case of their data being deleted',
+ 'fax' => 'Fax',
+ 'file_perm' => 'Hay problemas con los permisos de archivo, por favor corríjalos y recargue esta página.',
+ 'financial_year' => 'Inicio del Año Fiscal',
+ 'financial_year_apr' => '1.º de Abril',
+ 'financial_year_aug' => '1.º de Agosto',
+ 'financial_year_dec' => '1.º de Diciembre',
+ 'financial_year_feb' => '1.º de Febrero',
+ 'financial_year_jan' => '1.º de Enero',
+ 'financial_year_jul' => '1.º de Julio',
+ 'financial_year_jun' => '1.º de Junio',
+ 'financial_year_mar' => '1.º de Marzo',
+ 'financial_year_may' => '1.º de Mayo',
+ 'financial_year_nov' => '1.º de Noviembre',
+ 'financial_year_oct' => '1.º de Octubre',
+ 'financial_year_sep' => '1º. de Septiembre',
+ 'floating_labels' => 'Etiquetas Flotantes',
+ 'gcaptcha_enable' => 'reCAPTCHA de Página de Ingreso',
+ 'gcaptcha_secret_key' => 'reCAPTCHA Secret Key',
+ 'gcaptcha_secret_key_required' => 'reCAPTCHA Llave Secreta es un campo requerido',
+ 'gcaptcha_site_key' => 'reCAPTCHA Site Key',
+ 'gcaptcha_site_key_required' => 'reCAPTCHA Site Key is a required field',
+ 'gcaptcha_tooltip' => 'Protect the Login page with Google reCAPTCHA, click the icon for an API key pair.',
+ 'general' => 'General',
+ 'general_configuration' => 'General Configuration',
+ 'giftcard_number' => 'Gift Card Number',
+ 'giftcard_random' => 'Generate Random',
+ 'giftcard_series' => 'Generate in Series',
+ 'image_allowed_file_types' => 'Tipo de archivos permitidos',
+ 'image_max_height_tooltip' => 'Altura máxima permitida de imágenes en píxeles (px).',
+ 'image_max_size_tooltip' => 'Tamaño máximo permitido de archivo de imágenes en kilobytes (kb).',
+ 'image_max_width_tooltip' => 'Ancho máximo permitido para imágenes en píxeles (px).',
+ 'image_restrictions' => 'Restricciones de carga de imágenes',
+ 'include_hsn' => 'Include Support for HSN Codes',
+ 'info' => 'Information',
+ 'info_configuration' => 'Store Information',
+ 'input_groups' => 'Grupos de Entrada',
+ 'integrations' => 'Integraciones',
+ 'integrations_configuration' => 'Integraciones Externas',
+ 'invoice' => 'Invoice',
+ 'invoice_configuration' => 'Invoice Print Settings',
+ 'invoice_default_comments' => 'Default Invoice Comments',
+ 'invoice_email_message' => 'Invoice Email Template',
+ 'invoice_enable' => 'Enable Invoicing',
+ 'invoice_printer' => 'Invoice Printer',
+ 'invoice_type' => 'Invoice Type',
+ 'is_readable' => 'es legible, pero los permisos están configurados incorrectamente. Configúrelo en 640 o 660 y actualice.',
+ 'is_writable' => 'se puede escribir, pero los permisos están configurados incorrectamente. Configúrelo en 750 y actualice.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Warning: This functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?',
+ 'language' => 'Language',
+ 'last_used_invoice_number' => 'Last used Invoice Number',
+ 'last_used_quote_number' => 'Last used Quote Number',
+ 'last_used_work_order_number' => 'Last used W/O Number',
+ 'left' => 'Left',
+ 'license' => 'License',
+ 'license_configuration' => 'License Statement',
+ 'line_sequence' => 'Line Sequence',
+ 'lines_per_page' => 'Lines per Page',
+ 'lines_per_page_number' => 'Lines per Page must be a number.',
+ 'lines_per_page_required' => 'Lines per Page is a required field.',
+ 'locale' => 'Localization',
+ 'locale_configuration' => 'Localization Configuration',
+ 'locale_info' => 'Localization Configuration Information',
+ 'location' => 'Stock',
+ 'location_configuration' => 'Stock Locations',
+ 'location_info' => 'Location Configuration Information',
+ 'login_form' => 'Estilo de formulario de inicio de sesión',
+ 'logout' => 'Do you want to make a backup before logging out? Click [OK] to backup or [Cancel] to logout.',
+ 'mailchimp' => 'Mailchimp',
+ 'mailchimp_api_key' => 'Mailchimp Clave API',
+ 'mailchimp_configuration' => 'Configuración de MailChimp',
+ 'mailchimp_key_successfully' => 'API Key is valid.',
+ 'mailchimp_key_unsuccessfully' => 'API Key is invalid.',
+ 'mailchimp_lists' => 'Lista (s) de MailChimp',
+ 'mailchimp_tooltip' => 'Click the icon for an API Key.',
+ 'message' => 'Message',
+ 'message_configuration' => 'Message Configuration',
+ 'msg_msg' => 'Saved Text Message',
+ 'msg_msg_placeholder' => 'If you wish to use a SMS template save your message here, otherwise leave the box blank.',
+ 'msg_pwd' => 'SMS-API Password',
+ 'msg_pwd_required' => 'SMS-API Password is a required field',
+ 'msg_src' => 'SMS-API Sender ID',
+ 'msg_src_required' => 'SMS-API Sender ID is a required field',
+ 'msg_uid' => 'SMS-API Username',
+ 'msg_uid_required' => 'SMS-API Username is a required field',
+ 'multi_pack_enabled' => 'Multiple Packages per Item',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => 'none',
+ 'notify_alignment' => 'Notification Popup Position',
+ 'number_format' => 'Number Format',
+ 'number_locale' => 'Localization',
+ 'number_locale_invalid' => 'The entered locale is invalid. Check the link in the tooltip to find a valid locale.',
+ 'number_locale_required' => 'Number Locale is a required field.',
+ 'number_locale_tooltip' => 'Find a suitable locale through this link.',
+ 'os_timezone' => 'Zona horaria OSPOS:',
+ 'ospos_info' => 'Información de instalación OSPOS',
+ 'payment_options_order' => 'Payment Options Order',
+ 'payment_reference_code_length_limits' => 'Código de referencia de pago
Límites de longitud',
+ 'payment_reference_code_length_max_label' => 'Máx',
+ 'payment_reference_code_length_min_label' => 'Mín',
+ 'perm_risk' => 'Los permisos incorrectos ponen en riesgo este software.',
+ 'phone' => 'Company Phone',
+ 'phone_required' => 'Company Phone is a required field.',
+ 'print_bottom_margin' => 'Margin Bottom',
+ 'print_bottom_margin_number' => 'Margin Bottom must be a number.',
+ 'print_bottom_margin_required' => 'Margin Bottom is a required field.',
+ 'print_delay_autoreturn' => 'Autoreturn to Sale delay',
+ 'print_delay_autoreturn_number' => 'Autoreturn to Sale delay is a required field.',
+ 'print_delay_autoreturn_required' => 'Autoreturn to Sale delay must be a number.',
+ 'print_footer' => 'Print Browser Footer',
+ 'print_header' => 'Print Browser Header',
+ 'print_left_margin' => 'Margin Left',
+ 'print_left_margin_number' => 'Margin Left must be a number.',
+ 'print_left_margin_required' => 'Margin Left is a required field.',
+ 'print_receipt_check_behaviour' => 'Print Receipt checkbox',
+ 'print_receipt_check_behaviour_always' => 'Always checked',
+ 'print_receipt_check_behaviour_last' => 'Remember last selection',
+ 'print_receipt_check_behaviour_never' => 'Always unchecked',
+ 'print_right_margin' => 'Margin Right',
+ 'print_right_margin_number' => 'Margin Right must be a number.',
+ 'print_right_margin_required' => 'Margin Right is a required field.',
+ 'print_silently' => 'Show Print Dialog',
+ 'print_top_margin' => 'Margin Top',
+ 'print_top_margin_number' => 'Margin Top must be a number.',
+ 'print_top_margin_required' => 'Margin Top is a required field.',
+ 'quantity_decimals' => 'Quantity Decimals',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Default Quote Comments',
+ 'receipt' => 'Receipt',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Receipt Print Settings',
+ 'receipt_default' => 'Default',
+ 'receipt_font_size' => 'Font Size',
+ 'receipt_font_size_number' => 'Font Size must be a number.',
+ 'receipt_font_size_required' => 'Font Size is a required field.',
+ 'receipt_info' => 'Receipt Configuration Information',
+ 'receipt_printer' => 'Ticket Printer',
+ 'receipt_short' => 'Short',
+ 'receipt_show_company_name' => 'Show Company Name',
+ 'receipt_show_description' => 'Show Description',
+ 'receipt_show_serialnumber' => 'Show Serial Number',
+ 'receipt_show_tax_ind' => 'Mostrar indicador de impuestos',
+ 'receipt_show_taxes' => 'Show Taxes',
+ 'receipt_show_total_discount' => 'Show Total Discount',
+ 'receipt_template' => 'Receipt Template',
+ 'receiving_calculate_average_price' => 'Calcular promedio, Precio (Recepción)',
+ 'recv_invoice_format' => 'Receivings Invoice Format',
+ 'register_mode_default' => 'Default Register Mode',
+ 'report_an_issue' => 'Reportar un problema',
+ 'return_policy_required' => 'Return policy is a required field.',
+ 'reward' => 'Reward',
+ 'reward_configuration' => 'Reward Configuration',
+ 'right' => 'Right',
+ 'sales_invoice_format' => 'Sales Invoice Format',
+ 'sales_quote_format' => 'Sales Quote Format',
+ 'mailpath_invalid' => 'Ruta de sendmail inválida. Solo se permiten letras, números, guiones, guiones bajos, barras y puntos.',
+ 'saved_successfully' => 'Configuration save successful.',
+ 'saved_unsuccessfully' => 'Configuration save failed.',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Please use the below info for issue reporting.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Show office icon',
+ 'statistics' => 'Send Statistics',
+ 'statistics_tooltip' => 'Send statistics for development and feature improvement purposes.',
+ 'stock_location' => 'Ubicación del inventario',
+ 'stock_location_duplicate' => 'Stock Location must be unique.',
+ 'stock_location_invalid_chars' => "Stock Location can not contain '_'.",
+ 'stock_location_required' => 'Stock location is a required field.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Column 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Search Suggestions Layout',
+ 'suggestions_second_column' => 'Column 2',
+ 'suggestions_third_column' => 'Column 3',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => 'Table',
+ 'table_configuration' => 'Table Configuration',
+ 'takings_printer' => 'Receipt Printer',
+ 'tax' => 'Tax',
+ 'tax_category' => 'Tax Category',
+ 'tax_category_duplicate' => 'The entered tax category already exists.',
+ 'tax_category_invalid_chars' => 'The entered tax category is invalid.',
+ 'tax_category_required' => 'The tax category is required.',
+ 'tax_category_used' => 'Tax category cannot be deleted because it is being used.',
+ 'tax_configuration' => 'Tax Configuration',
+ 'tax_decimals' => 'Tax Decimals',
+ 'tax_id' => 'Tax Id',
+ 'tax_included' => 'Tax Included',
+ 'theme' => 'Theme',
+ 'theme_preview' => 'Vista Previa del Tema:',
+ 'thousands_separator' => 'Thousands Separator',
+ 'timezone' => 'Timezone',
+ 'timezone_error' => 'La zona horaria de OSPOS es diferente a su zona horaria local.',
+ 'top' => 'Top',
+ 'use_destination_based_tax' => 'Use Destination Based Tax',
+ 'user_timezone' => 'Zona horaria local:',
+ 'website' => 'Website',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Work Order Support',
+ 'work_order_format' => 'Work Order Format',
];
diff --git a/app/Language/es-MX/Login.php b/app/Language/es-MX/Login.php
index bdcac3a7d..941820097 100644
--- a/app/Language/es-MX/Login.php
+++ b/app/Language/es-MX/Login.php
@@ -1,25 +1,30 @@
"No soy un robot.",
- "go" => "Entrar",
- "invalid_gcaptcha" => "Por favor compruebe que usted no es un robot.",
- "invalid_installation" => "La instalacion no es correcta, revise el archivo php.ini.",
- "invalid_username_and_password" => "Usuario y/o Password Invalido.",
- "login" => "Login",
- "logout" => "Salir",
- "migration_needed" => "Una migración de base de datos a {0} empezara después de entrar.",
- "migration_required" => "Migración de base de datos requerida",
- "migration_auth_message" => "Se requieren credenciales de administrador para autorizar la migración de la base de datos a la versión {0}. Inicie sesión para continuar.",
- "migration_initializing" => "Inicializando base de datos",
- "migration_running" => "Ejecutando migraciones de base de datos...",
- "migration_complete" => "¡Base de datos inicializada correctamente!",
- "migration_complete_login" => "Ahora puede iniciar sesión.",
- "migration_failed" => "Migración fallida",
- "migration_error_connection" => "Error de conexión. Por favor, inténtelo de nuevo.",
- "migration_complete_redirect" => "Migración completada. Redirigiendo al inicio de sesión...",
- "password" => "Contraseña",
- "required_username" => "El nombre de usuario es obligatorio.",
- "username" => "Usuario",
- "welcome" => "Bienvenido a {0}!",
+ "gcaptcha" => "No soy un robot.",
+ "go" => "Entrar",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Por favor compruebe que usted no es un robot.",
+ "invalid_installation" => "La instalacion no es correcta, revise el archivo php.ini.",
+ "invalid_username_and_password" => "Usuario y/o Password Invalido.",
+ "login" => "Login",
+ "logout" => "Salir",
+ "migrating_database" => "Migrando base de datos",
+ "migration_auth_message" => "Se requieren credenciales de administrador para autorizar la migración de la base de datos a la versión {0}. Inicie sesión para continuar.",
+ "migration_complete" => "¡Base de datos inicializada correctamente!",
+ "migration_complete_login" => "Ahora puede iniciar sesión.",
+ "migration_complete_migrate" => "¡Base de datos migrada exitosamente!",
+ "migration_complete_redirect" => "Migración completada. Redirigiendo al inicio de sesión...",
+ "migration_error_connection" => "Error de conexión. Por favor, inténtelo de nuevo.",
+ "migration_failed" => "Migración fallida",
+ "migration_initializing" => "Inicializando base de datos",
+ "migration_needed" => "Una migración de base de datos a {0} empezara después de entrar.",
+ "migration_required" => "Migración de base de datos requerida",
+ "migration_running" => "Ejecutando migraciones de base de datos...",
+ "password" => "Contraseña",
+ "required_username" => "El nombre de usuario es obligatorio.",
+ "username" => "Usuario",
+ "welcome" => "Bienvenido a {0}!"
];
diff --git a/app/Language/es-MX/Sales.php b/app/Language/es-MX/Sales.php
index 151b22ad0..8d7805f30 100644
--- a/app/Language/es-MX/Sales.php
+++ b/app/Language/es-MX/Sales.php
@@ -1,233 +1,237 @@
"Puntos Disponibles",
- "rewards_package" => "Premios",
- "rewards_remaining_balance" => "Puntos de recompensa sobrante son: ",
- "account_number" => "Cuenta #",
- "add_payment" => "Agregar Pago",
- "amount_due" => "Monto de adeudo",
- "amount_tendered" => "Cantidad Recibida",
- "authorized_signature" => "Firma Autorizada",
- "bank_transfer" => "Transferencia Bancaria",
- "cancel_sale" => "Cancelar",
- "cash" => "Efectivo",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "Ajuste de efectivo",
- "cash_deposit" => "Deposito en Efectivo",
- "cash_filter" => "Efectivo",
- "change_due" => "Cambio",
- "change_price" => "Cambiar precio de venta",
- "check" => "Cheque",
- "check_balance" => "Balance de Cheque",
- "check_filter" => "Comprobar",
- "close" => "",
- "comment" => "Comentario",
- "comments" => "Comentarios",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Completar",
- "confirm_cancel_sale" => "¿Está seguro que desea limpiar la venta? Todos los artículos serán borrados.",
- "confirm_delete" => "¿Está seguro que desea borrar todas las ventas seleccionadas?",
- "confirm_restore" => "¿Está seguro de desear restaurar las ventas seleccionadas?",
- "credit" => "Tarjeta de Crédito",
- "credit_deposit" => "Deposito de crédito",
- "credit_filter" => "Tarjeta de crédito",
- "current_table" => "",
- "customer" => "Cliente",
- "customer_address" => "Dirección",
- "customer_discount" => "Descuento",
- "customer_email" => "Correo electrónico",
- "customer_location" => "Ubicación",
- "customer_mailchimp_status" => "Estado de MailChimp",
- "customer_optional" => "(Obligatorio para pagos vencidos)",
- "customer_required" => "(Obligatorio)",
- "customer_total" => "Total",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Fecha de venta",
- "date_range" => "Rango de fechas",
- "date_required" => "Ingresar una fecha correcta.",
- "date_type" => "La fecha es un campo requerido.",
- "debit" => "Tarjeta de débito",
- "debit_filter" => "",
- "delete" => "Permitir borrar",
- "delete_confirmation" => "¿Seguro(a) de querer borrar esta venta? Esta acción no se puede deshacer.",
- "delete_entire_sale" => "Eliminar la venta completa",
- "delete_successful" => "Venta borrada correctamente.",
- "delete_unsuccessful" => "Fallo al borrar la venta.",
- "description_abbrv" => "Descrip.",
- "discard" => "Descartar",
- "discard_quote" => "",
- "discount" => "Desc.",
- "discount_included" => "% Descuento",
- "discount_short" => "%",
- "due" => "Adeudo",
- "due_filter" => "Adeudo",
- "edit" => "Editar",
- "edit_item" => "Editar artículo",
- "edit_sale" => "Editar venta",
- "email_receipt" => "Enviar ticket",
- "employee" => "Empleado",
- "entry" => "Entrada",
- "error_editing_item" => "Error editando el artículo",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Buscar o escanear artículo",
- "find_or_scan_item_or_receipt" => "Buscar o escanear artículo o recibo",
- "giftcard" => "Tarjeta de regalo",
- "giftcard_balance" => "Balance de Tarjeta de Regalo",
- "giftcard_filter" => "",
- "giftcard_number" => "Número de Tarjeta de Regalo",
- "group_by_category" => "Grupo por Categoría",
- "group_by_type" => "Grupo por Tipo",
- "hsn" => "HSN",
- "id" => "ID de Venta",
- "include_prices" => "¿Incluir precios?",
- "invoice" => "Factura de venta",
- "invoice_confirm" => "Esta factura sera enviada a",
- "invoice_enable" => "Crear factura",
- "invoice_filter" => "Facturas",
- "invoice_no_email" => "Este cliente no tiene un correo electrónico válido.",
- "invoice_number" => "Factura #",
- "invoice_number_duplicate" => "Por favor ingrese un número de factura único.",
- "invoice_sent" => "Factura enviada a",
- "invoice_total" => "Total Facturado",
- "invoice_type_custom_invoice" => "Factura Personalizada (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Factura de Impuesto personalizada (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Factura",
- "invoice_type_tax_invoice" => "Factura de Impuestos",
- "invoice_unsent" => "Fallo el envio de la factura a",
- "invoice_update" => "Recuento",
- "item_insufficient_of_stock" => "Cantidad insuficiente en inventario.",
- "item_name" => "Nombre del Artículo",
- "item_number" => "Artículo #",
- "item_out_of_stock" => "El artículo está agotado.",
- "key_browser" => "Atajos Útiles",
- "key_cancel" => "Cancelar actual Cotización/Factura/Venta",
- "key_customer_search" => "Buscar Cliente",
- "key_finish_quote" => "Finalizar Cotización/Factura sin pago",
- "key_finish_sale" => "Agregar pago y Completar la Factura/Venta",
- "key_full" => "Abrir en modo Pantalla Completa",
- "key_function" => "Function",
- "key_help" => "Atajos",
- "key_help_modal" => "Abrir Ventana de Atajos",
- "key_in" => "Acercar",
- "key_item_search" => "Buscar Artículo",
- "key_out" => "Alejar",
- "key_payment" => "Agregar Pago",
- "key_print" => "Imprimir Página Actual",
- "key_restore" => "Restaurar Vista",
- "key_search" => "Buscar Tablas de Reporte",
- "key_suspend" => "Suspender Venta Actual",
- "key_suspended" => "Mostrar Ventas Suspendidas",
- "key_system" => "Atajos del Sistema",
- "key_tendered" => "Editar Importe Licitado",
- "key_title" => "Atajos de Teclado para Ventas",
- "mc" => "",
- "mode" => "Registrar Modo",
- "must_enter_numeric" => "Cantidad recibida debe ser un número.",
- "must_enter_numeric_giftcard" => "Número de Tarjeta de Regalo debe ser un número.",
- "new_customer" => "Cliente Nuevo",
- "new_item" => "Artículo Nuevo",
- "no_description" => "Sin descripción",
- "no_filter" => "Todos",
- "no_items_in_cart" => "No hay artículos en el carrito.",
- "no_sales_to_display" => "No hay ventas que mostrar.",
- "none_selected" => "No has seleccionado alguna venta para borrar.",
- "nontaxed_ind" => " ' ",
- "not_authorized" => "Esta acción no esta autorizada.",
- "one_or_multiple" => "Venta(s)",
- "payment" => "Tipo de pago",
- "payment_amount" => "Cantidad",
- "payment_not_cover_total" => "La cantidad pagada debe ser mayor o igual al Total.",
- "payment_type" => "Tipo",
- "payments" => "",
- "payments_total" => "Total de pagado",
- "price" => "Precio",
- "print_after_sale" => "Imprimir recibo después de una venta",
- "quantity" => "Cantidad",
- "quantity_less_than_reorder_level" => "Advertencia. La cantidad deseada es insuficiente.",
- "quantity_less_than_zero" => "Advertencia. La cantidad deseada es insuficiente. Puedes procesar la venta, pero verifica tu inventario.",
- "quantity_of_items" => "Cantidad de {0} artículos",
- "quote" => "Cotizar",
- "quote_number" => "Número de presupuesto",
- "quote_number_duplicate" => "El número de cotización debe ser único.",
- "quote_sent" => "Cotización enviada a",
- "quote_unsent" => "La cotización no se pudo enviar a",
- "receipt" => "Recibo de venta",
- "receipt_no_email" => "Este cliente no tiene una dirección de correo válida.",
- "receipt_number" => "Venta #",
- "receipt_sent" => "Recibo enviado a",
- "receipt_unsent" => "Falló el envío del recibo a",
- "refund" => "Modo de Reembolso",
- "register" => "Registro de ventas",
- "remove_customer" => "Borrar cliente",
- "remove_discount" => "",
- "return" => "Devolución",
- "rewards" => "Puntos de recompensa",
- "rewards_balance" => "Balance de puntos de recompensa",
- "sale" => "Venta",
- "sale_by_invoice" => "Venta por factura",
- "sale_for_customer" => "Cliente:",
- "sale_time" => "Hora",
- "sales_tax" => "Impuestos",
- "sales_total" => "",
- "select_customer" => "Seleccionar cliente",
- "send_invoice" => "Enviar factura",
- "send_quote" => "Enviar cotización",
- "send_receipt" => "Enviar recibo",
- "send_work_order" => "Enviar orden de trabajo",
- "serial" => "Serie",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Mostrar factura",
- "show_receipt" => "Mostrar recibo",
- "start_typing_customer_name" => "Empiece a escribir los detalles del cliente...",
- "start_typing_item_name" => "Escriba el nombre del artículo o escanea el código de barras...",
- "stock" => "Existencia",
- "stock_location" => "Localización del inventario",
- "sub_total" => "el subtotal",
- "successfully_deleted" => "Se ha eliminado",
- "successfully_restored" => "Se ha restuarado satisfactoriamente",
- "successfully_suspended_sale" => "La venta se ha suspendido.",
- "successfully_updated" => "Venta actualizada.",
- "suspend_sale" => "Suspender",
- "suspended_doc_id" => "Documento",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Suspendidas",
- "table" => "Datos",
- "takings" => "Ventas diarias",
- "tax" => "Impuestos",
- "tax_id" => "ID Impuesto",
- "tax_invoice" => "Impuesto de la factura",
- "tax_percent" => "Impuesto %",
- "taxed_ind" => "T",
- "total" => "Total",
- "total_tax_exclusive" => "Sin impuesto",
- "transaction_failed" => "Ha fallado la venta.",
- "unable_to_add_item" => "Falló al agregar artículos para venta",
- "unsuccessfully_deleted" => "La eliminación de venta falló.",
- "unsuccessfully_restored" => "La restauración de la venta falló.",
- "unsuccessfully_suspended_sale" => "La suspensión de venta falló.",
- "unsuccessfully_updated" => "Ha fallado la actualización de la venta.",
- "unsuspend" => "Retomar",
- "unsuspend_and_delete" => "Acción",
- "update" => "Actualizar",
- "upi" => "UPI",
- "visa" => "",
- "wallet" => "Monedero",
- "wholesale" => "",
- "work_order" => "Orden de trabajo",
- "work_order_number" => "Número de orden de trabajo",
- "work_order_number_duplicate" => "El número de orden de trabajo debe ser único.",
- "work_order_sent" => "Orden de trabajo enviada a",
- "work_order_unsent" => "Falló la Orden de Trabajo al enviar a",
+ 'account_number' => 'Cuenta #',
+ 'add_payment' => 'Agregar Pago',
+ 'amount_due' => 'Monto de adeudo',
+ 'amount_tendered' => 'Cantidad Recibida',
+ 'authorized_signature' => 'Firma Autorizada',
+ 'bank_transfer' => 'Transferencia Bancaria',
+ 'cancel_sale' => 'Cancelar',
+ 'cash' => 'Efectivo',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'Ajuste de efectivo',
+ 'cash_deposit' => 'Deposito en Efectivo',
+ 'cash_filter' => 'Efectivo',
+ 'change_due' => 'Cambio',
+ 'change_price' => 'Cambiar precio de venta',
+ 'check' => 'Cheque',
+ 'check_balance' => 'Balance de Cheque',
+ 'check_filter' => 'Comprobar',
+ 'close' => '',
+ 'comment' => 'Comentario',
+ 'comments' => 'Comentarios',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Completar',
+ 'confirm_cancel_sale' => '¿Está seguro que desea limpiar la venta? Todos los artículos serán borrados.',
+ 'confirm_delete' => '¿Está seguro que desea borrar todas las ventas seleccionadas?',
+ 'confirm_restore' => '¿Está seguro de desear restaurar las ventas seleccionadas?',
+ 'credit' => 'Tarjeta de Crédito',
+ 'credit_deposit' => 'Deposito de crédito',
+ 'credit_filter' => 'Tarjeta de crédito',
+ 'current_table' => '',
+ 'customer' => 'Cliente',
+ 'customer_address' => 'Dirección',
+ 'customer_discount' => 'Descuento',
+ 'customer_email' => 'Correo electrónico',
+ 'customer_location' => 'Ubicación',
+ 'customer_mailchimp_status' => 'Estado de MailChimp',
+ 'customer_optional' => '(Obligatorio para pagos vencidos)',
+ 'customer_required' => '(Obligatorio)',
+ 'customer_total' => 'Total',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Puntos Disponibles',
+ 'daily_sales' => '',
+ 'date' => 'Fecha de venta',
+ 'date_range' => 'Rango de fechas',
+ 'date_required' => 'Ingresar una fecha correcta.',
+ 'date_type' => 'La fecha es un campo requerido.',
+ 'debit' => 'Tarjeta de débito',
+ 'debit_filter' => '',
+ 'delete' => 'Permitir borrar',
+ 'delete_confirmation' => '¿Seguro(a) de querer borrar esta venta? Esta acción no se puede deshacer.',
+ 'delete_entire_sale' => 'Eliminar la venta completa',
+ 'delete_successful' => 'Venta borrada correctamente.',
+ 'delete_unsuccessful' => 'Fallo al borrar la venta.',
+ 'description_abbrv' => 'Descrip.',
+ 'discard' => 'Descartar',
+ 'discard_quote' => '',
+ 'discount' => 'Desc.',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Descuento',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'Adeudo',
+ 'due_filter' => 'Adeudo',
+ 'edit' => 'Editar',
+ 'edit_item' => 'Editar artículo',
+ 'edit_sale' => 'Editar venta',
+ 'email_receipt' => 'Enviar ticket',
+ 'employee' => 'Empleado',
+ 'entry' => 'Entrada',
+ 'error_editing_item' => 'Error editando el artículo',
+ 'find_or_scan_item' => 'Buscar o escanear artículo',
+ 'find_or_scan_item_or_receipt' => 'Buscar o escanear artículo o recibo',
+ 'giftcard' => 'Tarjeta de regalo',
+ 'giftcard_balance' => 'Balance de Tarjeta de Regalo',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Número de Tarjeta de Regalo',
+ 'group_by_category' => 'Grupo por Categoría',
+ 'group_by_type' => 'Grupo por Tipo',
+ 'hsn' => 'HSN',
+ 'id' => 'ID de Venta',
+ 'include_prices' => '¿Incluir precios?',
+ 'invoice' => 'Factura de venta',
+ 'invoice_confirm' => 'Esta factura sera enviada a',
+ 'invoice_enable' => 'Crear factura',
+ 'invoice_filter' => 'Facturas',
+ 'invoice_no_email' => 'Este cliente no tiene un correo electrónico válido.',
+ 'invoice_number' => 'Factura #',
+ 'invoice_number_duplicate' => 'Por favor ingrese un número de factura único.',
+ 'invoice_sent' => 'Factura enviada a',
+ 'invoice_total' => 'Total Facturado',
+ 'invoice_type_custom_invoice' => 'Factura Personalizada (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Factura de Impuesto personalizada (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Factura',
+ 'invoice_type_tax_invoice' => 'Factura de Impuestos',
+ 'invoice_unsent' => 'Fallo el envio de la factura a',
+ 'invoice_update' => 'Recuento',
+ 'item_insufficient_of_stock' => 'Cantidad insuficiente en inventario.',
+ 'item_name' => 'Nombre del Artículo',
+ 'item_number' => 'Artículo #',
+ 'item_out_of_stock' => 'El artículo está agotado.',
+ 'key_browser' => 'Atajos Útiles',
+ 'key_cancel' => 'Cancelar actual Cotización/Factura/Venta',
+ 'key_customer_search' => 'Buscar Cliente',
+ 'key_finish_quote' => 'Finalizar Cotización/Factura sin pago',
+ 'key_finish_sale' => 'Agregar pago y Completar la Factura/Venta',
+ 'key_full' => 'Abrir en modo Pantalla Completa',
+ 'key_function' => 'Function',
+ 'key_help' => 'Atajos',
+ 'key_help_modal' => 'Abrir Ventana de Atajos',
+ 'key_in' => 'Acercar',
+ 'key_item_search' => 'Buscar Artículo',
+ 'key_out' => 'Alejar',
+ 'key_payment' => 'Agregar Pago',
+ 'key_print' => 'Imprimir Página Actual',
+ 'key_restore' => 'Restaurar Vista',
+ 'key_search' => 'Buscar Tablas de Reporte',
+ 'key_suspend' => 'Suspender Venta Actual',
+ 'key_suspended' => 'Mostrar Ventas Suspendidas',
+ 'key_system' => 'Atajos del Sistema',
+ 'key_tendered' => 'Editar Importe Licitado',
+ 'key_title' => 'Atajos de Teclado para Ventas',
+ 'mc' => '',
+ 'mode' => 'Registrar Modo',
+ 'must_enter_numeric' => 'Cantidad recibida debe ser un número.',
+ 'must_enter_numeric_giftcard' => 'Número de Tarjeta de Regalo debe ser un número.',
+ 'must_enter_reference_code' => 'Se debe ingresar el número de referencia/recuperación.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Cliente Nuevo',
+ 'new_item' => 'Artículo Nuevo',
+ 'no_description' => 'Sin descripción',
+ 'no_filter' => 'Todos',
+ 'no_items_in_cart' => 'No hay artículos en el carrito.',
+ 'no_sales_to_display' => 'No hay ventas que mostrar.',
+ 'none_selected' => 'No has seleccionado alguna venta para borrar.',
+ 'nontaxed_ind' => " ' ",
+ 'not_authorized' => 'Esta acción no esta autorizada.',
+ 'one_or_multiple' => 'Venta(s)',
+ 'payment' => 'Tipo de pago',
+ 'payment_amount' => 'Cantidad',
+ 'payment_not_cover_total' => 'La cantidad pagada debe ser mayor o igual al Total.',
+ 'payment_type' => 'Tipo',
+ 'payments' => '',
+ 'payments_total' => 'Total de pagado',
+ 'price' => 'Precio',
+ 'print_after_sale' => 'Imprimir recibo después de una venta',
+ 'quantity' => 'Cantidad',
+ 'quantity_less_than_reorder_level' => 'Advertencia. La cantidad deseada es insuficiente.',
+ 'quantity_less_than_zero' => 'Advertencia. La cantidad deseada es insuficiente. Puedes procesar la venta, pero verifica tu inventario.',
+ 'quantity_of_items' => 'Cantidad de {0} artículos',
+ 'quote' => 'Cotizar',
+ 'quote_number' => 'Número de presupuesto',
+ 'quote_number_duplicate' => 'El número de cotización debe ser único.',
+ 'quote_sent' => 'Cotización enviada a',
+ 'quote_unsent' => 'La cotización no se pudo enviar a',
+ 'receipt' => 'Recibo de venta',
+ 'receipt_no_email' => 'Este cliente no tiene una dirección de correo válida.',
+ 'receipt_number' => 'Venta #',
+ 'receipt_sent' => 'Recibo enviado a',
+ 'receipt_unsent' => 'Falló el envío del recibo a',
+ 'reference_code' => 'Código de referencia de pago',
+ 'reference_code_invalid_characters' => 'El código de referencia solo debe contener letras y números.',
+ 'reference_code_length_error' => 'La longitud del código de referencia no es válida.',
+ 'refund' => 'Modo de Reembolso',
+ 'register' => 'Registro de ventas',
+ 'remove_customer' => 'Borrar cliente',
+ 'remove_discount' => '',
+ 'return' => 'Devolución',
+ 'rewards' => 'Puntos de recompensa',
+ 'rewards_balance' => 'Balance de puntos de recompensa',
+ 'rewards_package' => 'Premios',
+ 'rewards_remaining_balance' => 'Puntos de recompensa sobrante son: ',
+ 'sale' => 'Venta',
+ 'sale_by_invoice' => 'Venta por factura',
+ 'sale_for_customer' => 'Cliente:',
+ 'sale_time' => 'Hora',
+ 'sales_tax' => 'Impuestos',
+ 'sales_total' => '',
+ 'select_customer' => 'Seleccionar cliente',
+ 'send_invoice' => 'Enviar factura',
+ 'send_quote' => 'Enviar cotización',
+ 'send_receipt' => 'Enviar recibo',
+ 'send_work_order' => 'Enviar orden de trabajo',
+ 'serial' => 'Serie',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Mostrar factura',
+ 'show_receipt' => 'Mostrar recibo',
+ 'start_typing_customer_name' => 'Empiece a escribir los detalles del cliente...',
+ 'start_typing_item_name' => 'Escriba el nombre del artículo o escanea el código de barras...',
+ 'stock' => 'Existencia',
+ 'stock_location' => 'Localización del inventario',
+ 'sub_total' => 'el subtotal',
+ 'successfully_deleted' => 'Se ha eliminado',
+ 'successfully_restored' => 'Se ha restuarado satisfactoriamente',
+ 'successfully_suspended_sale' => 'La venta se ha suspendido.',
+ 'successfully_updated' => 'Venta actualizada.',
+ 'suspend_sale' => 'Suspender',
+ 'suspended_doc_id' => 'Documento',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Suspendidas',
+ 'table' => 'Datos',
+ 'takings' => 'Ventas diarias',
+ 'tax' => 'Impuestos',
+ 'tax_id' => 'ID Impuesto',
+ 'tax_invoice' => 'Impuesto de la factura',
+ 'tax_percent' => 'Impuesto %',
+ 'taxed_ind' => 'T',
+ 'total' => 'Total',
+ 'total_tax_exclusive' => 'Sin impuesto',
+ 'transaction_failed' => 'Ha fallado la venta.',
+ 'unable_to_add_item' => 'Falló al agregar artículos para venta',
+ 'unsuccessfully_deleted' => 'La eliminación de venta falló.',
+ 'unsuccessfully_restored' => 'La restauración de la venta falló.',
+ 'unsuccessfully_suspended_sale' => 'La suspensión de venta falló.',
+ 'unsuccessfully_updated' => 'Ha fallado la actualización de la venta.',
+ 'unsuspend' => 'Retomar',
+ 'unsuspend_and_delete' => 'Acción',
+ 'update' => 'Actualizar',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wallet' => 'Monedero',
+ 'wholesale' => '',
+ 'work_order' => 'Orden de trabajo',
+ 'work_order_number' => 'Número de orden de trabajo',
+ 'work_order_number_duplicate' => 'El número de orden de trabajo debe ser único.',
+ 'work_order_sent' => 'Orden de trabajo enviada a',
+ 'work_order_unsent' => 'Falló la Orden de Trabajo al enviar a',
];
diff --git a/app/Language/fa/Config.php b/app/Language/fa/Config.php
index 6ad3e6f8f..ff30aa060 100644
--- a/app/Language/fa/Config.php
+++ b/app/Language/fa/Config.php
@@ -1,332 +1,335 @@
"آدرس شرکت",
- "address_required" => "آدرس شرکت یک زمینه ضروری است.",
- "all_set" => "همه مجوزهای پرونده درست تنظیم شده اند!",
- "allow_duplicate_barcodes" => "مجاز بارکد های تکراری",
- "apostrophe" => "ارتداد",
- "backup_button" => "پشتیبان گیری",
- "backup_database" => "بانک اطلاعات پشتیبان",
- "barcode" => "بارکد",
- "barcode_company" => "نام شرکت",
- "barcode_configuration" => "پیکربندی بارکد",
- "barcode_content" => "محتوای بارکد",
- "barcode_first_row" => "ردیف 1",
- "barcode_font" => "قلم",
- "barcode_formats" => "قالبهای ورودی",
- "barcode_generate_if_empty" => "اگر خالی باشد تولید کنید.",
- "barcode_height" => "قد به پیکسل",
- "barcode_id" => "شناسه مورد / نام",
- "barcode_info" => "اطلاعات پیکربندی بارکد",
- "barcode_layout" => "چیدمان بارکد",
- "barcode_name" => "نام",
- "barcode_number" => "بارکد",
- "barcode_number_in_row" => "تعداد در ردیف",
- "barcode_page_cellspacing" => "نمایش جای خالی صفحه.",
- "barcode_page_width" => "نمایش عرض صفحه",
- "barcode_price" => "قیمت",
- "barcode_second_row" => "ردیف 2",
- "barcode_third_row" => "ردیف 3",
- "barcode_tooltip" => "اخطار: این ویژگی می تواند باعث وارد شدن یا ایجاد موارد تکراری شود. اگر نمی خواهید بارکد های تکراری داشته باشید ، از آنها استفاده نکنید.",
- "barcode_type" => "",
- "barcode_width" => "عرض به پیکسل",
- "bottom" => "پایین",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "اعشار نقدی",
- "cash_decimals_tooltip" => "اگر کسرهای نقدی و دهدهی های ارزی یکسان باشد ، هیچ دور وجه نقدی صورت نمی گیرد.",
- "cash_rounding" => "گرد پول نقد",
- "category_dropdown" => "نمایش دسته بندی به عنوان یک بازده",
- "center" => "مرکز",
- "change_apperance_tooltip" => "",
- "comma" => "کام",
- "company" => "نام شرکت",
- "company_avatar" => "",
- "company_change_image" => "تغییر تصویر",
- "company_logo" => "آرم شرکت",
- "company_remove_image" => "حذف تصویر",
- "company_required" => "نام شرکت یک زمینه ضروری است",
- "company_select_image" => "تصویر را انتخاب کنید",
- "company_website_url" => "وب سایت شرکت معتبر نیست",
- "country_codes" => "کد کشور",
- "country_codes_tooltip" => "کاما لیست کدهای کشور را برای جستجوی آدرس جدا کرد.",
- "currency_code" => "کد ارز",
- "currency_decimals" => "اعشار ارزی",
- "currency_symbol" => "نماد ارز",
- "current_employee_only" => "",
- "customer_reward" => "جایزه",
- "customer_reward_duplicate" => "پاداش باید بی نظیر باشد.",
- "customer_reward_enable" => "فعال کردن پاداش مشتری",
- "customer_reward_invalid_chars" => "پاداش نمی تواند حاوی ـ باشد",
- "customer_reward_required" => "پاداش یک زمینه ضروری است",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "فیلتر تاریخ و زمان",
- "datetimeformat" => "قالب و تاریخ",
- "decimal_point" => "نقطه اعشار",
- "default_barcode_font_size_number" => "اندازه قلم بارکد پیش فرض باید یک عدد باشد.",
- "default_barcode_font_size_required" => "اندازه قلم پیش فرض بارکد یک فیلد مورد نیاز است.",
- "default_barcode_height_number" => "ارتفاع پیش فرض بارکد باید یک عدد باشد.",
- "default_barcode_height_required" => "پیش فرض بارکد ارتفاع یک فیلد مورد نیاز است.",
- "default_barcode_num_in_row_number" => "شماره بارکد پیش فرض در ردیف باید یک عدد باشد.",
- "default_barcode_num_in_row_required" => "پیش فرض بارکد شماره در ردیف یک زمینه مورد نیاز است.",
- "default_barcode_page_cellspacing_number" => "صفحه پیش فرض بارکد باید یک شماره باشد.",
- "default_barcode_page_cellspacing_required" => "به طور پیش فرض بارکد صفحه یک زمینه مورد نیاز است.",
- "default_barcode_page_width_number" => "عرض صفحه بارکد پیش فرض باید یک عدد باشد.",
- "default_barcode_page_width_required" => "صفحه پیش فرض بارکد یک فیلد ضروری است.",
- "default_barcode_width_number" => "عرض پیش فرض بارکد باید یک عدد باشد.",
- "default_barcode_width_required" => "پیش فرض عرض بارکد یک فیلد مورد نیاز است.",
- "default_item_columns" => "ستون های مورد قابل مشاهده پیش فرض",
- "default_origin_tax_code" => "کد مالیات پیش فرض مبداء",
- "default_receivings_discount" => "تخفیف دريافت دريافت",
- "default_receivings_discount_number" => "تخفیف دريافت پیش فرض باید یک عدد باشد.",
- "default_receivings_discount_required" => "تخفیف دريافت پیش فرض یک قسمت مورد نیاز است.",
- "default_sales_discount" => "تخفیف فروش پیش فرض",
- "default_sales_discount_number" => "تخفیف فروش پیش فرض باید یک عدد باشد.",
- "default_sales_discount_required" => "تخفیف فروش پیش فرض یک قسمت مورد نیاز است.",
- "default_tax_category" => "طبقه بندی پیش فرض مالیات",
- "default_tax_code" => "کد پیش فرض مالیات",
- "default_tax_jurisdiction" => "پیش فرض صلاحیت مالیاتی",
- "default_tax_name_number" => "نام مالیات پیش فرض باید یک رشته باشد.",
- "default_tax_name_required" => "نام مالیات پیش فرض یک قسمت مورد نیاز است.",
- "default_tax_rate" => "پیش فرض نرخ مالیات٪",
- "default_tax_rate_1" => "نرخ مالیات 1",
- "default_tax_rate_2" => "نرخ مالیات 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "نرخ مالیات پیش فرض باید یک عدد باشد.",
- "default_tax_rate_required" => "پیش فرض مالیات نرخ مورد نیاز است.",
- "derive_sale_quantity" => "مجاز به مقدار فروش مشتق شده",
- "derive_sale_quantity_tooltip" => "اگر بررسی شود ، نوع جدیدی برای موارد سفارش داده شده با مقدار طولانی ارائه می شود",
- "dinner_table" => "جدول",
- "dinner_table_duplicate" => "جدول باید بی نظیر باشد.",
- "dinner_table_enable" => "فعال کردن جداول شام",
- "dinner_table_invalid_chars" => "نام جدول نمی تواند حاوی ـ باشد.",
- "dinner_table_required" => "جدول فیلد مورد نیاز است.",
- "dot" => "نقطه",
- "email" => "پست الکترونیک",
- "email_configuration" => "پیکربندی ایمیل",
- "email_mailpath" => " مسیر ارسال به برنامه (سندمیل)",
- "email_protocol" => "پروتکل",
- "email_receipt_check_behaviour" => "کادر بررسی دریافت ایمیل",
- "email_receipt_check_behaviour_always" => "همیشه بررسی شد",
- "email_receipt_check_behaviour_last" => "انتخاب گذشته را بخاطر بسپار",
- "email_receipt_check_behaviour_never" => "همیشه انتخاب نشده",
- "email_smtp_crypto" => "SMTP رمزگذاری",
- "email_smtp_host" => "SMTP سرور",
- "email_smtp_pass" => "SMTP گذرواژه",
- "email_smtp_port" => "SMTP پورت",
- "email_smtp_timeout" => "SMT Timeout (s)",
- "email_smtp_user" => "SMTP نام کاربری",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "اجرای حریم خصوصی",
- "enforce_privacy_tooltip" => "در صورت از بین بردن داده های آنها در صورت حذف داده ها ، از حفظ حریم خصوصی مشتریان محافظت کنید",
- "fax" => "نمابر",
- "file_perm" => "در مجوزهای پرونده مشکلی وجود دارد ، لطفا این صفحه را تعمیر و بارگذاری مجدد کنید.",
- "financial_year" => "شروع سال مالی",
- "financial_year_apr" => "اول آوریل",
- "financial_year_aug" => "اول اوت",
- "financial_year_dec" => "اول دسامبر",
- "financial_year_feb" => "اول فوریه",
- "financial_year_jan" => "اول ژانویه",
- "financial_year_jul" => "اول ژوئیه",
- "financial_year_jun" => "اول ژوئن",
- "financial_year_mar" => "اول مارس",
- "financial_year_may" => "اول ماه مه",
- "financial_year_nov" => "اول نوامبر",
- "financial_year_oct" => "اول اکتبر",
- "financial_year_sep" => "اول سپتامبر",
- "floating_labels" => "",
- "gcaptcha_enable" => "صفحه ورود کپچا",
- "gcaptcha_secret_key" => "کلید مخفی کپچا",
- "gcaptcha_secret_key_required" => "کلید مخفی کپچا یک زمینه مورد نیاز است",
- "gcaptcha_site_key" => "کلید سایت کپچا",
- "gcaptcha_site_key_required" => "کلید سایت کپچا یک زمینه مورد نیاز است",
- "gcaptcha_tooltip" => "از صفحه ورود با کپچا محافظت کنید ، روی یک نماد برای یک جفت کلید ایپیآی کلیک کنید.",
- "general" => "عمومی",
- "general_configuration" => "پیکربندی عمومی",
- "giftcard_number" => "شماره کارت هدیه",
- "giftcard_random" => "تولید تصادفی",
- "giftcard_series" => "تولید در سریال",
- "image_allowed_file_types" => "انواع پرونده مجاز",
- "image_max_height_tooltip" => "حداکثر ارتفاع مجاز بارگذاری تصویر در پیکسل ها (px).",
- "image_max_size_tooltip" => "حداکثر اندازه مجاز بارگذاری تصویر در کیلوبایت (کیلوبایت).",
- "image_max_width_tooltip" => "حداکثر عرض مجاز بارگذاری تصویر در پیکسل ها (px).",
- "image_restrictions" => "محدودیتهای آپلود تصویر",
- "include_hsn" => "شامل پشتیبانی از کدهای اچاسان",
- "info" => "اطلاعات",
- "info_configuration" => "اطلاعات فروشگاه",
- "input_groups" => "",
- "integrations" => "ادغام",
- "integrations_configuration" => "ادغام های شخص ثالث",
- "invoice" => "صورتحساب",
- "invoice_configuration" => "تنظیمات چاپ فاکتور",
- "invoice_default_comments" => "نظرات پیش فرض فاکتور",
- "invoice_email_message" => "الگوی ایمیل فاکتور",
- "invoice_enable" => "فعال کردن صورتحساب",
- "invoice_printer" => "چاپگر فاکتور",
- "invoice_type" => "نوع فاکتور",
- "is_readable" => "قابل خواندن است ، اما مجوزها از 660 بالاتر است.",
- "is_writable" => "قابل چاپ است ، اما مجوزها بالاتر از 750 است.",
- "item_markup" => "",
- "jsprintsetup_required" => "هشدار: این عملکرد تنها در صورتی کار خواهد کرد که افزونه فایرفاکس ج پرینت را نصب کنید. به هر حال ذخیره می شود؟",
- "language" => "زبان",
- "last_used_invoice_number" => "آخرین فاکتور استفاده شده شماره",
- "last_used_quote_number" => "آخرین شماره نقل قول استفاده شده",
- "last_used_work_order_number" => "آخرین شماره سفارش کار استفاده شده",
- "left" => "ترک کرد",
- "license" => "مجوز",
- "license_configuration" => "بیانیه مجوز",
- "line_sequence" => "دنباله خط",
- "lines_per_page" => "خطوط در هر صفحه",
- "lines_per_page_number" => "خطوط در هر صفحه باید عددی باشند.",
- "lines_per_page_required" => "خطوط در هر صفحه یک زمینه ضروری است",
- "locale" => "بومی سازی",
- "locale_configuration" => "پیکربندی محلی سازی",
- "locale_info" => "اطلاعات پیکربندی محلی سازی",
- "location" => "موجودی",
- "location_configuration" => "محل سهام",
- "location_info" => "اطلاعات پیکربندی موقعیت مکانی",
- "login_form" => "",
- "logout" => "آیا می خواهید قبل از ورود ، نسخه پشتیبان تهیه کنید؟ برای پشتیبان گیری یا [لغو] برای ورود به سیستم ، روی [اوکی] کلیک کنید",
- "mailchimp" => "Mailchimp",
- "mailchimp_api_key" => "کلید ایپیآی میلچیمپ",
- "mailchimp_configuration" => "پیکربندی میلچیمپ",
- "mailchimp_key_successfully" => "کلید ایپیآی معتبر است.",
- "mailchimp_key_unsuccessfully" => "کلید ایپیآی نامعتبر است.",
- "mailchimp_lists" => "لیست (های) میلچیمپ",
- "mailchimp_tooltip" => "بر روی نماد یک کلید ایپیآی کلیک کنید.",
- "message" => "پیام",
- "message_configuration" => "پیکربندی پیام",
- "msg_msg" => "پیام متنی ذخیره شده",
- "msg_msg_placeholder" => "اگر می خواهید از یک پیام کوتاه استفاده کنید ، پیام خود را در اینجا ذخیره کنید ، در غیر این صورت جعبه را خالی بگذارید.",
- "msg_pwd" => "گذرواژه SMS-API",
- "msg_pwd_required" => "گذرواژه ایپیآی اساماس یک فیلد ضروری است",
- "msg_src" => "شناسه فرستنده ایپیآی اساماس ",
- "msg_src_required" => "شناسه فرستنده ایپیآی اساماس یک زمینه ضروری است",
- "msg_uid" => "نام کاربری ایپیآی اساماس ",
- "msg_uid_required" => "نام کاربری ایپیآی اساماس یک زمینه ضروری است",
- "multi_pack_enabled" => "بسته های چندگانه برای هر مورد",
- "no_risk" => "خطرات امنیتی و آسیب پذیری وجود ندارد.",
- "none" => "هیچ یک",
- "notify_alignment" => "موقعیت یاب اعلان",
- "number_format" => "قالب شماره",
- "number_locale" => "بومی سازی",
- "number_locale_invalid" => "محل ورود نامعتبر است. برای یافتن محلی معتبر ، پیوند را در راهنمای ابزار بررسی کنید.",
- "number_locale_required" => "شماره محلی یک زمینه مورد نیاز است.",
- "number_locale_tooltip" => "از طریق این لینک محلی مناسب پیدا کنید.",
- "os_timezone" => "منطقه زمانی اوسپوس:",
- "ospos_info" => "اطلاعات نصب اوسپوس",
- "payment_options_order" => "سفارش گزینه های پرداخت",
- "perm_risk" => "مجوزهای بالاتر از 750 برای نوشتن و 660 برای خواندن ، این نرم افزار را در معرض خطر قرار می دهد.",
- "phone" => "تلفن شرکت",
- "phone_required" => "تلفن شرکت یک زمینه ضروری است.",
- "print_bottom_margin" => "حاشیه پایین",
- "print_bottom_margin_number" => "حاشیه پایین باید یک عدد باشد.",
- "print_bottom_margin_required" => "کلید مارجین یک زمینه مورد نیاز است.",
- "print_delay_autoreturn" => "تأخیر در فروش تاخیر در فروش",
- "print_delay_autoreturn_number" => "تأخیر در فروش تاخیر یک زمینه ضروری است.",
- "print_delay_autoreturn_required" => "تأخیر در فروش تاخیر در فروش باید یک عدد باشد.",
- "print_footer" => "چاپ پاورقی مرورگر",
- "print_header" => "چاپ هدر مرورگر",
- "print_left_margin" => "حاشیه چپ",
- "print_left_margin_number" => "مارجین چپ باید یک عدد باشد.",
- "print_left_margin_required" => "Margin Left یک زمینه مورد نیاز است.",
- "print_receipt_check_behaviour" => "کادر تأیید چاپ",
- "print_receipt_check_behaviour_always" => "همیشه بررسی شد",
- "print_receipt_check_behaviour_last" => "انتخاب گذشته را بخاطر بسپار",
- "print_receipt_check_behaviour_never" => "همیشه انتخاب نشده",
- "print_right_margin" => "حق حاشیه",
- "print_right_margin_number" => "حاشیه سمت راست باید یک عدد باشد.",
- "print_right_margin_required" => "مارجین راست یک زمینه ضروری است",
- "print_silently" => "نمایش گفتگوی چاپ",
- "print_top_margin" => "حاشیه بالا",
- "print_top_margin_number" => "حاشیه بالا باید یک عدد باشد.",
- "print_top_margin_required" => "مارجین بالا یک زمینه مورد نیاز است.",
- "quantity_decimals" => "تعداد اعشار",
- "quick_cash_enable" => "",
- "quote_default_comments" => "نقل قول های پیش فرض",
- "receipt" => "اعلام وصول",
- "receipt_category" => "",
- "receipt_configuration" => "تنظیمات چاپ دریافت",
- "receipt_default" => "پیش فرض",
- "receipt_font_size" => "اندازه فونت",
- "receipt_font_size_number" => "اندازه قلم باید یک عدد باشد.",
- "receipt_font_size_required" => "اندازه قلم یک فیلد مورد نیاز است.",
- "receipt_info" => "اطلاعات پیکربندی دریافت",
- "receipt_printer" => "چاپگر بلیط",
- "receipt_short" => "کوتاه",
- "receipt_show_company_name" => "نمایش نام شرکت",
- "receipt_show_description" => "نمایش توضیحات",
- "receipt_show_serialnumber" => "نمایش شماره سریال",
- "receipt_show_tax_ind" => "نمایش شاخص مالیات",
- "receipt_show_taxes" => "نمایش مالیات",
- "receipt_show_total_discount" => "نمایش تخفیف در کل",
- "receipt_template" => "الگوی رسید",
- "receiving_calculate_average_price" => "کالای میانگین. قیمت (دريافت)",
- "recv_invoice_format" => "قالب فاکتور دریافتی",
- "register_mode_default" => "حالت پیش فرض ثبت نام",
- "report_an_issue" => "گزارش یک مسئله",
- "return_policy_required" => "خط مشی برگشت یک زمینه مورد نیاز است.",
- "reward" => "جایزه",
- "reward_configuration" => "پیکربندی پاداش",
- "right" => "درست",
- "sales_invoice_format" => "قالب فاکتور فروش",
- "sales_quote_format" => "قالب فروش قیمت",
- "mailpath_invalid" => "",
- "saved_successfully" => "پیکربندی ذخیره موفقیت آمیز است.",
- "saved_unsuccessfully" => "ذخیره پیکربندی انجام نشد.",
- "security_issue" => "هشدار آسیب پذیری امنیتی",
- "server_notice" => "لطفاً برای گزارش مسئله از اطلاعات زیر استفاده کنید.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "نمایش نماد دفتر",
- "statistics" => "ارسال آمار",
- "statistics_tooltip" => "ارسال آمار برای اهداف توسعه و بهبود ویژگی ها.",
- "stock_location" => "موقعیت مکانی سهام",
- "stock_location_duplicate" => "موقعیت مکانی سهام باید بی نظیر باشد.",
- "stock_location_invalid_chars" => "محل نگهداری سهام نمی تواند حاوی ـ باشد.",
- "stock_location_required" => "مکان سهام یک قسمت مورد نیاز است.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "ستون 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "طرح بندی پیشنهادات جستجو",
- "suggestions_second_column" => "ستون 2",
- "suggestions_third_column" => "ستون 3",
- "system_conf" => "تنظیم و تنظیم",
- "system_info" => "اطلاعات سیستم",
- "table" => "جدول",
- "table_configuration" => "پیکربندی جدول",
- "takings_printer" => "چاپگر رسید",
- "tax" => "مالیات",
- "tax_category" => "طبقه بندی مالیات",
- "tax_category_duplicate" => "دسته مالیاتی وارد شده در حال حاضر وجود دارد.",
- "tax_category_invalid_chars" => "دسته مالیاتی وارد شده نامعتبر است.",
- "tax_category_required" => "طبقه بندی مالیات لازم است.",
- "tax_category_used" => "طبقه بندی مالیات نمی تواند حذف شود زیرا در حال استفاده است.",
- "tax_configuration" => "پیکربندی مالیات",
- "tax_decimals" => "اعشار مالیاتی",
- "tax_id" => "شناسه مالیاتی",
- "tax_included" => "با احتساب مالیات",
- "theme" => "موضوع",
- "theme_preview" => "",
- "thousands_separator" => "هزاران نفر",
- "timezone" => "منطقه زمانی",
- "timezone_error" => "منطقه زمانی اوسپوس با منطقه زمانی محلی شما متفاوت است.",
- "top" => "بالا",
- "use_destination_based_tax" => "استفاده از مالیات بر مبنای مقصد",
- "user_timezone" => "منطقه زمانی محلی:",
- "website" => "سایت اینترنتی",
- "wholesale_markup" => "",
- "work_order_enable" => "پشتیبانی سفارش کار",
- "work_order_format" => "قالب سفارش کار",
+ 'address' => 'آدرس شرکت',
+ 'address_required' => 'آدرس شرکت یک زمینه ضروری است.',
+ 'all_set' => 'همه مجوزهای پرونده درست تنظیم شده اند!',
+ 'allow_duplicate_barcodes' => 'مجاز بارکد های تکراری',
+ 'apostrophe' => 'ارتداد',
+ 'backup_button' => 'پشتیبان گیری',
+ 'backup_database' => 'بانک اطلاعات پشتیبان',
+ 'barcode' => 'بارکد',
+ 'barcode_company' => 'نام شرکت',
+ 'barcode_configuration' => 'پیکربندی بارکد',
+ 'barcode_content' => 'محتوای بارکد',
+ 'barcode_first_row' => 'ردیف 1',
+ 'barcode_font' => 'قلم',
+ 'barcode_formats' => 'قالبهای ورودی',
+ 'barcode_generate_if_empty' => 'اگر خالی باشد تولید کنید.',
+ 'barcode_height' => 'قد به پیکسل',
+ 'barcode_id' => 'شناسه مورد / نام',
+ 'barcode_info' => 'اطلاعات پیکربندی بارکد',
+ 'barcode_layout' => 'چیدمان بارکد',
+ 'barcode_name' => 'نام',
+ 'barcode_number' => 'بارکد',
+ 'barcode_number_in_row' => 'تعداد در ردیف',
+ 'barcode_page_cellspacing' => 'نمایش جای خالی صفحه.',
+ 'barcode_page_width' => 'نمایش عرض صفحه',
+ 'barcode_price' => 'قیمت',
+ 'barcode_second_row' => 'ردیف 2',
+ 'barcode_third_row' => 'ردیف 3',
+ 'barcode_tooltip' => 'اخطار: این ویژگی می تواند باعث وارد شدن یا ایجاد موارد تکراری شود. اگر نمی خواهید بارکد های تکراری داشته باشید ، از آنها استفاده نکنید.',
+ 'barcode_type' => '',
+ 'barcode_width' => 'عرض به پیکسل',
+ 'bottom' => 'پایین',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'اعشار نقدی',
+ 'cash_decimals_tooltip' => 'اگر کسرهای نقدی و دهدهی های ارزی یکسان باشد ، هیچ دور وجه نقدی صورت نمی گیرد.',
+ 'cash_rounding' => 'گرد پول نقد',
+ 'category_dropdown' => 'نمایش دسته بندی به عنوان یک بازده',
+ 'center' => 'مرکز',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'کام',
+ 'company' => 'نام شرکت',
+ 'company_avatar' => '',
+ 'company_change_image' => 'تغییر تصویر',
+ 'company_logo' => 'آرم شرکت',
+ 'company_remove_image' => 'حذف تصویر',
+ 'company_required' => 'نام شرکت یک زمینه ضروری است',
+ 'company_select_image' => 'تصویر را انتخاب کنید',
+ 'company_website_url' => 'وب سایت شرکت معتبر نیست',
+ 'country_codes' => 'کد کشور',
+ 'country_codes_tooltip' => 'کاما لیست کدهای کشور را برای جستجوی آدرس جدا کرد.',
+ 'currency_code' => 'کد ارز',
+ 'currency_decimals' => 'اعشار ارزی',
+ 'currency_symbol' => 'نماد ارز',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'جایزه',
+ 'customer_reward_duplicate' => 'پاداش باید بی نظیر باشد.',
+ 'customer_reward_enable' => 'فعال کردن پاداش مشتری',
+ 'customer_reward_invalid_chars' => 'پاداش نمی تواند حاوی ـ باشد',
+ 'customer_reward_required' => 'پاداش یک زمینه ضروری است',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => 'فیلتر تاریخ و زمان',
+ 'datetimeformat' => 'قالب و تاریخ',
+ 'decimal_point' => 'نقطه اعشار',
+ 'default_barcode_font_size_number' => 'اندازه قلم بارکد پیش فرض باید یک عدد باشد.',
+ 'default_barcode_font_size_required' => 'اندازه قلم پیش فرض بارکد یک فیلد مورد نیاز است.',
+ 'default_barcode_height_number' => 'ارتفاع پیش فرض بارکد باید یک عدد باشد.',
+ 'default_barcode_height_required' => 'پیش فرض بارکد ارتفاع یک فیلد مورد نیاز است.',
+ 'default_barcode_num_in_row_number' => 'شماره بارکد پیش فرض در ردیف باید یک عدد باشد.',
+ 'default_barcode_num_in_row_required' => 'پیش فرض بارکد شماره در ردیف یک زمینه مورد نیاز است.',
+ 'default_barcode_page_cellspacing_number' => 'صفحه پیش فرض بارکد باید یک شماره باشد.',
+ 'default_barcode_page_cellspacing_required' => 'به طور پیش فرض بارکد صفحه یک زمینه مورد نیاز است.',
+ 'default_barcode_page_width_number' => 'عرض صفحه بارکد پیش فرض باید یک عدد باشد.',
+ 'default_barcode_page_width_required' => 'صفحه پیش فرض بارکد یک فیلد ضروری است.',
+ 'default_barcode_width_number' => 'عرض پیش فرض بارکد باید یک عدد باشد.',
+ 'default_barcode_width_required' => 'پیش فرض عرض بارکد یک فیلد مورد نیاز است.',
+ 'default_item_columns' => 'ستون های مورد قابل مشاهده پیش فرض',
+ 'default_origin_tax_code' => 'کد مالیات پیش فرض مبداء',
+ 'default_receivings_discount' => 'تخفیف دريافت دريافت',
+ 'default_receivings_discount_number' => 'تخفیف دريافت پیش فرض باید یک عدد باشد.',
+ 'default_receivings_discount_required' => 'تخفیف دريافت پیش فرض یک قسمت مورد نیاز است.',
+ 'default_sales_discount' => 'تخفیف فروش پیش فرض',
+ 'default_sales_discount_number' => 'تخفیف فروش پیش فرض باید یک عدد باشد.',
+ 'default_sales_discount_required' => 'تخفیف فروش پیش فرض یک قسمت مورد نیاز است.',
+ 'default_tax_category' => 'طبقه بندی پیش فرض مالیات',
+ 'default_tax_code' => 'کد پیش فرض مالیات',
+ 'default_tax_jurisdiction' => 'پیش فرض صلاحیت مالیاتی',
+ 'default_tax_name_number' => 'نام مالیات پیش فرض باید یک رشته باشد.',
+ 'default_tax_name_required' => 'نام مالیات پیش فرض یک قسمت مورد نیاز است.',
+ 'default_tax_rate' => 'پیش فرض نرخ مالیات٪',
+ 'default_tax_rate_1' => 'نرخ مالیات 1',
+ 'default_tax_rate_2' => 'نرخ مالیات 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'نرخ مالیات پیش فرض باید یک عدد باشد.',
+ 'default_tax_rate_required' => 'پیش فرض مالیات نرخ مورد نیاز است.',
+ 'derive_sale_quantity' => 'مجاز به مقدار فروش مشتق شده',
+ 'derive_sale_quantity_tooltip' => 'اگر بررسی شود ، نوع جدیدی برای موارد سفارش داده شده با مقدار طولانی ارائه می شود',
+ 'dinner_table' => 'جدول',
+ 'dinner_table_duplicate' => 'جدول باید بی نظیر باشد.',
+ 'dinner_table_enable' => 'فعال کردن جداول شام',
+ 'dinner_table_invalid_chars' => 'نام جدول نمی تواند حاوی ـ باشد.',
+ 'dinner_table_required' => 'جدول فیلد مورد نیاز است.',
+ 'dot' => 'نقطه',
+ 'email' => 'پست الکترونیک',
+ 'email_configuration' => 'پیکربندی ایمیل',
+ 'email_mailpath' => ' مسیر ارسال به برنامه (سندمیل)',
+ 'email_protocol' => 'پروتکل',
+ 'email_receipt_check_behaviour' => 'کادر بررسی دریافت ایمیل',
+ 'email_receipt_check_behaviour_always' => 'همیشه بررسی شد',
+ 'email_receipt_check_behaviour_last' => 'انتخاب گذشته را بخاطر بسپار',
+ 'email_receipt_check_behaviour_never' => 'همیشه انتخاب نشده',
+ 'email_smtp_crypto' => 'SMTP رمزگذاری',
+ 'email_smtp_host' => 'SMTP سرور',
+ 'email_smtp_pass' => 'SMTP گذرواژه',
+ 'email_smtp_port' => 'SMTP پورت',
+ 'email_smtp_timeout' => 'SMT Timeout (s)',
+ 'email_smtp_user' => 'SMTP نام کاربری',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'اجرای حریم خصوصی',
+ 'enforce_privacy_tooltip' => 'در صورت از بین بردن داده های آنها در صورت حذف داده ها ، از حفظ حریم خصوصی مشتریان محافظت کنید',
+ 'fax' => 'نمابر',
+ 'file_perm' => 'در مجوزهای پرونده مشکلی وجود دارد ، لطفا این صفحه را تعمیر و بارگذاری مجدد کنید.',
+ 'financial_year' => 'شروع سال مالی',
+ 'financial_year_apr' => 'اول آوریل',
+ 'financial_year_aug' => 'اول اوت',
+ 'financial_year_dec' => 'اول دسامبر',
+ 'financial_year_feb' => 'اول فوریه',
+ 'financial_year_jan' => 'اول ژانویه',
+ 'financial_year_jul' => 'اول ژوئیه',
+ 'financial_year_jun' => 'اول ژوئن',
+ 'financial_year_mar' => 'اول مارس',
+ 'financial_year_may' => 'اول ماه مه',
+ 'financial_year_nov' => 'اول نوامبر',
+ 'financial_year_oct' => 'اول اکتبر',
+ 'financial_year_sep' => 'اول سپتامبر',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => 'صفحه ورود کپچا',
+ 'gcaptcha_secret_key' => 'کلید مخفی کپچا',
+ 'gcaptcha_secret_key_required' => 'کلید مخفی کپچا یک زمینه مورد نیاز است',
+ 'gcaptcha_site_key' => 'کلید سایت کپچا',
+ 'gcaptcha_site_key_required' => 'کلید سایت کپچا یک زمینه مورد نیاز است',
+ 'gcaptcha_tooltip' => 'از صفحه ورود با کپچا محافظت کنید ، روی یک نماد برای یک جفت کلید ایپیآی کلیک کنید.',
+ 'general' => 'عمومی',
+ 'general_configuration' => 'پیکربندی عمومی',
+ 'giftcard_number' => 'شماره کارت هدیه',
+ 'giftcard_random' => 'تولید تصادفی',
+ 'giftcard_series' => 'تولید در سریال',
+ 'image_allowed_file_types' => 'انواع پرونده مجاز',
+ 'image_max_height_tooltip' => 'حداکثر ارتفاع مجاز بارگذاری تصویر در پیکسل ها (px).',
+ 'image_max_size_tooltip' => 'حداکثر اندازه مجاز بارگذاری تصویر در کیلوبایت (کیلوبایت).',
+ 'image_max_width_tooltip' => 'حداکثر عرض مجاز بارگذاری تصویر در پیکسل ها (px).',
+ 'image_restrictions' => 'محدودیتهای آپلود تصویر',
+ 'include_hsn' => 'شامل پشتیبانی از کدهای اچاسان',
+ 'info' => 'اطلاعات',
+ 'info_configuration' => 'اطلاعات فروشگاه',
+ 'input_groups' => '',
+ 'integrations' => 'ادغام',
+ 'integrations_configuration' => 'ادغام های شخص ثالث',
+ 'invoice' => 'صورتحساب',
+ 'invoice_configuration' => 'تنظیمات چاپ فاکتور',
+ 'invoice_default_comments' => 'نظرات پیش فرض فاکتور',
+ 'invoice_email_message' => 'الگوی ایمیل فاکتور',
+ 'invoice_enable' => 'فعال کردن صورتحساب',
+ 'invoice_printer' => 'چاپگر فاکتور',
+ 'invoice_type' => 'نوع فاکتور',
+ 'is_readable' => 'قابل خواندن است ، اما مجوزها از 660 بالاتر است.',
+ 'is_writable' => 'قابل چاپ است ، اما مجوزها بالاتر از 750 است.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'هشدار: این عملکرد تنها در صورتی کار خواهد کرد که افزونه فایرفاکس ج پرینت را نصب کنید. به هر حال ذخیره می شود؟',
+ 'language' => 'زبان',
+ 'last_used_invoice_number' => 'آخرین فاکتور استفاده شده شماره',
+ 'last_used_quote_number' => 'آخرین شماره نقل قول استفاده شده',
+ 'last_used_work_order_number' => 'آخرین شماره سفارش کار استفاده شده',
+ 'left' => 'ترک کرد',
+ 'license' => 'مجوز',
+ 'license_configuration' => 'بیانیه مجوز',
+ 'line_sequence' => 'دنباله خط',
+ 'lines_per_page' => 'خطوط در هر صفحه',
+ 'lines_per_page_number' => 'خطوط در هر صفحه باید عددی باشند.',
+ 'lines_per_page_required' => 'خطوط در هر صفحه یک زمینه ضروری است',
+ 'locale' => 'بومی سازی',
+ 'locale_configuration' => 'پیکربندی محلی سازی',
+ 'locale_info' => 'اطلاعات پیکربندی محلی سازی',
+ 'location' => 'موجودی',
+ 'location_configuration' => 'محل سهام',
+ 'location_info' => 'اطلاعات پیکربندی موقعیت مکانی',
+ 'login_form' => '',
+ 'logout' => 'آیا می خواهید قبل از ورود ، نسخه پشتیبان تهیه کنید؟ برای پشتیبان گیری یا [لغو] برای ورود به سیستم ، روی [اوکی] کلیک کنید',
+ 'mailchimp' => 'Mailchimp',
+ 'mailchimp_api_key' => 'کلید ایپیآی میلچیمپ',
+ 'mailchimp_configuration' => 'پیکربندی میلچیمپ',
+ 'mailchimp_key_successfully' => 'کلید ایپیآی معتبر است.',
+ 'mailchimp_key_unsuccessfully' => 'کلید ایپیآی نامعتبر است.',
+ 'mailchimp_lists' => 'لیست (های) میلچیمپ',
+ 'mailchimp_tooltip' => 'بر روی نماد یک کلید ایپیآی کلیک کنید.',
+ 'message' => 'پیام',
+ 'message_configuration' => 'پیکربندی پیام',
+ 'msg_msg' => 'پیام متنی ذخیره شده',
+ 'msg_msg_placeholder' => 'اگر می خواهید از یک پیام کوتاه استفاده کنید ، پیام خود را در اینجا ذخیره کنید ، در غیر این صورت جعبه را خالی بگذارید.',
+ 'msg_pwd' => 'گذرواژه SMS-API',
+ 'msg_pwd_required' => 'گذرواژه ایپیآی اساماس یک فیلد ضروری است',
+ 'msg_src' => 'شناسه فرستنده ایپیآی اساماس ',
+ 'msg_src_required' => 'شناسه فرستنده ایپیآی اساماس یک زمینه ضروری است',
+ 'msg_uid' => 'نام کاربری ایپیآی اساماس ',
+ 'msg_uid_required' => 'نام کاربری ایپیآی اساماس یک زمینه ضروری است',
+ 'multi_pack_enabled' => 'بسته های چندگانه برای هر مورد',
+ 'no_risk' => 'خطرات امنیتی و آسیب پذیری وجود ندارد.',
+ 'none' => 'هیچ یک',
+ 'notify_alignment' => 'موقعیت یاب اعلان',
+ 'number_format' => 'قالب شماره',
+ 'number_locale' => 'بومی سازی',
+ 'number_locale_invalid' => 'محل ورود نامعتبر است. برای یافتن محلی معتبر ، پیوند را در راهنمای ابزار بررسی کنید.',
+ 'number_locale_required' => 'شماره محلی یک زمینه مورد نیاز است.',
+ 'number_locale_tooltip' => 'از طریق این لینک محلی مناسب پیدا کنید.',
+ 'os_timezone' => 'منطقه زمانی اوسپوس:',
+ 'ospos_info' => 'اطلاعات نصب اوسپوس',
+ 'payment_options_order' => 'سفارش گزینه های پرداخت',
+ 'payment_reference_code_length_limits' => 'کد مرجع پرداخت
محدودیتهای طول',
+ 'payment_reference_code_length_max_label' => 'حداکثر',
+ 'payment_reference_code_length_min_label' => 'حداقل',
+ 'perm_risk' => 'مجوزهای بالاتر از 750 برای نوشتن و 660 برای خواندن ، این نرم افزار را در معرض خطر قرار می دهد.',
+ 'phone' => 'تلفن شرکت',
+ 'phone_required' => 'تلفن شرکت یک زمینه ضروری است.',
+ 'print_bottom_margin' => 'حاشیه پایین',
+ 'print_bottom_margin_number' => 'حاشیه پایین باید یک عدد باشد.',
+ 'print_bottom_margin_required' => 'کلید مارجین یک زمینه مورد نیاز است.',
+ 'print_delay_autoreturn' => 'تأخیر در فروش تاخیر در فروش',
+ 'print_delay_autoreturn_number' => 'تأخیر در فروش تاخیر یک زمینه ضروری است.',
+ 'print_delay_autoreturn_required' => 'تأخیر در فروش تاخیر در فروش باید یک عدد باشد.',
+ 'print_footer' => 'چاپ پاورقی مرورگر',
+ 'print_header' => 'چاپ هدر مرورگر',
+ 'print_left_margin' => 'حاشیه چپ',
+ 'print_left_margin_number' => 'مارجین چپ باید یک عدد باشد.',
+ 'print_left_margin_required' => 'Margin Left یک زمینه مورد نیاز است.',
+ 'print_receipt_check_behaviour' => 'کادر تأیید چاپ',
+ 'print_receipt_check_behaviour_always' => 'همیشه بررسی شد',
+ 'print_receipt_check_behaviour_last' => 'انتخاب گذشته را بخاطر بسپار',
+ 'print_receipt_check_behaviour_never' => 'همیشه انتخاب نشده',
+ 'print_right_margin' => 'حق حاشیه',
+ 'print_right_margin_number' => 'حاشیه سمت راست باید یک عدد باشد.',
+ 'print_right_margin_required' => 'مارجین راست یک زمینه ضروری است',
+ 'print_silently' => 'نمایش گفتگوی چاپ',
+ 'print_top_margin' => 'حاشیه بالا',
+ 'print_top_margin_number' => 'حاشیه بالا باید یک عدد باشد.',
+ 'print_top_margin_required' => 'مارجین بالا یک زمینه مورد نیاز است.',
+ 'quantity_decimals' => 'تعداد اعشار',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'نقل قول های پیش فرض',
+ 'receipt' => 'اعلام وصول',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'تنظیمات چاپ دریافت',
+ 'receipt_default' => 'پیش فرض',
+ 'receipt_font_size' => 'اندازه فونت',
+ 'receipt_font_size_number' => 'اندازه قلم باید یک عدد باشد.',
+ 'receipt_font_size_required' => 'اندازه قلم یک فیلد مورد نیاز است.',
+ 'receipt_info' => 'اطلاعات پیکربندی دریافت',
+ 'receipt_printer' => 'چاپگر بلیط',
+ 'receipt_short' => 'کوتاه',
+ 'receipt_show_company_name' => 'نمایش نام شرکت',
+ 'receipt_show_description' => 'نمایش توضیحات',
+ 'receipt_show_serialnumber' => 'نمایش شماره سریال',
+ 'receipt_show_tax_ind' => 'نمایش شاخص مالیات',
+ 'receipt_show_taxes' => 'نمایش مالیات',
+ 'receipt_show_total_discount' => 'نمایش تخفیف در کل',
+ 'receipt_template' => 'الگوی رسید',
+ 'receiving_calculate_average_price' => 'کالای میانگین. قیمت (دريافت)',
+ 'recv_invoice_format' => 'قالب فاکتور دریافتی',
+ 'register_mode_default' => 'حالت پیش فرض ثبت نام',
+ 'report_an_issue' => 'گزارش یک مسئله',
+ 'return_policy_required' => 'خط مشی برگشت یک زمینه مورد نیاز است.',
+ 'reward' => 'جایزه',
+ 'reward_configuration' => 'پیکربندی پاداش',
+ 'right' => 'درست',
+ 'sales_invoice_format' => 'قالب فاکتور فروش',
+ 'sales_quote_format' => 'قالب فروش قیمت',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => 'پیکربندی ذخیره موفقیت آمیز است.',
+ 'saved_unsuccessfully' => 'ذخیره پیکربندی انجام نشد.',
+ 'security_issue' => 'هشدار آسیب پذیری امنیتی',
+ 'server_notice' => 'لطفاً برای گزارش مسئله از اطلاعات زیر استفاده کنید.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'نمایش نماد دفتر',
+ 'statistics' => 'ارسال آمار',
+ 'statistics_tooltip' => 'ارسال آمار برای اهداف توسعه و بهبود ویژگی ها.',
+ 'stock_location' => 'موقعیت مکانی سهام',
+ 'stock_location_duplicate' => 'موقعیت مکانی سهام باید بی نظیر باشد.',
+ 'stock_location_invalid_chars' => 'محل نگهداری سهام نمی تواند حاوی ـ باشد.',
+ 'stock_location_required' => 'مکان سهام یک قسمت مورد نیاز است.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'ستون 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'طرح بندی پیشنهادات جستجو',
+ 'suggestions_second_column' => 'ستون 2',
+ 'suggestions_third_column' => 'ستون 3',
+ 'system_conf' => 'تنظیم و تنظیم',
+ 'system_info' => 'اطلاعات سیستم',
+ 'table' => 'جدول',
+ 'table_configuration' => 'پیکربندی جدول',
+ 'takings_printer' => 'چاپگر رسید',
+ 'tax' => 'مالیات',
+ 'tax_category' => 'طبقه بندی مالیات',
+ 'tax_category_duplicate' => 'دسته مالیاتی وارد شده در حال حاضر وجود دارد.',
+ 'tax_category_invalid_chars' => 'دسته مالیاتی وارد شده نامعتبر است.',
+ 'tax_category_required' => 'طبقه بندی مالیات لازم است.',
+ 'tax_category_used' => 'طبقه بندی مالیات نمی تواند حذف شود زیرا در حال استفاده است.',
+ 'tax_configuration' => 'پیکربندی مالیات',
+ 'tax_decimals' => 'اعشار مالیاتی',
+ 'tax_id' => 'شناسه مالیاتی',
+ 'tax_included' => 'با احتساب مالیات',
+ 'theme' => 'موضوع',
+ 'theme_preview' => '',
+ 'thousands_separator' => 'هزاران نفر',
+ 'timezone' => 'منطقه زمانی',
+ 'timezone_error' => 'منطقه زمانی اوسپوس با منطقه زمانی محلی شما متفاوت است.',
+ 'top' => 'بالا',
+ 'use_destination_based_tax' => 'استفاده از مالیات بر مبنای مقصد',
+ 'user_timezone' => 'منطقه زمانی محلی:',
+ 'website' => 'سایت اینترنتی',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'پشتیبانی سفارش کار',
+ 'work_order_format' => 'قالب سفارش کار',
];
diff --git a/app/Language/fa/Login.php b/app/Language/fa/Login.php
index 4513d74f2..8c55d51aa 100644
--- a/app/Language/fa/Login.php
+++ b/app/Language/fa/Login.php
@@ -1,25 +1,30 @@
"من روبات نیستم.",
- "go" => "برو",
- "invalid_gcaptcha" => "نامعتبر من یک روبات نیستم.",
- "invalid_installation" => "نصب صحیح نیست ، پرونده php.ini خود را بررسی کنید.",
- "invalid_username_and_password" => "نام کاربری یا گذرواژه نامعتبر است.",
- "login" => "وارد شدن",
- "logout" => "",
- "migration_needed" => "",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "کلمه عبور",
- "required_username" => "",
- "username" => "نام کاربری",
- "welcome" => "",
+ "gcaptcha" => "من روبات نیستم.",
+ "go" => "برو",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "نامعتبر من یک روبات نیستم.",
+ "invalid_installation" => "نصب صحیح نیست ، پرونده php.ini خود را بررسی کنید.",
+ "invalid_username_and_password" => "نام کاربری یا گذرواژه نامعتبر است.",
+ "login" => "وارد شدن",
+ "logout" => "",
+ "migrating_database" => "در حال انتقال پایگاه داده",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "پایگاه داده با موفقیت منتقل شد!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "کلمه عبور",
+ "required_username" => "",
+ "username" => "نام کاربری",
+ "welcome" => ""
];
diff --git a/app/Language/fa/Sales.php b/app/Language/fa/Sales.php
index 2ea23afcc..68d1cc7aa 100644
--- a/app/Language/fa/Sales.php
+++ b/app/Language/fa/Sales.php
@@ -1,231 +1,235 @@
"امتیازهای موجود",
- "rewards_package" => "پاداش",
- "rewards_remaining_balance" => "امتیاز باقی مانده مقدار باقی مانده است",
- "account_number" => "حساب #",
- "add_payment" => "افزودن پرداخت",
- "amount_due" => "مبلغ پرداختی",
- "amount_tendered" => "مبلغ مناقصه",
- "authorized_signature" => "امضای مجاز",
- "cancel_sale" => "لغو",
- "cash" => "نقدی",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "",
- "cash_deposit" => "سپرده نقدی",
- "cash_filter" => "نقدی",
- "change_due" => "تغییر بدهی",
- "change_price" => "تغییر قیمت فروش",
- "check" => "بررسی",
- "check_balance" => "باقی مانده را بررسی کنید",
- "check_filter" => "بررسی",
- "close" => "",
- "comment" => "اظهار نظر",
- "comments" => "نظرات",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "کامل",
- "confirm_cancel_sale" => "آیا مطمئن هستید که می خواهید این فروش را پاک کنید؟ همه موارد پاک خواهند شد.",
- "confirm_delete" => "آیا مطمئن هستید که می خواهید فروش (های) خریداری شده را حذف کنید؟",
- "confirm_restore" => "آیا مطمئن هستید که می خواهید فروش (های) انتخابی را بازیابی کنید؟",
- "credit" => "کارت اعتباری",
- "credit_deposit" => "سپرده اعتباری",
- "credit_filter" => "",
- "current_table" => "",
- "customer" => "مشتری",
- "customer_address" => "نشانی",
- "customer_discount" => "تخفیف",
- "customer_email" => "پست الکترونیک",
- "customer_location" => "محل",
- "customer_mailchimp_status" => "وضعیت Mailchimp",
- "customer_optional" => "(مورد نیاز برای پرداخت مقررات)",
- "customer_required" => "(ضروری)",
- "customer_total" => "جمع",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "تاریخ فروش",
- "date_range" => "محدوده زمانی",
- "date_required" => "یک تاریخ صحیح باید وارد شود.",
- "date_type" => "تاریخ یک زمینه ضروری است.",
- "debit" => "کارت اعتباری",
- "debit_filter" => "",
- "delete" => "مجاز کردن حذف",
- "delete_confirmation" => "آیا مطمئن هستید که می خواهید این فروش را حذف کنید؟ این عملکرد قابل بازگشت نیست.",
- "delete_entire_sale" => "حذف فروش کل",
- "delete_successful" => "حذف موفقیت آمیز است.",
- "delete_unsuccessful" => "حذف فروش انجام نشد.",
- "description_abbrv" => "سقوط",
- "discard" => "دور انداختن",
- "discard_quote" => "",
- "discount" => "دیسک",
- "discount_included" => "٪ تخفیف",
- "discount_short" => "٪",
- "due" => "ناشی از",
- "due_filter" => "ناشی از",
- "edit" => "ویرایش",
- "edit_item" => "ویرایش آیتم",
- "edit_sale" => "ویرایش فروش",
- "email_receipt" => "دریافت ایمیل",
- "employee" => "کارمند",
- "entry" => "ورود",
- "error_editing_item" => "خطا در ویرایش مورد",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "یافتن یا اسکن کردن مورد",
- "find_or_scan_item_or_receipt" => "یافتن یا اسکن کردن مورد یا رسید",
- "giftcard" => "کارت هدیه",
- "giftcard_balance" => "مانده کارت هدیه",
- "giftcard_filter" => "",
- "giftcard_number" => "شماره کارت هدیه",
- "group_by_category" => "گروه بر اساس طبقه بندی",
- "group_by_type" => "گروه براساس نوع",
- "hsn" => "HSN",
- "id" => "شناسه فروش",
- "include_prices" => "شامل قیمت ها می شوید؟",
- "invoice" => "صورتحساب",
- "invoice_confirm" => "این فاکتور به ارسال می شود",
- "invoice_enable" => "شماره فاکتور",
- "invoice_filter" => "صورت حساب",
- "invoice_no_email" => "این مشتری آدرس ایمیل معتبری ندارد.",
- "invoice_number" => "صورتحساب #",
- "invoice_number_duplicate" => "فاکتور شماره{0} باید بی نظیر باشد.",
- "invoice_sent" => "فاکتور ارسال شده به",
- "invoice_total" => "فاکتور کل",
- "invoice_type_custom_invoice" => "فاکتور سفارشی (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "فاکتور مالیاتی سفارشی (custom_tax_invoice.php)",
- "invoice_type_invoice" => "فاکتور (invoice.php)",
- "invoice_type_tax_invoice" => "فاکتور مالیاتی (tax_invoice.php)",
- "invoice_unsent" => "فاکتور نتوانست به ارسال شود",
- "invoice_update" => "بازگو",
- "item_insufficient_of_stock" => "این کالا سهام کافی ندارد.",
- "item_name" => "نام مورد",
- "item_number" => "مورد #",
- "item_out_of_stock" => "مورد خارج از بورس.",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "حالت ثبت نام",
- "must_enter_numeric" => "مقدار پیشنهادی باید یک عدد باشد.",
- "must_enter_numeric_giftcard" => "شماره کارت هدیه باید یک عدد باشد.",
- "new_customer" => "مشتری جدید",
- "new_item" => "گزینه جدید",
- "no_description" => "بدون توضیح",
- "no_filter" => "همه",
- "no_items_in_cart" => "هیچ کالایی در سبد خرید وجود ندارد. ر.",
- "no_sales_to_display" => "بدون فروش برای نمایش.",
- "none_selected" => "شما هیچ فروشی (فروش) را برای حذف انتخاب نکرده اید.",
- "nontaxed_ind" => "",
- "not_authorized" => "این اقدام مجاز نیست.",
- "one_or_multiple" => "حراجی)",
- "payment" => "نوع پرداخت",
- "payment_amount" => "میزان",
- "payment_not_cover_total" => "مبلغ پرداخت باید بیشتر یا برابر با Total باشد.",
- "payment_type" => "نوع",
- "payments" => "",
- "payments_total" => "کل پرداختها",
- "price" => "قیمت",
- "print_after_sale" => "چاپ بعد از فروش",
- "quantity" => "تعداد",
- "quantity_less_than_reorder_level" => "هشدار: مقدار مورد نظر برای آن مورد کمتر از سطح ترتیب است.",
- "quantity_less_than_zero" => "هشدار: مقدار مورد نظر کافی نیست. شما هنوز هم می توانید فروش را پردازش کنید ، اما موجودی خود را حسابرسی کنید.",
- "quantity_of_items" => "مقدار{0} مورد",
- "quote" => "نقل قول",
- "quote_number" => "تعداد نقل قول",
- "quote_number_duplicate" => "نقل قول شماره باید بی نظیر باشد.",
- "quote_sent" => "نقل قول ارسال شد به",
- "quote_unsent" => "نقل قول ارسال نشد به",
- "receipt" => "رسید فروش",
- "receipt_no_email" => "این مشتری آدرس ایمیل معتبری ندارد.",
- "receipt_number" => "فروش #",
- "receipt_sent" => "رسید به",
- "receipt_unsent" => "رسید ارسال نشد به",
- "refund" => "نوع بازپرداخت",
- "register" => "ثبت فروش",
- "remove_customer" => "حذف مشتری",
- "remove_discount" => "",
- "return" => "برگشت",
- "rewards" => "امتیاز پاداش",
- "rewards_balance" => "تعادل امتیاز پاداش",
- "sale" => "فروش",
- "sale_by_invoice" => "فروش توسط فاکتور",
- "sale_for_customer" => "مشتری:",
- "sale_time" => "زمان",
- "sales_tax" => "مالیات بر فروش",
- "sales_total" => "",
- "select_customer" => "مشتری را انتخاب کنید",
- "send_invoice" => "فاکتور بفرستید",
- "send_quote" => "ارسال نقل قول",
- "send_receipt" => "ارسال رسید",
- "send_work_order" => "ارسال سفارش کار",
- "serial" => "سریال",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "نمایش فاکتور",
- "show_receipt" => "نمایش رسید",
- "start_typing_customer_name" => "شروع به تایپ جزئیات مشتری ...",
- "start_typing_item_name" => "شروع به تایپ نام مورد یا اسکن بارکد ...",
- "stock" => "موجودی",
- "stock_location" => "موقعیت مکانی سهام",
- "sub_total" => "فرعی",
- "successfully_deleted" => "شما با موفقیت حذف شده اید",
- "successfully_restored" => "شما با موفقیت ترمیم کردید",
- "successfully_suspended_sale" => "فروش موفق به حالت تعلیق درآمد.",
- "successfully_updated" => "به روزرسانی فروش موفقیت آمیز است.",
- "suspend_sale" => "تعلیق",
- "suspended_doc_id" => "سند",
- "suspended_sale_id" => "شناسه",
- "suspended_sales" => "معلق",
- "table" => "جدول",
- "takings" => "فروش روزانه",
- "tax" => "مالیات",
- "tax_id" => "شناسه مالیاتی",
- "tax_invoice" => "فاکتور مالیات",
- "tax_percent" => "مالیات ٪",
- "taxed_ind" => "T",
- "total" => "جمع",
- "total_tax_exclusive" => "پرداخت مالیات",
- "transaction_failed" => "معاملات معامله نشد.",
- "unable_to_add_item" => "افزودن مورد به فروش انجام نشد",
- "unsuccessfully_deleted" => "حذف (فروش) انجام نشد.",
- "unsuccessfully_restored" => "بازگرداندن فروش (ها) انجام نشد.",
- "unsuccessfully_suspended_sale" => "تعلیق فروش انجام نشد.",
- "unsuccessfully_updated" => "به روزرسانی فروش انجام نشد.",
- "unsuspend" => "لغو",
- "unsuspend_and_delete" => "عمل",
- "update" => "به روز رسانی",
- "upi" => "UPI",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "سفارش کار",
- "work_order_number" => "شماره سفارش کار",
- "work_order_number_duplicate" => "شماره سفارش کار باید منحصر به فرد باشد.",
- "work_order_sent" => "دستور کار ارسال شده به",
- "work_order_unsent" => "دستور کار نتوانست به ارسال شود",
+ 'account_number' => 'حساب #',
+ 'add_payment' => 'افزودن پرداخت',
+ 'amount_due' => 'مبلغ پرداختی',
+ 'amount_tendered' => 'مبلغ مناقصه',
+ 'authorized_signature' => 'امضای مجاز',
+ 'cancel_sale' => 'لغو',
+ 'cash' => 'نقدی',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => '',
+ 'cash_deposit' => 'سپرده نقدی',
+ 'cash_filter' => 'نقدی',
+ 'change_due' => 'تغییر بدهی',
+ 'change_price' => 'تغییر قیمت فروش',
+ 'check' => 'بررسی',
+ 'check_balance' => 'باقی مانده را بررسی کنید',
+ 'check_filter' => 'بررسی',
+ 'close' => '',
+ 'comment' => 'اظهار نظر',
+ 'comments' => 'نظرات',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'کامل',
+ 'confirm_cancel_sale' => 'آیا مطمئن هستید که می خواهید این فروش را پاک کنید؟ همه موارد پاک خواهند شد.',
+ 'confirm_delete' => 'آیا مطمئن هستید که می خواهید فروش (های) خریداری شده را حذف کنید؟',
+ 'confirm_restore' => 'آیا مطمئن هستید که می خواهید فروش (های) انتخابی را بازیابی کنید؟',
+ 'credit' => 'کارت اعتباری',
+ 'credit_deposit' => 'سپرده اعتباری',
+ 'credit_filter' => '',
+ 'current_table' => '',
+ 'customer' => 'مشتری',
+ 'customer_address' => 'نشانی',
+ 'customer_discount' => 'تخفیف',
+ 'customer_email' => 'پست الکترونیک',
+ 'customer_location' => 'محل',
+ 'customer_mailchimp_status' => 'وضعیت Mailchimp',
+ 'customer_optional' => '(مورد نیاز برای پرداخت مقررات)',
+ 'customer_required' => '(ضروری)',
+ 'customer_total' => 'جمع',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'امتیازهای موجود',
+ 'daily_sales' => '',
+ 'date' => 'تاریخ فروش',
+ 'date_range' => 'محدوده زمانی',
+ 'date_required' => 'یک تاریخ صحیح باید وارد شود.',
+ 'date_type' => 'تاریخ یک زمینه ضروری است.',
+ 'debit' => 'کارت اعتباری',
+ 'debit_filter' => '',
+ 'delete' => 'مجاز کردن حذف',
+ 'delete_confirmation' => 'آیا مطمئن هستید که می خواهید این فروش را حذف کنید؟ این عملکرد قابل بازگشت نیست.',
+ 'delete_entire_sale' => 'حذف فروش کل',
+ 'delete_successful' => 'حذف موفقیت آمیز است.',
+ 'delete_unsuccessful' => 'حذف فروش انجام نشد.',
+ 'description_abbrv' => 'سقوط',
+ 'discard' => 'دور انداختن',
+ 'discard_quote' => '',
+ 'discount' => 'دیسک',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '٪ تخفیف',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '٪',
+ 'due' => 'ناشی از',
+ 'due_filter' => 'ناشی از',
+ 'edit' => 'ویرایش',
+ 'edit_item' => 'ویرایش آیتم',
+ 'edit_sale' => 'ویرایش فروش',
+ 'email_receipt' => 'دریافت ایمیل',
+ 'employee' => 'کارمند',
+ 'entry' => 'ورود',
+ 'error_editing_item' => 'خطا در ویرایش مورد',
+ 'find_or_scan_item' => 'یافتن یا اسکن کردن مورد',
+ 'find_or_scan_item_or_receipt' => 'یافتن یا اسکن کردن مورد یا رسید',
+ 'giftcard' => 'کارت هدیه',
+ 'giftcard_balance' => 'مانده کارت هدیه',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'شماره کارت هدیه',
+ 'group_by_category' => 'گروه بر اساس طبقه بندی',
+ 'group_by_type' => 'گروه براساس نوع',
+ 'hsn' => 'HSN',
+ 'id' => 'شناسه فروش',
+ 'include_prices' => 'شامل قیمت ها می شوید؟',
+ 'invoice' => 'صورتحساب',
+ 'invoice_confirm' => 'این فاکتور به ارسال می شود',
+ 'invoice_enable' => 'شماره فاکتور',
+ 'invoice_filter' => 'صورت حساب',
+ 'invoice_no_email' => 'این مشتری آدرس ایمیل معتبری ندارد.',
+ 'invoice_number' => 'صورتحساب #',
+ 'invoice_number_duplicate' => 'فاکتور شماره{0} باید بی نظیر باشد.',
+ 'invoice_sent' => 'فاکتور ارسال شده به',
+ 'invoice_total' => 'فاکتور کل',
+ 'invoice_type_custom_invoice' => 'فاکتور سفارشی (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'فاکتور مالیاتی سفارشی (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'فاکتور (invoice.php)',
+ 'invoice_type_tax_invoice' => 'فاکتور مالیاتی (tax_invoice.php)',
+ 'invoice_unsent' => 'فاکتور نتوانست به ارسال شود',
+ 'invoice_update' => 'بازگو',
+ 'item_insufficient_of_stock' => 'این کالا سهام کافی ندارد.',
+ 'item_name' => 'نام مورد',
+ 'item_number' => 'مورد #',
+ 'item_out_of_stock' => 'مورد خارج از بورس.',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'حالت ثبت نام',
+ 'must_enter_numeric' => 'مقدار پیشنهادی باید یک عدد باشد.',
+ 'must_enter_numeric_giftcard' => 'شماره کارت هدیه باید یک عدد باشد.',
+ 'must_enter_reference_code' => 'شماره مرجع/بازیابی باید وارد شود.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'مشتری جدید',
+ 'new_item' => 'گزینه جدید',
+ 'no_description' => 'بدون توضیح',
+ 'no_filter' => 'همه',
+ 'no_items_in_cart' => 'هیچ کالایی در سبد خرید وجود ندارد. ر.',
+ 'no_sales_to_display' => 'بدون فروش برای نمایش.',
+ 'none_selected' => 'شما هیچ فروشی (فروش) را برای حذف انتخاب نکرده اید.',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => 'این اقدام مجاز نیست.',
+ 'one_or_multiple' => 'حراجی)',
+ 'payment' => 'نوع پرداخت',
+ 'payment_amount' => 'میزان',
+ 'payment_not_cover_total' => 'مبلغ پرداخت باید بیشتر یا برابر با Total باشد.',
+ 'payment_type' => 'نوع',
+ 'payments' => '',
+ 'payments_total' => 'کل پرداختها',
+ 'price' => 'قیمت',
+ 'print_after_sale' => 'چاپ بعد از فروش',
+ 'quantity' => 'تعداد',
+ 'quantity_less_than_reorder_level' => 'هشدار: مقدار مورد نظر برای آن مورد کمتر از سطح ترتیب است.',
+ 'quantity_less_than_zero' => 'هشدار: مقدار مورد نظر کافی نیست. شما هنوز هم می توانید فروش را پردازش کنید ، اما موجودی خود را حسابرسی کنید.',
+ 'quantity_of_items' => 'مقدار{0} مورد',
+ 'quote' => 'نقل قول',
+ 'quote_number' => 'تعداد نقل قول',
+ 'quote_number_duplicate' => 'نقل قول شماره باید بی نظیر باشد.',
+ 'quote_sent' => 'نقل قول ارسال شد به',
+ 'quote_unsent' => 'نقل قول ارسال نشد به',
+ 'receipt' => 'رسید فروش',
+ 'receipt_no_email' => 'این مشتری آدرس ایمیل معتبری ندارد.',
+ 'receipt_number' => 'فروش #',
+ 'receipt_sent' => 'رسید به',
+ 'receipt_unsent' => 'رسید ارسال نشد به',
+ 'reference_code' => 'کد مرجع پرداخت',
+ 'reference_code_invalid_characters' => 'کد مرجع باید فقط شامل حروف و اعداد باشد.',
+ 'reference_code_length_error' => 'طول کد مرجع نامعتبر است.',
+ 'refund' => 'نوع بازپرداخت',
+ 'register' => 'ثبت فروش',
+ 'remove_customer' => 'حذف مشتری',
+ 'remove_discount' => '',
+ 'return' => 'برگشت',
+ 'rewards' => 'امتیاز پاداش',
+ 'rewards_balance' => 'تعادل امتیاز پاداش',
+ 'rewards_package' => 'پاداش',
+ 'rewards_remaining_balance' => 'امتیاز باقی مانده مقدار باقی مانده است',
+ 'sale' => 'فروش',
+ 'sale_by_invoice' => 'فروش توسط فاکتور',
+ 'sale_for_customer' => 'مشتری:',
+ 'sale_time' => 'زمان',
+ 'sales_tax' => 'مالیات بر فروش',
+ 'sales_total' => '',
+ 'select_customer' => 'مشتری را انتخاب کنید',
+ 'send_invoice' => 'فاکتور بفرستید',
+ 'send_quote' => 'ارسال نقل قول',
+ 'send_receipt' => 'ارسال رسید',
+ 'send_work_order' => 'ارسال سفارش کار',
+ 'serial' => 'سریال',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'نمایش فاکتور',
+ 'show_receipt' => 'نمایش رسید',
+ 'start_typing_customer_name' => 'شروع به تایپ جزئیات مشتری ...',
+ 'start_typing_item_name' => 'شروع به تایپ نام مورد یا اسکن بارکد ...',
+ 'stock' => 'موجودی',
+ 'stock_location' => 'موقعیت مکانی سهام',
+ 'sub_total' => 'فرعی',
+ 'successfully_deleted' => 'شما با موفقیت حذف شده اید',
+ 'successfully_restored' => 'شما با موفقیت ترمیم کردید',
+ 'successfully_suspended_sale' => 'فروش موفق به حالت تعلیق درآمد.',
+ 'successfully_updated' => 'به روزرسانی فروش موفقیت آمیز است.',
+ 'suspend_sale' => 'تعلیق',
+ 'suspended_doc_id' => 'سند',
+ 'suspended_sale_id' => 'شناسه',
+ 'suspended_sales' => 'معلق',
+ 'table' => 'جدول',
+ 'takings' => 'فروش روزانه',
+ 'tax' => 'مالیات',
+ 'tax_id' => 'شناسه مالیاتی',
+ 'tax_invoice' => 'فاکتور مالیات',
+ 'tax_percent' => 'مالیات ٪',
+ 'taxed_ind' => 'T',
+ 'total' => 'جمع',
+ 'total_tax_exclusive' => 'پرداخت مالیات',
+ 'transaction_failed' => 'معاملات معامله نشد.',
+ 'unable_to_add_item' => 'افزودن مورد به فروش انجام نشد',
+ 'unsuccessfully_deleted' => 'حذف (فروش) انجام نشد.',
+ 'unsuccessfully_restored' => 'بازگرداندن فروش (ها) انجام نشد.',
+ 'unsuccessfully_suspended_sale' => 'تعلیق فروش انجام نشد.',
+ 'unsuccessfully_updated' => 'به روزرسانی فروش انجام نشد.',
+ 'unsuspend' => 'لغو',
+ 'unsuspend_and_delete' => 'عمل',
+ 'update' => 'به روز رسانی',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'سفارش کار',
+ 'work_order_number' => 'شماره سفارش کار',
+ 'work_order_number_duplicate' => 'شماره سفارش کار باید منحصر به فرد باشد.',
+ 'work_order_sent' => 'دستور کار ارسال شده به',
+ 'work_order_unsent' => 'دستور کار نتوانست به ارسال شود',
];
diff --git a/app/Language/fr/Config.php b/app/Language/fr/Config.php
index 78451ea8c..d4831eefa 100644
--- a/app/Language/fr/Config.php
+++ b/app/Language/fr/Config.php
@@ -1,332 +1,335 @@
"Adresse de l'entreprise",
- "address_required" => "L'adresse de l'entreprise est un champ obligatoire.",
- "all_set" => "Toutes les permissions de fichier sont correctement configurées !",
- "allow_duplicate_barcodes" => "Autoriser les codes à barres en double",
- "apostrophe" => "apostrophe",
- "backup_button" => "Sauvegarde",
- "backup_database" => "Sauvegarder la base de données",
- "barcode" => "Code à barre",
- "barcode_company" => "Nom de l'entreprise",
- "barcode_configuration" => "Configuration du code à barre",
- "barcode_content" => "Contenu du code à barre",
- "barcode_first_row" => "Ligne 1",
- "barcode_font" => "Police d'écriture",
- "barcode_formats" => "Formats d'entrée",
- "barcode_generate_if_empty" => "Générer si vide.",
- "barcode_height" => "Hauteur (px)",
- "barcode_id" => "Id/Nom d'article",
- "barcode_info" => "Configuration des informations du code à barre",
- "barcode_layout" => "Disposition du code à barre",
- "barcode_name" => "Nom",
- "barcode_number" => "Code à barre",
- "barcode_number_in_row" => "Numéro dans la ligne",
- "barcode_page_cellspacing" => "Afficher l'espacement de cellules de la page.",
- "barcode_page_width" => "Afficher la largeur de la page",
- "barcode_price" => "Prix",
- "barcode_second_row" => "Ligne 2",
- "barcode_third_row" => "Ligne 3",
- "barcode_tooltip" => "Avertissement : cette fonctionnalité peut entraîner l'importation ou la création de doublons. Ne pas utiliser si vous ne voulez pas de codes à barres en double.",
- "barcode_type" => "Type de Code à barre",
- "barcode_width" => "Largeur (px)",
- "bottom" => "Pied de page",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Décimales",
- "cash_decimals_tooltip" => "Si les décimales et les décimales monétaires sont les mêmes, aucun arrondi ne sera effectué.",
- "cash_rounding" => "Arrondis de trésorerie",
- "category_dropdown" => "Afficher les catégories dans un menu déroulant",
- "center" => "Centre",
- "change_apperance_tooltip" => "",
- "comma" => "virgule",
- "company" => "Nome de l'Entreprise",
- "company_avatar" => "",
- "company_change_image" => "Changer l'image",
- "company_logo" => "Logo de l'Entreprise",
- "company_remove_image" => "Supprimer l'image",
- "company_required" => "Le nom d'entreprise est requis",
- "company_select_image" => "Sélectionner l'image",
- "company_website_url" => "Le site Web de l'entreprise n'est pas une URL valide (http: //...).",
- "country_codes" => "Codes de pays",
- "country_codes_tooltip" => "Liste des codes de pays, séparés par des virgules, pour la recherche d'adresses nominatives.",
- "currency_code" => "Code de devise",
- "currency_decimals" => "Décimales",
- "currency_symbol" => "Symbole Monétaire",
- "current_employee_only" => "",
- "customer_reward" => "Récompense",
- "customer_reward_duplicate" => "La récompense doit être unique.",
- "customer_reward_enable" => "Activer les récompenses client",
- "customer_reward_invalid_chars" => "La récompense ne peut pas contenir '_'",
- "customer_reward_required" => "La récompense est un champ obligatoire",
- "customer_sales_tax_support" => "Soutien à la taxe de vente au client",
- "date_or_time_format" => "Filtre de date et d'heure",
- "datetimeformat" => "Format de la date et de l'heure",
- "decimal_point" => "Virgule",
- "default_barcode_font_size_number" => "La taille de la police du code-barres par défaut doit être un nombre.",
- "default_barcode_font_size_required" => "La taille de police du code-barres par défaut est un champ obligatoire.",
- "default_barcode_height_number" => "La hauteur du code-barres par défaut doit être un nombre.",
- "default_barcode_height_required" => "La hauteur du code-barres par défaut est un champ obligatoire.",
- "default_barcode_num_in_row_number" => "Le numéro de code-barres par défaut dans la ligne doit être un nombre.",
- "default_barcode_num_in_row_required" => "Le numéro de code-barres par défaut dans la ligne est un champ obligatoire.",
- "default_barcode_page_cellspacing_number" => "Page de codes-barres par défaut L'espace-cellule doit être un nombre.",
- "default_barcode_page_cellspacing_required" => "Page Barcode par défaut L'espacement des cellules est un champ obligatoire.",
- "default_barcode_page_width_number" => "La largeur de page du code à barres par défaut doit être un nombre.",
- "default_barcode_page_width_required" => "Largeur de page de code-barres par défaut est un champ obligatoire.",
- "default_barcode_width_number" => "La largeur de code à barres par défaut doit être un nombre.",
- "default_barcode_width_required" => "La largeur de code à barres par défaut est un champ obligatoire.",
- "default_item_columns" => "Colonnes d'article visibles par défaut",
- "default_origin_tax_code" => "Code de taxe d'origine par défaut",
- "default_receivings_discount" => "Rabais de réception par défaut",
- "default_receivings_discount_number" => "Rabais de réception par défaut doit être numérique.",
- "default_receivings_discount_required" => "Rabais de réception par défaut est requis.",
- "default_sales_discount" => "Remboursement des ventes par défaut %",
- "default_sales_discount_number" => "Le rabais de vente par défaut doit être un nombre.",
- "default_sales_discount_required" => "La remise sur les ventes par défaut est un champ obligatoire.",
- "default_tax_category" => "Catégorie fiscale par défaut",
- "default_tax_code" => "Code fiscal par défaut",
- "default_tax_jurisdiction" => "Juridiction fiscale par défaut",
- "default_tax_name_number" => "Le nom de taxe par défaut doit être une chaîne.",
- "default_tax_name_required" => "Le nom de taxe par défaut est un champ obligatoire.",
- "default_tax_rate" => "Taux d'Imposition par Défaut",
- "default_tax_rate_1" => "Taux d'Imposition 1",
- "default_tax_rate_2" => "Taux d'Imposition 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Le taux de taxe par défaut doit être un nombre.",
- "default_tax_rate_required" => "Le taux de taxe par défaut est un champ obligatoire.",
- "derive_sale_quantity" => "Autoriser la quantité de vente dérivée",
- "derive_sale_quantity_tooltip" => "Si coché, un nouveau type d'article sera fourni pour les articles commandés par montant étendu",
- "dinner_table" => "Table",
- "dinner_table_duplicate" => "La table doit être unique.",
- "dinner_table_enable" => "Activer les tables de dîner",
- "dinner_table_invalid_chars" => "Le nom de la table ne peut pas contenir '_'.",
- "dinner_table_required" => "La table est un champ obligatoire.",
- "dot" => "point",
- "email" => "Courriel",
- "email_configuration" => "Email Configuration",
- "email_mailpath" => "Path de Sendmail",
- "email_protocol" => "Protocol",
- "email_receipt_check_behaviour" => "Case à cocher Reçu de courrier électronique",
- "email_receipt_check_behaviour_always" => "Toujours vérifié",
- "email_receipt_check_behaviour_last" => "Se souvenir de la dernière sélection",
- "email_receipt_check_behaviour_never" => "Toujours décoché",
- "email_smtp_crypto" => "SMTP Cryptage",
- "email_smtp_host" => "SMTP Serveur",
- "email_smtp_pass" => "Mot de passe SMTP",
- "email_smtp_port" => "Port SMTP",
- "email_smtp_timeout" => "Délai SMTP (s)",
- "email_smtp_user" => "Nom d'utilisateur SMTP",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Appliquer la confidentialité",
- "enforce_privacy_tooltip" => "Protéger la confidentialité des clients en imposant le brouillage des données en cas de suppression de leurs données",
- "fax" => "Fax",
- "file_perm" => "Il y a des problèmes avec les permissions de fichier. Veuillez corriger et recharger la page.",
- "financial_year" => "Début de l'année fiscale",
- "financial_year_apr" => "1er avril",
- "financial_year_aug" => "1er août",
- "financial_year_dec" => "1er décembre",
- "financial_year_feb" => "1er février",
- "financial_year_jan" => "1er janvier",
- "financial_year_jul" => "1er juillet",
- "financial_year_jun" => "1er juin",
- "financial_year_mar" => "1er mars",
- "financial_year_may" => "1er mai",
- "financial_year_nov" => "1er novembre",
- "financial_year_oct" => "1er octobre",
- "financial_year_sep" => "1er septembre",
- "floating_labels" => "Étiquettes flottantes",
- "gcaptcha_enable" => "Page de connexion reCAPTCHA",
- "gcaptcha_secret_key" => "clé secrète reCAPTCHA",
- "gcaptcha_secret_key_required" => "La clé secrète reCAPTCHA est un champ obligatoire",
- "gcaptcha_site_key" => "clé de site reCAPTCHA",
- "gcaptcha_site_key_required" => "La clé de site reCAPTCHA est un champ obligatoire",
- "gcaptcha_tooltip" => "Protégez la page de connexion avec Google reCAPTCHA, cliquez sur l'icône d'une paire de clés API.",
- "general" => "General",
- "general_configuration" => "General Configuration",
- "giftcard_number" => "Numéro de carte-cadeau",
- "giftcard_random" => "Générer aléatoire",
- "giftcard_series" => "Générer en série",
- "image_allowed_file_types" => "Types de fichier autorisés",
- "image_max_height_tooltip" => "Hauteur maximale autorisée en pixels pour le téléversement d'images.",
- "image_max_size_tooltip" => "Taille de fichier maximale autorisée en kilobytes pour le téléversement d'images.",
- "image_max_width_tooltip" => "Largeur maximale autorisée en pixels pour le téléversement d'images.",
- "image_restrictions" => "Restrictions sur le téléversement d'images",
- "include_hsn" => "Prise en charge des codes HSN",
- "info" => "Entreprise",
- "info_configuration" => "Çonfiguration de l'Entreprise",
- "input_groups" => "Groupes d'entrée",
- "integrations" => "Intégrations",
- "integrations_configuration" => "Intégration de parties tierces",
- "invoice" => "Facture",
- "invoice_configuration" => "Paramètres d'impression de facture",
- "invoice_default_comments" => "Commentaires par facture par défaut",
- "invoice_email_message" => "Modèle de courrier électronique de facture",
- "invoice_enable" => "Activer la facturation",
- "invoice_printer" => "Imprimante de facture",
- "invoice_type" => "Type de facturation",
- "is_readable" => "est lisible, mais les permissions sont incorrectes. Définir à 640 ou 660 et rafraîchir.",
- "is_writable" => "is écrivable, mais les permissions sont plus hautes que 750.",
- "item_markup" => "",
- "jsprintsetup_required" => "Attention: Cette fonctionnalité ne sera active que si l'extension FireFox jsPrintSetup est installée. Enregistrer quand même ?",
- "language" => "Langue",
- "last_used_invoice_number" => "Dernier numéro de facture utilisé",
- "last_used_quote_number" => "Dernier numéro de devis utilisé",
- "last_used_work_order_number" => "Dernier numéro W / O utilisé",
- "left" => "Gauche",
- "license" => "Licence",
- "license_configuration" => "Déclaration de licence",
- "line_sequence" => "Séquence de lignes",
- "lines_per_page" => "Lignes par page",
- "lines_per_page_number" => "Les lignes par page doivent être un nombre.",
- "lines_per_page_required" => "Lignes par page est un champ obligatoire.",
- "locale" => "Localisation",
- "locale_configuration" => "Configuration de localisation",
- "locale_info" => "Informations de configuration de localisation",
- "location" => "Inventaire",
- "location_configuration" => "Emplacements de stock",
- "location_info" => "Informations de configuration de l'emplacement",
- "login_form" => "Style du formulaire de connexion",
- "logout" => "Voulez-vous faire une sauvegarde avant de vous déconnecter ? Cliquez sur [OK] pour sauvegarder ou sur [Annuler] pour vous déconnecter.",
- "mailchimp" => "MailChimp",
- "mailchimp_api_key" => "Clé API MailChimp",
- "mailchimp_configuration" => "Configuration de MailChimp",
- "mailchimp_key_successfully" => "La clé API est valide.",
- "mailchimp_key_unsuccessfully" => "La clé de l'API est invalide.",
- "mailchimp_lists" => "Liste(s) MailChimp",
- "mailchimp_tooltip" => "Cliquez sur l'icône pour une clé API.",
- "message" => "Message",
- "message_configuration" => "Message Configuration",
- "msg_msg" => "Message texte enregistré",
- "msg_msg_placeholder" => "Si vous souhaitez utiliser un modèle de SMS, enregistrez votre message ici. Sinon, laisser la boîte en blanc.",
- "msg_pwd" => "SMS-API Password",
- "msg_pwd_required" => "SMS-API Password est un champ obligatoire",
- "msg_src" => "ID de l'expéditeur de SMS-API",
- "msg_src_required" => "L'ID de l'expéditeur de SMS-API est un champ obligatoire",
- "msg_uid" => "Nom d'utilisateur de l'API SMS",
- "msg_uid_required" => "Le nom d'utilisateur de l'API SMS est un champ obligatoire",
- "multi_pack_enabled" => "Ensembles multiples par article",
- "no_risk" => "Pas de risques de sécurité/vulnérabilité.",
- "none" => "none",
- "notify_alignment" => "Position contextuelle de notification",
- "number_format" => "Number Format",
- "number_locale" => "Localisation",
- "number_locale_invalid" => "L'environnement local entré est invalide. Vérifiez le lien dans l'info-bulle pour trouver un environnement local valide.",
- "number_locale_required" => "Number Locale est un champ obligatoire.",
- "number_locale_tooltip" => "Trouvez un lieu approprié grâce à ce lien.",
- "os_timezone" => "Fuseau horaire d'OSPOS :",
- "ospos_info" => "Informations d'installation d'OSPOS",
- "payment_options_order" => "Ordre des options de paiement",
- "perm_risk" => "Des permissions incorrectement définies exposent ce logiciel a des risques de sécurité.",
- "phone" => "Téléphone",
- "phone_required" => "Téléphone de l'entreprise est un champ obligatoire.",
- "print_bottom_margin" => "Marge Bas",
- "print_bottom_margin_number" => "La marge inférieure doit être un nombre.",
- "print_bottom_margin_required" => "La marge inférieure est un champ obligatoire.",
- "print_delay_autoreturn" => "Retour automatique a la vente retarde",
- "print_delay_autoreturn_number" => "Retour automatique à la vente retarde est un champ obligatoire.",
- "print_delay_autoreturn_required" => "Retour automatique à la vente retarde doit être un nombre.",
- "print_footer" => "Pied de page imprimante",
- "print_header" => "Imprimer l'en-tête du navigateur",
- "print_left_margin" => "Marge Gauche",
- "print_left_margin_number" => "La marge gauche par défaut doit être un nombre.",
- "print_left_margin_required" => "La marge gauche par défaut est un champ obligatoire.",
- "print_receipt_check_behaviour" => "Imprimer la case à cocher Reçu",
- "print_receipt_check_behaviour_always" => "Toujours vérifié",
- "print_receipt_check_behaviour_last" => "Se souvenir de la dernière sélection",
- "print_receipt_check_behaviour_never" => "Toujours décoché",
- "print_right_margin" => "Marge Droit",
- "print_right_margin_number" => "La marge droite par défaut doit être un nombre.",
- "print_right_margin_required" => "La marge droite par défaut est un champ obligatoire.",
- "print_silently" => "Afficher la boîte de dialogue Imprimer",
- "print_top_margin" => "Margin Superieure",
- "print_top_margin_number" => "Margin Top doit être un nombre.",
- "print_top_margin_required" => "Margin Top est un champ obligatoire.",
- "quantity_decimals" => "Nombre de décimales",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Commentaires de devis par défaut",
- "receipt" => "Le reçu",
- "receipt_category" => "",
- "receipt_configuration" => "Paramètres d'impression du reçu",
- "receipt_default" => "Défaut",
- "receipt_font_size" => "Taille de font",
- "receipt_font_size_number" => "La taille de la font doit être un nombre.",
- "receipt_font_size_required" => "Taille de la font est un champ obligatoire.",
- "receipt_info" => "Informations de configuration du reçu",
- "receipt_printer" => "Imprimante de tickets",
- "receipt_short" => "Court",
- "receipt_show_company_name" => "Afficher le nom de l'entreprise",
- "receipt_show_description" => "Montrer la description",
- "receipt_show_serialnumber" => "Afficher le numéro de série",
- "receipt_show_tax_ind" => "Afficher les indicateurs de taxe",
- "receipt_show_taxes" => "Afficher les taxes",
- "receipt_show_total_discount" => "Afficher le rabais total",
- "receipt_template" => "Modèle de reçu",
- "receiving_calculate_average_price" => "Calc. prix moyen (Réception)",
- "recv_invoice_format" => "Format de la facture des factures",
- "register_mode_default" => "Mode de registre par défaut",
- "report_an_issue" => "Signaler un problème",
- "return_policy_required" => "Le Message est un champ requis.",
- "reward" => "Récompense",
- "reward_configuration" => "Configuration de récompense",
- "right" => "Droite",
- "sales_invoice_format" => "Format de la facture de vente",
- "sales_quote_format" => "Format de devis de vente",
- "mailpath_invalid" => "Chemin sendmail invalide. Seuls les lettres, chiffres, tirets, underscores, barres obliques et points sont autorisés.",
- "saved_successfully" => "Configuration enregistrer avec succès.",
- "saved_unsuccessfully" => "L'enregistrement de configuration a échoué.",
- "security_issue" => "Avertissement de faille de sécurité",
- "server_notice" => "Veuillez utiliser les informations ci-dessous pour signaler un problème.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Afficher l'icône du bureau",
- "statistics" => "Envoyer des statistiques",
- "statistics_tooltip" => "Envoyer des statistiques pour le développement et l'amélioration des fonctionnalités.",
- "stock_location" => "Emplacement du stock",
- "stock_location_duplicate" => "L'emplacement du stock doit être unique.",
- "stock_location_invalid_chars" => "L'emplacement de stockage ne peut pas contenir '_'.",
- "stock_location_required" => "L'emplacement du stock est un champ obligatoire.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Colonne 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Présentation des suggestions de recherche",
- "suggestions_second_column" => "Colonne 2",
- "suggestions_third_column" => "Colonne 3",
- "system_conf" => "Paramètres & Configuration",
- "system_info" => "System Info",
- "table" => "Table",
- "table_configuration" => "Configuration de la table",
- "takings_printer" => "Imprimante de reçu",
- "tax" => "Taxe",
- "tax_category" => "Catégorie fiscale",
- "tax_category_duplicate" => "La catégorie de taxe saisie existe déjà.",
- "tax_category_invalid_chars" => "La catégorie de taxe entrée est invalide.",
- "tax_category_required" => "La catégorie de taxe est requise.",
- "tax_category_used" => "La catégorie de taxe ne peut pas être supprimée car elle est utilisée.",
- "tax_configuration" => "Configuration de l'impôt",
- "tax_decimals" => "Décimales fiscales",
- "tax_id" => "Id de taxe",
- "tax_included" => "Taxe inclu",
- "theme" => "Thème",
- "theme_preview" => "Aperçu du thème :",
- "thousands_separator" => "Séparateur de milliers",
- "timezone" => "Fuseau Horaire",
- "timezone_error" => "Le fuseau horaire d'OSPOS est différent de votre fuseau horaire local.",
- "top" => "Haut",
- "use_destination_based_tax" => "Utiliser la taxe basée sur la destination",
- "user_timezone" => "Fuseau horaire local :",
- "website" => "Site Internet",
- "wholesale_markup" => "",
- "work_order_enable" => "Support de commande de travail",
- "work_order_format" => "Format de bon de travail",
+ 'address' => "Adresse de l'entreprise",
+ 'address_required' => "L'adresse de l'entreprise est un champ obligatoire.",
+ 'all_set' => 'Toutes les permissions de fichier sont correctement configurées !',
+ 'allow_duplicate_barcodes' => 'Autoriser les codes à barres en double',
+ 'apostrophe' => 'apostrophe',
+ 'backup_button' => 'Sauvegarde',
+ 'backup_database' => 'Sauvegarder la base de données',
+ 'barcode' => 'Code à barre',
+ 'barcode_company' => "Nom de l'entreprise",
+ 'barcode_configuration' => 'Configuration du code à barre',
+ 'barcode_content' => 'Contenu du code à barre',
+ 'barcode_first_row' => 'Ligne 1',
+ 'barcode_font' => "Police d'écriture",
+ 'barcode_formats' => "Formats d'entrée",
+ 'barcode_generate_if_empty' => 'Générer si vide.',
+ 'barcode_height' => 'Hauteur (px)',
+ 'barcode_id' => "Id/Nom d'article",
+ 'barcode_info' => 'Configuration des informations du code à barre',
+ 'barcode_layout' => 'Disposition du code à barre',
+ 'barcode_name' => 'Nom',
+ 'barcode_number' => 'Code à barre',
+ 'barcode_number_in_row' => 'Numéro dans la ligne',
+ 'barcode_page_cellspacing' => "Afficher l'espacement de cellules de la page.",
+ 'barcode_page_width' => 'Afficher la largeur de la page',
+ 'barcode_price' => 'Prix',
+ 'barcode_second_row' => 'Ligne 2',
+ 'barcode_third_row' => 'Ligne 3',
+ 'barcode_tooltip' => "Avertissement : cette fonctionnalité peut entraîner l'importation ou la création de doublons. Ne pas utiliser si vous ne voulez pas de codes à barres en double.",
+ 'barcode_type' => 'Type de Code à barre',
+ 'barcode_width' => 'Largeur (px)',
+ 'bottom' => 'Pied de page',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Décimales',
+ 'cash_decimals_tooltip' => 'Si les décimales et les décimales monétaires sont les mêmes, aucun arrondi ne sera effectué.',
+ 'cash_rounding' => 'Arrondis de trésorerie',
+ 'category_dropdown' => 'Afficher les catégories dans un menu déroulant',
+ 'center' => 'Centre',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'virgule',
+ 'company' => "Nome de l'Entreprise",
+ 'company_avatar' => '',
+ 'company_change_image' => "Changer l'image",
+ 'company_logo' => "Logo de l'Entreprise",
+ 'company_remove_image' => "Supprimer l'image",
+ 'company_required' => "Le nom d'entreprise est requis",
+ 'company_select_image' => "Sélectionner l'image",
+ 'company_website_url' => "Le site Web de l'entreprise n'est pas une URL valide (http: //...).",
+ 'country_codes' => 'Codes de pays',
+ 'country_codes_tooltip' => "Liste des codes de pays, séparés par des virgules, pour la recherche d'adresses nominatives.",
+ 'currency_code' => 'Code de devise',
+ 'currency_decimals' => 'Décimales',
+ 'currency_symbol' => 'Symbole Monétaire',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Récompense',
+ 'customer_reward_duplicate' => 'La récompense doit être unique.',
+ 'customer_reward_enable' => 'Activer les récompenses client',
+ 'customer_reward_invalid_chars' => "La récompense ne peut pas contenir '_'",
+ 'customer_reward_required' => 'La récompense est un champ obligatoire',
+ 'customer_sales_tax_support' => 'Soutien à la taxe de vente au client',
+ 'date_or_time_format' => "Filtre de date et d'heure",
+ 'datetimeformat' => "Format de la date et de l'heure",
+ 'decimal_point' => 'Virgule',
+ 'default_barcode_font_size_number' => 'La taille de la police du code-barres par défaut doit être un nombre.',
+ 'default_barcode_font_size_required' => 'La taille de police du code-barres par défaut est un champ obligatoire.',
+ 'default_barcode_height_number' => 'La hauteur du code-barres par défaut doit être un nombre.',
+ 'default_barcode_height_required' => 'La hauteur du code-barres par défaut est un champ obligatoire.',
+ 'default_barcode_num_in_row_number' => 'Le numéro de code-barres par défaut dans la ligne doit être un nombre.',
+ 'default_barcode_num_in_row_required' => 'Le numéro de code-barres par défaut dans la ligne est un champ obligatoire.',
+ 'default_barcode_page_cellspacing_number' => "Page de codes-barres par défaut L'espace-cellule doit être un nombre.",
+ 'default_barcode_page_cellspacing_required' => "Page Barcode par défaut L'espacement des cellules est un champ obligatoire.",
+ 'default_barcode_page_width_number' => 'La largeur de page du code à barres par défaut doit être un nombre.',
+ 'default_barcode_page_width_required' => 'Largeur de page de code-barres par défaut est un champ obligatoire.',
+ 'default_barcode_width_number' => 'La largeur de code à barres par défaut doit être un nombre.',
+ 'default_barcode_width_required' => 'La largeur de code à barres par défaut est un champ obligatoire.',
+ 'default_item_columns' => "Colonnes d'article visibles par défaut",
+ 'default_origin_tax_code' => "Code de taxe d'origine par défaut",
+ 'default_receivings_discount' => 'Rabais de réception par défaut',
+ 'default_receivings_discount_number' => 'Rabais de réception par défaut doit être numérique.',
+ 'default_receivings_discount_required' => 'Rabais de réception par défaut est requis.',
+ 'default_sales_discount' => 'Remboursement des ventes par défaut %',
+ 'default_sales_discount_number' => 'Le rabais de vente par défaut doit être un nombre.',
+ 'default_sales_discount_required' => 'La remise sur les ventes par défaut est un champ obligatoire.',
+ 'default_tax_category' => 'Catégorie fiscale par défaut',
+ 'default_tax_code' => 'Code fiscal par défaut',
+ 'default_tax_jurisdiction' => 'Juridiction fiscale par défaut',
+ 'default_tax_name_number' => 'Le nom de taxe par défaut doit être une chaîne.',
+ 'default_tax_name_required' => 'Le nom de taxe par défaut est un champ obligatoire.',
+ 'default_tax_rate' => "Taux d'Imposition par Défaut",
+ 'default_tax_rate_1' => "Taux d'Imposition 1",
+ 'default_tax_rate_2' => "Taux d'Imposition 2",
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Le taux de taxe par défaut doit être un nombre.',
+ 'default_tax_rate_required' => 'Le taux de taxe par défaut est un champ obligatoire.',
+ 'derive_sale_quantity' => 'Autoriser la quantité de vente dérivée',
+ 'derive_sale_quantity_tooltip' => "Si coché, un nouveau type d'article sera fourni pour les articles commandés par montant étendu",
+ 'dinner_table' => 'Table',
+ 'dinner_table_duplicate' => 'La table doit être unique.',
+ 'dinner_table_enable' => 'Activer les tables de dîner',
+ 'dinner_table_invalid_chars' => "Le nom de la table ne peut pas contenir '_'.",
+ 'dinner_table_required' => 'La table est un champ obligatoire.',
+ 'dot' => 'point',
+ 'email' => 'Courriel',
+ 'email_configuration' => 'Email Configuration',
+ 'email_mailpath' => 'Path de Sendmail',
+ 'email_protocol' => 'Protocol',
+ 'email_receipt_check_behaviour' => 'Case à cocher Reçu de courrier électronique',
+ 'email_receipt_check_behaviour_always' => 'Toujours vérifié',
+ 'email_receipt_check_behaviour_last' => 'Se souvenir de la dernière sélection',
+ 'email_receipt_check_behaviour_never' => 'Toujours décoché',
+ 'email_smtp_crypto' => 'SMTP Cryptage',
+ 'email_smtp_host' => 'SMTP Serveur',
+ 'email_smtp_pass' => 'Mot de passe SMTP',
+ 'email_smtp_port' => 'Port SMTP',
+ 'email_smtp_timeout' => 'Délai SMTP (s)',
+ 'email_smtp_user' => "Nom d'utilisateur SMTP",
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Appliquer la confidentialité',
+ 'enforce_privacy_tooltip' => 'Protéger la confidentialité des clients en imposant le brouillage des données en cas de suppression de leurs données',
+ 'fax' => 'Fax',
+ 'file_perm' => 'Il y a des problèmes avec les permissions de fichier. Veuillez corriger et recharger la page.',
+ 'financial_year' => "Début de l'année fiscale",
+ 'financial_year_apr' => '1er avril',
+ 'financial_year_aug' => '1er août',
+ 'financial_year_dec' => '1er décembre',
+ 'financial_year_feb' => '1er février',
+ 'financial_year_jan' => '1er janvier',
+ 'financial_year_jul' => '1er juillet',
+ 'financial_year_jun' => '1er juin',
+ 'financial_year_mar' => '1er mars',
+ 'financial_year_may' => '1er mai',
+ 'financial_year_nov' => '1er novembre',
+ 'financial_year_oct' => '1er octobre',
+ 'financial_year_sep' => '1er septembre',
+ 'floating_labels' => 'Étiquettes flottantes',
+ 'gcaptcha_enable' => 'Page de connexion reCAPTCHA',
+ 'gcaptcha_secret_key' => 'clé secrète reCAPTCHA',
+ 'gcaptcha_secret_key_required' => 'La clé secrète reCAPTCHA est un champ obligatoire',
+ 'gcaptcha_site_key' => 'clé de site reCAPTCHA',
+ 'gcaptcha_site_key_required' => 'La clé de site reCAPTCHA est un champ obligatoire',
+ 'gcaptcha_tooltip' => "Protégez la page de connexion avec Google reCAPTCHA, cliquez sur l'icône d'une paire de clés API.",
+ 'general' => 'General',
+ 'general_configuration' => 'General Configuration',
+ 'giftcard_number' => 'Numéro de carte-cadeau',
+ 'giftcard_random' => 'Générer aléatoire',
+ 'giftcard_series' => 'Générer en série',
+ 'image_allowed_file_types' => 'Types de fichier autorisés',
+ 'image_max_height_tooltip' => "Hauteur maximale autorisée en pixels pour le téléversement d'images.",
+ 'image_max_size_tooltip' => "Taille de fichier maximale autorisée en kilobytes pour le téléversement d'images.",
+ 'image_max_width_tooltip' => "Largeur maximale autorisée en pixels pour le téléversement d'images.",
+ 'image_restrictions' => "Restrictions sur le téléversement d'images",
+ 'include_hsn' => 'Prise en charge des codes HSN',
+ 'info' => 'Entreprise',
+ 'info_configuration' => "Çonfiguration de l'Entreprise",
+ 'input_groups' => "Groupes d'entrée",
+ 'integrations' => 'Intégrations',
+ 'integrations_configuration' => 'Intégration de parties tierces',
+ 'invoice' => 'Facture',
+ 'invoice_configuration' => "Paramètres d'impression de facture",
+ 'invoice_default_comments' => 'Commentaires par facture par défaut',
+ 'invoice_email_message' => 'Modèle de courrier électronique de facture',
+ 'invoice_enable' => 'Activer la facturation',
+ 'invoice_printer' => 'Imprimante de facture',
+ 'invoice_type' => 'Type de facturation',
+ 'is_readable' => 'est lisible, mais les permissions sont incorrectes. Définir à 640 ou 660 et rafraîchir.',
+ 'is_writable' => 'is écrivable, mais les permissions sont plus hautes que 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => "Attention: Cette fonctionnalité ne sera active que si l'extension FireFox jsPrintSetup est installée. Enregistrer quand même ?",
+ 'language' => 'Langue',
+ 'last_used_invoice_number' => 'Dernier numéro de facture utilisé',
+ 'last_used_quote_number' => 'Dernier numéro de devis utilisé',
+ 'last_used_work_order_number' => 'Dernier numéro W / O utilisé',
+ 'left' => 'Gauche',
+ 'license' => 'Licence',
+ 'license_configuration' => 'Déclaration de licence',
+ 'line_sequence' => 'Séquence de lignes',
+ 'lines_per_page' => 'Lignes par page',
+ 'lines_per_page_number' => 'Les lignes par page doivent être un nombre.',
+ 'lines_per_page_required' => 'Lignes par page est un champ obligatoire.',
+ 'locale' => 'Localisation',
+ 'locale_configuration' => 'Configuration de localisation',
+ 'locale_info' => 'Informations de configuration de localisation',
+ 'location' => 'Inventaire',
+ 'location_configuration' => 'Emplacements de stock',
+ 'location_info' => "Informations de configuration de l'emplacement",
+ 'login_form' => 'Style du formulaire de connexion',
+ 'logout' => 'Voulez-vous faire une sauvegarde avant de vous déconnecter ? Cliquez sur [OK] pour sauvegarder ou sur [Annuler] pour vous déconnecter.',
+ 'mailchimp' => 'MailChimp',
+ 'mailchimp_api_key' => 'Clé API MailChimp',
+ 'mailchimp_configuration' => 'Configuration de MailChimp',
+ 'mailchimp_key_successfully' => 'La clé API est valide.',
+ 'mailchimp_key_unsuccessfully' => "La clé de l'API est invalide.",
+ 'mailchimp_lists' => 'Liste(s) MailChimp',
+ 'mailchimp_tooltip' => "Cliquez sur l'icône pour une clé API.",
+ 'message' => 'Message',
+ 'message_configuration' => 'Message Configuration',
+ 'msg_msg' => 'Message texte enregistré',
+ 'msg_msg_placeholder' => 'Si vous souhaitez utiliser un modèle de SMS, enregistrez votre message ici. Sinon, laisser la boîte en blanc.',
+ 'msg_pwd' => 'SMS-API Password',
+ 'msg_pwd_required' => 'SMS-API Password est un champ obligatoire',
+ 'msg_src' => "ID de l'expéditeur de SMS-API",
+ 'msg_src_required' => "L'ID de l'expéditeur de SMS-API est un champ obligatoire",
+ 'msg_uid' => "Nom d'utilisateur de l'API SMS",
+ 'msg_uid_required' => "Le nom d'utilisateur de l'API SMS est un champ obligatoire",
+ 'multi_pack_enabled' => 'Ensembles multiples par article',
+ 'no_risk' => 'Pas de risques de sécurité/vulnérabilité.',
+ 'none' => 'none',
+ 'notify_alignment' => 'Position contextuelle de notification',
+ 'number_format' => 'Number Format',
+ 'number_locale' => 'Localisation',
+ 'number_locale_invalid' => "L'environnement local entré est invalide. Vérifiez le lien dans l'info-bulle pour trouver un environnement local valide.",
+ 'number_locale_required' => 'Number Locale est un champ obligatoire.',
+ 'number_locale_tooltip' => 'Trouvez un lieu approprié grâce à ce lien.',
+ 'os_timezone' => "Fuseau horaire d'OSPOS :",
+ 'ospos_info' => "Informations d'installation d'OSPOS",
+ 'payment_options_order' => 'Ordre des options de paiement',
+ 'payment_reference_code_length_limits' => 'Code de référence de paiement
Limites de longueur',
+ 'payment_reference_code_length_max_label' => 'Max',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => 'Des permissions incorrectement définies exposent ce logiciel a des risques de sécurité.',
+ 'phone' => 'Téléphone',
+ 'phone_required' => "Téléphone de l'entreprise est un champ obligatoire.",
+ 'print_bottom_margin' => 'Marge Bas',
+ 'print_bottom_margin_number' => 'La marge inférieure doit être un nombre.',
+ 'print_bottom_margin_required' => 'La marge inférieure est un champ obligatoire.',
+ 'print_delay_autoreturn' => 'Retour automatique a la vente retarde',
+ 'print_delay_autoreturn_number' => 'Retour automatique à la vente retarde est un champ obligatoire.',
+ 'print_delay_autoreturn_required' => 'Retour automatique à la vente retarde doit être un nombre.',
+ 'print_footer' => 'Pied de page imprimante',
+ 'print_header' => "Imprimer l'en-tête du navigateur",
+ 'print_left_margin' => 'Marge Gauche',
+ 'print_left_margin_number' => 'La marge gauche par défaut doit être un nombre.',
+ 'print_left_margin_required' => 'La marge gauche par défaut est un champ obligatoire.',
+ 'print_receipt_check_behaviour' => 'Imprimer la case à cocher Reçu',
+ 'print_receipt_check_behaviour_always' => 'Toujours vérifié',
+ 'print_receipt_check_behaviour_last' => 'Se souvenir de la dernière sélection',
+ 'print_receipt_check_behaviour_never' => 'Toujours décoché',
+ 'print_right_margin' => 'Marge Droit',
+ 'print_right_margin_number' => 'La marge droite par défaut doit être un nombre.',
+ 'print_right_margin_required' => 'La marge droite par défaut est un champ obligatoire.',
+ 'print_silently' => 'Afficher la boîte de dialogue Imprimer',
+ 'print_top_margin' => 'Margin Superieure',
+ 'print_top_margin_number' => 'Margin Top doit être un nombre.',
+ 'print_top_margin_required' => 'Margin Top est un champ obligatoire.',
+ 'quantity_decimals' => 'Nombre de décimales',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Commentaires de devis par défaut',
+ 'receipt' => 'Le reçu',
+ 'receipt_category' => '',
+ 'receipt_configuration' => "Paramètres d'impression du reçu",
+ 'receipt_default' => 'Défaut',
+ 'receipt_font_size' => 'Taille de font',
+ 'receipt_font_size_number' => 'La taille de la font doit être un nombre.',
+ 'receipt_font_size_required' => 'Taille de la font est un champ obligatoire.',
+ 'receipt_info' => 'Informations de configuration du reçu',
+ 'receipt_printer' => 'Imprimante de tickets',
+ 'receipt_short' => 'Court',
+ 'receipt_show_company_name' => "Afficher le nom de l'entreprise",
+ 'receipt_show_description' => 'Montrer la description',
+ 'receipt_show_serialnumber' => 'Afficher le numéro de série',
+ 'receipt_show_tax_ind' => 'Afficher les indicateurs de taxe',
+ 'receipt_show_taxes' => 'Afficher les taxes',
+ 'receipt_show_total_discount' => 'Afficher le rabais total',
+ 'receipt_template' => 'Modèle de reçu',
+ 'receiving_calculate_average_price' => 'Calc. prix moyen (Réception)',
+ 'recv_invoice_format' => 'Format de la facture des factures',
+ 'register_mode_default' => 'Mode de registre par défaut',
+ 'report_an_issue' => 'Signaler un problème',
+ 'return_policy_required' => 'Le Message est un champ requis.',
+ 'reward' => 'Récompense',
+ 'reward_configuration' => 'Configuration de récompense',
+ 'right' => 'Droite',
+ 'sales_invoice_format' => 'Format de la facture de vente',
+ 'sales_quote_format' => 'Format de devis de vente',
+ 'mailpath_invalid' => 'Chemin sendmail invalide. Seuls les lettres, chiffres, tirets, underscores, barres obliques et points sont autorisés.',
+ 'saved_successfully' => 'Configuration enregistrer avec succès.',
+ 'saved_unsuccessfully' => "L'enregistrement de configuration a échoué.",
+ 'security_issue' => 'Avertissement de faille de sécurité',
+ 'server_notice' => 'Veuillez utiliser les informations ci-dessous pour signaler un problème.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => "Afficher l'icône du bureau",
+ 'statistics' => 'Envoyer des statistiques',
+ 'statistics_tooltip' => "Envoyer des statistiques pour le développement et l'amélioration des fonctionnalités.",
+ 'stock_location' => 'Emplacement du stock',
+ 'stock_location_duplicate' => "L'emplacement du stock doit être unique.",
+ 'stock_location_invalid_chars' => "L'emplacement de stockage ne peut pas contenir '_'.",
+ 'stock_location_required' => "L'emplacement du stock est un champ obligatoire.",
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Colonne 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Présentation des suggestions de recherche',
+ 'suggestions_second_column' => 'Colonne 2',
+ 'suggestions_third_column' => 'Colonne 3',
+ 'system_conf' => 'Paramètres & Configuration',
+ 'system_info' => 'System Info',
+ 'table' => 'Table',
+ 'table_configuration' => 'Configuration de la table',
+ 'takings_printer' => 'Imprimante de reçu',
+ 'tax' => 'Taxe',
+ 'tax_category' => 'Catégorie fiscale',
+ 'tax_category_duplicate' => 'La catégorie de taxe saisie existe déjà.',
+ 'tax_category_invalid_chars' => 'La catégorie de taxe entrée est invalide.',
+ 'tax_category_required' => 'La catégorie de taxe est requise.',
+ 'tax_category_used' => 'La catégorie de taxe ne peut pas être supprimée car elle est utilisée.',
+ 'tax_configuration' => "Configuration de l'impôt",
+ 'tax_decimals' => 'Décimales fiscales',
+ 'tax_id' => 'Id de taxe',
+ 'tax_included' => 'Taxe inclu',
+ 'theme' => 'Thème',
+ 'theme_preview' => 'Aperçu du thème :',
+ 'thousands_separator' => 'Séparateur de milliers',
+ 'timezone' => 'Fuseau Horaire',
+ 'timezone_error' => "Le fuseau horaire d'OSPOS est différent de votre fuseau horaire local.",
+ 'top' => 'Haut',
+ 'use_destination_based_tax' => 'Utiliser la taxe basée sur la destination',
+ 'user_timezone' => 'Fuseau horaire local :',
+ 'website' => 'Site Internet',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Support de commande de travail',
+ 'work_order_format' => 'Format de bon de travail',
];
diff --git a/app/Language/fr/Login.php b/app/Language/fr/Login.php
index 9ee6b7a08..075a4421e 100644
--- a/app/Language/fr/Login.php
+++ b/app/Language/fr/Login.php
@@ -1,25 +1,30 @@
"Je ne suis pas un robot.",
- "go" => "Lancer",
- "invalid_gcaptcha" => "Veuillez vérifier que vous n'êtes pas un robot.",
- "invalid_installation" => "Cette installation est incorrecte, veuillez vérifier votre fichier php.ini.",
- "invalid_username_and_password" => "Nom d'utilisateur et/ou mot de passe invalide.",
- "login" => "Login",
- "logout" => "Déconnexion",
- "migration_needed" => "Une migration de base de données vers {0} débutera après l'ouverture de session.",
- "migration_required" => "Migration de base de données requise",
- "migration_auth_message" => "Les identifiants administrateur sont requis pour autoriser la migration de la base de données vers la version {0}. Veuillez vous connecter pour continuer.",
- "migration_initializing" => "Initialisation de la base de données",
- "migration_running" => "Exécution des migrations de la base de données...",
- "migration_complete" => "Base de données initialisée avec succès !",
- "migration_complete_login" => "Vous pouvez maintenant vous connecter.",
- "migration_failed" => "Échec de la migration",
- "migration_error_connection" => "Erreur de connexion. Veuillez réessayer.",
- "migration_complete_redirect" => "Migration terminée. Redirection vers la connexion...",
- "password" => "Mot de passe",
- "required_username" => "Le champ nom utilisateur est obligatoire.",
- "username" => "Nom d'utilisateur",
- "welcome" => "Bienvenue à {0} !",
+ "gcaptcha" => "Je ne suis pas un robot.",
+ "go" => "Lancer",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Veuillez vérifier que vous n'êtes pas un robot.",
+ "invalid_installation" => "Cette installation est incorrecte, veuillez vérifier votre fichier php.ini.",
+ "invalid_username_and_password" => "Nom d'utilisateur et/ou mot de passe invalide.",
+ "login" => "Login",
+ "logout" => "Déconnexion",
+ "migrating_database" => "Migration de la base de données",
+ "migration_auth_message" => "Les identifiants administrateur sont requis pour autoriser la migration de la base de données vers la version {0}. Veuillez vous connecter pour continuer.",
+ "migration_complete" => "Base de données initialisée avec succès !",
+ "migration_complete_login" => "Vous pouvez maintenant vous connecter.",
+ "migration_complete_migrate" => "Base de données migrée avec succès !",
+ "migration_complete_redirect" => "Migration terminée. Redirection vers la connexion...",
+ "migration_error_connection" => "Erreur de connexion. Veuillez réessayer.",
+ "migration_failed" => "Échec de la migration",
+ "migration_initializing" => "Initialisation de la base de données",
+ "migration_needed" => "Une migration de base de données vers {0} débutera après l'ouverture de session.",
+ "migration_required" => "Migration de base de données requise",
+ "migration_running" => "Exécution des migrations de la base de données...",
+ "password" => "Mot de passe",
+ "required_username" => "Le champ nom utilisateur est obligatoire.",
+ "username" => "Nom d'utilisateur",
+ "welcome" => "Bienvenue à {0} !"
];
diff --git a/app/Language/fr/Sales.php b/app/Language/fr/Sales.php
index d528d745d..43cf2fed5 100644
--- a/app/Language/fr/Sales.php
+++ b/app/Language/fr/Sales.php
@@ -1,237 +1,237 @@
"Points disponibles",
- "rewards_package" => "Récompenses",
- "rewards_remaining_balance" => "Vos points fidélité restants ",
- "account_number" => "# Compte",
- "add_payment" => "Ajout Paiement",
- "amount_due" => "Montant à Payer",
- "amount_tendered" => "Montant Présenté",
- "authorized_signature" => "Signature autorisée",
- "bank_transfer" => "Virement Bancaire",
- "cancel_sale" => "Annuler la Vente",
- "cash" => "Espèce",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "Ajustement de caisse",
- "cash_deposit" => "Dépôt d'Espèce",
- "cash_filter" => "Espèce",
- "change_due" => "Monnaie Rendue",
- "change_price" => "Modifier le prix de vente",
- "check" => "Chèque",
- "check_balance" => "Rappel de chèque",
- "check_filter" => "Chèque",
- "close" => "",
- "comment" => "Commentaire",
- "comments" => "Commentaires",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Finaliser la Vente",
- "confirm_cancel_sale" => "Êtes-vous sûr de vouloir supprimer cette vente ? Tous les articles seront effacés de la vente.",
- "confirm_delete" => "Êtes-vous sûr(e) de vouloir supprimer ce(ces) vente(s) ?",
- "confirm_restore" => "Êtes-vous sûr de vouloir restaurer les vente(s) sélectionnée(s) ?",
- "credit" => "Carte de Crédit",
- "credit_deposit" => "Dépôt de crédit",
- "credit_filter" => "Carte de crédit",
- "current_table" => "",
- "customer" => "Client",
- "customer_address" => "Adresse",
- "customer_discount" => "Rabais",
- "customer_email" => "Email",
- "customer_location" => "Localisation du client",
- "customer_mailchimp_status" => "Statut de MailChimp",
- "customer_optional" => "(Requis pour paiement)",
- "customer_required" => "(Champs obligatoires)",
- "customer_total" => "Total",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Date de Vente",
- "date_range" => "Intervalle de dates",
- "date_required" => "Un bon format de date doit être entré.",
- "date_type" => "La Date est requise.",
- "debit" => "Carte de Débit",
- "debit_filter" => "",
- "delete" => "Autoriser la suppression",
- "delete_confirmation" => "Êtes vous sûr(e) de vouloir supprimer cette vente ? Cette opération est irréversible.",
- "delete_entire_sale" => "Supprimer la vente",
- "delete_successful" => "Suppression de la Vente réussie.",
- "delete_unsuccessful" => "Échec de suppression.",
- "description_abbrv" => "La Desc.",
- "discard" => "Annuler",
- "discard_quote" => "",
- "discount" => "% Remise",
- "discount_included" => "% de Rabais",
- "discount_short" => "%",
- "due" => "Dû",
- "due_filter" => "Dû",
- "edit" => "Éditer",
- "edit_item" => "Éditer article",
- "edit_sale" => "Éditer vente",
- "email_receipt" => "Reçu par Email",
- "employee" => "Employé",
- "entry" => "Entrée",
- "error_editing_item" => "Érreur lors de l'édition",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Trouver/Scanner Article",
- "find_or_scan_item_or_receipt" => "Trouver/Scanner Article OU Reçu",
- "giftcard" => "Carte Cadeau",
- "giftcard_balance" => "Solde de la Carte-Cadeau",
- "giftcard_filter" => "",
- "giftcard_number" => "Numéro de Carte cadeau",
- "group_by_category" => "Grouper par catégorie",
- "group_by_type" => "Regrouper par type",
- "hsn" => "HSN",
- "id" => "ID Vente",
- "include_prices" => "Inclure les prix ?",
- "invoice" => "Facture",
- "invoice_confirm" => "Cette facture sera envoyée à",
- "invoice_enable" => "Créer une Facture",
- "invoice_filter" => "Factures",
- "invoice_no_email" => "Ce client n'a pas d'adresse courriel valide.",
- "invoice_number" => "# Facture",
- "invoice_number_duplicate" => "Entrez un numéro de facture unique.",
- "invoice_sent" => "Facture envoyée à",
- "invoice_total" => "Total Facture",
- "invoice_type_custom_invoice" => "Facture personnalisée (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Facture fiscale personnalisée (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Facture (invoice.php)",
- "invoice_type_tax_invoice" => "Facture fiscale (tax_invoice.php)",
- "invoice_unsent" => "La Facture n'a pas pu être envoyée à",
- "invoice_update" => "Re-calculer",
- "item_insufficient_of_stock" => "Stock trop faible.",
- "item_name" => "Nom",
- "item_number" => "# Article",
- "item_out_of_stock" => "Stock épuisé.",
- "key_browser" => "Raccourcis utiles",
- "key_cancel" => "Annule l'Offre/Facture/Vente en cours",
- "key_customer_search" => "Recherche de client",
- "key_finish_quote" => "Finaliser la soumission/facture sans paiement",
- "key_finish_sale" => "Ajouter un paiement et complété la facture/vente",
- "key_full" => "Ouvrir en Mode Plein Écran",
- "key_function" => "Function",
- "key_help" => "Raccourcis",
- "key_help_modal" => "Ouvrir la fenêtre de raccourcis",
- "key_in" => "Agrandir",
- "key_item_search" => "Recherche d'article",
- "key_out" => "Rapetisser",
- "key_payment" => "Ajouter un paiement",
- "key_print" => "Imprimer la page",
- "key_restore" => "Restaurer le Zoom initial",
- "key_search" => "Recherche de rapports de tables",
- "key_suspend" => "Suspendre la transaction",
- "key_suspended" => "Afficher les transactions supsendues",
- "key_system" => "Raccourcis systèmes",
- "key_tendered" => "Modifier le montant remis",
- "key_title" => "Raccourcis Claviers des Ventes",
- "mc" => "",
- "mode" => "Mode d'Enregistrement",
- "must_enter_numeric" => "Veuillez entrer une valeur numérique pour la somme.",
- "must_enter_numeric_giftcard" => "Veuillez entrer une valeur numérique pour le numéro de carte.",
- "new_customer" => "Nouveau Client",
- "new_item" => "Nouvel Élément",
- "no_description" => "Aucun",
- "no_filter" => "Tous",
- "no_items_in_cart" => "Il n'y a rien dans votre panier.",
- "no_sales_to_display" => "Aucune vente à afficher.",
- "none_selected" => "Vous n'avez sélectionné aucun élément.",
- "nontaxed_ind" => " - ",
- "not_authorized" => "Cette action n'est pas autorisée.",
- "one_or_multiple" => "Vente(s)",
- "payment" => "Type Paiement",
- "payment_amount" => "Somme",
- "payment_not_cover_total" => "Le Paiement ne couvre pas le Total.",
- "payment_type" => "Type",
- "payments" => "",
- "payments_total" => "Total Paiements",
- "price" => "Prix",
- "print_after_sale" => "Imprimer un recu après vente",
- "quantity" => "Qté",
- "quantity_less_than_reorder_level" => "Avertissement, Quantité Demandée Insuffisante.",
- "quantity_less_than_zero" => "Avertissement : Quantité Demandée insuffisante. Vous pouvez accomplir la vente, mais veuillez vérifier votre inventaire.",
- "quantity_of_items" => "Quantité d'articles {0}",
- "quote" => "Offre",
- "quote_number" => "Offre n°",
- "quote_number_duplicate" => "Le numéro de l'offre doit être unique.",
- "quote_sent" => "Offre envoyée à",
- "quote_unsent" => "L'offre n'est pas parvenue à être envoyée à",
- "receipt" => "Reçu de Ventes",
- "receipt_no_email" => "Ce client n'a pas d'adresse e-mail valide.",
- "receipt_number" => "# Caisse",
- "receipt_sent" => "Reçu envoyé à",
- "receipt_unsent" => "Reçu NON envoyé à",
- "refund" => "Type de remboursement",
- "register" => "Registre des Ventes",
- "remove_customer" => "Enlever Client",
- "remove_discount" => "",
- "return" => "Reprise",
- "rewards" => "Points de fidélité",
- "rewards_balance" => "Compte de points de fidélité",
- "sale" => "Vente",
- "sale_by_invoice" => "Vente par facture",
- "sale_for_customer" => "Client :",
- "sale_time" => "Heure",
- "sales_tax" => "Taxes de vente",
- "sales_total" => "",
- "select_customer" => "Choisir Client",
- "send_invoice" => "Envoyer la Facture",
- "send_quote" => "Envoyer offre",
- "send_receipt" => "Envoyer le Reçu",
- "send_work_order" => "Envoyer un ordre de travail",
- "serial" => "Serie",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Afficher la facture",
- "show_receipt" => "Afficher le reçu",
- "start_typing_customer_name" => "Commencez à saisir le nom du client...",
- "start_typing_item_name" => "Commencez à saisir le nom de l'item ou scannez le code-barre...",
- "stock" => "Inventaire",
- "stock_location" => "Endroit d'inventaire",
- "sub_total" => "Sous-Total",
- "successfully_deleted" => "Vente supprimée",
- "successfully_restored" => "Vous avez restauré avec succès",
- "successfully_suspended_sale" => "Vente suspendue.",
- "successfully_updated" => "Vente éditée.",
- "suspend_sale" => "Suspendre la Vente",
- "suspended_doc_id" => "Document",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Ventes Suspendues",
- "table" => "Emploi du temps",
- "takings" => "Ventes complétées",
- "tax" => "Taxe",
- "tax_id" => "Id Taxe",
- "tax_invoice" => "Facture Fiscale",
- "tax_percent" => "% Taxe",
- "taxed_ind" => "T",
- "total" => "Total",
- "total_tax_exclusive" => "Taxe exclus",
- "transaction_failed" => "Échec de Transaction de vente.",
- "unable_to_add_item" => "Erreur d'ajout d'article à la vente",
- "unsuccessfully_deleted" => "Échec de suppression.",
- "unsuccessfully_restored" => "Restauration de(s) vente(s) échouée.",
- "unsuccessfully_suspended_sale" => "Vente suspendue.",
- "unsuccessfully_updated" => "Échec d'édition.",
- "unsuspend" => "Débloquer",
- "unsuspend_and_delete" => "Action",
- "update" => "Éditer",
- "upi" => "UPI",
- "visa" => "",
- "wallet" => "Portefeuille",
- "wholesale" => "",
- "work_order" => "Commande de travail",
- "work_order_number" => "Numéro de commande",
- "work_order_number_duplicate" => "Le numéro de bon de travail doit être unique.",
- "work_order_sent" => "Ordre de travail envoyé à",
- "work_order_unsent" => "L'ordre de travail n'a pas pu être envoyé à",
- "sale_not_found" => "Vente introuvable",
- "ubl_invoice" => "Facture UBL",
- "download_ubl" => "Télécharger Facture UBL",
- "ubl_generation_failed" => "Échec de la génération de la facture UBL",
+ 'account_number' => '# Compte',
+ 'add_payment' => 'Ajout Paiement',
+ 'amount_due' => 'Montant à Payer',
+ 'amount_tendered' => 'Montant Présenté',
+ 'authorized_signature' => 'Signature autorisée',
+ 'bank_transfer' => 'Virement Bancaire',
+ 'cancel_sale' => 'Annuler la Vente',
+ 'cash' => 'Espèce',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'Ajustement de caisse',
+ 'cash_deposit' => "Dépôt d'Espèce",
+ 'cash_filter' => 'Espèce',
+ 'change_due' => 'Monnaie Rendue',
+ 'change_price' => 'Modifier le prix de vente',
+ 'check' => 'Chèque',
+ 'check_balance' => 'Rappel de chèque',
+ 'check_filter' => 'Chèque',
+ 'close' => '',
+ 'comment' => 'Commentaire',
+ 'comments' => 'Commentaires',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Finaliser la Vente',
+ 'confirm_cancel_sale' => 'Êtes-vous sûr de vouloir supprimer cette vente ? Tous les articles seront effacés de la vente.',
+ 'confirm_delete' => 'Êtes-vous sûr(e) de vouloir supprimer ce(ces) vente(s) ?',
+ 'confirm_restore' => 'Êtes-vous sûr de vouloir restaurer les vente(s) sélectionnée(s) ?',
+ 'credit' => 'Carte de Crédit',
+ 'credit_deposit' => 'Dépôt de crédit',
+ 'credit_filter' => 'Carte de crédit',
+ 'current_table' => '',
+ 'customer' => 'Client',
+ 'customer_address' => 'Adresse',
+ 'customer_discount' => 'Rabais',
+ 'customer_email' => 'Email',
+ 'customer_location' => 'Localisation du client',
+ 'customer_mailchimp_status' => 'Statut de MailChimp',
+ 'customer_optional' => '(Requis pour paiement)',
+ 'customer_required' => '(Champs obligatoires)',
+ 'customer_total' => 'Total',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Points disponibles',
+ 'daily_sales' => '',
+ 'date' => 'Date de Vente',
+ 'date_range' => 'Intervalle de dates',
+ 'date_required' => 'Un bon format de date doit être entré.',
+ 'date_type' => 'La Date est requise.',
+ 'debit' => 'Carte de Débit',
+ 'debit_filter' => '',
+ 'delete' => 'Autoriser la suppression',
+ 'delete_confirmation' => 'Êtes vous sûr(e) de vouloir supprimer cette vente ? Cette opération est irréversible.',
+ 'delete_entire_sale' => 'Supprimer la vente',
+ 'delete_successful' => 'Suppression de la Vente réussie.',
+ 'delete_unsuccessful' => 'Échec de suppression.',
+ 'description_abbrv' => 'La Desc.',
+ 'discard' => 'Annuler',
+ 'discard_quote' => '',
+ 'discount' => '% Remise',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% de Rabais',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'Dû',
+ 'due_filter' => 'Dû',
+ 'edit' => 'Éditer',
+ 'edit_item' => 'Éditer article',
+ 'edit_sale' => 'Éditer vente',
+ 'email_receipt' => 'Reçu par Email',
+ 'employee' => 'Employé',
+ 'entry' => 'Entrée',
+ 'error_editing_item' => "Érreur lors de l'édition",
+ 'find_or_scan_item' => 'Trouver/Scanner Article',
+ 'find_or_scan_item_or_receipt' => 'Trouver/Scanner Article OU Reçu',
+ 'giftcard' => 'Carte Cadeau',
+ 'giftcard_balance' => 'Solde de la Carte-Cadeau',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Numéro de Carte cadeau',
+ 'group_by_category' => 'Grouper par catégorie',
+ 'group_by_type' => 'Regrouper par type',
+ 'hsn' => 'HSN',
+ 'id' => 'ID Vente',
+ 'include_prices' => 'Inclure les prix ?',
+ 'invoice' => 'Facture',
+ 'invoice_confirm' => 'Cette facture sera envoyée à',
+ 'invoice_enable' => 'Créer une Facture',
+ 'invoice_filter' => 'Factures',
+ 'invoice_no_email' => "Ce client n'a pas d'adresse courriel valide.",
+ 'invoice_number' => '# Facture',
+ 'invoice_number_duplicate' => 'Entrez un numéro de facture unique.',
+ 'invoice_sent' => 'Facture envoyée à',
+ 'invoice_total' => 'Total Facture',
+ 'invoice_type_custom_invoice' => 'Facture personnalisée (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Facture fiscale personnalisée (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Facture (invoice.php)',
+ 'invoice_type_tax_invoice' => 'Facture fiscale (tax_invoice.php)',
+ 'invoice_unsent' => "La Facture n'a pas pu être envoyée à",
+ 'invoice_update' => 'Re-calculer',
+ 'item_insufficient_of_stock' => 'Stock trop faible.',
+ 'item_name' => 'Nom',
+ 'item_number' => '# Article',
+ 'item_out_of_stock' => 'Stock épuisé.',
+ 'key_browser' => 'Raccourcis utiles',
+ 'key_cancel' => "Annule l'Offre/Facture/Vente en cours",
+ 'key_customer_search' => 'Recherche de client',
+ 'key_finish_quote' => 'Finaliser la soumission/facture sans paiement',
+ 'key_finish_sale' => 'Ajouter un paiement et complété la facture/vente',
+ 'key_full' => 'Ouvrir en Mode Plein Écran',
+ 'key_function' => 'Function',
+ 'key_help' => 'Raccourcis',
+ 'key_help_modal' => 'Ouvrir la fenêtre de raccourcis',
+ 'key_in' => 'Agrandir',
+ 'key_item_search' => "Recherche d'article",
+ 'key_out' => 'Rapetisser',
+ 'key_payment' => 'Ajouter un paiement',
+ 'key_print' => 'Imprimer la page',
+ 'key_restore' => 'Restaurer le Zoom initial',
+ 'key_search' => 'Recherche de rapports de tables',
+ 'key_suspend' => 'Suspendre la transaction',
+ 'key_suspended' => 'Afficher les transactions supsendues',
+ 'key_system' => 'Raccourcis systèmes',
+ 'key_tendered' => 'Modifier le montant remis',
+ 'key_title' => 'Raccourcis Claviers des Ventes',
+ 'mc' => '',
+ 'mode' => "Mode d'Enregistrement",
+ 'must_enter_numeric' => 'Veuillez entrer une valeur numérique pour la somme.',
+ 'must_enter_numeric_giftcard' => 'Veuillez entrer une valeur numérique pour le numéro de carte.',
+ 'must_enter_reference_code' => 'Le numéro de référence/récupération doit être saisi.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Nouveau Client',
+ 'new_item' => 'Nouvel Élément',
+ 'no_description' => 'Aucun',
+ 'no_filter' => 'Tous',
+ 'no_items_in_cart' => "Il n'y a rien dans votre panier.",
+ 'no_sales_to_display' => 'Aucune vente à afficher.',
+ 'none_selected' => "Vous n'avez sélectionné aucun élément.",
+ 'nontaxed_ind' => ' - ',
+ 'not_authorized' => "Cette action n'est pas autorisée.",
+ 'one_or_multiple' => 'Vente(s)',
+ 'payment' => 'Type Paiement',
+ 'payment_amount' => 'Somme',
+ 'payment_not_cover_total' => 'Le Paiement ne couvre pas le Total.',
+ 'payment_type' => 'Type',
+ 'payments' => '',
+ 'payments_total' => 'Total Paiements',
+ 'price' => 'Prix',
+ 'print_after_sale' => 'Imprimer un recu après vente',
+ 'quantity' => 'Qté',
+ 'quantity_less_than_reorder_level' => 'Avertissement, Quantité Demandée Insuffisante.',
+ 'quantity_less_than_zero' => 'Avertissement : Quantité Demandée insuffisante. Vous pouvez accomplir la vente, mais veuillez vérifier votre inventaire.',
+ 'quantity_of_items' => "Quantité d'articles {0}",
+ 'quote' => 'Offre',
+ 'quote_number' => 'Offre n°',
+ 'quote_number_duplicate' => "Le numéro de l'offre doit être unique.",
+ 'quote_sent' => 'Offre envoyée à',
+ 'quote_unsent' => "L'offre n'est pas parvenue à être envoyée à",
+ 'receipt' => 'Reçu de Ventes',
+ 'receipt_no_email' => "Ce client n'a pas d'adresse e-mail valide.",
+ 'receipt_number' => '# Caisse',
+ 'receipt_sent' => 'Reçu envoyé à',
+ 'receipt_unsent' => 'Reçu NON envoyé à',
+ 'reference_code' => 'Code de référence de paiement',
+ 'reference_code_invalid_characters' => 'Le code de référence ne doit contenir que des lettres et des chiffres.',
+ 'reference_code_length_error' => 'La longueur du code de référence est invalide.',
+ 'refund' => 'Type de remboursement',
+ 'register' => 'Registre des Ventes',
+ 'remove_customer' => 'Enlever Client',
+ 'remove_discount' => '',
+ 'return' => 'Reprise',
+ 'rewards' => 'Points de fidélité',
+ 'rewards_balance' => 'Compte de points de fidélité',
+ 'rewards_package' => 'Récompenses',
+ 'rewards_remaining_balance' => 'Vos points fidélité restants ',
+ 'sale' => 'Vente',
+ 'sale_by_invoice' => 'Vente par facture',
+ 'sale_for_customer' => 'Client :',
+ 'sale_time' => 'Heure',
+ 'sales_tax' => 'Taxes de vente',
+ 'sales_total' => '',
+ 'select_customer' => 'Choisir Client',
+ 'send_invoice' => 'Envoyer la Facture',
+ 'send_quote' => 'Envoyer offre',
+ 'send_receipt' => 'Envoyer le Reçu',
+ 'send_work_order' => 'Envoyer un ordre de travail',
+ 'serial' => 'Serie',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Afficher la facture',
+ 'show_receipt' => 'Afficher le reçu',
+ 'start_typing_customer_name' => 'Commencez à saisir le nom du client...',
+ 'start_typing_item_name' => "Commencez à saisir le nom de l'item ou scannez le code-barre...",
+ 'stock' => 'Inventaire',
+ 'stock_location' => "Endroit d'inventaire",
+ 'sub_total' => 'Sous-Total',
+ 'successfully_deleted' => 'Vente supprimée',
+ 'successfully_restored' => 'Vous avez restauré avec succès',
+ 'successfully_suspended_sale' => 'Vente suspendue.',
+ 'successfully_updated' => 'Vente éditée.',
+ 'suspend_sale' => 'Suspendre la Vente',
+ 'suspended_doc_id' => 'Document',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Ventes Suspendues',
+ 'table' => 'Emploi du temps',
+ 'takings' => 'Ventes complétées',
+ 'tax' => 'Taxe',
+ 'tax_id' => 'Id Taxe',
+ 'tax_invoice' => 'Facture Fiscale',
+ 'tax_percent' => '% Taxe',
+ 'taxed_ind' => 'T',
+ 'total' => 'Total',
+ 'total_tax_exclusive' => 'Taxe exclus',
+ 'transaction_failed' => 'Échec de Transaction de vente.',
+ 'unable_to_add_item' => "Erreur d'ajout d'article à la vente",
+ 'unsuccessfully_deleted' => 'Échec de suppression.',
+ 'unsuccessfully_restored' => 'Restauration de(s) vente(s) échouée.',
+ 'unsuccessfully_suspended_sale' => 'Vente suspendue.',
+ 'unsuccessfully_updated' => "Échec d'édition.",
+ 'unsuspend' => 'Débloquer',
+ 'unsuspend_and_delete' => 'Action',
+ 'update' => 'Éditer',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wallet' => 'Portefeuille',
+ 'wholesale' => '',
+ 'work_order' => 'Commande de travail',
+ 'work_order_number' => 'Numéro de commande',
+ 'work_order_number_duplicate' => 'Le numéro de bon de travail doit être unique.',
+ 'work_order_sent' => 'Ordre de travail envoyé à',
+ 'work_order_unsent' => "L'ordre de travail n'a pas pu être envoyé à",
];
diff --git a/app/Language/he/Config.php b/app/Language/he/Config.php
index edc024e90..b0690db67 100644
--- a/app/Language/he/Config.php
+++ b/app/Language/he/Config.php
@@ -1,332 +1,335 @@
"כתובת חברה",
- "address_required" => "כתובת החברה הינה שדה חובה.",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "אפשר ברקודים כפולים",
- "apostrophe" => "גרש",
- "backup_button" => "גיבוי",
- "backup_database" => "מסד נתונים לגיבוי",
- "barcode" => "ברקוד",
- "barcode_company" => "שם חברה",
- "barcode_configuration" => "הגדרות ברקוד",
- "barcode_content" => "תוכן ברקוד",
- "barcode_first_row" => "שורה 1",
- "barcode_font" => "פונט",
- "barcode_formats" => "תבניות קלט",
- "barcode_generate_if_empty" => "צור אם ריק.",
- "barcode_height" => "גובה (פיקסלים)",
- "barcode_id" => "מזהה / שם פריט",
- "barcode_info" => "מידע על הדגרות ברקוד",
- "barcode_layout" => "פריסת ברקוד",
- "barcode_name" => "שם",
- "barcode_number" => "ברקוד",
- "barcode_number_in_row" => "מספר בשורה",
- "barcode_page_cellspacing" => "הצגת מרחבי עמוד.",
- "barcode_page_width" => "הצגת רוחב דף",
- "barcode_price" => "מחיר",
- "barcode_second_row" => "שורה 2",
- "barcode_third_row" => "שורה 3",
- "barcode_tooltip" => "אזהרה: תכונה זו עלולה לגרום לייבוא או יצירת פריטים כפולים. אל תשתמש אם אתה לא רוצה ברקודים כפולים.",
- "barcode_type" => "סוג ברקוד",
- "barcode_width" => "רוחב (פיקסלים)",
- "bottom" => "למטה",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "עשרוני מזומנים",
- "cash_decimals_tooltip" => "אם עשרוני מזומנים ועשרוני מטבעות זהים אז לא יתקיים עיגול מזומנים.",
- "cash_rounding" => "עיגול מזומנים",
- "category_dropdown" => "",
- "center" => "מרכז",
- "change_apperance_tooltip" => "",
- "comma" => "פסיק",
- "company" => "שם חברה",
- "company_avatar" => "",
- "company_change_image" => "שנה תמונה",
- "company_logo" => "לוגו חברה",
- "company_remove_image" => "הסר תמונה",
- "company_required" => "שם החברה הינו שדה חובה",
- "company_select_image" => "בחר תמונה",
- "company_website_url" => "אתר החברה אינו כתובת אתר חוקית (http://...).",
- "country_codes" => "קודי מדינה",
- "country_codes_tooltip" => "רשימה מופרדת בפסיקים של קודי מדינות עבור בדיקת כתובת של nominatim.",
- "currency_code" => "קוד מטבע",
- "currency_decimals" => "מטבע עשרוני",
- "currency_symbol" => "סמל מטבע",
- "current_employee_only" => "",
- "customer_reward" => "תגמול",
- "customer_reward_duplicate" => "התגמול חייב להיות ייחודי.",
- "customer_reward_enable" => "אפשר תגמולים ללקוחות",
- "customer_reward_invalid_chars" => "התגמול אינו יכול להכיל '_'",
- "customer_reward_required" => "התגמול הינו שדה חובה",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "מסנן תאריך ושעה",
- "datetimeformat" => "פורמט תאריך ושעה",
- "decimal_point" => "נקודה עשרונית",
- "default_barcode_font_size_number" => "ברירת מחדל של גודל גופן הברקוד חייב להיות מספר.",
- "default_barcode_font_size_required" => "שדה גודל גופן הברקוד הינו שדה חובה.",
- "default_barcode_height_number" => "גובה ברירת המחדל של הברקוד חייב להיות מספר.",
- "default_barcode_height_required" => "גובה ברירת המחדל של הברקוד הינו שדה חובה.",
- "default_barcode_num_in_row_number" => "ברירת המחדל של מספר הברקוד בשורה חייב להיות מספר.",
- "default_barcode_num_in_row_required" => "ברירת המחדל של מספר הברקוד בשורה הינו שדה חובה.",
- "default_barcode_page_cellspacing_number" => "ברירת המחדל של שדה מרווח עימוד הברקוד חייב להיות מספר.",
- "default_barcode_page_cellspacing_required" => "ברירת המחדל של שדה מרווח עימוד הברקוד הינו שדה חובה.",
- "default_barcode_page_width_number" => "ברירת המחדל של שדה רוחב עמוד הברקוד חייב להיות מספר.",
- "default_barcode_page_width_required" => "ברירת המחדל של שדה רוחב עמוד הברקוד הינו שדה חובה.",
- "default_barcode_width_number" => "ברירת המחדל של שדה רוחב הברקוד חייב להיות מספר.",
- "default_barcode_width_required" => "ברירת המחדל של שדה רוחב הברקוד הינו שדה חובה.",
- "default_item_columns" => "ברירת מחדל של עמודות לפריטים גלויים",
- "default_origin_tax_code" => "קוד ברירת מחדל למס במקור",
- "default_receivings_discount" => "הנחה ברירת מחדל להחזרות ספקים",
- "default_receivings_discount_number" => "הנחה ברירת מחדל להחזרות ספקים חייב להיות מספר.",
- "default_receivings_discount_required" => "הנחה ברירת מחדל להחזרות ספקים הינו שדה חובה.",
- "default_sales_discount" => "הנחה ברירת מחדל למכירות",
- "default_sales_discount_number" => "הנחה ברירת מחדל למכירות חייב להיות מספר.",
- "default_sales_discount_required" => "הנחה ברירת מחדל למכירות הינו שדה חובה.",
- "default_tax_category" => "קטגוריה מס ברירת מחדל",
- "default_tax_code" => "קוד מס ברירת מחדל",
- "default_tax_jurisdiction" => "תחום שיפוט מס ברירת מחדל",
- "default_tax_name_number" => "שם מס ברירת המחדל חייב להיות מחרוזת.",
- "default_tax_name_required" => "שם מס ברירת המחדל הינו שדה חובה.",
- "default_tax_rate" => "שיעור מס ברירת מחדל %",
- "default_tax_rate_1" => "מדרגת מס 1",
- "default_tax_rate_2" => "מדרגת מס 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "שיעור מס ברירת מחדל חייב להיות מספר.",
- "default_tax_rate_required" => "שיעור מס ברירת מחדל הינו שדה חובה.",
- "derive_sale_quantity" => "אפשר כמות נגזרת של מכירה",
- "derive_sale_quantity_tooltip" => "אם מסומן, סוג פריט חדש יספק פריטים שהוזמנו בכמות מורחבת",
- "dinner_table" => "טבלה",
- "dinner_table_duplicate" => "הטבלה חייבת להיות ייחודית.",
- "dinner_table_enable" => "אפשר טבלאות אוכל",
- "dinner_table_invalid_chars" => "שם הטבלה אינו יכול להכיל את '_'.",
- "dinner_table_required" => "שם הטבלה הינו שדה חובה.",
- "dot" => "נקודה",
- "email" => "אימייל",
- "email_configuration" => "הגדרות אימייל",
- "email_mailpath" => "נתיב לשליחת מייל",
- "email_protocol" => "פרוטוקול",
- "email_receipt_check_behaviour" => "תיבת סימון של קבלת אימייל",
- "email_receipt_check_behaviour_always" => "תמיד מסומן",
- "email_receipt_check_behaviour_last" => "זכור את הבחירה האחרונה",
- "email_receipt_check_behaviour_never" => "תמיד לא מסומן",
- "email_smtp_crypto" => "הצפנת SMTP",
- "email_smtp_host" => "שרת SMTP",
- "email_smtp_pass" => "סיסמת SMTP",
- "email_smtp_port" => "יציאת SMTP",
- "email_smtp_timeout" => "זמן קצוב לתפוגה של SMTP",
- "email_smtp_user" => "שם משתמש של SMTP",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "אכיפת פרטיות",
- "enforce_privacy_tooltip" => "הגן על פרטיות הלקוחות ואכיפת ערבוב נתונים במקרה של מחיקת הנתונים שלהם",
- "fax" => "פקס",
- "file_perm" => "There are problems with file permissions please fix and reload this page.",
- "financial_year" => "תחילת שנת הכספים",
- "financial_year_apr" => "1 של אפריל",
- "financial_year_aug" => "1 של אוגוסט",
- "financial_year_dec" => "1 של דצמבר",
- "financial_year_feb" => "1 של פברואר",
- "financial_year_jan" => "1 של ינואר",
- "financial_year_jul" => "1 של יולי",
- "financial_year_jun" => "1 של יוני",
- "financial_year_mar" => "1 של מרץ",
- "financial_year_may" => "1 של מאי",
- "financial_year_nov" => "1 של נובמבר",
- "financial_year_oct" => "1 של אוקטובר",
- "financial_year_sep" => "1 של ספטמבר",
- "floating_labels" => "",
- "gcaptcha_enable" => "דף התחברות reCAPTCHA",
- "gcaptcha_secret_key" => "מפתח סודי של reCAPTCHA",
- "gcaptcha_secret_key_required" => "מפתח סודי של reCAPTCHA הינו שדה חובה",
- "gcaptcha_site_key" => "מפתח אתר reCAPTCHA",
- "gcaptcha_site_key_required" => "מפתח אתר reCAPTCHA הינו שדה חובה",
- "gcaptcha_tooltip" => "הגן על דף ההתחברות באמצעות Google reCAPTCHA, לחץ על האייקון של ממשק צמד מפתחות API.",
- "general" => "כללי",
- "general_configuration" => "הגדרות כלליות",
- "giftcard_number" => "מספר כרטיס מתנה",
- "giftcard_random" => "צור אקראי",
- "giftcard_series" => "צור בסדרה",
- "image_allowed_file_types" => "",
- "image_max_height_tooltip" => "",
- "image_max_size_tooltip" => "",
- "image_max_width_tooltip" => "",
- "image_restrictions" => "",
- "include_hsn" => "כלול תמיכה בקודי HSN",
- "info" => "מידע",
- "info_configuration" => "אחסון מידע",
- "input_groups" => "",
- "integrations" => "אינטגרציה",
- "integrations_configuration" => "שילובים של צד שלישי",
- "invoice" => "חשבונית",
- "invoice_configuration" => "הגדרות הדפסה של חשבוניות",
- "invoice_default_comments" => "הערות ברירת מחדל של חשבוניות",
- "invoice_email_message" => "תבנית אימייל של חשבונית",
- "invoice_enable" => "הפעל חשבוניות",
- "invoice_printer" => "מדפסת חשבונית",
- "invoice_type" => "סוג חשבונית",
- "is_readable" => "",
- "is_writable" => "is writable, but the permissions are higher than 750.",
- "item_markup" => "",
- "jsprintsetup_required" => "אזהרה: פונקציונליות זו תפעל רק אם התקנת את התוסף FireFox jsPrintSetup ,לשמור בכל זאת?",
- "language" => "שפה",
- "last_used_invoice_number" => "מספר חשבונית אחרונה שהייתה בשימוש",
- "last_used_quote_number" => "מספר הצעת מחיר אחרונה שהייתה בשימוש",
- "last_used_work_order_number" => "מספר W/O אחרון שהיה בשימוש",
- "left" => "שמאל",
- "license" => "רישיון",
- "license_configuration" => "הצהרת רישיון",
- "line_sequence" => "סדר פעולות",
- "lines_per_page" => "שורות בעמוד",
- "lines_per_page_number" => "שורות בעמוד חייב להיות מספר.",
- "lines_per_page_required" => "שורות בעמוד הינו שדה חובה.",
- "locale" => "התאמת שפה",
- "locale_configuration" => "הגדרות התאמת שפה",
- "locale_info" => "מידע על הגדרות התאמת שפה",
- "location" => "מלאי",
- "location_configuration" => "מיקום המלאי",
- "location_info" => "מידע על הגדרות מיקום",
- "login_form" => "",
- "logout" => "האם ברצונך לבצע גיבוי לפני היציאה? לחץ על [OK] כדי לגבות או [ביטול] כדי להתנתק.",
- "mailchimp" => "Mailchimp (פלטפורמה לשליחת מיילים)",
- "mailchimp_api_key" => "מפתח API של Mailchimp",
- "mailchimp_configuration" => "הגדרות Mailchimp",
- "mailchimp_key_successfully" => "מפתח ה- API תקף.",
- "mailchimp_key_unsuccessfully" => "מפתח ה- API לא תקף.",
- "mailchimp_lists" => "רשימת Mailchimp",
- "mailchimp_tooltip" => "לחץ על האייקון של מפתח ממשק API.",
- "message" => "הודעה",
- "message_configuration" => "הגדרות הודעה",
- "msg_msg" => "הודעת טקסט שמורה",
- "msg_msg_placeholder" => "אם ברצונך להשתמש בתבנית הודעה שמור את ההודעה שלך כאן, אחרת השאר את התיבה ריקה.",
- "msg_pwd" => "סיסמה של SMS-API",
- "msg_pwd_required" => "סיסמה של SMS-API הינו שדה חובה",
- "msg_src" => "מזהה שולח SMS-API",
- "msg_src_required" => "מזהה שולח SMS-API הינו שדה חובה",
- "msg_uid" => "שם משתמש של SMS-API",
- "msg_uid_required" => "שם משתמש של SMS-API הינו שדה חובה",
- "multi_pack_enabled" => "חבילות מרובות לכל פריט",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "לא קיים",
- "notify_alignment" => "מיקום חלון קופץ",
- "number_format" => "פורמט מספר",
- "number_locale" => "הגדרות שפה",
- "number_locale_invalid" => "האזור שהוזן אינו חוקי. בדוק את הקישור שבסרגל הכלים כדי לאתר אזור חוקי.",
- "number_locale_required" => "מספר אזור הינו שדה חובה.",
- "number_locale_tooltip" => "מצא אזור תואם באמצעות קישור זה.",
- "os_timezone" => "",
- "ospos_info" => "OSPOS פרטי התקנה",
- "payment_options_order" => "סידור אפשרויות תשלום",
- "perm_risk" => "Permissions higher than 750 leaves this software at risk.",
- "phone" => "טלפון חברה",
- "phone_required" => "טלפון חברה הינו שדה חובה.",
- "print_bottom_margin" => "כפתור שוליים",
- "print_bottom_margin_number" => "שדה כפתור שוליים חייב להיות מספר.",
- "print_bottom_margin_required" => "כפתור שוליים הינו שדה חובה.",
- "print_delay_autoreturn" => "חזרה אוטומטית לעיכוב מכירה",
- "print_delay_autoreturn_number" => "חזרה אוטומטית לעיכוב מכירה הינו שדה חובה.",
- "print_delay_autoreturn_required" => "שדה חזרה אוטומטית לעיכוב מכירה חייב להיות מספר.",
- "print_footer" => "הדפס כותרת תחתונה",
- "print_header" => "הדפס כותרת עליונה",
- "print_left_margin" => "שוליים צד שמאל",
- "print_left_margin_number" => "שדה שוליים צד שמאל חייב להיות מספר.",
- "print_left_margin_required" => "שוליים צד שמאל הינו שדה חובה.",
- "print_receipt_check_behaviour" => "הדפס קבלה",
- "print_receipt_check_behaviour_always" => "תמיד מסומן",
- "print_receipt_check_behaviour_last" => "זכור את הבחירה האחרונה",
- "print_receipt_check_behaviour_never" => "תמיד לא מסומן",
- "print_right_margin" => "שוליים צד ימין",
- "print_right_margin_number" => "שדה שוליים צד ימין חייב להיות מספר.",
- "print_right_margin_required" => "שוליים צד ימין הינו שדה חובה.",
- "print_silently" => "הצג את תיבת הדו-שיח 'הדפסה'",
- "print_top_margin" => "שוליים עליונים",
- "print_top_margin_number" => "שדה שוליים עליונים חייב להיות מספר.",
- "print_top_margin_required" => "שוליים עליונים הינו שדה חובה.",
- "quantity_decimals" => "כמות עשרונית",
- "quick_cash_enable" => "",
- "quote_default_comments" => "הערת ברירת מחדל להצעת מחיר",
- "receipt" => "קבלה",
- "receipt_category" => "",
- "receipt_configuration" => "הגדרות הדפסה קבלה",
- "receipt_default" => "ברירת מחדל",
- "receipt_font_size" => "גודל פונט",
- "receipt_font_size_number" => "שדה גודל פונט חייב להיות מספר.",
- "receipt_font_size_required" => "גודל פונט הינו שדה חובה.",
- "receipt_info" => "מידע על הגדרות קבלה",
- "receipt_printer" => "מדפסת כרטיסים",
- "receipt_short" => "קצר",
- "receipt_show_company_name" => "הצג שם חברה",
- "receipt_show_description" => "הצג תיאור",
- "receipt_show_serialnumber" => "הצג מספר סידורי",
- "receipt_show_tax_ind" => "",
- "receipt_show_taxes" => "הצג מסים",
- "receipt_show_total_discount" => "הצג הנחה כוללת",
- "receipt_template" => "תבנית קבלה",
- "receiving_calculate_average_price" => "חישוב ממוצע למחיר (החזרותספקים)",
- "recv_invoice_format" => "תבנית חשבונית החזרותספקים",
- "register_mode_default" => "מצב רישום ברירת מחדל",
- "report_an_issue" => "",
- "return_policy_required" => "מדיניות ההחזרה היא שדה חובה.",
- "reward" => "תגמול",
- "reward_configuration" => "הגדרות תגמולים",
- "right" => "ימין",
- "sales_invoice_format" => "תבנית חשבונית מכירות",
- "sales_quote_format" => "תבנית חשבונית הצעת מחיר",
- "mailpath_invalid" => "",
- "saved_successfully" => "ההגדרות נשמרו בהצלחה.",
- "saved_unsuccessfully" => "שמירת ההגדרות נכשלה.",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "השתמש במידע הבא לדיווח על בעיות.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "הצג את סמל המשרד",
- "statistics" => "שלח סטטיסטיקה",
- "statistics_tooltip" => "שלח סטטיסטיקות למפתחים למטרות פיתוח ושיפור התוכנה.",
- "stock_location" => "מיקום המלאי",
- "stock_location_duplicate" => "מיקום המלאי חייב להיות ייחודי.",
- "stock_location_invalid_chars" => "מיקום המלאי אינו יכול להכיל '_'.",
- "stock_location_required" => "מיקום המלאי הינו שדה חובה.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "עמודה 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "פריסת הצעות חיפוש",
- "suggestions_second_column" => "עמודה 2",
- "suggestions_third_column" => "עמודה 3",
- "system_conf" => "Setup & Conf",
- "system_info" => "מידע מערכת",
- "table" => "טבלה",
- "table_configuration" => "הגדרות טבלה",
- "takings_printer" => "מדפסת קבלה",
- "tax" => "מס",
- "tax_category" => "קטגוריה מס",
- "tax_category_duplicate" => "קטגוריית המס שהוזנה כבר קיימת.",
- "tax_category_invalid_chars" => "קטגוריית המס שהוזנה אינה חוקית.",
- "tax_category_required" => "קטגוריית המס הינה חובה.",
- "tax_category_used" => "לא ניתן למחוק את קטגוריית המס מכיוון שהיא נמצאת בשימוש.",
- "tax_configuration" => "הגדרות מס",
- "tax_decimals" => "מס עשרוני",
- "tax_id" => "מזהה לצורך מס",
- "tax_included" => "כולל מס",
- "theme" => "ערכת נושא",
- "theme_preview" => "",
- "thousands_separator" => "מפריד אלפים",
- "timezone" => "אזור זמן",
- "timezone_error" => "",
- "top" => "חלק עליון",
- "use_destination_based_tax" => "השתמש במס מבוסס יעד",
- "user_timezone" => "",
- "website" => "אתר",
- "wholesale_markup" => "",
- "work_order_enable" => "תמיכה בהזמנת עבודה",
- "work_order_format" => "פורמט הזמנת עבודה",
+ 'address' => 'כתובת חברה',
+ 'address_required' => 'כתובת החברה הינה שדה חובה.',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => 'אפשר ברקודים כפולים',
+ 'apostrophe' => 'גרש',
+ 'backup_button' => 'גיבוי',
+ 'backup_database' => 'מסד נתונים לגיבוי',
+ 'barcode' => 'ברקוד',
+ 'barcode_company' => 'שם חברה',
+ 'barcode_configuration' => 'הגדרות ברקוד',
+ 'barcode_content' => 'תוכן ברקוד',
+ 'barcode_first_row' => 'שורה 1',
+ 'barcode_font' => 'פונט',
+ 'barcode_formats' => 'תבניות קלט',
+ 'barcode_generate_if_empty' => 'צור אם ריק.',
+ 'barcode_height' => 'גובה (פיקסלים)',
+ 'barcode_id' => 'מזהה / שם פריט',
+ 'barcode_info' => 'מידע על הדגרות ברקוד',
+ 'barcode_layout' => 'פריסת ברקוד',
+ 'barcode_name' => 'שם',
+ 'barcode_number' => 'ברקוד',
+ 'barcode_number_in_row' => 'מספר בשורה',
+ 'barcode_page_cellspacing' => 'הצגת מרחבי עמוד.',
+ 'barcode_page_width' => 'הצגת רוחב דף',
+ 'barcode_price' => 'מחיר',
+ 'barcode_second_row' => 'שורה 2',
+ 'barcode_third_row' => 'שורה 3',
+ 'barcode_tooltip' => 'אזהרה: תכונה זו עלולה לגרום לייבוא או יצירת פריטים כפולים. אל תשתמש אם אתה לא רוצה ברקודים כפולים.',
+ 'barcode_type' => 'סוג ברקוד',
+ 'barcode_width' => 'רוחב (פיקסלים)',
+ 'bottom' => 'למטה',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'עשרוני מזומנים',
+ 'cash_decimals_tooltip' => 'אם עשרוני מזומנים ועשרוני מטבעות זהים אז לא יתקיים עיגול מזומנים.',
+ 'cash_rounding' => 'עיגול מזומנים',
+ 'category_dropdown' => '',
+ 'center' => 'מרכז',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'פסיק',
+ 'company' => 'שם חברה',
+ 'company_avatar' => '',
+ 'company_change_image' => 'שנה תמונה',
+ 'company_logo' => 'לוגו חברה',
+ 'company_remove_image' => 'הסר תמונה',
+ 'company_required' => 'שם החברה הינו שדה חובה',
+ 'company_select_image' => 'בחר תמונה',
+ 'company_website_url' => 'אתר החברה אינו כתובת אתר חוקית (http://...).',
+ 'country_codes' => 'קודי מדינה',
+ 'country_codes_tooltip' => 'רשימה מופרדת בפסיקים של קודי מדינות עבור בדיקת כתובת של nominatim.',
+ 'currency_code' => 'קוד מטבע',
+ 'currency_decimals' => 'מטבע עשרוני',
+ 'currency_symbol' => 'סמל מטבע',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'תגמול',
+ 'customer_reward_duplicate' => 'התגמול חייב להיות ייחודי.',
+ 'customer_reward_enable' => 'אפשר תגמולים ללקוחות',
+ 'customer_reward_invalid_chars' => "התגמול אינו יכול להכיל '_'",
+ 'customer_reward_required' => 'התגמול הינו שדה חובה',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => 'מסנן תאריך ושעה',
+ 'datetimeformat' => 'פורמט תאריך ושעה',
+ 'decimal_point' => 'נקודה עשרונית',
+ 'default_barcode_font_size_number' => 'ברירת מחדל של גודל גופן הברקוד חייב להיות מספר.',
+ 'default_barcode_font_size_required' => 'שדה גודל גופן הברקוד הינו שדה חובה.',
+ 'default_barcode_height_number' => 'גובה ברירת המחדל של הברקוד חייב להיות מספר.',
+ 'default_barcode_height_required' => 'גובה ברירת המחדל של הברקוד הינו שדה חובה.',
+ 'default_barcode_num_in_row_number' => 'ברירת המחדל של מספר הברקוד בשורה חייב להיות מספר.',
+ 'default_barcode_num_in_row_required' => 'ברירת המחדל של מספר הברקוד בשורה הינו שדה חובה.',
+ 'default_barcode_page_cellspacing_number' => 'ברירת המחדל של שדה מרווח עימוד הברקוד חייב להיות מספר.',
+ 'default_barcode_page_cellspacing_required' => 'ברירת המחדל של שדה מרווח עימוד הברקוד הינו שדה חובה.',
+ 'default_barcode_page_width_number' => 'ברירת המחדל של שדה רוחב עמוד הברקוד חייב להיות מספר.',
+ 'default_barcode_page_width_required' => 'ברירת המחדל של שדה רוחב עמוד הברקוד הינו שדה חובה.',
+ 'default_barcode_width_number' => 'ברירת המחדל של שדה רוחב הברקוד חייב להיות מספר.',
+ 'default_barcode_width_required' => 'ברירת המחדל של שדה רוחב הברקוד הינו שדה חובה.',
+ 'default_item_columns' => 'ברירת מחדל של עמודות לפריטים גלויים',
+ 'default_origin_tax_code' => 'קוד ברירת מחדל למס במקור',
+ 'default_receivings_discount' => 'הנחה ברירת מחדל להחזרות ספקים',
+ 'default_receivings_discount_number' => 'הנחה ברירת מחדל להחזרות ספקים חייב להיות מספר.',
+ 'default_receivings_discount_required' => 'הנחה ברירת מחדל להחזרות ספקים הינו שדה חובה.',
+ 'default_sales_discount' => 'הנחה ברירת מחדל למכירות',
+ 'default_sales_discount_number' => 'הנחה ברירת מחדל למכירות חייב להיות מספר.',
+ 'default_sales_discount_required' => 'הנחה ברירת מחדל למכירות הינו שדה חובה.',
+ 'default_tax_category' => 'קטגוריה מס ברירת מחדל',
+ 'default_tax_code' => 'קוד מס ברירת מחדל',
+ 'default_tax_jurisdiction' => 'תחום שיפוט מס ברירת מחדל',
+ 'default_tax_name_number' => 'שם מס ברירת המחדל חייב להיות מחרוזת.',
+ 'default_tax_name_required' => 'שם מס ברירת המחדל הינו שדה חובה.',
+ 'default_tax_rate' => 'שיעור מס ברירת מחדל %',
+ 'default_tax_rate_1' => 'מדרגת מס 1',
+ 'default_tax_rate_2' => 'מדרגת מס 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'שיעור מס ברירת מחדל חייב להיות מספר.',
+ 'default_tax_rate_required' => 'שיעור מס ברירת מחדל הינו שדה חובה.',
+ 'derive_sale_quantity' => 'אפשר כמות נגזרת של מכירה',
+ 'derive_sale_quantity_tooltip' => 'אם מסומן, סוג פריט חדש יספק פריטים שהוזמנו בכמות מורחבת',
+ 'dinner_table' => 'טבלה',
+ 'dinner_table_duplicate' => 'הטבלה חייבת להיות ייחודית.',
+ 'dinner_table_enable' => 'אפשר טבלאות אוכל',
+ 'dinner_table_invalid_chars' => "שם הטבלה אינו יכול להכיל את '_'.",
+ 'dinner_table_required' => 'שם הטבלה הינו שדה חובה.',
+ 'dot' => 'נקודה',
+ 'email' => 'אימייל',
+ 'email_configuration' => 'הגדרות אימייל',
+ 'email_mailpath' => 'נתיב לשליחת מייל',
+ 'email_protocol' => 'פרוטוקול',
+ 'email_receipt_check_behaviour' => 'תיבת סימון של קבלת אימייל',
+ 'email_receipt_check_behaviour_always' => 'תמיד מסומן',
+ 'email_receipt_check_behaviour_last' => 'זכור את הבחירה האחרונה',
+ 'email_receipt_check_behaviour_never' => 'תמיד לא מסומן',
+ 'email_smtp_crypto' => 'הצפנת SMTP',
+ 'email_smtp_host' => 'שרת SMTP',
+ 'email_smtp_pass' => 'סיסמת SMTP',
+ 'email_smtp_port' => 'יציאת SMTP',
+ 'email_smtp_timeout' => 'זמן קצוב לתפוגה של SMTP',
+ 'email_smtp_user' => 'שם משתמש של SMTP',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'אכיפת פרטיות',
+ 'enforce_privacy_tooltip' => 'הגן על פרטיות הלקוחות ואכיפת ערבוב נתונים במקרה של מחיקת הנתונים שלהם',
+ 'fax' => 'פקס',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => 'תחילת שנת הכספים',
+ 'financial_year_apr' => '1 של אפריל',
+ 'financial_year_aug' => '1 של אוגוסט',
+ 'financial_year_dec' => '1 של דצמבר',
+ 'financial_year_feb' => '1 של פברואר',
+ 'financial_year_jan' => '1 של ינואר',
+ 'financial_year_jul' => '1 של יולי',
+ 'financial_year_jun' => '1 של יוני',
+ 'financial_year_mar' => '1 של מרץ',
+ 'financial_year_may' => '1 של מאי',
+ 'financial_year_nov' => '1 של נובמבר',
+ 'financial_year_oct' => '1 של אוקטובר',
+ 'financial_year_sep' => '1 של ספטמבר',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => 'דף התחברות reCAPTCHA',
+ 'gcaptcha_secret_key' => 'מפתח סודי של reCAPTCHA',
+ 'gcaptcha_secret_key_required' => 'מפתח סודי של reCAPTCHA הינו שדה חובה',
+ 'gcaptcha_site_key' => 'מפתח אתר reCAPTCHA',
+ 'gcaptcha_site_key_required' => 'מפתח אתר reCAPTCHA הינו שדה חובה',
+ 'gcaptcha_tooltip' => 'הגן על דף ההתחברות באמצעות Google reCAPTCHA, לחץ על האייקון של ממשק צמד מפתחות API.',
+ 'general' => 'כללי',
+ 'general_configuration' => 'הגדרות כלליות',
+ 'giftcard_number' => 'מספר כרטיס מתנה',
+ 'giftcard_random' => 'צור אקראי',
+ 'giftcard_series' => 'צור בסדרה',
+ 'image_allowed_file_types' => '',
+ 'image_max_height_tooltip' => '',
+ 'image_max_size_tooltip' => '',
+ 'image_max_width_tooltip' => '',
+ 'image_restrictions' => '',
+ 'include_hsn' => 'כלול תמיכה בקודי HSN',
+ 'info' => 'מידע',
+ 'info_configuration' => 'אחסון מידע',
+ 'input_groups' => '',
+ 'integrations' => 'אינטגרציה',
+ 'integrations_configuration' => 'שילובים של צד שלישי',
+ 'invoice' => 'חשבונית',
+ 'invoice_configuration' => 'הגדרות הדפסה של חשבוניות',
+ 'invoice_default_comments' => 'הערות ברירת מחדל של חשבוניות',
+ 'invoice_email_message' => 'תבנית אימייל של חשבונית',
+ 'invoice_enable' => 'הפעל חשבוניות',
+ 'invoice_printer' => 'מדפסת חשבונית',
+ 'invoice_type' => 'סוג חשבונית',
+ 'is_readable' => '',
+ 'is_writable' => 'is writable, but the permissions are higher than 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'אזהרה: פונקציונליות זו תפעל רק אם התקנת את התוסף FireFox jsPrintSetup ,לשמור בכל זאת?',
+ 'language' => 'שפה',
+ 'last_used_invoice_number' => 'מספר חשבונית אחרונה שהייתה בשימוש',
+ 'last_used_quote_number' => 'מספר הצעת מחיר אחרונה שהייתה בשימוש',
+ 'last_used_work_order_number' => 'מספר W/O אחרון שהיה בשימוש',
+ 'left' => 'שמאל',
+ 'license' => 'רישיון',
+ 'license_configuration' => 'הצהרת רישיון',
+ 'line_sequence' => 'סדר פעולות',
+ 'lines_per_page' => 'שורות בעמוד',
+ 'lines_per_page_number' => 'שורות בעמוד חייב להיות מספר.',
+ 'lines_per_page_required' => 'שורות בעמוד הינו שדה חובה.',
+ 'locale' => 'התאמת שפה',
+ 'locale_configuration' => 'הגדרות התאמת שפה',
+ 'locale_info' => 'מידע על הגדרות התאמת שפה',
+ 'location' => 'מלאי',
+ 'location_configuration' => 'מיקום המלאי',
+ 'location_info' => 'מידע על הגדרות מיקום',
+ 'login_form' => '',
+ 'logout' => 'האם ברצונך לבצע גיבוי לפני היציאה? לחץ על [OK] כדי לגבות או [ביטול] כדי להתנתק.',
+ 'mailchimp' => 'Mailchimp (פלטפורמה לשליחת מיילים)',
+ 'mailchimp_api_key' => 'מפתח API של Mailchimp',
+ 'mailchimp_configuration' => 'הגדרות Mailchimp',
+ 'mailchimp_key_successfully' => 'מפתח ה- API תקף.',
+ 'mailchimp_key_unsuccessfully' => 'מפתח ה- API לא תקף.',
+ 'mailchimp_lists' => 'רשימת Mailchimp',
+ 'mailchimp_tooltip' => 'לחץ על האייקון של מפתח ממשק API.',
+ 'message' => 'הודעה',
+ 'message_configuration' => 'הגדרות הודעה',
+ 'msg_msg' => 'הודעת טקסט שמורה',
+ 'msg_msg_placeholder' => 'אם ברצונך להשתמש בתבנית הודעה שמור את ההודעה שלך כאן, אחרת השאר את התיבה ריקה.',
+ 'msg_pwd' => 'סיסמה של SMS-API',
+ 'msg_pwd_required' => 'סיסמה של SMS-API הינו שדה חובה',
+ 'msg_src' => 'מזהה שולח SMS-API',
+ 'msg_src_required' => 'מזהה שולח SMS-API הינו שדה חובה',
+ 'msg_uid' => 'שם משתמש של SMS-API',
+ 'msg_uid_required' => 'שם משתמש של SMS-API הינו שדה חובה',
+ 'multi_pack_enabled' => 'חבילות מרובות לכל פריט',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => 'לא קיים',
+ 'notify_alignment' => 'מיקום חלון קופץ',
+ 'number_format' => 'פורמט מספר',
+ 'number_locale' => 'הגדרות שפה',
+ 'number_locale_invalid' => 'האזור שהוזן אינו חוקי. בדוק את הקישור שבסרגל הכלים כדי לאתר אזור חוקי.',
+ 'number_locale_required' => 'מספר אזור הינו שדה חובה.',
+ 'number_locale_tooltip' => 'מצא אזור תואם באמצעות קישור זה.',
+ 'os_timezone' => '',
+ 'ospos_info' => 'OSPOS פרטי התקנה',
+ 'payment_options_order' => 'סידור אפשרויות תשלום',
+ 'payment_reference_code_length_limits' => 'קוד אסמכתא לתשלום
מגבלות אורך',
+ 'payment_reference_code_length_max_label' => 'מקס',
+ 'payment_reference_code_length_min_label' => 'מין',
+ 'perm_risk' => 'Permissions higher than 750 leaves this software at risk.',
+ 'phone' => 'טלפון חברה',
+ 'phone_required' => 'טלפון חברה הינו שדה חובה.',
+ 'print_bottom_margin' => 'כפתור שוליים',
+ 'print_bottom_margin_number' => 'שדה כפתור שוליים חייב להיות מספר.',
+ 'print_bottom_margin_required' => 'כפתור שוליים הינו שדה חובה.',
+ 'print_delay_autoreturn' => 'חזרה אוטומטית לעיכוב מכירה',
+ 'print_delay_autoreturn_number' => 'חזרה אוטומטית לעיכוב מכירה הינו שדה חובה.',
+ 'print_delay_autoreturn_required' => 'שדה חזרה אוטומטית לעיכוב מכירה חייב להיות מספר.',
+ 'print_footer' => 'הדפס כותרת תחתונה',
+ 'print_header' => 'הדפס כותרת עליונה',
+ 'print_left_margin' => 'שוליים צד שמאל',
+ 'print_left_margin_number' => 'שדה שוליים צד שמאל חייב להיות מספר.',
+ 'print_left_margin_required' => 'שוליים צד שמאל הינו שדה חובה.',
+ 'print_receipt_check_behaviour' => 'הדפס קבלה',
+ 'print_receipt_check_behaviour_always' => 'תמיד מסומן',
+ 'print_receipt_check_behaviour_last' => 'זכור את הבחירה האחרונה',
+ 'print_receipt_check_behaviour_never' => 'תמיד לא מסומן',
+ 'print_right_margin' => 'שוליים צד ימין',
+ 'print_right_margin_number' => 'שדה שוליים צד ימין חייב להיות מספר.',
+ 'print_right_margin_required' => 'שוליים צד ימין הינו שדה חובה.',
+ 'print_silently' => "הצג את תיבת הדו-שיח 'הדפסה'",
+ 'print_top_margin' => 'שוליים עליונים',
+ 'print_top_margin_number' => 'שדה שוליים עליונים חייב להיות מספר.',
+ 'print_top_margin_required' => 'שוליים עליונים הינו שדה חובה.',
+ 'quantity_decimals' => 'כמות עשרונית',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'הערת ברירת מחדל להצעת מחיר',
+ 'receipt' => 'קבלה',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'הגדרות הדפסה קבלה',
+ 'receipt_default' => 'ברירת מחדל',
+ 'receipt_font_size' => 'גודל פונט',
+ 'receipt_font_size_number' => 'שדה גודל פונט חייב להיות מספר.',
+ 'receipt_font_size_required' => 'גודל פונט הינו שדה חובה.',
+ 'receipt_info' => 'מידע על הגדרות קבלה',
+ 'receipt_printer' => 'מדפסת כרטיסים',
+ 'receipt_short' => 'קצר',
+ 'receipt_show_company_name' => 'הצג שם חברה',
+ 'receipt_show_description' => 'הצג תיאור',
+ 'receipt_show_serialnumber' => 'הצג מספר סידורי',
+ 'receipt_show_tax_ind' => '',
+ 'receipt_show_taxes' => 'הצג מסים',
+ 'receipt_show_total_discount' => 'הצג הנחה כוללת',
+ 'receipt_template' => 'תבנית קבלה',
+ 'receiving_calculate_average_price' => 'חישוב ממוצע למחיר (החזרותספקים)',
+ 'recv_invoice_format' => 'תבנית חשבונית החזרותספקים',
+ 'register_mode_default' => 'מצב רישום ברירת מחדל',
+ 'report_an_issue' => '',
+ 'return_policy_required' => 'מדיניות ההחזרה היא שדה חובה.',
+ 'reward' => 'תגמול',
+ 'reward_configuration' => 'הגדרות תגמולים',
+ 'right' => 'ימין',
+ 'sales_invoice_format' => 'תבנית חשבונית מכירות',
+ 'sales_quote_format' => 'תבנית חשבונית הצעת מחיר',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => 'ההגדרות נשמרו בהצלחה.',
+ 'saved_unsuccessfully' => 'שמירת ההגדרות נכשלה.',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'השתמש במידע הבא לדיווח על בעיות.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'הצג את סמל המשרד',
+ 'statistics' => 'שלח סטטיסטיקה',
+ 'statistics_tooltip' => 'שלח סטטיסטיקות למפתחים למטרות פיתוח ושיפור התוכנה.',
+ 'stock_location' => 'מיקום המלאי',
+ 'stock_location_duplicate' => 'מיקום המלאי חייב להיות ייחודי.',
+ 'stock_location_invalid_chars' => "מיקום המלאי אינו יכול להכיל '_'.",
+ 'stock_location_required' => 'מיקום המלאי הינו שדה חובה.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'עמודה 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'פריסת הצעות חיפוש',
+ 'suggestions_second_column' => 'עמודה 2',
+ 'suggestions_third_column' => 'עמודה 3',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'מידע מערכת',
+ 'table' => 'טבלה',
+ 'table_configuration' => 'הגדרות טבלה',
+ 'takings_printer' => 'מדפסת קבלה',
+ 'tax' => 'מס',
+ 'tax_category' => 'קטגוריה מס',
+ 'tax_category_duplicate' => 'קטגוריית המס שהוזנה כבר קיימת.',
+ 'tax_category_invalid_chars' => 'קטגוריית המס שהוזנה אינה חוקית.',
+ 'tax_category_required' => 'קטגוריית המס הינה חובה.',
+ 'tax_category_used' => 'לא ניתן למחוק את קטגוריית המס מכיוון שהיא נמצאת בשימוש.',
+ 'tax_configuration' => 'הגדרות מס',
+ 'tax_decimals' => 'מס עשרוני',
+ 'tax_id' => 'מזהה לצורך מס',
+ 'tax_included' => 'כולל מס',
+ 'theme' => 'ערכת נושא',
+ 'theme_preview' => '',
+ 'thousands_separator' => 'מפריד אלפים',
+ 'timezone' => 'אזור זמן',
+ 'timezone_error' => '',
+ 'top' => 'חלק עליון',
+ 'use_destination_based_tax' => 'השתמש במס מבוסס יעד',
+ 'user_timezone' => '',
+ 'website' => 'אתר',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'תמיכה בהזמנת עבודה',
+ 'work_order_format' => 'פורמט הזמנת עבודה',
];
diff --git a/app/Language/he/Login.php b/app/Language/he/Login.php
index aa1ef1cea..f5081488e 100644
--- a/app/Language/he/Login.php
+++ b/app/Language/he/Login.php
@@ -1,25 +1,30 @@
"אני לא רובוט.",
- "go" => "שלח",
- "invalid_gcaptcha" => "שגיאת אימות.",
- "invalid_installation" => "ההתקנה אינה נכונה, בדוק את קובץ php.ini.",
- "invalid_username_and_password" => "שם משתמש או סיסמה לא נכונים.",
- "login" => "כניסה",
- "logout" => "",
- "migration_needed" => "",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "סיסמה",
- "required_username" => "",
- "username" => "שם משתמש",
- "welcome" => "",
+ "gcaptcha" => "אני לא רובוט.",
+ "go" => "שלח",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "שגיאת אימות.",
+ "invalid_installation" => "ההתקנה אינה נכונה, בדוק את קובץ php.ini.",
+ "invalid_username_and_password" => "שם משתמש או סיסמה לא נכונים.",
+ "login" => "כניסה",
+ "logout" => "",
+ "migrating_database" => "מעביר בסיס נתונים",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "בסיס הנתונים הועבר בהצלחה!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "סיסמה",
+ "required_username" => "",
+ "username" => "שם משתמש",
+ "welcome" => ""
];
diff --git a/app/Language/he/Sales.php b/app/Language/he/Sales.php
index 2aa19d64c..d32f48b3c 100644
--- a/app/Language/he/Sales.php
+++ b/app/Language/he/Sales.php
@@ -1,231 +1,235 @@
"נקודות זמינות",
- "rewards_package" => "פרסים",
- "rewards_remaining_balance" => "נקודות הפרס הנותרות הן ",
- "account_number" => "חשבון מס #",
- "add_payment" => "הוסף תשלום",
- "amount_due" => "סכום לתשלום",
- "amount_tendered" => "סכום ההצעה",
- "authorized_signature" => "חתימת מורשה",
- "cancel_sale" => "בטל",
- "cash" => "מזומן",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "",
- "cash_deposit" => "הפקדת מזומן",
- "cash_filter" => "מזומן",
- "change_due" => "עודף לתשלום",
- "change_price" => "",
- "check" => "שק",
- "check_balance" => "תזכורת שקים",
- "check_filter" => "שק",
- "close" => "",
- "comment" => "הערה",
- "comments" => "הערות",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "הושלם",
- "confirm_cancel_sale" => "האם אתה בטוח שברצונך למחוק את המכירה הזו? כל הפריטים יימחקו.",
- "confirm_delete" => "האם אתה בטוח שברצונך למחוק את המכירות שנבחרו?",
- "confirm_restore" => "האם אתה בטוח שברצונך לשחזר את המכירות שנבחרו?",
- "credit" => "כרטיס אשראי",
- "credit_deposit" => "הפקדת אשראי",
- "credit_filter" => "",
- "current_table" => "",
- "customer" => "שם",
- "customer_address" => "כתובת",
- "customer_discount" => "הנחה",
- "customer_email" => "אימייל",
- "customer_location" => "מיקום",
- "customer_mailchimp_status" => "מצב Mailchimp",
- "customer_optional" => "נדרש עבור תשלומים עתידיים (אופציונאלי)",
- "customer_required" => "(נדרש)",
- "customer_total" => "סהכ",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "תאריך המכירה",
- "date_range" => "טווח תאריכים",
- "date_required" => "יש להזין תאריך נכון.",
- "date_type" => "תאריך הוא שדה חובה.",
- "debit" => "כרטיס חיוב מיידי",
- "debit_filter" => "",
- "delete" => "אפשר מחיקה",
- "delete_confirmation" => "האם אתה בטוח שברצונך למחוק את המכירה הזו? לא ניתן לבטל פעולה זו.",
- "delete_entire_sale" => "מחק את כל המכירה",
- "delete_successful" => "המכירה נמחקה בהצלחה.",
- "delete_unsuccessful" => "מחיקת המכירה נכשלה.",
- "description_abbrv" => "תיאור.",
- "discard" => "התעלם",
- "discard_quote" => "",
- "discount" => "תיאור",
- "discount_included" => "% הנחה",
- "discount_short" => "%",
- "due" => "לתשלום",
- "due_filter" => "צפוי לתשלום",
- "edit" => "ערוך",
- "edit_item" => "ערוך פריט",
- "edit_sale" => "ערוך מכירה",
- "email_receipt" => "נמען אימייל",
- "employee" => "עובד",
- "entry" => "ערך",
- "error_editing_item" => "שגיאה בעריכת פריט",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "חיפוש או סריקה של פריט",
- "find_or_scan_item_or_receipt" => "חיפוש או סריקה של פריט או קבלה",
- "giftcard" => "כרטיס מתנה",
- "giftcard_balance" => "מאזן כרטיס מתנה",
- "giftcard_filter" => "",
- "giftcard_number" => "מספר כרטיס מתנה",
- "group_by_category" => "קבוצה או קטגוריה",
- "group_by_type" => "קבוצה לפי סוג",
- "hsn" => "HSN",
- "id" => "מזהה מכירה",
- "include_prices" => "לכלול מחירים?",
- "invoice" => "חשבונית",
- "invoice_confirm" => "חשבונית זו תישלח אל",
- "invoice_enable" => "צור חשבונית",
- "invoice_filter" => "חשבוניות",
- "invoice_no_email" => "ללקוח זה אין כתובת אימייל חוקית.",
- "invoice_number" => "חשבונית #",
- "invoice_number_duplicate" => "מספר החשבונית חייב להיות ייחודי.",
- "invoice_sent" => "חשבונית נשלחה אל",
- "invoice_total" => "סהכ חשבונית",
- "invoice_type_custom_invoice" => "חשבונית מותאמת אישית (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "חשבונית מס מותאמת אישית (custom_tax_invoice.php)",
- "invoice_type_invoice" => "חשבונית (invoice.php)",
- "invoice_type_tax_invoice" => "חשבונית מס (tax_invoice.php)",
- "invoice_unsent" => "החשבונית לא נשלחה אל",
- "invoice_update" => "ספירה חוזרת",
- "item_insufficient_of_stock" => "הפריט מכיל מלאי נמוך.",
- "item_name" => "שם פריט",
- "item_number" => "פריט #",
- "item_out_of_stock" => "הפריט לא במלאי.",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "מצב הרשמה",
- "must_enter_numeric" => "סכום ההצעה חייב להיות מספר.",
- "must_enter_numeric_giftcard" => "מספר כרטיס המתנה חייב להיות מספר.",
- "new_customer" => "לקוח חדש",
- "new_item" => "פריט חדש",
- "no_description" => "אין תיאור",
- "no_filter" => "הכול",
- "no_items_in_cart" => "אין פריטים בעגלה.",
- "no_sales_to_display" => "אין מכירות להצגה.",
- "none_selected" => "לא בחרת כל מכירה(ות) למחיקה.",
- "nontaxed_ind" => "",
- "not_authorized" => "פעולה זו אינה מורשית.",
- "one_or_multiple" => "מכירה(ות)",
- "payment" => "סוג תשלום",
- "payment_amount" => "סכום",
- "payment_not_cover_total" => "סכום התשלום חייב להיות גדול או שווה לסהכ.",
- "payment_type" => "סוג",
- "payments" => "",
- "payments_total" => "סהכ תשלום",
- "price" => "מחיר",
- "print_after_sale" => "הדפס לאחר מכירה",
- "quantity" => "כמות",
- "quantity_less_than_reorder_level" => "אזהרה: כמות רצויה נמצאת מתחת לרמת ההזמנה עבור פריט זה.",
- "quantity_less_than_zero" => "אזהרה: כמות מבוקשת אינה מספיקה. עדיין תוכל לעבד את המכירה, אך בדוק את המלאי שלך.",
- "quantity_of_items" => "כמות של {0} פריטים",
- "quote" => "הצעת מחיר",
- "quote_number" => "מספר הצעת מחיר",
- "quote_number_duplicate" => "מספר הצעת מחיר חייב להיות ייחודי.",
- "quote_sent" => "הצעת המחיר נשלחה אל",
- "quote_unsent" => "הצעת המחיר לא נשלחה אל",
- "receipt" => "קבלה",
- "receipt_no_email" => "ללקוח זה אין כתובת אימייל חוקית.",
- "receipt_number" => "מכירה #",
- "receipt_sent" => "קבלה נשלחה אל",
- "receipt_unsent" => "קבלה לא נשלחה אל",
- "refund" => "",
- "register" => "קופת מכירות",
- "remove_customer" => "הסר לקוח",
- "remove_discount" => "",
- "return" => "החזרה",
- "rewards" => "נקודות פרס",
- "rewards_balance" => "מאזן נקודות פרס",
- "sale" => "מכירה",
- "sale_by_invoice" => "מכירה לפי חשבונית",
- "sale_for_customer" => "לקוח:",
- "sale_time" => "זמן",
- "sales_tax" => "מס מכירה",
- "sales_total" => "",
- "select_customer" => "בחר לקוח",
- "send_invoice" => "שלח חשבונית",
- "send_quote" => "שלח הצעת מחיר",
- "send_receipt" => "שלח קבלה",
- "send_work_order" => "שלח הזמנת עבודה",
- "serial" => "מספר סידורי",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "הצג חשבונית",
- "show_receipt" => "הצג קבלה",
- "start_typing_customer_name" => "התחל להקליד פרטי לקוח ...",
- "start_typing_item_name" => "התחל להקליד שם פריט או סרוק ברקוד ...",
- "stock" => "מלאי",
- "stock_location" => "מיקום מלאי",
- "sub_total" => "סהכ",
- "successfully_deleted" => "נמחק בהצלחה",
- "successfully_restored" => "שוחזר בהצלחה",
- "successfully_suspended_sale" => "מכירה הושהתה בהצלחה.",
- "successfully_updated" => "מכירה עודכנה בהצלחה.",
- "suspend_sale" => "השהה",
- "suspended_doc_id" => "מסמך",
- "suspended_sale_id" => "מזהה",
- "suspended_sales" => "הושהו",
- "table" => "טבלה",
- "takings" => "מכירות יומיות",
- "tax" => "מס",
- "tax_id" => "מזהה מס",
- "tax_invoice" => "חשבונית מס",
- "tax_percent" => "מס %",
- "taxed_ind" => "",
- "total" => "סהכ",
- "total_tax_exclusive" => "לא כולל מס",
- "transaction_failed" => "עסקת המכירה נכשלה.",
- "unable_to_add_item" => "הוספת פריט למכירה נכשל",
- "unsuccessfully_deleted" => "מחיקת מכירה(ות) נכשלה.",
- "unsuccessfully_restored" => "שחזור מכירה(ות) נכשלה.",
- "unsuccessfully_suspended_sale" => "השהיית מכירה(ות) נכשלה.",
- "unsuccessfully_updated" => "עדכון מכירה נכשל.",
- "unsuspend" => "בטל השהייה",
- "unsuspend_and_delete" => "פעולה",
- "update" => "עדכן",
- "upi" => "UPI",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "הזמנת עבודה",
- "work_order_number" => "מספר הזמנת עבודה",
- "work_order_number_duplicate" => "מספר הזמנת עבודה חייב להיות ייחודי.",
- "work_order_sent" => "הזמנת עבודה נשלחה אל",
- "work_order_unsent" => "הזמנת עבודה לא נשלחה אל",
+ 'account_number' => 'חשבון מס #',
+ 'add_payment' => 'הוסף תשלום',
+ 'amount_due' => 'סכום לתשלום',
+ 'amount_tendered' => 'סכום ההצעה',
+ 'authorized_signature' => 'חתימת מורשה',
+ 'cancel_sale' => 'בטל',
+ 'cash' => 'מזומן',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => '',
+ 'cash_deposit' => 'הפקדת מזומן',
+ 'cash_filter' => 'מזומן',
+ 'change_due' => 'עודף לתשלום',
+ 'change_price' => '',
+ 'check' => 'שק',
+ 'check_balance' => 'תזכורת שקים',
+ 'check_filter' => 'שק',
+ 'close' => '',
+ 'comment' => 'הערה',
+ 'comments' => 'הערות',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'הושלם',
+ 'confirm_cancel_sale' => 'האם אתה בטוח שברצונך למחוק את המכירה הזו? כל הפריטים יימחקו.',
+ 'confirm_delete' => 'האם אתה בטוח שברצונך למחוק את המכירות שנבחרו?',
+ 'confirm_restore' => 'האם אתה בטוח שברצונך לשחזר את המכירות שנבחרו?',
+ 'credit' => 'כרטיס אשראי',
+ 'credit_deposit' => 'הפקדת אשראי',
+ 'credit_filter' => '',
+ 'current_table' => '',
+ 'customer' => 'שם',
+ 'customer_address' => 'כתובת',
+ 'customer_discount' => 'הנחה',
+ 'customer_email' => 'אימייל',
+ 'customer_location' => 'מיקום',
+ 'customer_mailchimp_status' => 'מצב Mailchimp',
+ 'customer_optional' => 'נדרש עבור תשלומים עתידיים (אופציונאלי)',
+ 'customer_required' => '(נדרש)',
+ 'customer_total' => 'סהכ',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'נקודות זמינות',
+ 'daily_sales' => '',
+ 'date' => 'תאריך המכירה',
+ 'date_range' => 'טווח תאריכים',
+ 'date_required' => 'יש להזין תאריך נכון.',
+ 'date_type' => 'תאריך הוא שדה חובה.',
+ 'debit' => 'כרטיס חיוב מיידי',
+ 'debit_filter' => '',
+ 'delete' => 'אפשר מחיקה',
+ 'delete_confirmation' => 'האם אתה בטוח שברצונך למחוק את המכירה הזו? לא ניתן לבטל פעולה זו.',
+ 'delete_entire_sale' => 'מחק את כל המכירה',
+ 'delete_successful' => 'המכירה נמחקה בהצלחה.',
+ 'delete_unsuccessful' => 'מחיקת המכירה נכשלה.',
+ 'description_abbrv' => 'תיאור.',
+ 'discard' => 'התעלם',
+ 'discard_quote' => '',
+ 'discount' => 'תיאור',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% הנחה',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'לתשלום',
+ 'due_filter' => 'צפוי לתשלום',
+ 'edit' => 'ערוך',
+ 'edit_item' => 'ערוך פריט',
+ 'edit_sale' => 'ערוך מכירה',
+ 'email_receipt' => 'נמען אימייל',
+ 'employee' => 'עובד',
+ 'entry' => 'ערך',
+ 'error_editing_item' => 'שגיאה בעריכת פריט',
+ 'find_or_scan_item' => 'חיפוש או סריקה של פריט',
+ 'find_or_scan_item_or_receipt' => 'חיפוש או סריקה של פריט או קבלה',
+ 'giftcard' => 'כרטיס מתנה',
+ 'giftcard_balance' => 'מאזן כרטיס מתנה',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'מספר כרטיס מתנה',
+ 'group_by_category' => 'קבוצה או קטגוריה',
+ 'group_by_type' => 'קבוצה לפי סוג',
+ 'hsn' => 'HSN',
+ 'id' => 'מזהה מכירה',
+ 'include_prices' => 'לכלול מחירים?',
+ 'invoice' => 'חשבונית',
+ 'invoice_confirm' => 'חשבונית זו תישלח אל',
+ 'invoice_enable' => 'צור חשבונית',
+ 'invoice_filter' => 'חשבוניות',
+ 'invoice_no_email' => 'ללקוח זה אין כתובת אימייל חוקית.',
+ 'invoice_number' => 'חשבונית #',
+ 'invoice_number_duplicate' => 'מספר החשבונית חייב להיות ייחודי.',
+ 'invoice_sent' => 'חשבונית נשלחה אל',
+ 'invoice_total' => 'סהכ חשבונית',
+ 'invoice_type_custom_invoice' => 'חשבונית מותאמת אישית (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'חשבונית מס מותאמת אישית (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'חשבונית (invoice.php)',
+ 'invoice_type_tax_invoice' => 'חשבונית מס (tax_invoice.php)',
+ 'invoice_unsent' => 'החשבונית לא נשלחה אל',
+ 'invoice_update' => 'ספירה חוזרת',
+ 'item_insufficient_of_stock' => 'הפריט מכיל מלאי נמוך.',
+ 'item_name' => 'שם פריט',
+ 'item_number' => 'פריט #',
+ 'item_out_of_stock' => 'הפריט לא במלאי.',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'מצב הרשמה',
+ 'must_enter_numeric' => 'סכום ההצעה חייב להיות מספר.',
+ 'must_enter_numeric_giftcard' => 'מספר כרטיס המתנה חייב להיות מספר.',
+ 'must_enter_reference_code' => 'יש להזין מספר אסמכתא/אחזור.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'לקוח חדש',
+ 'new_item' => 'פריט חדש',
+ 'no_description' => 'אין תיאור',
+ 'no_filter' => 'הכול',
+ 'no_items_in_cart' => 'אין פריטים בעגלה.',
+ 'no_sales_to_display' => 'אין מכירות להצגה.',
+ 'none_selected' => 'לא בחרת כל מכירה(ות) למחיקה.',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => 'פעולה זו אינה מורשית.',
+ 'one_or_multiple' => 'מכירה(ות)',
+ 'payment' => 'סוג תשלום',
+ 'payment_amount' => 'סכום',
+ 'payment_not_cover_total' => 'סכום התשלום חייב להיות גדול או שווה לסהכ.',
+ 'payment_type' => 'סוג',
+ 'payments' => '',
+ 'payments_total' => 'סהכ תשלום',
+ 'price' => 'מחיר',
+ 'print_after_sale' => 'הדפס לאחר מכירה',
+ 'quantity' => 'כמות',
+ 'quantity_less_than_reorder_level' => 'אזהרה: כמות רצויה נמצאת מתחת לרמת ההזמנה עבור פריט זה.',
+ 'quantity_less_than_zero' => 'אזהרה: כמות מבוקשת אינה מספיקה. עדיין תוכל לעבד את המכירה, אך בדוק את המלאי שלך.',
+ 'quantity_of_items' => 'כמות של {0} פריטים',
+ 'quote' => 'הצעת מחיר',
+ 'quote_number' => 'מספר הצעת מחיר',
+ 'quote_number_duplicate' => 'מספר הצעת מחיר חייב להיות ייחודי.',
+ 'quote_sent' => 'הצעת המחיר נשלחה אל',
+ 'quote_unsent' => 'הצעת המחיר לא נשלחה אל',
+ 'receipt' => 'קבלה',
+ 'receipt_no_email' => 'ללקוח זה אין כתובת אימייל חוקית.',
+ 'receipt_number' => 'מכירה #',
+ 'receipt_sent' => 'קבלה נשלחה אל',
+ 'receipt_unsent' => 'קבלה לא נשלחה אל',
+ 'reference_code' => 'קוד אסמכתא לתשלום',
+ 'reference_code_invalid_characters' => 'קוד האסמכתא חייב להכיל רק אותיות ומספרים.',
+ 'reference_code_length_error' => 'אורך קוד האסמכתא אינו תקין.',
+ 'refund' => '',
+ 'register' => 'קופת מכירות',
+ 'remove_customer' => 'הסר לקוח',
+ 'remove_discount' => '',
+ 'return' => 'החזרה',
+ 'rewards' => 'נקודות פרס',
+ 'rewards_balance' => 'מאזן נקודות פרס',
+ 'rewards_package' => 'פרסים',
+ 'rewards_remaining_balance' => 'נקודות הפרס הנותרות הן ',
+ 'sale' => 'מכירה',
+ 'sale_by_invoice' => 'מכירה לפי חשבונית',
+ 'sale_for_customer' => 'לקוח:',
+ 'sale_time' => 'זמן',
+ 'sales_tax' => 'מס מכירה',
+ 'sales_total' => '',
+ 'select_customer' => 'בחר לקוח',
+ 'send_invoice' => 'שלח חשבונית',
+ 'send_quote' => 'שלח הצעת מחיר',
+ 'send_receipt' => 'שלח קבלה',
+ 'send_work_order' => 'שלח הזמנת עבודה',
+ 'serial' => 'מספר סידורי',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'הצג חשבונית',
+ 'show_receipt' => 'הצג קבלה',
+ 'start_typing_customer_name' => 'התחל להקליד פרטי לקוח ...',
+ 'start_typing_item_name' => 'התחל להקליד שם פריט או סרוק ברקוד ...',
+ 'stock' => 'מלאי',
+ 'stock_location' => 'מיקום מלאי',
+ 'sub_total' => 'סהכ',
+ 'successfully_deleted' => 'נמחק בהצלחה',
+ 'successfully_restored' => 'שוחזר בהצלחה',
+ 'successfully_suspended_sale' => 'מכירה הושהתה בהצלחה.',
+ 'successfully_updated' => 'מכירה עודכנה בהצלחה.',
+ 'suspend_sale' => 'השהה',
+ 'suspended_doc_id' => 'מסמך',
+ 'suspended_sale_id' => 'מזהה',
+ 'suspended_sales' => 'הושהו',
+ 'table' => 'טבלה',
+ 'takings' => 'מכירות יומיות',
+ 'tax' => 'מס',
+ 'tax_id' => 'מזהה מס',
+ 'tax_invoice' => 'חשבונית מס',
+ 'tax_percent' => 'מס %',
+ 'taxed_ind' => '',
+ 'total' => 'סהכ',
+ 'total_tax_exclusive' => 'לא כולל מס',
+ 'transaction_failed' => 'עסקת המכירה נכשלה.',
+ 'unable_to_add_item' => 'הוספת פריט למכירה נכשל',
+ 'unsuccessfully_deleted' => 'מחיקת מכירה(ות) נכשלה.',
+ 'unsuccessfully_restored' => 'שחזור מכירה(ות) נכשלה.',
+ 'unsuccessfully_suspended_sale' => 'השהיית מכירה(ות) נכשלה.',
+ 'unsuccessfully_updated' => 'עדכון מכירה נכשל.',
+ 'unsuspend' => 'בטל השהייה',
+ 'unsuspend_and_delete' => 'פעולה',
+ 'update' => 'עדכן',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'הזמנת עבודה',
+ 'work_order_number' => 'מספר הזמנת עבודה',
+ 'work_order_number_duplicate' => 'מספר הזמנת עבודה חייב להיות ייחודי.',
+ 'work_order_sent' => 'הזמנת עבודה נשלחה אל',
+ 'work_order_unsent' => 'הזמנת עבודה לא נשלחה אל',
];
diff --git a/app/Language/hr-HR/Config.php b/app/Language/hr-HR/Config.php
index ff1facffd..d82d87980 100644
--- a/app/Language/hr-HR/Config.php
+++ b/app/Language/hr-HR/Config.php
@@ -1,332 +1,335 @@
"Adresa tvrtke",
- "address_required" => "Adresu tvrtke je potrebno unijeti",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "",
- "apostrophe" => "apostrophe",
- "backup_button" => "Arhiva",
- "backup_database" => "Arhiviranje baze",
- "barcode" => "Barkoda",
- "barcode_company" => "Naziv tvrtke",
- "barcode_configuration" => "Konfiguracija barkoda",
- "barcode_content" => "Sadržaj barkoda",
- "barcode_first_row" => "1 red",
- "barcode_font" => "Pismo",
- "barcode_formats" => "",
- "barcode_generate_if_empty" => "Generiraj ako je prazno",
- "barcode_height" => "Visina(px)",
- "barcode_id" => "ID artikla",
- "barcode_info" => "Informacija o barkod-ovima",
- "barcode_layout" => "Postavke barkod-a",
- "barcode_name" => "Naziv",
- "barcode_number" => "UPC/EAN/ISBN",
- "barcode_number_in_row" => "Red.br.",
- "barcode_page_cellspacing" => "Stranični prostor",
- "barcode_page_width" => "Širina stranice",
- "barcode_price" => "Cijena",
- "barcode_second_row" => "2.red",
- "barcode_third_row" => "3.red",
- "barcode_tooltip" => "",
- "barcode_type" => "Tip barkod-a",
- "barcode_width" => "Širina (px)",
- "bottom" => "Bottom",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "",
- "cash_decimals_tooltip" => "",
- "cash_rounding" => "",
- "category_dropdown" => "",
- "center" => "Center",
- "change_apperance_tooltip" => "",
- "comma" => "comma",
- "company" => "Naziv tvrtke",
- "company_avatar" => "",
- "company_change_image" => "Promijeni logo",
- "company_logo" => "Logo tvrtke",
- "company_remove_image" => "Ukloni logo",
- "company_required" => "Polje naziv tvrtke je potreban",
- "company_select_image" => "Odaberi logo",
- "company_website_url" => "Adresa web stranice nije valjana (http://...)",
- "country_codes" => "Country Codes",
- "country_codes_tooltip" => "Comma separated list of country codes for nominatim address lookup.",
- "currency_code" => "",
- "currency_decimals" => "Velutne decimale",
- "currency_symbol" => "Valutna oznaka",
- "current_employee_only" => "",
- "customer_reward" => "",
- "customer_reward_duplicate" => "",
- "customer_reward_enable" => "",
- "customer_reward_invalid_chars" => "",
- "customer_reward_required" => "",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "",
- "datetimeformat" => "Oblik datuma i vremena",
- "decimal_point" => "Decimalna točka",
- "default_barcode_font_size_number" => "Veličina pisma barkod-a mora biti broj",
- "default_barcode_font_size_required" => "Veličina pisma je potrebna",
- "default_barcode_height_number" => "Veličina barkod-a mora biti broj",
- "default_barcode_height_required" => "Veličina barkod-a je potrebna",
- "default_barcode_num_in_row_number" => "Broj u redu barkod-a mora biti broj",
- "default_barcode_num_in_row_required" => "Broj u redu barkod-a je potreban",
- "default_barcode_page_cellspacing_number" => "Razmak barkod-a mora biti broj",
- "default_barcode_page_cellspacing_required" => "Vonalkód cellatávolság kötelező mező.",
- "default_barcode_page_width_number" => "Širina stranice barkod-a mora biti broj",
- "default_barcode_page_width_required" => "Širina stranice barkod-a je potrebna",
- "default_barcode_width_number" => "Az alapértelmezett vonalkód szélességnek számnak kell lennie",
- "default_barcode_width_required" => "Širina barkod-a mora bit broj",
- "default_item_columns" => "",
- "default_origin_tax_code" => "",
- "default_receivings_discount" => "",
- "default_receivings_discount_number" => "",
- "default_receivings_discount_required" => "",
- "default_sales_discount" => "Zadani popust %",
- "default_sales_discount_number" => "Zadani popust mora biti broj",
- "default_sales_discount_required" => "Zadani popust je potreban",
- "default_tax_category" => "",
- "default_tax_code" => "",
- "default_tax_jurisdiction" => "",
- "default_tax_name_number" => "",
- "default_tax_name_required" => "Naziv poreza je poteban",
- "default_tax_rate" => "Porez %",
- "default_tax_rate_1" => "Porez 1 %",
- "default_tax_rate_2" => "Porez 2 %",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Zadani porez mora biti broj",
- "default_tax_rate_required" => "Zadani porez je potreban",
- "derive_sale_quantity" => "",
- "derive_sale_quantity_tooltip" => "",
- "dinner_table" => "",
- "dinner_table_duplicate" => "",
- "dinner_table_enable" => "",
- "dinner_table_invalid_chars" => "",
- "dinner_table_required" => "",
- "dot" => "dot",
- "email" => "Email",
- "email_configuration" => "Email Configuration",
- "email_mailpath" => "Path to Sendmail",
- "email_protocol" => "Protocol",
- "email_receipt_check_behaviour" => "",
- "email_receipt_check_behaviour_always" => "",
- "email_receipt_check_behaviour_last" => "",
- "email_receipt_check_behaviour_never" => "",
- "email_smtp_crypto" => "SMTP Encryption",
- "email_smtp_host" => "SMTP Server",
- "email_smtp_pass" => "SMTP Password",
- "email_smtp_port" => "SMTP Port",
- "email_smtp_timeout" => "SMTP Timeout (s)",
- "email_smtp_user" => "SMTP Username",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "",
- "enforce_privacy_tooltip" => "",
- "fax" => "Fax",
- "file_perm" => "There are problems with file permissions please fix and reload this page.",
- "financial_year" => "",
- "financial_year_apr" => "",
- "financial_year_aug" => "",
- "financial_year_dec" => "",
- "financial_year_feb" => "",
- "financial_year_jan" => "",
- "financial_year_jul" => "",
- "financial_year_jun" => "",
- "financial_year_mar" => "",
- "financial_year_may" => "",
- "financial_year_nov" => "",
- "financial_year_oct" => "",
- "financial_year_sep" => "",
- "floating_labels" => "",
- "gcaptcha_enable" => "",
- "gcaptcha_secret_key" => "",
- "gcaptcha_secret_key_required" => "",
- "gcaptcha_site_key" => "",
- "gcaptcha_site_key_required" => "",
- "gcaptcha_tooltip" => "",
- "general" => "Opća",
- "general_configuration" => "Opća konfiguracija",
- "giftcard_number" => "",
- "giftcard_random" => "",
- "giftcard_series" => "",
- "image_allowed_file_types" => "",
- "image_max_height_tooltip" => "",
- "image_max_size_tooltip" => "",
- "image_max_width_tooltip" => "",
- "image_restrictions" => "",
- "include_hsn" => "",
- "info" => "Info",
- "info_configuration" => "Info o web trgovini",
- "input_groups" => "",
- "integrations" => "",
- "integrations_configuration" => "",
- "invoice" => "Račun",
- "invoice_configuration" => "Postavke štamapnja",
- "invoice_default_comments" => "Komentar na računu",
- "invoice_email_message" => "e-mail za račun",
- "invoice_enable" => "Enable Invoicing",
- "invoice_printer" => "Printer za račun",
- "invoice_type" => "",
- "is_readable" => "",
- "is_writable" => "is writable, but the permissions are higher than 750.",
- "item_markup" => "",
- "jsprintsetup_required" => "Upozorenje! Onemogućene opcije će raditi samo ako imate instaliran FireFox jsPrintSetup dodatak. Svakako snimiti?",
- "language" => "Jezik",
- "last_used_invoice_number" => "",
- "last_used_quote_number" => "",
- "last_used_work_order_number" => "",
- "left" => "Left",
- "license" => "License",
- "license_configuration" => "License Statement",
- "line_sequence" => "",
- "lines_per_page" => "Linija po stranici",
- "lines_per_page_number" => "Linija po stranici mora biti broj",
- "lines_per_page_required" => "Broj linija po stranici je potreban podatak",
- "locale" => "Lokacija",
- "locale_configuration" => "Konfiguracija",
- "locale_info" => "Informacije o lokalnoj konfiguraciji",
- "location" => "Skladišta",
- "location_configuration" => "Mjesto skladišta",
- "location_info" => "Info o lokaciji skladišta",
- "login_form" => "",
- "logout" => "Želite napraviti arhivu prije nego izađete? Pritisnite [OK] za arhivu, [Cancel] to otkazivanje.",
- "mailchimp" => "",
- "mailchimp_api_key" => "",
- "mailchimp_configuration" => "",
- "mailchimp_key_successfully" => "",
- "mailchimp_key_unsuccessfully" => "",
- "mailchimp_lists" => "",
- "mailchimp_tooltip" => "",
- "message" => "Message",
- "message_configuration" => "Message Configuration",
- "msg_msg" => "Saved Text Message",
- "msg_msg_placeholder" => "If you wish to use a SMS template save your message here. Otherwise leave the box blank.",
- "msg_pwd" => "SMS-API Password",
- "msg_pwd_required" => "SMS-API Password is a required field",
- "msg_src" => "SMS-API Sender ID",
- "msg_src_required" => "SMS-API Sender ID is a required field",
- "msg_uid" => "SMS-API Username",
- "msg_uid_required" => "SMS-API Username is a required field",
- "multi_pack_enabled" => "",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "none",
- "notify_alignment" => "Notification Popup Position",
- "number_format" => "Format broja",
- "number_locale" => "Lokalnoj",
- "number_locale_invalid" => "The entered locale is invalid. Check the link in the tooltip to find a sensible value",
- "number_locale_required" => "Number Locale is a required field",
- "number_locale_tooltip" => "Find a suitable locale through this link",
- "os_timezone" => "",
- "ospos_info" => "",
- "payment_options_order" => "Payment Options Order",
- "perm_risk" => "Permissions higher than 750 leaves this software at risk.",
- "phone" => "Telefon tvrtke",
- "phone_required" => "Telefon tvrtke je potreban",
- "print_bottom_margin" => "Doljnja margina",
- "print_bottom_margin_number" => "Doljnja margina mora biti broj",
- "print_bottom_margin_required" => "Doljnja margina je potrebna",
- "print_delay_autoreturn" => "",
- "print_delay_autoreturn_number" => "",
- "print_delay_autoreturn_required" => "",
- "print_footer" => "Prikazati podnožje u pregledniku",
- "print_header" => "Prikazati zaglavlje u pregledniku",
- "print_left_margin" => "Lijeva margina",
- "print_left_margin_number" => "Lijeva margina mora biti broj",
- "print_left_margin_required" => "Lijeva margina je obavezna",
- "print_receipt_check_behaviour" => "",
- "print_receipt_check_behaviour_always" => "",
- "print_receipt_check_behaviour_last" => "",
- "print_receipt_check_behaviour_never" => "",
- "print_right_margin" => "Desna margina",
- "print_right_margin_number" => "Desna margina mora biti broj",
- "print_right_margin_required" => "Desna margina je potrebna",
- "print_silently" => "Pokaži okvir za štampanje",
- "print_top_margin" => "Gornja margina",
- "print_top_margin_number" => "Gornja margina mora biti broj",
- "print_top_margin_required" => "Gornja margina je obavezna",
- "quantity_decimals" => "Decimalne količine",
- "quick_cash_enable" => "",
- "quote_default_comments" => "",
- "receipt" => "Priznanica",
- "receipt_category" => "",
- "receipt_configuration" => "Postavke štamapnja",
- "receipt_default" => "Default",
- "receipt_font_size" => "",
- "receipt_font_size_number" => "",
- "receipt_font_size_required" => "",
- "receipt_info" => "Informacije o POS računu",
- "receipt_printer" => "POS printer",
- "receipt_short" => "Short",
- "receipt_show_company_name" => "",
- "receipt_show_description" => "Show Description",
- "receipt_show_serialnumber" => "Show Serial Number",
- "receipt_show_tax_ind" => "",
- "receipt_show_taxes" => "Prikaži porez",
- "receipt_show_total_discount" => "Pokaži ukupni popust",
- "receipt_template" => "Receipt Template",
- "receiving_calculate_average_price" => "Računaj prosječnu cijenu (primke)",
- "recv_invoice_format" => "Oblik ulaznog računa(primke)",
- "register_mode_default" => "",
- "report_an_issue" => "",
- "return_policy_required" => "Polje za povratne obavijesti je potrebno",
- "reward" => "",
- "reward_configuration" => "",
- "right" => "Right",
- "sales_invoice_format" => "Oblik fakture",
- "sales_quote_format" => "",
- "mailpath_invalid" => "",
- "saved_successfully" => "Konfiguracija je uspješno snimljena",
- "saved_unsuccessfully" => "Konfiguracija nije uspješno snimljena",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "Please use the below info for issue reporting.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "",
- "statistics" => "Send statistics",
- "statistics_tooltip" => "Send statistics for development and feature improvement purposes",
- "stock_location" => "Lokacija skladišta",
- "stock_location_duplicate" => "Molim koristite jedinstveni naziv skladišta",
- "stock_location_invalid_chars" => "Naziv skaldišta ne može sadržavati '_'",
- "stock_location_required" => "Naziv skladišta je potreban",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "",
- "suggestions_second_column" => "",
- "suggestions_third_column" => "",
- "system_conf" => "Setup & Conf",
- "system_info" => "System Info",
- "table" => "",
- "table_configuration" => "",
- "takings_printer" => "Printer za 'Prodano'",
- "tax" => "",
- "tax_category" => "",
- "tax_category_duplicate" => "",
- "tax_category_invalid_chars" => "",
- "tax_category_required" => "",
- "tax_category_used" => "",
- "tax_configuration" => "",
- "tax_decimals" => "Porezne decimale",
- "tax_id" => "",
- "tax_included" => "Uključuje porez",
- "theme" => "Theme",
- "theme_preview" => "",
- "thousands_separator" => "Razdjelnik za tisućice",
- "timezone" => "Vremenska zona",
- "timezone_error" => "",
- "top" => "Top",
- "use_destination_based_tax" => "",
- "user_timezone" => "",
- "website" => "web strana",
- "wholesale_markup" => "",
- "work_order_enable" => "",
- "work_order_format" => "",
+ 'address' => 'Adresa tvrtke',
+ 'address_required' => 'Adresu tvrtke je potrebno unijeti',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => '',
+ 'apostrophe' => 'apostrophe',
+ 'backup_button' => 'Arhiva',
+ 'backup_database' => 'Arhiviranje baze',
+ 'barcode' => 'Barkoda',
+ 'barcode_company' => 'Naziv tvrtke',
+ 'barcode_configuration' => 'Konfiguracija barkoda',
+ 'barcode_content' => 'Sadržaj barkoda',
+ 'barcode_first_row' => '1 red',
+ 'barcode_font' => 'Pismo',
+ 'barcode_formats' => '',
+ 'barcode_generate_if_empty' => 'Generiraj ako je prazno',
+ 'barcode_height' => 'Visina(px)',
+ 'barcode_id' => 'ID artikla',
+ 'barcode_info' => 'Informacija o barkod-ovima',
+ 'barcode_layout' => 'Postavke barkod-a',
+ 'barcode_name' => 'Naziv',
+ 'barcode_number' => 'UPC/EAN/ISBN',
+ 'barcode_number_in_row' => 'Red.br.',
+ 'barcode_page_cellspacing' => 'Stranični prostor',
+ 'barcode_page_width' => 'Širina stranice',
+ 'barcode_price' => 'Cijena',
+ 'barcode_second_row' => '2.red',
+ 'barcode_third_row' => '3.red',
+ 'barcode_tooltip' => '',
+ 'barcode_type' => 'Tip barkod-a',
+ 'barcode_width' => 'Širina (px)',
+ 'bottom' => 'Bottom',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => '',
+ 'cash_decimals_tooltip' => '',
+ 'cash_rounding' => '',
+ 'category_dropdown' => '',
+ 'center' => 'Center',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'comma',
+ 'company' => 'Naziv tvrtke',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Promijeni logo',
+ 'company_logo' => 'Logo tvrtke',
+ 'company_remove_image' => 'Ukloni logo',
+ 'company_required' => 'Polje naziv tvrtke je potreban',
+ 'company_select_image' => 'Odaberi logo',
+ 'company_website_url' => 'Adresa web stranice nije valjana (http://...)',
+ 'country_codes' => 'Country Codes',
+ 'country_codes_tooltip' => 'Comma separated list of country codes for nominatim address lookup.',
+ 'currency_code' => '',
+ 'currency_decimals' => 'Velutne decimale',
+ 'currency_symbol' => 'Valutna oznaka',
+ 'current_employee_only' => '',
+ 'customer_reward' => '',
+ 'customer_reward_duplicate' => '',
+ 'customer_reward_enable' => '',
+ 'customer_reward_invalid_chars' => '',
+ 'customer_reward_required' => '',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => '',
+ 'datetimeformat' => 'Oblik datuma i vremena',
+ 'decimal_point' => 'Decimalna točka',
+ 'default_barcode_font_size_number' => 'Veličina pisma barkod-a mora biti broj',
+ 'default_barcode_font_size_required' => 'Veličina pisma je potrebna',
+ 'default_barcode_height_number' => 'Veličina barkod-a mora biti broj',
+ 'default_barcode_height_required' => 'Veličina barkod-a je potrebna',
+ 'default_barcode_num_in_row_number' => 'Broj u redu barkod-a mora biti broj',
+ 'default_barcode_num_in_row_required' => 'Broj u redu barkod-a je potreban',
+ 'default_barcode_page_cellspacing_number' => 'Razmak barkod-a mora biti broj',
+ 'default_barcode_page_cellspacing_required' => 'Vonalkód cellatávolság kötelező mező.',
+ 'default_barcode_page_width_number' => 'Širina stranice barkod-a mora biti broj',
+ 'default_barcode_page_width_required' => 'Širina stranice barkod-a je potrebna',
+ 'default_barcode_width_number' => 'Az alapértelmezett vonalkód szélességnek számnak kell lennie',
+ 'default_barcode_width_required' => 'Širina barkod-a mora bit broj',
+ 'default_item_columns' => '',
+ 'default_origin_tax_code' => '',
+ 'default_receivings_discount' => '',
+ 'default_receivings_discount_number' => '',
+ 'default_receivings_discount_required' => '',
+ 'default_sales_discount' => 'Zadani popust %',
+ 'default_sales_discount_number' => 'Zadani popust mora biti broj',
+ 'default_sales_discount_required' => 'Zadani popust je potreban',
+ 'default_tax_category' => '',
+ 'default_tax_code' => '',
+ 'default_tax_jurisdiction' => '',
+ 'default_tax_name_number' => '',
+ 'default_tax_name_required' => 'Naziv poreza je poteban',
+ 'default_tax_rate' => 'Porez %',
+ 'default_tax_rate_1' => 'Porez 1 %',
+ 'default_tax_rate_2' => 'Porez 2 %',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Zadani porez mora biti broj',
+ 'default_tax_rate_required' => 'Zadani porez je potreban',
+ 'derive_sale_quantity' => '',
+ 'derive_sale_quantity_tooltip' => '',
+ 'dinner_table' => '',
+ 'dinner_table_duplicate' => '',
+ 'dinner_table_enable' => '',
+ 'dinner_table_invalid_chars' => '',
+ 'dinner_table_required' => '',
+ 'dot' => 'dot',
+ 'email' => 'Email',
+ 'email_configuration' => 'Email Configuration',
+ 'email_mailpath' => 'Path to Sendmail',
+ 'email_protocol' => 'Protocol',
+ 'email_receipt_check_behaviour' => '',
+ 'email_receipt_check_behaviour_always' => '',
+ 'email_receipt_check_behaviour_last' => '',
+ 'email_receipt_check_behaviour_never' => '',
+ 'email_smtp_crypto' => 'SMTP Encryption',
+ 'email_smtp_host' => 'SMTP Server',
+ 'email_smtp_pass' => 'SMTP Password',
+ 'email_smtp_port' => 'SMTP Port',
+ 'email_smtp_timeout' => 'SMTP Timeout (s)',
+ 'email_smtp_user' => 'SMTP Username',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => '',
+ 'enforce_privacy_tooltip' => '',
+ 'fax' => 'Fax',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => '',
+ 'financial_year_apr' => '',
+ 'financial_year_aug' => '',
+ 'financial_year_dec' => '',
+ 'financial_year_feb' => '',
+ 'financial_year_jan' => '',
+ 'financial_year_jul' => '',
+ 'financial_year_jun' => '',
+ 'financial_year_mar' => '',
+ 'financial_year_may' => '',
+ 'financial_year_nov' => '',
+ 'financial_year_oct' => '',
+ 'financial_year_sep' => '',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => '',
+ 'gcaptcha_secret_key' => '',
+ 'gcaptcha_secret_key_required' => '',
+ 'gcaptcha_site_key' => '',
+ 'gcaptcha_site_key_required' => '',
+ 'gcaptcha_tooltip' => '',
+ 'general' => 'Opća',
+ 'general_configuration' => 'Opća konfiguracija',
+ 'giftcard_number' => '',
+ 'giftcard_random' => '',
+ 'giftcard_series' => '',
+ 'image_allowed_file_types' => '',
+ 'image_max_height_tooltip' => '',
+ 'image_max_size_tooltip' => '',
+ 'image_max_width_tooltip' => '',
+ 'image_restrictions' => '',
+ 'include_hsn' => '',
+ 'info' => 'Info',
+ 'info_configuration' => 'Info o web trgovini',
+ 'input_groups' => '',
+ 'integrations' => '',
+ 'integrations_configuration' => '',
+ 'invoice' => 'Račun',
+ 'invoice_configuration' => 'Postavke štamapnja',
+ 'invoice_default_comments' => 'Komentar na računu',
+ 'invoice_email_message' => 'e-mail za račun',
+ 'invoice_enable' => 'Enable Invoicing',
+ 'invoice_printer' => 'Printer za račun',
+ 'invoice_type' => '',
+ 'is_readable' => '',
+ 'is_writable' => 'is writable, but the permissions are higher than 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Upozorenje! Onemogućene opcije će raditi samo ako imate instaliran FireFox jsPrintSetup dodatak. Svakako snimiti?',
+ 'language' => 'Jezik',
+ 'last_used_invoice_number' => '',
+ 'last_used_quote_number' => '',
+ 'last_used_work_order_number' => '',
+ 'left' => 'Left',
+ 'license' => 'License',
+ 'license_configuration' => 'License Statement',
+ 'line_sequence' => '',
+ 'lines_per_page' => 'Linija po stranici',
+ 'lines_per_page_number' => 'Linija po stranici mora biti broj',
+ 'lines_per_page_required' => 'Broj linija po stranici je potreban podatak',
+ 'locale' => 'Lokacija',
+ 'locale_configuration' => 'Konfiguracija',
+ 'locale_info' => 'Informacije o lokalnoj konfiguraciji',
+ 'location' => 'Skladišta',
+ 'location_configuration' => 'Mjesto skladišta',
+ 'location_info' => 'Info o lokaciji skladišta',
+ 'login_form' => '',
+ 'logout' => 'Želite napraviti arhivu prije nego izađete? Pritisnite [OK] za arhivu, [Cancel] to otkazivanje.',
+ 'mailchimp' => '',
+ 'mailchimp_api_key' => '',
+ 'mailchimp_configuration' => '',
+ 'mailchimp_key_successfully' => '',
+ 'mailchimp_key_unsuccessfully' => '',
+ 'mailchimp_lists' => '',
+ 'mailchimp_tooltip' => '',
+ 'message' => 'Message',
+ 'message_configuration' => 'Message Configuration',
+ 'msg_msg' => 'Saved Text Message',
+ 'msg_msg_placeholder' => 'If you wish to use a SMS template save your message here. Otherwise leave the box blank.',
+ 'msg_pwd' => 'SMS-API Password',
+ 'msg_pwd_required' => 'SMS-API Password is a required field',
+ 'msg_src' => 'SMS-API Sender ID',
+ 'msg_src_required' => 'SMS-API Sender ID is a required field',
+ 'msg_uid' => 'SMS-API Username',
+ 'msg_uid_required' => 'SMS-API Username is a required field',
+ 'multi_pack_enabled' => '',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => 'none',
+ 'notify_alignment' => 'Notification Popup Position',
+ 'number_format' => 'Format broja',
+ 'number_locale' => 'Lokalnoj',
+ 'number_locale_invalid' => 'The entered locale is invalid. Check the link in the tooltip to find a sensible value',
+ 'number_locale_required' => 'Number Locale is a required field',
+ 'number_locale_tooltip' => 'Find a suitable locale through this link',
+ 'os_timezone' => '',
+ 'ospos_info' => '',
+ 'payment_options_order' => 'Payment Options Order',
+ 'payment_reference_code_length_limits' => 'Referentni kod plaćanja
Ograničenja duljine',
+ 'payment_reference_code_length_max_label' => 'Maks',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => 'Permissions higher than 750 leaves this software at risk.',
+ 'phone' => 'Telefon tvrtke',
+ 'phone_required' => 'Telefon tvrtke je potreban',
+ 'print_bottom_margin' => 'Doljnja margina',
+ 'print_bottom_margin_number' => 'Doljnja margina mora biti broj',
+ 'print_bottom_margin_required' => 'Doljnja margina je potrebna',
+ 'print_delay_autoreturn' => '',
+ 'print_delay_autoreturn_number' => '',
+ 'print_delay_autoreturn_required' => '',
+ 'print_footer' => 'Prikazati podnožje u pregledniku',
+ 'print_header' => 'Prikazati zaglavlje u pregledniku',
+ 'print_left_margin' => 'Lijeva margina',
+ 'print_left_margin_number' => 'Lijeva margina mora biti broj',
+ 'print_left_margin_required' => 'Lijeva margina je obavezna',
+ 'print_receipt_check_behaviour' => '',
+ 'print_receipt_check_behaviour_always' => '',
+ 'print_receipt_check_behaviour_last' => '',
+ 'print_receipt_check_behaviour_never' => '',
+ 'print_right_margin' => 'Desna margina',
+ 'print_right_margin_number' => 'Desna margina mora biti broj',
+ 'print_right_margin_required' => 'Desna margina je potrebna',
+ 'print_silently' => 'Pokaži okvir za štampanje',
+ 'print_top_margin' => 'Gornja margina',
+ 'print_top_margin_number' => 'Gornja margina mora biti broj',
+ 'print_top_margin_required' => 'Gornja margina je obavezna',
+ 'quantity_decimals' => 'Decimalne količine',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => '',
+ 'receipt' => 'Priznanica',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Postavke štamapnja',
+ 'receipt_default' => 'Default',
+ 'receipt_font_size' => '',
+ 'receipt_font_size_number' => '',
+ 'receipt_font_size_required' => '',
+ 'receipt_info' => 'Informacije o POS računu',
+ 'receipt_printer' => 'POS printer',
+ 'receipt_short' => 'Short',
+ 'receipt_show_company_name' => '',
+ 'receipt_show_description' => 'Show Description',
+ 'receipt_show_serialnumber' => 'Show Serial Number',
+ 'receipt_show_tax_ind' => '',
+ 'receipt_show_taxes' => 'Prikaži porez',
+ 'receipt_show_total_discount' => 'Pokaži ukupni popust',
+ 'receipt_template' => 'Receipt Template',
+ 'receiving_calculate_average_price' => 'Računaj prosječnu cijenu (primke)',
+ 'recv_invoice_format' => 'Oblik ulaznog računa(primke)',
+ 'register_mode_default' => '',
+ 'report_an_issue' => '',
+ 'return_policy_required' => 'Polje za povratne obavijesti je potrebno',
+ 'reward' => '',
+ 'reward_configuration' => '',
+ 'right' => 'Right',
+ 'sales_invoice_format' => 'Oblik fakture',
+ 'sales_quote_format' => '',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => 'Konfiguracija je uspješno snimljena',
+ 'saved_unsuccessfully' => 'Konfiguracija nije uspješno snimljena',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Please use the below info for issue reporting.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => '',
+ 'statistics' => 'Send statistics',
+ 'statistics_tooltip' => 'Send statistics for development and feature improvement purposes',
+ 'stock_location' => 'Lokacija skladišta',
+ 'stock_location_duplicate' => 'Molim koristite jedinstveni naziv skladišta',
+ 'stock_location_invalid_chars' => "Naziv skaldišta ne može sadržavati '_'",
+ 'stock_location_required' => 'Naziv skladišta je potreban',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => '',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => '',
+ 'suggestions_second_column' => '',
+ 'suggestions_third_column' => '',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => '',
+ 'table_configuration' => '',
+ 'takings_printer' => "Printer za 'Prodano'",
+ 'tax' => '',
+ 'tax_category' => '',
+ 'tax_category_duplicate' => '',
+ 'tax_category_invalid_chars' => '',
+ 'tax_category_required' => '',
+ 'tax_category_used' => '',
+ 'tax_configuration' => '',
+ 'tax_decimals' => 'Porezne decimale',
+ 'tax_id' => '',
+ 'tax_included' => 'Uključuje porez',
+ 'theme' => 'Theme',
+ 'theme_preview' => '',
+ 'thousands_separator' => 'Razdjelnik za tisućice',
+ 'timezone' => 'Vremenska zona',
+ 'timezone_error' => '',
+ 'top' => 'Top',
+ 'use_destination_based_tax' => '',
+ 'user_timezone' => '',
+ 'website' => 'web strana',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => '',
+ 'work_order_format' => '',
];
diff --git a/app/Language/hr-HR/Login.php b/app/Language/hr-HR/Login.php
index 559465600..4bec7a41f 100644
--- a/app/Language/hr-HR/Login.php
+++ b/app/Language/hr-HR/Login.php
@@ -1,25 +1,30 @@
"",
- "go" => "Ulaz",
- "invalid_gcaptcha" => "",
- "invalid_installation" => "",
- "invalid_username_and_password" => "Neispravno ime/lozinka",
- "login" => "Prijava",
- "logout" => "",
- "migration_needed" => "",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "Lozinka",
- "required_username" => "",
- "username" => "Korisničko ime",
- "welcome" => "",
+ "gcaptcha" => "",
+ "go" => "Ulaz",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "",
+ "invalid_installation" => "",
+ "invalid_username_and_password" => "Neispravno ime/lozinka",
+ "login" => "Prijava",
+ "logout" => "",
+ "migrating_database" => "Migracija baze podataka",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "Baza podataka je uspješno migrirana!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "Lozinka",
+ "required_username" => "",
+ "username" => "Korisničko ime",
+ "welcome" => ""
];
diff --git a/app/Language/hr-HR/Sales.php b/app/Language/hr-HR/Sales.php
index fed22729d..8be4e1e07 100644
--- a/app/Language/hr-HR/Sales.php
+++ b/app/Language/hr-HR/Sales.php
@@ -1,231 +1,235 @@
"",
- "rewards_package" => "",
- "rewards_remaining_balance" => "",
- "account_number" => "",
- "add_payment" => "Dodaj plaćanje",
- "amount_due" => "Iznos duga",
- "amount_tendered" => "Ponuđeni iznos",
- "authorized_signature" => "",
- "cancel_sale" => "Otkaži",
- "cash" => "Novčanice",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "",
- "cash_deposit" => "",
- "cash_filter" => "Novčanice",
- "change_due" => "Ostatak",
- "change_price" => "",
- "check" => "Ček",
- "check_balance" => "Ostatak čeka",
- "check_filter" => "",
- "close" => "",
- "comment" => "Komentar",
- "comments" => "Komentari",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Završeno",
- "confirm_cancel_sale" => "Želite li otkazati ovu prodaju? Svi artikli se brišu.",
- "confirm_delete" => "Želite li obrisati odabranu prodaju?",
- "confirm_restore" => "",
- "credit" => "Kreditna kartica",
- "credit_deposit" => "",
- "credit_filter" => "",
- "current_table" => "",
- "customer" => "Kupac",
- "customer_address" => "Adresa kupca",
- "customer_discount" => "Popust",
- "customer_email" => "e-mail kupca",
- "customer_location" => "Mjesto kupca",
- "customer_mailchimp_status" => "",
- "customer_optional" => "",
- "customer_required" => "",
- "customer_total" => "Total",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Datum prodaje",
- "date_range" => "Period",
- "date_required" => "Morate unijeti ispravan datum",
- "date_type" => "Datum je potreban",
- "debit" => "Debitna kartica",
- "debit_filter" => "",
- "delete" => "",
- "delete_confirmation" => "Želite li obrisati ovu prodaju? Ova akcija ne može se vratiti.",
- "delete_entire_sale" => "Obrisati cjelokupnu prodaju",
- "delete_successful" => "Uspješno ste obrisali prodaju",
- "delete_unsuccessful" => "Neuspješno brisanje prodaje",
- "description_abbrv" => "Opis",
- "discard" => "",
- "discard_quote" => "",
- "discount" => "Popust %",
- "discount_included" => "Popust %",
- "discount_short" => "%",
- "due" => "",
- "due_filter" => "",
- "edit" => "Uredi",
- "edit_item" => "Uredi artikal",
- "edit_sale" => "Uredi prodaju",
- "email_receipt" => "e-mail potvrde",
- "employee" => "Radnik",
- "entry" => "",
- "error_editing_item" => "Greška kod uređivanja artikla",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Pronađi/Skaniraj artikal",
- "find_or_scan_item_or_receipt" => "Pronađi/Skaniraj artikal ili račun",
- "giftcard" => "Poklon bon",
- "giftcard_balance" => "Saldo poklon bona",
- "giftcard_filter" => "",
- "giftcard_number" => "Poklon bon br.",
- "group_by_category" => "",
- "group_by_type" => "",
- "hsn" => "",
- "id" => "Prodaja br.",
- "include_prices" => "",
- "invoice" => "Faktura",
- "invoice_confirm" => "Poslati fakturu",
- "invoice_enable" => "Napravi fakturu",
- "invoice_filter" => "Fakturirati",
- "invoice_no_email" => "Kupac nema ispravan e-mail",
- "invoice_number" => "Faktura br.",
- "invoice_number_duplicate" => "Molim unesite jedinstven broj fakture",
- "invoice_sent" => "Faktura poslana",
- "invoice_total" => "",
- "invoice_type_custom_invoice" => "",
- "invoice_type_custom_tax_invoice" => "",
- "invoice_type_invoice" => "",
- "invoice_type_tax_invoice" => "",
- "invoice_unsent" => "Faktura nije poslana",
- "invoice_update" => "Ponovno brojanje",
- "item_insufficient_of_stock" => "Artikla nema na zalihi",
- "item_name" => "Naziv artikla",
- "item_number" => "UPC/EAN/ISBN",
- "item_out_of_stock" => "Stavka je rasprodana",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "Mod registriranja",
- "must_enter_numeric" => "Morate unijeti numeričku vrijednost za količinu",
- "must_enter_numeric_giftcard" => "Morate unijeti numeričku vrijednost za poklon bon",
- "new_customer" => "Novi kupac",
- "new_item" => "Nova stavka",
- "no_description" => "Nema opisa",
- "no_filter" => "Svi",
- "no_items_in_cart" => "Nema artikala u košari",
- "no_sales_to_display" => "Nema prodaje za prikaz",
- "none_selected" => "Niste odabrali nijedu prodaju za brisanje",
- "nontaxed_ind" => "",
- "not_authorized" => "",
- "one_or_multiple" => "Prodaja(e)",
- "payment" => "Tip plaćanja",
- "payment_amount" => "Iznos",
- "payment_not_cover_total" => "Plaćeni iznos ne pokriva ukupni iznos",
- "payment_type" => "Tip",
- "payments" => "",
- "payments_total" => "Ukupno plaćeno",
- "price" => "Cijena",
- "print_after_sale" => "Štampaj poslije prodaje",
- "quantity" => "Količina",
- "quantity_less_than_reorder_level" => "Upozorenje! Željena količina je ispod minimalne.",
- "quantity_less_than_zero" => "Upozorenje! Željena količina je nedovoljna. Možete nastaviti prodaju, ali provjerite svoju zalihu.",
- "quantity_of_items" => "",
- "quote" => "",
- "quote_number" => "",
- "quote_number_duplicate" => "",
- "quote_sent" => "",
- "quote_unsent" => "",
- "receipt" => "Račun",
- "receipt_no_email" => "",
- "receipt_number" => "Račun br.",
- "receipt_sent" => "Račun poslana",
- "receipt_unsent" => "Račun nije poslana",
- "refund" => "",
- "register" => "Registracija prodaje",
- "remove_customer" => "Ukloni kupca",
- "remove_discount" => "",
- "return" => "Povrat",
- "rewards" => "",
- "rewards_balance" => "",
- "sale" => "Prodaja",
- "sale_by_invoice" => "",
- "sale_for_customer" => "Kupac:",
- "sale_time" => "Vrijeme",
- "sales_tax" => "",
- "sales_total" => "",
- "select_customer" => "Odaberi kupca(neobaveno)",
- "send_invoice" => "Pošalji fakturu",
- "send_quote" => "",
- "send_receipt" => "Pošalji račun",
- "send_work_order" => "",
- "serial" => "Serijski broj",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Pokaži fakturu",
- "show_receipt" => "Pokaži račun",
- "start_typing_customer_name" => "Počnite upisivati naziv kupca ...",
- "start_typing_item_name" => "Počnite upisivati naziv artikal ili skenirajte barkod",
- "stock" => "",
- "stock_location" => "Skladište",
- "sub_total" => "Međuzbroj",
- "successfully_deleted" => "Uspješno ste obrisali prodaju",
- "successfully_restored" => "",
- "successfully_suspended_sale" => "Neuspješno brisanje prodaje",
- "successfully_updated" => "Uspješno ste ažurirali prodaju",
- "suspend_sale" => "Obustavi",
- "suspended_doc_id" => "",
- "suspended_sale_id" => "Broj obustave",
- "suspended_sales" => "Obustavljanje",
- "table" => "",
- "takings" => "Prodano",
- "tax" => "Porez",
- "tax_id" => "",
- "tax_invoice" => "",
- "tax_percent" => "Porez %",
- "taxed_ind" => "",
- "total" => "Ukupno",
- "total_tax_exclusive" => "Porez nije uključen",
- "transaction_failed" => "Greška kod prodaje",
- "unable_to_add_item" => "Artikal nije moguće dodati",
- "unsuccessfully_deleted" => "Prodaju(e) nije moguće izbrisati",
- "unsuccessfully_restored" => "",
- "unsuccessfully_suspended_sale" => "Neuspješno brisanje prodaje",
- "unsuccessfully_updated" => "Prodaju(e) nije moguće ažurirati",
- "unsuspend" => "Ponovno uključeno",
- "unsuspend_and_delete" => "Uključeno i obrisano",
- "update" => "Ažuriraj",
- "upi" => "",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "",
- "work_order_number" => "",
- "work_order_number_duplicate" => "",
- "work_order_sent" => "",
- "work_order_unsent" => "",
+ 'account_number' => '',
+ 'add_payment' => 'Dodaj plaćanje',
+ 'amount_due' => 'Iznos duga',
+ 'amount_tendered' => 'Ponuđeni iznos',
+ 'authorized_signature' => '',
+ 'cancel_sale' => 'Otkaži',
+ 'cash' => 'Novčanice',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => '',
+ 'cash_deposit' => '',
+ 'cash_filter' => 'Novčanice',
+ 'change_due' => 'Ostatak',
+ 'change_price' => '',
+ 'check' => 'Ček',
+ 'check_balance' => 'Ostatak čeka',
+ 'check_filter' => '',
+ 'close' => '',
+ 'comment' => 'Komentar',
+ 'comments' => 'Komentari',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Završeno',
+ 'confirm_cancel_sale' => 'Želite li otkazati ovu prodaju? Svi artikli se brišu.',
+ 'confirm_delete' => 'Želite li obrisati odabranu prodaju?',
+ 'confirm_restore' => '',
+ 'credit' => 'Kreditna kartica',
+ 'credit_deposit' => '',
+ 'credit_filter' => '',
+ 'current_table' => '',
+ 'customer' => 'Kupac',
+ 'customer_address' => 'Adresa kupca',
+ 'customer_discount' => 'Popust',
+ 'customer_email' => 'e-mail kupca',
+ 'customer_location' => 'Mjesto kupca',
+ 'customer_mailchimp_status' => '',
+ 'customer_optional' => '',
+ 'customer_required' => '',
+ 'customer_total' => 'Total',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => '',
+ 'daily_sales' => '',
+ 'date' => 'Datum prodaje',
+ 'date_range' => 'Period',
+ 'date_required' => 'Morate unijeti ispravan datum',
+ 'date_type' => 'Datum je potreban',
+ 'debit' => 'Debitna kartica',
+ 'debit_filter' => '',
+ 'delete' => '',
+ 'delete_confirmation' => 'Želite li obrisati ovu prodaju? Ova akcija ne može se vratiti.',
+ 'delete_entire_sale' => 'Obrisati cjelokupnu prodaju',
+ 'delete_successful' => 'Uspješno ste obrisali prodaju',
+ 'delete_unsuccessful' => 'Neuspješno brisanje prodaje',
+ 'description_abbrv' => 'Opis',
+ 'discard' => '',
+ 'discard_quote' => '',
+ 'discount' => 'Popust %',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => 'Popust %',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => '',
+ 'due_filter' => '',
+ 'edit' => 'Uredi',
+ 'edit_item' => 'Uredi artikal',
+ 'edit_sale' => 'Uredi prodaju',
+ 'email_receipt' => 'e-mail potvrde',
+ 'employee' => 'Radnik',
+ 'entry' => '',
+ 'error_editing_item' => 'Greška kod uređivanja artikla',
+ 'find_or_scan_item' => 'Pronađi/Skaniraj artikal',
+ 'find_or_scan_item_or_receipt' => 'Pronađi/Skaniraj artikal ili račun',
+ 'giftcard' => 'Poklon bon',
+ 'giftcard_balance' => 'Saldo poklon bona',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Poklon bon br.',
+ 'group_by_category' => '',
+ 'group_by_type' => '',
+ 'hsn' => '',
+ 'id' => 'Prodaja br.',
+ 'include_prices' => '',
+ 'invoice' => 'Faktura',
+ 'invoice_confirm' => 'Poslati fakturu',
+ 'invoice_enable' => 'Napravi fakturu',
+ 'invoice_filter' => 'Fakturirati',
+ 'invoice_no_email' => 'Kupac nema ispravan e-mail',
+ 'invoice_number' => 'Faktura br.',
+ 'invoice_number_duplicate' => 'Molim unesite jedinstven broj fakture',
+ 'invoice_sent' => 'Faktura poslana',
+ 'invoice_total' => '',
+ 'invoice_type_custom_invoice' => '',
+ 'invoice_type_custom_tax_invoice' => '',
+ 'invoice_type_invoice' => '',
+ 'invoice_type_tax_invoice' => '',
+ 'invoice_unsent' => 'Faktura nije poslana',
+ 'invoice_update' => 'Ponovno brojanje',
+ 'item_insufficient_of_stock' => 'Artikla nema na zalihi',
+ 'item_name' => 'Naziv artikla',
+ 'item_number' => 'UPC/EAN/ISBN',
+ 'item_out_of_stock' => 'Stavka je rasprodana',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'Mod registriranja',
+ 'must_enter_numeric' => 'Morate unijeti numeričku vrijednost za količinu',
+ 'must_enter_numeric_giftcard' => 'Morate unijeti numeričku vrijednost za poklon bon',
+ 'must_enter_reference_code' => 'Referentni/broj za preuzimanje mora biti unesen.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Novi kupac',
+ 'new_item' => 'Nova stavka',
+ 'no_description' => 'Nema opisa',
+ 'no_filter' => 'Svi',
+ 'no_items_in_cart' => 'Nema artikala u košari',
+ 'no_sales_to_display' => 'Nema prodaje za prikaz',
+ 'none_selected' => 'Niste odabrali nijedu prodaju za brisanje',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => '',
+ 'one_or_multiple' => 'Prodaja(e)',
+ 'payment' => 'Tip plaćanja',
+ 'payment_amount' => 'Iznos',
+ 'payment_not_cover_total' => 'Plaćeni iznos ne pokriva ukupni iznos',
+ 'payment_type' => 'Tip',
+ 'payments' => '',
+ 'payments_total' => 'Ukupno plaćeno',
+ 'price' => 'Cijena',
+ 'print_after_sale' => 'Štampaj poslije prodaje',
+ 'quantity' => 'Količina',
+ 'quantity_less_than_reorder_level' => 'Upozorenje! Željena količina je ispod minimalne.',
+ 'quantity_less_than_zero' => 'Upozorenje! Željena količina je nedovoljna. Možete nastaviti prodaju, ali provjerite svoju zalihu.',
+ 'quantity_of_items' => '',
+ 'quote' => '',
+ 'quote_number' => '',
+ 'quote_number_duplicate' => '',
+ 'quote_sent' => '',
+ 'quote_unsent' => '',
+ 'receipt' => 'Račun',
+ 'receipt_no_email' => '',
+ 'receipt_number' => 'Račun br.',
+ 'receipt_sent' => 'Račun poslana',
+ 'receipt_unsent' => 'Račun nije poslana',
+ 'reference_code' => 'Referentni kod plaćanja',
+ 'reference_code_invalid_characters' => 'Referentni kod smije sadržavati samo slova i brojeve.',
+ 'reference_code_length_error' => 'Duljina referentnog koda nije ispravna.',
+ 'refund' => '',
+ 'register' => 'Registracija prodaje',
+ 'remove_customer' => 'Ukloni kupca',
+ 'remove_discount' => '',
+ 'return' => 'Povrat',
+ 'rewards' => '',
+ 'rewards_balance' => '',
+ 'rewards_package' => '',
+ 'rewards_remaining_balance' => '',
+ 'sale' => 'Prodaja',
+ 'sale_by_invoice' => '',
+ 'sale_for_customer' => 'Kupac:',
+ 'sale_time' => 'Vrijeme',
+ 'sales_tax' => '',
+ 'sales_total' => '',
+ 'select_customer' => 'Odaberi kupca(neobaveno)',
+ 'send_invoice' => 'Pošalji fakturu',
+ 'send_quote' => '',
+ 'send_receipt' => 'Pošalji račun',
+ 'send_work_order' => '',
+ 'serial' => 'Serijski broj',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Pokaži fakturu',
+ 'show_receipt' => 'Pokaži račun',
+ 'start_typing_customer_name' => 'Počnite upisivati naziv kupca ...',
+ 'start_typing_item_name' => 'Počnite upisivati naziv artikal ili skenirajte barkod',
+ 'stock' => '',
+ 'stock_location' => 'Skladište',
+ 'sub_total' => 'Međuzbroj',
+ 'successfully_deleted' => 'Uspješno ste obrisali prodaju',
+ 'successfully_restored' => '',
+ 'successfully_suspended_sale' => 'Neuspješno brisanje prodaje',
+ 'successfully_updated' => 'Uspješno ste ažurirali prodaju',
+ 'suspend_sale' => 'Obustavi',
+ 'suspended_doc_id' => '',
+ 'suspended_sale_id' => 'Broj obustave',
+ 'suspended_sales' => 'Obustavljanje',
+ 'table' => '',
+ 'takings' => 'Prodano',
+ 'tax' => 'Porez',
+ 'tax_id' => '',
+ 'tax_invoice' => '',
+ 'tax_percent' => 'Porez %',
+ 'taxed_ind' => '',
+ 'total' => 'Ukupno',
+ 'total_tax_exclusive' => 'Porez nije uključen',
+ 'transaction_failed' => 'Greška kod prodaje',
+ 'unable_to_add_item' => 'Artikal nije moguće dodati',
+ 'unsuccessfully_deleted' => 'Prodaju(e) nije moguće izbrisati',
+ 'unsuccessfully_restored' => '',
+ 'unsuccessfully_suspended_sale' => 'Neuspješno brisanje prodaje',
+ 'unsuccessfully_updated' => 'Prodaju(e) nije moguće ažurirati',
+ 'unsuspend' => 'Ponovno uključeno',
+ 'unsuspend_and_delete' => 'Uključeno i obrisano',
+ 'update' => 'Ažuriraj',
+ 'upi' => '',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => '',
+ 'work_order_number' => '',
+ 'work_order_number_duplicate' => '',
+ 'work_order_sent' => '',
+ 'work_order_unsent' => '',
];
diff --git a/app/Language/hu/Config.php b/app/Language/hu/Config.php
index 4d2229158..e9db17b3f 100644
--- a/app/Language/hu/Config.php
+++ b/app/Language/hu/Config.php
@@ -1,332 +1,335 @@
"Cég cím",
- "address_required" => "Cég cím kötelező mező",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "",
- "apostrophe" => "aposztrof",
- "backup_button" => "Mentés",
- "backup_database" => "Adatbázis mentése",
- "barcode" => "Vonalkód",
- "barcode_company" => "Cég neve",
- "barcode_configuration" => "Vonalkód konfigurálása",
- "barcode_content" => "Vonalkód tartalma",
- "barcode_first_row" => "Sor 1",
- "barcode_font" => "Font",
- "barcode_formats" => "",
- "barcode_generate_if_empty" => "Generáljon ha üres",
- "barcode_height" => "Magasság (px)",
- "barcode_id" => "Termék Id/Név",
- "barcode_info" => "Vonalkód konfigurációs információk",
- "barcode_layout" => "Vonalkód elrendezés",
- "barcode_name" => "Név",
- "barcode_number" => "UPC/EAN/ISBN",
- "barcode_number_in_row" => "Szám a sorban",
- "barcode_page_cellspacing" => "Display page cellspacing",
- "barcode_page_width" => "Display page width",
- "barcode_price" => "Ár",
- "barcode_second_row" => "Sor 2",
- "barcode_third_row" => "Sor 3",
- "barcode_tooltip" => "",
- "barcode_type" => "Vonalkód tipus",
- "barcode_width" => "Szélesség (px)",
- "bottom" => "Alul",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "",
- "cash_decimals_tooltip" => "",
- "cash_rounding" => "",
- "category_dropdown" => "",
- "center" => "Közép",
- "change_apperance_tooltip" => "",
- "comma" => "vessző",
- "company" => "Cégnév",
- "company_avatar" => "",
- "company_change_image" => "Kép cseréje",
- "company_logo" => "Cég logó",
- "company_remove_image" => "Kép eltávolítása",
- "company_required" => "Cégnév kötelező mező",
- "company_select_image" => "Kép kiválasztása",
- "company_website_url" => "A cég webcime nem érvényes URL (http://...)",
- "country_codes" => "Country Codes",
- "country_codes_tooltip" => "Comma separated list of country codes for nominatim address lookup.",
- "currency_code" => "",
- "currency_decimals" => "Currency Decimals",
- "currency_symbol" => "Pénznem",
- "current_employee_only" => "",
- "customer_reward" => "",
- "customer_reward_duplicate" => "",
- "customer_reward_enable" => "",
- "customer_reward_invalid_chars" => "",
- "customer_reward_required" => "",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "",
- "datetimeformat" => "Dátum és idő formátum",
- "decimal_point" => "Tizedes pont",
- "default_barcode_font_size_number" => "Az alapértelmezett vonalkód font méretnek számnak kell lennie",
- "default_barcode_font_size_required" => "Az alapértelmezett vonalkód font méret kötelező mező",
- "default_barcode_height_number" => "Az alapértelmezett vonalkód magasságnak számnak kell lennie",
- "default_barcode_height_required" => "Az alapértelmezett vonalkód magasság kötelező mező",
- "default_barcode_num_in_row_number" => "Az alapértelmezett vonalkód száma a sorbannak számnak kell lennie",
- "default_barcode_num_in_row_required" => "Az alapértelmezett vonalkód szám a sorban kötelező mező",
- "default_barcode_page_cellspacing_number" => "Vonalkód cellatávolságnak számnak kell lennie",
- "default_barcode_page_cellspacing_required" => "Vonalkód cellatávolság kötelező mező.",
- "default_barcode_page_width_number" => "Az alapértelmezett vonalkód oldal szélességnek számnak kell lennie",
- "default_barcode_page_width_required" => "Az alapértelmezett vonalkód oldal szésesség kötelező.",
- "default_barcode_width_number" => "Az alapértelmezett vonalkód szélességnek számnak kell lennie",
- "default_barcode_width_required" => "Az alapértelmezett vonalkód szélesség kötelező mező",
- "default_item_columns" => "",
- "default_origin_tax_code" => "",
- "default_receivings_discount" => "",
- "default_receivings_discount_number" => "",
- "default_receivings_discount_required" => "",
- "default_sales_discount" => "Alapértelmezett kedvezmény %",
- "default_sales_discount_number" => "Alapértelmezett kedvezménynek számnak kell lennie",
- "default_sales_discount_required" => "Alapértelmezett kedvezmény kötelező mező",
- "default_tax_category" => "",
- "default_tax_code" => "",
- "default_tax_jurisdiction" => "",
- "default_tax_name_number" => "",
- "default_tax_name_required" => "Alapértelmezett adó név kötelező mező",
- "default_tax_rate" => "Alapértelmezett adó %",
- "default_tax_rate_1" => "Adó 1",
- "default_tax_rate_2" => "Adó 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Az alapértelmezett adónak számnak kell lennie",
- "default_tax_rate_required" => "Az alapértelmezett adó kötelező mező",
- "derive_sale_quantity" => "",
- "derive_sale_quantity_tooltip" => "",
- "dinner_table" => "",
- "dinner_table_duplicate" => "",
- "dinner_table_enable" => "",
- "dinner_table_invalid_chars" => "",
- "dinner_table_required" => "",
- "dot" => "pont",
- "email" => "Email",
- "email_configuration" => "Email beállítás",
- "email_mailpath" => "Sendmail elérési út",
- "email_protocol" => "Protokoll",
- "email_receipt_check_behaviour" => "",
- "email_receipt_check_behaviour_always" => "",
- "email_receipt_check_behaviour_last" => "",
- "email_receipt_check_behaviour_never" => "",
- "email_smtp_crypto" => "SMTP Encryption",
- "email_smtp_host" => "SMTP Szerver",
- "email_smtp_pass" => "SMTP Password",
- "email_smtp_port" => "SMTP Port",
- "email_smtp_timeout" => "SMTP időtúllépést (mp)",
- "email_smtp_user" => "SMTP Username",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "",
- "enforce_privacy_tooltip" => "",
- "fax" => "Fax",
- "file_perm" => "There are problems with file permissions please fix and reload this page.",
- "financial_year" => "",
- "financial_year_apr" => "",
- "financial_year_aug" => "",
- "financial_year_dec" => "",
- "financial_year_feb" => "",
- "financial_year_jan" => "",
- "financial_year_jul" => "",
- "financial_year_jun" => "",
- "financial_year_mar" => "",
- "financial_year_may" => "",
- "financial_year_nov" => "",
- "financial_year_oct" => "",
- "financial_year_sep" => "",
- "floating_labels" => "",
- "gcaptcha_enable" => "",
- "gcaptcha_secret_key" => "",
- "gcaptcha_secret_key_required" => "",
- "gcaptcha_site_key" => "",
- "gcaptcha_site_key_required" => "",
- "gcaptcha_tooltip" => "",
- "general" => "Általános",
- "general_configuration" => "Általános beállitás",
- "giftcard_number" => "",
- "giftcard_random" => "",
- "giftcard_series" => "",
- "image_allowed_file_types" => "",
- "image_max_height_tooltip" => "",
- "image_max_size_tooltip" => "",
- "image_max_width_tooltip" => "",
- "image_restrictions" => "",
- "include_hsn" => "",
- "info" => "Információk",
- "info_configuration" => "Bolt információk",
- "input_groups" => "",
- "integrations" => "",
- "integrations_configuration" => "",
- "invoice" => "Számla",
- "invoice_configuration" => "Nyomtatási beállitások",
- "invoice_default_comments" => "Alapértelmezett számla kommentek",
- "invoice_email_message" => "Email számla sablon",
- "invoice_enable" => "Számlázás engedélyezése",
- "invoice_printer" => "Számla nyomtató",
- "invoice_type" => "",
- "is_readable" => "",
- "is_writable" => "is writable, but the permissions are higher than 750.",
- "item_markup" => "",
- "jsprintsetup_required" => "Figyelem! Ez a letiltott funkció csak akkor működik megfelelően, ha a FireFox jsPrintSetup kiegészítő telepítve van. Menti mindezek tudatában?",
- "language" => "Nyelv",
- "last_used_invoice_number" => "",
- "last_used_quote_number" => "",
- "last_used_work_order_number" => "",
- "left" => "Bal",
- "license" => "Licensz",
- "license_configuration" => "Licensz statementek",
- "line_sequence" => "",
- "lines_per_page" => "Sorok száma oldalanként",
- "lines_per_page_number" => "A sorok száma oldalanként kötelező mező",
- "lines_per_page_required" => "A sor per oldal kötelező mező",
- "locale" => "Lokalizációs",
- "locale_configuration" => "Lokalizációs beállitások",
- "locale_info" => "Lokalizációs beállitási információk",
- "location" => "Készlet",
- "location_configuration" => "Készlet helye",
- "location_info" => "Helyszin konfigurációs információk",
- "login_form" => "",
- "logout" => "Nem szeretne mentést csinálni kilépés előtt? Kattintson az [OK]-ra a mentéshez, [Mégsem] a kilépéshez",
- "mailchimp" => "",
- "mailchimp_api_key" => "",
- "mailchimp_configuration" => "",
- "mailchimp_key_successfully" => "",
- "mailchimp_key_unsuccessfully" => "",
- "mailchimp_lists" => "",
- "mailchimp_tooltip" => "",
- "message" => "Üzenet",
- "message_configuration" => "Üzenet beállítások",
- "msg_msg" => "Mentett text üzenet",
- "msg_msg_placeholder" => "Ha SMS alapot kíván használni ide írja. Egyébként hagyja üresen a mezőt.",
- "msg_pwd" => "SMS-API Jelszó",
- "msg_pwd_required" => "SMS-API jelszó kötelező mező",
- "msg_src" => "SMS-API Küldö ID",
- "msg_src_required" => "SMS-API Sender ID is a required field",
- "msg_uid" => "SMS-API Felhasználó",
- "msg_uid_required" => "SMS-API Username kötelező mező",
- "multi_pack_enabled" => "",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "none",
- "notify_alignment" => "Notification Popup Position",
- "number_format" => "Szám formátum",
- "number_locale" => "Lokalizációs",
- "number_locale_invalid" => "A megadott érték érvénytelen. Ellenőrizze a linken a megadható értékeket.",
- "number_locale_required" => "Lokalizációs szám kötelező mező",
- "number_locale_tooltip" => "Find a suitable locale through this link",
- "os_timezone" => "",
- "ospos_info" => "",
- "payment_options_order" => "Payment Options Order",
- "perm_risk" => "Permissions higher than 750 leaves this software at risk.",
- "phone" => "Cég telefonszáma",
- "phone_required" => "Cég telefonszáma kötelező mező",
- "print_bottom_margin" => "Alsó margó",
- "print_bottom_margin_number" => "The default bottom margin must be a number",
- "print_bottom_margin_required" => "The default bottom margin is a required field",
- "print_delay_autoreturn" => "",
- "print_delay_autoreturn_number" => "",
- "print_delay_autoreturn_required" => "",
- "print_footer" => "Print Browser Footer",
- "print_header" => "Print Browser Header",
- "print_left_margin" => "Bal margó",
- "print_left_margin_number" => "The default left margin must be a number",
- "print_left_margin_required" => "The default left margin is a required field",
- "print_receipt_check_behaviour" => "",
- "print_receipt_check_behaviour_always" => "",
- "print_receipt_check_behaviour_last" => "",
- "print_receipt_check_behaviour_never" => "",
- "print_right_margin" => "Jobb margó",
- "print_right_margin_number" => "The default right margin must be a number",
- "print_right_margin_required" => "The default right margin is a required field",
- "print_silently" => "Show Print Dialog",
- "print_top_margin" => "Felső margó",
- "print_top_margin_number" => "The default top margin must be a number",
- "print_top_margin_required" => "The default top margin is a required field",
- "quantity_decimals" => "Quantity Decimals",
- "quick_cash_enable" => "",
- "quote_default_comments" => "",
- "receipt" => "Nyugta",
- "receipt_category" => "",
- "receipt_configuration" => "Nyomtatási beállitások",
- "receipt_default" => "Alapértelmezett",
- "receipt_font_size" => "",
- "receipt_font_size_number" => "",
- "receipt_font_size_required" => "",
- "receipt_info" => "Nyugta beállítási információk",
- "receipt_printer" => "Jegy nyomtató",
- "receipt_short" => "Rövid",
- "receipt_show_company_name" => "",
- "receipt_show_description" => "Leírás mutatása",
- "receipt_show_serialnumber" => "Szériaszám mutatása",
- "receipt_show_tax_ind" => "",
- "receipt_show_taxes" => "Adók mutatása",
- "receipt_show_total_discount" => "Összes kedvezmény mutatása",
- "receipt_template" => "Nyugta template",
- "receiving_calculate_average_price" => "Átl. Ár számitása (visszáru)",
- "recv_invoice_format" => "Visszatérítési számla formátum",
- "register_mode_default" => "",
- "report_an_issue" => "",
- "return_policy_required" => "Return policy is a required field",
- "reward" => "",
- "reward_configuration" => "",
- "right" => "Jobb",
- "sales_invoice_format" => "Eladási számla formátum",
- "sales_quote_format" => "",
- "mailpath_invalid" => "",
- "saved_successfully" => "Beállítások sikeresen elmentve",
- "saved_unsuccessfully" => "Beállítások mentése sikertelen",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "Please use the below info for issue reporting.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "",
- "statistics" => "Statisztika küldése",
- "statistics_tooltip" => "Statisztika küldése fejlesztési célból",
- "stock_location" => "Bolt helye",
- "stock_location_duplicate" => "Kérem egyedi helyszin nevet használjon",
- "stock_location_invalid_chars" => "A bolt helyének neve nem tartalmazhat '_' karaktert",
- "stock_location_required" => "Bolt helyszín szám kötelező mező",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "",
- "suggestions_second_column" => "",
- "suggestions_third_column" => "",
- "system_conf" => "Setup & Conf",
- "system_info" => "System Info",
- "table" => "",
- "table_configuration" => "",
- "takings_printer" => "Takings Printer",
- "tax" => "",
- "tax_category" => "",
- "tax_category_duplicate" => "",
- "tax_category_invalid_chars" => "",
- "tax_category_required" => "",
- "tax_category_used" => "",
- "tax_configuration" => "",
- "tax_decimals" => "Tax Decimals",
- "tax_id" => "",
- "tax_included" => "Adókat tartalmaz",
- "theme" => "Téma",
- "theme_preview" => "",
- "thousands_separator" => "Ezres elválasztó",
- "timezone" => "Időzóna",
- "timezone_error" => "",
- "top" => "Felül",
- "use_destination_based_tax" => "",
- "user_timezone" => "",
- "website" => "Weboldal",
- "wholesale_markup" => "",
- "work_order_enable" => "",
- "work_order_format" => "",
+ 'address' => 'Cég cím',
+ 'address_required' => 'Cég cím kötelező mező',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => '',
+ 'apostrophe' => 'aposztrof',
+ 'backup_button' => 'Mentés',
+ 'backup_database' => 'Adatbázis mentése',
+ 'barcode' => 'Vonalkód',
+ 'barcode_company' => 'Cég neve',
+ 'barcode_configuration' => 'Vonalkód konfigurálása',
+ 'barcode_content' => 'Vonalkód tartalma',
+ 'barcode_first_row' => 'Sor 1',
+ 'barcode_font' => 'Font',
+ 'barcode_formats' => '',
+ 'barcode_generate_if_empty' => 'Generáljon ha üres',
+ 'barcode_height' => 'Magasság (px)',
+ 'barcode_id' => 'Termék Id/Név',
+ 'barcode_info' => 'Vonalkód konfigurációs információk',
+ 'barcode_layout' => 'Vonalkód elrendezés',
+ 'barcode_name' => 'Név',
+ 'barcode_number' => 'UPC/EAN/ISBN',
+ 'barcode_number_in_row' => 'Szám a sorban',
+ 'barcode_page_cellspacing' => 'Display page cellspacing',
+ 'barcode_page_width' => 'Display page width',
+ 'barcode_price' => 'Ár',
+ 'barcode_second_row' => 'Sor 2',
+ 'barcode_third_row' => 'Sor 3',
+ 'barcode_tooltip' => '',
+ 'barcode_type' => 'Vonalkód tipus',
+ 'barcode_width' => 'Szélesség (px)',
+ 'bottom' => 'Alul',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => '',
+ 'cash_decimals_tooltip' => '',
+ 'cash_rounding' => '',
+ 'category_dropdown' => '',
+ 'center' => 'Közép',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'vessző',
+ 'company' => 'Cégnév',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Kép cseréje',
+ 'company_logo' => 'Cég logó',
+ 'company_remove_image' => 'Kép eltávolítása',
+ 'company_required' => 'Cégnév kötelező mező',
+ 'company_select_image' => 'Kép kiválasztása',
+ 'company_website_url' => 'A cég webcime nem érvényes URL (http://...)',
+ 'country_codes' => 'Country Codes',
+ 'country_codes_tooltip' => 'Comma separated list of country codes for nominatim address lookup.',
+ 'currency_code' => '',
+ 'currency_decimals' => 'Currency Decimals',
+ 'currency_symbol' => 'Pénznem',
+ 'current_employee_only' => '',
+ 'customer_reward' => '',
+ 'customer_reward_duplicate' => '',
+ 'customer_reward_enable' => '',
+ 'customer_reward_invalid_chars' => '',
+ 'customer_reward_required' => '',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => '',
+ 'datetimeformat' => 'Dátum és idő formátum',
+ 'decimal_point' => 'Tizedes pont',
+ 'default_barcode_font_size_number' => 'Az alapértelmezett vonalkód font méretnek számnak kell lennie',
+ 'default_barcode_font_size_required' => 'Az alapértelmezett vonalkód font méret kötelező mező',
+ 'default_barcode_height_number' => 'Az alapértelmezett vonalkód magasságnak számnak kell lennie',
+ 'default_barcode_height_required' => 'Az alapértelmezett vonalkód magasság kötelező mező',
+ 'default_barcode_num_in_row_number' => 'Az alapértelmezett vonalkód száma a sorbannak számnak kell lennie',
+ 'default_barcode_num_in_row_required' => 'Az alapértelmezett vonalkód szám a sorban kötelező mező',
+ 'default_barcode_page_cellspacing_number' => 'Vonalkód cellatávolságnak számnak kell lennie',
+ 'default_barcode_page_cellspacing_required' => 'Vonalkód cellatávolság kötelező mező.',
+ 'default_barcode_page_width_number' => 'Az alapértelmezett vonalkód oldal szélességnek számnak kell lennie',
+ 'default_barcode_page_width_required' => 'Az alapértelmezett vonalkód oldal szésesség kötelező.',
+ 'default_barcode_width_number' => 'Az alapértelmezett vonalkód szélességnek számnak kell lennie',
+ 'default_barcode_width_required' => 'Az alapértelmezett vonalkód szélesség kötelező mező',
+ 'default_item_columns' => '',
+ 'default_origin_tax_code' => '',
+ 'default_receivings_discount' => '',
+ 'default_receivings_discount_number' => '',
+ 'default_receivings_discount_required' => '',
+ 'default_sales_discount' => 'Alapértelmezett kedvezmény %',
+ 'default_sales_discount_number' => 'Alapértelmezett kedvezménynek számnak kell lennie',
+ 'default_sales_discount_required' => 'Alapértelmezett kedvezmény kötelező mező',
+ 'default_tax_category' => '',
+ 'default_tax_code' => '',
+ 'default_tax_jurisdiction' => '',
+ 'default_tax_name_number' => '',
+ 'default_tax_name_required' => 'Alapértelmezett adó név kötelező mező',
+ 'default_tax_rate' => 'Alapértelmezett adó %',
+ 'default_tax_rate_1' => 'Adó 1',
+ 'default_tax_rate_2' => 'Adó 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Az alapértelmezett adónak számnak kell lennie',
+ 'default_tax_rate_required' => 'Az alapértelmezett adó kötelező mező',
+ 'derive_sale_quantity' => '',
+ 'derive_sale_quantity_tooltip' => '',
+ 'dinner_table' => '',
+ 'dinner_table_duplicate' => '',
+ 'dinner_table_enable' => '',
+ 'dinner_table_invalid_chars' => '',
+ 'dinner_table_required' => '',
+ 'dot' => 'pont',
+ 'email' => 'Email',
+ 'email_configuration' => 'Email beállítás',
+ 'email_mailpath' => 'Sendmail elérési út',
+ 'email_protocol' => 'Protokoll',
+ 'email_receipt_check_behaviour' => '',
+ 'email_receipt_check_behaviour_always' => '',
+ 'email_receipt_check_behaviour_last' => '',
+ 'email_receipt_check_behaviour_never' => '',
+ 'email_smtp_crypto' => 'SMTP Encryption',
+ 'email_smtp_host' => 'SMTP Szerver',
+ 'email_smtp_pass' => 'SMTP Password',
+ 'email_smtp_port' => 'SMTP Port',
+ 'email_smtp_timeout' => 'SMTP időtúllépést (mp)',
+ 'email_smtp_user' => 'SMTP Username',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => '',
+ 'enforce_privacy_tooltip' => '',
+ 'fax' => 'Fax',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => '',
+ 'financial_year_apr' => '',
+ 'financial_year_aug' => '',
+ 'financial_year_dec' => '',
+ 'financial_year_feb' => '',
+ 'financial_year_jan' => '',
+ 'financial_year_jul' => '',
+ 'financial_year_jun' => '',
+ 'financial_year_mar' => '',
+ 'financial_year_may' => '',
+ 'financial_year_nov' => '',
+ 'financial_year_oct' => '',
+ 'financial_year_sep' => '',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => '',
+ 'gcaptcha_secret_key' => '',
+ 'gcaptcha_secret_key_required' => '',
+ 'gcaptcha_site_key' => '',
+ 'gcaptcha_site_key_required' => '',
+ 'gcaptcha_tooltip' => '',
+ 'general' => 'Általános',
+ 'general_configuration' => 'Általános beállitás',
+ 'giftcard_number' => '',
+ 'giftcard_random' => '',
+ 'giftcard_series' => '',
+ 'image_allowed_file_types' => '',
+ 'image_max_height_tooltip' => '',
+ 'image_max_size_tooltip' => '',
+ 'image_max_width_tooltip' => '',
+ 'image_restrictions' => '',
+ 'include_hsn' => '',
+ 'info' => 'Információk',
+ 'info_configuration' => 'Bolt információk',
+ 'input_groups' => '',
+ 'integrations' => '',
+ 'integrations_configuration' => '',
+ 'invoice' => 'Számla',
+ 'invoice_configuration' => 'Nyomtatási beállitások',
+ 'invoice_default_comments' => 'Alapértelmezett számla kommentek',
+ 'invoice_email_message' => 'Email számla sablon',
+ 'invoice_enable' => 'Számlázás engedélyezése',
+ 'invoice_printer' => 'Számla nyomtató',
+ 'invoice_type' => '',
+ 'is_readable' => '',
+ 'is_writable' => 'is writable, but the permissions are higher than 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Figyelem! Ez a letiltott funkció csak akkor működik megfelelően, ha a FireFox jsPrintSetup kiegészítő telepítve van. Menti mindezek tudatában?',
+ 'language' => 'Nyelv',
+ 'last_used_invoice_number' => '',
+ 'last_used_quote_number' => '',
+ 'last_used_work_order_number' => '',
+ 'left' => 'Bal',
+ 'license' => 'Licensz',
+ 'license_configuration' => 'Licensz statementek',
+ 'line_sequence' => '',
+ 'lines_per_page' => 'Sorok száma oldalanként',
+ 'lines_per_page_number' => 'A sorok száma oldalanként kötelező mező',
+ 'lines_per_page_required' => 'A sor per oldal kötelező mező',
+ 'locale' => 'Lokalizációs',
+ 'locale_configuration' => 'Lokalizációs beállitások',
+ 'locale_info' => 'Lokalizációs beállitási információk',
+ 'location' => 'Készlet',
+ 'location_configuration' => 'Készlet helye',
+ 'location_info' => 'Helyszin konfigurációs információk',
+ 'login_form' => '',
+ 'logout' => 'Nem szeretne mentést csinálni kilépés előtt? Kattintson az [OK]-ra a mentéshez, [Mégsem] a kilépéshez',
+ 'mailchimp' => '',
+ 'mailchimp_api_key' => '',
+ 'mailchimp_configuration' => '',
+ 'mailchimp_key_successfully' => '',
+ 'mailchimp_key_unsuccessfully' => '',
+ 'mailchimp_lists' => '',
+ 'mailchimp_tooltip' => '',
+ 'message' => 'Üzenet',
+ 'message_configuration' => 'Üzenet beállítások',
+ 'msg_msg' => 'Mentett text üzenet',
+ 'msg_msg_placeholder' => 'Ha SMS alapot kíván használni ide írja. Egyébként hagyja üresen a mezőt.',
+ 'msg_pwd' => 'SMS-API Jelszó',
+ 'msg_pwd_required' => 'SMS-API jelszó kötelező mező',
+ 'msg_src' => 'SMS-API Küldö ID',
+ 'msg_src_required' => 'SMS-API Sender ID is a required field',
+ 'msg_uid' => 'SMS-API Felhasználó',
+ 'msg_uid_required' => 'SMS-API Username kötelező mező',
+ 'multi_pack_enabled' => '',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => 'none',
+ 'notify_alignment' => 'Notification Popup Position',
+ 'number_format' => 'Szám formátum',
+ 'number_locale' => 'Lokalizációs',
+ 'number_locale_invalid' => 'A megadott érték érvénytelen. Ellenőrizze a linken a megadható értékeket.',
+ 'number_locale_required' => 'Lokalizációs szám kötelező mező',
+ 'number_locale_tooltip' => 'Find a suitable locale through this link',
+ 'os_timezone' => '',
+ 'ospos_info' => '',
+ 'payment_options_order' => 'Payment Options Order',
+ 'payment_reference_code_length_limits' => 'Fizetési hivatkozási kód
Hosszkorlátok',
+ 'payment_reference_code_length_max_label' => 'Max',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => 'Permissions higher than 750 leaves this software at risk.',
+ 'phone' => 'Cég telefonszáma',
+ 'phone_required' => 'Cég telefonszáma kötelező mező',
+ 'print_bottom_margin' => 'Alsó margó',
+ 'print_bottom_margin_number' => 'The default bottom margin must be a number',
+ 'print_bottom_margin_required' => 'The default bottom margin is a required field',
+ 'print_delay_autoreturn' => '',
+ 'print_delay_autoreturn_number' => '',
+ 'print_delay_autoreturn_required' => '',
+ 'print_footer' => 'Print Browser Footer',
+ 'print_header' => 'Print Browser Header',
+ 'print_left_margin' => 'Bal margó',
+ 'print_left_margin_number' => 'The default left margin must be a number',
+ 'print_left_margin_required' => 'The default left margin is a required field',
+ 'print_receipt_check_behaviour' => '',
+ 'print_receipt_check_behaviour_always' => '',
+ 'print_receipt_check_behaviour_last' => '',
+ 'print_receipt_check_behaviour_never' => '',
+ 'print_right_margin' => 'Jobb margó',
+ 'print_right_margin_number' => 'The default right margin must be a number',
+ 'print_right_margin_required' => 'The default right margin is a required field',
+ 'print_silently' => 'Show Print Dialog',
+ 'print_top_margin' => 'Felső margó',
+ 'print_top_margin_number' => 'The default top margin must be a number',
+ 'print_top_margin_required' => 'The default top margin is a required field',
+ 'quantity_decimals' => 'Quantity Decimals',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => '',
+ 'receipt' => 'Nyugta',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Nyomtatási beállitások',
+ 'receipt_default' => 'Alapértelmezett',
+ 'receipt_font_size' => '',
+ 'receipt_font_size_number' => '',
+ 'receipt_font_size_required' => '',
+ 'receipt_info' => 'Nyugta beállítási információk',
+ 'receipt_printer' => 'Jegy nyomtató',
+ 'receipt_short' => 'Rövid',
+ 'receipt_show_company_name' => '',
+ 'receipt_show_description' => 'Leírás mutatása',
+ 'receipt_show_serialnumber' => 'Szériaszám mutatása',
+ 'receipt_show_tax_ind' => '',
+ 'receipt_show_taxes' => 'Adók mutatása',
+ 'receipt_show_total_discount' => 'Összes kedvezmény mutatása',
+ 'receipt_template' => 'Nyugta template',
+ 'receiving_calculate_average_price' => 'Átl. Ár számitása (visszáru)',
+ 'recv_invoice_format' => 'Visszatérítési számla formátum',
+ 'register_mode_default' => '',
+ 'report_an_issue' => '',
+ 'return_policy_required' => 'Return policy is a required field',
+ 'reward' => '',
+ 'reward_configuration' => '',
+ 'right' => 'Jobb',
+ 'sales_invoice_format' => 'Eladási számla formátum',
+ 'sales_quote_format' => '',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => 'Beállítások sikeresen elmentve',
+ 'saved_unsuccessfully' => 'Beállítások mentése sikertelen',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Please use the below info for issue reporting.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => '',
+ 'statistics' => 'Statisztika küldése',
+ 'statistics_tooltip' => 'Statisztika küldése fejlesztési célból',
+ 'stock_location' => 'Bolt helye',
+ 'stock_location_duplicate' => 'Kérem egyedi helyszin nevet használjon',
+ 'stock_location_invalid_chars' => "A bolt helyének neve nem tartalmazhat '_' karaktert",
+ 'stock_location_required' => 'Bolt helyszín szám kötelező mező',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => '',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => '',
+ 'suggestions_second_column' => '',
+ 'suggestions_third_column' => '',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => '',
+ 'table_configuration' => '',
+ 'takings_printer' => 'Takings Printer',
+ 'tax' => '',
+ 'tax_category' => '',
+ 'tax_category_duplicate' => '',
+ 'tax_category_invalid_chars' => '',
+ 'tax_category_required' => '',
+ 'tax_category_used' => '',
+ 'tax_configuration' => '',
+ 'tax_decimals' => 'Tax Decimals',
+ 'tax_id' => '',
+ 'tax_included' => 'Adókat tartalmaz',
+ 'theme' => 'Téma',
+ 'theme_preview' => '',
+ 'thousands_separator' => 'Ezres elválasztó',
+ 'timezone' => 'Időzóna',
+ 'timezone_error' => '',
+ 'top' => 'Felül',
+ 'use_destination_based_tax' => '',
+ 'user_timezone' => '',
+ 'website' => 'Weboldal',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => '',
+ 'work_order_format' => '',
];
diff --git a/app/Language/hu/Login.php b/app/Language/hu/Login.php
index 74854cbbe..b76d4f8f4 100644
--- a/app/Language/hu/Login.php
+++ b/app/Language/hu/Login.php
@@ -1,25 +1,30 @@
"",
- "go" => "Juhúúúúúú!",
- "invalid_gcaptcha" => "",
- "invalid_installation" => "",
- "invalid_username_and_password" => "Érvénytelen felhasználói név vagy jelszó",
- "login" => "Belépés",
- "logout" => "",
- "migration_needed" => "",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "Jelszó",
- "required_username" => "",
- "username" => "Felhasználó név",
- "welcome" => "",
+ "gcaptcha" => "",
+ "go" => "Juhúúúúúú!",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "",
+ "invalid_installation" => "",
+ "invalid_username_and_password" => "Érvénytelen felhasználói név vagy jelszó",
+ "login" => "Belépés",
+ "logout" => "",
+ "migrating_database" => "Adatbázis migrálása",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "Az adatbázis sikeresen migrálva!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "Jelszó",
+ "required_username" => "",
+ "username" => "Felhasználó név",
+ "welcome" => ""
];
diff --git a/app/Language/hu/Sales.php b/app/Language/hu/Sales.php
index a864dd1af..fb20e0e65 100644
--- a/app/Language/hu/Sales.php
+++ b/app/Language/hu/Sales.php
@@ -1,231 +1,235 @@
"",
- "rewards_package" => "",
- "rewards_remaining_balance" => "",
- "account_number" => "",
- "add_payment" => "Fiz. hozzáad.",
- "amount_due" => "Fennmaradó",
- "amount_tendered" => "Összeg",
- "authorized_signature" => "",
- "cancel_sale" => "Mégsem",
- "cash" => "Készpénz",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "",
- "cash_deposit" => "",
- "cash_filter" => "Készpénz",
- "change_due" => "Visszajáró",
- "change_price" => "",
- "check" => "Csekk",
- "check_balance" => "Csekk maradék",
- "check_filter" => "",
- "close" => "",
- "comment" => "Komment",
- "comments" => "Kommentek",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Eladás befej.",
- "confirm_cancel_sale" => "Biztos kiüriti ezt az eladást? MINDEGYIK termék törölve lesz.",
- "confirm_delete" => "Biztos, hogy törli a kijelölt értékesitéseket?",
- "confirm_restore" => "",
- "credit" => "Hitelkártya",
- "credit_deposit" => "",
- "credit_filter" => "",
- "current_table" => "",
- "customer" => "Vevő",
- "customer_address" => "Vevő cím",
- "customer_discount" => "Discount",
- "customer_email" => "Vevő e-mail",
- "customer_location" => "Vevő hely",
- "customer_mailchimp_status" => "",
- "customer_optional" => "",
- "customer_required" => "",
- "customer_total" => "Total",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Eladás dátuma",
- "date_range" => "Dátum range",
- "date_required" => "Korrekt dátumot kell megadnia.",
- "date_type" => "Dátum mező kötelező",
- "debit" => "Bankkártya",
- "debit_filter" => "",
- "delete" => "",
- "delete_confirmation" => "Biztos, hogy törli ezt az eladást? Nem lehet visszavonni!",
- "delete_entire_sale" => "Eladás törlése",
- "delete_successful" => "Sikeresen törölte az eladást",
- "delete_unsuccessful" => "Sikertelenül törölte az eladást",
- "description_abbrv" => "Megnevezés",
- "discard" => "",
- "discard_quote" => "",
- "discount" => "Kedv. %",
- "discount_included" => "% kedvezmény",
- "discount_short" => "%",
- "due" => "",
- "due_filter" => "",
- "edit" => "Szerkeszt",
- "edit_item" => "Módosít",
- "edit_sale" => "Eladás szerkesztése",
- "email_receipt" => "E-mail nyugta",
- "employee" => "Dolgozó",
- "entry" => "",
- "error_editing_item" => "Termék módositási hiba",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Termék keresés/scan",
- "find_or_scan_item_or_receipt" => "Termék keresése",
- "giftcard" => "Ajándék utalvány",
- "giftcard_balance" => "Ajándék utalvány egyenleg",
- "giftcard_filter" => "",
- "giftcard_number" => "Ajándék utalvány sorszáma",
- "group_by_category" => "",
- "group_by_type" => "",
- "hsn" => "",
- "id" => "Eladási s.szám",
- "include_prices" => "",
- "invoice" => "Számla",
- "invoice_confirm" => "Ez a számla el lesz küldve ",
- "invoice_enable" => "Számla elkészítése",
- "invoice_filter" => "Számlák",
- "invoice_no_email" => "Ennek a vásárlónak nincs érvényes email címe",
- "invoice_number" => "Számla #",
- "invoice_number_duplicate" => "Kérem adjon meg egyedi számla sorszámot",
- "invoice_sent" => "Szálma elküldve ",
- "invoice_total" => "",
- "invoice_type_custom_invoice" => "",
- "invoice_type_custom_tax_invoice" => "",
- "invoice_type_invoice" => "",
- "invoice_type_tax_invoice" => "",
- "invoice_unsent" => "Számla sikertelen küldése ",
- "invoice_update" => "Újraszámol",
- "item_insufficient_of_stock" => "Termék elégtelen mennyiségú a raktárban.",
- "item_name" => "Termék neve",
- "item_number" => "Termék #",
- "item_out_of_stock" => "Termék kifogyott",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "Nyilv. mód",
- "must_enter_numeric" => "Számot kell megadnia a megrendelt mennyiséghez",
- "must_enter_numeric_giftcard" => "Vásárlási utalvány számát adja meg",
- "new_customer" => "Új vásárló",
- "new_item" => "Új termék",
- "no_description" => "Nincs leírás",
- "no_filter" => "Mindegyik",
- "no_items_in_cart" => "Nincsenek termékek a kosárban",
- "no_sales_to_display" => "Nincsenek megjelenithető értékesitések",
- "none_selected" => "Nem választott ki értékesitést törlésre",
- "nontaxed_ind" => "",
- "not_authorized" => "",
- "one_or_multiple" => "értékesítés(ek)",
- "payment" => "Fizetés módja",
- "payment_amount" => "Összeg",
- "payment_not_cover_total" => "Fizetés összege nem fedezi a teljes összeget",
- "payment_type" => "Típus",
- "payments" => "",
- "payments_total" => "Fizetve eddig:",
- "price" => "Ár",
- "print_after_sale" => "Nyomtatás eladás után",
- "quantity" => "Menny.",
- "quantity_less_than_reorder_level" => "Figyelem, a megadott mennyiség elégtelen!",
- "quantity_less_than_zero" => "Figyelem, a megadott mennyiség elégtelen! Tovább folytathatja az értékesitést, de ellenőrizze a készletet.",
- "quantity_of_items" => "",
- "quote" => "",
- "quote_number" => "",
- "quote_number_duplicate" => "",
- "quote_sent" => "",
- "quote_unsent" => "",
- "receipt" => "Eladási nyugta",
- "receipt_no_email" => "",
- "receipt_number" => "Értékesítési #",
- "receipt_sent" => "Nyugta elküldve",
- "receipt_unsent" => "Nyugta sikertelen küldése",
- "refund" => "",
- "register" => "Értékesitési nyilvántartás",
- "remove_customer" => "Vásárló eltávolítása",
- "remove_discount" => "",
- "return" => "Visszavétel",
- "rewards" => "",
- "rewards_balance" => "",
- "sale" => "Eladás",
- "sale_by_invoice" => "",
- "sale_for_customer" => "Vevő:",
- "sale_time" => "Idő",
- "sales_tax" => "",
- "sales_total" => "",
- "select_customer" => "Vevő kiválasztása (opcionális)",
- "send_invoice" => "Számla küldése",
- "send_quote" => "",
- "send_receipt" => "Nyugta küldése",
- "send_work_order" => "",
- "serial" => "Serial",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "számla",
- "show_receipt" => "nyugta",
- "start_typing_customer_name" => "Kezdje gépelni a vevő nevét…",
- "start_typing_item_name" => "Irja be a termék nevét vagy olvassa be a vonalkódot…",
- "stock" => "",
- "stock_location" => "Üzlet helyszine",
- "sub_total" => "Részösszeg",
- "successfully_deleted" => "Sikeresen törölte",
- "successfully_restored" => "",
- "successfully_suspended_sale" => "Értékesitése sikeresen felfüggesztve",
- "successfully_updated" => "Értékesités sikeresen frissitve",
- "suspend_sale" => "Felfüggeszt",
- "suspended_doc_id" => "",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Függő eladások",
- "table" => "",
- "takings" => "Bevételek",
- "tax" => "Adó",
- "tax_id" => "",
- "tax_invoice" => "",
- "tax_percent" => "Adó %",
- "taxed_ind" => "",
- "total" => "Összesen",
- "total_tax_exclusive" => "Adók nélkül",
- "transaction_failed" => "Tranzakció sikertelen",
- "unable_to_add_item" => "Nem adható termék az értékesitéshez",
- "unsuccessfully_deleted" => "Értékesités(ek) nem törölhető(k)",
- "unsuccessfully_restored" => "",
- "unsuccessfully_suspended_sale" => "Értékesitése sikeresen felfüggesztve",
- "unsuccessfully_updated" => "Értékesités sikertelenül frissitve",
- "unsuspend" => "Újraaktivál",
- "unsuspend_and_delete" => "Újraaktivál és töröl",
- "update" => "Eladás szerk.",
- "upi" => "",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "",
- "work_order_number" => "",
- "work_order_number_duplicate" => "",
- "work_order_sent" => "",
- "work_order_unsent" => "",
+ 'account_number' => '',
+ 'add_payment' => 'Fiz. hozzáad.',
+ 'amount_due' => 'Fennmaradó',
+ 'amount_tendered' => 'Összeg',
+ 'authorized_signature' => '',
+ 'cancel_sale' => 'Mégsem',
+ 'cash' => 'Készpénz',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => '',
+ 'cash_deposit' => '',
+ 'cash_filter' => 'Készpénz',
+ 'change_due' => 'Visszajáró',
+ 'change_price' => '',
+ 'check' => 'Csekk',
+ 'check_balance' => 'Csekk maradék',
+ 'check_filter' => '',
+ 'close' => '',
+ 'comment' => 'Komment',
+ 'comments' => 'Kommentek',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Eladás befej.',
+ 'confirm_cancel_sale' => 'Biztos kiüriti ezt az eladást? MINDEGYIK termék törölve lesz.',
+ 'confirm_delete' => 'Biztos, hogy törli a kijelölt értékesitéseket?',
+ 'confirm_restore' => '',
+ 'credit' => 'Hitelkártya',
+ 'credit_deposit' => '',
+ 'credit_filter' => '',
+ 'current_table' => '',
+ 'customer' => 'Vevő',
+ 'customer_address' => 'Vevő cím',
+ 'customer_discount' => 'Discount',
+ 'customer_email' => 'Vevő e-mail',
+ 'customer_location' => 'Vevő hely',
+ 'customer_mailchimp_status' => '',
+ 'customer_optional' => '',
+ 'customer_required' => '',
+ 'customer_total' => 'Total',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => '',
+ 'daily_sales' => '',
+ 'date' => 'Eladás dátuma',
+ 'date_range' => 'Dátum range',
+ 'date_required' => 'Korrekt dátumot kell megadnia.',
+ 'date_type' => 'Dátum mező kötelező',
+ 'debit' => 'Bankkártya',
+ 'debit_filter' => '',
+ 'delete' => '',
+ 'delete_confirmation' => 'Biztos, hogy törli ezt az eladást? Nem lehet visszavonni!',
+ 'delete_entire_sale' => 'Eladás törlése',
+ 'delete_successful' => 'Sikeresen törölte az eladást',
+ 'delete_unsuccessful' => 'Sikertelenül törölte az eladást',
+ 'description_abbrv' => 'Megnevezés',
+ 'discard' => '',
+ 'discard_quote' => '',
+ 'discount' => 'Kedv. %',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% kedvezmény',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => '',
+ 'due_filter' => '',
+ 'edit' => 'Szerkeszt',
+ 'edit_item' => 'Módosít',
+ 'edit_sale' => 'Eladás szerkesztése',
+ 'email_receipt' => 'E-mail nyugta',
+ 'employee' => 'Dolgozó',
+ 'entry' => '',
+ 'error_editing_item' => 'Termék módositási hiba',
+ 'find_or_scan_item' => 'Termék keresés/scan',
+ 'find_or_scan_item_or_receipt' => 'Termék keresése',
+ 'giftcard' => 'Ajándék utalvány',
+ 'giftcard_balance' => 'Ajándék utalvány egyenleg',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Ajándék utalvány sorszáma',
+ 'group_by_category' => '',
+ 'group_by_type' => '',
+ 'hsn' => '',
+ 'id' => 'Eladási s.szám',
+ 'include_prices' => '',
+ 'invoice' => 'Számla',
+ 'invoice_confirm' => 'Ez a számla el lesz küldve ',
+ 'invoice_enable' => 'Számla elkészítése',
+ 'invoice_filter' => 'Számlák',
+ 'invoice_no_email' => 'Ennek a vásárlónak nincs érvényes email címe',
+ 'invoice_number' => 'Számla #',
+ 'invoice_number_duplicate' => 'Kérem adjon meg egyedi számla sorszámot',
+ 'invoice_sent' => 'Szálma elküldve ',
+ 'invoice_total' => '',
+ 'invoice_type_custom_invoice' => '',
+ 'invoice_type_custom_tax_invoice' => '',
+ 'invoice_type_invoice' => '',
+ 'invoice_type_tax_invoice' => '',
+ 'invoice_unsent' => 'Számla sikertelen küldése ',
+ 'invoice_update' => 'Újraszámol',
+ 'item_insufficient_of_stock' => 'Termék elégtelen mennyiségú a raktárban.',
+ 'item_name' => 'Termék neve',
+ 'item_number' => 'Termék #',
+ 'item_out_of_stock' => 'Termék kifogyott',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'Nyilv. mód',
+ 'must_enter_numeric' => 'Számot kell megadnia a megrendelt mennyiséghez',
+ 'must_enter_numeric_giftcard' => 'Vásárlási utalvány számát adja meg',
+ 'must_enter_reference_code' => 'A hivatkozási/visszakeresési számot meg kell adni.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Új vásárló',
+ 'new_item' => 'Új termék',
+ 'no_description' => 'Nincs leírás',
+ 'no_filter' => 'Mindegyik',
+ 'no_items_in_cart' => 'Nincsenek termékek a kosárban',
+ 'no_sales_to_display' => 'Nincsenek megjelenithető értékesitések',
+ 'none_selected' => 'Nem választott ki értékesitést törlésre',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => '',
+ 'one_or_multiple' => 'értékesítés(ek)',
+ 'payment' => 'Fizetés módja',
+ 'payment_amount' => 'Összeg',
+ 'payment_not_cover_total' => 'Fizetés összege nem fedezi a teljes összeget',
+ 'payment_type' => 'Típus',
+ 'payments' => '',
+ 'payments_total' => 'Fizetve eddig:',
+ 'price' => 'Ár',
+ 'print_after_sale' => 'Nyomtatás eladás után',
+ 'quantity' => 'Menny.',
+ 'quantity_less_than_reorder_level' => 'Figyelem, a megadott mennyiség elégtelen!',
+ 'quantity_less_than_zero' => 'Figyelem, a megadott mennyiség elégtelen! Tovább folytathatja az értékesitést, de ellenőrizze a készletet.',
+ 'quantity_of_items' => '',
+ 'quote' => '',
+ 'quote_number' => '',
+ 'quote_number_duplicate' => '',
+ 'quote_sent' => '',
+ 'quote_unsent' => '',
+ 'receipt' => 'Eladási nyugta',
+ 'receipt_no_email' => '',
+ 'receipt_number' => 'Értékesítési #',
+ 'receipt_sent' => 'Nyugta elküldve',
+ 'receipt_unsent' => 'Nyugta sikertelen küldése',
+ 'reference_code' => 'Fizetési hivatkozási kód',
+ 'reference_code_invalid_characters' => 'A hivatkozási kód csak betűket és számokat tartalmazhat.',
+ 'reference_code_length_error' => 'A hivatkozási kód hossza érvénytelen.',
+ 'refund' => '',
+ 'register' => 'Értékesitési nyilvántartás',
+ 'remove_customer' => 'Vásárló eltávolítása',
+ 'remove_discount' => '',
+ 'return' => 'Visszavétel',
+ 'rewards' => '',
+ 'rewards_balance' => '',
+ 'rewards_package' => '',
+ 'rewards_remaining_balance' => '',
+ 'sale' => 'Eladás',
+ 'sale_by_invoice' => '',
+ 'sale_for_customer' => 'Vevő:',
+ 'sale_time' => 'Idő',
+ 'sales_tax' => '',
+ 'sales_total' => '',
+ 'select_customer' => 'Vevő kiválasztása (opcionális)',
+ 'send_invoice' => 'Számla küldése',
+ 'send_quote' => '',
+ 'send_receipt' => 'Nyugta küldése',
+ 'send_work_order' => '',
+ 'serial' => 'Serial',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'számla',
+ 'show_receipt' => 'nyugta',
+ 'start_typing_customer_name' => 'Kezdje gépelni a vevő nevét…',
+ 'start_typing_item_name' => 'Irja be a termék nevét vagy olvassa be a vonalkódot…',
+ 'stock' => '',
+ 'stock_location' => 'Üzlet helyszine',
+ 'sub_total' => 'Részösszeg',
+ 'successfully_deleted' => 'Sikeresen törölte',
+ 'successfully_restored' => '',
+ 'successfully_suspended_sale' => 'Értékesitése sikeresen felfüggesztve',
+ 'successfully_updated' => 'Értékesités sikeresen frissitve',
+ 'suspend_sale' => 'Felfüggeszt',
+ 'suspended_doc_id' => '',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Függő eladások',
+ 'table' => '',
+ 'takings' => 'Bevételek',
+ 'tax' => 'Adó',
+ 'tax_id' => '',
+ 'tax_invoice' => '',
+ 'tax_percent' => 'Adó %',
+ 'taxed_ind' => '',
+ 'total' => 'Összesen',
+ 'total_tax_exclusive' => 'Adók nélkül',
+ 'transaction_failed' => 'Tranzakció sikertelen',
+ 'unable_to_add_item' => 'Nem adható termék az értékesitéshez',
+ 'unsuccessfully_deleted' => 'Értékesités(ek) nem törölhető(k)',
+ 'unsuccessfully_restored' => '',
+ 'unsuccessfully_suspended_sale' => 'Értékesitése sikeresen felfüggesztve',
+ 'unsuccessfully_updated' => 'Értékesités sikertelenül frissitve',
+ 'unsuspend' => 'Újraaktivál',
+ 'unsuspend_and_delete' => 'Újraaktivál és töröl',
+ 'update' => 'Eladás szerk.',
+ 'upi' => '',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => '',
+ 'work_order_number' => '',
+ 'work_order_number_duplicate' => '',
+ 'work_order_sent' => '',
+ 'work_order_unsent' => '',
];
diff --git a/app/Language/hy/Config.php b/app/Language/hy/Config.php
index 75bb39ba1..54fedb971 100644
--- a/app/Language/hy/Config.php
+++ b/app/Language/hy/Config.php
@@ -1,332 +1,335 @@
"",
- "address_required" => "",
- "all_set" => "",
- "allow_duplicate_barcodes" => "",
- "apostrophe" => "",
- "backup_button" => "",
- "backup_database" => "",
- "barcode" => "",
- "barcode_company" => "",
- "barcode_configuration" => "",
- "barcode_content" => "",
- "barcode_first_row" => "",
- "barcode_font" => "",
- "barcode_formats" => "",
- "barcode_generate_if_empty" => "",
- "barcode_height" => "",
- "barcode_id" => "",
- "barcode_info" => "",
- "barcode_layout" => "",
- "barcode_name" => "",
- "barcode_number" => "",
- "barcode_number_in_row" => "",
- "barcode_page_cellspacing" => "",
- "barcode_page_width" => "",
- "barcode_price" => "",
- "barcode_second_row" => "",
- "barcode_third_row" => "",
- "barcode_tooltip" => "",
- "barcode_type" => "",
- "barcode_width" => "",
- "bottom" => "",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "",
- "cash_decimals_tooltip" => "",
- "cash_rounding" => "",
- "category_dropdown" => "",
- "center" => "",
- "change_apperance_tooltip" => "",
- "comma" => "",
- "company" => "",
- "company_avatar" => "",
- "company_change_image" => "",
- "company_logo" => "",
- "company_remove_image" => "",
- "company_required" => "",
- "company_select_image" => "",
- "company_website_url" => "",
- "country_codes" => "",
- "country_codes_tooltip" => "",
- "currency_code" => "",
- "currency_decimals" => "",
- "currency_symbol" => "",
- "current_employee_only" => "",
- "customer_reward" => "",
- "customer_reward_duplicate" => "",
- "customer_reward_enable" => "",
- "customer_reward_invalid_chars" => "",
- "customer_reward_required" => "",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "",
- "datetimeformat" => "",
- "decimal_point" => "",
- "default_barcode_font_size_number" => "",
- "default_barcode_font_size_required" => "",
- "default_barcode_height_number" => "",
- "default_barcode_height_required" => "",
- "default_barcode_num_in_row_number" => "",
- "default_barcode_num_in_row_required" => "",
- "default_barcode_page_cellspacing_number" => "",
- "default_barcode_page_cellspacing_required" => "",
- "default_barcode_page_width_number" => "",
- "default_barcode_page_width_required" => "",
- "default_barcode_width_number" => "",
- "default_barcode_width_required" => "",
- "default_item_columns" => "",
- "default_origin_tax_code" => "",
- "default_receivings_discount" => "",
- "default_receivings_discount_number" => "",
- "default_receivings_discount_required" => "",
- "default_sales_discount" => "",
- "default_sales_discount_number" => "",
- "default_sales_discount_required" => "",
- "default_tax_category" => "",
- "default_tax_code" => "",
- "default_tax_jurisdiction" => "",
- "default_tax_name_number" => "",
- "default_tax_name_required" => "",
- "default_tax_rate" => "",
- "default_tax_rate_1" => "",
- "default_tax_rate_2" => "",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "",
- "default_tax_rate_required" => "",
- "derive_sale_quantity" => "",
- "derive_sale_quantity_tooltip" => "",
- "dinner_table" => "",
- "dinner_table_duplicate" => "",
- "dinner_table_enable" => "",
- "dinner_table_invalid_chars" => "",
- "dinner_table_required" => "",
- "dot" => "",
- "email" => "",
- "email_configuration" => "",
- "email_mailpath" => "",
- "email_protocol" => "",
- "email_receipt_check_behaviour" => "",
- "email_receipt_check_behaviour_always" => "",
- "email_receipt_check_behaviour_last" => "",
- "email_receipt_check_behaviour_never" => "",
- "email_smtp_crypto" => "",
- "email_smtp_host" => "",
- "email_smtp_pass" => "",
- "email_smtp_port" => "",
- "email_smtp_timeout" => "",
- "email_smtp_user" => "",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "",
- "enforce_privacy_tooltip" => "",
- "fax" => "",
- "file_perm" => "",
- "financial_year" => "",
- "financial_year_apr" => "",
- "financial_year_aug" => "",
- "financial_year_dec" => "",
- "financial_year_feb" => "",
- "financial_year_jan" => "",
- "financial_year_jul" => "",
- "financial_year_jun" => "",
- "financial_year_mar" => "",
- "financial_year_may" => "",
- "financial_year_nov" => "",
- "financial_year_oct" => "",
- "financial_year_sep" => "",
- "floating_labels" => "",
- "gcaptcha_enable" => "",
- "gcaptcha_secret_key" => "",
- "gcaptcha_secret_key_required" => "",
- "gcaptcha_site_key" => "",
- "gcaptcha_site_key_required" => "",
- "gcaptcha_tooltip" => "",
- "general" => "",
- "general_configuration" => "",
- "giftcard_number" => "",
- "giftcard_random" => "",
- "giftcard_series" => "",
- "image_allowed_file_types" => "",
- "image_max_height_tooltip" => "",
- "image_max_size_tooltip" => "",
- "image_max_width_tooltip" => "",
- "image_restrictions" => "",
- "include_hsn" => "",
- "info" => "",
- "info_configuration" => "",
- "input_groups" => "",
- "integrations" => "",
- "integrations_configuration" => "",
- "invoice" => "",
- "invoice_configuration" => "",
- "invoice_default_comments" => "",
- "invoice_email_message" => "",
- "invoice_enable" => "",
- "invoice_printer" => "",
- "invoice_type" => "",
- "is_readable" => "",
- "is_writable" => "",
- "item_markup" => "",
- "jsprintsetup_required" => "",
- "language" => "",
- "last_used_invoice_number" => "",
- "last_used_quote_number" => "",
- "last_used_work_order_number" => "",
- "left" => "",
- "license" => "",
- "license_configuration" => "",
- "line_sequence" => "",
- "lines_per_page" => "",
- "lines_per_page_number" => "",
- "lines_per_page_required" => "",
- "locale" => "",
- "locale_configuration" => "",
- "locale_info" => "",
- "location" => "",
- "location_configuration" => "",
- "location_info" => "",
- "login_form" => "",
- "logout" => "",
- "mailchimp" => "",
- "mailchimp_api_key" => "",
- "mailchimp_configuration" => "",
- "mailchimp_key_successfully" => "",
- "mailchimp_key_unsuccessfully" => "",
- "mailchimp_lists" => "",
- "mailchimp_tooltip" => "",
- "message" => "",
- "message_configuration" => "",
- "msg_msg" => "",
- "msg_msg_placeholder" => "",
- "msg_pwd" => "",
- "msg_pwd_required" => "",
- "msg_src" => "",
- "msg_src_required" => "",
- "msg_uid" => "",
- "msg_uid_required" => "",
- "multi_pack_enabled" => "",
- "no_risk" => "",
- "none" => "",
- "notify_alignment" => "",
- "number_format" => "",
- "number_locale" => "",
- "number_locale_invalid" => "",
- "number_locale_required" => "",
- "number_locale_tooltip" => "",
- "os_timezone" => "",
- "ospos_info" => "",
- "payment_options_order" => "",
- "perm_risk" => "",
- "phone" => "",
- "phone_required" => "",
- "print_bottom_margin" => "",
- "print_bottom_margin_number" => "",
- "print_bottom_margin_required" => "",
- "print_delay_autoreturn" => "",
- "print_delay_autoreturn_number" => "",
- "print_delay_autoreturn_required" => "",
- "print_footer" => "",
- "print_header" => "",
- "print_left_margin" => "",
- "print_left_margin_number" => "",
- "print_left_margin_required" => "",
- "print_receipt_check_behaviour" => "",
- "print_receipt_check_behaviour_always" => "",
- "print_receipt_check_behaviour_last" => "",
- "print_receipt_check_behaviour_never" => "",
- "print_right_margin" => "",
- "print_right_margin_number" => "",
- "print_right_margin_required" => "",
- "print_silently" => "",
- "print_top_margin" => "",
- "print_top_margin_number" => "",
- "print_top_margin_required" => "",
- "quantity_decimals" => "",
- "quick_cash_enable" => "",
- "quote_default_comments" => "",
- "receipt" => "",
- "receipt_category" => "",
- "receipt_configuration" => "",
- "receipt_default" => "",
- "receipt_font_size" => "",
- "receipt_font_size_number" => "",
- "receipt_font_size_required" => "",
- "receipt_info" => "",
- "receipt_printer" => "",
- "receipt_short" => "",
- "receipt_show_company_name" => "",
- "receipt_show_description" => "",
- "receipt_show_serialnumber" => "",
- "receipt_show_tax_ind" => "",
- "receipt_show_taxes" => "",
- "receipt_show_total_discount" => "",
- "receipt_template" => "",
- "receiving_calculate_average_price" => "",
- "recv_invoice_format" => "",
- "register_mode_default" => "",
- "report_an_issue" => "",
- "return_policy_required" => "",
- "reward" => "",
- "reward_configuration" => "",
- "right" => "",
- "sales_invoice_format" => "",
- "sales_quote_format" => "",
- "mailpath_invalid" => "",
- "saved_successfully" => "",
- "saved_unsuccessfully" => "",
- "security_issue" => "",
- "server_notice" => "",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "",
- "statistics" => "",
- "statistics_tooltip" => "",
- "stock_location" => "",
- "stock_location_duplicate" => "",
- "stock_location_invalid_chars" => "",
- "stock_location_required" => "",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "",
- "suggestions_second_column" => "",
- "suggestions_third_column" => "",
- "system_conf" => "",
- "system_info" => "",
- "table" => "",
- "table_configuration" => "",
- "takings_printer" => "",
- "tax" => "",
- "tax_category" => "",
- "tax_category_duplicate" => "",
- "tax_category_invalid_chars" => "",
- "tax_category_required" => "",
- "tax_category_used" => "",
- "tax_configuration" => "",
- "tax_decimals" => "",
- "tax_id" => "",
- "tax_included" => "",
- "theme" => "",
- "theme_preview" => "",
- "thousands_separator" => "",
- "timezone" => "",
- "timezone_error" => "",
- "top" => "",
- "use_destination_based_tax" => "",
- "user_timezone" => "",
- "website" => "",
- "wholesale_markup" => "",
- "work_order_enable" => "",
- "work_order_format" => "",
+ 'address' => '',
+ 'address_required' => '',
+ 'all_set' => '',
+ 'allow_duplicate_barcodes' => '',
+ 'apostrophe' => '',
+ 'backup_button' => '',
+ 'backup_database' => '',
+ 'barcode' => '',
+ 'barcode_company' => '',
+ 'barcode_configuration' => '',
+ 'barcode_content' => '',
+ 'barcode_first_row' => '',
+ 'barcode_font' => '',
+ 'barcode_formats' => '',
+ 'barcode_generate_if_empty' => '',
+ 'barcode_height' => '',
+ 'barcode_id' => '',
+ 'barcode_info' => '',
+ 'barcode_layout' => '',
+ 'barcode_name' => '',
+ 'barcode_number' => '',
+ 'barcode_number_in_row' => '',
+ 'barcode_page_cellspacing' => '',
+ 'barcode_page_width' => '',
+ 'barcode_price' => '',
+ 'barcode_second_row' => '',
+ 'barcode_third_row' => '',
+ 'barcode_tooltip' => '',
+ 'barcode_type' => '',
+ 'barcode_width' => '',
+ 'bottom' => '',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => '',
+ 'cash_decimals_tooltip' => '',
+ 'cash_rounding' => '',
+ 'category_dropdown' => '',
+ 'center' => '',
+ 'change_apperance_tooltip' => '',
+ 'comma' => '',
+ 'company' => '',
+ 'company_avatar' => '',
+ 'company_change_image' => '',
+ 'company_logo' => '',
+ 'company_remove_image' => '',
+ 'company_required' => '',
+ 'company_select_image' => '',
+ 'company_website_url' => '',
+ 'country_codes' => '',
+ 'country_codes_tooltip' => '',
+ 'currency_code' => '',
+ 'currency_decimals' => '',
+ 'currency_symbol' => '',
+ 'current_employee_only' => '',
+ 'customer_reward' => '',
+ 'customer_reward_duplicate' => '',
+ 'customer_reward_enable' => '',
+ 'customer_reward_invalid_chars' => '',
+ 'customer_reward_required' => '',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => '',
+ 'datetimeformat' => '',
+ 'decimal_point' => '',
+ 'default_barcode_font_size_number' => '',
+ 'default_barcode_font_size_required' => '',
+ 'default_barcode_height_number' => '',
+ 'default_barcode_height_required' => '',
+ 'default_barcode_num_in_row_number' => '',
+ 'default_barcode_num_in_row_required' => '',
+ 'default_barcode_page_cellspacing_number' => '',
+ 'default_barcode_page_cellspacing_required' => '',
+ 'default_barcode_page_width_number' => '',
+ 'default_barcode_page_width_required' => '',
+ 'default_barcode_width_number' => '',
+ 'default_barcode_width_required' => '',
+ 'default_item_columns' => '',
+ 'default_origin_tax_code' => '',
+ 'default_receivings_discount' => '',
+ 'default_receivings_discount_number' => '',
+ 'default_receivings_discount_required' => '',
+ 'default_sales_discount' => '',
+ 'default_sales_discount_number' => '',
+ 'default_sales_discount_required' => '',
+ 'default_tax_category' => '',
+ 'default_tax_code' => '',
+ 'default_tax_jurisdiction' => '',
+ 'default_tax_name_number' => '',
+ 'default_tax_name_required' => '',
+ 'default_tax_rate' => '',
+ 'default_tax_rate_1' => '',
+ 'default_tax_rate_2' => '',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => '',
+ 'default_tax_rate_required' => '',
+ 'derive_sale_quantity' => '',
+ 'derive_sale_quantity_tooltip' => '',
+ 'dinner_table' => '',
+ 'dinner_table_duplicate' => '',
+ 'dinner_table_enable' => '',
+ 'dinner_table_invalid_chars' => '',
+ 'dinner_table_required' => '',
+ 'dot' => '',
+ 'email' => '',
+ 'email_configuration' => '',
+ 'email_mailpath' => '',
+ 'email_protocol' => '',
+ 'email_receipt_check_behaviour' => '',
+ 'email_receipt_check_behaviour_always' => '',
+ 'email_receipt_check_behaviour_last' => '',
+ 'email_receipt_check_behaviour_never' => '',
+ 'email_smtp_crypto' => '',
+ 'email_smtp_host' => '',
+ 'email_smtp_pass' => '',
+ 'email_smtp_port' => '',
+ 'email_smtp_timeout' => '',
+ 'email_smtp_user' => '',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => '',
+ 'enforce_privacy_tooltip' => '',
+ 'fax' => '',
+ 'file_perm' => '',
+ 'financial_year' => '',
+ 'financial_year_apr' => '',
+ 'financial_year_aug' => '',
+ 'financial_year_dec' => '',
+ 'financial_year_feb' => '',
+ 'financial_year_jan' => '',
+ 'financial_year_jul' => '',
+ 'financial_year_jun' => '',
+ 'financial_year_mar' => '',
+ 'financial_year_may' => '',
+ 'financial_year_nov' => '',
+ 'financial_year_oct' => '',
+ 'financial_year_sep' => '',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => '',
+ 'gcaptcha_secret_key' => '',
+ 'gcaptcha_secret_key_required' => '',
+ 'gcaptcha_site_key' => '',
+ 'gcaptcha_site_key_required' => '',
+ 'gcaptcha_tooltip' => '',
+ 'general' => '',
+ 'general_configuration' => '',
+ 'giftcard_number' => '',
+ 'giftcard_random' => '',
+ 'giftcard_series' => '',
+ 'image_allowed_file_types' => '',
+ 'image_max_height_tooltip' => '',
+ 'image_max_size_tooltip' => '',
+ 'image_max_width_tooltip' => '',
+ 'image_restrictions' => '',
+ 'include_hsn' => '',
+ 'info' => '',
+ 'info_configuration' => '',
+ 'input_groups' => '',
+ 'integrations' => '',
+ 'integrations_configuration' => '',
+ 'invoice' => '',
+ 'invoice_configuration' => '',
+ 'invoice_default_comments' => '',
+ 'invoice_email_message' => '',
+ 'invoice_enable' => '',
+ 'invoice_printer' => '',
+ 'invoice_type' => '',
+ 'is_readable' => '',
+ 'is_writable' => '',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => '',
+ 'language' => '',
+ 'last_used_invoice_number' => '',
+ 'last_used_quote_number' => '',
+ 'last_used_work_order_number' => '',
+ 'left' => '',
+ 'license' => '',
+ 'license_configuration' => '',
+ 'line_sequence' => '',
+ 'lines_per_page' => '',
+ 'lines_per_page_number' => '',
+ 'lines_per_page_required' => '',
+ 'locale' => '',
+ 'locale_configuration' => '',
+ 'locale_info' => '',
+ 'location' => '',
+ 'location_configuration' => '',
+ 'location_info' => '',
+ 'login_form' => '',
+ 'logout' => '',
+ 'mailchimp' => '',
+ 'mailchimp_api_key' => '',
+ 'mailchimp_configuration' => '',
+ 'mailchimp_key_successfully' => '',
+ 'mailchimp_key_unsuccessfully' => '',
+ 'mailchimp_lists' => '',
+ 'mailchimp_tooltip' => '',
+ 'message' => '',
+ 'message_configuration' => '',
+ 'msg_msg' => '',
+ 'msg_msg_placeholder' => '',
+ 'msg_pwd' => '',
+ 'msg_pwd_required' => '',
+ 'msg_src' => '',
+ 'msg_src_required' => '',
+ 'msg_uid' => '',
+ 'msg_uid_required' => '',
+ 'multi_pack_enabled' => '',
+ 'no_risk' => '',
+ 'none' => '',
+ 'notify_alignment' => '',
+ 'number_format' => '',
+ 'number_locale' => '',
+ 'number_locale_invalid' => '',
+ 'number_locale_required' => '',
+ 'number_locale_tooltip' => '',
+ 'os_timezone' => '',
+ 'ospos_info' => '',
+ 'payment_options_order' => '',
+ 'payment_reference_code_length_limits' => 'Վճարման հղման կոդ
Երկարության սահմանափակումներ',
+ 'payment_reference_code_length_max_label' => 'Մաքս',
+ 'payment_reference_code_length_min_label' => 'Մին',
+ 'perm_risk' => '',
+ 'phone' => '',
+ 'phone_required' => '',
+ 'print_bottom_margin' => '',
+ 'print_bottom_margin_number' => '',
+ 'print_bottom_margin_required' => '',
+ 'print_delay_autoreturn' => '',
+ 'print_delay_autoreturn_number' => '',
+ 'print_delay_autoreturn_required' => '',
+ 'print_footer' => '',
+ 'print_header' => '',
+ 'print_left_margin' => '',
+ 'print_left_margin_number' => '',
+ 'print_left_margin_required' => '',
+ 'print_receipt_check_behaviour' => '',
+ 'print_receipt_check_behaviour_always' => '',
+ 'print_receipt_check_behaviour_last' => '',
+ 'print_receipt_check_behaviour_never' => '',
+ 'print_right_margin' => '',
+ 'print_right_margin_number' => '',
+ 'print_right_margin_required' => '',
+ 'print_silently' => '',
+ 'print_top_margin' => '',
+ 'print_top_margin_number' => '',
+ 'print_top_margin_required' => '',
+ 'quantity_decimals' => '',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => '',
+ 'receipt' => '',
+ 'receipt_category' => '',
+ 'receipt_configuration' => '',
+ 'receipt_default' => '',
+ 'receipt_font_size' => '',
+ 'receipt_font_size_number' => '',
+ 'receipt_font_size_required' => '',
+ 'receipt_info' => '',
+ 'receipt_printer' => '',
+ 'receipt_short' => '',
+ 'receipt_show_company_name' => '',
+ 'receipt_show_description' => '',
+ 'receipt_show_serialnumber' => '',
+ 'receipt_show_tax_ind' => '',
+ 'receipt_show_taxes' => '',
+ 'receipt_show_total_discount' => '',
+ 'receipt_template' => '',
+ 'receiving_calculate_average_price' => '',
+ 'recv_invoice_format' => '',
+ 'register_mode_default' => '',
+ 'report_an_issue' => '',
+ 'return_policy_required' => '',
+ 'reward' => '',
+ 'reward_configuration' => '',
+ 'right' => '',
+ 'sales_invoice_format' => '',
+ 'sales_quote_format' => '',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => '',
+ 'saved_unsuccessfully' => '',
+ 'security_issue' => '',
+ 'server_notice' => '',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => '',
+ 'statistics' => '',
+ 'statistics_tooltip' => '',
+ 'stock_location' => '',
+ 'stock_location_duplicate' => '',
+ 'stock_location_invalid_chars' => '',
+ 'stock_location_required' => '',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => '',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => '',
+ 'suggestions_second_column' => '',
+ 'suggestions_third_column' => '',
+ 'system_conf' => '',
+ 'system_info' => '',
+ 'table' => '',
+ 'table_configuration' => '',
+ 'takings_printer' => '',
+ 'tax' => '',
+ 'tax_category' => '',
+ 'tax_category_duplicate' => '',
+ 'tax_category_invalid_chars' => '',
+ 'tax_category_required' => '',
+ 'tax_category_used' => '',
+ 'tax_configuration' => '',
+ 'tax_decimals' => '',
+ 'tax_id' => '',
+ 'tax_included' => '',
+ 'theme' => '',
+ 'theme_preview' => '',
+ 'thousands_separator' => '',
+ 'timezone' => '',
+ 'timezone_error' => '',
+ 'top' => '',
+ 'use_destination_based_tax' => '',
+ 'user_timezone' => '',
+ 'website' => '',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => '',
+ 'work_order_format' => '',
];
diff --git a/app/Language/hy/Login.php b/app/Language/hy/Login.php
index 652c3f22c..743fcbb5a 100644
--- a/app/Language/hy/Login.php
+++ b/app/Language/hy/Login.php
@@ -1,25 +1,30 @@
"",
- "go" => "",
- "invalid_gcaptcha" => "",
- "invalid_installation" => "",
- "invalid_username_and_password" => "",
- "login" => "",
- "logout" => "",
- "migration_needed" => "",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "",
- "required_username" => "",
- "username" => "",
- "welcome" => "",
+ "gcaptcha" => "",
+ "go" => "",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "",
+ "invalid_installation" => "",
+ "invalid_username_and_password" => "",
+ "login" => "",
+ "logout" => "",
+ "migrating_database" => "Տվյալների բազայի տեղափոխում",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "Տվյալների բազան հաջողությամբ տեղափոխվել է!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "",
+ "required_username" => "",
+ "username" => "",
+ "welcome" => ""
];
diff --git a/app/Language/hy/Sales.php b/app/Language/hy/Sales.php
index bf138169a..002c61302 100644
--- a/app/Language/hy/Sales.php
+++ b/app/Language/hy/Sales.php
@@ -1,231 +1,235 @@
"",
- "rewards_package" => "",
- "rewards_remaining_balance" => "",
- "account_number" => "",
- "add_payment" => "",
- "amount_due" => "",
- "amount_tendered" => "",
- "authorized_signature" => "",
- "cancel_sale" => "",
- "cash" => "",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "",
- "cash_deposit" => "",
- "cash_filter" => "",
- "change_due" => "",
- "change_price" => "",
- "check" => "",
- "check_balance" => "",
- "check_filter" => "",
- "close" => "",
- "comment" => "",
- "comments" => "",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "",
- "confirm_cancel_sale" => "",
- "confirm_delete" => "",
- "confirm_restore" => "",
- "credit" => "",
- "credit_deposit" => "",
- "credit_filter" => "",
- "current_table" => "",
- "customer" => "",
- "customer_address" => "",
- "customer_discount" => "",
- "customer_email" => "",
- "customer_location" => "",
- "customer_mailchimp_status" => "",
- "customer_optional" => "",
- "customer_required" => "",
- "customer_total" => "",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "",
- "date_range" => "",
- "date_required" => "",
- "date_type" => "",
- "debit" => "",
- "debit_filter" => "",
- "delete" => "",
- "delete_confirmation" => "",
- "delete_entire_sale" => "",
- "delete_successful" => "",
- "delete_unsuccessful" => "",
- "description_abbrv" => "",
- "discard" => "",
- "discard_quote" => "",
- "discount" => "",
- "discount_included" => "",
- "discount_short" => "",
- "due" => "",
- "due_filter" => "",
- "edit" => "",
- "edit_item" => "",
- "edit_sale" => "",
- "email_receipt" => "",
- "employee" => "",
- "entry" => "",
- "error_editing_item" => "",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "",
- "find_or_scan_item_or_receipt" => "",
- "giftcard" => "",
- "giftcard_balance" => "",
- "giftcard_filter" => "",
- "giftcard_number" => "",
- "group_by_category" => "",
- "group_by_type" => "",
- "hsn" => "",
- "id" => "",
- "include_prices" => "",
- "invoice" => "",
- "invoice_confirm" => "",
- "invoice_enable" => "",
- "invoice_filter" => "",
- "invoice_no_email" => "",
- "invoice_number" => "",
- "invoice_number_duplicate" => "",
- "invoice_sent" => "",
- "invoice_total" => "",
- "invoice_type_custom_invoice" => "",
- "invoice_type_custom_tax_invoice" => "",
- "invoice_type_invoice" => "",
- "invoice_type_tax_invoice" => "",
- "invoice_unsent" => "",
- "invoice_update" => "",
- "item_insufficient_of_stock" => "",
- "item_name" => "",
- "item_number" => "",
- "item_out_of_stock" => "",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "",
- "must_enter_numeric" => "",
- "must_enter_numeric_giftcard" => "",
- "new_customer" => "",
- "new_item" => "",
- "no_description" => "",
- "no_filter" => "",
- "no_items_in_cart" => "",
- "no_sales_to_display" => "",
- "none_selected" => "",
- "nontaxed_ind" => "",
- "not_authorized" => "",
- "one_or_multiple" => "",
- "payment" => "",
- "payment_amount" => "",
- "payment_not_cover_total" => "",
- "payment_type" => "",
- "payments" => "",
- "payments_total" => "",
- "price" => "",
- "print_after_sale" => "",
- "quantity" => "",
- "quantity_less_than_reorder_level" => "",
- "quantity_less_than_zero" => "",
- "quantity_of_items" => "",
- "quote" => "",
- "quote_number" => "",
- "quote_number_duplicate" => "",
- "quote_sent" => "",
- "quote_unsent" => "",
- "receipt" => "",
- "receipt_no_email" => "",
- "receipt_number" => "",
- "receipt_sent" => "",
- "receipt_unsent" => "",
- "refund" => "",
- "register" => "",
- "remove_customer" => "",
- "remove_discount" => "",
- "return" => "",
- "rewards" => "",
- "rewards_balance" => "",
- "sale" => "",
- "sale_by_invoice" => "",
- "sale_for_customer" => "",
- "sale_time" => "",
- "sales_tax" => "",
- "sales_total" => "",
- "select_customer" => "",
- "send_invoice" => "",
- "send_quote" => "",
- "send_receipt" => "",
- "send_work_order" => "",
- "serial" => "",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "",
- "show_receipt" => "",
- "start_typing_customer_name" => "",
- "start_typing_item_name" => "",
- "stock" => "",
- "stock_location" => "",
- "sub_total" => "",
- "successfully_deleted" => "",
- "successfully_restored" => "",
- "successfully_suspended_sale" => "",
- "successfully_updated" => "",
- "suspend_sale" => "",
- "suspended_doc_id" => "",
- "suspended_sale_id" => "",
- "suspended_sales" => "",
- "table" => "",
- "takings" => "",
- "tax" => "",
- "tax_id" => "",
- "tax_invoice" => "",
- "tax_percent" => "",
- "taxed_ind" => "",
- "total" => "",
- "total_tax_exclusive" => "",
- "transaction_failed" => "",
- "unable_to_add_item" => "",
- "unsuccessfully_deleted" => "",
- "unsuccessfully_restored" => "",
- "unsuccessfully_suspended_sale" => "",
- "unsuccessfully_updated" => "",
- "unsuspend" => "",
- "unsuspend_and_delete" => "",
- "update" => "",
- "upi" => "",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "",
- "work_order_number" => "",
- "work_order_number_duplicate" => "",
- "work_order_sent" => "",
- "work_order_unsent" => "",
+ 'account_number' => '',
+ 'add_payment' => '',
+ 'amount_due' => '',
+ 'amount_tendered' => '',
+ 'authorized_signature' => '',
+ 'cancel_sale' => '',
+ 'cash' => '',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => '',
+ 'cash_deposit' => '',
+ 'cash_filter' => '',
+ 'change_due' => '',
+ 'change_price' => '',
+ 'check' => '',
+ 'check_balance' => '',
+ 'check_filter' => '',
+ 'close' => '',
+ 'comment' => '',
+ 'comments' => '',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => '',
+ 'confirm_cancel_sale' => '',
+ 'confirm_delete' => '',
+ 'confirm_restore' => '',
+ 'credit' => '',
+ 'credit_deposit' => '',
+ 'credit_filter' => '',
+ 'current_table' => '',
+ 'customer' => '',
+ 'customer_address' => '',
+ 'customer_discount' => '',
+ 'customer_email' => '',
+ 'customer_location' => '',
+ 'customer_mailchimp_status' => '',
+ 'customer_optional' => '',
+ 'customer_required' => '',
+ 'customer_total' => '',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => '',
+ 'daily_sales' => '',
+ 'date' => '',
+ 'date_range' => '',
+ 'date_required' => '',
+ 'date_type' => '',
+ 'debit' => '',
+ 'debit_filter' => '',
+ 'delete' => '',
+ 'delete_confirmation' => '',
+ 'delete_entire_sale' => '',
+ 'delete_successful' => '',
+ 'delete_unsuccessful' => '',
+ 'description_abbrv' => '',
+ 'discard' => '',
+ 'discard_quote' => '',
+ 'discount' => '',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '',
+ 'due' => '',
+ 'due_filter' => '',
+ 'edit' => '',
+ 'edit_item' => '',
+ 'edit_sale' => '',
+ 'email_receipt' => '',
+ 'employee' => '',
+ 'entry' => '',
+ 'error_editing_item' => '',
+ 'find_or_scan_item' => '',
+ 'find_or_scan_item_or_receipt' => '',
+ 'giftcard' => '',
+ 'giftcard_balance' => '',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => '',
+ 'group_by_category' => '',
+ 'group_by_type' => '',
+ 'hsn' => '',
+ 'id' => '',
+ 'include_prices' => '',
+ 'invoice' => '',
+ 'invoice_confirm' => '',
+ 'invoice_enable' => '',
+ 'invoice_filter' => '',
+ 'invoice_no_email' => '',
+ 'invoice_number' => '',
+ 'invoice_number_duplicate' => '',
+ 'invoice_sent' => '',
+ 'invoice_total' => '',
+ 'invoice_type_custom_invoice' => '',
+ 'invoice_type_custom_tax_invoice' => '',
+ 'invoice_type_invoice' => '',
+ 'invoice_type_tax_invoice' => '',
+ 'invoice_unsent' => '',
+ 'invoice_update' => '',
+ 'item_insufficient_of_stock' => '',
+ 'item_name' => '',
+ 'item_number' => '',
+ 'item_out_of_stock' => '',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => '',
+ 'must_enter_numeric' => '',
+ 'must_enter_numeric_giftcard' => '',
+ 'must_enter_reference_code' => 'Պետք է մուտքագրվի հղման/որոնման համարը։',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => '',
+ 'new_item' => '',
+ 'no_description' => '',
+ 'no_filter' => '',
+ 'no_items_in_cart' => '',
+ 'no_sales_to_display' => '',
+ 'none_selected' => '',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => '',
+ 'one_or_multiple' => '',
+ 'payment' => '',
+ 'payment_amount' => '',
+ 'payment_not_cover_total' => '',
+ 'payment_type' => '',
+ 'payments' => '',
+ 'payments_total' => '',
+ 'price' => '',
+ 'print_after_sale' => '',
+ 'quantity' => '',
+ 'quantity_less_than_reorder_level' => '',
+ 'quantity_less_than_zero' => '',
+ 'quantity_of_items' => '',
+ 'quote' => '',
+ 'quote_number' => '',
+ 'quote_number_duplicate' => '',
+ 'quote_sent' => '',
+ 'quote_unsent' => '',
+ 'receipt' => '',
+ 'receipt_no_email' => '',
+ 'receipt_number' => '',
+ 'receipt_sent' => '',
+ 'receipt_unsent' => '',
+ 'reference_code' => 'Վճարման հղման կոդ',
+ 'reference_code_invalid_characters' => 'Հղման կոդը պետք է պարունակի միայն տառեր և թվեր։',
+ 'reference_code_length_error' => 'Հղման կոդի երկարությունն անվավեր է։',
+ 'refund' => '',
+ 'register' => '',
+ 'remove_customer' => '',
+ 'remove_discount' => '',
+ 'return' => '',
+ 'rewards' => '',
+ 'rewards_balance' => '',
+ 'rewards_package' => '',
+ 'rewards_remaining_balance' => '',
+ 'sale' => '',
+ 'sale_by_invoice' => '',
+ 'sale_for_customer' => '',
+ 'sale_time' => '',
+ 'sales_tax' => '',
+ 'sales_total' => '',
+ 'select_customer' => '',
+ 'send_invoice' => '',
+ 'send_quote' => '',
+ 'send_receipt' => '',
+ 'send_work_order' => '',
+ 'serial' => '',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => '',
+ 'show_receipt' => '',
+ 'start_typing_customer_name' => '',
+ 'start_typing_item_name' => '',
+ 'stock' => '',
+ 'stock_location' => '',
+ 'sub_total' => '',
+ 'successfully_deleted' => '',
+ 'successfully_restored' => '',
+ 'successfully_suspended_sale' => '',
+ 'successfully_updated' => '',
+ 'suspend_sale' => '',
+ 'suspended_doc_id' => '',
+ 'suspended_sale_id' => '',
+ 'suspended_sales' => '',
+ 'table' => '',
+ 'takings' => '',
+ 'tax' => '',
+ 'tax_id' => '',
+ 'tax_invoice' => '',
+ 'tax_percent' => '',
+ 'taxed_ind' => '',
+ 'total' => '',
+ 'total_tax_exclusive' => '',
+ 'transaction_failed' => '',
+ 'unable_to_add_item' => '',
+ 'unsuccessfully_deleted' => '',
+ 'unsuccessfully_restored' => '',
+ 'unsuccessfully_suspended_sale' => '',
+ 'unsuccessfully_updated' => '',
+ 'unsuspend' => '',
+ 'unsuspend_and_delete' => '',
+ 'update' => '',
+ 'upi' => '',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => '',
+ 'work_order_number' => '',
+ 'work_order_number_duplicate' => '',
+ 'work_order_sent' => '',
+ 'work_order_unsent' => '',
];
diff --git a/app/Language/id/Config.php b/app/Language/id/Config.php
index f2097acbb..c0ab39129 100644
--- a/app/Language/id/Config.php
+++ b/app/Language/id/Config.php
@@ -1,331 +1,334 @@
"Alamat Perusahaan",
- 'address_required' => "Alamat Perusahaan wajib diisi.",
- 'all_set' => "Semua perizinan file diatur dengan benar!",
- 'allow_duplicate_barcodes' => "Ijinkan kode batang ganda",
- 'apostrophe' => "Tanda petik (')",
- 'backup_button' => "Cadangkan",
- 'backup_database' => "Cadangkan basis data",
- 'barcode' => "Kode batang",
- 'barcode_company' => "Nama Perusahaan",
- 'barcode_configuration' => "Pengaturan kode batang",
- 'barcode_content' => "Isi kode batang",
- 'barcode_first_row' => "Baris 1",
- 'barcode_font' => "Jenis huruf",
- 'barcode_formats' => "Format masukan",
- 'barcode_generate_if_empty' => "Buatkan kode batang otomatis jika kosong.",
- 'barcode_height' => "Tinggi (px)",
- 'barcode_id' => "Item Id/Nama",
- 'barcode_info' => "Informasi pengaturan kode batang",
- 'barcode_layout' => "Tata letak kode batang",
- 'barcode_name' => "Nama",
- 'barcode_number' => "Kode batang",
- 'barcode_number_in_row' => "Jumlah baris",
- 'barcode_page_cellspacing' => "Tampilkan jarak antar sel pada halaman.",
- 'barcode_page_width' => "Lebar halaman",
- 'barcode_price' => "Harga",
- 'barcode_second_row' => "Baris 2",
- 'barcode_third_row' => "Baris 3",
- 'barcode_tooltip' => "Peringatan: Fitur ini dapat meyebabkan duplikasi item yang diimpor atau dibuat. Jangan digunakan jika Anda tidak ingin menggandakan kode batang.",
- 'barcode_type' => "Jenis kode batang",
- 'barcode_width' => "Lebar (px)",
- 'bottom' => "Bawah",
- 'cash_button' => "",
- 'cash_button_1' => "",
- 'cash_button_2' => "",
- 'cash_button_3' => "",
- 'cash_button_4' => "",
- 'cash_button_5' => "",
- 'cash_button_6' => "",
- 'cash_decimals' => "Desimal Tunai",
- 'cash_decimals_tooltip' => "Jika Desimal Tunai dan Desimal Mata Uang sama, maka pembulatan uang tidak akan dilakukan.",
- 'cash_rounding' => "Pembulatan tunai",
- 'category_dropdown' => "Tampilkan menu tarik turun untuk Kategori",
- 'center' => "Tengah",
- 'change_apperance_tooltip' => "",
- 'comma' => "koma",
- 'company' => "Nama Perusahaan",
- 'company_avatar' => "",
- 'company_change_image' => "Ubah gambar",
- 'company_logo' => "Logo perusahaan",
- 'company_remove_image' => "Hapus gambar",
- 'company_required' => "Nama Perusahaan wajib diisi",
- 'company_select_image' => "Pilih gambar",
- 'company_website_url' => "Situs Perusahaan bukan URL yang benar(http://...).",
- 'country_codes' => "Kode negara",
- 'country_codes_tooltip' => "Daftar kode negara format CSV untuk lookup alamat.",
- 'currency_code' => "Kode Mata uang",
- 'currency_decimals' => "Angka desimal",
- 'currency_symbol' => "Simbol Mata Uang",
- 'current_employee_only' => "",
- 'customer_reward' => "Hadiah",
- 'customer_reward_duplicate' => "Masukkan nama unik untuk hadiah.",
- 'customer_reward_enable' => "Aktifkan Hadiah Konsumen",
- 'customer_reward_invalid_chars' => "Nama hadiah tidak boleh berisi '_'",
- 'customer_reward_required' => "Kolom hadiah tidak boleh kosong",
- 'customer_sales_tax_support' => "Dukungan Pajak Penjualan Pelanggan",
- 'date_or_time_format' => "Penyaring tanggal dan waktu",
- 'datetimeformat' => "Format tanggal dan waktu",
- 'decimal_point' => "Titik Desimal",
- 'default_barcode_font_size_number' => "Pengaturan ukuran kode batang default harus berupa angka.",
- 'default_barcode_font_size_required' => "Pengaturan ukuran kode batang default harus diisi.",
- 'default_barcode_height_number' => "Pengaturan tinggi kode batang harus berupa angka.",
- 'default_barcode_height_required' => "Pengaturan tinggi kode batang harus diisi.",
- 'default_barcode_num_in_row_number' => "Kode batang harus berupa angka.",
- 'default_barcode_num_in_row_required' => "Kode batang harus diisi.",
- 'default_barcode_page_cellspacing_number' => "Pengaturan spasi sel kode batang harus berupa angka.",
- 'default_barcode_page_cellspacing_required' => "Pengaturan spasi sel kode batang harus diisi.",
- 'default_barcode_page_width_number' => "Lebar halaman kode batang harus berupa angka.",
- 'default_barcode_page_width_required' => "Lebar halaman kode batang harus diisi.",
- 'default_barcode_width_number' => "Lebar kode batang harus berupa angka.",
- 'default_barcode_width_required' => "Lebar kode batang harus diisi.",
- 'default_item_columns' => "Kolom item terlihat bawaan",
- 'default_origin_tax_code' => "Kode Pajak Asal Default",
- 'default_receivings_discount' => "Diskon pembelian bawaan",
- 'default_receivings_discount_number' => "Diskon pembelian bawaaan harus berupa angka.",
- 'default_receivings_discount_required' => "Diskon oembelian harus diisi.",
- 'default_sales_discount' => "Diskon penjualan bawaan",
- 'default_sales_discount_number' => "Diskon penjualan harus berupa angka.",
- 'default_sales_discount_required' => "Diskon penjualan harus diisi.",
- 'default_tax_category' => "Kategori pajak bawaan",
- 'default_tax_code' => "Kode pajak bawaan",
- 'default_tax_jurisdiction' => "Yuridiksi Pajak bawaan",
- 'default_tax_name_number' => "Nama Pajak Default harus berupa string.",
- 'default_tax_name_required' => "Jenis pajak harus diisi.",
- 'default_tax_rate' => "Tarif Pajak %",
- 'default_tax_rate_1' => "Tarif Pajak 1",
- 'default_tax_rate_2' => "Tarif Pajak 2",
- 'default_tax_rate_3' => "",
- 'default_tax_rate_number' => "Tarif Pajak harus berupa angkat.",
- 'default_tax_rate_required' => "Tarif Pajak Biasa harus diisi.",
- 'derive_sale_quantity' => "Ijinkan Kuantitas Penjulan Diturunkan",
- 'derive_sale_quantity_tooltip' => "Jika dicentang maka jenis barang baru akan disediakan untuk barang yang dipesan dengan jumlah yang diperpanjang",
- 'dinner_table' => "Meja",
- 'dinner_table_duplicate' => "Masukkan nama meja (harus unik).",
- 'dinner_table_enable' => "Aktifkan meja",
- 'dinner_table_invalid_chars' => "Nama meja tidak dapat berisi karater '_'.",
- 'dinner_table_required' => "Meja adalah kolom yang harus diisi.",
- 'dot' => "titik",
- 'email' => "Surel",
- 'email_configuration' => "Konfigurasi Email",
- 'email_mailpath' => "Direktori untuk Sendmail",
- 'email_protocol' => "Protocol",
- 'email_receipt_check_behaviour' => "Kotak centang Penerimaan Email",
- 'email_receipt_check_behaviour_always' => "Selalu dicentang",
- 'email_receipt_check_behaviour_last' => "Ingat pilihan terakhir",
- 'email_receipt_check_behaviour_never' => "Selalu tidak tercentang",
- 'email_smtp_crypto' => "Enkripsi SMTP",
- 'email_smtp_host' => "Server SMTP",
- 'email_smtp_pass' => "Kata Sandi SMTP",
- 'email_smtp_port' => "Port SMTP",
- 'email_smtp_timeout' => "Masa Aktif SMTP",
- 'email_smtp_user' => "Nama Pengguna SMTP",
- 'enable_avatar' => "",
- 'enable_avatar_tooltip' => "",
- 'enable_dropdown_tooltip' => "",
- 'enable_new_look' => "",
- 'enable_right_bar' => "",
- 'enable_right_bar_tooltip' => "",
- 'enforce_privacy' => "Berlakukan privasi",
- 'enforce_privacy_tooltip' => "Lindungi privasi Pelanggan yang menegakkan data dalam hal data mereka dihapus",
- 'fax' => "Fax",
- 'file_perm' => "Perizinan berkas bermasalah, Silakan perbaiki dan muat ulang halaman ini.",
- 'financial_year' => "Tahun Awal Fiskal",
- 'financial_year_apr' => "1 April",
- 'financial_year_aug' => "1 Agustus",
- 'financial_year_dec' => "1 Desember",
- 'financial_year_feb' => "1 Februari",
- 'financial_year_jan' => "1 Januari",
- 'financial_year_jul' => "1 Juli",
- 'financial_year_jun' => "1 Juni",
- 'financial_year_mar' => "1 Maret",
- 'financial_year_may' => "1 Mei",
- 'financial_year_nov' => "1 November",
- 'financial_year_oct' => "1 Oktober",
- 'financial_year_sep' => "1 September",
- 'floating_labels' => "Label mengambang",
- 'gcaptcha_enable' => "Halaman login reCHAPTCHA",
- 'gcaptcha_secret_key' => "Kunci Rahasia reCHAPTCHA",
- 'gcaptcha_secret_key_required' => "Kunci Rahasia reCHAPTCHA adalah bidang yang harus diisi",
- 'gcaptcha_site_key' => "Kunci Situs reCHAPTCHA",
- 'gcaptcha_site_key_required' => "Kunci Situs reCHAPTCHA adalah bidang yang dibutuhkan",
- 'gcaptcha_tooltip' => "Lindungi Halaman Login dengan reCAPTCHA Google, klik pada ikon untuk pasangan kunci API.",
- 'general' => "Umum",
- 'general_configuration' => "Pengaturan Umum",
- 'giftcard_number' => "Nomor Kartu Hadiah",
- 'giftcard_random' => "Hasilkan acak",
- 'giftcard_series' => "Hasilkan dalam seri",
- 'image_allowed_file_types' => "Jenis berkas yang diizinkan",
- 'image_max_height_tooltip' => "Tinggi maksimum unggahan gambar yang diizinkan dalam piksel (px).",
- 'image_max_size_tooltip' => "ukuran berkas maksimum yang diijinkan untuk mengunggah gambar dalam kilobyte (kb).",
- 'image_max_width_tooltip' => "Lebar maksimum yang diunggah dari pengunggahan gambar dalam piksel (px).",
- 'image_restrictions' => "Pembatasan Pengunggahan Gambar",
- 'include_hsn' => "Termasuk dukungan kode HSN",
- 'info' => "Informasi",
- 'info_configuration' => "Informasi Toko",
- 'input_groups' => "Grup masukan",
- 'integrations' => "Integrasi",
- 'integrations_configuration' => "Integrasi pihak ketiga",
- 'invoice' => "Faktur",
- 'invoice_configuration' => "Pengaturan cetak faktur",
- 'invoice_default_comments' => "Komentar faktur",
- 'invoice_email_message' => "Templat email faktur",
- 'invoice_enable' => "Mengaktifkan faktur",
- 'invoice_printer' => "Pencetak Faktur",
- 'invoice_type' => "Tipe Faktur",
- 'is_readable' => "dapat dibaca, tetapi izin tidak disetel dengan benar. Setel ke 640 atau 660, kemudian segarkan.",
- 'is_writable' => "bisa ditulis, tetapi izin tidak disetel dengan benar. Setel ke 750 dan segarkan.",
- 'item_markup' => "",
- 'jsprintsetup_required' => "Perhatian! Fungsi ini hanya berjalan jika anda menggunakan Firefox yang memiliki tambahan jsPrintSetup. Tetap simpan?",
- 'language' => "Bahasa",
- 'last_used_invoice_number' => "Nomor terakhir faktur",
- 'last_used_quote_number' => "Nomor Penawaran yang terakhir digunakan",
- 'last_used_work_order_number' => "Nomor W/O yang terakhir dipakai",
- 'left' => "Kiri",
- 'license' => "Lisensi",
- 'license_configuration' => "Pernyataan Lisensi",
- 'line_sequence' => "Urutan baris",
- 'lines_per_page' => "Baris per halaman",
- 'lines_per_page_number' => "Baris per halaman harus berupa angka.",
- 'lines_per_page_required' => "Baris per halaman tidak boleh kosong.",
- 'locale' => "Terjemahan",
- 'locale_configuration' => "Konfigurasi Terjemahan",
- 'locale_info' => "Informasi Konfigurasi Terjemahan",
- 'location' => "Lokasi Stock",
- 'location_configuration' => "Lokasi Stock",
- 'location_info' => "Informasi konfigurasi lokasi stock",
- 'login_form' => "Gaya Formulir Log Masuk",
- 'logout' => "Apakah Anda akan membuat cadangan sebelum anda keluar? Klik [OK] untuk pencadangan, [Batal] untuk keluar.",
- 'mailchimp' => "MailChimp",
- 'mailchimp_api_key' => "Kunci API MailChimp",
- 'mailchimp_configuration' => "Pengaturan MailChimp",
- 'mailchimp_key_successfully' => "Kunci API benar.",
- 'mailchimp_key_unsuccessfully' => "Kunci API tidak valid.",
- 'mailchimp_lists' => "Daftar MailChimp",
- 'mailchimp_tooltip' => "Klik pada ikon untuk KUnci API.",
- 'message' => "Pesan",
- 'message_configuration' => "Pengaturan Pesan",
- 'msg_msg' => "Pesan teks tersimpan",
- 'msg_msg_placeholder' => "Apakah Anda ingin menggunakan template SMS menyimpan pesan Anda disini? Jika tidak, biarkan kosong.",
- 'msg_pwd' => "SMS-API Password",
- 'msg_pwd_required' => "SMS-API Password harus diisi",
- 'msg_src' => "ID pengirim SMS-API",
- 'msg_src_required' => "SMS-API Sender ID harus diisi",
- 'msg_uid' => "SMS-API User Name",
- 'msg_uid_required' => "SMS-API Username harus diisi",
- 'multi_pack_enabled' => "Multi paket per item",
- 'no_risk' => "Tidak ada risiko keamanan / kerentanan.",
- 'none' => "none",
- 'notify_alignment' => "Posisi notifikasi Popup",
- 'number_format' => "Format Nomor",
- 'number_locale' => "Terjemahan",
- 'number_locale_invalid' => "Kode bahasa salah. Cek tautan pada tooltip untuk mendapatkan kode bahasa yang benar.",
- 'number_locale_required' => "Kode Lokal wajib diisi.",
- 'number_locale_tooltip' => "Menemukan kode lokal melalui link ini.",
- 'os_timezone' => "Zona waktu OSPOS:",
- 'ospos_info' => "Info pemasangan OSPOS",
- 'payment_options_order' => "Urutan pilihan pembayaran",
- 'perm_risk' => "Setelan izin yang salah berbahaya bagi keamanan perangkat lunak.",
- 'phone' => "Telepon Perusahaan",
- 'phone_required' => "Telepon Perusahaan wajib diisi.",
- 'print_bottom_margin' => "Margin Bawah",
- 'print_bottom_margin_number' => "Default margin bawah harus angka.",
- 'print_bottom_margin_required' => "Default margin Bawah harus di isi.",
- 'print_delay_autoreturn' => "Otomatis Retur pada penundaan Penjualan",
- 'print_delay_autoreturn_number' => "Kolom Otomatis Retur pada Penundaan Penjualan harus diisi.",
- 'print_delay_autoreturn_required' => "Pengembalian otomatis untuk Penjualan tertunda harus berupa angka.",
- 'print_footer' => "Mencetak Footer Browser",
- 'print_header' => "Mencetak Browser Header",
- 'print_left_margin' => "Margin Kiri",
- 'print_left_margin_number' => "Margin kiri harus berupa angka.",
- 'print_left_margin_required' => "Margin kiri wajib di isi.",
- 'print_receipt_check_behaviour' => "Centang Cetak Struk",
- 'print_receipt_check_behaviour_always' => "Selalu dicentang",
- 'print_receipt_check_behaviour_last' => "Ingat pilihan terakhir",
- 'print_receipt_check_behaviour_never' => "Selalu tidak dicentang",
- 'print_right_margin' => "Margin kanan",
- 'print_right_margin_number' => "Margin kiri harus berupa angka.",
- 'print_right_margin_required' => "Margin kanan wajib di isi.",
- 'print_silently' => "Tampilkan Print Dialog",
- 'print_top_margin' => "Margin atas",
- 'print_top_margin_number' => "Nilai margin atas harus di isi angka.",
- 'print_top_margin_required' => "Margin atas wajib di isi.",
- 'quantity_decimals' => "Desimal untuk Jumlah",
- 'quick_cash_enable' => "",
- 'quote_default_comments' => "Komentar faktur",
- 'receipt' => "Struk Penerimaan",
- 'receipt_category' => "",
- 'receipt_configuration' => "Struk Print Settings",
- 'receipt_default' => "Default",
- 'receipt_font_size' => "Ukuran Font",
- 'receipt_font_size_number' => "Ukuran font harus berupa angka.",
- 'receipt_font_size_required' => "Ukuran font harus diisi.",
- 'receipt_info' => "Struk Konfigurasi Informasi",
- 'receipt_printer' => "Tiket Printer",
- 'receipt_short' => "Ringkas",
- 'receipt_show_company_name' => "Tampilkan nama perusahaan",
- 'receipt_show_description' => "Tampilkan deskripsi",
- 'receipt_show_serialnumber' => "Tampilkan nomor seri",
- 'receipt_show_tax_ind' => "Tampilkan Indikator Pajak",
- 'receipt_show_taxes' => "Tampilkan pajak",
- 'receipt_show_total_discount' => "Tampilkan total diskon",
- 'receipt_template' => "Template struk",
- 'receiving_calculate_average_price' => "Menghitung harga rata-rata (Penerimaan)",
- 'recv_invoice_format' => "Format Faktur",
- 'register_mode_default' => "Default register mode",
- 'report_an_issue' => "Laporkan masalah",
- 'return_policy_required' => "Kebijakan retur wajib diisi.",
- 'reward' => "Hadiah",
- 'reward_configuration' => "Konfigurasi Hadiah",
- 'right' => "Kanan",
- 'sales_invoice_format' => "Format Faktur Penjualan",
- 'sales_quote_format' => "Format Penawaran Penjualan",
- 'saved_successfully' => "Konfigurasi berhasil disimpan.",
- 'saved_unsuccessfully' => "Konfigurasi tidak berhasil disimpan.",
- 'security_issue' => "Peringatan Kerentanan Keamanan",
- 'server_notice' => "Silakan gunakan info di bawah ini untuk pelaporan masalah.",
- 'service_charge' => "",
- 'show_due_enable' => "",
- 'show_office_group' => "Tampilkan ikon kantor",
- 'statistics' => "Kirim statistik",
- 'statistics_tooltip' => "Kirim statistik untuk pengembangan dan peningkatan fitur.",
- 'stock_location' => "Lokasi Stock",
- 'stock_location_duplicate' => "Gunakan nama yang unik untuk lokasi stock.",
- 'stock_location_invalid_chars' => "Nama lokasi tidak boleh berisi karakter '_'.",
- 'stock_location_required' => "Nomor lokasi stock harus diisi.",
- 'suggestions_fifth_column' => "",
- 'suggestions_first_column' => "Kolom 1",
- 'suggestions_fourth_column' => "",
- 'suggestions_layout' => "Tampilan Saran Pencarian",
- 'suggestions_second_column' => "Kolom 2",
- 'suggestions_third_column' => "Kolom 3",
- 'system_conf' => "Setting & Conf",
- 'system_info' => "System Info",
- 'table' => "Meja",
- 'table_configuration' => "Konfigurasi Meja",
- 'takings_printer' => "Struk Printer",
- 'tax' => "Pajak",
- 'tax_category' => "Kategori Pajak",
- 'tax_category_duplicate' => "Kategori pajak yang dimasukkan sudah ada.",
- 'tax_category_invalid_chars' => "Kategori pajak yang dimasukkan tidak valid.",
- 'tax_category_required' => "Kategori pajak dibutuhkan.",
- 'tax_category_used' => "Kategori pajak tidak bisa dihapus karena sedang digunakan.",
- 'tax_configuration' => "Konfigurasi Pajak",
- 'tax_decimals' => "Pajak Decimals",
- 'tax_id' => "Id Pajak",
- 'tax_included' => "Dikenakan Pajak",
- 'theme' => "Tema",
- 'theme_preview' => "Pratinjau Tema:",
- 'thousands_separator' => "Pemisah Ribuan",
- 'timezone' => "Zona Waktu",
- 'timezone_error' => "Zona Waktu OSPOS berbeda dari Zona Waktu Anda.",
- 'top' => "Atas",
- 'use_destination_based_tax' => "Gunakan Pajak Berdasarkan Tujuan",
- 'user_timezone' => "Zona waktu lokal:",
- 'website' => "Situs Perusahaan",
- 'wholesale_markup' => "",
- 'work_order_enable' => "Dukungan Work Order",
- 'work_order_format' => "Format Work Order",
+ 'address' => 'Alamat Perusahaan',
+ 'address_required' => 'Alamat Perusahaan wajib diisi.',
+ 'all_set' => 'Semua perizinan file diatur dengan benar!',
+ 'allow_duplicate_barcodes' => 'Ijinkan kode batang ganda',
+ 'apostrophe' => "Tanda petik (')",
+ 'backup_button' => 'Cadangkan',
+ 'backup_database' => 'Cadangkan basis data',
+ 'barcode' => 'Kode batang',
+ 'barcode_company' => 'Nama Perusahaan',
+ 'barcode_configuration' => 'Pengaturan kode batang',
+ 'barcode_content' => 'Isi kode batang',
+ 'barcode_first_row' => 'Baris 1',
+ 'barcode_font' => 'Jenis huruf',
+ 'barcode_formats' => 'Format masukan',
+ 'barcode_generate_if_empty' => 'Buatkan kode batang otomatis jika kosong.',
+ 'barcode_height' => 'Tinggi (px)',
+ 'barcode_id' => 'Item Id/Nama',
+ 'barcode_info' => 'Informasi pengaturan kode batang',
+ 'barcode_layout' => 'Tata letak kode batang',
+ 'barcode_name' => 'Nama',
+ 'barcode_number' => 'Kode batang',
+ 'barcode_number_in_row' => 'Jumlah baris',
+ 'barcode_page_cellspacing' => 'Tampilkan jarak antar sel pada halaman.',
+ 'barcode_page_width' => 'Lebar halaman',
+ 'barcode_price' => 'Harga',
+ 'barcode_second_row' => 'Baris 2',
+ 'barcode_third_row' => 'Baris 3',
+ 'barcode_tooltip' => 'Peringatan: Fitur ini dapat meyebabkan duplikasi item yang diimpor atau dibuat. Jangan digunakan jika Anda tidak ingin menggandakan kode batang.',
+ 'barcode_type' => 'Jenis kode batang',
+ 'barcode_width' => 'Lebar (px)',
+ 'bottom' => 'Bawah',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Desimal Tunai',
+ 'cash_decimals_tooltip' => 'Jika Desimal Tunai dan Desimal Mata Uang sama, maka pembulatan uang tidak akan dilakukan.',
+ 'cash_rounding' => 'Pembulatan tunai',
+ 'category_dropdown' => 'Tampilkan menu tarik turun untuk Kategori',
+ 'center' => 'Tengah',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'koma',
+ 'company' => 'Nama Perusahaan',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Ubah gambar',
+ 'company_logo' => 'Logo perusahaan',
+ 'company_remove_image' => 'Hapus gambar',
+ 'company_required' => 'Nama Perusahaan wajib diisi',
+ 'company_select_image' => 'Pilih gambar',
+ 'company_website_url' => 'Situs Perusahaan bukan URL yang benar(http://...).',
+ 'country_codes' => 'Kode negara',
+ 'country_codes_tooltip' => 'Daftar kode negara format CSV untuk lookup alamat.',
+ 'currency_code' => 'Kode Mata uang',
+ 'currency_decimals' => 'Angka desimal',
+ 'currency_symbol' => 'Simbol Mata Uang',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Hadiah',
+ 'customer_reward_duplicate' => 'Masukkan nama unik untuk hadiah.',
+ 'customer_reward_enable' => 'Aktifkan Hadiah Konsumen',
+ 'customer_reward_invalid_chars' => "Nama hadiah tidak boleh berisi '_'",
+ 'customer_reward_required' => 'Kolom hadiah tidak boleh kosong',
+ 'customer_sales_tax_support' => 'Dukungan Pajak Penjualan Pelanggan',
+ 'date_or_time_format' => 'Penyaring tanggal dan waktu',
+ 'datetimeformat' => 'Format tanggal dan waktu',
+ 'decimal_point' => 'Titik Desimal',
+ 'default_barcode_font_size_number' => 'Pengaturan ukuran kode batang default harus berupa angka.',
+ 'default_barcode_font_size_required' => 'Pengaturan ukuran kode batang default harus diisi.',
+ 'default_barcode_height_number' => 'Pengaturan tinggi kode batang harus berupa angka.',
+ 'default_barcode_height_required' => 'Pengaturan tinggi kode batang harus diisi.',
+ 'default_barcode_num_in_row_number' => 'Kode batang harus berupa angka.',
+ 'default_barcode_num_in_row_required' => 'Kode batang harus diisi.',
+ 'default_barcode_page_cellspacing_number' => 'Pengaturan spasi sel kode batang harus berupa angka.',
+ 'default_barcode_page_cellspacing_required' => 'Pengaturan spasi sel kode batang harus diisi.',
+ 'default_barcode_page_width_number' => 'Lebar halaman kode batang harus berupa angka.',
+ 'default_barcode_page_width_required' => 'Lebar halaman kode batang harus diisi.',
+ 'default_barcode_width_number' => 'Lebar kode batang harus berupa angka.',
+ 'default_barcode_width_required' => 'Lebar kode batang harus diisi.',
+ 'default_item_columns' => 'Kolom item terlihat bawaan',
+ 'default_origin_tax_code' => 'Kode Pajak Asal Default',
+ 'default_receivings_discount' => 'Diskon pembelian bawaan',
+ 'default_receivings_discount_number' => 'Diskon pembelian bawaaan harus berupa angka.',
+ 'default_receivings_discount_required' => 'Diskon oembelian harus diisi.',
+ 'default_sales_discount' => 'Diskon penjualan bawaan',
+ 'default_sales_discount_number' => 'Diskon penjualan harus berupa angka.',
+ 'default_sales_discount_required' => 'Diskon penjualan harus diisi.',
+ 'default_tax_category' => 'Kategori pajak bawaan',
+ 'default_tax_code' => 'Kode pajak bawaan',
+ 'default_tax_jurisdiction' => 'Yuridiksi Pajak bawaan',
+ 'default_tax_name_number' => 'Nama Pajak Default harus berupa string.',
+ 'default_tax_name_required' => 'Jenis pajak harus diisi.',
+ 'default_tax_rate' => 'Tarif Pajak %',
+ 'default_tax_rate_1' => 'Tarif Pajak 1',
+ 'default_tax_rate_2' => 'Tarif Pajak 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Tarif Pajak harus berupa angkat.',
+ 'default_tax_rate_required' => 'Tarif Pajak Biasa harus diisi.',
+ 'derive_sale_quantity' => 'Ijinkan Kuantitas Penjulan Diturunkan',
+ 'derive_sale_quantity_tooltip' => 'Jika dicentang maka jenis barang baru akan disediakan untuk barang yang dipesan dengan jumlah yang diperpanjang',
+ 'dinner_table' => 'Meja',
+ 'dinner_table_duplicate' => 'Masukkan nama meja (harus unik).',
+ 'dinner_table_enable' => 'Aktifkan meja',
+ 'dinner_table_invalid_chars' => "Nama meja tidak dapat berisi karater '_'.",
+ 'dinner_table_required' => 'Meja adalah kolom yang harus diisi.',
+ 'dot' => 'titik',
+ 'email' => 'Surel',
+ 'email_configuration' => 'Konfigurasi Email',
+ 'email_mailpath' => 'Direktori untuk Sendmail',
+ 'email_protocol' => 'Protocol',
+ 'email_receipt_check_behaviour' => 'Kotak centang Penerimaan Email',
+ 'email_receipt_check_behaviour_always' => 'Selalu dicentang',
+ 'email_receipt_check_behaviour_last' => 'Ingat pilihan terakhir',
+ 'email_receipt_check_behaviour_never' => 'Selalu tidak tercentang',
+ 'email_smtp_crypto' => 'Enkripsi SMTP',
+ 'email_smtp_host' => 'Server SMTP',
+ 'email_smtp_pass' => 'Kata Sandi SMTP',
+ 'email_smtp_port' => 'Port SMTP',
+ 'email_smtp_timeout' => 'Masa Aktif SMTP',
+ 'email_smtp_user' => 'Nama Pengguna SMTP',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Berlakukan privasi',
+ 'enforce_privacy_tooltip' => 'Lindungi privasi Pelanggan yang menegakkan data dalam hal data mereka dihapus',
+ 'fax' => 'Fax',
+ 'file_perm' => 'Perizinan berkas bermasalah, Silakan perbaiki dan muat ulang halaman ini.',
+ 'financial_year' => 'Tahun Awal Fiskal',
+ 'financial_year_apr' => '1 April',
+ 'financial_year_aug' => '1 Agustus',
+ 'financial_year_dec' => '1 Desember',
+ 'financial_year_feb' => '1 Februari',
+ 'financial_year_jan' => '1 Januari',
+ 'financial_year_jul' => '1 Juli',
+ 'financial_year_jun' => '1 Juni',
+ 'financial_year_mar' => '1 Maret',
+ 'financial_year_may' => '1 Mei',
+ 'financial_year_nov' => '1 November',
+ 'financial_year_oct' => '1 Oktober',
+ 'financial_year_sep' => '1 September',
+ 'floating_labels' => 'Label mengambang',
+ 'gcaptcha_enable' => 'Halaman login reCHAPTCHA',
+ 'gcaptcha_secret_key' => 'Kunci Rahasia reCHAPTCHA',
+ 'gcaptcha_secret_key_required' => 'Kunci Rahasia reCHAPTCHA adalah bidang yang harus diisi',
+ 'gcaptcha_site_key' => 'Kunci Situs reCHAPTCHA',
+ 'gcaptcha_site_key_required' => 'Kunci Situs reCHAPTCHA adalah bidang yang dibutuhkan',
+ 'gcaptcha_tooltip' => 'Lindungi Halaman Login dengan reCAPTCHA Google, klik pada ikon untuk pasangan kunci API.',
+ 'general' => 'Umum',
+ 'general_configuration' => 'Pengaturan Umum',
+ 'giftcard_number' => 'Nomor Kartu Hadiah',
+ 'giftcard_random' => 'Hasilkan acak',
+ 'giftcard_series' => 'Hasilkan dalam seri',
+ 'image_allowed_file_types' => 'Jenis berkas yang diizinkan',
+ 'image_max_height_tooltip' => 'Tinggi maksimum unggahan gambar yang diizinkan dalam piksel (px).',
+ 'image_max_size_tooltip' => 'ukuran berkas maksimum yang diijinkan untuk mengunggah gambar dalam kilobyte (kb).',
+ 'image_max_width_tooltip' => 'Lebar maksimum yang diunggah dari pengunggahan gambar dalam piksel (px).',
+ 'image_restrictions' => 'Pembatasan Pengunggahan Gambar',
+ 'include_hsn' => 'Termasuk dukungan kode HSN',
+ 'info' => 'Informasi',
+ 'info_configuration' => 'Informasi Toko',
+ 'input_groups' => 'Grup masukan',
+ 'integrations' => 'Integrasi',
+ 'integrations_configuration' => 'Integrasi pihak ketiga',
+ 'invoice' => 'Faktur',
+ 'invoice_configuration' => 'Pengaturan cetak faktur',
+ 'invoice_default_comments' => 'Komentar faktur',
+ 'invoice_email_message' => 'Templat email faktur',
+ 'invoice_enable' => 'Mengaktifkan faktur',
+ 'invoice_printer' => 'Pencetak Faktur',
+ 'invoice_type' => 'Tipe Faktur',
+ 'is_readable' => 'dapat dibaca, tetapi izin tidak disetel dengan benar. Setel ke 640 atau 660, kemudian segarkan.',
+ 'is_writable' => 'bisa ditulis, tetapi izin tidak disetel dengan benar. Setel ke 750 dan segarkan.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Perhatian! Fungsi ini hanya berjalan jika anda menggunakan Firefox yang memiliki tambahan jsPrintSetup. Tetap simpan?',
+ 'language' => 'Bahasa',
+ 'last_used_invoice_number' => 'Nomor terakhir faktur',
+ 'last_used_quote_number' => 'Nomor Penawaran yang terakhir digunakan',
+ 'last_used_work_order_number' => 'Nomor W/O yang terakhir dipakai',
+ 'left' => 'Kiri',
+ 'license' => 'Lisensi',
+ 'license_configuration' => 'Pernyataan Lisensi',
+ 'line_sequence' => 'Urutan baris',
+ 'lines_per_page' => 'Baris per halaman',
+ 'lines_per_page_number' => 'Baris per halaman harus berupa angka.',
+ 'lines_per_page_required' => 'Baris per halaman tidak boleh kosong.',
+ 'locale' => 'Terjemahan',
+ 'locale_configuration' => 'Konfigurasi Terjemahan',
+ 'locale_info' => 'Informasi Konfigurasi Terjemahan',
+ 'location' => 'Lokasi Stock',
+ 'location_configuration' => 'Lokasi Stock',
+ 'location_info' => 'Informasi konfigurasi lokasi stock',
+ 'login_form' => 'Gaya Formulir Log Masuk',
+ 'logout' => 'Apakah Anda akan membuat cadangan sebelum anda keluar? Klik [OK] untuk pencadangan, [Batal] untuk keluar.',
+ 'mailchimp' => 'MailChimp',
+ 'mailchimp_api_key' => 'Kunci API MailChimp',
+ 'mailchimp_configuration' => 'Pengaturan MailChimp',
+ 'mailchimp_key_successfully' => 'Kunci API benar.',
+ 'mailchimp_key_unsuccessfully' => 'Kunci API tidak valid.',
+ 'mailchimp_lists' => 'Daftar MailChimp',
+ 'mailchimp_tooltip' => 'Klik pada ikon untuk KUnci API.',
+ 'message' => 'Pesan',
+ 'message_configuration' => 'Pengaturan Pesan',
+ 'msg_msg' => 'Pesan teks tersimpan',
+ 'msg_msg_placeholder' => 'Apakah Anda ingin menggunakan template SMS menyimpan pesan Anda disini? Jika tidak, biarkan kosong.',
+ 'msg_pwd' => 'SMS-API Password',
+ 'msg_pwd_required' => 'SMS-API Password harus diisi',
+ 'msg_src' => 'ID pengirim SMS-API',
+ 'msg_src_required' => 'SMS-API Sender ID harus diisi',
+ 'msg_uid' => 'SMS-API User Name',
+ 'msg_uid_required' => 'SMS-API Username harus diisi',
+ 'multi_pack_enabled' => 'Multi paket per item',
+ 'no_risk' => 'Tidak ada risiko keamanan / kerentanan.',
+ 'none' => 'none',
+ 'notify_alignment' => 'Posisi notifikasi Popup',
+ 'number_format' => 'Format Nomor',
+ 'number_locale' => 'Terjemahan',
+ 'number_locale_invalid' => 'Kode bahasa salah. Cek tautan pada tooltip untuk mendapatkan kode bahasa yang benar.',
+ 'number_locale_required' => 'Kode Lokal wajib diisi.',
+ 'number_locale_tooltip' => 'Menemukan kode lokal melalui link ini.',
+ 'os_timezone' => 'Zona waktu OSPOS:',
+ 'ospos_info' => 'Info pemasangan OSPOS',
+ 'payment_options_order' => 'Urutan pilihan pembayaran',
+ 'payment_reference_code_length_limits' => 'Kode Referensi Pembayaran
Batas Panjang',
+ 'payment_reference_code_length_max_label' => 'Maks',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => 'Setelan izin yang salah berbahaya bagi keamanan perangkat lunak.',
+ 'phone' => 'Telepon Perusahaan',
+ 'phone_required' => 'Telepon Perusahaan wajib diisi.',
+ 'print_bottom_margin' => 'Margin Bawah',
+ 'print_bottom_margin_number' => 'Default margin bawah harus angka.',
+ 'print_bottom_margin_required' => 'Default margin Bawah harus di isi.',
+ 'print_delay_autoreturn' => 'Otomatis Retur pada penundaan Penjualan',
+ 'print_delay_autoreturn_number' => 'Kolom Otomatis Retur pada Penundaan Penjualan harus diisi.',
+ 'print_delay_autoreturn_required' => 'Pengembalian otomatis untuk Penjualan tertunda harus berupa angka.',
+ 'print_footer' => 'Mencetak Footer Browser',
+ 'print_header' => 'Mencetak Browser Header',
+ 'print_left_margin' => 'Margin Kiri',
+ 'print_left_margin_number' => 'Margin kiri harus berupa angka.',
+ 'print_left_margin_required' => 'Margin kiri wajib di isi.',
+ 'print_receipt_check_behaviour' => 'Centang Cetak Struk',
+ 'print_receipt_check_behaviour_always' => 'Selalu dicentang',
+ 'print_receipt_check_behaviour_last' => 'Ingat pilihan terakhir',
+ 'print_receipt_check_behaviour_never' => 'Selalu tidak dicentang',
+ 'print_right_margin' => 'Margin kanan',
+ 'print_right_margin_number' => 'Margin kiri harus berupa angka.',
+ 'print_right_margin_required' => 'Margin kanan wajib di isi.',
+ 'print_silently' => 'Tampilkan Print Dialog',
+ 'print_top_margin' => 'Margin atas',
+ 'print_top_margin_number' => 'Nilai margin atas harus di isi angka.',
+ 'print_top_margin_required' => 'Margin atas wajib di isi.',
+ 'quantity_decimals' => 'Desimal untuk Jumlah',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Komentar faktur',
+ 'receipt' => 'Struk Penerimaan',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Struk Print Settings',
+ 'receipt_default' => 'Default',
+ 'receipt_font_size' => 'Ukuran Font',
+ 'receipt_font_size_number' => 'Ukuran font harus berupa angka.',
+ 'receipt_font_size_required' => 'Ukuran font harus diisi.',
+ 'receipt_info' => 'Struk Konfigurasi Informasi',
+ 'receipt_printer' => 'Tiket Printer',
+ 'receipt_short' => 'Ringkas',
+ 'receipt_show_company_name' => 'Tampilkan nama perusahaan',
+ 'receipt_show_description' => 'Tampilkan deskripsi',
+ 'receipt_show_serialnumber' => 'Tampilkan nomor seri',
+ 'receipt_show_tax_ind' => 'Tampilkan Indikator Pajak',
+ 'receipt_show_taxes' => 'Tampilkan pajak',
+ 'receipt_show_total_discount' => 'Tampilkan total diskon',
+ 'receipt_template' => 'Template struk',
+ 'receiving_calculate_average_price' => 'Menghitung harga rata-rata (Penerimaan)',
+ 'recv_invoice_format' => 'Format Faktur',
+ 'register_mode_default' => 'Default register mode',
+ 'report_an_issue' => 'Laporkan masalah',
+ 'return_policy_required' => 'Kebijakan retur wajib diisi.',
+ 'reward' => 'Hadiah',
+ 'reward_configuration' => 'Konfigurasi Hadiah',
+ 'right' => 'Kanan',
+ 'sales_invoice_format' => 'Format Faktur Penjualan',
+ 'sales_quote_format' => 'Format Penawaran Penjualan',
+ 'saved_successfully' => 'Konfigurasi berhasil disimpan.',
+ 'saved_unsuccessfully' => 'Konfigurasi tidak berhasil disimpan.',
+ 'security_issue' => 'Peringatan Kerentanan Keamanan',
+ 'server_notice' => 'Silakan gunakan info di bawah ini untuk pelaporan masalah.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Tampilkan ikon kantor',
+ 'statistics' => 'Kirim statistik',
+ 'statistics_tooltip' => 'Kirim statistik untuk pengembangan dan peningkatan fitur.',
+ 'stock_location' => 'Lokasi Stock',
+ 'stock_location_duplicate' => 'Gunakan nama yang unik untuk lokasi stock.',
+ 'stock_location_invalid_chars' => "Nama lokasi tidak boleh berisi karakter '_'.",
+ 'stock_location_required' => 'Nomor lokasi stock harus diisi.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Kolom 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Tampilan Saran Pencarian',
+ 'suggestions_second_column' => 'Kolom 2',
+ 'suggestions_third_column' => 'Kolom 3',
+ 'system_conf' => 'Setting & Conf',
+ 'system_info' => 'System Info',
+ 'table' => 'Meja',
+ 'table_configuration' => 'Konfigurasi Meja',
+ 'takings_printer' => 'Struk Printer',
+ 'tax' => 'Pajak',
+ 'tax_category' => 'Kategori Pajak',
+ 'tax_category_duplicate' => 'Kategori pajak yang dimasukkan sudah ada.',
+ 'tax_category_invalid_chars' => 'Kategori pajak yang dimasukkan tidak valid.',
+ 'tax_category_required' => 'Kategori pajak dibutuhkan.',
+ 'tax_category_used' => 'Kategori pajak tidak bisa dihapus karena sedang digunakan.',
+ 'tax_configuration' => 'Konfigurasi Pajak',
+ 'tax_decimals' => 'Pajak Decimals',
+ 'tax_id' => 'Id Pajak',
+ 'tax_included' => 'Dikenakan Pajak',
+ 'theme' => 'Tema',
+ 'theme_preview' => 'Pratinjau Tema:',
+ 'thousands_separator' => 'Pemisah Ribuan',
+ 'timezone' => 'Zona Waktu',
+ 'timezone_error' => 'Zona Waktu OSPOS berbeda dari Zona Waktu Anda.',
+ 'top' => 'Atas',
+ 'use_destination_based_tax' => 'Gunakan Pajak Berdasarkan Tujuan',
+ 'user_timezone' => 'Zona waktu lokal:',
+ 'website' => 'Situs Perusahaan',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Dukungan Work Order',
+ 'work_order_format' => 'Format Work Order',
];
diff --git a/app/Language/id/Login.php b/app/Language/id/Login.php
index a3b57ccd5..54996b524 100644
--- a/app/Language/id/Login.php
+++ b/app/Language/id/Login.php
@@ -1,25 +1,30 @@
"Saya bukan robot.",
- "go" => "Lanjut",
- "invalid_gcaptcha" => "Tolong buktikan bahwa anda bukan robot.",
- "invalid_installation" => "Instalasi tidak benar, periksa file php.ini Anda.",
- "invalid_username_and_password" => "Nama Pengguna Atau Sandi Salah.",
- "login" => "Masuk",
- "logout" => "Keluar",
- "migration_needed" => "Migrasi basis data untuk {0} akan mulai setelah masuk.",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "Kata kunci",
- "required_username" => "Kolom nama pengguna wajib diisi.",
- "username" => "Nama Anda",
- "welcome" => "Selamat Datang di {0}!",
+ "gcaptcha" => "Saya bukan robot.",
+ "go" => "Lanjut",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Tolong buktikan bahwa anda bukan robot.",
+ "invalid_installation" => "Instalasi tidak benar, periksa file php.ini Anda.",
+ "invalid_username_and_password" => "Nama Pengguna Atau Sandi Salah.",
+ "login" => "Masuk",
+ "logout" => "Keluar",
+ "migrating_database" => "Migrasi Database",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "Database berhasil dimigrasi!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "Migrasi basis data untuk {0} akan mulai setelah masuk.",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "Kata kunci",
+ "required_username" => "Kolom nama pengguna wajib diisi.",
+ "username" => "Nama Anda",
+ "welcome" => "Selamat Datang di {0}!"
];
diff --git a/app/Language/id/Sales.php b/app/Language/id/Sales.php
index 555ad5076..b8b8ed4d6 100644
--- a/app/Language/id/Sales.php
+++ b/app/Language/id/Sales.php
@@ -1,232 +1,236 @@
"Poin tersedia",
- "rewards_package" => "Hadiah",
- "rewards_remaining_balance" => "Poin hadiah yang tersisa adalah ",
- "account_number" => "Akun #",
- "add_payment" => "Terima",
- "amount_due" => "Uang Kembalian",
- "amount_tendered" => "Nilai Pembayaran",
- "authorized_signature" => "Tanda tangan",
- "cancel_sale" => "Batal Jual",
- "cash" => "Tunai",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "Penyesuaian Kas",
- "cash_deposit" => "Deposit Tunai",
- "cash_filter" => "Tunai",
- "change_due" => "Kembalian Uang",
- "change_price" => "Ubah Harga Jual",
- "check" => "Cek",
- "check_balance" => "Aktifkan pengingat",
- "check_filter" => "Cek",
- "close" => "",
- "comment" => "Catatan",
- "comments" => "Keterangan",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Selesai",
- "confirm_cancel_sale" => "Apakah anda yakin ingin mengosongkan transaksi penjualan ini? Semua item akan dihapus.",
- "confirm_delete" => "Apakah anda yakin akan menghapus penjualan terpilih?",
- "confirm_restore" => "Apakah anda yakin akan mengembalikan penjualan terpilih?",
- "credit" => "Kartu Kredit",
- "credit_deposit" => "Deposit Kredit",
- "credit_filter" => "Kartu Kredit",
- "current_table" => "",
- "customer" => "Pelanggan",
- "customer_address" => "Alamat",
- "customer_discount" => "Diskon",
- "customer_email" => "Email",
- "customer_location" => "Lokasi",
- "customer_mailchimp_status" => "Status MailChimp",
- "customer_optional" => "(Diperlukan untuk Pembayaran Jatuh Tempo)",
- "customer_required" => "(Dibutuhkan)",
- "customer_total" => "Total",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Tanggal Penjualan",
- "date_range" => "Rentang Tanggal",
- "date_required" => "Masukkan tanggal yang benar.",
- "date_type" => "Tanggal tidak boleh kosong.",
- "debit" => "Kartu Debit",
- "debit_filter" => "",
- "delete" => "Boleh dihapus",
- "delete_confirmation" => "Apakah anda yakin ingin menghapus transaksi penjualan ini, Pilihan ini tidak dapat dibatalkan.",
- "delete_entire_sale" => "Hapus Transaksi Penjualan",
- "delete_successful" => "Transaksi Penjualan berhasil dihapus.",
- "delete_unsuccessful" => "Transaksi Penjualan gagal dihapus.",
- "description_abbrv" => "Deskripsi.",
- "discard" => "Buang",
- "discard_quote" => "",
- "discount" => "Diskon",
- "discount_included" => "% Diskon",
- "discount_short" => "%",
- "due" => "Jatuh tempo",
- "due_filter" => "Jatuh tempo",
- "edit" => "Ubah",
- "edit_item" => "Ubah Item",
- "edit_sale" => "Ubah Penjualan",
- "email_receipt" => "email Faktur",
- "employee" => "Karyawan",
- "entry" => "Entri",
- "error_editing_item" => "mengubah item salah",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Cari/Scan Item",
- "find_or_scan_item_or_receipt" => "Temukan atau pindai Item atau Faktur",
- "giftcard" => "Kartu Hadiah",
- "giftcard_balance" => "Nilai Kupon Bonus",
- "giftcard_filter" => "",
- "giftcard_number" => "Nomor Kartu Hadiah",
- "group_by_category" => "Dikelompokkan berdasarkan Kategori",
- "group_by_type" => "Dikelompokkan berdasarkan Jenis",
- "hsn" => "HSN",
- "id" => "ID Penjualan",
- "include_prices" => "Termasuk Harga?",
- "invoice" => "Faktur",
- "invoice_confirm" => "Faktur ini akan dikirim ke",
- "invoice_enable" => "Nomor Faktur",
- "invoice_filter" => "Faktur",
- "invoice_no_email" => "Pelanggan ini tidak memiliki alamat email yang valid.",
- "invoice_number" => "Nomor Nota",
- "invoice_number_duplicate" => "Nomor nota harus unik.",
- "invoice_sent" => "Faktur dikirim kepada",
- "invoice_total" => "Total faktur",
- "invoice_type_custom_invoice" => "Faktur kustom (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Faktur pajak kustom (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Faktur (invoice.php)",
- "invoice_type_tax_invoice" => "Faktur pajak (tax_invoice.php)",
- "invoice_unsent" => "Faktur gagal dikirim kepada",
- "invoice_update" => "Menghitung ulang",
- "item_insufficient_of_stock" => "Stok Item tidak mencukupi.",
- "item_name" => "Nama Barang",
- "item_number" => "Barang #",
- "item_out_of_stock" => "Barang habis.",
- "key_browser" => "Pintasan bermanfaat",
- "key_cancel" => "Membatalkan Penawaran/Faktur/Penjualan saat ini",
- "key_customer_search" => "Pencarian Pelanggan",
- "key_finish_quote" => "Selesaikan Struk/Faktur tanpa pembayaran",
- "key_finish_sale" => "Tambahkan Pembayaran dan Lengkapi Faktur/Penjualan",
- "key_full" => "Buka dalam Mode Layar Penuh",
- "key_function" => "Fungsi",
- "key_help" => "Pintasan",
- "key_help_modal" => "Buka Jendela Pintasan",
- "key_in" => "Perbesar",
- "key_item_search" => "Pencarian Barang",
- "key_out" => "Perkecil",
- "key_payment" => "Tambahkan Pembayaran",
- "key_print" => "Cetak Halaman sekarang",
- "key_restore" => "Reset tampilan zum",
- "key_search" => "Cari Tabel Laporan",
- "key_suspend" => "Tangguhkan Penjualan saat ini",
- "key_suspended" => "Tampilkan Penjualan yang Ditangguhkan",
- "key_system" => "Pemintas Sistem",
- "key_tendered" => "Edit jumlah yang dibayarkan",
- "key_title" => "Pintasan Papan Ketik Penjualan",
- "mc" => "",
- "mode" => "Jenis Transaksi",
- "must_enter_numeric" => "Nilai yang dimasukkan harus berupa angka.",
- "must_enter_numeric_giftcard" => "Nomor Gift Card harus berupa angka.",
- "new_customer" => "Pelanggan Baru",
- "new_item" => "Barang Baru",
- "no_description" => "Tidak ada deskripsi",
- "no_filter" => "Semua",
- "no_items_in_cart" => "Tidak ada Barang dalam Keranjang Belanja.",
- "no_sales_to_display" => "Tidak ada penjualan yang ditampilkan.",
- "none_selected" => "Anda belum memilih Penjualan untuk dihapus.",
- "nontaxed_ind" => " . ",
- "not_authorized" => "Aksi ini tidak resmi.",
- "one_or_multiple" => "Penjualan",
- "payment" => "Jenis Pembayaran",
- "payment_amount" => "Jumlah",
- "payment_not_cover_total" => "Jumlah pembayaran harus lebih besar atau sama dengan Total.",
- "payment_type" => "Jenis",
- "payments" => "",
- "payments_total" => "Total Pembayaran",
- "price" => "Harga",
- "print_after_sale" => "Cetak Faktur setelah penjualan",
- "quantity" => "Jumlah",
- "quantity_less_than_reorder_level" => "Peringatan: Stok Inventori barang ini dibawah level order ulang.",
- "quantity_less_than_zero" => "Peringatan: Stok Inventori tidak cukup. Proses penjualan masih dapat dilanjutkan, tapi periksa Inventori.",
- "quantity_of_items" => "Jumlah dari {0} item",
- "quote" => "Penawaran",
- "quote_number" => "No. Penawaran",
- "quote_number_duplicate" => "No. Penawaran tidak boleh sama.",
- "quote_sent" => "Penawaran dikirim ke",
- "quote_unsent" => "Penawaran gagal dikirim ke",
- "receipt" => "Faktur Penjualan",
- "receipt_no_email" => "Pembeli ini tidak memiliki surel yang valid.",
- "receipt_number" => "POS #",
- "receipt_sent" => "Nota dikirim ke",
- "receipt_unsent" => "Noto gagal dikirim kepada",
- "refund" => "Tipe Pengembalian Dana",
- "register" => "Transaksi Penjualan",
- "remove_customer" => "Hapus Pelanggan",
- "remove_discount" => "",
- "return" => "Retur",
- "rewards" => "Poin Penghargaan",
- "rewards_balance" => "Jumlah Poin Penghargaan",
- "sale" => "Penjualan",
- "sale_by_invoice" => "Penjualan berdasarkan Faktur",
- "sale_for_customer" => "Pelanggan:",
- "sale_time" => "Waktu",
- "sales_tax" => "Pajak Penjualan",
- "sales_total" => "",
- "select_customer" => "Pilih Pelanggan",
- "send_invoice" => "Kirim Faktur",
- "send_quote" => "Kirim Penawaran",
- "send_receipt" => "Kirim Nota",
- "send_work_order" => "Kirim Order Kerja",
- "serial" => "Seri",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Tampilkan Faktur",
- "show_receipt" => "Tampilkan Nota",
- "start_typing_customer_name" => "Ketik Nama Pelanggan...",
- "start_typing_item_name" => "Ketik Nama Barang atau Scan Barcode...",
- "stock" => "Stok",
- "stock_location" => "Lokasi Stock",
- "sub_total" => "Sub-total",
- "successfully_deleted" => "Transaksi Penjualan berhasil dihapus",
- "successfully_restored" => "Berhasil dikembalikan",
- "successfully_suspended_sale" => "Penjualan berhasil ditangguhkan.",
- "successfully_updated" => "Penjualan berhasil diperbarui.",
- "suspend_sale" => "Tangguhkan",
- "suspended_doc_id" => "Dokumen",
- "suspended_sale_id" => "ID Penjualan ditangguhkan",
- "suspended_sales" => "Penangguhan",
- "table" => "Meja",
- "takings" => "Daftar Penjualan",
- "tax" => "Pajak",
- "tax_id" => "ID Pajak",
- "tax_invoice" => "Faktur Pajak",
- "tax_percent" => "Pajak %",
- "taxed_ind" => "P",
- "total" => "Total",
- "total_tax_exclusive" => "Tidak termasuk pajak",
- "transaction_failed" => "Transaksi Penjualan gagal.",
- "unable_to_add_item" => "Tidak dapat menambahkan item pada penjualan",
- "unsuccessfully_deleted" => "Transaksi Penjualan gagal dihapus.",
- "unsuccessfully_restored" => "Transaksi Penjualan gagal dikembalikan.",
- "unsuccessfully_suspended_sale" => "Transaksi penjualan gagal ditangguhkan.",
- "unsuccessfully_updated" => "Transaksi Penjualan gagal diperbaharui.",
- "unsuspend" => "Tidak Ditangguhkan",
- "unsuspend_and_delete" => "Batalkan dan hapus penangguhan",
- "update" => "Ubah",
- "upi" => "UPI",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "Perintah Kerja",
- "work_order_number" => "Nomor Perintah Kerja",
- "work_order_number_duplicate" => "Nomor Perintah Kerja tidak boleh sama.",
- "work_order_sent" => "Perintah Kerja dikirim ke",
- "work_order_unsent" => "Perintah Kerja gagal dikirim ke",
- "selected_customer" => "Pelanggan Terpilih",
+ 'account_number' => 'Akun #',
+ 'add_payment' => 'Terima',
+ 'amount_due' => 'Uang Kembalian',
+ 'amount_tendered' => 'Nilai Pembayaran',
+ 'authorized_signature' => 'Tanda tangan',
+ 'cancel_sale' => 'Batal Jual',
+ 'cash' => 'Tunai',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'Penyesuaian Kas',
+ 'cash_deposit' => 'Deposit Tunai',
+ 'cash_filter' => 'Tunai',
+ 'change_due' => 'Kembalian Uang',
+ 'change_price' => 'Ubah Harga Jual',
+ 'check' => 'Cek',
+ 'check_balance' => 'Aktifkan pengingat',
+ 'check_filter' => 'Cek',
+ 'close' => '',
+ 'comment' => 'Catatan',
+ 'comments' => 'Keterangan',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Selesai',
+ 'confirm_cancel_sale' => 'Apakah anda yakin ingin mengosongkan transaksi penjualan ini? Semua item akan dihapus.',
+ 'confirm_delete' => 'Apakah anda yakin akan menghapus penjualan terpilih?',
+ 'confirm_restore' => 'Apakah anda yakin akan mengembalikan penjualan terpilih?',
+ 'credit' => 'Kartu Kredit',
+ 'credit_deposit' => 'Deposit Kredit',
+ 'credit_filter' => 'Kartu Kredit',
+ 'current_table' => '',
+ 'customer' => 'Pelanggan',
+ 'customer_address' => 'Alamat',
+ 'customer_discount' => 'Diskon',
+ 'customer_email' => 'Email',
+ 'customer_location' => 'Lokasi',
+ 'customer_mailchimp_status' => 'Status MailChimp',
+ 'customer_optional' => '(Diperlukan untuk Pembayaran Jatuh Tempo)',
+ 'customer_required' => '(Dibutuhkan)',
+ 'customer_total' => 'Total',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Poin tersedia',
+ 'daily_sales' => '',
+ 'date' => 'Tanggal Penjualan',
+ 'date_range' => 'Rentang Tanggal',
+ 'date_required' => 'Masukkan tanggal yang benar.',
+ 'date_type' => 'Tanggal tidak boleh kosong.',
+ 'debit' => 'Kartu Debit',
+ 'debit_filter' => '',
+ 'delete' => 'Boleh dihapus',
+ 'delete_confirmation' => 'Apakah anda yakin ingin menghapus transaksi penjualan ini, Pilihan ini tidak dapat dibatalkan.',
+ 'delete_entire_sale' => 'Hapus Transaksi Penjualan',
+ 'delete_successful' => 'Transaksi Penjualan berhasil dihapus.',
+ 'delete_unsuccessful' => 'Transaksi Penjualan gagal dihapus.',
+ 'description_abbrv' => 'Deskripsi.',
+ 'discard' => 'Buang',
+ 'discard_quote' => '',
+ 'discount' => 'Diskon',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Diskon',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'Jatuh tempo',
+ 'due_filter' => 'Jatuh tempo',
+ 'edit' => 'Ubah',
+ 'edit_item' => 'Ubah Item',
+ 'edit_sale' => 'Ubah Penjualan',
+ 'email_receipt' => 'email Faktur',
+ 'employee' => 'Karyawan',
+ 'entry' => 'Entri',
+ 'error_editing_item' => 'mengubah item salah',
+ 'find_or_scan_item' => 'Cari/Scan Item',
+ 'find_or_scan_item_or_receipt' => 'Temukan atau pindai Item atau Faktur',
+ 'giftcard' => 'Kartu Hadiah',
+ 'giftcard_balance' => 'Nilai Kupon Bonus',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Nomor Kartu Hadiah',
+ 'group_by_category' => 'Dikelompokkan berdasarkan Kategori',
+ 'group_by_type' => 'Dikelompokkan berdasarkan Jenis',
+ 'hsn' => 'HSN',
+ 'id' => 'ID Penjualan',
+ 'include_prices' => 'Termasuk Harga?',
+ 'invoice' => 'Faktur',
+ 'invoice_confirm' => 'Faktur ini akan dikirim ke',
+ 'invoice_enable' => 'Nomor Faktur',
+ 'invoice_filter' => 'Faktur',
+ 'invoice_no_email' => 'Pelanggan ini tidak memiliki alamat email yang valid.',
+ 'invoice_number' => 'Nomor Nota',
+ 'invoice_number_duplicate' => 'Nomor nota harus unik.',
+ 'invoice_sent' => 'Faktur dikirim kepada',
+ 'invoice_total' => 'Total faktur',
+ 'invoice_type_custom_invoice' => 'Faktur kustom (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Faktur pajak kustom (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Faktur (invoice.php)',
+ 'invoice_type_tax_invoice' => 'Faktur pajak (tax_invoice.php)',
+ 'invoice_unsent' => 'Faktur gagal dikirim kepada',
+ 'invoice_update' => 'Menghitung ulang',
+ 'item_insufficient_of_stock' => 'Stok Item tidak mencukupi.',
+ 'item_name' => 'Nama Barang',
+ 'item_number' => 'Barang #',
+ 'item_out_of_stock' => 'Barang habis.',
+ 'key_browser' => 'Pintasan bermanfaat',
+ 'key_cancel' => 'Membatalkan Penawaran/Faktur/Penjualan saat ini',
+ 'key_customer_search' => 'Pencarian Pelanggan',
+ 'key_finish_quote' => 'Selesaikan Struk/Faktur tanpa pembayaran',
+ 'key_finish_sale' => 'Tambahkan Pembayaran dan Lengkapi Faktur/Penjualan',
+ 'key_full' => 'Buka dalam Mode Layar Penuh',
+ 'key_function' => 'Fungsi',
+ 'key_help' => 'Pintasan',
+ 'key_help_modal' => 'Buka Jendela Pintasan',
+ 'key_in' => 'Perbesar',
+ 'key_item_search' => 'Pencarian Barang',
+ 'key_out' => 'Perkecil',
+ 'key_payment' => 'Tambahkan Pembayaran',
+ 'key_print' => 'Cetak Halaman sekarang',
+ 'key_restore' => 'Reset tampilan zum',
+ 'key_search' => 'Cari Tabel Laporan',
+ 'key_suspend' => 'Tangguhkan Penjualan saat ini',
+ 'key_suspended' => 'Tampilkan Penjualan yang Ditangguhkan',
+ 'key_system' => 'Pemintas Sistem',
+ 'key_tendered' => 'Edit jumlah yang dibayarkan',
+ 'key_title' => 'Pintasan Papan Ketik Penjualan',
+ 'mc' => '',
+ 'mode' => 'Jenis Transaksi',
+ 'must_enter_numeric' => 'Nilai yang dimasukkan harus berupa angka.',
+ 'must_enter_numeric_giftcard' => 'Nomor Gift Card harus berupa angka.',
+ 'must_enter_reference_code' => 'Nomor referensi/pengambilan harus dimasukkan.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Pelanggan Baru',
+ 'new_item' => 'Barang Baru',
+ 'no_description' => 'Tidak ada deskripsi',
+ 'no_filter' => 'Semua',
+ 'no_items_in_cart' => 'Tidak ada Barang dalam Keranjang Belanja.',
+ 'no_sales_to_display' => 'Tidak ada penjualan yang ditampilkan.',
+ 'none_selected' => 'Anda belum memilih Penjualan untuk dihapus.',
+ 'nontaxed_ind' => ' . ',
+ 'not_authorized' => 'Aksi ini tidak resmi.',
+ 'one_or_multiple' => 'Penjualan',
+ 'payment' => 'Jenis Pembayaran',
+ 'payment_amount' => 'Jumlah',
+ 'payment_not_cover_total' => 'Jumlah pembayaran harus lebih besar atau sama dengan Total.',
+ 'payment_type' => 'Jenis',
+ 'payments' => '',
+ 'payments_total' => 'Total Pembayaran',
+ 'price' => 'Harga',
+ 'print_after_sale' => 'Cetak Faktur setelah penjualan',
+ 'quantity' => 'Jumlah',
+ 'quantity_less_than_reorder_level' => 'Peringatan: Stok Inventori barang ini dibawah level order ulang.',
+ 'quantity_less_than_zero' => 'Peringatan: Stok Inventori tidak cukup. Proses penjualan masih dapat dilanjutkan, tapi periksa Inventori.',
+ 'quantity_of_items' => 'Jumlah dari {0} item',
+ 'quote' => 'Penawaran',
+ 'quote_number' => 'No. Penawaran',
+ 'quote_number_duplicate' => 'No. Penawaran tidak boleh sama.',
+ 'quote_sent' => 'Penawaran dikirim ke',
+ 'quote_unsent' => 'Penawaran gagal dikirim ke',
+ 'receipt' => 'Faktur Penjualan',
+ 'receipt_no_email' => 'Pembeli ini tidak memiliki surel yang valid.',
+ 'receipt_number' => 'POS #',
+ 'receipt_sent' => 'Nota dikirim ke',
+ 'receipt_unsent' => 'Noto gagal dikirim kepada',
+ 'reference_code' => 'Kode Referensi Pembayaran',
+ 'reference_code_invalid_characters' => 'Kode referensi hanya boleh mengandung huruf dan angka.',
+ 'reference_code_length_error' => 'Panjang kode referensi tidak valid.',
+ 'refund' => 'Tipe Pengembalian Dana',
+ 'register' => 'Transaksi Penjualan',
+ 'remove_customer' => 'Hapus Pelanggan',
+ 'remove_discount' => '',
+ 'return' => 'Retur',
+ 'rewards' => 'Poin Penghargaan',
+ 'rewards_balance' => 'Jumlah Poin Penghargaan',
+ 'rewards_package' => 'Hadiah',
+ 'rewards_remaining_balance' => 'Poin hadiah yang tersisa adalah ',
+ 'sale' => 'Penjualan',
+ 'sale_by_invoice' => 'Penjualan berdasarkan Faktur',
+ 'sale_for_customer' => 'Pelanggan:',
+ 'sale_time' => 'Waktu',
+ 'sales_tax' => 'Pajak Penjualan',
+ 'sales_total' => '',
+ 'select_customer' => 'Pilih Pelanggan',
+ 'selected_customer' => 'Pelanggan Terpilih',
+ 'send_invoice' => 'Kirim Faktur',
+ 'send_quote' => 'Kirim Penawaran',
+ 'send_receipt' => 'Kirim Nota',
+ 'send_work_order' => 'Kirim Order Kerja',
+ 'serial' => 'Seri',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Tampilkan Faktur',
+ 'show_receipt' => 'Tampilkan Nota',
+ 'start_typing_customer_name' => 'Ketik Nama Pelanggan...',
+ 'start_typing_item_name' => 'Ketik Nama Barang atau Scan Barcode...',
+ 'stock' => 'Stok',
+ 'stock_location' => 'Lokasi Stock',
+ 'sub_total' => 'Sub-total',
+ 'successfully_deleted' => 'Transaksi Penjualan berhasil dihapus',
+ 'successfully_restored' => 'Berhasil dikembalikan',
+ 'successfully_suspended_sale' => 'Penjualan berhasil ditangguhkan.',
+ 'successfully_updated' => 'Penjualan berhasil diperbarui.',
+ 'suspend_sale' => 'Tangguhkan',
+ 'suspended_doc_id' => 'Dokumen',
+ 'suspended_sale_id' => 'ID Penjualan ditangguhkan',
+ 'suspended_sales' => 'Penangguhan',
+ 'table' => 'Meja',
+ 'takings' => 'Daftar Penjualan',
+ 'tax' => 'Pajak',
+ 'tax_id' => 'ID Pajak',
+ 'tax_invoice' => 'Faktur Pajak',
+ 'tax_percent' => 'Pajak %',
+ 'taxed_ind' => 'P',
+ 'total' => 'Total',
+ 'total_tax_exclusive' => 'Tidak termasuk pajak',
+ 'transaction_failed' => 'Transaksi Penjualan gagal.',
+ 'unable_to_add_item' => 'Tidak dapat menambahkan item pada penjualan',
+ 'unsuccessfully_deleted' => 'Transaksi Penjualan gagal dihapus.',
+ 'unsuccessfully_restored' => 'Transaksi Penjualan gagal dikembalikan.',
+ 'unsuccessfully_suspended_sale' => 'Transaksi penjualan gagal ditangguhkan.',
+ 'unsuccessfully_updated' => 'Transaksi Penjualan gagal diperbaharui.',
+ 'unsuspend' => 'Tidak Ditangguhkan',
+ 'unsuspend_and_delete' => 'Batalkan dan hapus penangguhan',
+ 'update' => 'Ubah',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'Perintah Kerja',
+ 'work_order_number' => 'Nomor Perintah Kerja',
+ 'work_order_number_duplicate' => 'Nomor Perintah Kerja tidak boleh sama.',
+ 'work_order_sent' => 'Perintah Kerja dikirim ke',
+ 'work_order_unsent' => 'Perintah Kerja gagal dikirim ke',
];
diff --git a/app/Language/it/Config.php b/app/Language/it/Config.php
index 488932136..68ef1dc4b 100644
--- a/app/Language/it/Config.php
+++ b/app/Language/it/Config.php
@@ -1,332 +1,335 @@
"Indirizzo Azienda",
- "address_required" => "Il campo Indirizzo Azienda è obbligatorio.",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "Permetti Codice a Barre duplicati",
- "apostrophe" => "apostrofo",
- "backup_button" => "Backup",
- "backup_database" => "Backup del Database",
- "barcode" => "Codici a Barre",
- "barcode_company" => "Nome Azienda",
- "barcode_configuration" => "Configurazione Codici a Barre",
- "barcode_content" => "Contenuto Codice a Barre",
- "barcode_first_row" => "Riga 1",
- "barcode_font" => "Font",
- "barcode_formats" => "Formati d'input",
- "barcode_generate_if_empty" => "Genera se vuoto.",
- "barcode_height" => "Altezza (px)",
- "barcode_id" => "Id/Nome Elemento",
- "barcode_info" => "Informazioni Configurazione Codice a Barre",
- "barcode_layout" => "Layout Codice a Barre",
- "barcode_name" => "Nome",
- "barcode_number" => "Codice a Barre",
- "barcode_number_in_row" => "Numero nella riga",
- "barcode_page_cellspacing" => "Mostra spaziatura celle.",
- "barcode_page_width" => "Mostra larghezza pagina",
- "barcode_price" => "Prezzo",
- "barcode_second_row" => "Riga 2",
- "barcode_third_row" => "Riga 3",
- "barcode_tooltip" => "Attenzione: Questa funzionalità può causare la duplicazione dei prodotti da essere importati o creati. Non usarla se non vuoi codici a barre duplicati.",
- "barcode_type" => "Tipo Codice a Barre",
- "barcode_width" => "Larghezza (px)",
- "bottom" => "Parte inferiore",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Decimali Contanti",
- "cash_decimals_tooltip" => "Se Decimali Contanti e Decimali Valuta sono le stesse non verrà effettuato un arrotondamento.",
- "cash_rounding" => "Arrotondamento Contanti",
- "category_dropdown" => "Mostra categoria come menu a discesa",
- "center" => "Centro",
- "change_apperance_tooltip" => "",
- "comma" => "virgola",
- "company" => "Nome Azienda",
- "company_avatar" => "",
- "company_change_image" => "Cambia Immagine",
- "company_logo" => "Logo Azienda",
- "company_remove_image" => "Rimuovi Immagine",
- "company_required" => "Il campo Nome Compagnia è obbligatorio",
- "company_select_image" => "Seleziona Immagine",
- "company_website_url" => "Il sito dell'azienda non è un URL valido (http://...).",
- "country_codes" => "Codice Postale",
- "country_codes_tooltip" => "La lista di Codici Postali separate da virgole sono usate per la ricerca per indirizzo.",
- "currency_code" => "Codice valuta",
- "currency_decimals" => "Decimali Valuta",
- "currency_symbol" => "Simbolo Valuta",
- "current_employee_only" => "",
- "customer_reward" => "Raccolta Punti",
- "customer_reward_duplicate" => "Punti Fedeltà deve essere unica.",
- "customer_reward_enable" => "Abilita la Raccolta Punti per i Clienti",
- "customer_reward_invalid_chars" => "I punti fedeltà non possono contenere '_'",
- "customer_reward_required" => "I Punti Fedeltà sono un campo obbligatorio",
- "customer_sales_tax_support" => "Supporto Fiscale di vendita ai Clienti (Sales Tax Support)",
- "date_or_time_format" => "Filtro Data e Ora",
- "datetimeformat" => "Formato Data e Ora",
- "decimal_point" => "Punti Decimali",
- "default_barcode_font_size_number" => "La grandezza del Font del Codice a Barre di default deve essere un numero.",
- "default_barcode_font_size_required" => "Il campo Grandezza del font del Codice a Barre di Default è obbligatorio.",
- "default_barcode_height_number" => "Altezza di Default del Codice a Barre deve essere un numero.",
- "default_barcode_height_required" => "Il campo Altezza Codice a Barre di Default è obbligatorio.",
- "default_barcode_num_in_row_number" => "Il numero di Codice a Barre di Default nella Riga deve essere un numero.",
- "default_barcode_num_in_row_required" => "Numero Codice a Barre di Default nella Riga è un campo obbligatorio.",
- "default_barcode_page_cellspacing_number" => "Spaziatura Codice a Barre di Default deve essere un numero.",
- "default_barcode_page_cellspacing_required" => "Spaziatura Codice a Barre di Default è un campo obbligatorio.",
- "default_barcode_page_width_number" => "Larghezza Codice a Barre di Default deve essere un numero.",
- "default_barcode_page_width_required" => "Larghezza Codice a Barre di Default è un campo obbligatorio.",
- "default_barcode_width_number" => "Larghezza Codice a Barre di Default deve essere un numero.",
- "default_barcode_width_required" => "Larghezza Codice a Barre di Default è un campo obbligatorio.",
- "default_item_columns" => "Colonne degli elementi visibili di default",
- "default_origin_tax_code" => "Codice Imposta di Origine Default",
- "default_receivings_discount" => "Sconto sugli incassi predefiniti",
- "default_receivings_discount_number" => "Lo sconto sugli incassi predefinito deve essere un numero.",
- "default_receivings_discount_required" => "Lo sconto di ricezione predefinito è un campo obbligatorio.",
- "default_sales_discount" => "Sconto Vendita Default %",
- "default_sales_discount_number" => "Sconto Vendita Default deve essere un numero.",
- "default_sales_discount_required" => "Sconto Vendita Default è un campo obbligatorio.",
- "default_tax_category" => "Categoria di imposta predefinita",
- "default_tax_code" => "Codice Fiscale predefinito",
- "default_tax_jurisdiction" => "Giurisdizione fiscale predefinita",
- "default_tax_name_number" => "Nome Tassazione Default deve essere una stringa.",
- "default_tax_name_required" => "Nome Tassazione Default è un campo richiesto.",
- "default_tax_rate" => "Percent. Imposta Default %",
- "default_tax_rate_1" => "Perc. Imposta 1",
- "default_tax_rate_2" => "Perc. Imposta 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Percent. Imposta Default deve essere un numero.",
- "default_tax_rate_required" => "Percent. Imposta Default è un campo obbligatorio.",
- "derive_sale_quantity" => "Permetti Quantità Derivata dalle Vendite",
- "derive_sale_quantity_tooltip" => "Se abilitato, un nuovo tipo di elemento sarà dato per quegli elementi che supereranno la quantità",
- "dinner_table" => "Tavolo",
- "dinner_table_duplicate" => "Il Tavolo deve essere univoco.",
- "dinner_table_enable" => "Abilita Tavoli da Cena",
- "dinner_table_invalid_chars" => "Nome Tavolo non può contenere '_'.",
- "dinner_table_required" => "Tavolo è un campo obbligatorio.",
- "dot" => "punto",
- "email" => "Email",
- "email_configuration" => "Configurazione Email",
- "email_mailpath" => "Percorso per Sendmail",
- "email_protocol" => "Protocol",
- "email_receipt_check_behaviour" => "Checkbox email ricevuta",
- "email_receipt_check_behaviour_always" => "Sempre selezionato",
- "email_receipt_check_behaviour_last" => "Ricorda l'ultima selezione",
- "email_receipt_check_behaviour_never" => "Sempre non selezionato",
- "email_smtp_crypto" => "SMTP Encryption",
- "email_smtp_host" => "SMTP Server",
- "email_smtp_pass" => "SMTP Password",
- "email_smtp_port" => "SMTP Porta",
- "email_smtp_timeout" => "SMTP Timeout (s)",
- "email_smtp_user" => "SMTP Username",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Rispetta privacy",
- "enforce_privacy_tooltip" => "Rispetta la privacy dei tuoi clienti annullando i loro dati se cancellati",
- "fax" => "Fax",
- "file_perm" => "There are problems with file permissions please fix and reload this page.",
- "financial_year" => "Data Inizio Anno Fiscale",
- "financial_year_apr" => "1mo di Aprile",
- "financial_year_aug" => "1mo di Agosto",
- "financial_year_dec" => "1mo di Dicembre",
- "financial_year_feb" => "1mo di Febbraio",
- "financial_year_jan" => "1mo di Gennaio",
- "financial_year_jul" => "1mo di Luglio",
- "financial_year_jun" => "1mo di Giugno",
- "financial_year_mar" => "1mo di Marzo",
- "financial_year_may" => "1mo di Maggio",
- "financial_year_nov" => "1mo di Novembre",
- "financial_year_oct" => "1mo di Ottobre",
- "financial_year_sep" => "1mo di Settembre",
- "floating_labels" => "Etichette mobili",
- "gcaptcha_enable" => "Login Page reCAPTCHA",
- "gcaptcha_secret_key" => "reCAPTCHA Secret Key",
- "gcaptcha_secret_key_required" => "reCAPTCHA Secret Key è un campo obbligatorio",
- "gcaptcha_site_key" => "reCAPTCHA Site Key",
- "gcaptcha_site_key_required" => "reCAPTCHA Site Key è un campo obbligatorio",
- "gcaptcha_tooltip" => "Per proteggere la Login page con Google reCAPTCHA, clicca sull'icona per una key pair per l'API.",
- "general" => "Generali",
- "general_configuration" => "Configurazione Generale",
- "giftcard_number" => "Numero Carta Regalo",
- "giftcard_random" => "Genera Casualmente",
- "giftcard_series" => "Genera in Serie",
- "image_allowed_file_types" => "Tipi di file consentiti",
- "image_max_height_tooltip" => "Altezza massima consentita per i caricamenti di immagini in pixel (px).",
- "image_max_size_tooltip" => "Dimensione file massima consentita per il caricamento di immagini in kilobyte (kb).",
- "image_max_width_tooltip" => "Larghezza massima consentita per i caricamenti di immagini in pixel (px).",
- "image_restrictions" => "Restrizioni al caricamento delle immagini",
- "include_hsn" => "Includere il supporto per i codici HSN",
- "info" => "Informazioni",
- "info_configuration" => "Informazioni Negozio",
- "input_groups" => "Gruppi di Ingresso",
- "integrations" => "Integrazioni",
- "integrations_configuration" => "Integrazioni di terze parti",
- "invoice" => "Fattura",
- "invoice_configuration" => "Impostazioni di Stampa Fattura",
- "invoice_default_comments" => "Commenti Fattura di Default",
- "invoice_email_message" => "Template Email di Fattura",
- "invoice_enable" => "Abilita Fatturazione",
- "invoice_printer" => "Stampante per Fattura",
- "invoice_type" => "Tipo fattura",
- "is_readable" => "è leggibile, ma le autorizzazioni sono impostate in modo errato. Impostalo su 640 o 660 e aggiorna.",
- "is_writable" => "è scrivibile, ma i permessi sono impostati in modo errato. Si prega di impostarlo su 750 e aggiornare.",
- "item_markup" => "",
- "jsprintsetup_required" => "Attenzione: Questa funzionalità funzionerà solo se è installato l'addon di FifeFox jsPrintSetup. Salvare ugualmente ?",
- "language" => "Lingua",
- "last_used_invoice_number" => "Ultimo Numero Fattura usato",
- "last_used_quote_number" => "Ultimo Numero Preventivo usato",
- "last_used_work_order_number" => "Ultimo Numero Ordine di Lavoro/Commessa usato",
- "left" => "Sinistra",
- "license" => "Licenza",
- "license_configuration" => "Contenuti della Licenza",
- "line_sequence" => "Sequenza Linea",
- "lines_per_page" => "Linee per Pagina",
- "lines_per_page_number" => "Le linee per Pagina devono essere un numero.",
- "lines_per_page_required" => "Linee per Pagina è un campo obbligatorio.",
- "locale" => "Localizzazione",
- "locale_configuration" => "Configurazione Localizzazione",
- "locale_info" => "Informazioni di Configurazione Localizzazione",
- "location" => "Magazzino",
- "location_configuration" => "Locazione Magazzino",
- "location_info" => "Informazioni di Configurazione Posizione",
- "login_form" => "Stile modulo di accesso",
- "logout" => "Vuoi fare il backup prima di effettuare il logout? Premere [OK] per eseguirlo o [Cancella] per il logout.",
- "mailchimp" => "Mailchimp",
- "mailchimp_api_key" => "Mailchimp API Key",
- "mailchimp_configuration" => "Configurazione Mailchimp",
- "mailchimp_key_successfully" => "API Key valida.",
- "mailchimp_key_unsuccessfully" => "API Key non valida.",
- "mailchimp_lists" => "Lista/e Mailchimp",
- "mailchimp_tooltip" => "Click the icon for an API Key.",
- "message" => "SMS",
- "message_configuration" => "Configurazione SMS",
- "msg_msg" => "Testo Messaggio Salvato",
- "msg_msg_placeholder" => "Se vuoi utilizzare un template SMS, salva il tuo messaggio qui o lascia il campo in bianco.",
- "msg_pwd" => "SMS-API Password",
- "msg_pwd_required" => "SMS-API Password è un campo obbligatorio",
- "msg_src" => "SMS-API Sender ID",
- "msg_src_required" => "SMS-API Sender ID è un campo obbligatorio",
- "msg_uid" => "SMS-API Username",
- "msg_uid_required" => "SMS-API Username è un campo obbligatorio",
- "multi_pack_enabled" => "Pacchetti multipli per articolo",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "nessuno",
- "notify_alignment" => "Posizione Popup di Notifica",
- "number_format" => "Formato Numero",
- "number_locale" => "Localizzazione",
- "number_locale_invalid" => "La località inserita non è valida. Controlla il link nel tooltip per cercare una località valida.",
- "number_locale_required" => "Numero Località è un campo obbligatorio.",
- "number_locale_tooltip" => "Cerca una Località adatta con questo link.",
- "os_timezone" => "OSPOS fuso orario:",
- "ospos_info" => "Informazioni sull'installazione di OSPOS",
- "payment_options_order" => "Opzioni di Pagamento Ordine",
- "perm_risk" => "Le autorizzazioni errate lasciano questo software a rischio.",
- "phone" => "Telefono Azienda",
- "phone_required" => "Telefono Aziena è un campo obbligatorio.",
- "print_bottom_margin" => "Margine Inferiore",
- "print_bottom_margin_number" => "Margine Inferiore deve essere un numero.",
- "print_bottom_margin_required" => "Margine Inferiore è un campo richiesto.",
- "print_delay_autoreturn" => "Ritardo ritorno a Vendite",
- "print_delay_autoreturn_number" => "Ritardo è un campo obbligatorio.",
- "print_delay_autoreturn_required" => "Ritardo deve essere un numero.",
- "print_footer" => "Stampa Footer del Browser",
- "print_header" => "Stampa Intestazione del Browser",
- "print_left_margin" => "Margine sinistro",
- "print_left_margin_number" => "Margine sinistro deve essere un numero.",
- "print_left_margin_required" => "Margine Sinistro è un campo obbligatorio.",
- "print_receipt_check_behaviour" => "Checkbox stampa scontrino",
- "print_receipt_check_behaviour_always" => "Sempre selezionato",
- "print_receipt_check_behaviour_last" => "Ricorda l'ultima selezione",
- "print_receipt_check_behaviour_never" => "Sempre non selezionato",
- "print_right_margin" => "Margine Destro",
- "print_right_margin_number" => "Margine Destro deve essere un numero.",
- "print_right_margin_required" => "Margine Destro è un campo obbligatorio.",
- "print_silently" => "Mostra Finestra di Stampa",
- "print_top_margin" => "Margine Superiore",
- "print_top_margin_number" => "Margine Superiore deve essere un numero.",
- "print_top_margin_required" => "Margine Superiore è un campo obbligatorio.",
- "quantity_decimals" => "Decimali Quantità",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Commento di default Stime",
- "receipt" => "Scontrino",
- "receipt_category" => "",
- "receipt_configuration" => "Impostazioni di stampa Scontrino",
- "receipt_default" => "Default",
- "receipt_font_size" => "Grandezza Font",
- "receipt_font_size_number" => "Grandezza Font deve essere un numero.",
- "receipt_font_size_required" => "Grandezza Font è un campo obbligatorio.",
- "receipt_info" => "Informazioni di Configurazione Scontrino",
- "receipt_printer" => "Stampante Ticket",
- "receipt_short" => "Corto",
- "receipt_show_company_name" => "Mostra Nome Compagnia",
- "receipt_show_description" => "Mostra Descrizione",
- "receipt_show_serialnumber" => "Mostra Numero Seriale",
- "receipt_show_tax_ind" => "Mostra indicatore fiscale",
- "receipt_show_taxes" => "Mostra Imposte",
- "receipt_show_total_discount" => "Mostra Sconto Totale",
- "receipt_template" => "Template Scontrino",
- "receiving_calculate_average_price" => "Calcola Prezzo medio (Ricezione)",
- "recv_invoice_format" => "Formato Fattura Acquisto",
- "register_mode_default" => "Modalità Registro Automatico/Default",
- "report_an_issue" => "Segnala un problema",
- "return_policy_required" => "Politica di Reso è un campo obbligatorio.",
- "reward" => "Raccolta Punti",
- "reward_configuration" => "Configurazione Raccolta Punti",
- "right" => "Destra",
- "sales_invoice_format" => "Formato Fattura di Vendita",
- "sales_quote_format" => "Formato Preventivo",
- "mailpath_invalid" => "Percorso sendmail non valido. Sono ammessi solo lettere, numeri, trattini, trattini bassi, barre e punti.",
- "saved_successfully" => "Configurazione salvata correttamente.",
- "saved_unsuccessfully" => "Salvataggio Configurazione Fallito.",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "Please use the below info for issue reporting.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Mostra icona ufficio",
- "statistics" => "Invia Statistiche",
- "statistics_tooltip" => "Invia statistiche per lo sviluppo e il miglioramento delle funzionalità proposte.",
- "stock_location" => "Posizione Magazzino",
- "stock_location_duplicate" => "Posizione Magazzino deve essere unico.",
- "stock_location_invalid_chars" => "Posizione Magazzino non può contenere '_'.",
- "stock_location_required" => "Posizione Magazzino è un campo obbligatorio.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Colonna 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Schema di Suggerimenti di ricerca",
- "suggestions_second_column" => "Colonna 2",
- "suggestions_third_column" => "Colonna 3",
- "system_conf" => "Setup & Conf",
- "system_info" => "System Info",
- "table" => "Tavoli (Ristorazione)",
- "table_configuration" => "Configurazione Tavoli",
- "takings_printer" => "Stampa scontrino",
- "tax" => "Imposte",
- "tax_category" => "Categoria Imposta",
- "tax_category_duplicate" => "Categoria tassa esistente.",
- "tax_category_invalid_chars" => "Categoria tassa non valida.",
- "tax_category_required" => "Categoria tassa richiesta.",
- "tax_category_used" => "Categoria Imposta non può essere eliminata perchè è in utilizzo.",
- "tax_configuration" => "Configurazione Imposte",
- "tax_decimals" => "Decimali Imposta",
- "tax_id" => "Codice Fiscale",
- "tax_included" => "Imposte incluse",
- "theme" => "Tema",
- "theme_preview" => "Anteprima tema:",
- "thousands_separator" => "Separatore centinaia",
- "timezone" => "Timezone",
- "timezone_error" => "Il fuso orario OSPOS è diverso dal fuso orario locale.",
- "top" => "Sopra",
- "use_destination_based_tax" => "Usa l'imposta basata sulla destinazione",
- "user_timezone" => "Fuso orario locale:",
- "website" => "Sitoweb",
- "wholesale_markup" => "",
- "work_order_enable" => "Supporto all'ordine (Work Order Support)",
- "work_order_format" => "Formato ordine di lavoro/commessa",
+ 'address' => 'Indirizzo Azienda',
+ 'address_required' => 'Il campo Indirizzo Azienda è obbligatorio.',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => 'Permetti Codice a Barre duplicati',
+ 'apostrophe' => 'apostrofo',
+ 'backup_button' => 'Backup',
+ 'backup_database' => 'Backup del Database',
+ 'barcode' => 'Codici a Barre',
+ 'barcode_company' => 'Nome Azienda',
+ 'barcode_configuration' => 'Configurazione Codici a Barre',
+ 'barcode_content' => 'Contenuto Codice a Barre',
+ 'barcode_first_row' => 'Riga 1',
+ 'barcode_font' => 'Font',
+ 'barcode_formats' => "Formati d'input",
+ 'barcode_generate_if_empty' => 'Genera se vuoto.',
+ 'barcode_height' => 'Altezza (px)',
+ 'barcode_id' => 'Id/Nome Elemento',
+ 'barcode_info' => 'Informazioni Configurazione Codice a Barre',
+ 'barcode_layout' => 'Layout Codice a Barre',
+ 'barcode_name' => 'Nome',
+ 'barcode_number' => 'Codice a Barre',
+ 'barcode_number_in_row' => 'Numero nella riga',
+ 'barcode_page_cellspacing' => 'Mostra spaziatura celle.',
+ 'barcode_page_width' => 'Mostra larghezza pagina',
+ 'barcode_price' => 'Prezzo',
+ 'barcode_second_row' => 'Riga 2',
+ 'barcode_third_row' => 'Riga 3',
+ 'barcode_tooltip' => 'Attenzione: Questa funzionalità può causare la duplicazione dei prodotti da essere importati o creati. Non usarla se non vuoi codici a barre duplicati.',
+ 'barcode_type' => 'Tipo Codice a Barre',
+ 'barcode_width' => 'Larghezza (px)',
+ 'bottom' => 'Parte inferiore',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Decimali Contanti',
+ 'cash_decimals_tooltip' => 'Se Decimali Contanti e Decimali Valuta sono le stesse non verrà effettuato un arrotondamento.',
+ 'cash_rounding' => 'Arrotondamento Contanti',
+ 'category_dropdown' => 'Mostra categoria come menu a discesa',
+ 'center' => 'Centro',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'virgola',
+ 'company' => 'Nome Azienda',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Cambia Immagine',
+ 'company_logo' => 'Logo Azienda',
+ 'company_remove_image' => 'Rimuovi Immagine',
+ 'company_required' => 'Il campo Nome Compagnia è obbligatorio',
+ 'company_select_image' => 'Seleziona Immagine',
+ 'company_website_url' => "Il sito dell'azienda non è un URL valido (http://...).",
+ 'country_codes' => 'Codice Postale',
+ 'country_codes_tooltip' => 'La lista di Codici Postali separate da virgole sono usate per la ricerca per indirizzo.',
+ 'currency_code' => 'Codice valuta',
+ 'currency_decimals' => 'Decimali Valuta',
+ 'currency_symbol' => 'Simbolo Valuta',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Raccolta Punti',
+ 'customer_reward_duplicate' => 'Punti Fedeltà deve essere unica.',
+ 'customer_reward_enable' => 'Abilita la Raccolta Punti per i Clienti',
+ 'customer_reward_invalid_chars' => "I punti fedeltà non possono contenere '_'",
+ 'customer_reward_required' => 'I Punti Fedeltà sono un campo obbligatorio',
+ 'customer_sales_tax_support' => 'Supporto Fiscale di vendita ai Clienti (Sales Tax Support)',
+ 'date_or_time_format' => 'Filtro Data e Ora',
+ 'datetimeformat' => 'Formato Data e Ora',
+ 'decimal_point' => 'Punti Decimali',
+ 'default_barcode_font_size_number' => 'La grandezza del Font del Codice a Barre di default deve essere un numero.',
+ 'default_barcode_font_size_required' => 'Il campo Grandezza del font del Codice a Barre di Default è obbligatorio.',
+ 'default_barcode_height_number' => 'Altezza di Default del Codice a Barre deve essere un numero.',
+ 'default_barcode_height_required' => 'Il campo Altezza Codice a Barre di Default è obbligatorio.',
+ 'default_barcode_num_in_row_number' => 'Il numero di Codice a Barre di Default nella Riga deve essere un numero.',
+ 'default_barcode_num_in_row_required' => 'Numero Codice a Barre di Default nella Riga è un campo obbligatorio.',
+ 'default_barcode_page_cellspacing_number' => 'Spaziatura Codice a Barre di Default deve essere un numero.',
+ 'default_barcode_page_cellspacing_required' => 'Spaziatura Codice a Barre di Default è un campo obbligatorio.',
+ 'default_barcode_page_width_number' => 'Larghezza Codice a Barre di Default deve essere un numero.',
+ 'default_barcode_page_width_required' => 'Larghezza Codice a Barre di Default è un campo obbligatorio.',
+ 'default_barcode_width_number' => 'Larghezza Codice a Barre di Default deve essere un numero.',
+ 'default_barcode_width_required' => 'Larghezza Codice a Barre di Default è un campo obbligatorio.',
+ 'default_item_columns' => 'Colonne degli elementi visibili di default',
+ 'default_origin_tax_code' => 'Codice Imposta di Origine Default',
+ 'default_receivings_discount' => 'Sconto sugli incassi predefiniti',
+ 'default_receivings_discount_number' => 'Lo sconto sugli incassi predefinito deve essere un numero.',
+ 'default_receivings_discount_required' => 'Lo sconto di ricezione predefinito è un campo obbligatorio.',
+ 'default_sales_discount' => 'Sconto Vendita Default %',
+ 'default_sales_discount_number' => 'Sconto Vendita Default deve essere un numero.',
+ 'default_sales_discount_required' => 'Sconto Vendita Default è un campo obbligatorio.',
+ 'default_tax_category' => 'Categoria di imposta predefinita',
+ 'default_tax_code' => 'Codice Fiscale predefinito',
+ 'default_tax_jurisdiction' => 'Giurisdizione fiscale predefinita',
+ 'default_tax_name_number' => 'Nome Tassazione Default deve essere una stringa.',
+ 'default_tax_name_required' => 'Nome Tassazione Default è un campo richiesto.',
+ 'default_tax_rate' => 'Percent. Imposta Default %',
+ 'default_tax_rate_1' => 'Perc. Imposta 1',
+ 'default_tax_rate_2' => 'Perc. Imposta 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Percent. Imposta Default deve essere un numero.',
+ 'default_tax_rate_required' => 'Percent. Imposta Default è un campo obbligatorio.',
+ 'derive_sale_quantity' => 'Permetti Quantità Derivata dalle Vendite',
+ 'derive_sale_quantity_tooltip' => 'Se abilitato, un nuovo tipo di elemento sarà dato per quegli elementi che supereranno la quantità',
+ 'dinner_table' => 'Tavolo',
+ 'dinner_table_duplicate' => 'Il Tavolo deve essere univoco.',
+ 'dinner_table_enable' => 'Abilita Tavoli da Cena',
+ 'dinner_table_invalid_chars' => "Nome Tavolo non può contenere '_'.",
+ 'dinner_table_required' => 'Tavolo è un campo obbligatorio.',
+ 'dot' => 'punto',
+ 'email' => 'Email',
+ 'email_configuration' => 'Configurazione Email',
+ 'email_mailpath' => 'Percorso per Sendmail',
+ 'email_protocol' => 'Protocol',
+ 'email_receipt_check_behaviour' => 'Checkbox email ricevuta',
+ 'email_receipt_check_behaviour_always' => 'Sempre selezionato',
+ 'email_receipt_check_behaviour_last' => "Ricorda l'ultima selezione",
+ 'email_receipt_check_behaviour_never' => 'Sempre non selezionato',
+ 'email_smtp_crypto' => 'SMTP Encryption',
+ 'email_smtp_host' => 'SMTP Server',
+ 'email_smtp_pass' => 'SMTP Password',
+ 'email_smtp_port' => 'SMTP Porta',
+ 'email_smtp_timeout' => 'SMTP Timeout (s)',
+ 'email_smtp_user' => 'SMTP Username',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Rispetta privacy',
+ 'enforce_privacy_tooltip' => 'Rispetta la privacy dei tuoi clienti annullando i loro dati se cancellati',
+ 'fax' => 'Fax',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => 'Data Inizio Anno Fiscale',
+ 'financial_year_apr' => '1mo di Aprile',
+ 'financial_year_aug' => '1mo di Agosto',
+ 'financial_year_dec' => '1mo di Dicembre',
+ 'financial_year_feb' => '1mo di Febbraio',
+ 'financial_year_jan' => '1mo di Gennaio',
+ 'financial_year_jul' => '1mo di Luglio',
+ 'financial_year_jun' => '1mo di Giugno',
+ 'financial_year_mar' => '1mo di Marzo',
+ 'financial_year_may' => '1mo di Maggio',
+ 'financial_year_nov' => '1mo di Novembre',
+ 'financial_year_oct' => '1mo di Ottobre',
+ 'financial_year_sep' => '1mo di Settembre',
+ 'floating_labels' => 'Etichette mobili',
+ 'gcaptcha_enable' => 'Login Page reCAPTCHA',
+ 'gcaptcha_secret_key' => 'reCAPTCHA Secret Key',
+ 'gcaptcha_secret_key_required' => 'reCAPTCHA Secret Key è un campo obbligatorio',
+ 'gcaptcha_site_key' => 'reCAPTCHA Site Key',
+ 'gcaptcha_site_key_required' => 'reCAPTCHA Site Key è un campo obbligatorio',
+ 'gcaptcha_tooltip' => "Per proteggere la Login page con Google reCAPTCHA, clicca sull'icona per una key pair per l'API.",
+ 'general' => 'Generali',
+ 'general_configuration' => 'Configurazione Generale',
+ 'giftcard_number' => 'Numero Carta Regalo',
+ 'giftcard_random' => 'Genera Casualmente',
+ 'giftcard_series' => 'Genera in Serie',
+ 'image_allowed_file_types' => 'Tipi di file consentiti',
+ 'image_max_height_tooltip' => 'Altezza massima consentita per i caricamenti di immagini in pixel (px).',
+ 'image_max_size_tooltip' => 'Dimensione file massima consentita per il caricamento di immagini in kilobyte (kb).',
+ 'image_max_width_tooltip' => 'Larghezza massima consentita per i caricamenti di immagini in pixel (px).',
+ 'image_restrictions' => 'Restrizioni al caricamento delle immagini',
+ 'include_hsn' => 'Includere il supporto per i codici HSN',
+ 'info' => 'Informazioni',
+ 'info_configuration' => 'Informazioni Negozio',
+ 'input_groups' => 'Gruppi di Ingresso',
+ 'integrations' => 'Integrazioni',
+ 'integrations_configuration' => 'Integrazioni di terze parti',
+ 'invoice' => 'Fattura',
+ 'invoice_configuration' => 'Impostazioni di Stampa Fattura',
+ 'invoice_default_comments' => 'Commenti Fattura di Default',
+ 'invoice_email_message' => 'Template Email di Fattura',
+ 'invoice_enable' => 'Abilita Fatturazione',
+ 'invoice_printer' => 'Stampante per Fattura',
+ 'invoice_type' => 'Tipo fattura',
+ 'is_readable' => 'è leggibile, ma le autorizzazioni sono impostate in modo errato. Impostalo su 640 o 660 e aggiorna.',
+ 'is_writable' => 'è scrivibile, ma i permessi sono impostati in modo errato. Si prega di impostarlo su 750 e aggiornare.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => "Attenzione: Questa funzionalità funzionerà solo se è installato l'addon di FifeFox jsPrintSetup. Salvare ugualmente ?",
+ 'language' => 'Lingua',
+ 'last_used_invoice_number' => 'Ultimo Numero Fattura usato',
+ 'last_used_quote_number' => 'Ultimo Numero Preventivo usato',
+ 'last_used_work_order_number' => 'Ultimo Numero Ordine di Lavoro/Commessa usato',
+ 'left' => 'Sinistra',
+ 'license' => 'Licenza',
+ 'license_configuration' => 'Contenuti della Licenza',
+ 'line_sequence' => 'Sequenza Linea',
+ 'lines_per_page' => 'Linee per Pagina',
+ 'lines_per_page_number' => 'Le linee per Pagina devono essere un numero.',
+ 'lines_per_page_required' => 'Linee per Pagina è un campo obbligatorio.',
+ 'locale' => 'Localizzazione',
+ 'locale_configuration' => 'Configurazione Localizzazione',
+ 'locale_info' => 'Informazioni di Configurazione Localizzazione',
+ 'location' => 'Magazzino',
+ 'location_configuration' => 'Locazione Magazzino',
+ 'location_info' => 'Informazioni di Configurazione Posizione',
+ 'login_form' => 'Stile modulo di accesso',
+ 'logout' => 'Vuoi fare il backup prima di effettuare il logout? Premere [OK] per eseguirlo o [Cancella] per il logout.',
+ 'mailchimp' => 'Mailchimp',
+ 'mailchimp_api_key' => 'Mailchimp API Key',
+ 'mailchimp_configuration' => 'Configurazione Mailchimp',
+ 'mailchimp_key_successfully' => 'API Key valida.',
+ 'mailchimp_key_unsuccessfully' => 'API Key non valida.',
+ 'mailchimp_lists' => 'Lista/e Mailchimp',
+ 'mailchimp_tooltip' => 'Click the icon for an API Key.',
+ 'message' => 'SMS',
+ 'message_configuration' => 'Configurazione SMS',
+ 'msg_msg' => 'Testo Messaggio Salvato',
+ 'msg_msg_placeholder' => 'Se vuoi utilizzare un template SMS, salva il tuo messaggio qui o lascia il campo in bianco.',
+ 'msg_pwd' => 'SMS-API Password',
+ 'msg_pwd_required' => 'SMS-API Password è un campo obbligatorio',
+ 'msg_src' => 'SMS-API Sender ID',
+ 'msg_src_required' => 'SMS-API Sender ID è un campo obbligatorio',
+ 'msg_uid' => 'SMS-API Username',
+ 'msg_uid_required' => 'SMS-API Username è un campo obbligatorio',
+ 'multi_pack_enabled' => 'Pacchetti multipli per articolo',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => 'nessuno',
+ 'notify_alignment' => 'Posizione Popup di Notifica',
+ 'number_format' => 'Formato Numero',
+ 'number_locale' => 'Localizzazione',
+ 'number_locale_invalid' => 'La località inserita non è valida. Controlla il link nel tooltip per cercare una località valida.',
+ 'number_locale_required' => 'Numero Località è un campo obbligatorio.',
+ 'number_locale_tooltip' => 'Cerca una Località adatta con questo link.',
+ 'os_timezone' => 'OSPOS fuso orario:',
+ 'ospos_info' => "Informazioni sull'installazione di OSPOS",
+ 'payment_options_order' => 'Opzioni di Pagamento Ordine',
+ 'payment_reference_code_length_limits' => 'Codice di riferimento pagamento
Limiti di lunghezza',
+ 'payment_reference_code_length_max_label' => 'Max',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => 'Le autorizzazioni errate lasciano questo software a rischio.',
+ 'phone' => 'Telefono Azienda',
+ 'phone_required' => 'Telefono Aziena è un campo obbligatorio.',
+ 'print_bottom_margin' => 'Margine Inferiore',
+ 'print_bottom_margin_number' => 'Margine Inferiore deve essere un numero.',
+ 'print_bottom_margin_required' => 'Margine Inferiore è un campo richiesto.',
+ 'print_delay_autoreturn' => 'Ritardo ritorno a Vendite',
+ 'print_delay_autoreturn_number' => 'Ritardo è un campo obbligatorio.',
+ 'print_delay_autoreturn_required' => 'Ritardo deve essere un numero.',
+ 'print_footer' => 'Stampa Footer del Browser',
+ 'print_header' => 'Stampa Intestazione del Browser',
+ 'print_left_margin' => 'Margine sinistro',
+ 'print_left_margin_number' => 'Margine sinistro deve essere un numero.',
+ 'print_left_margin_required' => 'Margine Sinistro è un campo obbligatorio.',
+ 'print_receipt_check_behaviour' => 'Checkbox stampa scontrino',
+ 'print_receipt_check_behaviour_always' => 'Sempre selezionato',
+ 'print_receipt_check_behaviour_last' => "Ricorda l'ultima selezione",
+ 'print_receipt_check_behaviour_never' => 'Sempre non selezionato',
+ 'print_right_margin' => 'Margine Destro',
+ 'print_right_margin_number' => 'Margine Destro deve essere un numero.',
+ 'print_right_margin_required' => 'Margine Destro è un campo obbligatorio.',
+ 'print_silently' => 'Mostra Finestra di Stampa',
+ 'print_top_margin' => 'Margine Superiore',
+ 'print_top_margin_number' => 'Margine Superiore deve essere un numero.',
+ 'print_top_margin_required' => 'Margine Superiore è un campo obbligatorio.',
+ 'quantity_decimals' => 'Decimali Quantità',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Commento di default Stime',
+ 'receipt' => 'Scontrino',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Impostazioni di stampa Scontrino',
+ 'receipt_default' => 'Default',
+ 'receipt_font_size' => 'Grandezza Font',
+ 'receipt_font_size_number' => 'Grandezza Font deve essere un numero.',
+ 'receipt_font_size_required' => 'Grandezza Font è un campo obbligatorio.',
+ 'receipt_info' => 'Informazioni di Configurazione Scontrino',
+ 'receipt_printer' => 'Stampante Ticket',
+ 'receipt_short' => 'Corto',
+ 'receipt_show_company_name' => 'Mostra Nome Compagnia',
+ 'receipt_show_description' => 'Mostra Descrizione',
+ 'receipt_show_serialnumber' => 'Mostra Numero Seriale',
+ 'receipt_show_tax_ind' => 'Mostra indicatore fiscale',
+ 'receipt_show_taxes' => 'Mostra Imposte',
+ 'receipt_show_total_discount' => 'Mostra Sconto Totale',
+ 'receipt_template' => 'Template Scontrino',
+ 'receiving_calculate_average_price' => 'Calcola Prezzo medio (Ricezione)',
+ 'recv_invoice_format' => 'Formato Fattura Acquisto',
+ 'register_mode_default' => 'Modalità Registro Automatico/Default',
+ 'report_an_issue' => 'Segnala un problema',
+ 'return_policy_required' => 'Politica di Reso è un campo obbligatorio.',
+ 'reward' => 'Raccolta Punti',
+ 'reward_configuration' => 'Configurazione Raccolta Punti',
+ 'right' => 'Destra',
+ 'sales_invoice_format' => 'Formato Fattura di Vendita',
+ 'sales_quote_format' => 'Formato Preventivo',
+ 'mailpath_invalid' => 'Percorso sendmail non valido. Sono ammessi solo lettere, numeri, trattini, trattini bassi, barre e punti.',
+ 'saved_successfully' => 'Configurazione salvata correttamente.',
+ 'saved_unsuccessfully' => 'Salvataggio Configurazione Fallito.',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Please use the below info for issue reporting.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Mostra icona ufficio',
+ 'statistics' => 'Invia Statistiche',
+ 'statistics_tooltip' => 'Invia statistiche per lo sviluppo e il miglioramento delle funzionalità proposte.',
+ 'stock_location' => 'Posizione Magazzino',
+ 'stock_location_duplicate' => 'Posizione Magazzino deve essere unico.',
+ 'stock_location_invalid_chars' => "Posizione Magazzino non può contenere '_'.",
+ 'stock_location_required' => 'Posizione Magazzino è un campo obbligatorio.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Colonna 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Schema di Suggerimenti di ricerca',
+ 'suggestions_second_column' => 'Colonna 2',
+ 'suggestions_third_column' => 'Colonna 3',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => 'Tavoli (Ristorazione)',
+ 'table_configuration' => 'Configurazione Tavoli',
+ 'takings_printer' => 'Stampa scontrino',
+ 'tax' => 'Imposte',
+ 'tax_category' => 'Categoria Imposta',
+ 'tax_category_duplicate' => 'Categoria tassa esistente.',
+ 'tax_category_invalid_chars' => 'Categoria tassa non valida.',
+ 'tax_category_required' => 'Categoria tassa richiesta.',
+ 'tax_category_used' => 'Categoria Imposta non può essere eliminata perchè è in utilizzo.',
+ 'tax_configuration' => 'Configurazione Imposte',
+ 'tax_decimals' => 'Decimali Imposta',
+ 'tax_id' => 'Codice Fiscale',
+ 'tax_included' => 'Imposte incluse',
+ 'theme' => 'Tema',
+ 'theme_preview' => 'Anteprima tema:',
+ 'thousands_separator' => 'Separatore centinaia',
+ 'timezone' => 'Timezone',
+ 'timezone_error' => 'Il fuso orario OSPOS è diverso dal fuso orario locale.',
+ 'top' => 'Sopra',
+ 'use_destination_based_tax' => "Usa l'imposta basata sulla destinazione",
+ 'user_timezone' => 'Fuso orario locale:',
+ 'website' => 'Sitoweb',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => "Supporto all'ordine (Work Order Support)",
+ 'work_order_format' => 'Formato ordine di lavoro/commessa',
];
diff --git a/app/Language/it/Login.php b/app/Language/it/Login.php
index b353ac821..718782aa0 100644
--- a/app/Language/it/Login.php
+++ b/app/Language/it/Login.php
@@ -1,25 +1,30 @@
"Non sono un robot.",
- "go" => "Go",
- "invalid_gcaptcha" => "Verifica di non essere un robot.",
- "invalid_installation" => "L'installazione non è corretta, controlla il tuo file php.ini.",
- "invalid_username_and_password" => "Username o Password non validi.",
- "login" => "Login",
- "logout" => "Uscita",
- "migration_needed" => "Dopo l'accesso verrà avviata una migrazione del database a {0}.",
- "migration_required" => "Migratione del database richiesta",
- "migration_auth_message" => "Le credenziali di amministratore sono richieste per autorizzare la migrazione del database alla versione {0}. Effettua il login per continuare.",
- "migration_initializing" => "Inizializzazione database",
- "migration_running" => "Esecuzione migrazioni database...",
- "migration_complete" => "Database inizializzato con successo!",
- "migration_complete_login" => "È ora possibile effettuare il login.",
- "migration_failed" => "Migrazione fallita",
- "migration_error_connection" => "Errore di connessione. Riprova.",
- "migration_complete_redirect" => "Migrazione completata. Reindirizzamento al login...",
- "password" => "Password",
- "required_username" => "Il campo nome utente è obbligatorio.",
- "username" => "Username",
- "welcome" => "Benvenuto in {0}!",
+ "gcaptcha" => "Non sono un robot.",
+ "go" => "Go",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Verifica di non essere un robot.",
+ "invalid_installation" => "L'installazione non è corretta, controlla il tuo file php.ini.",
+ "invalid_username_and_password" => "Username o Password non validi.",
+ "login" => "Login",
+ "logout" => "Uscita",
+ "migrating_database" => "Migrazione del database",
+ "migration_auth_message" => "Le credenziali di amministratore sono richieste per autorizzare la migrazione del database alla versione {0}. Effettua il login per continuare.",
+ "migration_complete" => "Database inizializzato con successo!",
+ "migration_complete_login" => "È ora possibile effettuare il login.",
+ "migration_complete_migrate" => "Database migrato con successo!",
+ "migration_complete_redirect" => "Migrazione completata. Reindirizzamento al login...",
+ "migration_error_connection" => "Errore di connessione. Riprova.",
+ "migration_failed" => "Migrazione fallita",
+ "migration_initializing" => "Inizializzazione database",
+ "migration_needed" => "Dopo l'accesso verrà avviata una migrazione del database a {0}.",
+ "migration_required" => "Migratione del database richiesta",
+ "migration_running" => "Esecuzione migrazioni database...",
+ "password" => "Password",
+ "required_username" => "Il campo nome utente è obbligatorio.",
+ "username" => "Username",
+ "welcome" => "Benvenuto in {0}!"
];
diff --git a/app/Language/it/Sales.php b/app/Language/it/Sales.php
index 39f32a770..081e89db3 100644
--- a/app/Language/it/Sales.php
+++ b/app/Language/it/Sales.php
@@ -1,235 +1,235 @@
"Punti Dispnibili",
- "rewards_package" => "Punti Fedeltà",
- "rewards_remaining_balance" => "Valore Punti Rimanenti è ",
- "account_number" => "Account #",
- "add_payment" => "Aggiungi Pagamento",
- "amount_due" => "Importo Dovuto",
- "amount_tendered" => "Importo Offerto",
- "authorized_signature" => "Firma Autorizzata",
- "cancel_sale" => "Annulla",
- "cash" => "Contanti",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "Adeguamento in contanti",
- "cash_deposit" => "Deposito Contanti",
- "cash_filter" => "Contanti",
- "change_due" => "Resto Dovuto",
- "change_price" => "Cambio prezzo di vendita",
- "check" => "Assegno",
- "check_balance" => "Promemoria Assegno",
- "check_filter" => "Assegno",
- "close" => "",
- "comment" => "Commento",
- "comments" => "Commenti",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Completata",
- "confirm_cancel_sale" => "Sei sicuro di voler annullare questa vendita? Tutti gli articoli saranno eliminati.",
- "confirm_delete" => "Sei sicuro di voler eliminare la vendita selezionata?",
- "confirm_restore" => "Sei sicuro di voler ripristinare la vendita selezionata?",
- "credit" => "Carta di Credito",
- "credit_deposit" => "Deposito Credito",
- "credit_filter" => "Carta di credito",
- "current_table" => "",
- "customer" => "Nome",
- "customer_address" => "Indirizzo",
- "customer_discount" => "Sconto",
- "customer_email" => "Email",
- "customer_location" => "Località",
- "customer_mailchimp_status" => "Stato Mailchimp",
- "customer_optional" => "(Opzionale)",
- "customer_required" => "(Richiesto)",
- "customer_total" => "Totale",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Data di Vendita",
- "date_range" => "Intervallo Data",
- "date_required" => "Deve essere inserita una Data corretta.",
- "date_type" => "Data è un campo obbligatorio.",
- "debit" => "Carta di Debito",
- "debit_filter" => "",
- "delete" => "Permetti Eliminazione",
- "delete_confirmation" => "Sei sicuro di voler eliminare questa vendita? Questa azione non può essere annullata.",
- "delete_entire_sale" => "Cancella intera vendita",
- "delete_successful" => "Cancellazione Vendita terminata correttamente.",
- "delete_unsuccessful" => "Eliminazione Vendita Fallita.",
- "description_abbrv" => "Desc.",
- "discard" => "Scartare",
- "discard_quote" => "",
- "discount" => "Sconto %",
- "discount_included" => "% Sconto",
- "discount_short" => "%",
- "due" => "Dovuto",
- "due_filter" => "Dovuto",
- "edit" => "Modifica",
- "edit_item" => "Modifica Articolo",
- "edit_sale" => "Modifica Vendita",
- "email_receipt" => "Scontrino Email",
- "employee" => "Impiegato",
- "entry" => "Voce",
- "error_editing_item" => "Errore modificando un articolo",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Scansiona o Cerca Articolo",
- "find_or_scan_item_or_receipt" => "Scansiona o Cerca Articolo o Scontrino",
- "giftcard" => "Carta Regalo",
- "giftcard_balance" => "Carta Regalo Bilancio",
- "giftcard_filter" => "",
- "giftcard_number" => "Numero Carta Regalo",
- "group_by_category" => "Raggruppa per Categoria",
- "group_by_type" => "Raggruppa per Tipo",
- "hsn" => "HSN",
- "id" => "ID vendita",
- "include_prices" => "Includi i prezzi?",
- "invoice" => "Fattura",
- "invoice_confirm" => "Questa fattura sarà inviata a",
- "invoice_enable" => "Crea Fattura",
- "invoice_filter" => "Fatture",
- "invoice_no_email" => "Questo cliente non ha un indirizzo email valido.",
- "invoice_number" => "Fattura #",
- "invoice_number_duplicate" => "Numero Fattura deve essere unico.",
- "invoice_sent" => "Fattura inviata a",
- "invoice_total" => "Totale Fattura",
- "invoice_type_custom_invoice" => "Fattura Personalizzata (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Fattura con Imposta Personalizzata (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Fattura (invoice.php)",
- "invoice_type_tax_invoice" => "Fattura d'Imposta",
- "invoice_unsent" => "Fatturazione fallita sarà inviata a",
- "invoice_update" => "Ricalcola",
- "item_insufficient_of_stock" => "L'articolo non ha un magazzino sufficiente.",
- "item_name" => "Nome Articolo",
- "item_number" => "Articolo #",
- "item_out_of_stock" => "Articolo fuori stock.",
- "key_browser" => "Scorciatoie utili",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Termina Preventivo/Fattura senza pagamento",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "Apri in modalità a schermo intero",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "Ingrandire",
- "key_item_search" => "Item Search",
- "key_out" => "Rimpicciolisci",
- "key_payment" => "Add Payment",
- "key_print" => "Stampa pagina corrente",
- "key_restore" => "Ripristina visualizzazione/zoom originale",
- "key_search" => "Tabelle dei rapporti di ricerca",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "Scorciatoie di sistema",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "Modalità registra",
- "must_enter_numeric" => "Import Offerto deve essere un numero.",
- "must_enter_numeric_giftcard" => "Numero Carta Regalo deve essere un numero.",
- "new_customer" => "Nuovo Cliente",
- "new_item" => "Nuovo Articolo",
- "no_description" => "Nessun",
- "no_filter" => "Tutti",
- "no_items_in_cart" => "Non ci sono Articoli nel carrello.",
- "no_sales_to_display" => "Nessuna Vendita da mostrare.",
- "none_selected" => "Non hai selezionato alcuna vendita da cancellare.",
- "nontaxed_ind" => " vendita non tassata ",
- "not_authorized" => "Questa azione non può essere autorizzata.",
- "one_or_multiple" => "Vendita/e",
- "payment" => "Tipo di pagamento",
- "payment_amount" => "Importo",
- "payment_not_cover_total" => "Pagamento Import deve essere maggiore o uguale al Totale.",
- "payment_type" => "Tipo",
- "payments" => "",
- "payments_total" => "Totale Pagamenti",
- "price" => "Prezzo",
- "print_after_sale" => "Stampa dopo la vendita",
- "quantity" => "Quantità",
- "quantity_less_than_reorder_level" => "Attenzione: la Quantità desiderata è sotto al Livello di riordino per questo Articolo.",
- "quantity_less_than_zero" => "Attenzione: la Quantità desiderata non è sufficiente. Puoi ancora procedere alla vendita ma controlla l'inventario.",
- "quantity_of_items" => "Quantità di {0} Articolo",
- "quote" => "Preventivo",
- "quote_number" => "Numero Preventivo",
- "quote_number_duplicate" => "Numero Preventivo deve essere unico.",
- "quote_sent" => "Preventivo inviato a",
- "quote_unsent" => "Preventivo fallito d'essere inviato a",
- "receipt" => "Scontrino di Vendita",
- "receipt_no_email" => "Questo cliente non ha un'email valida.",
- "receipt_number" => "Vendita #",
- "receipt_sent" => "Scontrino inviato a",
- "receipt_unsent" => "Scontrino fallito da inviare a",
- "refund" => "Tipo di rimborso",
- "register" => "Registrazione Vendita",
- "remove_customer" => "Rimuovi Cliente",
- "remove_discount" => "",
- "return" => "Reso",
- "rewards" => "Punti Raccolta",
- "rewards_balance" => "Bilancio Punti Raccolta",
- "sale" => "Vendita",
- "sale_by_invoice" => "Fattura",
- "sale_for_customer" => "Cliente:",
- "sale_time" => "Tempo",
- "sales_tax" => "Imposte di Vendita",
- "sales_total" => "",
- "select_customer" => "Seleziona Cliente (Opzionale)",
- "send_invoice" => "Invia Fattura",
- "send_quote" => "Invia Preventivo",
- "send_receipt" => "Invia Scontrino",
- "send_work_order" => "Invia Commessa/Ordine di Lavoro",
- "serial" => "Seriale",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Mostra Fattura",
- "show_receipt" => "Mostra Scontrino",
- "start_typing_customer_name" => "Digita i dettagli del cliente...",
- "start_typing_item_name" => "Incomincia a digitare Nome Articolo o spara il Codice a Barre...",
- "stock" => "Disponibilità",
- "stock_location" => "Posizione Stock",
- "sub_total" => "Subtotale",
- "successfully_deleted" => "Hai correttamente eliminato",
- "successfully_restored" => "Hai correttamente ripristinato",
- "successfully_suspended_sale" => "Vendita sospesa correttamente.",
- "successfully_updated" => "Aggiornamento vendita a buon fine.",
- "suspend_sale" => "Sospendi",
- "suspended_doc_id" => "Documento",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Sospeso",
- "table" => "Tavolo",
- "takings" => "Vendite del Giorno",
- "tax" => "Imposte",
- "tax_id" => "ID Imposta",
- "tax_invoice" => "Fattura d'Imposta",
- "tax_percent" => "Imposte %",
- "taxed_ind" => "T",
- "total" => "Totale",
- "total_tax_exclusive" => "Imposte escluse",
- "transaction_failed" => "Transazione di Vendita fallita.",
- "unable_to_add_item" => "Aggiunta articolo alla vendita non riuscita",
- "unsuccessfully_deleted" => "Eliminazione Vendita/e fallita.",
- "unsuccessfully_restored" => "Ripristino Vendita/e fallita.",
- "unsuccessfully_suspended_sale" => "Vendita sospesa fallita.",
- "unsuccessfully_updated" => "Aggiornamento Vendita fallito.",
- "unsuspend" => "Non-sospeso",
- "unsuspend_and_delete" => "Azione",
- "update" => "Aggiorna",
- "upi" => "UPI",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "Ordine di Lavoro",
- "work_order_number" => "Numero Ordine di Lavoro",
- "work_order_number_duplicate" => "Numero Ordine di Lavoro deve essere unico.",
- "work_order_sent" => "Ordine di lavoro inviato",
- "work_order_unsent" => "Ordine di Lavoro fallito da inviare a",
- "sale_not_found" => "Vendita non trovata",
- "ubl_invoice" => "Fattura UBL",
- "download_ubl" => "Scarica fattura UBL",
- "ubl_generation_failed" => "Impossibile generare la fattura UBL",
+ 'account_number' => 'Account #',
+ 'add_payment' => 'Aggiungi Pagamento',
+ 'amount_due' => 'Importo Dovuto',
+ 'amount_tendered' => 'Importo Offerto',
+ 'authorized_signature' => 'Firma Autorizzata',
+ 'cancel_sale' => 'Annulla',
+ 'cash' => 'Contanti',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'Adeguamento in contanti',
+ 'cash_deposit' => 'Deposito Contanti',
+ 'cash_filter' => 'Contanti',
+ 'change_due' => 'Resto Dovuto',
+ 'change_price' => 'Cambio prezzo di vendita',
+ 'check' => 'Assegno',
+ 'check_balance' => 'Promemoria Assegno',
+ 'check_filter' => 'Assegno',
+ 'close' => '',
+ 'comment' => 'Commento',
+ 'comments' => 'Commenti',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Completata',
+ 'confirm_cancel_sale' => 'Sei sicuro di voler annullare questa vendita? Tutti gli articoli saranno eliminati.',
+ 'confirm_delete' => 'Sei sicuro di voler eliminare la vendita selezionata?',
+ 'confirm_restore' => 'Sei sicuro di voler ripristinare la vendita selezionata?',
+ 'credit' => 'Carta di Credito',
+ 'credit_deposit' => 'Deposito Credito',
+ 'credit_filter' => 'Carta di credito',
+ 'current_table' => '',
+ 'customer' => 'Nome',
+ 'customer_address' => 'Indirizzo',
+ 'customer_discount' => 'Sconto',
+ 'customer_email' => 'Email',
+ 'customer_location' => 'Località',
+ 'customer_mailchimp_status' => 'Stato Mailchimp',
+ 'customer_optional' => '(Opzionale)',
+ 'customer_required' => '(Richiesto)',
+ 'customer_total' => 'Totale',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Punti Dispnibili',
+ 'daily_sales' => '',
+ 'date' => 'Data di Vendita',
+ 'date_range' => 'Intervallo Data',
+ 'date_required' => 'Deve essere inserita una Data corretta.',
+ 'date_type' => 'Data è un campo obbligatorio.',
+ 'debit' => 'Carta di Debito',
+ 'debit_filter' => '',
+ 'delete' => 'Permetti Eliminazione',
+ 'delete_confirmation' => 'Sei sicuro di voler eliminare questa vendita? Questa azione non può essere annullata.',
+ 'delete_entire_sale' => 'Cancella intera vendita',
+ 'delete_successful' => 'Cancellazione Vendita terminata correttamente.',
+ 'delete_unsuccessful' => 'Eliminazione Vendita Fallita.',
+ 'description_abbrv' => 'Desc.',
+ 'discard' => 'Scartare',
+ 'discard_quote' => '',
+ 'discount' => 'Sconto %',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Sconto',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'Dovuto',
+ 'due_filter' => 'Dovuto',
+ 'edit' => 'Modifica',
+ 'edit_item' => 'Modifica Articolo',
+ 'edit_sale' => 'Modifica Vendita',
+ 'email_receipt' => 'Scontrino Email',
+ 'employee' => 'Impiegato',
+ 'entry' => 'Voce',
+ 'error_editing_item' => 'Errore modificando un articolo',
+ 'find_or_scan_item' => 'Scansiona o Cerca Articolo',
+ 'find_or_scan_item_or_receipt' => 'Scansiona o Cerca Articolo o Scontrino',
+ 'giftcard' => 'Carta Regalo',
+ 'giftcard_balance' => 'Carta Regalo Bilancio',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Numero Carta Regalo',
+ 'group_by_category' => 'Raggruppa per Categoria',
+ 'group_by_type' => 'Raggruppa per Tipo',
+ 'hsn' => 'HSN',
+ 'id' => 'ID vendita',
+ 'include_prices' => 'Includi i prezzi?',
+ 'invoice' => 'Fattura',
+ 'invoice_confirm' => 'Questa fattura sarà inviata a',
+ 'invoice_enable' => 'Crea Fattura',
+ 'invoice_filter' => 'Fatture',
+ 'invoice_no_email' => 'Questo cliente non ha un indirizzo email valido.',
+ 'invoice_number' => 'Fattura #',
+ 'invoice_number_duplicate' => 'Numero Fattura deve essere unico.',
+ 'invoice_sent' => 'Fattura inviata a',
+ 'invoice_total' => 'Totale Fattura',
+ 'invoice_type_custom_invoice' => 'Fattura Personalizzata (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Fattura con Imposta Personalizzata (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Fattura (invoice.php)',
+ 'invoice_type_tax_invoice' => "Fattura d'Imposta",
+ 'invoice_unsent' => 'Fatturazione fallita sarà inviata a',
+ 'invoice_update' => 'Ricalcola',
+ 'item_insufficient_of_stock' => "L'articolo non ha un magazzino sufficiente.",
+ 'item_name' => 'Nome Articolo',
+ 'item_number' => 'Articolo #',
+ 'item_out_of_stock' => 'Articolo fuori stock.',
+ 'key_browser' => 'Scorciatoie utili',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Termina Preventivo/Fattura senza pagamento',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => 'Apri in modalità a schermo intero',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => 'Ingrandire',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => 'Rimpicciolisci',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => 'Stampa pagina corrente',
+ 'key_restore' => 'Ripristina visualizzazione/zoom originale',
+ 'key_search' => 'Tabelle dei rapporti di ricerca',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => 'Scorciatoie di sistema',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'Modalità registra',
+ 'must_enter_numeric' => 'Import Offerto deve essere un numero.',
+ 'must_enter_numeric_giftcard' => 'Numero Carta Regalo deve essere un numero.',
+ 'must_enter_reference_code' => 'Il numero di riferimento/recupero deve essere inserito.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Nuovo Cliente',
+ 'new_item' => 'Nuovo Articolo',
+ 'no_description' => 'Nessun',
+ 'no_filter' => 'Tutti',
+ 'no_items_in_cart' => 'Non ci sono Articoli nel carrello.',
+ 'no_sales_to_display' => 'Nessuna Vendita da mostrare.',
+ 'none_selected' => 'Non hai selezionato alcuna vendita da cancellare.',
+ 'nontaxed_ind' => ' vendita non tassata ',
+ 'not_authorized' => 'Questa azione non può essere autorizzata.',
+ 'one_or_multiple' => 'Vendita/e',
+ 'payment' => 'Tipo di pagamento',
+ 'payment_amount' => 'Importo',
+ 'payment_not_cover_total' => 'Pagamento Import deve essere maggiore o uguale al Totale.',
+ 'payment_type' => 'Tipo',
+ 'payments' => '',
+ 'payments_total' => 'Totale Pagamenti',
+ 'price' => 'Prezzo',
+ 'print_after_sale' => 'Stampa dopo la vendita',
+ 'quantity' => 'Quantità',
+ 'quantity_less_than_reorder_level' => 'Attenzione: la Quantità desiderata è sotto al Livello di riordino per questo Articolo.',
+ 'quantity_less_than_zero' => "Attenzione: la Quantità desiderata non è sufficiente. Puoi ancora procedere alla vendita ma controlla l'inventario.",
+ 'quantity_of_items' => 'Quantità di {0} Articolo',
+ 'quote' => 'Preventivo',
+ 'quote_number' => 'Numero Preventivo',
+ 'quote_number_duplicate' => 'Numero Preventivo deve essere unico.',
+ 'quote_sent' => 'Preventivo inviato a',
+ 'quote_unsent' => "Preventivo fallito d'essere inviato a",
+ 'receipt' => 'Scontrino di Vendita',
+ 'receipt_no_email' => "Questo cliente non ha un'email valida.",
+ 'receipt_number' => 'Vendita #',
+ 'receipt_sent' => 'Scontrino inviato a',
+ 'receipt_unsent' => 'Scontrino fallito da inviare a',
+ 'reference_code' => 'Codice di riferimento pagamento',
+ 'reference_code_invalid_characters' => 'Il codice di riferimento deve contenere solo lettere e numeri.',
+ 'reference_code_length_error' => 'La lunghezza del codice di riferimento non è valida.',
+ 'refund' => 'Tipo di rimborso',
+ 'register' => 'Registrazione Vendita',
+ 'remove_customer' => 'Rimuovi Cliente',
+ 'remove_discount' => '',
+ 'return' => 'Reso',
+ 'rewards' => 'Punti Raccolta',
+ 'rewards_balance' => 'Bilancio Punti Raccolta',
+ 'rewards_package' => 'Punti Fedeltà',
+ 'rewards_remaining_balance' => 'Valore Punti Rimanenti è ',
+ 'sale' => 'Vendita',
+ 'sale_by_invoice' => 'Fattura',
+ 'sale_for_customer' => 'Cliente:',
+ 'sale_time' => 'Tempo',
+ 'sales_tax' => 'Imposte di Vendita',
+ 'sales_total' => '',
+ 'select_customer' => 'Seleziona Cliente (Opzionale)',
+ 'send_invoice' => 'Invia Fattura',
+ 'send_quote' => 'Invia Preventivo',
+ 'send_receipt' => 'Invia Scontrino',
+ 'send_work_order' => 'Invia Commessa/Ordine di Lavoro',
+ 'serial' => 'Seriale',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Mostra Fattura',
+ 'show_receipt' => 'Mostra Scontrino',
+ 'start_typing_customer_name' => 'Digita i dettagli del cliente...',
+ 'start_typing_item_name' => 'Incomincia a digitare Nome Articolo o spara il Codice a Barre...',
+ 'stock' => 'Disponibilità',
+ 'stock_location' => 'Posizione Stock',
+ 'sub_total' => 'Subtotale',
+ 'successfully_deleted' => 'Hai correttamente eliminato',
+ 'successfully_restored' => 'Hai correttamente ripristinato',
+ 'successfully_suspended_sale' => 'Vendita sospesa correttamente.',
+ 'successfully_updated' => 'Aggiornamento vendita a buon fine.',
+ 'suspend_sale' => 'Sospendi',
+ 'suspended_doc_id' => 'Documento',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Sospeso',
+ 'table' => 'Tavolo',
+ 'takings' => 'Vendite del Giorno',
+ 'tax' => 'Imposte',
+ 'tax_id' => 'ID Imposta',
+ 'tax_invoice' => "Fattura d'Imposta",
+ 'tax_percent' => 'Imposte %',
+ 'taxed_ind' => 'T',
+ 'total' => 'Totale',
+ 'total_tax_exclusive' => 'Imposte escluse',
+ 'transaction_failed' => 'Transazione di Vendita fallita.',
+ 'unable_to_add_item' => 'Aggiunta articolo alla vendita non riuscita',
+ 'unsuccessfully_deleted' => 'Eliminazione Vendita/e fallita.',
+ 'unsuccessfully_restored' => 'Ripristino Vendita/e fallita.',
+ 'unsuccessfully_suspended_sale' => 'Vendita sospesa fallita.',
+ 'unsuccessfully_updated' => 'Aggiornamento Vendita fallito.',
+ 'unsuspend' => 'Non-sospeso',
+ 'unsuspend_and_delete' => 'Azione',
+ 'update' => 'Aggiorna',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'Ordine di Lavoro',
+ 'work_order_number' => 'Numero Ordine di Lavoro',
+ 'work_order_number_duplicate' => 'Numero Ordine di Lavoro deve essere unico.',
+ 'work_order_sent' => 'Ordine di lavoro inviato',
+ 'work_order_unsent' => 'Ordine di Lavoro fallito da inviare a',
];
diff --git a/app/Language/ka/Config.php b/app/Language/ka/Config.php
new file mode 100644
index 000000000..c72e701c9
--- /dev/null
+++ b/app/Language/ka/Config.php
@@ -0,0 +1,339 @@
+ '',
+ 'address_required' => '',
+ 'all_set' => '',
+ 'allow_duplicate_barcodes' => '',
+ 'apostrophe' => '',
+ 'backup_button' => '',
+ 'backup_database' => '',
+ 'barcode' => '',
+ 'barcode_company' => '',
+ 'barcode_configuration' => '',
+ 'barcode_content' => '',
+ 'barcode_first_row' => '',
+ 'barcode_font' => '',
+ 'barcode_formats' => '',
+ 'barcode_generate_if_empty' => '',
+ 'barcode_height' => '',
+ 'barcode_id' => '',
+ 'barcode_info' => '',
+ 'barcode_layout' => '',
+ 'barcode_name' => '',
+ 'barcode_number' => '',
+ 'barcode_number_in_row' => '',
+ 'barcode_page_cellspacing' => '',
+ 'barcode_page_width' => '',
+ 'barcode_price' => '',
+ 'barcode_second_row' => '',
+ 'barcode_third_row' => '',
+ 'barcode_tooltip' => '',
+ 'barcode_type' => '',
+ 'barcode_width' => '',
+ 'bottom' => '',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => '',
+ 'cash_decimals_tooltip' => '',
+ 'cash_rounding' => '',
+ 'category_dropdown' => '',
+ 'center' => '',
+ 'change_apperance_tooltip' => '',
+ 'comma' => '',
+ 'company' => '',
+ 'company_avatar' => '',
+ 'company_change_image' => '',
+ 'company_logo' => '',
+ 'company_remove_image' => '',
+ 'company_required' => '',
+ 'company_select_image' => '',
+ 'company_website_url' => '',
+ 'country_codes' => '',
+ 'country_codes_tooltip' => '',
+ 'currency_code' => '',
+ 'currency_decimals' => '',
+ 'currency_symbol' => '',
+ 'current_employee_only' => '',
+ 'customer_reward' => '',
+ 'customer_reward_duplicate' => '',
+ 'customer_reward_enable' => '',
+ 'customer_reward_invalid_chars' => '',
+ 'customer_reward_required' => '',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => '',
+ 'datetimeformat' => '',
+ 'decimal_point' => '',
+ 'default_barcode_font_size_number' => '',
+ 'default_barcode_font_size_required' => '',
+ 'default_barcode_height_number' => '',
+ 'default_barcode_height_required' => '',
+ 'default_barcode_num_in_row_number' => '',
+ 'default_barcode_num_in_row_required' => '',
+ 'default_barcode_page_cellspacing_number' => '',
+ 'default_barcode_page_cellspacing_required' => '',
+ 'default_barcode_page_width_number' => '',
+ 'default_barcode_page_width_required' => '',
+ 'default_barcode_width_number' => '',
+ 'default_barcode_width_required' => '',
+ 'default_item_columns' => '',
+ 'default_origin_tax_code' => '',
+ 'default_receivings_discount' => '',
+ 'default_receivings_discount_number' => '',
+ 'default_receivings_discount_required' => '',
+ 'default_sales_discount' => '',
+ 'default_sales_discount_number' => '',
+ 'default_sales_discount_required' => '',
+ 'default_tax_category' => '',
+ 'default_tax_code' => '',
+ 'default_tax_jurisdiction' => '',
+ 'default_tax_name_number' => '',
+ 'default_tax_name_required' => '',
+ 'default_tax_rate' => '',
+ 'default_tax_rate_1' => '',
+ 'default_tax_rate_2' => '',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => '',
+ 'default_tax_rate_required' => '',
+ 'derive_sale_quantity' => '',
+ 'derive_sale_quantity_tooltip' => '',
+ 'dinner_table' => '',
+ 'dinner_table_duplicate' => '',
+ 'dinner_table_enable' => '',
+ 'dinner_table_invalid_chars' => '',
+ 'dinner_table_required' => '',
+ 'dot' => '',
+ 'email' => '',
+ 'email_configuration' => '',
+ 'email_mailpath' => '',
+ 'email_protocol' => '',
+ 'email_receipt_check_behaviour' => '',
+ 'email_receipt_check_behaviour_always' => '',
+ 'email_receipt_check_behaviour_last' => '',
+ 'email_receipt_check_behaviour_never' => '',
+ 'email_smtp_crypto' => '',
+ 'email_smtp_host' => '',
+ 'email_smtp_pass' => '',
+ 'email_smtp_port' => '',
+ 'email_smtp_timeout' => '',
+ 'email_smtp_user' => '',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => '',
+ 'enforce_privacy_tooltip' => '',
+ 'fax' => '',
+ 'file_perm' => '',
+ 'financial_year' => '',
+ 'financial_year_apr' => '',
+ 'financial_year_aug' => '',
+ 'financial_year_dec' => '',
+ 'financial_year_feb' => '',
+ 'financial_year_jan' => '',
+ 'financial_year_jul' => '',
+ 'financial_year_jun' => '',
+ 'financial_year_mar' => '',
+ 'financial_year_may' => '',
+ 'financial_year_nov' => '',
+ 'financial_year_oct' => '',
+ 'financial_year_sep' => '',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => '',
+ 'gcaptcha_secret_key' => '',
+ 'gcaptcha_secret_key_required' => '',
+ 'gcaptcha_site_key' => '',
+ 'gcaptcha_site_key_required' => '',
+ 'gcaptcha_tooltip' => '',
+ 'general' => '',
+ 'general_configuration' => '',
+ 'giftcard_number' => '',
+ 'giftcard_random' => '',
+ 'giftcard_series' => '',
+ 'image_allowed_file_types' => '',
+ 'image_max_height_tooltip' => '',
+ 'image_max_size_tooltip' => '',
+ 'image_max_width_tooltip' => '',
+ 'image_restrictions' => '',
+ 'include_hsn' => '',
+ 'info' => '',
+ 'info_configuration' => '',
+ 'input_groups' => '',
+ 'integrations' => '',
+ 'integrations_configuration' => '',
+ 'invoice' => '',
+ 'invoice_configuration' => '',
+ 'invoice_default_comments' => '',
+ 'invoice_email_message' => '',
+ 'invoice_enable' => '',
+ 'invoice_printer' => '',
+ 'invoice_type' => '',
+ 'is_readable' => '',
+ 'is_writable' => '',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => '',
+ 'language' => '',
+ 'last_used_invoice_number' => '',
+ 'last_used_quote_number' => '',
+ 'last_used_work_order_number' => '',
+ 'left' => '',
+ 'license' => '',
+ 'license_configuration' => '',
+ 'line_sequence' => '',
+ 'lines_per_page' => '',
+ 'lines_per_page_number' => '',
+ 'lines_per_page_required' => '',
+ 'locale' => '',
+ 'locale_configuration' => '',
+ 'locale_info' => '',
+ 'location' => '',
+ 'location_configuration' => '',
+ 'location_info' => '',
+ 'login_form' => '',
+ 'logout' => '',
+ 'mailchimp' => '',
+ 'mailchimp_api_key' => '',
+ 'mailchimp_configuration' => '',
+ 'mailchimp_key_successfully' => '',
+ 'mailchimp_key_unsuccessfully' => '',
+ 'mailchimp_lists' => '',
+ 'mailchimp_tooltip' => '',
+ 'message' => '',
+ 'message_configuration' => '',
+ 'msg_msg' => '',
+ 'msg_msg_placeholder' => '',
+ 'msg_pwd' => '',
+ 'msg_pwd_required' => '',
+ 'msg_src' => '',
+ 'msg_src_required' => '',
+ 'msg_uid' => '',
+ 'msg_uid_required' => '',
+ 'multi_pack_enabled' => '',
+ 'no_risk' => '',
+ 'none' => '',
+ 'notify_alignment' => '',
+ 'number_format' => '',
+ 'number_locale' => '',
+ 'number_locale_invalid' => '',
+ 'number_locale_required' => '',
+ 'number_locale_tooltip' => '',
+ 'os_timezone' => '',
+ 'ospos_info' => '',
+ 'payment_options_order' => '',
+ 'payment_reference_code_length_limits' => 'გადახდის საცნობარო კოდი
სიგრძის შეზღუდვები',
+ 'payment_reference_code_length_max_label' => 'მაქს',
+ 'payment_reference_code_length_min_label' => 'მინ',
+ 'perm_risk' => '',
+ 'phone' => '',
+ 'phone_required' => '',
+ 'print_bottom_margin' => '',
+ 'print_bottom_margin_number' => '',
+ 'print_bottom_margin_required' => '',
+ 'print_delay_autoreturn' => '',
+ 'print_delay_autoreturn_number' => '',
+ 'print_delay_autoreturn_required' => '',
+ 'print_footer' => '',
+ 'print_header' => '',
+ 'print_left_margin' => '',
+ 'print_left_margin_number' => '',
+ 'print_left_margin_required' => '',
+ 'print_receipt_check_behaviour' => '',
+ 'print_receipt_check_behaviour_always' => '',
+ 'print_receipt_check_behaviour_last' => '',
+ 'print_receipt_check_behaviour_never' => '',
+ 'print_right_margin' => '',
+ 'print_right_margin_number' => '',
+ 'print_right_margin_required' => '',
+ 'print_silently' => '',
+ 'print_top_margin' => '',
+ 'print_top_margin_number' => '',
+ 'print_top_margin_required' => '',
+ 'quantity_decimals' => '',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => '',
+ 'receipt' => '',
+ 'receipt_category' => '',
+ 'receipt_configuration' => '',
+ 'receipt_default' => '',
+ 'receipt_font_size' => '',
+ 'receipt_font_size_number' => '',
+ 'receipt_font_size_required' => '',
+ 'receipt_info' => '',
+ 'receipt_printer' => '',
+ 'receipt_short' => '',
+ 'receipt_show_company_name' => '',
+ 'receipt_show_description' => '',
+ 'receipt_show_serialnumber' => '',
+ 'receipt_show_tax_ind' => '',
+ 'receipt_show_taxes' => '',
+ 'receipt_show_total_discount' => '',
+ 'receipt_template' => '',
+ 'receiving_calculate_average_price' => '',
+ 'recv_invoice_format' => '',
+ 'register_mode_default' => '',
+ 'report_an_issue' => '',
+ 'return_policy_required' => '',
+ 'reward' => '',
+ 'reward_configuration' => '',
+ 'right' => '',
+ 'sales_invoice_format' => '',
+ 'sales_quote_format' => '',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => '',
+ 'saved_unsuccessfully' => '',
+ 'security_issue' => '',
+ 'server_notice' => '',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => '',
+ 'statistics' => '',
+ 'statistics_tooltip' => '',
+ 'stock_location' => '',
+ 'stock_location_duplicate' => '',
+ 'stock_location_invalid_chars' => '',
+ 'stock_location_required' => '',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => '',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => '',
+ 'suggestions_second_column' => '',
+ 'suggestions_third_column' => '',
+ 'shortcuts' => '',
+ 'shortcuts_configuration' => '',
+ 'shortcuts_duplicate_bindings' => '',
+ 'shortcuts_save_error' => '',
+ 'system_conf' => '',
+ 'system_info' => '',
+ 'table' => '',
+ 'table_configuration' => '',
+ 'takings_printer' => '',
+ 'tax' => '',
+ 'tax_category' => '',
+ 'tax_category_duplicate' => '',
+ 'tax_category_invalid_chars' => '',
+ 'tax_category_required' => '',
+ 'tax_category_used' => '',
+ 'tax_configuration' => '',
+ 'tax_decimals' => '',
+ 'tax_id' => '',
+ 'tax_included' => '',
+ 'theme' => '',
+ 'theme_preview' => '',
+ 'thousands_separator' => '',
+ 'timezone' => '',
+ 'timezone_error' => '',
+ 'top' => '',
+ 'use_destination_based_tax' => '',
+ 'user_timezone' => '',
+ 'website' => '',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => '',
+ 'work_order_format' => '',
+];
diff --git a/app/Language/ka/Sales.php b/app/Language/ka/Sales.php
new file mode 100644
index 000000000..ef03b04f7
--- /dev/null
+++ b/app/Language/ka/Sales.php
@@ -0,0 +1,238 @@
+ '',
+ 'add_payment' => '',
+ 'amount_due' => '',
+ 'amount_tendered' => '',
+ 'authorized_signature' => '',
+ 'bank_transfer' => '',
+ 'cancel_sale' => '',
+ 'cash' => '',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => '',
+ 'cash_deposit' => '',
+ 'cash_filter' => '',
+ 'change_due' => '',
+ 'change_price' => '',
+ 'check' => '',
+ 'check_balance' => '',
+ 'check_filter' => '',
+ 'close' => '',
+ 'comment' => '',
+ 'comments' => '',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => '',
+ 'confirm_cancel_sale' => '',
+ 'confirm_delete' => '',
+ 'confirm_restore' => '',
+ 'credit' => '',
+ 'credit_deposit' => '',
+ 'credit_filter' => '',
+ 'current_table' => '',
+ 'customer' => '',
+ 'customer_address' => '',
+ 'customer_discount' => '',
+ 'customer_email' => '',
+ 'customer_location' => '',
+ 'customer_mailchimp_status' => '',
+ 'customer_optional' => '',
+ 'customer_required' => '',
+ 'customer_total' => '',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => '',
+ 'daily_sales' => '',
+ 'date' => '',
+ 'date_range' => '',
+ 'date_required' => '',
+ 'date_type' => '',
+ 'debit' => '',
+ 'debit_filter' => '',
+ 'delete' => '',
+ 'delete_confirmation' => '',
+ 'delete_entire_sale' => '',
+ 'delete_successful' => '',
+ 'delete_unsuccessful' => '',
+ 'description_abbrv' => '',
+ 'discard' => '',
+ 'discard_quote' => '',
+ 'discount' => '',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '',
+ 'due' => '',
+ 'due_filter' => '',
+ 'edit' => '',
+ 'edit_item' => '',
+ 'edit_sale' => '',
+ 'email_receipt' => '',
+ 'employee' => '',
+ 'entry' => '',
+ 'error_editing_item' => '',
+ 'find_or_scan_item' => '',
+ 'find_or_scan_item_or_receipt' => '',
+ 'giftcard' => '',
+ 'giftcard_balance' => '',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => '',
+ 'group_by_category' => '',
+ 'group_by_type' => '',
+ 'hsn' => '',
+ 'id' => '',
+ 'include_prices' => '',
+ 'invoice' => '',
+ 'invoice_confirm' => '',
+ 'invoice_enable' => '',
+ 'invoice_filter' => '',
+ 'invoice_no_email' => '',
+ 'invoice_number' => '',
+ 'invoice_number_duplicate' => '',
+ 'invoice_sent' => '',
+ 'invoice_total' => '',
+ 'invoice_type_custom_invoice' => '',
+ 'invoice_type_custom_tax_invoice' => '',
+ 'invoice_type_invoice' => '',
+ 'invoice_type_tax_invoice' => '',
+ 'invoice_unsent' => '',
+ 'invoice_update' => '',
+ 'item_insufficient_of_stock' => '',
+ 'item_name' => '',
+ 'item_number' => '',
+ 'item_out_of_stock' => '',
+ 'key_browser' => '',
+ 'key_cancel' => '',
+ 'key_customer_search' => '',
+ 'key_finish_quote' => '',
+ 'key_finish_sale' => '',
+ 'key_full' => '',
+ 'key_function' => '',
+ 'key_help' => '',
+ 'key_help_modal' => '',
+ 'key_in' => '',
+ 'key_item_search' => '',
+ 'key_out' => '',
+ 'key_payment' => '',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => '',
+ 'key_suspended' => '',
+ 'key_system' => '',
+ 'key_tendered' => '',
+ 'key_title' => '',
+ 'mc' => '',
+ 'mode' => '',
+ 'must_enter_numeric' => '',
+ 'must_enter_numeric_giftcard' => '',
+ 'must_enter_reference_code' => 'მიუთითეთ საცნობარო/მოძიების ნომერი.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => '',
+ 'new_item' => '',
+ 'no_description' => '',
+ 'no_filter' => '',
+ 'no_items_in_cart' => '',
+ 'no_sales_to_display' => '',
+ 'none_selected' => '',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => '',
+ 'one_or_multiple' => '',
+ 'payment' => '',
+ 'payment_amount' => '',
+ 'payment_not_cover_total' => '',
+ 'payment_type' => '',
+ 'payments' => '',
+ 'payments_total' => '',
+ 'price' => '',
+ 'print_after_sale' => '',
+ 'quantity' => '',
+ 'quantity_less_than_reorder_level' => '',
+ 'quantity_less_than_zero' => '',
+ 'quantity_of_items' => '',
+ 'quote' => '',
+ 'quote_number' => '',
+ 'quote_number_duplicate' => '',
+ 'quote_sent' => '',
+ 'quote_unsent' => '',
+ 'receipt' => '',
+ 'receipt_no_email' => '',
+ 'receipt_number' => '',
+ 'receipt_sent' => '',
+ 'receipt_unsent' => '',
+ 'reference_code' => 'გადახდის საცნობარო კოდი',
+ 'reference_code_invalid_characters' => 'საცნობარო კოდი უნდა შეიცავდეს მხოლოდ ასოებს და ციფრებს.',
+ 'reference_code_length_error' => 'საცნობარო კოდის სიგრძე არასწორია.',
+ 'refund' => '',
+ 'register' => '',
+ 'remove_customer' => '',
+ 'remove_discount' => '',
+ 'return' => '',
+ 'rewards' => '',
+ 'rewards_balance' => '',
+ 'rewards_package' => '',
+ 'rewards_remaining_balance' => '',
+ 'sale' => '',
+ 'sale_by_invoice' => '',
+ 'sale_for_customer' => '',
+ 'sale_time' => '',
+ 'sales_tax' => '',
+ 'sales_total' => '',
+ 'select_customer' => '',
+ 'selected_customer' => '',
+ 'send_invoice' => '',
+ 'send_quote' => '',
+ 'send_receipt' => '',
+ 'send_work_order' => '',
+ 'serial' => '',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => '',
+ 'show_receipt' => '',
+ 'start_typing_customer_name' => '',
+ 'start_typing_item_name' => '',
+ 'stock' => '',
+ 'stock_location' => '',
+ 'sub_total' => '',
+ 'successfully_deleted' => '',
+ 'successfully_restored' => '',
+ 'successfully_suspended_sale' => '',
+ 'successfully_updated' => '',
+ 'suspend_sale' => '',
+ 'suspended_doc_id' => '',
+ 'suspended_sale_id' => '',
+ 'suspended_sales' => '',
+ 'table' => '',
+ 'takings' => '',
+ 'tax' => '',
+ 'tax_id' => '',
+ 'tax_invoice' => '',
+ 'tax_percent' => '',
+ 'taxed_ind' => '',
+ 'total' => '',
+ 'total_tax_exclusive' => '',
+ 'transaction_failed' => '',
+ 'unable_to_add_item' => '',
+ 'unsuccessfully_deleted' => '',
+ 'unsuccessfully_restored' => '',
+ 'unsuccessfully_suspended_sale' => '',
+ 'unsuccessfully_updated' => '',
+ 'unsuspend' => '',
+ 'unsuspend_and_delete' => '',
+ 'update' => '',
+ 'upi' => '',
+ 'visa' => '',
+ 'wallet' => '',
+ 'wholesale' => '',
+ 'work_order' => '',
+ 'work_order_number' => '',
+ 'work_order_number_duplicate' => '',
+ 'work_order_sent' => '',
+ 'work_order_unsent' => '',
+];
diff --git a/app/Language/km/Config.php b/app/Language/km/Config.php
index 0d4edefef..a6fd6b044 100644
--- a/app/Language/km/Config.php
+++ b/app/Language/km/Config.php
@@ -1,332 +1,335 @@
"",
- "address_required" => "",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "",
- "apostrophe" => "",
- "backup_button" => "",
- "backup_database" => "",
- "barcode" => "",
- "barcode_company" => "",
- "barcode_configuration" => "",
- "barcode_content" => "",
- "barcode_first_row" => "",
- "barcode_font" => "",
- "barcode_formats" => "",
- "barcode_generate_if_empty" => "",
- "barcode_height" => "",
- "barcode_id" => "",
- "barcode_info" => "",
- "barcode_layout" => "",
- "barcode_name" => "",
- "barcode_number" => "",
- "barcode_number_in_row" => "",
- "barcode_page_cellspacing" => "",
- "barcode_page_width" => "",
- "barcode_price" => "",
- "barcode_second_row" => "",
- "barcode_third_row" => "",
- "barcode_tooltip" => "",
- "barcode_type" => "",
- "barcode_width" => "",
- "bottom" => "",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "",
- "cash_decimals_tooltip" => "",
- "cash_rounding" => "",
- "category_dropdown" => "",
- "center" => "",
- "change_apperance_tooltip" => "",
- "comma" => "",
- "company" => "",
- "company_avatar" => "",
- "company_change_image" => "",
- "company_logo" => "",
- "company_remove_image" => "",
- "company_required" => "",
- "company_select_image" => "",
- "company_website_url" => "",
- "country_codes" => "",
- "country_codes_tooltip" => "",
- "currency_code" => "",
- "currency_decimals" => "",
- "currency_symbol" => "",
- "current_employee_only" => "",
- "customer_reward" => "",
- "customer_reward_duplicate" => "",
- "customer_reward_enable" => "",
- "customer_reward_invalid_chars" => "",
- "customer_reward_required" => "",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "",
- "datetimeformat" => "",
- "decimal_point" => "",
- "default_barcode_font_size_number" => "",
- "default_barcode_font_size_required" => "",
- "default_barcode_height_number" => "",
- "default_barcode_height_required" => "",
- "default_barcode_num_in_row_number" => "",
- "default_barcode_num_in_row_required" => "",
- "default_barcode_page_cellspacing_number" => "",
- "default_barcode_page_cellspacing_required" => "",
- "default_barcode_page_width_number" => "",
- "default_barcode_page_width_required" => "",
- "default_barcode_width_number" => "",
- "default_barcode_width_required" => "",
- "default_item_columns" => "",
- "default_origin_tax_code" => "",
- "default_receivings_discount" => "",
- "default_receivings_discount_number" => "",
- "default_receivings_discount_required" => "",
- "default_sales_discount" => "",
- "default_sales_discount_number" => "",
- "default_sales_discount_required" => "",
- "default_tax_category" => "",
- "default_tax_code" => "",
- "default_tax_jurisdiction" => "",
- "default_tax_name_number" => "",
- "default_tax_name_required" => "",
- "default_tax_rate" => "",
- "default_tax_rate_1" => "",
- "default_tax_rate_2" => "",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "",
- "default_tax_rate_required" => "",
- "derive_sale_quantity" => "",
- "derive_sale_quantity_tooltip" => "",
- "dinner_table" => "",
- "dinner_table_duplicate" => "",
- "dinner_table_enable" => "",
- "dinner_table_invalid_chars" => "",
- "dinner_table_required" => "",
- "dot" => "",
- "email" => "",
- "email_configuration" => "",
- "email_mailpath" => "",
- "email_protocol" => "",
- "email_receipt_check_behaviour" => "",
- "email_receipt_check_behaviour_always" => "",
- "email_receipt_check_behaviour_last" => "",
- "email_receipt_check_behaviour_never" => "",
- "email_smtp_crypto" => "",
- "email_smtp_host" => "",
- "email_smtp_pass" => "",
- "email_smtp_port" => "",
- "email_smtp_timeout" => "",
- "email_smtp_user" => "",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "",
- "enforce_privacy_tooltip" => "",
- "fax" => "",
- "file_perm" => "There are problems with file permissions please fix and reload this page.",
- "financial_year" => "",
- "financial_year_apr" => "",
- "financial_year_aug" => "",
- "financial_year_dec" => "",
- "financial_year_feb" => "",
- "financial_year_jan" => "",
- "financial_year_jul" => "",
- "financial_year_jun" => "",
- "financial_year_mar" => "",
- "financial_year_may" => "",
- "financial_year_nov" => "",
- "financial_year_oct" => "",
- "financial_year_sep" => "",
- "floating_labels" => "",
- "gcaptcha_enable" => "",
- "gcaptcha_secret_key" => "",
- "gcaptcha_secret_key_required" => "",
- "gcaptcha_site_key" => "",
- "gcaptcha_site_key_required" => "",
- "gcaptcha_tooltip" => "",
- "general" => "",
- "general_configuration" => "",
- "giftcard_number" => "",
- "giftcard_random" => "",
- "giftcard_series" => "",
- "image_allowed_file_types" => "",
- "image_max_height_tooltip" => "",
- "image_max_size_tooltip" => "",
- "image_max_width_tooltip" => "",
- "image_restrictions" => "",
- "include_hsn" => "",
- "info" => "",
- "info_configuration" => "",
- "input_groups" => "",
- "integrations" => "",
- "integrations_configuration" => "",
- "invoice" => "",
- "invoice_configuration" => "",
- "invoice_default_comments" => "",
- "invoice_email_message" => "",
- "invoice_enable" => "",
- "invoice_printer" => "",
- "invoice_type" => "",
- "is_readable" => "",
- "is_writable" => "is writable, but the permissions are higher than 750.",
- "item_markup" => "",
- "jsprintsetup_required" => "",
- "language" => "",
- "last_used_invoice_number" => "",
- "last_used_quote_number" => "",
- "last_used_work_order_number" => "",
- "left" => "",
- "license" => "",
- "license_configuration" => "",
- "line_sequence" => "",
- "lines_per_page" => "",
- "lines_per_page_number" => "",
- "lines_per_page_required" => "",
- "locale" => "",
- "locale_configuration" => "",
- "locale_info" => "",
- "location" => "",
- "location_configuration" => "",
- "location_info" => "",
- "login_form" => "",
- "logout" => "",
- "mailchimp" => "",
- "mailchimp_api_key" => "",
- "mailchimp_configuration" => "",
- "mailchimp_key_successfully" => "",
- "mailchimp_key_unsuccessfully" => "",
- "mailchimp_lists" => "",
- "mailchimp_tooltip" => "",
- "message" => "",
- "message_configuration" => "",
- "msg_msg" => "",
- "msg_msg_placeholder" => "",
- "msg_pwd" => "",
- "msg_pwd_required" => "",
- "msg_src" => "",
- "msg_src_required" => "",
- "msg_uid" => "",
- "msg_uid_required" => "",
- "multi_pack_enabled" => "",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "",
- "notify_alignment" => "",
- "number_format" => "",
- "number_locale" => "",
- "number_locale_invalid" => "",
- "number_locale_required" => "",
- "number_locale_tooltip" => "",
- "os_timezone" => "",
- "ospos_info" => "",
- "payment_options_order" => "",
- "perm_risk" => "Permissions higher than 750 leaves this software at risk.",
- "phone" => "",
- "phone_required" => "",
- "print_bottom_margin" => "",
- "print_bottom_margin_number" => "",
- "print_bottom_margin_required" => "",
- "print_delay_autoreturn" => "",
- "print_delay_autoreturn_number" => "",
- "print_delay_autoreturn_required" => "",
- "print_footer" => "",
- "print_header" => "",
- "print_left_margin" => "",
- "print_left_margin_number" => "",
- "print_left_margin_required" => "",
- "print_receipt_check_behaviour" => "",
- "print_receipt_check_behaviour_always" => "",
- "print_receipt_check_behaviour_last" => "",
- "print_receipt_check_behaviour_never" => "",
- "print_right_margin" => "",
- "print_right_margin_number" => "",
- "print_right_margin_required" => "",
- "print_silently" => "",
- "print_top_margin" => "",
- "print_top_margin_number" => "",
- "print_top_margin_required" => "",
- "quantity_decimals" => "",
- "quick_cash_enable" => "",
- "quote_default_comments" => "",
- "receipt" => "",
- "receipt_category" => "",
- "receipt_configuration" => "",
- "receipt_default" => "",
- "receipt_font_size" => "",
- "receipt_font_size_number" => "",
- "receipt_font_size_required" => "",
- "receipt_info" => "",
- "receipt_printer" => "",
- "receipt_short" => "",
- "receipt_show_company_name" => "",
- "receipt_show_description" => "",
- "receipt_show_serialnumber" => "",
- "receipt_show_tax_ind" => "",
- "receipt_show_taxes" => "",
- "receipt_show_total_discount" => "",
- "receipt_template" => "",
- "receiving_calculate_average_price" => "",
- "recv_invoice_format" => "",
- "register_mode_default" => "",
- "report_an_issue" => "",
- "return_policy_required" => "",
- "reward" => "",
- "reward_configuration" => "",
- "right" => "",
- "sales_invoice_format" => "",
- "sales_quote_format" => "",
- "mailpath_invalid" => "",
- "saved_successfully" => "",
- "saved_unsuccessfully" => "",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "Please use the below info for issue reporting.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "",
- "statistics" => "",
- "statistics_tooltip" => "",
- "stock_location" => "",
- "stock_location_duplicate" => "",
- "stock_location_invalid_chars" => "",
- "stock_location_required" => "",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "",
- "suggestions_second_column" => "",
- "suggestions_third_column" => "",
- "system_conf" => "Setup & Conf",
- "system_info" => "System Info",
- "table" => "",
- "table_configuration" => "",
- "takings_printer" => "",
- "tax" => "",
- "tax_category" => "",
- "tax_category_duplicate" => "",
- "tax_category_invalid_chars" => "",
- "tax_category_required" => "",
- "tax_category_used" => "",
- "tax_configuration" => "",
- "tax_decimals" => "",
- "tax_id" => "",
- "tax_included" => "",
- "theme" => "",
- "theme_preview" => "",
- "thousands_separator" => "",
- "timezone" => "",
- "timezone_error" => "",
- "top" => "",
- "use_destination_based_tax" => "",
- "user_timezone" => "",
- "website" => "",
- "wholesale_markup" => "",
- "work_order_enable" => "",
- "work_order_format" => "",
+ 'address' => '',
+ 'address_required' => '',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => '',
+ 'apostrophe' => '',
+ 'backup_button' => '',
+ 'backup_database' => '',
+ 'barcode' => '',
+ 'barcode_company' => '',
+ 'barcode_configuration' => '',
+ 'barcode_content' => '',
+ 'barcode_first_row' => '',
+ 'barcode_font' => '',
+ 'barcode_formats' => '',
+ 'barcode_generate_if_empty' => '',
+ 'barcode_height' => '',
+ 'barcode_id' => '',
+ 'barcode_info' => '',
+ 'barcode_layout' => '',
+ 'barcode_name' => '',
+ 'barcode_number' => '',
+ 'barcode_number_in_row' => '',
+ 'barcode_page_cellspacing' => '',
+ 'barcode_page_width' => '',
+ 'barcode_price' => '',
+ 'barcode_second_row' => '',
+ 'barcode_third_row' => '',
+ 'barcode_tooltip' => '',
+ 'barcode_type' => '',
+ 'barcode_width' => '',
+ 'bottom' => '',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => '',
+ 'cash_decimals_tooltip' => '',
+ 'cash_rounding' => '',
+ 'category_dropdown' => '',
+ 'center' => '',
+ 'change_apperance_tooltip' => '',
+ 'comma' => '',
+ 'company' => '',
+ 'company_avatar' => '',
+ 'company_change_image' => '',
+ 'company_logo' => '',
+ 'company_remove_image' => '',
+ 'company_required' => '',
+ 'company_select_image' => '',
+ 'company_website_url' => '',
+ 'country_codes' => '',
+ 'country_codes_tooltip' => '',
+ 'currency_code' => '',
+ 'currency_decimals' => '',
+ 'currency_symbol' => '',
+ 'current_employee_only' => '',
+ 'customer_reward' => '',
+ 'customer_reward_duplicate' => '',
+ 'customer_reward_enable' => '',
+ 'customer_reward_invalid_chars' => '',
+ 'customer_reward_required' => '',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => '',
+ 'datetimeformat' => '',
+ 'decimal_point' => '',
+ 'default_barcode_font_size_number' => '',
+ 'default_barcode_font_size_required' => '',
+ 'default_barcode_height_number' => '',
+ 'default_barcode_height_required' => '',
+ 'default_barcode_num_in_row_number' => '',
+ 'default_barcode_num_in_row_required' => '',
+ 'default_barcode_page_cellspacing_number' => '',
+ 'default_barcode_page_cellspacing_required' => '',
+ 'default_barcode_page_width_number' => '',
+ 'default_barcode_page_width_required' => '',
+ 'default_barcode_width_number' => '',
+ 'default_barcode_width_required' => '',
+ 'default_item_columns' => '',
+ 'default_origin_tax_code' => '',
+ 'default_receivings_discount' => '',
+ 'default_receivings_discount_number' => '',
+ 'default_receivings_discount_required' => '',
+ 'default_sales_discount' => '',
+ 'default_sales_discount_number' => '',
+ 'default_sales_discount_required' => '',
+ 'default_tax_category' => '',
+ 'default_tax_code' => '',
+ 'default_tax_jurisdiction' => '',
+ 'default_tax_name_number' => '',
+ 'default_tax_name_required' => '',
+ 'default_tax_rate' => '',
+ 'default_tax_rate_1' => '',
+ 'default_tax_rate_2' => '',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => '',
+ 'default_tax_rate_required' => '',
+ 'derive_sale_quantity' => '',
+ 'derive_sale_quantity_tooltip' => '',
+ 'dinner_table' => '',
+ 'dinner_table_duplicate' => '',
+ 'dinner_table_enable' => '',
+ 'dinner_table_invalid_chars' => '',
+ 'dinner_table_required' => '',
+ 'dot' => '',
+ 'email' => '',
+ 'email_configuration' => '',
+ 'email_mailpath' => '',
+ 'email_protocol' => '',
+ 'email_receipt_check_behaviour' => '',
+ 'email_receipt_check_behaviour_always' => '',
+ 'email_receipt_check_behaviour_last' => '',
+ 'email_receipt_check_behaviour_never' => '',
+ 'email_smtp_crypto' => '',
+ 'email_smtp_host' => '',
+ 'email_smtp_pass' => '',
+ 'email_smtp_port' => '',
+ 'email_smtp_timeout' => '',
+ 'email_smtp_user' => '',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => '',
+ 'enforce_privacy_tooltip' => '',
+ 'fax' => '',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => '',
+ 'financial_year_apr' => '',
+ 'financial_year_aug' => '',
+ 'financial_year_dec' => '',
+ 'financial_year_feb' => '',
+ 'financial_year_jan' => '',
+ 'financial_year_jul' => '',
+ 'financial_year_jun' => '',
+ 'financial_year_mar' => '',
+ 'financial_year_may' => '',
+ 'financial_year_nov' => '',
+ 'financial_year_oct' => '',
+ 'financial_year_sep' => '',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => '',
+ 'gcaptcha_secret_key' => '',
+ 'gcaptcha_secret_key_required' => '',
+ 'gcaptcha_site_key' => '',
+ 'gcaptcha_site_key_required' => '',
+ 'gcaptcha_tooltip' => '',
+ 'general' => '',
+ 'general_configuration' => '',
+ 'giftcard_number' => '',
+ 'giftcard_random' => '',
+ 'giftcard_series' => '',
+ 'image_allowed_file_types' => '',
+ 'image_max_height_tooltip' => '',
+ 'image_max_size_tooltip' => '',
+ 'image_max_width_tooltip' => '',
+ 'image_restrictions' => '',
+ 'include_hsn' => '',
+ 'info' => '',
+ 'info_configuration' => '',
+ 'input_groups' => '',
+ 'integrations' => '',
+ 'integrations_configuration' => '',
+ 'invoice' => '',
+ 'invoice_configuration' => '',
+ 'invoice_default_comments' => '',
+ 'invoice_email_message' => '',
+ 'invoice_enable' => '',
+ 'invoice_printer' => '',
+ 'invoice_type' => '',
+ 'is_readable' => '',
+ 'is_writable' => 'is writable, but the permissions are higher than 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => '',
+ 'language' => '',
+ 'last_used_invoice_number' => '',
+ 'last_used_quote_number' => '',
+ 'last_used_work_order_number' => '',
+ 'left' => '',
+ 'license' => '',
+ 'license_configuration' => '',
+ 'line_sequence' => '',
+ 'lines_per_page' => '',
+ 'lines_per_page_number' => '',
+ 'lines_per_page_required' => '',
+ 'locale' => '',
+ 'locale_configuration' => '',
+ 'locale_info' => '',
+ 'location' => '',
+ 'location_configuration' => '',
+ 'location_info' => '',
+ 'login_form' => '',
+ 'logout' => '',
+ 'mailchimp' => '',
+ 'mailchimp_api_key' => '',
+ 'mailchimp_configuration' => '',
+ 'mailchimp_key_successfully' => '',
+ 'mailchimp_key_unsuccessfully' => '',
+ 'mailchimp_lists' => '',
+ 'mailchimp_tooltip' => '',
+ 'message' => '',
+ 'message_configuration' => '',
+ 'msg_msg' => '',
+ 'msg_msg_placeholder' => '',
+ 'msg_pwd' => '',
+ 'msg_pwd_required' => '',
+ 'msg_src' => '',
+ 'msg_src_required' => '',
+ 'msg_uid' => '',
+ 'msg_uid_required' => '',
+ 'multi_pack_enabled' => '',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => '',
+ 'notify_alignment' => '',
+ 'number_format' => '',
+ 'number_locale' => '',
+ 'number_locale_invalid' => '',
+ 'number_locale_required' => '',
+ 'number_locale_tooltip' => '',
+ 'os_timezone' => '',
+ 'ospos_info' => '',
+ 'payment_options_order' => '',
+ 'payment_reference_code_length_limits' => 'កូដយោងការទូទាត់
ដែនកំណត់ប្រវែង',
+ 'payment_reference_code_length_max_label' => 'អតិបរមា',
+ 'payment_reference_code_length_min_label' => 'អប្បបរមា',
+ 'perm_risk' => 'Permissions higher than 750 leaves this software at risk.',
+ 'phone' => '',
+ 'phone_required' => '',
+ 'print_bottom_margin' => '',
+ 'print_bottom_margin_number' => '',
+ 'print_bottom_margin_required' => '',
+ 'print_delay_autoreturn' => '',
+ 'print_delay_autoreturn_number' => '',
+ 'print_delay_autoreturn_required' => '',
+ 'print_footer' => '',
+ 'print_header' => '',
+ 'print_left_margin' => '',
+ 'print_left_margin_number' => '',
+ 'print_left_margin_required' => '',
+ 'print_receipt_check_behaviour' => '',
+ 'print_receipt_check_behaviour_always' => '',
+ 'print_receipt_check_behaviour_last' => '',
+ 'print_receipt_check_behaviour_never' => '',
+ 'print_right_margin' => '',
+ 'print_right_margin_number' => '',
+ 'print_right_margin_required' => '',
+ 'print_silently' => '',
+ 'print_top_margin' => '',
+ 'print_top_margin_number' => '',
+ 'print_top_margin_required' => '',
+ 'quantity_decimals' => '',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => '',
+ 'receipt' => '',
+ 'receipt_category' => '',
+ 'receipt_configuration' => '',
+ 'receipt_default' => '',
+ 'receipt_font_size' => '',
+ 'receipt_font_size_number' => '',
+ 'receipt_font_size_required' => '',
+ 'receipt_info' => '',
+ 'receipt_printer' => '',
+ 'receipt_short' => '',
+ 'receipt_show_company_name' => '',
+ 'receipt_show_description' => '',
+ 'receipt_show_serialnumber' => '',
+ 'receipt_show_tax_ind' => '',
+ 'receipt_show_taxes' => '',
+ 'receipt_show_total_discount' => '',
+ 'receipt_template' => '',
+ 'receiving_calculate_average_price' => '',
+ 'recv_invoice_format' => '',
+ 'register_mode_default' => '',
+ 'report_an_issue' => '',
+ 'return_policy_required' => '',
+ 'reward' => '',
+ 'reward_configuration' => '',
+ 'right' => '',
+ 'sales_invoice_format' => '',
+ 'sales_quote_format' => '',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => '',
+ 'saved_unsuccessfully' => '',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Please use the below info for issue reporting.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => '',
+ 'statistics' => '',
+ 'statistics_tooltip' => '',
+ 'stock_location' => '',
+ 'stock_location_duplicate' => '',
+ 'stock_location_invalid_chars' => '',
+ 'stock_location_required' => '',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => '',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => '',
+ 'suggestions_second_column' => '',
+ 'suggestions_third_column' => '',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => '',
+ 'table_configuration' => '',
+ 'takings_printer' => '',
+ 'tax' => '',
+ 'tax_category' => '',
+ 'tax_category_duplicate' => '',
+ 'tax_category_invalid_chars' => '',
+ 'tax_category_required' => '',
+ 'tax_category_used' => '',
+ 'tax_configuration' => '',
+ 'tax_decimals' => '',
+ 'tax_id' => '',
+ 'tax_included' => '',
+ 'theme' => '',
+ 'theme_preview' => '',
+ 'thousands_separator' => '',
+ 'timezone' => '',
+ 'timezone_error' => '',
+ 'top' => '',
+ 'use_destination_based_tax' => '',
+ 'user_timezone' => '',
+ 'website' => '',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => '',
+ 'work_order_format' => '',
];
diff --git a/app/Language/km/Login.php b/app/Language/km/Login.php
index ea92cd2de..90168da35 100644
--- a/app/Language/km/Login.php
+++ b/app/Language/km/Login.php
@@ -1,25 +1,30 @@
"ខ្ញុំមិនមែនជាម៉ាស៊ីនទេ។",
- "go" => "ចាប់ផ្ដើម",
- "invalid_gcaptcha" => "មិនត្រឹមត្រូវខ្ញុំមិនមែនជាម៉ាស៊ីនទេ។",
- "invalid_installation" => "ការបញ្ចូលមិនត្រឹមត្រូវ, សូមពិនិត្យមើលឯកសារ php.ini របស់អ្នក។",
- "invalid_username_and_password" => "ឈ្មោះឬក៏ពាក្យសំងាត់មិនត្រឹមត្រូវ។",
- "login" => "ចូល",
- "logout" => "",
- "migration_needed" => "",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "ពាក្យសំងាត់",
- "required_username" => "",
- "username" => "ឈ្មោះ",
- "welcome" => "",
+ "gcaptcha" => "ខ្ញុំមិនមែនជាម៉ាស៊ីនទេ។",
+ "go" => "ចាប់ផ្ដើម",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "មិនត្រឹមត្រូវខ្ញុំមិនមែនជាម៉ាស៊ីនទេ។",
+ "invalid_installation" => "ការបញ្ចូលមិនត្រឹមត្រូវ, សូមពិនិត្យមើលឯកសារ php.ini របស់អ្នក។",
+ "invalid_username_and_password" => "ឈ្មោះឬក៏ពាក្យសំងាត់មិនត្រឹមត្រូវ។",
+ "login" => "ចូល",
+ "logout" => "",
+ "migrating_database" => "កំពុងធ្វើចំណាកស្រុកមូលដ្ឋានទិន្នន័យ",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "មូលដ្ឋានទិន្នន័យបានធ្វើចំណាកស្រុកដោយជោគជ័យ!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "ពាក្យសំងាត់",
+ "required_username" => "",
+ "username" => "ឈ្មោះ",
+ "welcome" => ""
];
diff --git a/app/Language/km/Sales.php b/app/Language/km/Sales.php
index 0c43ea100..daba7f906 100644
--- a/app/Language/km/Sales.php
+++ b/app/Language/km/Sales.php
@@ -1,232 +1,235 @@
"ពិន្ទុដែលប្រើប្រាស់បាន",
- "rewards_package" => "រង្វាន់",
- "rewards_remaining_balance" => "ពន្ទុកសំរាប់ដូរយករង្វាន់នៅសល់ ",
- "account_number" => "លេខគណនី",
- "add_payment" => "បញ្ជូលរបៀបបង់ប្រាក់",
- "amount_due" => "ទឹកប្រាក់ដែលត្រូវបង់",
- "amount_tendered" => "ទឹកប្រាក់បានមកពីការបង់ទាំងផ្សេងៗ",
- "authorized_signature" => "ហត្ថលេខា",
- "cancel_sale" => "បោះបង់",
- "cash" => "ប្រាក់",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "ទឹកប្រាក់ដែរធ្វើការកែប្រែ",
- "cash_deposit" => "ប្រាក់កក់",
- "cash_filter" => "ប្រាក់",
- "change_due" => "សុពលភាពនៃការកែប្រែ",
- "change_price" => "ប្ដូរតម្លៃលក់",
- "check" => "ឆែក",
- "check_balance" => "ឆែក ចំនួននៅសល់",
- "check_filter" => "ឆែក",
- "close" => "",
- "comment" => "យោបល់",
- "comments" => "យោបល់",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "សំរេច",
- "confirm_cancel_sale" => "តើអ្នកពិតជាចង់លុបការលក់នេះមែនទេ? រាល់ទំនិញទាំងអស់នឹងត្រូវបានលុប។",
- "confirm_delete" => "តើអ្នកពិតជាចង់លុបការលក់ដែរបានជ្រើសរើសមែនទេ?",
- "confirm_restore" => "តើអ្នកពិតជាចង់ដាក់មកវិញនៅការលក់ដែរបានជ្រើសរើសមែនទេ?",
- "credit" => "បណ្ណ័មូលបត្របំណុល",
- "credit_deposit" => "ដាក់ លុយ",
- "credit_filter" => "បណ្ណ័មូលបត្របំណុល",
- "current_table" => "",
- "customer" => "អតិថិជន",
- "customer_address" => "អាសយដ្ឋាន",
- "customer_discount" => "បញ្ចុះតម្លៃ",
- "customer_email" => "អ៊ីម៉ែល",
- "customer_location" => "ទីតាំង",
- "customer_mailchimp_status" => "",
- "customer_optional" => "(ត្រូវការបញ្ចូល ប្រាក់ដែលត្រូវបង់)",
- "customer_required" => "(ត្រូវការ)",
- "customer_total" => "សរុប",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "ថ្ងៃខែ លក់",
- "date_range" => "ចន្លោះ ថ្ងៃខែ",
- "date_required" => "ត្រូវតែបញ្ជូល ថ្ងៃខែដែលត្រឹមត្រូវ",
- "date_type" => "ត្រូវការបញ្ចូលថ្ងៃខែជាចាំបាច់។",
- "debit" => "កាត ធនាគារ",
- "debit_filter" => "",
- "delete" => "យល់ព្រម អោយលុប",
- "delete_confirmation" => "តើអ្នកពិតជាចង់លុបការលក់នេះមែនទេ? ធ្វើដូចនេះអ្នកមិនអាចហៅវាត្រលប់មកវិញទេ។",
- "delete_entire_sale" => "លុបការលក់ទាំងអស់",
- "delete_successful" => "ការលក់ ត្រូវបានលុបដោយជោគជ័យ។",
- "delete_unsuccessful" => "ការលក់ មិនត្រូវបានលុប។",
- "description_abbrv" => "បរិយាយ។",
- "discard" => "មិនយកជាការ",
- "discard_quote" => "",
- "discount" => "បញ្ចុះតម្លៃ",
- "discount_included" => "បញ្ចុះតម្លៃ %",
- "discount_short" => "%",
- "due" => "ដល់ពេល",
- "due_filter" => "ដល់ពេល",
- "edit" => "កែប្រែ",
- "edit_item" => "កែប្រែទំនិញ",
- "edit_sale" => "កែប្រែការលក់",
- "email_receipt" => "អ្នកទទួលអ៊ីម៉េល",
- "employee" => "បុគ្គលិក",
- "entry" => "បញ្ចូល",
- "error_editing_item" => "មានកំហុស ក្នុងការកែប្រែទំនិញ",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "ស្វែងរក ឬស្កេនទំនិញ",
- "find_or_scan_item_or_receipt" => "ស្វែងរក ឬស្កេនទំនិញ ឬ វិក័យបត្រ",
- "giftcard" => "កាតអំណោយ",
- "giftcard_balance" => "សមតុល្យលើកាតអំណោយ",
- "giftcard_filter" => "",
- "giftcard_number" => "លេខកាតអំណោយ",
- "group_by_category" => "",
- "group_by_type" => "",
- "hsn" => "",
- "id" => "",
- "include_prices" => "",
- "invoice" => "",
- "invoice_confirm" => "",
- "invoice_enable" => "",
- "invoice_filter" => "",
- "invoice_no_email" => "",
- "invoice_number" => "",
- "invoice_number_duplicate" => "",
- "invoice_sent" => "",
- "invoice_total" => "",
- "invoice_type_custom_invoice" => "",
- "invoice_type_custom_tax_invoice" => "",
- "invoice_type_invoice" => "",
- "invoice_type_tax_invoice" => "",
- "invoice_unsent" => "",
- "invoice_update" => "",
- "item_insufficient_of_stock" => "",
- "item_name" => "",
- "item_number" => "",
- "item_out_of_stock" => "",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "",
- "must_enter_numeric" => "",
- "must_enter_numeric_giftcard" => "",
- "new_customer" => "",
- "new_item" => "",
- "no_description" => "",
- "no_filter" => "",
- "no_items_in_cart" => "",
- "no_sales_to_display" => "",
- "none_selected" => "",
- "nontaxed_ind" => "",
- "not_authorized" => "",
- "one_or_multiple" => "",
- "payment" => "",
- "payment_amount" => "",
- "payment_not_cover_total" => "",
- "payment_type" => "",
- "payments" => "",
- "payments_total" => "",
- "price" => "",
- "print_after_sale" => "",
- "quantity" => "",
- "quantity_less_than_reorder_level" => "",
- "quantity_less_than_zero" => "",
- "quantity_of_items" => "",
- "quote" => "",
- "quote_number" => "",
- "quote_number_duplicate" => "",
- "quote_sent" => "",
- "quote_unsent" => "",
- "receipt" => "",
- "receipt_no_email" => "",
- "receipt_number" => "",
- "receipt_sent" => "",
- "receipt_unsent" => "",
- "refund" => "",
- "register" => "",
- "remove_customer" => "",
- "remove_discount" => "",
- "return" => "",
- "rewards" => "",
- "rewards_balance" => "",
- "sale" => "",
- "sale_by_invoice" => "",
- "sale_for_customer" => "",
- "sale_time" => "",
- "sales_tax" => "",
- "sales_total" => "",
- "select_customer" => "",
- "send_invoice" => "",
- "send_quote" => "",
- "send_receipt" => "",
- "send_work_order" => "",
- "serial" => "",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "",
- "show_receipt" => "",
- "start_typing_customer_name" => "",
- "start_typing_item_name" => "",
- "stock" => "",
- "stock_location" => "",
- "sub_total" => "",
- "successfully_deleted" => "",
- "successfully_restored" => "",
- "successfully_suspended_sale" => "",
- "successfully_updated" => "",
- "suspend_sale" => "",
- "suspended_doc_id" => "",
- "suspended_sale_id" => "",
- "suspended_sales" => "",
- "table" => "",
- "takings" => "",
- "tax" => "",
- "tax_id" => "",
- "tax_invoice" => "",
- "tax_percent" => "",
- "taxed_ind" => "",
- "total" => "",
- "total_tax_exclusive" => "",
- "transaction_failed" => "",
- "unable_to_add_item" => "",
- "unsuccessfully_deleted" => "",
- "unsuccessfully_restored" => "",
- "unsuccessfully_suspended_sale" => "",
- "unsuccessfully_updated" => "",
- "unsuspend" => "",
- "unsuspend_and_delete" => "",
- "update" => "",
- "upi" => "",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "",
- "work_order_number" => "",
- "work_order_number_duplicate" => "",
- "work_order_sent" => "",
- "work_order_unsent" => "",
- "sale_not_found" => "",
+ 'account_number' => 'លេខគណនី',
+ 'add_payment' => 'បញ្ជូលរបៀបបង់ប្រាក់',
+ 'amount_due' => 'ទឹកប្រាក់ដែលត្រូវបង់',
+ 'amount_tendered' => 'ទឹកប្រាក់បានមកពីការបង់ទាំងផ្សេងៗ',
+ 'authorized_signature' => 'ហត្ថលេខា',
+ 'cancel_sale' => 'បោះបង់',
+ 'cash' => 'ប្រាក់',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'ទឹកប្រាក់ដែរធ្វើការកែប្រែ',
+ 'cash_deposit' => 'ប្រាក់កក់',
+ 'cash_filter' => 'ប្រាក់',
+ 'change_due' => 'សុពលភាពនៃការកែប្រែ',
+ 'change_price' => 'ប្ដូរតម្លៃលក់',
+ 'check' => 'ឆែក',
+ 'check_balance' => 'ឆែក ចំនួននៅសល់',
+ 'check_filter' => 'ឆែក',
+ 'close' => '',
+ 'comment' => 'យោបល់',
+ 'comments' => 'យោបល់',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'សំរេច',
+ 'confirm_cancel_sale' => 'តើអ្នកពិតជាចង់លុបការលក់នេះមែនទេ? រាល់ទំនិញទាំងអស់នឹងត្រូវបានលុប។',
+ 'confirm_delete' => 'តើអ្នកពិតជាចង់លុបការលក់ដែរបានជ្រើសរើសមែនទេ?',
+ 'confirm_restore' => 'តើអ្នកពិតជាចង់ដាក់មកវិញនៅការលក់ដែរបានជ្រើសរើសមែនទេ?',
+ 'credit' => 'បណ្ណ័មូលបត្របំណុល',
+ 'credit_deposit' => 'ដាក់ លុយ',
+ 'credit_filter' => 'បណ្ណ័មូលបត្របំណុល',
+ 'current_table' => '',
+ 'customer' => 'អតិថិជន',
+ 'customer_address' => 'អាសយដ្ឋាន',
+ 'customer_discount' => 'បញ្ចុះតម្លៃ',
+ 'customer_email' => 'អ៊ីម៉ែល',
+ 'customer_location' => 'ទីតាំង',
+ 'customer_mailchimp_status' => '',
+ 'customer_optional' => '(ត្រូវការបញ្ចូល ប្រាក់ដែលត្រូវបង់)',
+ 'customer_required' => '(ត្រូវការ)',
+ 'customer_total' => 'សរុប',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'ពិន្ទុដែលប្រើប្រាស់បាន',
+ 'daily_sales' => '',
+ 'date' => 'ថ្ងៃខែ លក់',
+ 'date_range' => 'ចន្លោះ ថ្ងៃខែ',
+ 'date_required' => "ត្រូវតែបញ្ជូល ថ្ងៃខែ\u{200b}ដែលត្រឹមត្រូវ",
+ 'date_type' => "ត្រូវការបញ្ចូលថ្ងៃខែ\u{200b}ជាចាំបាច់។",
+ 'debit' => 'កាត ធនាគារ',
+ 'debit_filter' => '',
+ 'delete' => 'យល់ព្រម អោយលុប',
+ 'delete_confirmation' => 'តើអ្នកពិតជាចង់លុបការលក់នេះមែនទេ? ធ្វើដូចនេះអ្នកមិនអាចហៅវាត្រលប់មកវិញទេ។',
+ 'delete_entire_sale' => 'លុបការលក់ទាំងអស់',
+ 'delete_successful' => 'ការលក់ ត្រូវបានលុបដោយជោគជ័យ។',
+ 'delete_unsuccessful' => 'ការលក់ មិនត្រូវបានលុប។',
+ 'description_abbrv' => 'បរិយាយ។',
+ 'discard' => 'មិនយកជាការ',
+ 'discard_quote' => '',
+ 'discount' => 'បញ្ចុះតម្លៃ',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => 'បញ្ចុះតម្លៃ %',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'ដល់ពេល',
+ 'due_filter' => 'ដល់ពេល',
+ 'edit' => 'កែប្រែ',
+ 'edit_item' => 'កែប្រែទំនិញ',
+ 'edit_sale' => 'កែប្រែការលក់',
+ 'email_receipt' => 'អ្នកទទួលអ៊ីម៉េល',
+ 'employee' => 'បុគ្គលិក',
+ 'entry' => 'បញ្ចូល',
+ 'error_editing_item' => 'មានកំហុស ក្នុងការកែប្រែទំនិញ',
+ 'find_or_scan_item' => 'ស្វែងរក ឬស្កេនទំនិញ',
+ 'find_or_scan_item_or_receipt' => "ស្វែងរក ឬ\u{200b}ស្កេនទំនិញ ឬ វិក័យបត្រ",
+ 'giftcard' => 'កាតអំណោយ',
+ 'giftcard_balance' => 'សមតុល្យលើកាតអំណោយ',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'លេខកាតអំណោយ',
+ 'group_by_category' => '',
+ 'group_by_type' => '',
+ 'hsn' => '',
+ 'id' => '',
+ 'include_prices' => '',
+ 'invoice' => '',
+ 'invoice_confirm' => '',
+ 'invoice_enable' => '',
+ 'invoice_filter' => '',
+ 'invoice_no_email' => '',
+ 'invoice_number' => '',
+ 'invoice_number_duplicate' => '',
+ 'invoice_sent' => '',
+ 'invoice_total' => '',
+ 'invoice_type_custom_invoice' => '',
+ 'invoice_type_custom_tax_invoice' => '',
+ 'invoice_type_invoice' => '',
+ 'invoice_type_tax_invoice' => '',
+ 'invoice_unsent' => '',
+ 'invoice_update' => '',
+ 'item_insufficient_of_stock' => '',
+ 'item_name' => '',
+ 'item_number' => '',
+ 'item_out_of_stock' => '',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => '',
+ 'must_enter_numeric' => '',
+ 'must_enter_numeric_giftcard' => '',
+ 'must_enter_reference_code' => 'លេខយោង/ទាញយកត្រូវតែបញ្ចូល។',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => '',
+ 'new_item' => '',
+ 'no_description' => '',
+ 'no_filter' => '',
+ 'no_items_in_cart' => '',
+ 'no_sales_to_display' => '',
+ 'none_selected' => '',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => '',
+ 'one_or_multiple' => '',
+ 'payment' => '',
+ 'payment_amount' => '',
+ 'payment_not_cover_total' => '',
+ 'payment_type' => '',
+ 'payments' => '',
+ 'payments_total' => '',
+ 'price' => '',
+ 'print_after_sale' => '',
+ 'quantity' => '',
+ 'quantity_less_than_reorder_level' => '',
+ 'quantity_less_than_zero' => '',
+ 'quantity_of_items' => '',
+ 'quote' => '',
+ 'quote_number' => '',
+ 'quote_number_duplicate' => '',
+ 'quote_sent' => '',
+ 'quote_unsent' => '',
+ 'receipt' => '',
+ 'receipt_no_email' => '',
+ 'receipt_number' => '',
+ 'receipt_sent' => '',
+ 'receipt_unsent' => '',
+ 'reference_code' => 'កូដយោងការទូទាត់',
+ 'reference_code_invalid_characters' => 'កូដយោងត្រូវតែមានតែអក្សរ និងលេខប៉ុណ្ណោះ។',
+ 'reference_code_length_error' => 'ប្រវែងកូដយោងមិនត្រឹមត្រូវ។',
+ 'refund' => '',
+ 'register' => '',
+ 'remove_customer' => '',
+ 'remove_discount' => '',
+ 'return' => '',
+ 'rewards' => '',
+ 'rewards_balance' => '',
+ 'rewards_package' => 'រង្វាន់',
+ 'rewards_remaining_balance' => 'ពន្ទុកសំរាប់ដូរយករង្វាន់នៅសល់ ',
+ 'sale' => '',
+ 'sale_by_invoice' => '',
+ 'sale_for_customer' => '',
+ 'sale_time' => '',
+ 'sales_tax' => '',
+ 'sales_total' => '',
+ 'select_customer' => '',
+ 'send_invoice' => '',
+ 'send_quote' => '',
+ 'send_receipt' => '',
+ 'send_work_order' => '',
+ 'serial' => '',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => '',
+ 'show_receipt' => '',
+ 'start_typing_customer_name' => '',
+ 'start_typing_item_name' => '',
+ 'stock' => '',
+ 'stock_location' => '',
+ 'sub_total' => '',
+ 'successfully_deleted' => '',
+ 'successfully_restored' => '',
+ 'successfully_suspended_sale' => '',
+ 'successfully_updated' => '',
+ 'suspend_sale' => '',
+ 'suspended_doc_id' => '',
+ 'suspended_sale_id' => '',
+ 'suspended_sales' => '',
+ 'table' => '',
+ 'takings' => '',
+ 'tax' => '',
+ 'tax_id' => '',
+ 'tax_invoice' => '',
+ 'tax_percent' => '',
+ 'taxed_ind' => '',
+ 'total' => '',
+ 'total_tax_exclusive' => '',
+ 'transaction_failed' => '',
+ 'unable_to_add_item' => '',
+ 'unsuccessfully_deleted' => '',
+ 'unsuccessfully_restored' => '',
+ 'unsuccessfully_suspended_sale' => '',
+ 'unsuccessfully_updated' => '',
+ 'unsuspend' => '',
+ 'unsuspend_and_delete' => '',
+ 'update' => '',
+ 'upi' => '',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => '',
+ 'work_order_number' => '',
+ 'work_order_number_duplicate' => '',
+ 'work_order_sent' => '',
+ 'work_order_unsent' => '',
];
diff --git a/app/Language/lo/Config.php b/app/Language/lo/Config.php
index 08fcc6022..34d3f48cb 100644
--- a/app/Language/lo/Config.php
+++ b/app/Language/lo/Config.php
@@ -1,332 +1,335 @@
"ທີ່ຢູ່ບໍລິສັດ",
- "address_required" => "ກະລຸນາໃສ່ທີ່ຢູ່ບໍລິສັດ.",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "ອະນຸຍາດໃຫ້ມີບາໂຄດຊໍ້າກັນ",
- "apostrophe" => "ຈຸດລາຍນໍ້າ",
- "backup_button" => "ການສຳຮອງ",
- "backup_database" => "ການສຳຮອງຖານຂໍ້ມູນ",
- "barcode" => "ບາໂຄດ",
- "barcode_company" => "ຊື່ບໍລິສັດ",
- "barcode_configuration" => "ການຕັ້ງຄ່າກ່ຽວກັບ Barcode",
- "barcode_content" => "ເນື່ອຫາຂອງ Barcode",
- "barcode_first_row" => "ແຖວທີ 1",
- "barcode_font" => "ຟອນທ໌",
- "barcode_formats" => "ຮູບແບບການໃສ່ຂໍ້ມູນ",
- "barcode_generate_if_empty" => "ສ້າງຖ້າວ່າງເປົ່າ.",
- "barcode_height" => "ສູງ (px)",
- "barcode_id" => "ລະຫັດສິນຄ້າ/ຊື່ສິນຄ້າ",
- "barcode_info" => "ຂໍ້ມູນການຕັ້ງຄ່າກ່ຽວກັບ Barcode",
- "barcode_layout" => "ການຈັດລຽງຮູບແບບ Barcode",
- "barcode_name" => "ຊື່ສິນຄ້າ",
- "barcode_number" => "ລະຫັດ Barcode",
- "barcode_number_in_row" => "ຈຳນວນແຖວທີ່ໃຊ້",
- "barcode_page_cellspacing" => "Display page cellspacing.",
- "barcode_page_width" => "Display page width",
- "barcode_price" => "ລາຄາ",
- "barcode_second_row" => "ແຖວທີ 2",
- "barcode_third_row" => "ແຖວທີ 3",
- "barcode_tooltip" => "ຄຳເຕືອນ: This feature can cause duplicate items to be imported or created. Do not use if you do not want duplicate barcodes.",
- "barcode_type" => "ປະເພດ Barcode",
- "barcode_width" => "ຄວາມກວ້າງ (px)",
- "bottom" => "ດ້ານລຸ່ມຂອງເຈ້ຍ",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "ຈຳນວນຕົວເລກເສດເງິນ",
- "cash_decimals_tooltip" => "ກະລຸນາປັບຈຳນວນຕົວເລກເສດໃຫ້ເທົ່າກັນເພື່ອຈະໄດ້ບໍ່ມີການປັດມູນຄ່າເງິນ.",
- "cash_rounding" => "ການປັດມູນຄ່າເງິນ",
- "category_dropdown" => "",
- "center" => "ທາງກາງຂອງເຈ້ຍ",
- "change_apperance_tooltip" => "",
- "comma" => "ເຄື່ອງຫມາຍຈຸດ",
- "company" => "ຊື່ບໍລິສັດ",
- "company_avatar" => "",
- "company_change_image" => "ປ່ຽນຮູບ",
- "company_logo" => "Logo ບໍລິສັດ",
- "company_remove_image" => "ລຶບຮູບ",
- "company_required" => "ກະລຸນາໃສ່ຊື່ບໍລິສັດ",
- "company_select_image" => "ກະລຸນາເລືອກຮູບ",
- "company_website_url" => "ທີ່ຢູ່ website ຂອງບໍລິສັດບໍ່ຖືກຕ້ອງ URL (http://...).",
- "country_codes" => "ລະຫັດປະເທດ",
- "country_codes_tooltip" => "ໃຊ້ເຄື່ອງຫມາຍຈຸດເພື່ອແຍກຫົວຫນ່ວຍເງິນຕາ",
- "currency_code" => "",
- "currency_decimals" => "ຈຳນວນຕົວເລກເສດເງິນ",
- "currency_symbol" => "ສັນຍະລັກຂອງເງິນ",
- "current_employee_only" => "",
- "customer_reward" => "ລາງວັນ",
- "customer_reward_duplicate" => "ລາງວັນສຳຫລັບລູກຄ້າຕ້ອງມີຄວາມແຕກຕ່າງ",
- "customer_reward_enable" => "ໃຊ້ງານລະບົບລາງວັນສຳຫລັບລູກຄ້າ",
- "customer_reward_invalid_chars" => "ລາງວັນບໍ່ສາມາດບັນຈຸໄດ້ '_'",
- "customer_reward_required" => "ກະລຸນາກຳນົດລາງວັນ",
- "customer_sales_tax_support" => "ເປີດໃຊ້ອາກອນຊົມໃຊ້",
- "date_or_time_format" => "Date and Time Filter",
- "datetimeformat" => "ຮູບແບບວັນທີ່ ແລະ ເວລາ",
- "decimal_point" => "ເຄື່ອງຫມາຍເລກເສດເງິນ",
- "default_barcode_font_size_number" => "ຂະຫນາດຂອງຕົວອັກສອນຕ້ອງເປັນຕົວເລກເທົ່ານັ້ນ.",
- "default_barcode_font_size_required" => "ກະລຸນາໃສ່ຂະຫນາດຂອງຕົວອັກສອນ.",
- "default_barcode_height_number" => "ຂະຫນາດຄວາມສູງຂອງ Barcode ຕ້ອງເປັນຕົວເລກເທົ່ານັ້ນ.",
- "default_barcode_height_required" => "ກະລຸນາໃສ່ຂະຫນາດຄວາມສູງຂອງ Barcode.",
- "default_barcode_num_in_row_number" => "ຈຳນວນແຖວຂອງ Barcode ຕ້ອງເປັນຕົວເລກເທົ່ານັ້ນ.",
- "default_barcode_num_in_row_required" => "ກະລຸນາໃສ່ຈຳນວນແຖວຂອງ Barcode.",
- "default_barcode_page_cellspacing_number" => "ຄວາມຫ່າງລະຫວ່າງຫ້ອງຂໍ້ມູນຕ້ອງເປັນຕົວເລກເທົ່ານັ້ນ.",
- "default_barcode_page_cellspacing_required" => "ກະລຸນາໃສ່ຄວາມຫ່າງລະຫວ່າງຫ້ອງຂໍ້ມູນ.",
- "default_barcode_page_width_number" => "ຄວາມກວ້າງຂອງຫນ້າ Barcode ຕ້ອງເປັນຕົວເລກເທົ່ານັ້ນ.",
- "default_barcode_page_width_required" => "ກະລຸນາໃສ່ຄວາມກວ້າງຂອງຫນ້າ Barcode.",
- "default_barcode_width_number" => "ຄວາມກວ້າງຂອງ Barcode ຕ້ອງເປັນຕົວເລກເທົ່ານັ້ນ.",
- "default_barcode_width_required" => "ກະລຸນາກຳນົດຄວາມກວ້າງຂອງ Barcode.",
- "default_item_columns" => "",
- "default_origin_tax_code" => "ທີ່ມາຂອງອາກອນ",
- "default_receivings_discount" => "",
- "default_receivings_discount_number" => "",
- "default_receivings_discount_required" => "",
- "default_sales_discount" => "ເປີເຊັນສ່ວນຫລຸດ %",
- "default_sales_discount_number" => "ເປເຊັນສ່ວນຫລຸດ ຕ້ອງເປັນຕົວເລກເທົ່ານັ້ນ.",
- "default_sales_discount_required" => "ກະລຸນາກຳນົດເປີເຊັນສ່ວນຫລຸດ.",
- "default_tax_category" => "",
- "default_tax_code" => "",
- "default_tax_jurisdiction" => "",
- "default_tax_name_number" => "ຊື່ຂອງອາກອນຕ້ອງເປັນຕົວອັກສອນ.",
- "default_tax_name_required" => "ກະລຸນາໃສ່ຊື່ອາກອນ.",
- "default_tax_rate" => "ອັດຕາອາກອນ %",
- "default_tax_rate_1" => "ອັດຕາອາກອນທີ 1",
- "default_tax_rate_2" => "ອັດຕາອາກອນທີ 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "ອັດຕາອາກອນ ຕ້ອງເປັນຕົວເລກເທົ່ານັ້ນ.",
- "default_tax_rate_required" => "ກະລຸນາກຳນົດອັດຕາອາກອນ.",
- "derive_sale_quantity" => "",
- "derive_sale_quantity_tooltip" => "",
- "dinner_table" => "ໂຕະສຳຫລັບຮ້ານອາຫານ",
- "dinner_table_duplicate" => "ເລກໂຕະຕ້ອງບໍ່ຊໍ້າກັນ.",
- "dinner_table_enable" => "ເປີດໃຊ້ງານລະບົບໂຕະສຳລັບຮ້ານອາຫານ",
- "dinner_table_invalid_chars" => "ບໍ່ສາມາດໃສ່ຊື່ໂຕະທີ່ມີ '_' ນີ້ໄດ້.",
- "dinner_table_required" => "ກະລຸນາກຳນົດຊື່ໂຕະ.",
- "dot" => "ຈໍ້າເມັດ",
- "email" => "Email",
- "email_configuration" => "Email Configuration",
- "email_mailpath" => "Path to Sendmail",
- "email_protocol" => "Protocol",
- "email_receipt_check_behaviour" => "",
- "email_receipt_check_behaviour_always" => "",
- "email_receipt_check_behaviour_last" => "",
- "email_receipt_check_behaviour_never" => "",
- "email_smtp_crypto" => "SMTP Encryption",
- "email_smtp_host" => "SMTP Server",
- "email_smtp_pass" => "SMTP Password",
- "email_smtp_port" => "SMTP Port",
- "email_smtp_timeout" => "SMTP Timeout (s)",
- "email_smtp_user" => "SMTP Username",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "",
- "enforce_privacy_tooltip" => "",
- "fax" => "Fax",
- "file_perm" => "There are problems with file permissions please fix and reload this page.",
- "financial_year" => "Fiscal Year Start",
- "financial_year_apr" => "1st of April",
- "financial_year_aug" => "1st of August",
- "financial_year_dec" => "1st of December",
- "financial_year_feb" => "1st of February",
- "financial_year_jan" => "1st of January",
- "financial_year_jul" => "1st of July",
- "financial_year_jun" => "1st of June",
- "financial_year_mar" => "1st of March",
- "financial_year_may" => "1st of May",
- "financial_year_nov" => "1st of November",
- "financial_year_oct" => "1st of October",
- "financial_year_sep" => "1st of September",
- "floating_labels" => "",
- "gcaptcha_enable" => "Login Page reCAPTCHA",
- "gcaptcha_secret_key" => "reCAPTCHA Secret Key",
- "gcaptcha_secret_key_required" => "reCAPTCHA Secret Key is a required field",
- "gcaptcha_site_key" => "reCAPTCHA Site Key",
- "gcaptcha_site_key_required" => "reCAPTCHA Site Key is a required field",
- "gcaptcha_tooltip" => "Protect the Login page with Google reCAPTCHA, click the icon for an API key pair.",
- "general" => "General",
- "general_configuration" => "General Configuration",
- "giftcard_number" => "Gift Card Number",
- "giftcard_random" => "Generate Random",
- "giftcard_series" => "Generate in Series",
- "image_allowed_file_types" => "",
- "image_max_height_tooltip" => "",
- "image_max_size_tooltip" => "",
- "image_max_width_tooltip" => "",
- "image_restrictions" => "",
- "include_hsn" => "",
- "info" => "Information",
- "info_configuration" => "Store Information",
- "input_groups" => "",
- "integrations" => "",
- "integrations_configuration" => "",
- "invoice" => "Invoice",
- "invoice_configuration" => "Invoice Print Settings",
- "invoice_default_comments" => "Default Invoice Comments",
- "invoice_email_message" => "Invoice Email Template",
- "invoice_enable" => "Enable Invoicing",
- "invoice_printer" => "Invoice Printer",
- "invoice_type" => "",
- "is_readable" => "",
- "is_writable" => "is writable, but the permissions are higher than 750.",
- "item_markup" => "",
- "jsprintsetup_required" => "Warning: This functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?",
- "language" => "Language",
- "last_used_invoice_number" => "Last used Invoice Number",
- "last_used_quote_number" => "Last used Quote Number",
- "last_used_work_order_number" => "Last used W/O Number",
- "left" => "Left",
- "license" => "License",
- "license_configuration" => "License Statement",
- "line_sequence" => "Line Sequence",
- "lines_per_page" => "Lines per Page",
- "lines_per_page_number" => "",
- "lines_per_page_required" => "Lines per Page is a required field.",
- "locale" => "Localization",
- "locale_configuration" => "Localization Configuration",
- "locale_info" => "Localization Configuration Information",
- "location" => "Stock",
- "location_configuration" => "Stock Locations",
- "location_info" => "Location Configuration Information",
- "login_form" => "",
- "logout" => "Do you want to make a backup before logging out? Click [OK] to backup or [Cancel] to logout.",
- "mailchimp" => "Mailchimp",
- "mailchimp_api_key" => "Mailchimp API Key",
- "mailchimp_configuration" => "Mailchimp Configuration",
- "mailchimp_key_successfully" => "API Key is valid.",
- "mailchimp_key_unsuccessfully" => "API Key is invalid.",
- "mailchimp_lists" => "Mailchimp List(s)",
- "mailchimp_tooltip" => "Click the icon for an API Key.",
- "message" => "Message",
- "message_configuration" => "Message Configuration",
- "msg_msg" => "Saved Text Message",
- "msg_msg_placeholder" => "If you wish to use a SMS template save your message here, otherwise leave the box blank.",
- "msg_pwd" => "SMS-API Password",
- "msg_pwd_required" => "SMS-API Password is a required field",
- "msg_src" => "SMS-API Sender ID",
- "msg_src_required" => "SMS-API Sender ID is a required field",
- "msg_uid" => "SMS-API Username",
- "msg_uid_required" => "SMS-API Username is a required field",
- "multi_pack_enabled" => "",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "none",
- "notify_alignment" => "Notification Popup Position",
- "number_format" => "Number Format",
- "number_locale" => "Localization",
- "number_locale_invalid" => "The entered locale is invalid. Check the link in the tooltip to find a valid locale.",
- "number_locale_required" => "Number Locale is a required field.",
- "number_locale_tooltip" => "Find a suitable locale through this link.",
- "os_timezone" => "",
- "ospos_info" => "",
- "payment_options_order" => "Payment Options Order",
- "perm_risk" => "Permissions higher than 750 leaves this software at risk.",
- "phone" => "Company Phone",
- "phone_required" => "Company Phone is a required field.",
- "print_bottom_margin" => "Margin Bottom",
- "print_bottom_margin_number" => "Margin Bottom must be a number.",
- "print_bottom_margin_required" => "Margin Bottom is a required field.",
- "print_delay_autoreturn" => "",
- "print_delay_autoreturn_number" => "",
- "print_delay_autoreturn_required" => "",
- "print_footer" => "Print Browser Footer",
- "print_header" => "Print Browser Header",
- "print_left_margin" => "Margin Left",
- "print_left_margin_number" => "Margin Left must be a number.",
- "print_left_margin_required" => "Margin Left is a required field.",
- "print_receipt_check_behaviour" => "",
- "print_receipt_check_behaviour_always" => "",
- "print_receipt_check_behaviour_last" => "",
- "print_receipt_check_behaviour_never" => "",
- "print_right_margin" => "Margin Right",
- "print_right_margin_number" => "Margin Right must be a number.",
- "print_right_margin_required" => "Margin Right is a required field.",
- "print_silently" => "Show Print Dialog",
- "print_top_margin" => "Margin Top",
- "print_top_margin_number" => "Margin Top must be a number.",
- "print_top_margin_required" => "Margin Top is a required field.",
- "quantity_decimals" => "Quantity Decimals",
- "quick_cash_enable" => "",
- "quote_default_comments" => "",
- "receipt" => "Receipt",
- "receipt_category" => "",
- "receipt_configuration" => "Receipt Print Settings",
- "receipt_default" => "Default",
- "receipt_font_size" => "Font Size",
- "receipt_font_size_number" => "Font Size must be a number.",
- "receipt_font_size_required" => "Font Size is a required field.",
- "receipt_info" => "Receipt Configuration Information",
- "receipt_printer" => "Ticket Printer",
- "receipt_short" => "Short",
- "receipt_show_company_name" => "Show Company Name",
- "receipt_show_description" => "Show Description",
- "receipt_show_serialnumber" => "Show Serial Number",
- "receipt_show_tax_ind" => "",
- "receipt_show_taxes" => "Show Taxes",
- "receipt_show_total_discount" => "Show Total Discount",
- "receipt_template" => "Receipt Template",
- "receiving_calculate_average_price" => "Calc avg. Price (Receiving)",
- "recv_invoice_format" => "Receivings Invoice Format",
- "register_mode_default" => "Default Register Mode",
- "report_an_issue" => "",
- "return_policy_required" => "Return policy is a required field.",
- "reward" => "Reward",
- "reward_configuration" => "Reward Configuration",
- "right" => "Right",
- "sales_invoice_format" => "Sales Invoice Format",
- "sales_quote_format" => "Sales Quote Format",
- "mailpath_invalid" => "",
- "saved_successfully" => "Configuration save successful.",
- "saved_unsuccessfully" => "Configuration save failed.",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "Please use the below info for issue reporting.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Show office icon",
- "statistics" => "Send Statistics",
- "statistics_tooltip" => "Send statistics for development and feature improvement purposes.",
- "stock_location" => "Stock location",
- "stock_location_duplicate" => "Stock Location must be unique.",
- "stock_location_invalid_chars" => "Stock Location can not contain '_'.",
- "stock_location_required" => "Stock location is a required field.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Column 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Search Suggestions Layout",
- "suggestions_second_column" => "Column 2",
- "suggestions_third_column" => "Column 3",
- "system_conf" => "Setup & Conf",
- "system_info" => "System Info",
- "table" => "Table",
- "table_configuration" => "Table Configuration",
- "takings_printer" => "Receipt Printer",
- "tax" => "Tax",
- "tax_category" => "Tax Category",
- "tax_category_duplicate" => "",
- "tax_category_invalid_chars" => "",
- "tax_category_required" => "",
- "tax_category_used" => "Tax category cannot be deleted because it is being used.",
- "tax_configuration" => "Tax Configuration",
- "tax_decimals" => "Tax Decimals",
- "tax_id" => "",
- "tax_included" => "Tax Included",
- "theme" => "Theme",
- "theme_preview" => "",
- "thousands_separator" => "Thousands Separator",
- "timezone" => "Timezone",
- "timezone_error" => "",
- "top" => "Top",
- "use_destination_based_tax" => "",
- "user_timezone" => "",
- "website" => "Website",
- "wholesale_markup" => "",
- "work_order_enable" => "Work Order Support",
- "work_order_format" => "Work Order Format",
+ 'address' => 'ທີ່ຢູ່ບໍລິສັດ',
+ 'address_required' => 'ກະລຸນາໃສ່ທີ່ຢູ່ບໍລິສັດ.',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => 'ອະນຸຍາດໃຫ້ມີບາໂຄດຊໍ້າກັນ',
+ 'apostrophe' => 'ຈຸດລາຍນໍ້າ',
+ 'backup_button' => 'ການສຳຮອງ',
+ 'backup_database' => 'ການສຳຮອງຖານຂໍ້ມູນ',
+ 'barcode' => 'ບາໂຄດ',
+ 'barcode_company' => 'ຊື່ບໍລິສັດ',
+ 'barcode_configuration' => 'ການຕັ້ງຄ່າກ່ຽວກັບ Barcode',
+ 'barcode_content' => 'ເນື່ອຫາຂອງ Barcode',
+ 'barcode_first_row' => 'ແຖວທີ 1',
+ 'barcode_font' => 'ຟອນທ໌',
+ 'barcode_formats' => 'ຮູບແບບການໃສ່ຂໍ້ມູນ',
+ 'barcode_generate_if_empty' => 'ສ້າງຖ້າວ່າງເປົ່າ.',
+ 'barcode_height' => 'ສູງ (px)',
+ 'barcode_id' => 'ລະຫັດສິນຄ້າ/ຊື່ສິນຄ້າ',
+ 'barcode_info' => 'ຂໍ້ມູນການຕັ້ງຄ່າກ່ຽວກັບ Barcode',
+ 'barcode_layout' => 'ການຈັດລຽງຮູບແບບ Barcode',
+ 'barcode_name' => 'ຊື່ສິນຄ້າ',
+ 'barcode_number' => 'ລະຫັດ Barcode',
+ 'barcode_number_in_row' => 'ຈຳນວນແຖວທີ່ໃຊ້',
+ 'barcode_page_cellspacing' => 'Display page cellspacing.',
+ 'barcode_page_width' => 'Display page width',
+ 'barcode_price' => 'ລາຄາ',
+ 'barcode_second_row' => 'ແຖວທີ 2',
+ 'barcode_third_row' => 'ແຖວທີ 3',
+ 'barcode_tooltip' => 'ຄຳເຕືອນ: This feature can cause duplicate items to be imported or created. Do not use if you do not want duplicate barcodes.',
+ 'barcode_type' => 'ປະເພດ Barcode',
+ 'barcode_width' => 'ຄວາມກວ້າງ (px)',
+ 'bottom' => 'ດ້ານລຸ່ມຂອງເຈ້ຍ',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'ຈຳນວນຕົວເລກເສດເງິນ',
+ 'cash_decimals_tooltip' => 'ກະລຸນາປັບຈຳນວນຕົວເລກເສດໃຫ້ເທົ່າກັນເພື່ອຈະໄດ້ບໍ່ມີການປັດມູນຄ່າເງິນ.',
+ 'cash_rounding' => 'ການປັດມູນຄ່າເງິນ',
+ 'category_dropdown' => '',
+ 'center' => 'ທາງກາງຂອງເຈ້ຍ',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'ເຄື່ອງຫມາຍຈຸດ',
+ 'company' => 'ຊື່ບໍລິສັດ',
+ 'company_avatar' => '',
+ 'company_change_image' => 'ປ່ຽນຮູບ',
+ 'company_logo' => 'Logo ບໍລິສັດ',
+ 'company_remove_image' => 'ລຶບຮູບ',
+ 'company_required' => 'ກະລຸນາໃສ່ຊື່ບໍລິສັດ',
+ 'company_select_image' => 'ກະລຸນາເລືອກຮູບ',
+ 'company_website_url' => 'ທີ່ຢູ່ website ຂອງບໍລິສັດບໍ່ຖືກຕ້ອງ URL (http://...).',
+ 'country_codes' => 'ລະຫັດປະເທດ',
+ 'country_codes_tooltip' => 'ໃຊ້ເຄື່ອງຫມາຍຈຸດເພື່ອແຍກຫົວຫນ່ວຍເງິນຕາ',
+ 'currency_code' => '',
+ 'currency_decimals' => 'ຈຳນວນຕົວເລກເສດເງິນ',
+ 'currency_symbol' => 'ສັນຍະລັກຂອງເງິນ',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'ລາງວັນ',
+ 'customer_reward_duplicate' => 'ລາງວັນສຳຫລັບລູກຄ້າຕ້ອງມີຄວາມແຕກຕ່າງ',
+ 'customer_reward_enable' => 'ໃຊ້ງານລະບົບລາງວັນສຳຫລັບລູກຄ້າ',
+ 'customer_reward_invalid_chars' => "ລາງວັນບໍ່ສາມາດບັນຈຸໄດ້ '_'",
+ 'customer_reward_required' => 'ກະລຸນາກຳນົດລາງວັນ',
+ 'customer_sales_tax_support' => 'ເປີດໃຊ້ອາກອນຊົມໃຊ້',
+ 'date_or_time_format' => 'Date and Time Filter',
+ 'datetimeformat' => 'ຮູບແບບວັນທີ່ ແລະ ເວລາ',
+ 'decimal_point' => 'ເຄື່ອງຫມາຍເລກເສດເງິນ',
+ 'default_barcode_font_size_number' => 'ຂະຫນາດຂອງຕົວອັກສອນຕ້ອງເປັນຕົວເລກເທົ່ານັ້ນ.',
+ 'default_barcode_font_size_required' => 'ກະລຸນາໃສ່ຂະຫນາດຂອງຕົວອັກສອນ.',
+ 'default_barcode_height_number' => 'ຂະຫນາດຄວາມສູງຂອງ Barcode ຕ້ອງເປັນຕົວເລກເທົ່ານັ້ນ.',
+ 'default_barcode_height_required' => 'ກະລຸນາໃສ່ຂະຫນາດຄວາມສູງຂອງ Barcode.',
+ 'default_barcode_num_in_row_number' => 'ຈຳນວນແຖວຂອງ Barcode ຕ້ອງເປັນຕົວເລກເທົ່ານັ້ນ.',
+ 'default_barcode_num_in_row_required' => 'ກະລຸນາໃສ່ຈຳນວນແຖວຂອງ Barcode.',
+ 'default_barcode_page_cellspacing_number' => 'ຄວາມຫ່າງລະຫວ່າງຫ້ອງຂໍ້ມູນຕ້ອງເປັນຕົວເລກເທົ່ານັ້ນ.',
+ 'default_barcode_page_cellspacing_required' => 'ກະລຸນາໃສ່ຄວາມຫ່າງລະຫວ່າງຫ້ອງຂໍ້ມູນ.',
+ 'default_barcode_page_width_number' => 'ຄວາມກວ້າງຂອງຫນ້າ Barcode ຕ້ອງເປັນຕົວເລກເທົ່ານັ້ນ.',
+ 'default_barcode_page_width_required' => 'ກະລຸນາໃສ່ຄວາມກວ້າງຂອງຫນ້າ Barcode.',
+ 'default_barcode_width_number' => 'ຄວາມກວ້າງຂອງ Barcode ຕ້ອງເປັນຕົວເລກເທົ່ານັ້ນ.',
+ 'default_barcode_width_required' => 'ກະລຸນາກຳນົດຄວາມກວ້າງຂອງ Barcode.',
+ 'default_item_columns' => '',
+ 'default_origin_tax_code' => 'ທີ່ມາຂອງອາກອນ',
+ 'default_receivings_discount' => '',
+ 'default_receivings_discount_number' => '',
+ 'default_receivings_discount_required' => '',
+ 'default_sales_discount' => 'ເປີເຊັນສ່ວນຫລຸດ %',
+ 'default_sales_discount_number' => 'ເປເຊັນສ່ວນຫລຸດ ຕ້ອງເປັນຕົວເລກເທົ່ານັ້ນ.',
+ 'default_sales_discount_required' => 'ກະລຸນາກຳນົດເປີເຊັນສ່ວນຫລຸດ.',
+ 'default_tax_category' => '',
+ 'default_tax_code' => '',
+ 'default_tax_jurisdiction' => '',
+ 'default_tax_name_number' => 'ຊື່ຂອງອາກອນຕ້ອງເປັນຕົວອັກສອນ.',
+ 'default_tax_name_required' => 'ກະລຸນາໃສ່ຊື່ອາກອນ.',
+ 'default_tax_rate' => 'ອັດຕາອາກອນ %',
+ 'default_tax_rate_1' => 'ອັດຕາອາກອນທີ 1',
+ 'default_tax_rate_2' => 'ອັດຕາອາກອນທີ 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'ອັດຕາອາກອນ ຕ້ອງເປັນຕົວເລກເທົ່ານັ້ນ.',
+ 'default_tax_rate_required' => 'ກະລຸນາກຳນົດອັດຕາອາກອນ.',
+ 'derive_sale_quantity' => '',
+ 'derive_sale_quantity_tooltip' => '',
+ 'dinner_table' => 'ໂຕະສຳຫລັບຮ້ານອາຫານ',
+ 'dinner_table_duplicate' => 'ເລກໂຕະຕ້ອງບໍ່ຊໍ້າກັນ.',
+ 'dinner_table_enable' => 'ເປີດໃຊ້ງານລະບົບໂຕະສຳລັບຮ້ານອາຫານ',
+ 'dinner_table_invalid_chars' => "ບໍ່ສາມາດໃສ່ຊື່ໂຕະທີ່ມີ '_' ນີ້ໄດ້.",
+ 'dinner_table_required' => 'ກະລຸນາກຳນົດຊື່ໂຕະ.',
+ 'dot' => 'ຈໍ້າເມັດ',
+ 'email' => 'Email',
+ 'email_configuration' => 'Email Configuration',
+ 'email_mailpath' => 'Path to Sendmail',
+ 'email_protocol' => 'Protocol',
+ 'email_receipt_check_behaviour' => '',
+ 'email_receipt_check_behaviour_always' => '',
+ 'email_receipt_check_behaviour_last' => '',
+ 'email_receipt_check_behaviour_never' => '',
+ 'email_smtp_crypto' => 'SMTP Encryption',
+ 'email_smtp_host' => 'SMTP Server',
+ 'email_smtp_pass' => 'SMTP Password',
+ 'email_smtp_port' => 'SMTP Port',
+ 'email_smtp_timeout' => 'SMTP Timeout (s)',
+ 'email_smtp_user' => 'SMTP Username',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => '',
+ 'enforce_privacy_tooltip' => '',
+ 'fax' => 'Fax',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => 'Fiscal Year Start',
+ 'financial_year_apr' => '1st of April',
+ 'financial_year_aug' => '1st of August',
+ 'financial_year_dec' => '1st of December',
+ 'financial_year_feb' => '1st of February',
+ 'financial_year_jan' => '1st of January',
+ 'financial_year_jul' => '1st of July',
+ 'financial_year_jun' => '1st of June',
+ 'financial_year_mar' => '1st of March',
+ 'financial_year_may' => '1st of May',
+ 'financial_year_nov' => '1st of November',
+ 'financial_year_oct' => '1st of October',
+ 'financial_year_sep' => '1st of September',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => 'Login Page reCAPTCHA',
+ 'gcaptcha_secret_key' => 'reCAPTCHA Secret Key',
+ 'gcaptcha_secret_key_required' => 'reCAPTCHA Secret Key is a required field',
+ 'gcaptcha_site_key' => 'reCAPTCHA Site Key',
+ 'gcaptcha_site_key_required' => 'reCAPTCHA Site Key is a required field',
+ 'gcaptcha_tooltip' => 'Protect the Login page with Google reCAPTCHA, click the icon for an API key pair.',
+ 'general' => 'General',
+ 'general_configuration' => 'General Configuration',
+ 'giftcard_number' => 'Gift Card Number',
+ 'giftcard_random' => 'Generate Random',
+ 'giftcard_series' => 'Generate in Series',
+ 'image_allowed_file_types' => '',
+ 'image_max_height_tooltip' => '',
+ 'image_max_size_tooltip' => '',
+ 'image_max_width_tooltip' => '',
+ 'image_restrictions' => '',
+ 'include_hsn' => '',
+ 'info' => 'Information',
+ 'info_configuration' => 'Store Information',
+ 'input_groups' => '',
+ 'integrations' => '',
+ 'integrations_configuration' => '',
+ 'invoice' => 'Invoice',
+ 'invoice_configuration' => 'Invoice Print Settings',
+ 'invoice_default_comments' => 'Default Invoice Comments',
+ 'invoice_email_message' => 'Invoice Email Template',
+ 'invoice_enable' => 'Enable Invoicing',
+ 'invoice_printer' => 'Invoice Printer',
+ 'invoice_type' => '',
+ 'is_readable' => '',
+ 'is_writable' => 'is writable, but the permissions are higher than 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Warning: This functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?',
+ 'language' => 'Language',
+ 'last_used_invoice_number' => 'Last used Invoice Number',
+ 'last_used_quote_number' => 'Last used Quote Number',
+ 'last_used_work_order_number' => 'Last used W/O Number',
+ 'left' => 'Left',
+ 'license' => 'License',
+ 'license_configuration' => 'License Statement',
+ 'line_sequence' => 'Line Sequence',
+ 'lines_per_page' => 'Lines per Page',
+ 'lines_per_page_number' => '',
+ 'lines_per_page_required' => 'Lines per Page is a required field.',
+ 'locale' => 'Localization',
+ 'locale_configuration' => 'Localization Configuration',
+ 'locale_info' => 'Localization Configuration Information',
+ 'location' => 'Stock',
+ 'location_configuration' => 'Stock Locations',
+ 'location_info' => 'Location Configuration Information',
+ 'login_form' => '',
+ 'logout' => 'Do you want to make a backup before logging out? Click [OK] to backup or [Cancel] to logout.',
+ 'mailchimp' => 'Mailchimp',
+ 'mailchimp_api_key' => 'Mailchimp API Key',
+ 'mailchimp_configuration' => 'Mailchimp Configuration',
+ 'mailchimp_key_successfully' => 'API Key is valid.',
+ 'mailchimp_key_unsuccessfully' => 'API Key is invalid.',
+ 'mailchimp_lists' => 'Mailchimp List(s)',
+ 'mailchimp_tooltip' => 'Click the icon for an API Key.',
+ 'message' => 'Message',
+ 'message_configuration' => 'Message Configuration',
+ 'msg_msg' => 'Saved Text Message',
+ 'msg_msg_placeholder' => 'If you wish to use a SMS template save your message here, otherwise leave the box blank.',
+ 'msg_pwd' => 'SMS-API Password',
+ 'msg_pwd_required' => 'SMS-API Password is a required field',
+ 'msg_src' => 'SMS-API Sender ID',
+ 'msg_src_required' => 'SMS-API Sender ID is a required field',
+ 'msg_uid' => 'SMS-API Username',
+ 'msg_uid_required' => 'SMS-API Username is a required field',
+ 'multi_pack_enabled' => '',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => 'none',
+ 'notify_alignment' => 'Notification Popup Position',
+ 'number_format' => 'Number Format',
+ 'number_locale' => 'Localization',
+ 'number_locale_invalid' => 'The entered locale is invalid. Check the link in the tooltip to find a valid locale.',
+ 'number_locale_required' => 'Number Locale is a required field.',
+ 'number_locale_tooltip' => 'Find a suitable locale through this link.',
+ 'os_timezone' => '',
+ 'ospos_info' => '',
+ 'payment_options_order' => 'Payment Options Order',
+ 'payment_reference_code_length_limits' => 'ລະຫັດອ້າງອີງການຊຳລະເງິນ
ຂອບເຂດຄວາມຍາວ',
+ 'payment_reference_code_length_max_label' => 'ສູງສຸດ',
+ 'payment_reference_code_length_min_label' => 'ຕໍ່າສຸດ',
+ 'perm_risk' => 'Permissions higher than 750 leaves this software at risk.',
+ 'phone' => 'Company Phone',
+ 'phone_required' => 'Company Phone is a required field.',
+ 'print_bottom_margin' => 'Margin Bottom',
+ 'print_bottom_margin_number' => 'Margin Bottom must be a number.',
+ 'print_bottom_margin_required' => 'Margin Bottom is a required field.',
+ 'print_delay_autoreturn' => '',
+ 'print_delay_autoreturn_number' => '',
+ 'print_delay_autoreturn_required' => '',
+ 'print_footer' => 'Print Browser Footer',
+ 'print_header' => 'Print Browser Header',
+ 'print_left_margin' => 'Margin Left',
+ 'print_left_margin_number' => 'Margin Left must be a number.',
+ 'print_left_margin_required' => 'Margin Left is a required field.',
+ 'print_receipt_check_behaviour' => '',
+ 'print_receipt_check_behaviour_always' => '',
+ 'print_receipt_check_behaviour_last' => '',
+ 'print_receipt_check_behaviour_never' => '',
+ 'print_right_margin' => 'Margin Right',
+ 'print_right_margin_number' => 'Margin Right must be a number.',
+ 'print_right_margin_required' => 'Margin Right is a required field.',
+ 'print_silently' => 'Show Print Dialog',
+ 'print_top_margin' => 'Margin Top',
+ 'print_top_margin_number' => 'Margin Top must be a number.',
+ 'print_top_margin_required' => 'Margin Top is a required field.',
+ 'quantity_decimals' => 'Quantity Decimals',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => '',
+ 'receipt' => 'Receipt',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Receipt Print Settings',
+ 'receipt_default' => 'Default',
+ 'receipt_font_size' => 'Font Size',
+ 'receipt_font_size_number' => 'Font Size must be a number.',
+ 'receipt_font_size_required' => 'Font Size is a required field.',
+ 'receipt_info' => 'Receipt Configuration Information',
+ 'receipt_printer' => 'Ticket Printer',
+ 'receipt_short' => 'Short',
+ 'receipt_show_company_name' => 'Show Company Name',
+ 'receipt_show_description' => 'Show Description',
+ 'receipt_show_serialnumber' => 'Show Serial Number',
+ 'receipt_show_tax_ind' => '',
+ 'receipt_show_taxes' => 'Show Taxes',
+ 'receipt_show_total_discount' => 'Show Total Discount',
+ 'receipt_template' => 'Receipt Template',
+ 'receiving_calculate_average_price' => 'Calc avg. Price (Receiving)',
+ 'recv_invoice_format' => 'Receivings Invoice Format',
+ 'register_mode_default' => 'Default Register Mode',
+ 'report_an_issue' => '',
+ 'return_policy_required' => 'Return policy is a required field.',
+ 'reward' => 'Reward',
+ 'reward_configuration' => 'Reward Configuration',
+ 'right' => 'Right',
+ 'sales_invoice_format' => 'Sales Invoice Format',
+ 'sales_quote_format' => 'Sales Quote Format',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => 'Configuration save successful.',
+ 'saved_unsuccessfully' => 'Configuration save failed.',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Please use the below info for issue reporting.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Show office icon',
+ 'statistics' => 'Send Statistics',
+ 'statistics_tooltip' => 'Send statistics for development and feature improvement purposes.',
+ 'stock_location' => 'Stock location',
+ 'stock_location_duplicate' => 'Stock Location must be unique.',
+ 'stock_location_invalid_chars' => "Stock Location can not contain '_'.",
+ 'stock_location_required' => 'Stock location is a required field.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Column 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Search Suggestions Layout',
+ 'suggestions_second_column' => 'Column 2',
+ 'suggestions_third_column' => 'Column 3',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => 'Table',
+ 'table_configuration' => 'Table Configuration',
+ 'takings_printer' => 'Receipt Printer',
+ 'tax' => 'Tax',
+ 'tax_category' => 'Tax Category',
+ 'tax_category_duplicate' => '',
+ 'tax_category_invalid_chars' => '',
+ 'tax_category_required' => '',
+ 'tax_category_used' => 'Tax category cannot be deleted because it is being used.',
+ 'tax_configuration' => 'Tax Configuration',
+ 'tax_decimals' => 'Tax Decimals',
+ 'tax_id' => '',
+ 'tax_included' => 'Tax Included',
+ 'theme' => 'Theme',
+ 'theme_preview' => '',
+ 'thousands_separator' => 'Thousands Separator',
+ 'timezone' => 'Timezone',
+ 'timezone_error' => '',
+ 'top' => 'Top',
+ 'use_destination_based_tax' => '',
+ 'user_timezone' => '',
+ 'website' => 'Website',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Work Order Support',
+ 'work_order_format' => 'Work Order Format',
];
diff --git a/app/Language/lo/Login.php b/app/Language/lo/Login.php
index 89e65f643..c5cbb85fe 100644
--- a/app/Language/lo/Login.php
+++ b/app/Language/lo/Login.php
@@ -1,25 +1,30 @@
"ຂ້ອຍບໍ່ແມ່ນເຄື່ອງຈັກ.",
- "go" => "Go",
- "invalid_gcaptcha" => "ຍັງບໍ່ໄດ້ຕິກ ຂ້ອຍບໍ່ແມ່ນເຄື່ອງຈັກ.",
- "invalid_installation" => "ການຕິດຕັ້ງມີຂໍ້ຜິດພາດ, ກະລຸນາກວດສອບ php.ini file.",
- "invalid_username_and_password" => "Username ຫຼື Password ບໍ່ຖືກຕ້ອງ.",
- "login" => "ເຂົ້າລະບົບ",
- "logout" => "",
- "migration_needed" => "",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "Password",
- "required_username" => "",
- "username" => "Username",
- "welcome" => "",
+ "gcaptcha" => "ຂ້ອຍບໍ່ແມ່ນເຄື່ອງຈັກ.",
+ "go" => "Go",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "ຍັງບໍ່ໄດ້ຕິກ ຂ້ອຍບໍ່ແມ່ນເຄື່ອງຈັກ.",
+ "invalid_installation" => "ການຕິດຕັ້ງມີຂໍ້ຜິດພາດ, ກະລຸນາກວດສອບ php.ini file.",
+ "invalid_username_and_password" => "Username ຫຼື Password ບໍ່ຖືກຕ້ອງ.",
+ "login" => "ເຂົ້າລະບົບ",
+ "logout" => "",
+ "migrating_database" => "ກໍາລັງຍ້າຍຖານຂໍ້ມູນ",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "ຍ້າຍຖານຂໍ້ມູນສໍາເລັດແລ້ວ!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "Password",
+ "required_username" => "",
+ "username" => "Username",
+ "welcome" => ""
];
diff --git a/app/Language/lo/Sales.php b/app/Language/lo/Sales.php
index 49b748b3d..b50a6aafc 100644
--- a/app/Language/lo/Sales.php
+++ b/app/Language/lo/Sales.php
@@ -1,231 +1,235 @@
"Available Points",
- "rewards_package" => "Rewards",
- "rewards_remaining_balance" => "Reward Points remaining value is ",
- "account_number" => "",
- "add_payment" => "Add Payment",
- "amount_due" => "Amount Due",
- "amount_tendered" => "Amount Tendered",
- "authorized_signature" => "",
- "cancel_sale" => "Cancel",
- "cash" => "Cash",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "",
- "cash_deposit" => "Cash Deposit",
- "cash_filter" => "Cash",
- "change_due" => "Change Due",
- "change_price" => "",
- "check" => "Check",
- "check_balance" => "Check remainder",
- "check_filter" => "Check",
- "close" => "",
- "comment" => "Comment",
- "comments" => "Comments",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Complete",
- "confirm_cancel_sale" => "Are you sure you want to clear this sale? All items will cleared.",
- "confirm_delete" => "Are you sure you want to delete the selected Sale(s)?",
- "confirm_restore" => "Are you sure you want to restore the selected Sale(s)?",
- "credit" => "Credit Card",
- "credit_deposit" => "Credit Deposit",
- "credit_filter" => "",
- "current_table" => "",
- "customer" => "Name",
- "customer_address" => "Address",
- "customer_discount" => "Discount",
- "customer_email" => "Email",
- "customer_location" => "Location",
- "customer_mailchimp_status" => "Mailchimp status",
- "customer_optional" => "",
- "customer_required" => "",
- "customer_total" => "Total",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Sale Date",
- "date_range" => "Date Range",
- "date_required" => "A correct date must be entered.",
- "date_type" => "Date is a required field.",
- "debit" => "Debit Card",
- "debit_filter" => "",
- "delete" => "Allow Delete",
- "delete_confirmation" => "Are you sure you want to delete this sale? This action cannot be undone.",
- "delete_entire_sale" => "Delete Entire Sale",
- "delete_successful" => "Sale delete successful.",
- "delete_unsuccessful" => "Sale delete failed.",
- "description_abbrv" => "Desc.",
- "discard" => "Discard",
- "discard_quote" => "",
- "discount" => "Disc %",
- "discount_included" => "% Discount",
- "discount_short" => "%",
- "due" => "Due",
- "due_filter" => "Due",
- "edit" => "Edit",
- "edit_item" => "Edit Item",
- "edit_sale" => "Edit Sale",
- "email_receipt" => "Email Receipt",
- "employee" => "Employee",
- "entry" => "Entry",
- "error_editing_item" => "Error editing item",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Find or Scan Item",
- "find_or_scan_item_or_receipt" => "Find or Scan Item or Receipt",
- "giftcard" => "Gift Card",
- "giftcard_balance" => "Gift Card Balance",
- "giftcard_filter" => "",
- "giftcard_number" => "Gift Card Number",
- "group_by_category" => "Group by Category",
- "group_by_type" => "Group by Type",
- "hsn" => "",
- "id" => "Sale ID",
- "include_prices" => "Include Prices?",
- "invoice" => "Invoice",
- "invoice_confirm" => "This invoice will be sent to",
- "invoice_enable" => "Create Invoice",
- "invoice_filter" => "Invoices",
- "invoice_no_email" => "This customer does not have a valid email address",
- "invoice_number" => "Invoice #",
- "invoice_number_duplicate" => "Invoice Number must be unique.",
- "invoice_sent" => "Invoice sent to",
- "invoice_total" => "",
- "invoice_type_custom_invoice" => "",
- "invoice_type_custom_tax_invoice" => "",
- "invoice_type_invoice" => "",
- "invoice_type_tax_invoice" => "",
- "invoice_unsent" => "Invoice failed to be sent to",
- "invoice_update" => "Recount",
- "item_insufficient_of_stock" => "Item has insufficient stock.",
- "item_name" => "Item Name",
- "item_number" => "Item #",
- "item_out_of_stock" => "Item is out of stock.",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "Register Mode",
- "must_enter_numeric" => "Amount Tendered must be a number.",
- "must_enter_numeric_giftcard" => "Gift Card Number must be a number.",
- "new_customer" => "New Customer",
- "new_item" => "New Item",
- "no_description" => "None",
- "no_filter" => "All",
- "no_items_in_cart" => "There are no Items in the cart.",
- "no_sales_to_display" => "No Sales to display.",
- "none_selected" => "You have not selected any Sale(s) to delete.",
- "nontaxed_ind" => "",
- "not_authorized" => "This action is not authorized.",
- "one_or_multiple" => "Sale(s)",
- "payment" => "Payment Type",
- "payment_amount" => "Amount",
- "payment_not_cover_total" => "Payment Amount must be greater than or equal to Total.",
- "payment_type" => "Type",
- "payments" => "",
- "payments_total" => "Payments Total",
- "price" => "Price",
- "print_after_sale" => "Print after Sale",
- "quantity" => "Quantity",
- "quantity_less_than_reorder_level" => "Warning: Desired Quantity is below Reorder Level for that Item.",
- "quantity_less_than_zero" => "Warning: Desired Quantity is insufficient. You can still process the sale, but audit your inventory.",
- "quantity_of_items" => "Quantity of {0} Items",
- "quote" => "Quote",
- "quote_number" => "Quote Number",
- "quote_number_duplicate" => "Quote Number must be unique.",
- "quote_sent" => "Quote sent to",
- "quote_unsent" => "Quote failed to be sent to",
- "receipt" => "Sales Receipt",
- "receipt_no_email" => "",
- "receipt_number" => "Sale #",
- "receipt_sent" => "Receipt sent to",
- "receipt_unsent" => "Receipt failed to be sent to",
- "refund" => "",
- "register" => "Sales Register",
- "remove_customer" => "Remove Customer",
- "remove_discount" => "",
- "return" => "Return",
- "rewards" => "Reward Points",
- "rewards_balance" => "Reward Points Balance",
- "sale" => "Sale",
- "sale_by_invoice" => "Sale by Invoice",
- "sale_for_customer" => "Customer:",
- "sale_time" => "Time",
- "sales_tax" => "Sales Tax",
- "sales_total" => "",
- "select_customer" => "Select Customer (Optional)",
- "send_invoice" => "Send Invoice",
- "send_quote" => "Send Quote",
- "send_receipt" => "Send Receipt",
- "send_work_order" => "Send Work Order",
- "serial" => "Serial",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Show Invoice",
- "show_receipt" => "Show Receipt",
- "start_typing_customer_name" => "Start typing customer details...",
- "start_typing_item_name" => "Start typing Item Name or scan Barcode...",
- "stock" => "Stock",
- "stock_location" => "Stock Location",
- "sub_total" => "Subtotal",
- "successfully_deleted" => "You have successfully deleted",
- "successfully_restored" => "You have successfully restored",
- "successfully_suspended_sale" => "Sale suspend successful.",
- "successfully_updated" => "Sale update successful.",
- "suspend_sale" => "Suspend",
- "suspended_doc_id" => "Document",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Suspended",
- "table" => "Table",
- "takings" => "Daily Sales",
- "tax" => "Tax",
- "tax_id" => "",
- "tax_invoice" => "",
- "tax_percent" => "Tax %",
- "taxed_ind" => "",
- "total" => "Total",
- "total_tax_exclusive" => "Tax excluded",
- "transaction_failed" => "Sales Transaction failed.",
- "unable_to_add_item" => "Item add to Sale failed",
- "unsuccessfully_deleted" => "Sale(s) delete failed.",
- "unsuccessfully_restored" => "Sale(s) restore failed.",
- "unsuccessfully_suspended_sale" => "Sale suspend failed.",
- "unsuccessfully_updated" => "Sale update failed.",
- "unsuspend" => "Unsuspend",
- "unsuspend_and_delete" => "Action",
- "update" => "Update",
- "upi" => "",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "Work Order",
- "work_order_number" => "Work Order Number",
- "work_order_number_duplicate" => "Work Order Number must be unique.",
- "work_order_sent" => "Work Order sent to",
- "work_order_unsent" => "Work Order failed to be sent to",
+ 'account_number' => '',
+ 'add_payment' => 'Add Payment',
+ 'amount_due' => 'Amount Due',
+ 'amount_tendered' => 'Amount Tendered',
+ 'authorized_signature' => '',
+ 'cancel_sale' => 'Cancel',
+ 'cash' => 'Cash',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => '',
+ 'cash_deposit' => 'Cash Deposit',
+ 'cash_filter' => 'Cash',
+ 'change_due' => 'Change Due',
+ 'change_price' => '',
+ 'check' => 'Check',
+ 'check_balance' => 'Check remainder',
+ 'check_filter' => 'Check',
+ 'close' => '',
+ 'comment' => 'Comment',
+ 'comments' => 'Comments',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Complete',
+ 'confirm_cancel_sale' => 'Are you sure you want to clear this sale? All items will cleared.',
+ 'confirm_delete' => 'Are you sure you want to delete the selected Sale(s)?',
+ 'confirm_restore' => 'Are you sure you want to restore the selected Sale(s)?',
+ 'credit' => 'Credit Card',
+ 'credit_deposit' => 'Credit Deposit',
+ 'credit_filter' => '',
+ 'current_table' => '',
+ 'customer' => 'Name',
+ 'customer_address' => 'Address',
+ 'customer_discount' => 'Discount',
+ 'customer_email' => 'Email',
+ 'customer_location' => 'Location',
+ 'customer_mailchimp_status' => 'Mailchimp status',
+ 'customer_optional' => '',
+ 'customer_required' => '',
+ 'customer_total' => 'Total',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Available Points',
+ 'daily_sales' => '',
+ 'date' => 'Sale Date',
+ 'date_range' => 'Date Range',
+ 'date_required' => 'A correct date must be entered.',
+ 'date_type' => 'Date is a required field.',
+ 'debit' => 'Debit Card',
+ 'debit_filter' => '',
+ 'delete' => 'Allow Delete',
+ 'delete_confirmation' => 'Are you sure you want to delete this sale? This action cannot be undone.',
+ 'delete_entire_sale' => 'Delete Entire Sale',
+ 'delete_successful' => 'Sale delete successful.',
+ 'delete_unsuccessful' => 'Sale delete failed.',
+ 'description_abbrv' => 'Desc.',
+ 'discard' => 'Discard',
+ 'discard_quote' => '',
+ 'discount' => 'Disc %',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Discount',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'Due',
+ 'due_filter' => 'Due',
+ 'edit' => 'Edit',
+ 'edit_item' => 'Edit Item',
+ 'edit_sale' => 'Edit Sale',
+ 'email_receipt' => 'Email Receipt',
+ 'employee' => 'Employee',
+ 'entry' => 'Entry',
+ 'error_editing_item' => 'Error editing item',
+ 'find_or_scan_item' => 'Find or Scan Item',
+ 'find_or_scan_item_or_receipt' => 'Find or Scan Item or Receipt',
+ 'giftcard' => 'Gift Card',
+ 'giftcard_balance' => 'Gift Card Balance',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Gift Card Number',
+ 'group_by_category' => 'Group by Category',
+ 'group_by_type' => 'Group by Type',
+ 'hsn' => '',
+ 'id' => 'Sale ID',
+ 'include_prices' => 'Include Prices?',
+ 'invoice' => 'Invoice',
+ 'invoice_confirm' => 'This invoice will be sent to',
+ 'invoice_enable' => 'Create Invoice',
+ 'invoice_filter' => 'Invoices',
+ 'invoice_no_email' => 'This customer does not have a valid email address',
+ 'invoice_number' => 'Invoice #',
+ 'invoice_number_duplicate' => 'Invoice Number must be unique.',
+ 'invoice_sent' => 'Invoice sent to',
+ 'invoice_total' => '',
+ 'invoice_type_custom_invoice' => '',
+ 'invoice_type_custom_tax_invoice' => '',
+ 'invoice_type_invoice' => '',
+ 'invoice_type_tax_invoice' => '',
+ 'invoice_unsent' => 'Invoice failed to be sent to',
+ 'invoice_update' => 'Recount',
+ 'item_insufficient_of_stock' => 'Item has insufficient stock.',
+ 'item_name' => 'Item Name',
+ 'item_number' => 'Item #',
+ 'item_out_of_stock' => 'Item is out of stock.',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'Register Mode',
+ 'must_enter_numeric' => 'Amount Tendered must be a number.',
+ 'must_enter_numeric_giftcard' => 'Gift Card Number must be a number.',
+ 'must_enter_reference_code' => 'ຕ້ອງປ້ອນໝາຍເລກອ້າງອີງ/ດຶງຂໍ້ມູນ.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'New Customer',
+ 'new_item' => 'New Item',
+ 'no_description' => 'None',
+ 'no_filter' => 'All',
+ 'no_items_in_cart' => 'There are no Items in the cart.',
+ 'no_sales_to_display' => 'No Sales to display.',
+ 'none_selected' => 'You have not selected any Sale(s) to delete.',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => 'This action is not authorized.',
+ 'one_or_multiple' => 'Sale(s)',
+ 'payment' => 'Payment Type',
+ 'payment_amount' => 'Amount',
+ 'payment_not_cover_total' => 'Payment Amount must be greater than or equal to Total.',
+ 'payment_type' => 'Type',
+ 'payments' => '',
+ 'payments_total' => 'Payments Total',
+ 'price' => 'Price',
+ 'print_after_sale' => 'Print after Sale',
+ 'quantity' => 'Quantity',
+ 'quantity_less_than_reorder_level' => 'Warning: Desired Quantity is below Reorder Level for that Item.',
+ 'quantity_less_than_zero' => 'Warning: Desired Quantity is insufficient. You can still process the sale, but audit your inventory.',
+ 'quantity_of_items' => 'Quantity of {0} Items',
+ 'quote' => 'Quote',
+ 'quote_number' => 'Quote Number',
+ 'quote_number_duplicate' => 'Quote Number must be unique.',
+ 'quote_sent' => 'Quote sent to',
+ 'quote_unsent' => 'Quote failed to be sent to',
+ 'receipt' => 'Sales Receipt',
+ 'receipt_no_email' => '',
+ 'receipt_number' => 'Sale #',
+ 'receipt_sent' => 'Receipt sent to',
+ 'receipt_unsent' => 'Receipt failed to be sent to',
+ 'reference_code' => 'ລະຫັດອ້າງອີງການຊຳລະເງິນ',
+ 'reference_code_invalid_characters' => 'ລະຫັດອ້າງອີງຕ້ອງມີແຕ່ຕົວອັກສອນ ແລະ ຕົວເລກເທົ່ານັ້ນ.',
+ 'reference_code_length_error' => 'ຄວາມຍາວຂອງລະຫັດອ້າງອີງບໍ່ຖືກຕ້ອງ.',
+ 'refund' => '',
+ 'register' => 'Sales Register',
+ 'remove_customer' => 'Remove Customer',
+ 'remove_discount' => '',
+ 'return' => 'Return',
+ 'rewards' => 'Reward Points',
+ 'rewards_balance' => 'Reward Points Balance',
+ 'rewards_package' => 'Rewards',
+ 'rewards_remaining_balance' => 'Reward Points remaining value is ',
+ 'sale' => 'Sale',
+ 'sale_by_invoice' => 'Sale by Invoice',
+ 'sale_for_customer' => 'Customer:',
+ 'sale_time' => 'Time',
+ 'sales_tax' => 'Sales Tax',
+ 'sales_total' => '',
+ 'select_customer' => 'Select Customer (Optional)',
+ 'send_invoice' => 'Send Invoice',
+ 'send_quote' => 'Send Quote',
+ 'send_receipt' => 'Send Receipt',
+ 'send_work_order' => 'Send Work Order',
+ 'serial' => 'Serial',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Show Invoice',
+ 'show_receipt' => 'Show Receipt',
+ 'start_typing_customer_name' => 'Start typing customer details...',
+ 'start_typing_item_name' => 'Start typing Item Name or scan Barcode...',
+ 'stock' => 'Stock',
+ 'stock_location' => 'Stock Location',
+ 'sub_total' => 'Subtotal',
+ 'successfully_deleted' => 'You have successfully deleted',
+ 'successfully_restored' => 'You have successfully restored',
+ 'successfully_suspended_sale' => 'Sale suspend successful.',
+ 'successfully_updated' => 'Sale update successful.',
+ 'suspend_sale' => 'Suspend',
+ 'suspended_doc_id' => 'Document',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Suspended',
+ 'table' => 'Table',
+ 'takings' => 'Daily Sales',
+ 'tax' => 'Tax',
+ 'tax_id' => '',
+ 'tax_invoice' => '',
+ 'tax_percent' => 'Tax %',
+ 'taxed_ind' => '',
+ 'total' => 'Total',
+ 'total_tax_exclusive' => 'Tax excluded',
+ 'transaction_failed' => 'Sales Transaction failed.',
+ 'unable_to_add_item' => 'Item add to Sale failed',
+ 'unsuccessfully_deleted' => 'Sale(s) delete failed.',
+ 'unsuccessfully_restored' => 'Sale(s) restore failed.',
+ 'unsuccessfully_suspended_sale' => 'Sale suspend failed.',
+ 'unsuccessfully_updated' => 'Sale update failed.',
+ 'unsuspend' => 'Unsuspend',
+ 'unsuspend_and_delete' => 'Action',
+ 'update' => 'Update',
+ 'upi' => '',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'Work Order',
+ 'work_order_number' => 'Work Order Number',
+ 'work_order_number_duplicate' => 'Work Order Number must be unique.',
+ 'work_order_sent' => 'Work Order sent to',
+ 'work_order_unsent' => 'Work Order failed to be sent to',
];
diff --git a/app/Language/ml/Config.php b/app/Language/ml/Config.php
index 0d4edefef..bb9794fb2 100644
--- a/app/Language/ml/Config.php
+++ b/app/Language/ml/Config.php
@@ -1,332 +1,335 @@
"",
- "address_required" => "",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "",
- "apostrophe" => "",
- "backup_button" => "",
- "backup_database" => "",
- "barcode" => "",
- "barcode_company" => "",
- "barcode_configuration" => "",
- "barcode_content" => "",
- "barcode_first_row" => "",
- "barcode_font" => "",
- "barcode_formats" => "",
- "barcode_generate_if_empty" => "",
- "barcode_height" => "",
- "barcode_id" => "",
- "barcode_info" => "",
- "barcode_layout" => "",
- "barcode_name" => "",
- "barcode_number" => "",
- "barcode_number_in_row" => "",
- "barcode_page_cellspacing" => "",
- "barcode_page_width" => "",
- "barcode_price" => "",
- "barcode_second_row" => "",
- "barcode_third_row" => "",
- "barcode_tooltip" => "",
- "barcode_type" => "",
- "barcode_width" => "",
- "bottom" => "",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "",
- "cash_decimals_tooltip" => "",
- "cash_rounding" => "",
- "category_dropdown" => "",
- "center" => "",
- "change_apperance_tooltip" => "",
- "comma" => "",
- "company" => "",
- "company_avatar" => "",
- "company_change_image" => "",
- "company_logo" => "",
- "company_remove_image" => "",
- "company_required" => "",
- "company_select_image" => "",
- "company_website_url" => "",
- "country_codes" => "",
- "country_codes_tooltip" => "",
- "currency_code" => "",
- "currency_decimals" => "",
- "currency_symbol" => "",
- "current_employee_only" => "",
- "customer_reward" => "",
- "customer_reward_duplicate" => "",
- "customer_reward_enable" => "",
- "customer_reward_invalid_chars" => "",
- "customer_reward_required" => "",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "",
- "datetimeformat" => "",
- "decimal_point" => "",
- "default_barcode_font_size_number" => "",
- "default_barcode_font_size_required" => "",
- "default_barcode_height_number" => "",
- "default_barcode_height_required" => "",
- "default_barcode_num_in_row_number" => "",
- "default_barcode_num_in_row_required" => "",
- "default_barcode_page_cellspacing_number" => "",
- "default_barcode_page_cellspacing_required" => "",
- "default_barcode_page_width_number" => "",
- "default_barcode_page_width_required" => "",
- "default_barcode_width_number" => "",
- "default_barcode_width_required" => "",
- "default_item_columns" => "",
- "default_origin_tax_code" => "",
- "default_receivings_discount" => "",
- "default_receivings_discount_number" => "",
- "default_receivings_discount_required" => "",
- "default_sales_discount" => "",
- "default_sales_discount_number" => "",
- "default_sales_discount_required" => "",
- "default_tax_category" => "",
- "default_tax_code" => "",
- "default_tax_jurisdiction" => "",
- "default_tax_name_number" => "",
- "default_tax_name_required" => "",
- "default_tax_rate" => "",
- "default_tax_rate_1" => "",
- "default_tax_rate_2" => "",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "",
- "default_tax_rate_required" => "",
- "derive_sale_quantity" => "",
- "derive_sale_quantity_tooltip" => "",
- "dinner_table" => "",
- "dinner_table_duplicate" => "",
- "dinner_table_enable" => "",
- "dinner_table_invalid_chars" => "",
- "dinner_table_required" => "",
- "dot" => "",
- "email" => "",
- "email_configuration" => "",
- "email_mailpath" => "",
- "email_protocol" => "",
- "email_receipt_check_behaviour" => "",
- "email_receipt_check_behaviour_always" => "",
- "email_receipt_check_behaviour_last" => "",
- "email_receipt_check_behaviour_never" => "",
- "email_smtp_crypto" => "",
- "email_smtp_host" => "",
- "email_smtp_pass" => "",
- "email_smtp_port" => "",
- "email_smtp_timeout" => "",
- "email_smtp_user" => "",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "",
- "enforce_privacy_tooltip" => "",
- "fax" => "",
- "file_perm" => "There are problems with file permissions please fix and reload this page.",
- "financial_year" => "",
- "financial_year_apr" => "",
- "financial_year_aug" => "",
- "financial_year_dec" => "",
- "financial_year_feb" => "",
- "financial_year_jan" => "",
- "financial_year_jul" => "",
- "financial_year_jun" => "",
- "financial_year_mar" => "",
- "financial_year_may" => "",
- "financial_year_nov" => "",
- "financial_year_oct" => "",
- "financial_year_sep" => "",
- "floating_labels" => "",
- "gcaptcha_enable" => "",
- "gcaptcha_secret_key" => "",
- "gcaptcha_secret_key_required" => "",
- "gcaptcha_site_key" => "",
- "gcaptcha_site_key_required" => "",
- "gcaptcha_tooltip" => "",
- "general" => "",
- "general_configuration" => "",
- "giftcard_number" => "",
- "giftcard_random" => "",
- "giftcard_series" => "",
- "image_allowed_file_types" => "",
- "image_max_height_tooltip" => "",
- "image_max_size_tooltip" => "",
- "image_max_width_tooltip" => "",
- "image_restrictions" => "",
- "include_hsn" => "",
- "info" => "",
- "info_configuration" => "",
- "input_groups" => "",
- "integrations" => "",
- "integrations_configuration" => "",
- "invoice" => "",
- "invoice_configuration" => "",
- "invoice_default_comments" => "",
- "invoice_email_message" => "",
- "invoice_enable" => "",
- "invoice_printer" => "",
- "invoice_type" => "",
- "is_readable" => "",
- "is_writable" => "is writable, but the permissions are higher than 750.",
- "item_markup" => "",
- "jsprintsetup_required" => "",
- "language" => "",
- "last_used_invoice_number" => "",
- "last_used_quote_number" => "",
- "last_used_work_order_number" => "",
- "left" => "",
- "license" => "",
- "license_configuration" => "",
- "line_sequence" => "",
- "lines_per_page" => "",
- "lines_per_page_number" => "",
- "lines_per_page_required" => "",
- "locale" => "",
- "locale_configuration" => "",
- "locale_info" => "",
- "location" => "",
- "location_configuration" => "",
- "location_info" => "",
- "login_form" => "",
- "logout" => "",
- "mailchimp" => "",
- "mailchimp_api_key" => "",
- "mailchimp_configuration" => "",
- "mailchimp_key_successfully" => "",
- "mailchimp_key_unsuccessfully" => "",
- "mailchimp_lists" => "",
- "mailchimp_tooltip" => "",
- "message" => "",
- "message_configuration" => "",
- "msg_msg" => "",
- "msg_msg_placeholder" => "",
- "msg_pwd" => "",
- "msg_pwd_required" => "",
- "msg_src" => "",
- "msg_src_required" => "",
- "msg_uid" => "",
- "msg_uid_required" => "",
- "multi_pack_enabled" => "",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "",
- "notify_alignment" => "",
- "number_format" => "",
- "number_locale" => "",
- "number_locale_invalid" => "",
- "number_locale_required" => "",
- "number_locale_tooltip" => "",
- "os_timezone" => "",
- "ospos_info" => "",
- "payment_options_order" => "",
- "perm_risk" => "Permissions higher than 750 leaves this software at risk.",
- "phone" => "",
- "phone_required" => "",
- "print_bottom_margin" => "",
- "print_bottom_margin_number" => "",
- "print_bottom_margin_required" => "",
- "print_delay_autoreturn" => "",
- "print_delay_autoreturn_number" => "",
- "print_delay_autoreturn_required" => "",
- "print_footer" => "",
- "print_header" => "",
- "print_left_margin" => "",
- "print_left_margin_number" => "",
- "print_left_margin_required" => "",
- "print_receipt_check_behaviour" => "",
- "print_receipt_check_behaviour_always" => "",
- "print_receipt_check_behaviour_last" => "",
- "print_receipt_check_behaviour_never" => "",
- "print_right_margin" => "",
- "print_right_margin_number" => "",
- "print_right_margin_required" => "",
- "print_silently" => "",
- "print_top_margin" => "",
- "print_top_margin_number" => "",
- "print_top_margin_required" => "",
- "quantity_decimals" => "",
- "quick_cash_enable" => "",
- "quote_default_comments" => "",
- "receipt" => "",
- "receipt_category" => "",
- "receipt_configuration" => "",
- "receipt_default" => "",
- "receipt_font_size" => "",
- "receipt_font_size_number" => "",
- "receipt_font_size_required" => "",
- "receipt_info" => "",
- "receipt_printer" => "",
- "receipt_short" => "",
- "receipt_show_company_name" => "",
- "receipt_show_description" => "",
- "receipt_show_serialnumber" => "",
- "receipt_show_tax_ind" => "",
- "receipt_show_taxes" => "",
- "receipt_show_total_discount" => "",
- "receipt_template" => "",
- "receiving_calculate_average_price" => "",
- "recv_invoice_format" => "",
- "register_mode_default" => "",
- "report_an_issue" => "",
- "return_policy_required" => "",
- "reward" => "",
- "reward_configuration" => "",
- "right" => "",
- "sales_invoice_format" => "",
- "sales_quote_format" => "",
- "mailpath_invalid" => "",
- "saved_successfully" => "",
- "saved_unsuccessfully" => "",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "Please use the below info for issue reporting.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "",
- "statistics" => "",
- "statistics_tooltip" => "",
- "stock_location" => "",
- "stock_location_duplicate" => "",
- "stock_location_invalid_chars" => "",
- "stock_location_required" => "",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "",
- "suggestions_second_column" => "",
- "suggestions_third_column" => "",
- "system_conf" => "Setup & Conf",
- "system_info" => "System Info",
- "table" => "",
- "table_configuration" => "",
- "takings_printer" => "",
- "tax" => "",
- "tax_category" => "",
- "tax_category_duplicate" => "",
- "tax_category_invalid_chars" => "",
- "tax_category_required" => "",
- "tax_category_used" => "",
- "tax_configuration" => "",
- "tax_decimals" => "",
- "tax_id" => "",
- "tax_included" => "",
- "theme" => "",
- "theme_preview" => "",
- "thousands_separator" => "",
- "timezone" => "",
- "timezone_error" => "",
- "top" => "",
- "use_destination_based_tax" => "",
- "user_timezone" => "",
- "website" => "",
- "wholesale_markup" => "",
- "work_order_enable" => "",
- "work_order_format" => "",
+ 'address' => '',
+ 'address_required' => '',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => '',
+ 'apostrophe' => '',
+ 'backup_button' => '',
+ 'backup_database' => '',
+ 'barcode' => '',
+ 'barcode_company' => '',
+ 'barcode_configuration' => '',
+ 'barcode_content' => '',
+ 'barcode_first_row' => '',
+ 'barcode_font' => '',
+ 'barcode_formats' => '',
+ 'barcode_generate_if_empty' => '',
+ 'barcode_height' => '',
+ 'barcode_id' => '',
+ 'barcode_info' => '',
+ 'barcode_layout' => '',
+ 'barcode_name' => '',
+ 'barcode_number' => '',
+ 'barcode_number_in_row' => '',
+ 'barcode_page_cellspacing' => '',
+ 'barcode_page_width' => '',
+ 'barcode_price' => '',
+ 'barcode_second_row' => '',
+ 'barcode_third_row' => '',
+ 'barcode_tooltip' => '',
+ 'barcode_type' => '',
+ 'barcode_width' => '',
+ 'bottom' => '',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => '',
+ 'cash_decimals_tooltip' => '',
+ 'cash_rounding' => '',
+ 'category_dropdown' => '',
+ 'center' => '',
+ 'change_apperance_tooltip' => '',
+ 'comma' => '',
+ 'company' => '',
+ 'company_avatar' => '',
+ 'company_change_image' => '',
+ 'company_logo' => '',
+ 'company_remove_image' => '',
+ 'company_required' => '',
+ 'company_select_image' => '',
+ 'company_website_url' => '',
+ 'country_codes' => '',
+ 'country_codes_tooltip' => '',
+ 'currency_code' => '',
+ 'currency_decimals' => '',
+ 'currency_symbol' => '',
+ 'current_employee_only' => '',
+ 'customer_reward' => '',
+ 'customer_reward_duplicate' => '',
+ 'customer_reward_enable' => '',
+ 'customer_reward_invalid_chars' => '',
+ 'customer_reward_required' => '',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => '',
+ 'datetimeformat' => '',
+ 'decimal_point' => '',
+ 'default_barcode_font_size_number' => '',
+ 'default_barcode_font_size_required' => '',
+ 'default_barcode_height_number' => '',
+ 'default_barcode_height_required' => '',
+ 'default_barcode_num_in_row_number' => '',
+ 'default_barcode_num_in_row_required' => '',
+ 'default_barcode_page_cellspacing_number' => '',
+ 'default_barcode_page_cellspacing_required' => '',
+ 'default_barcode_page_width_number' => '',
+ 'default_barcode_page_width_required' => '',
+ 'default_barcode_width_number' => '',
+ 'default_barcode_width_required' => '',
+ 'default_item_columns' => '',
+ 'default_origin_tax_code' => '',
+ 'default_receivings_discount' => '',
+ 'default_receivings_discount_number' => '',
+ 'default_receivings_discount_required' => '',
+ 'default_sales_discount' => '',
+ 'default_sales_discount_number' => '',
+ 'default_sales_discount_required' => '',
+ 'default_tax_category' => '',
+ 'default_tax_code' => '',
+ 'default_tax_jurisdiction' => '',
+ 'default_tax_name_number' => '',
+ 'default_tax_name_required' => '',
+ 'default_tax_rate' => '',
+ 'default_tax_rate_1' => '',
+ 'default_tax_rate_2' => '',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => '',
+ 'default_tax_rate_required' => '',
+ 'derive_sale_quantity' => '',
+ 'derive_sale_quantity_tooltip' => '',
+ 'dinner_table' => '',
+ 'dinner_table_duplicate' => '',
+ 'dinner_table_enable' => '',
+ 'dinner_table_invalid_chars' => '',
+ 'dinner_table_required' => '',
+ 'dot' => '',
+ 'email' => '',
+ 'email_configuration' => '',
+ 'email_mailpath' => '',
+ 'email_protocol' => '',
+ 'email_receipt_check_behaviour' => '',
+ 'email_receipt_check_behaviour_always' => '',
+ 'email_receipt_check_behaviour_last' => '',
+ 'email_receipt_check_behaviour_never' => '',
+ 'email_smtp_crypto' => '',
+ 'email_smtp_host' => '',
+ 'email_smtp_pass' => '',
+ 'email_smtp_port' => '',
+ 'email_smtp_timeout' => '',
+ 'email_smtp_user' => '',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => '',
+ 'enforce_privacy_tooltip' => '',
+ 'fax' => '',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => '',
+ 'financial_year_apr' => '',
+ 'financial_year_aug' => '',
+ 'financial_year_dec' => '',
+ 'financial_year_feb' => '',
+ 'financial_year_jan' => '',
+ 'financial_year_jul' => '',
+ 'financial_year_jun' => '',
+ 'financial_year_mar' => '',
+ 'financial_year_may' => '',
+ 'financial_year_nov' => '',
+ 'financial_year_oct' => '',
+ 'financial_year_sep' => '',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => '',
+ 'gcaptcha_secret_key' => '',
+ 'gcaptcha_secret_key_required' => '',
+ 'gcaptcha_site_key' => '',
+ 'gcaptcha_site_key_required' => '',
+ 'gcaptcha_tooltip' => '',
+ 'general' => '',
+ 'general_configuration' => '',
+ 'giftcard_number' => '',
+ 'giftcard_random' => '',
+ 'giftcard_series' => '',
+ 'image_allowed_file_types' => '',
+ 'image_max_height_tooltip' => '',
+ 'image_max_size_tooltip' => '',
+ 'image_max_width_tooltip' => '',
+ 'image_restrictions' => '',
+ 'include_hsn' => '',
+ 'info' => '',
+ 'info_configuration' => '',
+ 'input_groups' => '',
+ 'integrations' => '',
+ 'integrations_configuration' => '',
+ 'invoice' => '',
+ 'invoice_configuration' => '',
+ 'invoice_default_comments' => '',
+ 'invoice_email_message' => '',
+ 'invoice_enable' => '',
+ 'invoice_printer' => '',
+ 'invoice_type' => '',
+ 'is_readable' => '',
+ 'is_writable' => 'is writable, but the permissions are higher than 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => '',
+ 'language' => '',
+ 'last_used_invoice_number' => '',
+ 'last_used_quote_number' => '',
+ 'last_used_work_order_number' => '',
+ 'left' => '',
+ 'license' => '',
+ 'license_configuration' => '',
+ 'line_sequence' => '',
+ 'lines_per_page' => '',
+ 'lines_per_page_number' => '',
+ 'lines_per_page_required' => '',
+ 'locale' => '',
+ 'locale_configuration' => '',
+ 'locale_info' => '',
+ 'location' => '',
+ 'location_configuration' => '',
+ 'location_info' => '',
+ 'login_form' => '',
+ 'logout' => '',
+ 'mailchimp' => '',
+ 'mailchimp_api_key' => '',
+ 'mailchimp_configuration' => '',
+ 'mailchimp_key_successfully' => '',
+ 'mailchimp_key_unsuccessfully' => '',
+ 'mailchimp_lists' => '',
+ 'mailchimp_tooltip' => '',
+ 'message' => '',
+ 'message_configuration' => '',
+ 'msg_msg' => '',
+ 'msg_msg_placeholder' => '',
+ 'msg_pwd' => '',
+ 'msg_pwd_required' => '',
+ 'msg_src' => '',
+ 'msg_src_required' => '',
+ 'msg_uid' => '',
+ 'msg_uid_required' => '',
+ 'multi_pack_enabled' => '',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => '',
+ 'notify_alignment' => '',
+ 'number_format' => '',
+ 'number_locale' => '',
+ 'number_locale_invalid' => '',
+ 'number_locale_required' => '',
+ 'number_locale_tooltip' => '',
+ 'os_timezone' => '',
+ 'ospos_info' => '',
+ 'payment_options_order' => '',
+ 'payment_reference_code_length_limits' => 'പേയ്മെന്റ് റഫറൻസ് കോഡ്
ദൈർഘ്യ പരിധികൾ',
+ 'payment_reference_code_length_max_label' => 'പരമാവധി',
+ 'payment_reference_code_length_min_label' => 'കുറഞ്ഞത്',
+ 'perm_risk' => 'Permissions higher than 750 leaves this software at risk.',
+ 'phone' => '',
+ 'phone_required' => '',
+ 'print_bottom_margin' => '',
+ 'print_bottom_margin_number' => '',
+ 'print_bottom_margin_required' => '',
+ 'print_delay_autoreturn' => '',
+ 'print_delay_autoreturn_number' => '',
+ 'print_delay_autoreturn_required' => '',
+ 'print_footer' => '',
+ 'print_header' => '',
+ 'print_left_margin' => '',
+ 'print_left_margin_number' => '',
+ 'print_left_margin_required' => '',
+ 'print_receipt_check_behaviour' => '',
+ 'print_receipt_check_behaviour_always' => '',
+ 'print_receipt_check_behaviour_last' => '',
+ 'print_receipt_check_behaviour_never' => '',
+ 'print_right_margin' => '',
+ 'print_right_margin_number' => '',
+ 'print_right_margin_required' => '',
+ 'print_silently' => '',
+ 'print_top_margin' => '',
+ 'print_top_margin_number' => '',
+ 'print_top_margin_required' => '',
+ 'quantity_decimals' => '',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => '',
+ 'receipt' => '',
+ 'receipt_category' => '',
+ 'receipt_configuration' => '',
+ 'receipt_default' => '',
+ 'receipt_font_size' => '',
+ 'receipt_font_size_number' => '',
+ 'receipt_font_size_required' => '',
+ 'receipt_info' => '',
+ 'receipt_printer' => '',
+ 'receipt_short' => '',
+ 'receipt_show_company_name' => '',
+ 'receipt_show_description' => '',
+ 'receipt_show_serialnumber' => '',
+ 'receipt_show_tax_ind' => '',
+ 'receipt_show_taxes' => '',
+ 'receipt_show_total_discount' => '',
+ 'receipt_template' => '',
+ 'receiving_calculate_average_price' => '',
+ 'recv_invoice_format' => '',
+ 'register_mode_default' => '',
+ 'report_an_issue' => '',
+ 'return_policy_required' => '',
+ 'reward' => '',
+ 'reward_configuration' => '',
+ 'right' => '',
+ 'sales_invoice_format' => '',
+ 'sales_quote_format' => '',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => '',
+ 'saved_unsuccessfully' => '',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Please use the below info for issue reporting.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => '',
+ 'statistics' => '',
+ 'statistics_tooltip' => '',
+ 'stock_location' => '',
+ 'stock_location_duplicate' => '',
+ 'stock_location_invalid_chars' => '',
+ 'stock_location_required' => '',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => '',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => '',
+ 'suggestions_second_column' => '',
+ 'suggestions_third_column' => '',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => '',
+ 'table_configuration' => '',
+ 'takings_printer' => '',
+ 'tax' => '',
+ 'tax_category' => '',
+ 'tax_category_duplicate' => '',
+ 'tax_category_invalid_chars' => '',
+ 'tax_category_required' => '',
+ 'tax_category_used' => '',
+ 'tax_configuration' => '',
+ 'tax_decimals' => '',
+ 'tax_id' => '',
+ 'tax_included' => '',
+ 'theme' => '',
+ 'theme_preview' => '',
+ 'thousands_separator' => '',
+ 'timezone' => '',
+ 'timezone_error' => '',
+ 'top' => '',
+ 'use_destination_based_tax' => '',
+ 'user_timezone' => '',
+ 'website' => '',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => '',
+ 'work_order_format' => '',
];
diff --git a/app/Language/ml/Login.php b/app/Language/ml/Login.php
index 652c3f22c..27bc82c3a 100644
--- a/app/Language/ml/Login.php
+++ b/app/Language/ml/Login.php
@@ -1,25 +1,30 @@
"",
- "go" => "",
- "invalid_gcaptcha" => "",
- "invalid_installation" => "",
- "invalid_username_and_password" => "",
- "login" => "",
- "logout" => "",
- "migration_needed" => "",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "",
- "required_username" => "",
- "username" => "",
- "welcome" => "",
+ "gcaptcha" => "",
+ "go" => "",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "",
+ "invalid_installation" => "",
+ "invalid_username_and_password" => "",
+ "login" => "",
+ "logout" => "",
+ "migrating_database" => "ഡേറ്റാബേസ് മൈഗ്രേറ്റ് ചെയ്യുന്നു",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "ഡേറ്റാബേസ് വിജയകരമായി മൈഗ്രേറ്റ് ചെയ്തു!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "",
+ "required_username" => "",
+ "username" => "",
+ "welcome" => ""
];
diff --git a/app/Language/ml/Sales.php b/app/Language/ml/Sales.php
index 4bda63368..34d67287f 100644
--- a/app/Language/ml/Sales.php
+++ b/app/Language/ml/Sales.php
@@ -1,232 +1,235 @@
"",
- "rewards_package" => "",
- "rewards_remaining_balance" => "",
- "account_number" => "",
- "add_payment" => "",
- "amount_due" => "",
- "amount_tendered" => "",
- "authorized_signature" => "",
- "cancel_sale" => "",
- "cash" => "",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "",
- "cash_deposit" => "",
- "cash_filter" => "",
- "change_due" => "",
- "change_price" => "",
- "check" => "",
- "check_balance" => "",
- "check_filter" => "",
- "close" => "",
- "comment" => "",
- "comments" => "",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "",
- "confirm_cancel_sale" => "",
- "confirm_delete" => "",
- "confirm_restore" => "",
- "credit" => "",
- "credit_deposit" => "",
- "credit_filter" => "",
- "current_table" => "",
- "customer" => "",
- "customer_address" => "",
- "customer_discount" => "",
- "customer_email" => "",
- "customer_location" => "",
- "customer_mailchimp_status" => "",
- "customer_optional" => "",
- "customer_required" => "",
- "customer_total" => "",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "",
- "date_range" => "",
- "date_required" => "",
- "date_type" => "",
- "debit" => "",
- "debit_filter" => "",
- "delete" => "",
- "delete_confirmation" => "",
- "delete_entire_sale" => "",
- "delete_successful" => "",
- "delete_unsuccessful" => "",
- "description_abbrv" => "",
- "discard" => "",
- "discard_quote" => "",
- "discount" => "",
- "discount_included" => "",
- "discount_short" => "",
- "due" => "",
- "due_filter" => "",
- "edit" => "",
- "edit_item" => "",
- "edit_sale" => "",
- "email_receipt" => "",
- "employee" => "",
- "entry" => "",
- "error_editing_item" => "",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "",
- "find_or_scan_item_or_receipt" => "",
- "giftcard" => "",
- "giftcard_balance" => "",
- "giftcard_filter" => "",
- "giftcard_number" => "",
- "group_by_category" => "",
- "group_by_type" => "",
- "hsn" => "",
- "id" => "",
- "include_prices" => "",
- "invoice" => "",
- "invoice_confirm" => "",
- "invoice_enable" => "",
- "invoice_filter" => "",
- "invoice_no_email" => "",
- "invoice_number" => "",
- "invoice_number_duplicate" => "",
- "invoice_sent" => "",
- "invoice_total" => "",
- "invoice_type_custom_invoice" => "",
- "invoice_type_custom_tax_invoice" => "",
- "invoice_type_invoice" => "",
- "invoice_type_tax_invoice" => "",
- "invoice_unsent" => "",
- "invoice_update" => "",
- "item_insufficient_of_stock" => "",
- "item_name" => "",
- "item_number" => "",
- "item_out_of_stock" => "",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "",
- "must_enter_numeric" => "",
- "must_enter_numeric_giftcard" => "",
- "new_customer" => "",
- "new_item" => "",
- "no_description" => "",
- "no_filter" => "",
- "no_items_in_cart" => "",
- "no_sales_to_display" => "",
- "none_selected" => "",
- "nontaxed_ind" => "",
- "not_authorized" => "",
- "one_or_multiple" => "",
- "payment" => "",
- "payment_amount" => "",
- "payment_not_cover_total" => "",
- "payment_type" => "",
- "payments" => "",
- "payments_total" => "",
- "price" => "",
- "print_after_sale" => "",
- "quantity" => "",
- "quantity_less_than_reorder_level" => "",
- "quantity_less_than_zero" => "",
- "quantity_of_items" => "",
- "quote" => "",
- "quote_number" => "",
- "quote_number_duplicate" => "",
- "quote_sent" => "",
- "quote_unsent" => "",
- "receipt" => "",
- "receipt_no_email" => "",
- "receipt_number" => "",
- "receipt_sent" => "",
- "receipt_unsent" => "",
- "refund" => "",
- "register" => "",
- "remove_customer" => "",
- "remove_discount" => "",
- "return" => "",
- "rewards" => "",
- "rewards_balance" => "",
- "sale" => "",
- "sale_by_invoice" => "",
- "sale_for_customer" => "",
- "sale_time" => "",
- "sales_tax" => "",
- "sales_total" => "",
- "select_customer" => "",
- "send_invoice" => "",
- "send_quote" => "",
- "send_receipt" => "",
- "send_work_order" => "",
- "serial" => "",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "",
- "show_receipt" => "",
- "start_typing_customer_name" => "",
- "start_typing_item_name" => "",
- "stock" => "",
- "stock_location" => "",
- "sub_total" => "",
- "successfully_deleted" => "",
- "successfully_restored" => "",
- "successfully_suspended_sale" => "",
- "successfully_updated" => "",
- "suspend_sale" => "",
- "suspended_doc_id" => "",
- "suspended_sale_id" => "",
- "suspended_sales" => "",
- "table" => "",
- "takings" => "",
- "tax" => "",
- "tax_id" => "",
- "tax_invoice" => "",
- "tax_percent" => "",
- "taxed_ind" => "",
- "total" => "",
- "total_tax_exclusive" => "",
- "transaction_failed" => "",
- "unable_to_add_item" => "",
- "unsuccessfully_deleted" => "",
- "unsuccessfully_restored" => "",
- "unsuccessfully_suspended_sale" => "",
- "unsuccessfully_updated" => "",
- "unsuspend" => "",
- "unsuspend_and_delete" => "",
- "update" => "",
- "upi" => "",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "",
- "work_order_number" => "",
- "work_order_number_duplicate" => "",
- "work_order_sent" => "",
- "work_order_unsent" => "",
- "sale_not_found" => "",
+ 'account_number' => '',
+ 'add_payment' => '',
+ 'amount_due' => '',
+ 'amount_tendered' => '',
+ 'authorized_signature' => '',
+ 'cancel_sale' => '',
+ 'cash' => '',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => '',
+ 'cash_deposit' => '',
+ 'cash_filter' => '',
+ 'change_due' => '',
+ 'change_price' => '',
+ 'check' => '',
+ 'check_balance' => '',
+ 'check_filter' => '',
+ 'close' => '',
+ 'comment' => '',
+ 'comments' => '',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => '',
+ 'confirm_cancel_sale' => '',
+ 'confirm_delete' => '',
+ 'confirm_restore' => '',
+ 'credit' => '',
+ 'credit_deposit' => '',
+ 'credit_filter' => '',
+ 'current_table' => '',
+ 'customer' => '',
+ 'customer_address' => '',
+ 'customer_discount' => '',
+ 'customer_email' => '',
+ 'customer_location' => '',
+ 'customer_mailchimp_status' => '',
+ 'customer_optional' => '',
+ 'customer_required' => '',
+ 'customer_total' => '',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => '',
+ 'daily_sales' => '',
+ 'date' => '',
+ 'date_range' => '',
+ 'date_required' => '',
+ 'date_type' => '',
+ 'debit' => '',
+ 'debit_filter' => '',
+ 'delete' => '',
+ 'delete_confirmation' => '',
+ 'delete_entire_sale' => '',
+ 'delete_successful' => '',
+ 'delete_unsuccessful' => '',
+ 'description_abbrv' => '',
+ 'discard' => '',
+ 'discard_quote' => '',
+ 'discount' => '',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '',
+ 'due' => '',
+ 'due_filter' => '',
+ 'edit' => '',
+ 'edit_item' => '',
+ 'edit_sale' => '',
+ 'email_receipt' => '',
+ 'employee' => '',
+ 'entry' => '',
+ 'error_editing_item' => '',
+ 'find_or_scan_item' => '',
+ 'find_or_scan_item_or_receipt' => '',
+ 'giftcard' => '',
+ 'giftcard_balance' => '',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => '',
+ 'group_by_category' => '',
+ 'group_by_type' => '',
+ 'hsn' => '',
+ 'id' => '',
+ 'include_prices' => '',
+ 'invoice' => '',
+ 'invoice_confirm' => '',
+ 'invoice_enable' => '',
+ 'invoice_filter' => '',
+ 'invoice_no_email' => '',
+ 'invoice_number' => '',
+ 'invoice_number_duplicate' => '',
+ 'invoice_sent' => '',
+ 'invoice_total' => '',
+ 'invoice_type_custom_invoice' => '',
+ 'invoice_type_custom_tax_invoice' => '',
+ 'invoice_type_invoice' => '',
+ 'invoice_type_tax_invoice' => '',
+ 'invoice_unsent' => '',
+ 'invoice_update' => '',
+ 'item_insufficient_of_stock' => '',
+ 'item_name' => '',
+ 'item_number' => '',
+ 'item_out_of_stock' => '',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => '',
+ 'must_enter_numeric' => '',
+ 'must_enter_numeric_giftcard' => '',
+ 'must_enter_reference_code' => 'റഫറൻസ്/റിട്രീവൽ നമ്പർ നൽകണം.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => '',
+ 'new_item' => '',
+ 'no_description' => '',
+ 'no_filter' => '',
+ 'no_items_in_cart' => '',
+ 'no_sales_to_display' => '',
+ 'none_selected' => '',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => '',
+ 'one_or_multiple' => '',
+ 'payment' => '',
+ 'payment_amount' => '',
+ 'payment_not_cover_total' => '',
+ 'payment_type' => '',
+ 'payments' => '',
+ 'payments_total' => '',
+ 'price' => '',
+ 'print_after_sale' => '',
+ 'quantity' => '',
+ 'quantity_less_than_reorder_level' => '',
+ 'quantity_less_than_zero' => '',
+ 'quantity_of_items' => '',
+ 'quote' => '',
+ 'quote_number' => '',
+ 'quote_number_duplicate' => '',
+ 'quote_sent' => '',
+ 'quote_unsent' => '',
+ 'receipt' => '',
+ 'receipt_no_email' => '',
+ 'receipt_number' => '',
+ 'receipt_sent' => '',
+ 'receipt_unsent' => '',
+ 'reference_code' => 'പേയ്മെന്റ് റഫറൻസ് കോഡ്',
+ 'reference_code_invalid_characters' => 'റഫറൻസ് കോഡിൽ അക്ഷരങ്ങളും അക്കങ്ങളും മാത്രം ഉണ്ടായിരിക്കണം.',
+ 'reference_code_length_error' => 'റഫറൻസ് കോഡിന്റെ ദൈർഘ്യം അസാധുവാണ്.',
+ 'refund' => '',
+ 'register' => '',
+ 'remove_customer' => '',
+ 'remove_discount' => '',
+ 'return' => '',
+ 'rewards' => '',
+ 'rewards_balance' => '',
+ 'rewards_package' => '',
+ 'rewards_remaining_balance' => '',
+ 'sale' => '',
+ 'sale_by_invoice' => '',
+ 'sale_for_customer' => '',
+ 'sale_time' => '',
+ 'sales_tax' => '',
+ 'sales_total' => '',
+ 'select_customer' => '',
+ 'send_invoice' => '',
+ 'send_quote' => '',
+ 'send_receipt' => '',
+ 'send_work_order' => '',
+ 'serial' => '',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => '',
+ 'show_receipt' => '',
+ 'start_typing_customer_name' => '',
+ 'start_typing_item_name' => '',
+ 'stock' => '',
+ 'stock_location' => '',
+ 'sub_total' => '',
+ 'successfully_deleted' => '',
+ 'successfully_restored' => '',
+ 'successfully_suspended_sale' => '',
+ 'successfully_updated' => '',
+ 'suspend_sale' => '',
+ 'suspended_doc_id' => '',
+ 'suspended_sale_id' => '',
+ 'suspended_sales' => '',
+ 'table' => '',
+ 'takings' => '',
+ 'tax' => '',
+ 'tax_id' => '',
+ 'tax_invoice' => '',
+ 'tax_percent' => '',
+ 'taxed_ind' => '',
+ 'total' => '',
+ 'total_tax_exclusive' => '',
+ 'transaction_failed' => '',
+ 'unable_to_add_item' => '',
+ 'unsuccessfully_deleted' => '',
+ 'unsuccessfully_restored' => '',
+ 'unsuccessfully_suspended_sale' => '',
+ 'unsuccessfully_updated' => '',
+ 'unsuspend' => '',
+ 'unsuspend_and_delete' => '',
+ 'update' => '',
+ 'upi' => '',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => '',
+ 'work_order_number' => '',
+ 'work_order_number_duplicate' => '',
+ 'work_order_sent' => '',
+ 'work_order_unsent' => '',
];
diff --git a/app/Language/nb/Config.php b/app/Language/nb/Config.php
index 75bb39ba1..19fa62813 100644
--- a/app/Language/nb/Config.php
+++ b/app/Language/nb/Config.php
@@ -1,332 +1,335 @@
"",
- "address_required" => "",
- "all_set" => "",
- "allow_duplicate_barcodes" => "",
- "apostrophe" => "",
- "backup_button" => "",
- "backup_database" => "",
- "barcode" => "",
- "barcode_company" => "",
- "barcode_configuration" => "",
- "barcode_content" => "",
- "barcode_first_row" => "",
- "barcode_font" => "",
- "barcode_formats" => "",
- "barcode_generate_if_empty" => "",
- "barcode_height" => "",
- "barcode_id" => "",
- "barcode_info" => "",
- "barcode_layout" => "",
- "barcode_name" => "",
- "barcode_number" => "",
- "barcode_number_in_row" => "",
- "barcode_page_cellspacing" => "",
- "barcode_page_width" => "",
- "barcode_price" => "",
- "barcode_second_row" => "",
- "barcode_third_row" => "",
- "barcode_tooltip" => "",
- "barcode_type" => "",
- "barcode_width" => "",
- "bottom" => "",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "",
- "cash_decimals_tooltip" => "",
- "cash_rounding" => "",
- "category_dropdown" => "",
- "center" => "",
- "change_apperance_tooltip" => "",
- "comma" => "",
- "company" => "",
- "company_avatar" => "",
- "company_change_image" => "",
- "company_logo" => "",
- "company_remove_image" => "",
- "company_required" => "",
- "company_select_image" => "",
- "company_website_url" => "",
- "country_codes" => "",
- "country_codes_tooltip" => "",
- "currency_code" => "",
- "currency_decimals" => "",
- "currency_symbol" => "",
- "current_employee_only" => "",
- "customer_reward" => "",
- "customer_reward_duplicate" => "",
- "customer_reward_enable" => "",
- "customer_reward_invalid_chars" => "",
- "customer_reward_required" => "",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "",
- "datetimeformat" => "",
- "decimal_point" => "",
- "default_barcode_font_size_number" => "",
- "default_barcode_font_size_required" => "",
- "default_barcode_height_number" => "",
- "default_barcode_height_required" => "",
- "default_barcode_num_in_row_number" => "",
- "default_barcode_num_in_row_required" => "",
- "default_barcode_page_cellspacing_number" => "",
- "default_barcode_page_cellspacing_required" => "",
- "default_barcode_page_width_number" => "",
- "default_barcode_page_width_required" => "",
- "default_barcode_width_number" => "",
- "default_barcode_width_required" => "",
- "default_item_columns" => "",
- "default_origin_tax_code" => "",
- "default_receivings_discount" => "",
- "default_receivings_discount_number" => "",
- "default_receivings_discount_required" => "",
- "default_sales_discount" => "",
- "default_sales_discount_number" => "",
- "default_sales_discount_required" => "",
- "default_tax_category" => "",
- "default_tax_code" => "",
- "default_tax_jurisdiction" => "",
- "default_tax_name_number" => "",
- "default_tax_name_required" => "",
- "default_tax_rate" => "",
- "default_tax_rate_1" => "",
- "default_tax_rate_2" => "",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "",
- "default_tax_rate_required" => "",
- "derive_sale_quantity" => "",
- "derive_sale_quantity_tooltip" => "",
- "dinner_table" => "",
- "dinner_table_duplicate" => "",
- "dinner_table_enable" => "",
- "dinner_table_invalid_chars" => "",
- "dinner_table_required" => "",
- "dot" => "",
- "email" => "",
- "email_configuration" => "",
- "email_mailpath" => "",
- "email_protocol" => "",
- "email_receipt_check_behaviour" => "",
- "email_receipt_check_behaviour_always" => "",
- "email_receipt_check_behaviour_last" => "",
- "email_receipt_check_behaviour_never" => "",
- "email_smtp_crypto" => "",
- "email_smtp_host" => "",
- "email_smtp_pass" => "",
- "email_smtp_port" => "",
- "email_smtp_timeout" => "",
- "email_smtp_user" => "",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "",
- "enforce_privacy_tooltip" => "",
- "fax" => "",
- "file_perm" => "",
- "financial_year" => "",
- "financial_year_apr" => "",
- "financial_year_aug" => "",
- "financial_year_dec" => "",
- "financial_year_feb" => "",
- "financial_year_jan" => "",
- "financial_year_jul" => "",
- "financial_year_jun" => "",
- "financial_year_mar" => "",
- "financial_year_may" => "",
- "financial_year_nov" => "",
- "financial_year_oct" => "",
- "financial_year_sep" => "",
- "floating_labels" => "",
- "gcaptcha_enable" => "",
- "gcaptcha_secret_key" => "",
- "gcaptcha_secret_key_required" => "",
- "gcaptcha_site_key" => "",
- "gcaptcha_site_key_required" => "",
- "gcaptcha_tooltip" => "",
- "general" => "",
- "general_configuration" => "",
- "giftcard_number" => "",
- "giftcard_random" => "",
- "giftcard_series" => "",
- "image_allowed_file_types" => "",
- "image_max_height_tooltip" => "",
- "image_max_size_tooltip" => "",
- "image_max_width_tooltip" => "",
- "image_restrictions" => "",
- "include_hsn" => "",
- "info" => "",
- "info_configuration" => "",
- "input_groups" => "",
- "integrations" => "",
- "integrations_configuration" => "",
- "invoice" => "",
- "invoice_configuration" => "",
- "invoice_default_comments" => "",
- "invoice_email_message" => "",
- "invoice_enable" => "",
- "invoice_printer" => "",
- "invoice_type" => "",
- "is_readable" => "",
- "is_writable" => "",
- "item_markup" => "",
- "jsprintsetup_required" => "",
- "language" => "",
- "last_used_invoice_number" => "",
- "last_used_quote_number" => "",
- "last_used_work_order_number" => "",
- "left" => "",
- "license" => "",
- "license_configuration" => "",
- "line_sequence" => "",
- "lines_per_page" => "",
- "lines_per_page_number" => "",
- "lines_per_page_required" => "",
- "locale" => "",
- "locale_configuration" => "",
- "locale_info" => "",
- "location" => "",
- "location_configuration" => "",
- "location_info" => "",
- "login_form" => "",
- "logout" => "",
- "mailchimp" => "",
- "mailchimp_api_key" => "",
- "mailchimp_configuration" => "",
- "mailchimp_key_successfully" => "",
- "mailchimp_key_unsuccessfully" => "",
- "mailchimp_lists" => "",
- "mailchimp_tooltip" => "",
- "message" => "",
- "message_configuration" => "",
- "msg_msg" => "",
- "msg_msg_placeholder" => "",
- "msg_pwd" => "",
- "msg_pwd_required" => "",
- "msg_src" => "",
- "msg_src_required" => "",
- "msg_uid" => "",
- "msg_uid_required" => "",
- "multi_pack_enabled" => "",
- "no_risk" => "",
- "none" => "",
- "notify_alignment" => "",
- "number_format" => "",
- "number_locale" => "",
- "number_locale_invalid" => "",
- "number_locale_required" => "",
- "number_locale_tooltip" => "",
- "os_timezone" => "",
- "ospos_info" => "",
- "payment_options_order" => "",
- "perm_risk" => "",
- "phone" => "",
- "phone_required" => "",
- "print_bottom_margin" => "",
- "print_bottom_margin_number" => "",
- "print_bottom_margin_required" => "",
- "print_delay_autoreturn" => "",
- "print_delay_autoreturn_number" => "",
- "print_delay_autoreturn_required" => "",
- "print_footer" => "",
- "print_header" => "",
- "print_left_margin" => "",
- "print_left_margin_number" => "",
- "print_left_margin_required" => "",
- "print_receipt_check_behaviour" => "",
- "print_receipt_check_behaviour_always" => "",
- "print_receipt_check_behaviour_last" => "",
- "print_receipt_check_behaviour_never" => "",
- "print_right_margin" => "",
- "print_right_margin_number" => "",
- "print_right_margin_required" => "",
- "print_silently" => "",
- "print_top_margin" => "",
- "print_top_margin_number" => "",
- "print_top_margin_required" => "",
- "quantity_decimals" => "",
- "quick_cash_enable" => "",
- "quote_default_comments" => "",
- "receipt" => "",
- "receipt_category" => "",
- "receipt_configuration" => "",
- "receipt_default" => "",
- "receipt_font_size" => "",
- "receipt_font_size_number" => "",
- "receipt_font_size_required" => "",
- "receipt_info" => "",
- "receipt_printer" => "",
- "receipt_short" => "",
- "receipt_show_company_name" => "",
- "receipt_show_description" => "",
- "receipt_show_serialnumber" => "",
- "receipt_show_tax_ind" => "",
- "receipt_show_taxes" => "",
- "receipt_show_total_discount" => "",
- "receipt_template" => "",
- "receiving_calculate_average_price" => "",
- "recv_invoice_format" => "",
- "register_mode_default" => "",
- "report_an_issue" => "",
- "return_policy_required" => "",
- "reward" => "",
- "reward_configuration" => "",
- "right" => "",
- "sales_invoice_format" => "",
- "sales_quote_format" => "",
- "mailpath_invalid" => "",
- "saved_successfully" => "",
- "saved_unsuccessfully" => "",
- "security_issue" => "",
- "server_notice" => "",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "",
- "statistics" => "",
- "statistics_tooltip" => "",
- "stock_location" => "",
- "stock_location_duplicate" => "",
- "stock_location_invalid_chars" => "",
- "stock_location_required" => "",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "",
- "suggestions_second_column" => "",
- "suggestions_third_column" => "",
- "system_conf" => "",
- "system_info" => "",
- "table" => "",
- "table_configuration" => "",
- "takings_printer" => "",
- "tax" => "",
- "tax_category" => "",
- "tax_category_duplicate" => "",
- "tax_category_invalid_chars" => "",
- "tax_category_required" => "",
- "tax_category_used" => "",
- "tax_configuration" => "",
- "tax_decimals" => "",
- "tax_id" => "",
- "tax_included" => "",
- "theme" => "",
- "theme_preview" => "",
- "thousands_separator" => "",
- "timezone" => "",
- "timezone_error" => "",
- "top" => "",
- "use_destination_based_tax" => "",
- "user_timezone" => "",
- "website" => "",
- "wholesale_markup" => "",
- "work_order_enable" => "",
- "work_order_format" => "",
+ 'address' => '',
+ 'address_required' => '',
+ 'all_set' => '',
+ 'allow_duplicate_barcodes' => '',
+ 'apostrophe' => '',
+ 'backup_button' => '',
+ 'backup_database' => '',
+ 'barcode' => '',
+ 'barcode_company' => '',
+ 'barcode_configuration' => '',
+ 'barcode_content' => '',
+ 'barcode_first_row' => '',
+ 'barcode_font' => '',
+ 'barcode_formats' => '',
+ 'barcode_generate_if_empty' => '',
+ 'barcode_height' => '',
+ 'barcode_id' => '',
+ 'barcode_info' => '',
+ 'barcode_layout' => '',
+ 'barcode_name' => '',
+ 'barcode_number' => '',
+ 'barcode_number_in_row' => '',
+ 'barcode_page_cellspacing' => '',
+ 'barcode_page_width' => '',
+ 'barcode_price' => '',
+ 'barcode_second_row' => '',
+ 'barcode_third_row' => '',
+ 'barcode_tooltip' => '',
+ 'barcode_type' => '',
+ 'barcode_width' => '',
+ 'bottom' => '',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => '',
+ 'cash_decimals_tooltip' => '',
+ 'cash_rounding' => '',
+ 'category_dropdown' => '',
+ 'center' => '',
+ 'change_apperance_tooltip' => '',
+ 'comma' => '',
+ 'company' => '',
+ 'company_avatar' => '',
+ 'company_change_image' => '',
+ 'company_logo' => '',
+ 'company_remove_image' => '',
+ 'company_required' => '',
+ 'company_select_image' => '',
+ 'company_website_url' => '',
+ 'country_codes' => '',
+ 'country_codes_tooltip' => '',
+ 'currency_code' => '',
+ 'currency_decimals' => '',
+ 'currency_symbol' => '',
+ 'current_employee_only' => '',
+ 'customer_reward' => '',
+ 'customer_reward_duplicate' => '',
+ 'customer_reward_enable' => '',
+ 'customer_reward_invalid_chars' => '',
+ 'customer_reward_required' => '',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => '',
+ 'datetimeformat' => '',
+ 'decimal_point' => '',
+ 'default_barcode_font_size_number' => '',
+ 'default_barcode_font_size_required' => '',
+ 'default_barcode_height_number' => '',
+ 'default_barcode_height_required' => '',
+ 'default_barcode_num_in_row_number' => '',
+ 'default_barcode_num_in_row_required' => '',
+ 'default_barcode_page_cellspacing_number' => '',
+ 'default_barcode_page_cellspacing_required' => '',
+ 'default_barcode_page_width_number' => '',
+ 'default_barcode_page_width_required' => '',
+ 'default_barcode_width_number' => '',
+ 'default_barcode_width_required' => '',
+ 'default_item_columns' => '',
+ 'default_origin_tax_code' => '',
+ 'default_receivings_discount' => '',
+ 'default_receivings_discount_number' => '',
+ 'default_receivings_discount_required' => '',
+ 'default_sales_discount' => '',
+ 'default_sales_discount_number' => '',
+ 'default_sales_discount_required' => '',
+ 'default_tax_category' => '',
+ 'default_tax_code' => '',
+ 'default_tax_jurisdiction' => '',
+ 'default_tax_name_number' => '',
+ 'default_tax_name_required' => '',
+ 'default_tax_rate' => '',
+ 'default_tax_rate_1' => '',
+ 'default_tax_rate_2' => '',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => '',
+ 'default_tax_rate_required' => '',
+ 'derive_sale_quantity' => '',
+ 'derive_sale_quantity_tooltip' => '',
+ 'dinner_table' => '',
+ 'dinner_table_duplicate' => '',
+ 'dinner_table_enable' => '',
+ 'dinner_table_invalid_chars' => '',
+ 'dinner_table_required' => '',
+ 'dot' => '',
+ 'email' => '',
+ 'email_configuration' => '',
+ 'email_mailpath' => '',
+ 'email_protocol' => '',
+ 'email_receipt_check_behaviour' => '',
+ 'email_receipt_check_behaviour_always' => '',
+ 'email_receipt_check_behaviour_last' => '',
+ 'email_receipt_check_behaviour_never' => '',
+ 'email_smtp_crypto' => '',
+ 'email_smtp_host' => '',
+ 'email_smtp_pass' => '',
+ 'email_smtp_port' => '',
+ 'email_smtp_timeout' => '',
+ 'email_smtp_user' => '',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => '',
+ 'enforce_privacy_tooltip' => '',
+ 'fax' => '',
+ 'file_perm' => '',
+ 'financial_year' => '',
+ 'financial_year_apr' => '',
+ 'financial_year_aug' => '',
+ 'financial_year_dec' => '',
+ 'financial_year_feb' => '',
+ 'financial_year_jan' => '',
+ 'financial_year_jul' => '',
+ 'financial_year_jun' => '',
+ 'financial_year_mar' => '',
+ 'financial_year_may' => '',
+ 'financial_year_nov' => '',
+ 'financial_year_oct' => '',
+ 'financial_year_sep' => '',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => '',
+ 'gcaptcha_secret_key' => '',
+ 'gcaptcha_secret_key_required' => '',
+ 'gcaptcha_site_key' => '',
+ 'gcaptcha_site_key_required' => '',
+ 'gcaptcha_tooltip' => '',
+ 'general' => '',
+ 'general_configuration' => '',
+ 'giftcard_number' => '',
+ 'giftcard_random' => '',
+ 'giftcard_series' => '',
+ 'image_allowed_file_types' => '',
+ 'image_max_height_tooltip' => '',
+ 'image_max_size_tooltip' => '',
+ 'image_max_width_tooltip' => '',
+ 'image_restrictions' => '',
+ 'include_hsn' => '',
+ 'info' => '',
+ 'info_configuration' => '',
+ 'input_groups' => '',
+ 'integrations' => '',
+ 'integrations_configuration' => '',
+ 'invoice' => '',
+ 'invoice_configuration' => '',
+ 'invoice_default_comments' => '',
+ 'invoice_email_message' => '',
+ 'invoice_enable' => '',
+ 'invoice_printer' => '',
+ 'invoice_type' => '',
+ 'is_readable' => '',
+ 'is_writable' => '',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => '',
+ 'language' => '',
+ 'last_used_invoice_number' => '',
+ 'last_used_quote_number' => '',
+ 'last_used_work_order_number' => '',
+ 'left' => '',
+ 'license' => '',
+ 'license_configuration' => '',
+ 'line_sequence' => '',
+ 'lines_per_page' => '',
+ 'lines_per_page_number' => '',
+ 'lines_per_page_required' => '',
+ 'locale' => '',
+ 'locale_configuration' => '',
+ 'locale_info' => '',
+ 'location' => '',
+ 'location_configuration' => '',
+ 'location_info' => '',
+ 'login_form' => '',
+ 'logout' => '',
+ 'mailchimp' => '',
+ 'mailchimp_api_key' => '',
+ 'mailchimp_configuration' => '',
+ 'mailchimp_key_successfully' => '',
+ 'mailchimp_key_unsuccessfully' => '',
+ 'mailchimp_lists' => '',
+ 'mailchimp_tooltip' => '',
+ 'message' => '',
+ 'message_configuration' => '',
+ 'msg_msg' => '',
+ 'msg_msg_placeholder' => '',
+ 'msg_pwd' => '',
+ 'msg_pwd_required' => '',
+ 'msg_src' => '',
+ 'msg_src_required' => '',
+ 'msg_uid' => '',
+ 'msg_uid_required' => '',
+ 'multi_pack_enabled' => '',
+ 'no_risk' => '',
+ 'none' => '',
+ 'notify_alignment' => '',
+ 'number_format' => '',
+ 'number_locale' => '',
+ 'number_locale_invalid' => '',
+ 'number_locale_required' => '',
+ 'number_locale_tooltip' => '',
+ 'os_timezone' => '',
+ 'ospos_info' => '',
+ 'payment_options_order' => '',
+ 'payment_reference_code_length_limits' => 'Betalingsreferansekode
Lengdegrenser',
+ 'payment_reference_code_length_max_label' => 'Maks',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => '',
+ 'phone' => '',
+ 'phone_required' => '',
+ 'print_bottom_margin' => '',
+ 'print_bottom_margin_number' => '',
+ 'print_bottom_margin_required' => '',
+ 'print_delay_autoreturn' => '',
+ 'print_delay_autoreturn_number' => '',
+ 'print_delay_autoreturn_required' => '',
+ 'print_footer' => '',
+ 'print_header' => '',
+ 'print_left_margin' => '',
+ 'print_left_margin_number' => '',
+ 'print_left_margin_required' => '',
+ 'print_receipt_check_behaviour' => '',
+ 'print_receipt_check_behaviour_always' => '',
+ 'print_receipt_check_behaviour_last' => '',
+ 'print_receipt_check_behaviour_never' => '',
+ 'print_right_margin' => '',
+ 'print_right_margin_number' => '',
+ 'print_right_margin_required' => '',
+ 'print_silently' => '',
+ 'print_top_margin' => '',
+ 'print_top_margin_number' => '',
+ 'print_top_margin_required' => '',
+ 'quantity_decimals' => '',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => '',
+ 'receipt' => '',
+ 'receipt_category' => '',
+ 'receipt_configuration' => '',
+ 'receipt_default' => '',
+ 'receipt_font_size' => '',
+ 'receipt_font_size_number' => '',
+ 'receipt_font_size_required' => '',
+ 'receipt_info' => '',
+ 'receipt_printer' => '',
+ 'receipt_short' => '',
+ 'receipt_show_company_name' => '',
+ 'receipt_show_description' => '',
+ 'receipt_show_serialnumber' => '',
+ 'receipt_show_tax_ind' => '',
+ 'receipt_show_taxes' => '',
+ 'receipt_show_total_discount' => '',
+ 'receipt_template' => '',
+ 'receiving_calculate_average_price' => '',
+ 'recv_invoice_format' => '',
+ 'register_mode_default' => '',
+ 'report_an_issue' => '',
+ 'return_policy_required' => '',
+ 'reward' => '',
+ 'reward_configuration' => '',
+ 'right' => '',
+ 'sales_invoice_format' => '',
+ 'sales_quote_format' => '',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => '',
+ 'saved_unsuccessfully' => '',
+ 'security_issue' => '',
+ 'server_notice' => '',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => '',
+ 'statistics' => '',
+ 'statistics_tooltip' => '',
+ 'stock_location' => '',
+ 'stock_location_duplicate' => '',
+ 'stock_location_invalid_chars' => '',
+ 'stock_location_required' => '',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => '',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => '',
+ 'suggestions_second_column' => '',
+ 'suggestions_third_column' => '',
+ 'system_conf' => '',
+ 'system_info' => '',
+ 'table' => '',
+ 'table_configuration' => '',
+ 'takings_printer' => '',
+ 'tax' => '',
+ 'tax_category' => '',
+ 'tax_category_duplicate' => '',
+ 'tax_category_invalid_chars' => '',
+ 'tax_category_required' => '',
+ 'tax_category_used' => '',
+ 'tax_configuration' => '',
+ 'tax_decimals' => '',
+ 'tax_id' => '',
+ 'tax_included' => '',
+ 'theme' => '',
+ 'theme_preview' => '',
+ 'thousands_separator' => '',
+ 'timezone' => '',
+ 'timezone_error' => '',
+ 'top' => '',
+ 'use_destination_based_tax' => '',
+ 'user_timezone' => '',
+ 'website' => '',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => '',
+ 'work_order_format' => '',
];
diff --git a/app/Language/nb/Login.php b/app/Language/nb/Login.php
index 652c3f22c..ac66f1805 100644
--- a/app/Language/nb/Login.php
+++ b/app/Language/nb/Login.php
@@ -1,25 +1,30 @@
"",
- "go" => "",
- "invalid_gcaptcha" => "",
- "invalid_installation" => "",
- "invalid_username_and_password" => "",
- "login" => "",
- "logout" => "",
- "migration_needed" => "",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "",
- "required_username" => "",
- "username" => "",
- "welcome" => "",
+ "gcaptcha" => "",
+ "go" => "",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "",
+ "invalid_installation" => "",
+ "invalid_username_and_password" => "",
+ "login" => "",
+ "logout" => "",
+ "migrating_database" => "Migrerer database",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "Database migrert!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "",
+ "required_username" => "",
+ "username" => "",
+ "welcome" => ""
];
diff --git a/app/Language/nb/Sales.php b/app/Language/nb/Sales.php
index bf138169a..9b21fed91 100644
--- a/app/Language/nb/Sales.php
+++ b/app/Language/nb/Sales.php
@@ -1,231 +1,235 @@
"",
- "rewards_package" => "",
- "rewards_remaining_balance" => "",
- "account_number" => "",
- "add_payment" => "",
- "amount_due" => "",
- "amount_tendered" => "",
- "authorized_signature" => "",
- "cancel_sale" => "",
- "cash" => "",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "",
- "cash_deposit" => "",
- "cash_filter" => "",
- "change_due" => "",
- "change_price" => "",
- "check" => "",
- "check_balance" => "",
- "check_filter" => "",
- "close" => "",
- "comment" => "",
- "comments" => "",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "",
- "confirm_cancel_sale" => "",
- "confirm_delete" => "",
- "confirm_restore" => "",
- "credit" => "",
- "credit_deposit" => "",
- "credit_filter" => "",
- "current_table" => "",
- "customer" => "",
- "customer_address" => "",
- "customer_discount" => "",
- "customer_email" => "",
- "customer_location" => "",
- "customer_mailchimp_status" => "",
- "customer_optional" => "",
- "customer_required" => "",
- "customer_total" => "",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "",
- "date_range" => "",
- "date_required" => "",
- "date_type" => "",
- "debit" => "",
- "debit_filter" => "",
- "delete" => "",
- "delete_confirmation" => "",
- "delete_entire_sale" => "",
- "delete_successful" => "",
- "delete_unsuccessful" => "",
- "description_abbrv" => "",
- "discard" => "",
- "discard_quote" => "",
- "discount" => "",
- "discount_included" => "",
- "discount_short" => "",
- "due" => "",
- "due_filter" => "",
- "edit" => "",
- "edit_item" => "",
- "edit_sale" => "",
- "email_receipt" => "",
- "employee" => "",
- "entry" => "",
- "error_editing_item" => "",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "",
- "find_or_scan_item_or_receipt" => "",
- "giftcard" => "",
- "giftcard_balance" => "",
- "giftcard_filter" => "",
- "giftcard_number" => "",
- "group_by_category" => "",
- "group_by_type" => "",
- "hsn" => "",
- "id" => "",
- "include_prices" => "",
- "invoice" => "",
- "invoice_confirm" => "",
- "invoice_enable" => "",
- "invoice_filter" => "",
- "invoice_no_email" => "",
- "invoice_number" => "",
- "invoice_number_duplicate" => "",
- "invoice_sent" => "",
- "invoice_total" => "",
- "invoice_type_custom_invoice" => "",
- "invoice_type_custom_tax_invoice" => "",
- "invoice_type_invoice" => "",
- "invoice_type_tax_invoice" => "",
- "invoice_unsent" => "",
- "invoice_update" => "",
- "item_insufficient_of_stock" => "",
- "item_name" => "",
- "item_number" => "",
- "item_out_of_stock" => "",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "",
- "must_enter_numeric" => "",
- "must_enter_numeric_giftcard" => "",
- "new_customer" => "",
- "new_item" => "",
- "no_description" => "",
- "no_filter" => "",
- "no_items_in_cart" => "",
- "no_sales_to_display" => "",
- "none_selected" => "",
- "nontaxed_ind" => "",
- "not_authorized" => "",
- "one_or_multiple" => "",
- "payment" => "",
- "payment_amount" => "",
- "payment_not_cover_total" => "",
- "payment_type" => "",
- "payments" => "",
- "payments_total" => "",
- "price" => "",
- "print_after_sale" => "",
- "quantity" => "",
- "quantity_less_than_reorder_level" => "",
- "quantity_less_than_zero" => "",
- "quantity_of_items" => "",
- "quote" => "",
- "quote_number" => "",
- "quote_number_duplicate" => "",
- "quote_sent" => "",
- "quote_unsent" => "",
- "receipt" => "",
- "receipt_no_email" => "",
- "receipt_number" => "",
- "receipt_sent" => "",
- "receipt_unsent" => "",
- "refund" => "",
- "register" => "",
- "remove_customer" => "",
- "remove_discount" => "",
- "return" => "",
- "rewards" => "",
- "rewards_balance" => "",
- "sale" => "",
- "sale_by_invoice" => "",
- "sale_for_customer" => "",
- "sale_time" => "",
- "sales_tax" => "",
- "sales_total" => "",
- "select_customer" => "",
- "send_invoice" => "",
- "send_quote" => "",
- "send_receipt" => "",
- "send_work_order" => "",
- "serial" => "",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "",
- "show_receipt" => "",
- "start_typing_customer_name" => "",
- "start_typing_item_name" => "",
- "stock" => "",
- "stock_location" => "",
- "sub_total" => "",
- "successfully_deleted" => "",
- "successfully_restored" => "",
- "successfully_suspended_sale" => "",
- "successfully_updated" => "",
- "suspend_sale" => "",
- "suspended_doc_id" => "",
- "suspended_sale_id" => "",
- "suspended_sales" => "",
- "table" => "",
- "takings" => "",
- "tax" => "",
- "tax_id" => "",
- "tax_invoice" => "",
- "tax_percent" => "",
- "taxed_ind" => "",
- "total" => "",
- "total_tax_exclusive" => "",
- "transaction_failed" => "",
- "unable_to_add_item" => "",
- "unsuccessfully_deleted" => "",
- "unsuccessfully_restored" => "",
- "unsuccessfully_suspended_sale" => "",
- "unsuccessfully_updated" => "",
- "unsuspend" => "",
- "unsuspend_and_delete" => "",
- "update" => "",
- "upi" => "",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "",
- "work_order_number" => "",
- "work_order_number_duplicate" => "",
- "work_order_sent" => "",
- "work_order_unsent" => "",
+ 'account_number' => '',
+ 'add_payment' => '',
+ 'amount_due' => '',
+ 'amount_tendered' => '',
+ 'authorized_signature' => '',
+ 'cancel_sale' => '',
+ 'cash' => '',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => '',
+ 'cash_deposit' => '',
+ 'cash_filter' => '',
+ 'change_due' => '',
+ 'change_price' => '',
+ 'check' => '',
+ 'check_balance' => '',
+ 'check_filter' => '',
+ 'close' => '',
+ 'comment' => '',
+ 'comments' => '',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => '',
+ 'confirm_cancel_sale' => '',
+ 'confirm_delete' => '',
+ 'confirm_restore' => '',
+ 'credit' => '',
+ 'credit_deposit' => '',
+ 'credit_filter' => '',
+ 'current_table' => '',
+ 'customer' => '',
+ 'customer_address' => '',
+ 'customer_discount' => '',
+ 'customer_email' => '',
+ 'customer_location' => '',
+ 'customer_mailchimp_status' => '',
+ 'customer_optional' => '',
+ 'customer_required' => '',
+ 'customer_total' => '',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => '',
+ 'daily_sales' => '',
+ 'date' => '',
+ 'date_range' => '',
+ 'date_required' => '',
+ 'date_type' => '',
+ 'debit' => '',
+ 'debit_filter' => '',
+ 'delete' => '',
+ 'delete_confirmation' => '',
+ 'delete_entire_sale' => '',
+ 'delete_successful' => '',
+ 'delete_unsuccessful' => '',
+ 'description_abbrv' => '',
+ 'discard' => '',
+ 'discard_quote' => '',
+ 'discount' => '',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '',
+ 'due' => '',
+ 'due_filter' => '',
+ 'edit' => '',
+ 'edit_item' => '',
+ 'edit_sale' => '',
+ 'email_receipt' => '',
+ 'employee' => '',
+ 'entry' => '',
+ 'error_editing_item' => '',
+ 'find_or_scan_item' => '',
+ 'find_or_scan_item_or_receipt' => '',
+ 'giftcard' => '',
+ 'giftcard_balance' => '',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => '',
+ 'group_by_category' => '',
+ 'group_by_type' => '',
+ 'hsn' => '',
+ 'id' => '',
+ 'include_prices' => '',
+ 'invoice' => '',
+ 'invoice_confirm' => '',
+ 'invoice_enable' => '',
+ 'invoice_filter' => '',
+ 'invoice_no_email' => '',
+ 'invoice_number' => '',
+ 'invoice_number_duplicate' => '',
+ 'invoice_sent' => '',
+ 'invoice_total' => '',
+ 'invoice_type_custom_invoice' => '',
+ 'invoice_type_custom_tax_invoice' => '',
+ 'invoice_type_invoice' => '',
+ 'invoice_type_tax_invoice' => '',
+ 'invoice_unsent' => '',
+ 'invoice_update' => '',
+ 'item_insufficient_of_stock' => '',
+ 'item_name' => '',
+ 'item_number' => '',
+ 'item_out_of_stock' => '',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => '',
+ 'must_enter_numeric' => '',
+ 'must_enter_numeric_giftcard' => '',
+ 'must_enter_reference_code' => 'Referanse-/hentingsnummer må angis.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => '',
+ 'new_item' => '',
+ 'no_description' => '',
+ 'no_filter' => '',
+ 'no_items_in_cart' => '',
+ 'no_sales_to_display' => '',
+ 'none_selected' => '',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => '',
+ 'one_or_multiple' => '',
+ 'payment' => '',
+ 'payment_amount' => '',
+ 'payment_not_cover_total' => '',
+ 'payment_type' => '',
+ 'payments' => '',
+ 'payments_total' => '',
+ 'price' => '',
+ 'print_after_sale' => '',
+ 'quantity' => '',
+ 'quantity_less_than_reorder_level' => '',
+ 'quantity_less_than_zero' => '',
+ 'quantity_of_items' => '',
+ 'quote' => '',
+ 'quote_number' => '',
+ 'quote_number_duplicate' => '',
+ 'quote_sent' => '',
+ 'quote_unsent' => '',
+ 'receipt' => '',
+ 'receipt_no_email' => '',
+ 'receipt_number' => '',
+ 'receipt_sent' => '',
+ 'receipt_unsent' => '',
+ 'reference_code' => 'Betalingsreferansekode',
+ 'reference_code_invalid_characters' => 'Referansekoden kan bare inneholde bokstaver og tall.',
+ 'reference_code_length_error' => 'Lengden på referansekoden er ugyldig.',
+ 'refund' => '',
+ 'register' => '',
+ 'remove_customer' => '',
+ 'remove_discount' => '',
+ 'return' => '',
+ 'rewards' => '',
+ 'rewards_balance' => '',
+ 'rewards_package' => '',
+ 'rewards_remaining_balance' => '',
+ 'sale' => '',
+ 'sale_by_invoice' => '',
+ 'sale_for_customer' => '',
+ 'sale_time' => '',
+ 'sales_tax' => '',
+ 'sales_total' => '',
+ 'select_customer' => '',
+ 'send_invoice' => '',
+ 'send_quote' => '',
+ 'send_receipt' => '',
+ 'send_work_order' => '',
+ 'serial' => '',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => '',
+ 'show_receipt' => '',
+ 'start_typing_customer_name' => '',
+ 'start_typing_item_name' => '',
+ 'stock' => '',
+ 'stock_location' => '',
+ 'sub_total' => '',
+ 'successfully_deleted' => '',
+ 'successfully_restored' => '',
+ 'successfully_suspended_sale' => '',
+ 'successfully_updated' => '',
+ 'suspend_sale' => '',
+ 'suspended_doc_id' => '',
+ 'suspended_sale_id' => '',
+ 'suspended_sales' => '',
+ 'table' => '',
+ 'takings' => '',
+ 'tax' => '',
+ 'tax_id' => '',
+ 'tax_invoice' => '',
+ 'tax_percent' => '',
+ 'taxed_ind' => '',
+ 'total' => '',
+ 'total_tax_exclusive' => '',
+ 'transaction_failed' => '',
+ 'unable_to_add_item' => '',
+ 'unsuccessfully_deleted' => '',
+ 'unsuccessfully_restored' => '',
+ 'unsuccessfully_suspended_sale' => '',
+ 'unsuccessfully_updated' => '',
+ 'unsuspend' => '',
+ 'unsuspend_and_delete' => '',
+ 'update' => '',
+ 'upi' => '',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => '',
+ 'work_order_number' => '',
+ 'work_order_number_duplicate' => '',
+ 'work_order_sent' => '',
+ 'work_order_unsent' => '',
];
diff --git a/app/Language/nl-BE/Config.php b/app/Language/nl-BE/Config.php
index 7116e17ff..294577a96 100644
--- a/app/Language/nl-BE/Config.php
+++ b/app/Language/nl-BE/Config.php
@@ -1,332 +1,335 @@
"Adres",
- "address_required" => "Het adres van het bedrijf moet ingevuld worden.",
- "all_set" => "All permissies zijn correct ingesteld!",
- "allow_duplicate_barcodes" => "Sta gedupliceerde barcodes toe",
- "apostrophe" => "apostrof",
- "backup_button" => "Backup",
- "backup_database" => "Backup Database",
- "barcode" => "Streepjescode",
- "barcode_company" => "Bedrijfsnaam",
- "barcode_configuration" => "Barcode Configuratie",
- "barcode_content" => "Inhoud Barcode",
- "barcode_first_row" => "Rij 1",
- "barcode_font" => "Lettertype",
- "barcode_formats" => "Barcode Formaat",
- "barcode_generate_if_empty" => "Genereer indien leeg.",
- "barcode_height" => "Hoogte (px)",
- "barcode_id" => "Product id/naam",
- "barcode_info" => "Barcode instellingen",
- "barcode_layout" => "Streepjescode-indeling",
- "barcode_name" => "Productnaam",
- "barcode_number" => "UPC/EAN/ISBN",
- "barcode_number_in_row" => "Aantal per rij",
- "barcode_page_cellspacing" => "Toon cellspatiëring.",
- "barcode_page_width" => "Toon paginabreedte",
- "barcode_price" => "Prijs",
- "barcode_second_row" => "Rij 2",
- "barcode_third_row" => "Rij 3",
- "barcode_tooltip" => "Waarschuwing: Deze functie kan ertoe leiden dat er dubbele artikels worden geïmporteerd of aangemaakt. Niet gebruiken als u geen dubbele streepjescodes wilt.",
- "barcode_type" => "Type Barcode",
- "barcode_width" => "Breedte (px)",
- "bottom" => "Bodem",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Cash precisie",
- "cash_decimals_tooltip" => "Als cash en currency precies niet hetzelfde zijn dan zal er geena afronding gebeuren.",
- "cash_rounding" => "Cash Afronding",
- "category_dropdown" => "Toon categorie als dropdown",
- "center" => "Midden",
- "change_apperance_tooltip" => "",
- "comma" => "komma",
- "company" => "Bedrijfsnaam",
- "company_avatar" => "",
- "company_change_image" => "Selecteer Afbeelding",
- "company_logo" => "Logo",
- "company_remove_image" => "Verwijder Afbeelding",
- "company_required" => "De bedrijfsnaam moet ingevuld worden",
- "company_select_image" => "Selecteer Afbeelding",
- "company_website_url" => "De website van het bedrijf is geen geldige URL (http://...).",
- "country_codes" => "Land Codes",
- "country_codes_tooltip" => "Komma's gescheiden lijst van landencodes voor het op naam opzoeken van het adres opzoeken.",
- "currency_code" => "Munteenheid",
- "currency_decimals" => "Valuta decimalen",
- "currency_symbol" => "Valuta",
- "current_employee_only" => "",
- "customer_reward" => "Punten",
- "customer_reward_duplicate" => "Spaarpunten moeten uniek zijn.",
- "customer_reward_enable" => "Activeer Spaarpunten",
- "customer_reward_invalid_chars" => "Spaarpunten kunnen geen '_' bevatten",
- "customer_reward_required" => "Spaarpunten is een verplicht veld",
- "customer_sales_tax_support" => "Klant fiscale support",
- "date_or_time_format" => "Datum en tijd filter",
- "datetimeformat" => "Datum en tijd formaat",
- "decimal_point" => "Decimale punt",
- "default_barcode_font_size_number" => "De barcode font grootte moet een getal zijn.",
- "default_barcode_font_size_required" => "De barcode font grootte is een verplicht veld.",
- "default_barcode_height_number" => "De barcode grootte moet een getal zijn.",
- "default_barcode_height_required" => "De barcode grootte is een verplicht veld.",
- "default_barcode_num_in_row_number" => "De barcode nummering moet een getal zijn.",
- "default_barcode_num_in_row_required" => "De barcode nummering is een verplicht veld.",
- "default_barcode_page_cellspacing_number" => "De barcode cellspatiëring moet een getal zijn.",
- "default_barcode_page_cellspacing_required" => "De barcode pagina spatiëring is een verplicht veld.",
- "default_barcode_page_width_number" => "Standaardbreedte van de streepjescodepagina moet een getal zijn.",
- "default_barcode_page_width_required" => "De barcode breedte is een verplicht veld.",
- "default_barcode_width_number" => "De breedte van de barcode moet een getal zijn.",
- "default_barcode_width_required" => "De breedte van de barcode is een verplicht veld.",
- "default_item_columns" => "Standaard Zichtbaarheid Kolommen",
- "default_origin_tax_code" => "Standaard VAT code",
- "default_receivings_discount" => "Standaard Korting Orders",
- "default_receivings_discount_number" => "De korting moet een getal zijn.",
- "default_receivings_discount_required" => "De korting is een verplicht veld.",
- "default_sales_discount" => "Standaard Korting Verkoop",
- "default_sales_discount_number" => "De korting moet een getal zijn.",
- "default_sales_discount_required" => "De korting is een verplicht veld.",
- "default_tax_category" => "Standaard Tax Categorie",
- "default_tax_code" => "Standaard Tax Code",
- "default_tax_jurisdiction" => "Standaard Tax District",
- "default_tax_name_number" => "Standaard VAT naam moet een string zijn.",
- "default_tax_name_required" => "De naam van de VAT moet ingevuld worden.",
- "default_tax_rate" => "Standaard VAT %",
- "default_tax_rate_1" => "VAT 1 %",
- "default_tax_rate_2" => "VAT 2 %",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Het percentage VAT moet een nummer zijn.",
- "default_tax_rate_required" => "Het percentage VAT is een verplicht veld.",
- "derive_sale_quantity" => "Laat Verkoop Afgeleide Hoeveelheid toe",
- "derive_sale_quantity_tooltip" => "Indien aangevinkt zal er een nieuw item type voorzien worden om items te ordenen",
- "dinner_table" => "Tafel",
- "dinner_table_duplicate" => "Tafel moet uniek zijn.",
- "dinner_table_enable" => "Activeer Restomode",
- "dinner_table_invalid_chars" => "Tafel Naam kan geen '_' bevatten.",
- "dinner_table_required" => "Tafel is een verplicht veld.",
- "dot" => "punt",
- "email" => "Email",
- "email_configuration" => "Email Configuration",
- "email_mailpath" => "Pad naar Sendmail",
- "email_protocol" => "Protocol",
- "email_receipt_check_behaviour" => "Email Ticket",
- "email_receipt_check_behaviour_always" => "Altijd aan",
- "email_receipt_check_behaviour_last" => "Onthoud de laatste selectie",
- "email_receipt_check_behaviour_never" => "Altijd uitgetikt",
- "email_smtp_crypto" => "SMTP Encryptie",
- "email_smtp_host" => "SMTP Server",
- "email_smtp_pass" => "SMTP Wachtwoord",
- "email_smtp_port" => "SMTP Poort",
- "email_smtp_timeout" => "SMTP Time-out (s)",
- "email_smtp_user" => "SMTP Gebruikersnaam",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Vereis privacy",
- "enforce_privacy_tooltip" => "Bescherm klanten hun privacy door data obfuscatie toe te passen in geval van verwijdering",
- "fax" => "Fax",
- "file_perm" => "Er zijn problemen met de bestandsrechten, herstel ze en herlaad deze pagina.",
- "financial_year" => "Start boekjaar",
- "financial_year_apr" => "Eerste april",
- "financial_year_aug" => "Eerste augustus",
- "financial_year_dec" => "Eerste december",
- "financial_year_feb" => "Eerste februari",
- "financial_year_jan" => "Eerste januari",
- "financial_year_jul" => "Eerste juli",
- "financial_year_jun" => "Eerste juni",
- "financial_year_mar" => "Eerste maart",
- "financial_year_may" => "Eerste mei",
- "financial_year_nov" => "Eerste november",
- "financial_year_oct" => "Eerste oktober",
- "financial_year_sep" => "Eerste september",
- "floating_labels" => "Variabele Etiketten",
- "gcaptcha_enable" => "Login Pagina reCAPTCHA",
- "gcaptcha_secret_key" => "reCAPTCHA sleutel",
- "gcaptcha_secret_key_required" => "reCAPTCHA sleutel is een verplicht veld",
- "gcaptcha_site_key" => "reCAPTCHA site sleutel",
- "gcaptcha_site_key_required" => "reCAPTCHA site sleutel is een verplicht veld",
- "gcaptcha_tooltip" => "Bescherm de login pagina met Google reCAPTCHA, klik op het icoon voor een API key pair.",
- "general" => "Algemene",
- "general_configuration" => "Algemene Instellingen",
- "giftcard_number" => "Cadeaubon Nummer",
- "giftcard_random" => "Genereer Willekeurig",
- "giftcard_series" => "Genereer in volgorde",
- "image_allowed_file_types" => "Toegelaten bestandstypes",
- "image_max_height_tooltip" => "Maximum toegelaten hoogte voor afbeeldingen in pixels (px).",
- "image_max_size_tooltip" => "Maximum toegelaten bestandsgrootte voor afbeeldingen in kilobytes (kb).",
- "image_max_width_tooltip" => "Maximum toegelaten breedte voor afbeeldingen in pixels (px).",
- "image_restrictions" => "Upload Instellingen voor Afbeeldingen",
- "include_hsn" => "Ondersteuning voor HSN Codes",
- "info" => "Instellingen",
- "info_configuration" => "Instellingen",
- "input_groups" => "Invoer Groepen",
- "integrations" => "Integraties",
- "integrations_configuration" => "Integraties",
- "invoice" => "Factuur",
- "invoice_configuration" => "Print Instellingen",
- "invoice_default_comments" => "Factuur Mededeling",
- "invoice_email_message" => "Factuur Email Sjabloon",
- "invoice_enable" => "Factureren inschakelen",
- "invoice_printer" => "Factuur Printer",
- "invoice_type" => "Factuur Type",
- "is_readable" => "kan gelezen worden, maar de permissies zijn niet correct. Zet deze op 640 of 660 en vernieuw.",
- "is_writable" => "kan beschreven worden, maar de permissies zijn niet correct. Zet deze op 750 en vernieuw.",
- "item_markup" => "",
- "jsprintsetup_required" => "Opgelet! De uitgeschakelde functionaliteit werkt enkel met de jsPrintSetup addon in Firefox. Toch opslaan?",
- "language" => "Taal",
- "last_used_invoice_number" => "Laatst gebruikte factuurnummer",
- "last_used_quote_number" => "Laatst gebruikte offertenummer",
- "last_used_work_order_number" => "Laatst gebruikte werkordernummer",
- "left" => "Links",
- "license" => "Licentie",
- "license_configuration" => "Licentie Verklaring",
- "line_sequence" => "Lijn nummer",
- "lines_per_page" => "Lijnen Per Pagina",
- "lines_per_page_number" => "Regels per pagina moet een nummer zijn.",
- "lines_per_page_required" => "Regels per pagina is een verplicht veld.",
- "locale" => "Locatie",
- "locale_configuration" => "Locatie Configuratie",
- "locale_info" => "Locatie Configuratie Informatie",
- "location" => "Voorraad",
- "location_configuration" => "Stock Locaties",
- "location_info" => "Instellingen Locatie",
- "login_form" => "Inlogformulier Stijl",
- "logout" => "Wilt u een backup maken alvorens uit te loggen? Klik [OK] voor backup of [Annuleer] om uit te loggen.",
- "mailchimp" => "MailChimp",
- "mailchimp_api_key" => "MailChimp API Sleutel",
- "mailchimp_configuration" => "MailChimp Configuratie",
- "mailchimp_key_successfully" => "API sleutel is geldig.",
- "mailchimp_key_unsuccessfully" => "API sleutel is ongeldig.",
- "mailchimp_lists" => "MailChimp Lijst(en)",
- "mailchimp_tooltip" => "Klik op het icoon voor een API sleutel.",
- "message" => "Message",
- "message_configuration" => "Message Configuration",
- "msg_msg" => "Opgeslagen SMS-bericht",
- "msg_msg_placeholder" => "Wilt u gebruik maken van een SMS-sjabloon? sla hier uw bericht op. Laat ander het vak leeg.",
- "msg_pwd" => "SMS-API Password",
- "msg_pwd_required" => "SMS-API Wachtwoord is een verplicht veld",
- "msg_src" => "SMS-API Verzender ID",
- "msg_src_required" => "SMS-API Verzender ID is een verplicht veld",
- "msg_uid" => "SMS-API Gebruikersnaam",
- "msg_uid_required" => "SMS-API Gebruikersnaam is een verplicht veld",
- "multi_pack_enabled" => "Multipack Ingeschakeld",
- "no_risk" => "Geen veiligheids-/kwetsbaarheidsrisico's.",
- "none" => "none",
- "notify_alignment" => "Notificatie Pop-up positie",
- "number_format" => "Number Format",
- "number_locale" => "Localisation",
- "number_locale_invalid" => "De ingevoerde locatie is ongeldig. Controleer de link in de tooltip om een geldige waarde te vinden.",
- "number_locale_required" => "Nummer formaat is een verplicht veld.",
- "number_locale_tooltip" => "Vind een geldig formaat via deze link.",
- "os_timezone" => "OSPOS Tijdzone:",
- "ospos_info" => "OSPOS Installatiegegevens",
- "payment_options_order" => "Betaal opties volgorde",
- "perm_risk" => "Verkeerd ingestelde permissies vormen een beveiligingsrisico.",
- "phone" => "Telefoon",
- "phone_required" => "De telefoonnummer van het bedrijf is een verplicht veld.",
- "print_bottom_margin" => "Marge Beneden",
- "print_bottom_margin_number" => "De ondermarge moet een getal zijn.",
- "print_bottom_margin_required" => "De ondermarge is een verplicht veld.",
- "print_delay_autoreturn" => "Automatische retour voor vertraagde verkoop",
- "print_delay_autoreturn_number" => "Automatische retour voor vertraagde verkoop is een verplicht veld.",
- "print_delay_autoreturn_required" => "Automatische retour voor vertraagde verkoop moet een cijfer zijn.",
- "print_footer" => "Print browser voettekst",
- "print_header" => "Print browser koptekst",
- "print_left_margin" => "Marge Links",
- "print_left_margin_number" => "De linkermarge moet een getal zijn.",
- "print_left_margin_required" => "De linkermarge is een verplicht veld.",
- "print_receipt_check_behaviour" => "Print Ticket selectievakje",
- "print_receipt_check_behaviour_always" => "Altijd aangevinkt",
- "print_receipt_check_behaviour_last" => "Onthoud laatste selectie",
- "print_receipt_check_behaviour_never" => "Altijd uitgetikt",
- "print_right_margin" => "Marge Rechts",
- "print_right_margin_number" => "De rechtermarge moet een getal zijn.",
- "print_right_margin_required" => "De rechtermarge is een verplicht veld.",
- "print_silently" => "Toon Printvenster",
- "print_top_margin" => "Marge Boven",
- "print_top_margin_number" => "De bovenmarge moet een getal zijn.",
- "print_top_margin_required" => "De bovenmarge is een verplicht veld.",
- "quantity_decimals" => "Kwantiteit Decimalen",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Standaard Offerte Commentaar",
- "receipt" => "Ontvangst",
- "receipt_category" => "",
- "receipt_configuration" => "Print Instellingen",
- "receipt_default" => "Default",
- "receipt_font_size" => "Font grootte",
- "receipt_font_size_number" => "Font grootte moet een nummer zijn.",
- "receipt_font_size_required" => "Font grootte is een verplicht veld.",
- "receipt_info" => "Ticket Instellingen",
- "receipt_printer" => "Bon Printer",
- "receipt_short" => "Kort",
- "receipt_show_company_name" => "Toon bedrijfsnaam",
- "receipt_show_description" => "Laat beschrijving zien",
- "receipt_show_serialnumber" => "Toon Serienummer",
- "receipt_show_tax_ind" => "Toon Tax Indicator",
- "receipt_show_taxes" => "Toon VAT",
- "receipt_show_total_discount" => "Toon Totale Korting",
- "receipt_template" => "Bon sjabloon",
- "receiving_calculate_average_price" => "Bereken gem. Prijs (Ontvangend)",
- "recv_invoice_format" => "Formattering Order #",
- "register_mode_default" => "Standaard kassa mode",
- "report_an_issue" => "Rapporteer een probleem",
- "return_policy_required" => "De retourvoorwaarden moeten ingevuld worden.",
- "reward" => "Spaarpunten",
- "reward_configuration" => "Spaarpunten configuratie",
- "right" => "Rechts",
- "sales_invoice_format" => "Formattering Aankoop #",
- "sales_quote_format" => "Offerte formaat",
- "mailpath_invalid" => "Ongeldig sendmail pad. Alleen letters, cijfers, strepen, underscores, slashes en punten zijn toegestaan.",
- "saved_successfully" => "Configuratie werd bewaard.",
- "saved_unsuccessfully" => "Configuratie kon niet worden bewaard.",
- "security_issue" => "Waarschuwing voor Veiligheidslek",
- "server_notice" => "Gebruik de onderstaande info voor het melden van problemen.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Toon kantoor icoon",
- "statistics" => "Verstuur statistieken",
- "statistics_tooltip" => "Verstuur statistieken voor ontwikkeling en verbetering van de applicatie.",
- "stock_location" => "Stock locatie",
- "stock_location_duplicate" => "Vul een unieke naam in.",
- "stock_location_invalid_chars" => "Stock locatie kan geen '_' bevatten.",
- "stock_location_required" => "Naam van de stock locatie is een verplicht veld.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Kolom 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Zoek Suggesties Layout",
- "suggestions_second_column" => "Kolom 2",
- "suggestions_third_column" => "Kolom 3",
- "system_conf" => "Instelling en Conf",
- "system_info" => "System Info",
- "table" => "Tafel",
- "table_configuration" => "Tafel Configuratie",
- "takings_printer" => "Ontvangst Printer",
- "tax" => "VAT",
- "tax_category" => "VAT Categorie",
- "tax_category_duplicate" => "De ingevulde VAT categorie bestaat al.",
- "tax_category_invalid_chars" => "De ingevulde VAT categorie is ongeldig.",
- "tax_category_required" => "De VAT categorie is verplicht.",
- "tax_category_used" => "De VAT categorie kan niet verwijderd worden omdat die in gebruik is.",
- "tax_configuration" => "VAT Configuratie",
- "tax_decimals" => "Belasting Decimalen",
- "tax_id" => "Tax id",
- "tax_included" => "VAT Inbegrepen",
- "theme" => "Theme",
- "theme_preview" => "Voorbeeld Thema:",
- "thousands_separator" => "duizenden Separator",
- "timezone" => "Tijdzone",
- "timezone_error" => "OSPOS tijdzone is verschillend van uw lokale tijdzone.",
- "top" => "Top",
- "use_destination_based_tax" => "Activeer 'Destination Based Tax'",
- "user_timezone" => "Lokale tijdzone:",
- "website" => "Website",
- "wholesale_markup" => "",
- "work_order_enable" => "Werk Order Ondersteuning",
- "work_order_format" => "Werk Order Formaat",
+ 'address' => 'Adres',
+ 'address_required' => 'Het adres van het bedrijf moet ingevuld worden.',
+ 'all_set' => 'All permissies zijn correct ingesteld!',
+ 'allow_duplicate_barcodes' => 'Sta gedupliceerde barcodes toe',
+ 'apostrophe' => 'apostrof',
+ 'backup_button' => 'Backup',
+ 'backup_database' => 'Backup Database',
+ 'barcode' => 'Streepjescode',
+ 'barcode_company' => 'Bedrijfsnaam',
+ 'barcode_configuration' => 'Barcode Configuratie',
+ 'barcode_content' => 'Inhoud Barcode',
+ 'barcode_first_row' => 'Rij 1',
+ 'barcode_font' => 'Lettertype',
+ 'barcode_formats' => 'Barcode Formaat',
+ 'barcode_generate_if_empty' => 'Genereer indien leeg.',
+ 'barcode_height' => 'Hoogte (px)',
+ 'barcode_id' => 'Product id/naam',
+ 'barcode_info' => 'Barcode instellingen',
+ 'barcode_layout' => 'Streepjescode-indeling',
+ 'barcode_name' => 'Productnaam',
+ 'barcode_number' => 'UPC/EAN/ISBN',
+ 'barcode_number_in_row' => 'Aantal per rij',
+ 'barcode_page_cellspacing' => 'Toon cellspatiëring.',
+ 'barcode_page_width' => 'Toon paginabreedte',
+ 'barcode_price' => 'Prijs',
+ 'barcode_second_row' => 'Rij 2',
+ 'barcode_third_row' => 'Rij 3',
+ 'barcode_tooltip' => 'Waarschuwing: Deze functie kan ertoe leiden dat er dubbele artikels worden geïmporteerd of aangemaakt. Niet gebruiken als u geen dubbele streepjescodes wilt.',
+ 'barcode_type' => 'Type Barcode',
+ 'barcode_width' => 'Breedte (px)',
+ 'bottom' => 'Bodem',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Cash precisie',
+ 'cash_decimals_tooltip' => 'Als cash en currency precies niet hetzelfde zijn dan zal er geena afronding gebeuren.',
+ 'cash_rounding' => 'Cash Afronding',
+ 'category_dropdown' => 'Toon categorie als dropdown',
+ 'center' => 'Midden',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'komma',
+ 'company' => 'Bedrijfsnaam',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Selecteer Afbeelding',
+ 'company_logo' => 'Logo',
+ 'company_remove_image' => 'Verwijder Afbeelding',
+ 'company_required' => 'De bedrijfsnaam moet ingevuld worden',
+ 'company_select_image' => 'Selecteer Afbeelding',
+ 'company_website_url' => 'De website van het bedrijf is geen geldige URL (http://...).',
+ 'country_codes' => 'Land Codes',
+ 'country_codes_tooltip' => "Komma's gescheiden lijst van landencodes voor het op naam opzoeken van het adres opzoeken.",
+ 'currency_code' => 'Munteenheid',
+ 'currency_decimals' => 'Valuta decimalen',
+ 'currency_symbol' => 'Valuta',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Punten',
+ 'customer_reward_duplicate' => 'Spaarpunten moeten uniek zijn.',
+ 'customer_reward_enable' => 'Activeer Spaarpunten',
+ 'customer_reward_invalid_chars' => "Spaarpunten kunnen geen '_' bevatten",
+ 'customer_reward_required' => 'Spaarpunten is een verplicht veld',
+ 'customer_sales_tax_support' => 'Klant fiscale support',
+ 'date_or_time_format' => 'Datum en tijd filter',
+ 'datetimeformat' => 'Datum en tijd formaat',
+ 'decimal_point' => 'Decimale punt',
+ 'default_barcode_font_size_number' => 'De barcode font grootte moet een getal zijn.',
+ 'default_barcode_font_size_required' => 'De barcode font grootte is een verplicht veld.',
+ 'default_barcode_height_number' => 'De barcode grootte moet een getal zijn.',
+ 'default_barcode_height_required' => 'De barcode grootte is een verplicht veld.',
+ 'default_barcode_num_in_row_number' => 'De barcode nummering moet een getal zijn.',
+ 'default_barcode_num_in_row_required' => 'De barcode nummering is een verplicht veld.',
+ 'default_barcode_page_cellspacing_number' => 'De barcode cellspatiëring moet een getal zijn.',
+ 'default_barcode_page_cellspacing_required' => 'De barcode pagina spatiëring is een verplicht veld.',
+ 'default_barcode_page_width_number' => 'Standaardbreedte van de streepjescodepagina moet een getal zijn.',
+ 'default_barcode_page_width_required' => 'De barcode breedte is een verplicht veld.',
+ 'default_barcode_width_number' => 'De breedte van de barcode moet een getal zijn.',
+ 'default_barcode_width_required' => 'De breedte van de barcode is een verplicht veld.',
+ 'default_item_columns' => 'Standaard Zichtbaarheid Kolommen',
+ 'default_origin_tax_code' => 'Standaard VAT code',
+ 'default_receivings_discount' => 'Standaard Korting Orders',
+ 'default_receivings_discount_number' => 'De korting moet een getal zijn.',
+ 'default_receivings_discount_required' => 'De korting is een verplicht veld.',
+ 'default_sales_discount' => 'Standaard Korting Verkoop',
+ 'default_sales_discount_number' => 'De korting moet een getal zijn.',
+ 'default_sales_discount_required' => 'De korting is een verplicht veld.',
+ 'default_tax_category' => 'Standaard Tax Categorie',
+ 'default_tax_code' => 'Standaard Tax Code',
+ 'default_tax_jurisdiction' => 'Standaard Tax District',
+ 'default_tax_name_number' => 'Standaard VAT naam moet een string zijn.',
+ 'default_tax_name_required' => 'De naam van de VAT moet ingevuld worden.',
+ 'default_tax_rate' => 'Standaard VAT %',
+ 'default_tax_rate_1' => 'VAT 1 %',
+ 'default_tax_rate_2' => 'VAT 2 %',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Het percentage VAT moet een nummer zijn.',
+ 'default_tax_rate_required' => 'Het percentage VAT is een verplicht veld.',
+ 'derive_sale_quantity' => 'Laat Verkoop Afgeleide Hoeveelheid toe',
+ 'derive_sale_quantity_tooltip' => 'Indien aangevinkt zal er een nieuw item type voorzien worden om items te ordenen',
+ 'dinner_table' => 'Tafel',
+ 'dinner_table_duplicate' => 'Tafel moet uniek zijn.',
+ 'dinner_table_enable' => 'Activeer Restomode',
+ 'dinner_table_invalid_chars' => "Tafel Naam kan geen '_' bevatten.",
+ 'dinner_table_required' => 'Tafel is een verplicht veld.',
+ 'dot' => 'punt',
+ 'email' => 'Email',
+ 'email_configuration' => 'Email Configuration',
+ 'email_mailpath' => 'Pad naar Sendmail',
+ 'email_protocol' => 'Protocol',
+ 'email_receipt_check_behaviour' => 'Email Ticket',
+ 'email_receipt_check_behaviour_always' => 'Altijd aan',
+ 'email_receipt_check_behaviour_last' => 'Onthoud de laatste selectie',
+ 'email_receipt_check_behaviour_never' => 'Altijd uitgetikt',
+ 'email_smtp_crypto' => 'SMTP Encryptie',
+ 'email_smtp_host' => 'SMTP Server',
+ 'email_smtp_pass' => 'SMTP Wachtwoord',
+ 'email_smtp_port' => 'SMTP Poort',
+ 'email_smtp_timeout' => 'SMTP Time-out (s)',
+ 'email_smtp_user' => 'SMTP Gebruikersnaam',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Vereis privacy',
+ 'enforce_privacy_tooltip' => 'Bescherm klanten hun privacy door data obfuscatie toe te passen in geval van verwijdering',
+ 'fax' => 'Fax',
+ 'file_perm' => 'Er zijn problemen met de bestandsrechten, herstel ze en herlaad deze pagina.',
+ 'financial_year' => 'Start boekjaar',
+ 'financial_year_apr' => 'Eerste april',
+ 'financial_year_aug' => 'Eerste augustus',
+ 'financial_year_dec' => 'Eerste december',
+ 'financial_year_feb' => 'Eerste februari',
+ 'financial_year_jan' => 'Eerste januari',
+ 'financial_year_jul' => 'Eerste juli',
+ 'financial_year_jun' => 'Eerste juni',
+ 'financial_year_mar' => 'Eerste maart',
+ 'financial_year_may' => 'Eerste mei',
+ 'financial_year_nov' => 'Eerste november',
+ 'financial_year_oct' => 'Eerste oktober',
+ 'financial_year_sep' => 'Eerste september',
+ 'floating_labels' => 'Variabele Etiketten',
+ 'gcaptcha_enable' => 'Login Pagina reCAPTCHA',
+ 'gcaptcha_secret_key' => 'reCAPTCHA sleutel',
+ 'gcaptcha_secret_key_required' => 'reCAPTCHA sleutel is een verplicht veld',
+ 'gcaptcha_site_key' => 'reCAPTCHA site sleutel',
+ 'gcaptcha_site_key_required' => 'reCAPTCHA site sleutel is een verplicht veld',
+ 'gcaptcha_tooltip' => 'Bescherm de login pagina met Google reCAPTCHA, klik op het icoon voor een API key pair.',
+ 'general' => 'Algemene',
+ 'general_configuration' => 'Algemene Instellingen',
+ 'giftcard_number' => 'Cadeaubon Nummer',
+ 'giftcard_random' => 'Genereer Willekeurig',
+ 'giftcard_series' => 'Genereer in volgorde',
+ 'image_allowed_file_types' => 'Toegelaten bestandstypes',
+ 'image_max_height_tooltip' => 'Maximum toegelaten hoogte voor afbeeldingen in pixels (px).',
+ 'image_max_size_tooltip' => 'Maximum toegelaten bestandsgrootte voor afbeeldingen in kilobytes (kb).',
+ 'image_max_width_tooltip' => 'Maximum toegelaten breedte voor afbeeldingen in pixels (px).',
+ 'image_restrictions' => 'Upload Instellingen voor Afbeeldingen',
+ 'include_hsn' => 'Ondersteuning voor HSN Codes',
+ 'info' => 'Instellingen',
+ 'info_configuration' => 'Instellingen',
+ 'input_groups' => 'Invoer Groepen',
+ 'integrations' => 'Integraties',
+ 'integrations_configuration' => 'Integraties',
+ 'invoice' => 'Factuur',
+ 'invoice_configuration' => 'Print Instellingen',
+ 'invoice_default_comments' => 'Factuur Mededeling',
+ 'invoice_email_message' => 'Factuur Email Sjabloon',
+ 'invoice_enable' => 'Factureren inschakelen',
+ 'invoice_printer' => 'Factuur Printer',
+ 'invoice_type' => 'Factuur Type',
+ 'is_readable' => 'kan gelezen worden, maar de permissies zijn niet correct. Zet deze op 640 of 660 en vernieuw.',
+ 'is_writable' => 'kan beschreven worden, maar de permissies zijn niet correct. Zet deze op 750 en vernieuw.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Opgelet! De uitgeschakelde functionaliteit werkt enkel met de jsPrintSetup addon in Firefox. Toch opslaan?',
+ 'language' => 'Taal',
+ 'last_used_invoice_number' => 'Laatst gebruikte factuurnummer',
+ 'last_used_quote_number' => 'Laatst gebruikte offertenummer',
+ 'last_used_work_order_number' => 'Laatst gebruikte werkordernummer',
+ 'left' => 'Links',
+ 'license' => 'Licentie',
+ 'license_configuration' => 'Licentie Verklaring',
+ 'line_sequence' => 'Lijn nummer',
+ 'lines_per_page' => 'Lijnen Per Pagina',
+ 'lines_per_page_number' => 'Regels per pagina moet een nummer zijn.',
+ 'lines_per_page_required' => 'Regels per pagina is een verplicht veld.',
+ 'locale' => 'Locatie',
+ 'locale_configuration' => 'Locatie Configuratie',
+ 'locale_info' => 'Locatie Configuratie Informatie',
+ 'location' => 'Voorraad',
+ 'location_configuration' => 'Stock Locaties',
+ 'location_info' => 'Instellingen Locatie',
+ 'login_form' => 'Inlogformulier Stijl',
+ 'logout' => 'Wilt u een backup maken alvorens uit te loggen? Klik [OK] voor backup of [Annuleer] om uit te loggen.',
+ 'mailchimp' => 'MailChimp',
+ 'mailchimp_api_key' => 'MailChimp API Sleutel',
+ 'mailchimp_configuration' => 'MailChimp Configuratie',
+ 'mailchimp_key_successfully' => 'API sleutel is geldig.',
+ 'mailchimp_key_unsuccessfully' => 'API sleutel is ongeldig.',
+ 'mailchimp_lists' => 'MailChimp Lijst(en)',
+ 'mailchimp_tooltip' => 'Klik op het icoon voor een API sleutel.',
+ 'message' => 'Message',
+ 'message_configuration' => 'Message Configuration',
+ 'msg_msg' => 'Opgeslagen SMS-bericht',
+ 'msg_msg_placeholder' => 'Wilt u gebruik maken van een SMS-sjabloon? sla hier uw bericht op. Laat ander het vak leeg.',
+ 'msg_pwd' => 'SMS-API Password',
+ 'msg_pwd_required' => 'SMS-API Wachtwoord is een verplicht veld',
+ 'msg_src' => 'SMS-API Verzender ID',
+ 'msg_src_required' => 'SMS-API Verzender ID is een verplicht veld',
+ 'msg_uid' => 'SMS-API Gebruikersnaam',
+ 'msg_uid_required' => 'SMS-API Gebruikersnaam is een verplicht veld',
+ 'multi_pack_enabled' => 'Multipack Ingeschakeld',
+ 'no_risk' => "Geen veiligheids-/kwetsbaarheidsrisico's.",
+ 'none' => 'none',
+ 'notify_alignment' => 'Notificatie Pop-up positie',
+ 'number_format' => 'Number Format',
+ 'number_locale' => 'Localisation',
+ 'number_locale_invalid' => 'De ingevoerde locatie is ongeldig. Controleer de link in de tooltip om een geldige waarde te vinden.',
+ 'number_locale_required' => 'Nummer formaat is een verplicht veld.',
+ 'number_locale_tooltip' => 'Vind een geldig formaat via deze link.',
+ 'os_timezone' => 'OSPOS Tijdzone:',
+ 'ospos_info' => 'OSPOS Installatiegegevens',
+ 'payment_options_order' => 'Betaal opties volgorde',
+ 'payment_reference_code_length_limits' => 'Betalingsreferentiecode
Lengtelimieten',
+ 'payment_reference_code_length_max_label' => 'Max',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => 'Verkeerd ingestelde permissies vormen een beveiligingsrisico.',
+ 'phone' => 'Telefoon',
+ 'phone_required' => 'De telefoonnummer van het bedrijf is een verplicht veld.',
+ 'print_bottom_margin' => 'Marge Beneden',
+ 'print_bottom_margin_number' => 'De ondermarge moet een getal zijn.',
+ 'print_bottom_margin_required' => 'De ondermarge is een verplicht veld.',
+ 'print_delay_autoreturn' => 'Automatische retour voor vertraagde verkoop',
+ 'print_delay_autoreturn_number' => 'Automatische retour voor vertraagde verkoop is een verplicht veld.',
+ 'print_delay_autoreturn_required' => 'Automatische retour voor vertraagde verkoop moet een cijfer zijn.',
+ 'print_footer' => 'Print browser voettekst',
+ 'print_header' => 'Print browser koptekst',
+ 'print_left_margin' => 'Marge Links',
+ 'print_left_margin_number' => 'De linkermarge moet een getal zijn.',
+ 'print_left_margin_required' => 'De linkermarge is een verplicht veld.',
+ 'print_receipt_check_behaviour' => 'Print Ticket selectievakje',
+ 'print_receipt_check_behaviour_always' => 'Altijd aangevinkt',
+ 'print_receipt_check_behaviour_last' => 'Onthoud laatste selectie',
+ 'print_receipt_check_behaviour_never' => 'Altijd uitgetikt',
+ 'print_right_margin' => 'Marge Rechts',
+ 'print_right_margin_number' => 'De rechtermarge moet een getal zijn.',
+ 'print_right_margin_required' => 'De rechtermarge is een verplicht veld.',
+ 'print_silently' => 'Toon Printvenster',
+ 'print_top_margin' => 'Marge Boven',
+ 'print_top_margin_number' => 'De bovenmarge moet een getal zijn.',
+ 'print_top_margin_required' => 'De bovenmarge is een verplicht veld.',
+ 'quantity_decimals' => 'Kwantiteit Decimalen',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Standaard Offerte Commentaar',
+ 'receipt' => 'Ontvangst',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Print Instellingen',
+ 'receipt_default' => 'Default',
+ 'receipt_font_size' => 'Font grootte',
+ 'receipt_font_size_number' => 'Font grootte moet een nummer zijn.',
+ 'receipt_font_size_required' => 'Font grootte is een verplicht veld.',
+ 'receipt_info' => 'Ticket Instellingen',
+ 'receipt_printer' => 'Bon Printer',
+ 'receipt_short' => 'Kort',
+ 'receipt_show_company_name' => 'Toon bedrijfsnaam',
+ 'receipt_show_description' => 'Laat beschrijving zien',
+ 'receipt_show_serialnumber' => 'Toon Serienummer',
+ 'receipt_show_tax_ind' => 'Toon Tax Indicator',
+ 'receipt_show_taxes' => 'Toon VAT',
+ 'receipt_show_total_discount' => 'Toon Totale Korting',
+ 'receipt_template' => 'Bon sjabloon',
+ 'receiving_calculate_average_price' => 'Bereken gem. Prijs (Ontvangend)',
+ 'recv_invoice_format' => 'Formattering Order #',
+ 'register_mode_default' => 'Standaard kassa mode',
+ 'report_an_issue' => 'Rapporteer een probleem',
+ 'return_policy_required' => 'De retourvoorwaarden moeten ingevuld worden.',
+ 'reward' => 'Spaarpunten',
+ 'reward_configuration' => 'Spaarpunten configuratie',
+ 'right' => 'Rechts',
+ 'sales_invoice_format' => 'Formattering Aankoop #',
+ 'sales_quote_format' => 'Offerte formaat',
+ 'mailpath_invalid' => 'Ongeldig sendmail pad. Alleen letters, cijfers, strepen, underscores, slashes en punten zijn toegestaan.',
+ 'saved_successfully' => 'Configuratie werd bewaard.',
+ 'saved_unsuccessfully' => 'Configuratie kon niet worden bewaard.',
+ 'security_issue' => 'Waarschuwing voor Veiligheidslek',
+ 'server_notice' => 'Gebruik de onderstaande info voor het melden van problemen.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Toon kantoor icoon',
+ 'statistics' => 'Verstuur statistieken',
+ 'statistics_tooltip' => 'Verstuur statistieken voor ontwikkeling en verbetering van de applicatie.',
+ 'stock_location' => 'Stock locatie',
+ 'stock_location_duplicate' => 'Vul een unieke naam in.',
+ 'stock_location_invalid_chars' => "Stock locatie kan geen '_' bevatten.",
+ 'stock_location_required' => 'Naam van de stock locatie is een verplicht veld.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Kolom 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Zoek Suggesties Layout',
+ 'suggestions_second_column' => 'Kolom 2',
+ 'suggestions_third_column' => 'Kolom 3',
+ 'system_conf' => 'Instelling en Conf',
+ 'system_info' => 'System Info',
+ 'table' => 'Tafel',
+ 'table_configuration' => 'Tafel Configuratie',
+ 'takings_printer' => 'Ontvangst Printer',
+ 'tax' => 'VAT',
+ 'tax_category' => 'VAT Categorie',
+ 'tax_category_duplicate' => 'De ingevulde VAT categorie bestaat al.',
+ 'tax_category_invalid_chars' => 'De ingevulde VAT categorie is ongeldig.',
+ 'tax_category_required' => 'De VAT categorie is verplicht.',
+ 'tax_category_used' => 'De VAT categorie kan niet verwijderd worden omdat die in gebruik is.',
+ 'tax_configuration' => 'VAT Configuratie',
+ 'tax_decimals' => 'Belasting Decimalen',
+ 'tax_id' => 'Tax id',
+ 'tax_included' => 'VAT Inbegrepen',
+ 'theme' => 'Theme',
+ 'theme_preview' => 'Voorbeeld Thema:',
+ 'thousands_separator' => 'duizenden Separator',
+ 'timezone' => 'Tijdzone',
+ 'timezone_error' => 'OSPOS tijdzone is verschillend van uw lokale tijdzone.',
+ 'top' => 'Top',
+ 'use_destination_based_tax' => "Activeer 'Destination Based Tax'",
+ 'user_timezone' => 'Lokale tijdzone:',
+ 'website' => 'Website',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Werk Order Ondersteuning',
+ 'work_order_format' => 'Werk Order Formaat',
];
diff --git a/app/Language/nl-BE/Login.php b/app/Language/nl-BE/Login.php
index 7b4e68ffe..455d8a8e2 100644
--- a/app/Language/nl-BE/Login.php
+++ b/app/Language/nl-BE/Login.php
@@ -1,25 +1,30 @@
"Ik ben geen robot.",
- "go" => "Verstuur",
- "invalid_gcaptcha" => "Controleer of u geen robot bent.",
- "invalid_installation" => "De installatie is onvolledig. Kijk uw php.ini file na.",
- "invalid_username_and_password" => "Ongeldige gebruiker en/of paswoord.",
- "login" => "Login",
- "logout" => "Log-uit",
- "migration_needed" => "Een database migratie naar {0} zal starten na het inloggen.",
- "migration_required" => "Database migratie vereist",
- "migration_auth_message" => "Beheerdersreferenties zijn vereist om de databasemigratie naar versie {0} te autoriseren. Log in om verder te gaan.",
- "migration_initializing" => "Database initialiseren",
- "migration_running" => "Databasemigraties uitvoeren...",
- "migration_complete" => "Database succesvol geïnitialiseerd!",
- "migration_complete_login" => "U kunt nu inloggen.",
- "migration_failed" => "Migratie mislukt",
- "migration_error_connection" => "Verbindingsfout. Probeer het opnieuw.",
- "migration_complete_redirect" => "Migratie voltooid. Doorsturen naar login...",
- "password" => "Paswoord",
- "required_username" => "",
- "username" => "Gebruiker",
- "welcome" => "Welkom op {0}!",
+ "gcaptcha" => "Ik ben geen robot.",
+ "go" => "Verstuur",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Controleer of u geen robot bent.",
+ "invalid_installation" => "De installatie is onvolledig. Kijk uw php.ini file na.",
+ "invalid_username_and_password" => "Ongeldige gebruiker en/of paswoord.",
+ "login" => "Login",
+ "logout" => "Log-uit",
+ "migrating_database" => "Database migreren",
+ "migration_auth_message" => "Beheerdersreferenties zijn vereist om de databasemigratie naar versie {0} te autoriseren. Log in om verder te gaan.",
+ "migration_complete" => "Database succesvol geïnitialiseerd!",
+ "migration_complete_login" => "U kunt nu inloggen.",
+ "migration_complete_migrate" => "Database succesvol gemigreerd!",
+ "migration_complete_redirect" => "Migratie voltooid. Doorsturen naar login...",
+ "migration_error_connection" => "Verbindingsfout. Probeer het opnieuw.",
+ "migration_failed" => "Migratie mislukt",
+ "migration_initializing" => "Database initialiseren",
+ "migration_needed" => "Een database migratie naar {0} zal starten na het inloggen.",
+ "migration_required" => "Database migratie vereist",
+ "migration_running" => "Databasemigraties uitvoeren...",
+ "password" => "Paswoord",
+ "required_username" => "",
+ "username" => "Gebruiker",
+ "welcome" => "Welkom op {0}!"
];
diff --git a/app/Language/nl-BE/Sales.php b/app/Language/nl-BE/Sales.php
index a287c0d62..a950dcf8f 100644
--- a/app/Language/nl-BE/Sales.php
+++ b/app/Language/nl-BE/Sales.php
@@ -1,231 +1,235 @@
"Beschikbare Punten",
- "rewards_package" => "Spaarpunten",
- "rewards_remaining_balance" => "Saldo Spaarpunten is ",
- "account_number" => "Btw-nummer",
- "add_payment" => "Betaal",
- "amount_due" => "Te betalen",
- "amount_tendered" => "Ontvangen bedrag",
- "authorized_signature" => "Handtekening",
- "cancel_sale" => "Annuleer",
- "cash" => "Contant",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "Liquiditeitsaanpassing",
- "cash_deposit" => "Cash",
- "cash_filter" => "Contant",
- "change_due" => "Wisselgeld terug",
- "change_price" => "Wijzig Verkoopprijs",
- "check" => "Waardebon",
- "check_balance" => "Waardebon terug",
- "check_filter" => "Waardebon",
- "close" => "",
- "comment" => "Commentaar",
- "comments" => "Commentaar",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Bevestig",
- "confirm_cancel_sale" => "Weet u zeker dat u deze verkoop wilt annuleren? Alle items zullen worden gewist.",
- "confirm_delete" => "Bent u zeker dat u de geselecteerde aankopen wil verwijderen?",
- "confirm_restore" => "Bent u zeker dat u de geselecteerde aankopen wil verwijderen?",
- "credit" => "Kredietkaart",
- "credit_deposit" => "Credit",
- "credit_filter" => "Kredietkaart",
- "current_table" => "",
- "customer" => "Klant",
- "customer_address" => "Customer Address",
- "customer_discount" => "Korting",
- "customer_email" => "Customer Email",
- "customer_location" => "Customer Location",
- "customer_mailchimp_status" => "MailChimp staat",
- "customer_optional" => "(Optioneel)",
- "customer_required" => "(Vereist)",
- "customer_total" => "Totaal",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Datum",
- "date_range" => "Periode",
- "date_required" => "Gelieve een correcte datum in te vullen.",
- "date_type" => "Er moet een correcte datum ingevuld worden.",
- "debit" => "Bancontact",
- "debit_filter" => "",
- "delete" => "Verwijderen Toegestaan",
- "delete_confirmation" => "Weet u zeker dat u deze verkoop wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.",
- "delete_entire_sale" => "Verwijder",
- "delete_successful" => "De geselecteerde verko(o)p(en) werden verwijderd.",
- "delete_unsuccessful" => "De geselecteerde aankopen konden niet worden verwijderd.",
- "description_abbrv" => "Omschr.",
- "discard" => "Annuleer",
- "discard_quote" => "",
- "discount" => "Korting",
- "discount_included" => "% Korting",
- "discount_short" => "%",
- "due" => "Tegoed",
- "due_filter" => "Tegoed",
- "edit" => "Bewerk",
- "edit_item" => "Bewaar",
- "edit_sale" => "Bewerk Ticket",
- "email_receipt" => "Email Ticket",
- "employee" => "Werknemer",
- "entry" => "Rij",
- "error_editing_item" => "Fout bij bewerken",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Zoek/Scan Product",
- "find_or_scan_item_or_receipt" => "Zoek/Scan Product of Ticket",
- "giftcard" => "Cadeaubon",
- "giftcard_balance" => "Cadeaubon Resterend",
- "giftcard_filter" => "",
- "giftcard_number" => "Cadeaubon nummer",
- "group_by_category" => "Per Categorie",
- "group_by_type" => "Per Type",
- "hsn" => "HSN",
- "id" => "Verkoop ID",
- "include_prices" => "Prijzen inclusief?",
- "invoice" => "Factuur",
- "invoice_confirm" => "Deze factuur zal verstuurd worden naar",
- "invoice_enable" => "Maak Factuur",
- "invoice_filter" => "Facturen",
- "invoice_no_email" => "Er werd geen email adres gevonden voor deze klant.",
- "invoice_number" => "Factuur #",
- "invoice_number_duplicate" => "Vul een uniek factuurnummer in.",
- "invoice_sent" => "Factuur verstuurd naar",
- "invoice_total" => "Totaal Factuur",
- "invoice_type_custom_invoice" => "Factuur (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Factuur (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Factuur (invoice.php)",
- "invoice_type_tax_invoice" => "Factuur (tax_invoice.php)",
- "invoice_unsent" => "Fout bij het versturen van factuur naar",
- "invoice_update" => "Hernummer",
- "item_insufficient_of_stock" => "Product is niet meer in voorraad.",
- "item_name" => "Naam",
- "item_number" => "Product #",
- "item_out_of_stock" => "Product is niet meer in voorraad.",
- "key_browser" => "Handige Snelkoppelingen",
- "key_cancel" => "Annuleert Huidige Offerte/Factuur/Verkoop",
- "key_customer_search" => "Klant Zoeken",
- "key_finish_quote" => "Beëindig Offerte/Factuur zonder betaling",
- "key_finish_sale" => "Betaling Toevoegen en Factuur/Verkoop Voltooien",
- "key_full" => "Openen op Volledig Scherm",
- "key_function" => "Function",
- "key_help" => "Sneltoetsen",
- "key_help_modal" => "Open Sneltoetsen Venster",
- "key_in" => "Inzoomen",
- "key_item_search" => "Artikel Zoeken",
- "key_out" => "Uitzoomen",
- "key_payment" => "Betaalmiddel Toevoegen",
- "key_print" => "Huidige Pagina Afdrukken",
- "key_restore" => "Originele Weergave/Vergroting Herstellen",
- "key_search" => "Zoeken in Rapporten Tabellen",
- "key_suspend" => "Huidige Verkoop Uitstellen",
- "key_suspended" => "Toon Uitgestelde Verkopen",
- "key_system" => "Systeem Sneltoetsen",
- "key_tendered" => "Wijziging Aangeboden Bedrag",
- "key_title" => "Sneltoetsen Verkoop",
- "mc" => "",
- "mode" => "Type Registratie",
- "must_enter_numeric" => "Het ontvangen bedrag moet een numerieke waarde zijn.",
- "must_enter_numeric_giftcard" => "Er moet een geldige code worden ingevuld voor de cadeaubon.",
- "new_customer" => "Nieuwe klant",
- "new_item" => "Nieuw Product",
- "no_description" => "Geen",
- "no_filter" => "Alle",
- "no_items_in_cart" => "Er zijn geen verkopen geselecteerd.",
- "no_sales_to_display" => "Er werden geen verkopen gevonden.",
- "none_selected" => "U hebt geen verkopen geselecteerd.",
- "nontaxed_ind" => " . ",
- "not_authorized" => "Deze actie is niet toegestaan.",
- "one_or_multiple" => "Verkoop(en)",
- "payment" => "Betaalmethode",
- "payment_amount" => "Bedrag",
- "payment_not_cover_total" => "Betaalde hoeveelheid is onvoldoende.",
- "payment_type" => "Type",
- "payments" => "",
- "payments_total" => "Betaald bedrag",
- "price" => "Prijs",
- "print_after_sale" => "Print Ticket",
- "quantity" => "Aantal",
- "quantity_less_than_reorder_level" => "Waarschuwing, de gewenste hoeveelheid stock is overschreden.",
- "quantity_less_than_zero" => "Waarschuwing: Gewenste hoeveelheid is onvoldoende. U kunt de verkoop nog steeds verwerken, maar controleer uw inventaris.",
- "quantity_of_items" => "Hoeveelheid van {0} items",
- "quote" => "Offerte",
- "quote_number" => "Offertenummer",
- "quote_number_duplicate" => "Offertenummer moet uniek zijn.",
- "quote_sent" => "Offerte verzonden naar",
- "quote_unsent" => "Offerte kon niet verzonden worden naar",
- "receipt" => "Ticket #",
- "receipt_no_email" => "De klant heeft geen geldig email adres.",
- "receipt_number" => "Ticket #",
- "receipt_sent" => "Ticket verstuurd naar",
- "receipt_unsent" => "Fout bij het versturen van ticket naar",
- "refund" => "Type Terugbetaling",
- "register" => "Kassa",
- "remove_customer" => "Verwijder Klant",
- "remove_discount" => "",
- "return" => "Retour",
- "rewards" => "Punten",
- "rewards_balance" => "Punten Balans",
- "sale" => "Verkoop",
- "sale_by_invoice" => "Verkoop op Factuur",
- "sale_for_customer" => "Klant:",
- "sale_time" => "Datum",
- "sales_tax" => "VAT",
- "sales_total" => "",
- "select_customer" => "Selecteer Klant",
- "send_invoice" => "Verstuur Factuur",
- "send_quote" => "Verstuur Offerte",
- "send_receipt" => "Verstuur Ticket",
- "send_work_order" => "Verstuur Werkorder",
- "serial" => "Nummer",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Toon Factuur",
- "show_receipt" => "Toon Ticket",
- "start_typing_customer_name" => "Typ naam klant...",
- "start_typing_item_name" => "Typ naam product of barcode...",
- "stock" => "Voorraad",
- "stock_location" => "Stock Locatie",
- "sub_total" => "Subtotaal",
- "successfully_deleted" => "Uw aankoop werd verwijderd",
- "successfully_restored" => "U hebt hersteld",
- "successfully_suspended_sale" => "Wijzigingen bewaard voor verkoop.",
- "successfully_updated" => "Verkoop Update Geslaagd.",
- "suspend_sale" => "Bewaar",
- "suspended_doc_id" => "Document",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Bewaarde Aankopen",
- "table" => "Tafel",
- "takings" => "Overzicht",
- "tax" => "VAT",
- "tax_id" => "Tax id",
- "tax_invoice" => "Vat Factuur",
- "tax_percent" => "VAT %",
- "taxed_ind" => "T",
- "total" => "Totaal",
- "total_tax_exclusive" => "Totaal",
- "transaction_failed" => "Transactie mislukt.",
- "unable_to_add_item" => "Artikel toevoegen aan Verkoop mislukt",
- "unsuccessfully_deleted" => "De aankoop kon niet verwijderd worden.",
- "unsuccessfully_restored" => "De verkoop kon niet hersteld worden.",
- "unsuccessfully_suspended_sale" => "Uw verkoop werd niet bewaard.",
- "unsuccessfully_updated" => "Fout bij het bewaren van verkoop.",
- "unsuspend" => "Hervat",
- "unsuspend_and_delete" => "Actie",
- "update" => "Bewerk",
- "upi" => "UPI",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "Werkorder",
- "work_order_number" => "Werkorder Nummer",
- "work_order_number_duplicate" => "Werkorder Nummer moet uniek zijn.",
- "work_order_sent" => "Werkorder verzonder naar",
- "work_order_unsent" => "Werkorder kon niet verzonden worden naar",
+ 'account_number' => 'Btw-nummer',
+ 'add_payment' => 'Betaal',
+ 'amount_due' => 'Te betalen',
+ 'amount_tendered' => 'Ontvangen bedrag',
+ 'authorized_signature' => 'Handtekening',
+ 'cancel_sale' => 'Annuleer',
+ 'cash' => 'Contant',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'Liquiditeitsaanpassing',
+ 'cash_deposit' => 'Cash',
+ 'cash_filter' => 'Contant',
+ 'change_due' => 'Wisselgeld terug',
+ 'change_price' => 'Wijzig Verkoopprijs',
+ 'check' => 'Waardebon',
+ 'check_balance' => 'Waardebon terug',
+ 'check_filter' => 'Waardebon',
+ 'close' => '',
+ 'comment' => 'Commentaar',
+ 'comments' => 'Commentaar',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Bevestig',
+ 'confirm_cancel_sale' => 'Weet u zeker dat u deze verkoop wilt annuleren? Alle items zullen worden gewist.',
+ 'confirm_delete' => 'Bent u zeker dat u de geselecteerde aankopen wil verwijderen?',
+ 'confirm_restore' => 'Bent u zeker dat u de geselecteerde aankopen wil verwijderen?',
+ 'credit' => 'Kredietkaart',
+ 'credit_deposit' => 'Credit',
+ 'credit_filter' => 'Kredietkaart',
+ 'current_table' => '',
+ 'customer' => 'Klant',
+ 'customer_address' => 'Customer Address',
+ 'customer_discount' => 'Korting',
+ 'customer_email' => 'Customer Email',
+ 'customer_location' => 'Customer Location',
+ 'customer_mailchimp_status' => 'MailChimp staat',
+ 'customer_optional' => '(Optioneel)',
+ 'customer_required' => '(Vereist)',
+ 'customer_total' => 'Totaal',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Beschikbare Punten',
+ 'daily_sales' => '',
+ 'date' => 'Datum',
+ 'date_range' => 'Periode',
+ 'date_required' => 'Gelieve een correcte datum in te vullen.',
+ 'date_type' => 'Er moet een correcte datum ingevuld worden.',
+ 'debit' => 'Bancontact',
+ 'debit_filter' => '',
+ 'delete' => 'Verwijderen Toegestaan',
+ 'delete_confirmation' => 'Weet u zeker dat u deze verkoop wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.',
+ 'delete_entire_sale' => 'Verwijder',
+ 'delete_successful' => 'De geselecteerde verko(o)p(en) werden verwijderd.',
+ 'delete_unsuccessful' => 'De geselecteerde aankopen konden niet worden verwijderd.',
+ 'description_abbrv' => 'Omschr.',
+ 'discard' => 'Annuleer',
+ 'discard_quote' => '',
+ 'discount' => 'Korting',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Korting',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'Tegoed',
+ 'due_filter' => 'Tegoed',
+ 'edit' => 'Bewerk',
+ 'edit_item' => 'Bewaar',
+ 'edit_sale' => 'Bewerk Ticket',
+ 'email_receipt' => 'Email Ticket',
+ 'employee' => 'Werknemer',
+ 'entry' => 'Rij',
+ 'error_editing_item' => 'Fout bij bewerken',
+ 'find_or_scan_item' => 'Zoek/Scan Product',
+ 'find_or_scan_item_or_receipt' => 'Zoek/Scan Product of Ticket',
+ 'giftcard' => 'Cadeaubon',
+ 'giftcard_balance' => 'Cadeaubon Resterend',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Cadeaubon nummer',
+ 'group_by_category' => 'Per Categorie',
+ 'group_by_type' => 'Per Type',
+ 'hsn' => 'HSN',
+ 'id' => 'Verkoop ID',
+ 'include_prices' => 'Prijzen inclusief?',
+ 'invoice' => 'Factuur',
+ 'invoice_confirm' => 'Deze factuur zal verstuurd worden naar',
+ 'invoice_enable' => 'Maak Factuur',
+ 'invoice_filter' => 'Facturen',
+ 'invoice_no_email' => 'Er werd geen email adres gevonden voor deze klant.',
+ 'invoice_number' => 'Factuur #',
+ 'invoice_number_duplicate' => 'Vul een uniek factuurnummer in.',
+ 'invoice_sent' => 'Factuur verstuurd naar',
+ 'invoice_total' => 'Totaal Factuur',
+ 'invoice_type_custom_invoice' => 'Factuur (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Factuur (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Factuur (invoice.php)',
+ 'invoice_type_tax_invoice' => 'Factuur (tax_invoice.php)',
+ 'invoice_unsent' => 'Fout bij het versturen van factuur naar',
+ 'invoice_update' => 'Hernummer',
+ 'item_insufficient_of_stock' => 'Product is niet meer in voorraad.',
+ 'item_name' => 'Naam',
+ 'item_number' => 'Product #',
+ 'item_out_of_stock' => 'Product is niet meer in voorraad.',
+ 'key_browser' => 'Handige Snelkoppelingen',
+ 'key_cancel' => 'Annuleert Huidige Offerte/Factuur/Verkoop',
+ 'key_customer_search' => 'Klant Zoeken',
+ 'key_finish_quote' => 'Beëindig Offerte/Factuur zonder betaling',
+ 'key_finish_sale' => 'Betaling Toevoegen en Factuur/Verkoop Voltooien',
+ 'key_full' => 'Openen op Volledig Scherm',
+ 'key_function' => 'Function',
+ 'key_help' => 'Sneltoetsen',
+ 'key_help_modal' => 'Open Sneltoetsen Venster',
+ 'key_in' => 'Inzoomen',
+ 'key_item_search' => 'Artikel Zoeken',
+ 'key_out' => 'Uitzoomen',
+ 'key_payment' => 'Betaalmiddel Toevoegen',
+ 'key_print' => 'Huidige Pagina Afdrukken',
+ 'key_restore' => 'Originele Weergave/Vergroting Herstellen',
+ 'key_search' => 'Zoeken in Rapporten Tabellen',
+ 'key_suspend' => 'Huidige Verkoop Uitstellen',
+ 'key_suspended' => 'Toon Uitgestelde Verkopen',
+ 'key_system' => 'Systeem Sneltoetsen',
+ 'key_tendered' => 'Wijziging Aangeboden Bedrag',
+ 'key_title' => 'Sneltoetsen Verkoop',
+ 'mc' => '',
+ 'mode' => 'Type Registratie',
+ 'must_enter_numeric' => 'Het ontvangen bedrag moet een numerieke waarde zijn.',
+ 'must_enter_numeric_giftcard' => 'Er moet een geldige code worden ingevuld voor de cadeaubon.',
+ 'must_enter_reference_code' => 'Referentie-/ophaalnummer moet worden ingevoerd.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Nieuwe klant',
+ 'new_item' => 'Nieuw Product',
+ 'no_description' => 'Geen',
+ 'no_filter' => 'Alle',
+ 'no_items_in_cart' => 'Er zijn geen verkopen geselecteerd.',
+ 'no_sales_to_display' => 'Er werden geen verkopen gevonden.',
+ 'none_selected' => 'U hebt geen verkopen geselecteerd.',
+ 'nontaxed_ind' => ' . ',
+ 'not_authorized' => 'Deze actie is niet toegestaan.',
+ 'one_or_multiple' => 'Verkoop(en)',
+ 'payment' => 'Betaalmethode',
+ 'payment_amount' => 'Bedrag',
+ 'payment_not_cover_total' => 'Betaalde hoeveelheid is onvoldoende.',
+ 'payment_type' => 'Type',
+ 'payments' => '',
+ 'payments_total' => 'Betaald bedrag',
+ 'price' => 'Prijs',
+ 'print_after_sale' => 'Print Ticket',
+ 'quantity' => 'Aantal',
+ 'quantity_less_than_reorder_level' => 'Waarschuwing, de gewenste hoeveelheid stock is overschreden.',
+ 'quantity_less_than_zero' => 'Waarschuwing: Gewenste hoeveelheid is onvoldoende. U kunt de verkoop nog steeds verwerken, maar controleer uw inventaris.',
+ 'quantity_of_items' => 'Hoeveelheid van {0} items',
+ 'quote' => 'Offerte',
+ 'quote_number' => 'Offertenummer',
+ 'quote_number_duplicate' => 'Offertenummer moet uniek zijn.',
+ 'quote_sent' => 'Offerte verzonden naar',
+ 'quote_unsent' => 'Offerte kon niet verzonden worden naar',
+ 'receipt' => 'Ticket #',
+ 'receipt_no_email' => 'De klant heeft geen geldig email adres.',
+ 'receipt_number' => 'Ticket #',
+ 'receipt_sent' => 'Ticket verstuurd naar',
+ 'receipt_unsent' => 'Fout bij het versturen van ticket naar',
+ 'reference_code' => 'Betalingsreferentiecode',
+ 'reference_code_invalid_characters' => 'De betalingsreferentiecode mag alleen letters en cijfers bevatten.',
+ 'reference_code_length_error' => 'De lengte van de betalingsreferentiecode is ongeldig.',
+ 'refund' => 'Type Terugbetaling',
+ 'register' => 'Kassa',
+ 'remove_customer' => 'Verwijder Klant',
+ 'remove_discount' => '',
+ 'return' => 'Retour',
+ 'rewards' => 'Punten',
+ 'rewards_balance' => 'Punten Balans',
+ 'rewards_package' => 'Spaarpunten',
+ 'rewards_remaining_balance' => 'Saldo Spaarpunten is ',
+ 'sale' => 'Verkoop',
+ 'sale_by_invoice' => 'Verkoop op Factuur',
+ 'sale_for_customer' => 'Klant:',
+ 'sale_time' => 'Datum',
+ 'sales_tax' => 'VAT',
+ 'sales_total' => '',
+ 'select_customer' => 'Selecteer Klant',
+ 'send_invoice' => 'Verstuur Factuur',
+ 'send_quote' => 'Verstuur Offerte',
+ 'send_receipt' => 'Verstuur Ticket',
+ 'send_work_order' => 'Verstuur Werkorder',
+ 'serial' => 'Nummer',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Toon Factuur',
+ 'show_receipt' => 'Toon Ticket',
+ 'start_typing_customer_name' => 'Typ naam klant...',
+ 'start_typing_item_name' => 'Typ naam product of barcode...',
+ 'stock' => 'Voorraad',
+ 'stock_location' => 'Stock Locatie',
+ 'sub_total' => 'Subtotaal',
+ 'successfully_deleted' => 'Uw aankoop werd verwijderd',
+ 'successfully_restored' => 'U hebt hersteld',
+ 'successfully_suspended_sale' => 'Wijzigingen bewaard voor verkoop.',
+ 'successfully_updated' => 'Verkoop Update Geslaagd.',
+ 'suspend_sale' => 'Bewaar',
+ 'suspended_doc_id' => 'Document',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Bewaarde Aankopen',
+ 'table' => 'Tafel',
+ 'takings' => 'Overzicht',
+ 'tax' => 'VAT',
+ 'tax_id' => 'Tax id',
+ 'tax_invoice' => 'Vat Factuur',
+ 'tax_percent' => 'VAT %',
+ 'taxed_ind' => 'T',
+ 'total' => 'Totaal',
+ 'total_tax_exclusive' => 'Totaal',
+ 'transaction_failed' => 'Transactie mislukt.',
+ 'unable_to_add_item' => 'Artikel toevoegen aan Verkoop mislukt',
+ 'unsuccessfully_deleted' => 'De aankoop kon niet verwijderd worden.',
+ 'unsuccessfully_restored' => 'De verkoop kon niet hersteld worden.',
+ 'unsuccessfully_suspended_sale' => 'Uw verkoop werd niet bewaard.',
+ 'unsuccessfully_updated' => 'Fout bij het bewaren van verkoop.',
+ 'unsuspend' => 'Hervat',
+ 'unsuspend_and_delete' => 'Actie',
+ 'update' => 'Bewerk',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'Werkorder',
+ 'work_order_number' => 'Werkorder Nummer',
+ 'work_order_number_duplicate' => 'Werkorder Nummer moet uniek zijn.',
+ 'work_order_sent' => 'Werkorder verzonder naar',
+ 'work_order_unsent' => 'Werkorder kon niet verzonden worden naar',
];
diff --git a/app/Language/nl-NL/Config.php b/app/Language/nl-NL/Config.php
index 0be517ac1..b73e50b90 100644
--- a/app/Language/nl-NL/Config.php
+++ b/app/Language/nl-NL/Config.php
@@ -1,332 +1,335 @@
"Bedrijfsadres",
- "address_required" => "Bedrijfsadres is een vereist veld.",
- "all_set" => "Alle bestandsmachtigingen zijn juist ingesteld!",
- "allow_duplicate_barcodes" => "Dezelfde streepjescodes toestaan",
- "apostrophe" => "apostrof",
- "backup_button" => "Reservekopie",
- "backup_database" => "Reservekopie database",
- "barcode" => "Streepjescode",
- "barcode_company" => "Bedrijfsnaam",
- "barcode_configuration" => "Streepjescode configuratie",
- "barcode_content" => "Streepjescode inhoud",
- "barcode_first_row" => "Rij 1",
- "barcode_font" => "Lettertype",
- "barcode_formats" => "Indelingen invoeren",
- "barcode_generate_if_empty" => "Genereren wanneer leeg.",
- "barcode_height" => "Hoogte (px)",
- "barcode_id" => "Artikel ID/Naam",
- "barcode_info" => "Streepjescode configuratie informatie",
- "barcode_layout" => "Streepjescode indeling",
- "barcode_name" => "Naam",
- "barcode_number" => "Streepjescode",
- "barcode_number_in_row" => "Nummer in rij",
- "barcode_page_cellspacing" => "Pagina cel afstand weergeven.",
- "barcode_page_width" => "Pagina breedte weergeven",
- "barcode_price" => "Prijs",
- "barcode_second_row" => "Rij 2",
- "barcode_third_row" => "Rij 3",
- "barcode_tooltip" => "Waarschuwing: Deze functie kan veroorzaken dat er dubbele items worden geïmporteerd of aangemaakt. Niet gebruiken als u geen dubbele streepjescodes wilt.",
- "barcode_type" => "Streepjescode soort",
- "barcode_width" => "Breedte (px)",
- "bottom" => "Onderaan",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Contant decimalen",
- "cash_decimals_tooltip" => "Wanneer contant decimalen en valuta decimalen gelijk zijn, vindt er geen contant afronding plaats. Tenzij contant afronding is ingesteld op halveren vijf.",
- "cash_rounding" => "Contant afronding",
- "category_dropdown" => "Categorie als vervolgkeuzelijst weergeven",
- "center" => "Centreren",
- "change_apperance_tooltip" => "",
- "comma" => "komma",
- "company" => "Bedrijfsnaam",
- "company_avatar" => "",
- "company_change_image" => "Afbeelding wijzigen",
- "company_logo" => "Bedrijfslogo",
- "company_remove_image" => "Afbeelding verwijderen",
- "company_required" => "Bedrijfsnaam is een vereist veld",
- "company_select_image" => "Afbeelding selecteren",
- "company_website_url" => "Bedrijfswebsite is geen geldige URL (http://...).",
- "country_codes" => "Land codes",
- "country_codes_tooltip" => "Kommagescheiden lijst van land codes voor het opzoeken van adres bij naam.",
- "currency_code" => "Valuta code",
- "currency_decimals" => "Valuta decimalen",
- "currency_symbol" => "Valuta symbool",
- "current_employee_only" => "",
- "customer_reward" => "Beloning",
- "customer_reward_duplicate" => "Beloning moet uniek zijn.",
- "customer_reward_enable" => "Klantbeloningen inschakelen",
- "customer_reward_invalid_chars" => "Beloning met '_' niet bevatten",
- "customer_reward_required" => "Beloning is een vereist veld",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "Datum en tijd filter",
- "datetimeformat" => "Datum en tijd indeling",
- "decimal_point" => "Decimaal punt",
- "default_barcode_font_size_number" => "Standaard streepjescode lettergrootte moet een getal zijn.",
- "default_barcode_font_size_required" => "Standaard streepjescode lettergrootte is een vereist veld.",
- "default_barcode_height_number" => "Standaard streepjescode hoogte moet een getal zijn.",
- "default_barcode_height_required" => "Standaard streepjescode hoogte is een vereist veld.",
- "default_barcode_num_in_row_number" => "Standaard streepjescode nummer in een rij moet een getal zijn.",
- "default_barcode_num_in_row_required" => "Standaard streepjescode nummer in een rij is een vereist veld.",
- "default_barcode_page_cellspacing_number" => "Standaard streepjescode pagina cel afstand moet een getal zijn.",
- "default_barcode_page_cellspacing_required" => "Standaard streepjescode pagina cel afstand is een vereist veld.",
- "default_barcode_page_width_number" => "Standaard streepjescode pagina breedte moet een getal zijn.",
- "default_barcode_page_width_required" => "Standaard streepjescode pagina breedte is een vereist veld.",
- "default_barcode_width_number" => "Standaard streepjescode breedte moet een getal zijn.",
- "default_barcode_width_required" => "Standaard streepjescode breedte is een vereist veld.",
- "default_item_columns" => "Standaard zichtbare artikelkolommen",
- "default_origin_tax_code" => "Standaard oorsprong belastingcode",
- "default_receivings_discount" => "Standaard leveringskorting",
- "default_receivings_discount_number" => "Standaard leveringskorting moet een getal zijn.",
- "default_receivings_discount_required" => "Standaard leveringskorting is een vereist veld.",
- "default_sales_discount" => "Standaard verkoopkorting",
- "default_sales_discount_number" => "Standaard verkoopkorting moet een getal zijn.",
- "default_sales_discount_required" => "Standaard verkoopkorting is een vereist veld.",
- "default_tax_category" => "Standaard belastingcategorie",
- "default_tax_code" => "Standaard belastingcode",
- "default_tax_jurisdiction" => "Standaard BTW-jurisdictie",
- "default_tax_name_number" => "Standaard belastingnaam moet een tekenreeks zijn.",
- "default_tax_name_required" => "Standaard belastingnaam is een vereist veld.",
- "default_tax_rate" => "Standaard belastingtarief %",
- "default_tax_rate_1" => "Belasting 1 tarief",
- "default_tax_rate_2" => "Belasting 2 tarief",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Standaard belastingtarief moet een getal zijn.",
- "default_tax_rate_required" => "Standaard belastingtarief is een vereist veld.",
- "derive_sale_quantity" => "Afgeleide verkoophoeveelheid toestaan",
- "derive_sale_quantity_tooltip" => "Wanneer aangevinkt zal er een nieuwe artikelsoort worden aangeleverd voor artikelen geordend op uitgebreid bedrag",
- "dinner_table" => "Tafel",
- "dinner_table_duplicate" => "Tafel moet uniek zijn.",
- "dinner_table_enable" => "Eettafels inschakelen",
- "dinner_table_invalid_chars" => "Tafelnaam mag '_' niet bevatten.",
- "dinner_table_required" => "Tafel is een vereist veld.",
- "dot" => "punt",
- "email" => "E-mail",
- "email_configuration" => "E-mail configuratie",
- "email_mailpath" => "Pad naar Sendmail",
- "email_protocol" => "Protocol",
- "email_receipt_check_behaviour" => "E-mail ontvangstbevestiging selectievakje",
- "email_receipt_check_behaviour_always" => "Altijd geselecteerd",
- "email_receipt_check_behaviour_last" => "Laatste selectie onthouden",
- "email_receipt_check_behaviour_never" => "Nooit geselecteerd",
- "email_smtp_crypto" => "SMTP encryptie",
- "email_smtp_host" => "SMTP server",
- "email_smtp_pass" => "SMTP wachtwoord",
- "email_smtp_port" => "SMTP poort",
- "email_smtp_timeout" => "SMTP time-out (s)",
- "email_smtp_user" => "SMTP gebruikersnaam",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Privacy afdwingen",
- "enforce_privacy_tooltip" => "Privacy van klanten beschermen door data te versleutelen als deze verwijderd wordt",
- "fax" => "Fax",
- "file_perm" => "Er zijn problemen met bestandsmachtigingen. Eerst oplossen en pagina vernieuwen.",
- "financial_year" => "Begin boekjaar",
- "financial_year_apr" => "1 april",
- "financial_year_aug" => "1 augustus",
- "financial_year_dec" => "1 december",
- "financial_year_feb" => "1 februari",
- "financial_year_jan" => "1 januari",
- "financial_year_jul" => "1 juli",
- "financial_year_jun" => "1 juni",
- "financial_year_mar" => "1 maart",
- "financial_year_may" => "1 mei",
- "financial_year_nov" => "1 november",
- "financial_year_oct" => "1 oktober",
- "financial_year_sep" => "1 september",
- "floating_labels" => "",
- "gcaptcha_enable" => "Aanmeldingspagina reCAPTCHA",
- "gcaptcha_secret_key" => "reCAPTCHA geheime sleutel",
- "gcaptcha_secret_key_required" => "reCAPTCHA geheime sleutel is een vereist veld",
- "gcaptcha_site_key" => "reCAPTCHA site sleutel",
- "gcaptcha_site_key_required" => "reCAPTCHA site sleutel is een vereist veld",
- "gcaptcha_tooltip" => "Aanmeldingspagina beschermen met Google reCAPTCHA. Klik op het pictogram om API sleutel te koppelen.",
- "general" => "Algemeen",
- "general_configuration" => "Algemene configuratie",
- "giftcard_number" => "Cadeaubonnummer",
- "giftcard_random" => "Willekeurige genereren",
- "giftcard_series" => "Genereren in series",
- "image_allowed_file_types" => "Toegestane bestandstypen",
- "image_max_height_tooltip" => "Maximaal toegestane hoogte van afbeelding uploads in pixels (px).",
- "image_max_size_tooltip" => "Maximaal toegestane bestandsgrootte van afbeelding uploads in kilobytes (kb).",
- "image_max_width_tooltip" => "Maximaal toegestane breedte van afbeelding uploads in pixels (px).",
- "image_restrictions" => "Afbeelding upload beperkingen",
- "include_hsn" => "Ondersteuning voor HSN codes inschakelen",
- "info" => "Informatie",
- "info_configuration" => "Winkelinformatie",
- "input_groups" => "",
- "integrations" => "Integraties",
- "integrations_configuration" => "Derde partij integraties",
- "invoice" => "Factuur",
- "invoice_configuration" => "Factuur afdrukinstellingen",
- "invoice_default_comments" => "Standaard factuur opmerkingen",
- "invoice_email_message" => "Factuur e-mail sjabloon",
- "invoice_enable" => "Facturering inschakelen",
- "invoice_printer" => "Factuur printer",
- "invoice_type" => "Factuur soort",
- "is_readable" => "is leesbaar, maar de machtigingen zijn onjuist ingesteld. Instellen op 640 of 660 en vernieuwen.",
- "is_writable" => "is schrijfbaar, maar de machtigingen zijn onjuist ingesteld. Instellen op 750 en vernieuwen.",
- "item_markup" => "",
- "jsprintsetup_required" => "Waarschuwing: Deze functionaliteit werkt alleen wanneer je de FireFox jsPrintSetup invoegtoepassing hebt geïnstalleerd. Toch opslaan?",
- "language" => "Taal",
- "last_used_invoice_number" => "Laatst gebruikte factuurnummer",
- "last_used_quote_number" => "Laatst gebruikte offertenummer",
- "last_used_work_order_number" => "Laatst gebruikte W/O-nummer",
- "left" => "Links",
- "license" => "Licentie",
- "license_configuration" => "Licentieoverzicht",
- "line_sequence" => "Lijn volgorde",
- "lines_per_page" => "Lijnen per pagina",
- "lines_per_page_number" => "Lijnen per pagina moet een getal zijn.",
- "lines_per_page_required" => "Lijnen per pagina is een vereist veld.",
- "locale" => "Lokalisatie",
- "locale_configuration" => "Lokalisatie configuratie",
- "locale_info" => "Lokalisatie configuratie informatie",
- "location" => "Voorraad",
- "location_configuration" => "Voorraadlocaties",
- "location_info" => "Locatie configuratie informatie",
- "login_form" => "Stijl aanmeldformulier",
- "logout" => "Wilt u een reservekopie maken voor het afmelden? Klik op [OK] om te bevestigen of op [Annuleren] om toch af te melden.",
- "mailchimp" => "MailChimp",
- "mailchimp_api_key" => "MailChimp API-sleutel",
- "mailchimp_configuration" => "MailChimp configuratie",
- "mailchimp_key_successfully" => "API-sleutel is geldig.",
- "mailchimp_key_unsuccessfully" => "API-sleutel is ongeldig.",
- "mailchimp_lists" => "MailChimp lijst(en)",
- "mailchimp_tooltip" => "Klik op het pictogram voor een API-sleutel.",
- "message" => "Bericht",
- "message_configuration" => "Bericht configuratie",
- "msg_msg" => "Opgeslagen sms-bericht",
- "msg_msg_placeholder" => "Sla uw bericht hier op als u een sms-sjabloon wilt maken, zo niet laat het vak leeg.",
- "msg_pwd" => "Sms API wachtwoord",
- "msg_pwd_required" => "Sms API wachtwoord is een vereist veld",
- "msg_src" => "Sms API afzender ID",
- "msg_src_required" => "Sms API afzender ID is een vereist veld",
- "msg_uid" => "Sms API gebruikersnaam",
- "msg_uid_required" => "Sms API gebruikersnaam is een vereist veld",
- "multi_pack_enabled" => "Meerdere pakketten per artikel",
- "no_risk" => "Geen kwetsbaarheden/beveiligingsrisico's.",
- "none" => "geen",
- "notify_alignment" => "Meldingspop-up positie",
- "number_format" => "Nummer indeling",
- "number_locale" => "Lokalisatie",
- "number_locale_invalid" => "De ingevoerde landinstelling is ongeldig. Bekijk de koppeling in de knopinfo om een geldige landinstelling te vinden.",
- "number_locale_required" => "Nummer landinstelling is een vereist veld.",
- "number_locale_tooltip" => "Vind een geschikte landinstelling via deze koppeling.",
- "os_timezone" => "OSPOS tijdzone:",
- "ospos_info" => "OSPOS installatie info",
- "payment_options_order" => "Betalingsopties volgorde",
- "perm_risk" => "Onjuiste machtigingen zijn een risico voor deze software.",
- "phone" => "Telefoonnummer bedrijf",
- "phone_required" => "Telefoonnummer bedrijf is een vereist veld.",
- "print_bottom_margin" => "Marge onderkant",
- "print_bottom_margin_number" => "Marge onderkant moet een getal zijn.",
- "print_bottom_margin_required" => "Marge onderkant is een vereist veld.",
- "print_delay_autoreturn" => "Vertraging automatisch terugkeren naar verkoop",
- "print_delay_autoreturn_number" => "Vertraging automatisch terugkeren naar verkoop is een vereist veld.",
- "print_delay_autoreturn_required" => "Vertraging automatisch terugkeren naar verkoop moet een getal zijn.",
- "print_footer" => "Browser voettekst afdrukken",
- "print_header" => "Browser koptekst afdrukken",
- "print_left_margin" => "Marge linkerkant",
- "print_left_margin_number" => "Marge linkerkant moet een getal zijn.",
- "print_left_margin_required" => "Marge linkerkant is een vereist veld.",
- "print_receipt_check_behaviour" => "Kassabon afdrukken selectievakje",
- "print_receipt_check_behaviour_always" => "Altijd geselecteerd",
- "print_receipt_check_behaviour_last" => "Laatst gebruikt onthouden",
- "print_receipt_check_behaviour_never" => "Nooit geselecteerd",
- "print_right_margin" => "Marge rechterkant",
- "print_right_margin_number" => "Marge rechterkant moet een getal zijn.",
- "print_right_margin_required" => "Marge rechterkant is een vereist veld.",
- "print_silently" => "Dialoogvenster afdrukken weergeven",
- "print_top_margin" => "Marge bovenkant",
- "print_top_margin_number" => "Marge bovenkant moet een getal zijn.",
- "print_top_margin_required" => "Marge bovenkant is een vereist veld.",
- "quantity_decimals" => "Hoeveelheid decimalen",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Standaard offerte opmerkingen",
- "receipt" => "Kassabon",
- "receipt_category" => "",
- "receipt_configuration" => "Kassabon afdrukinstellingen",
- "receipt_default" => "Standaard",
- "receipt_font_size" => "Lettergrootte",
- "receipt_font_size_number" => "Lettergrootte moet een getal zijn.",
- "receipt_font_size_required" => "Lettergrootte is een vereist veld.",
- "receipt_info" => "Kassabon configuratie informatie",
- "receipt_printer" => "Ticket printer",
- "receipt_short" => "Kort",
- "receipt_show_company_name" => "Bedrijfsnaam weergeven",
- "receipt_show_description" => "Beschrijving weergeven",
- "receipt_show_serialnumber" => "Serienummer weergeven",
- "receipt_show_tax_ind" => "Belastingindicator weergeven",
- "receipt_show_taxes" => "Belastingen weergeven",
- "receipt_show_total_discount" => "Totale korting weergeven",
- "receipt_template" => "Kassabon sjabloon",
- "receiving_calculate_average_price" => "Gemiddelde prijs berekenen (levering)",
- "recv_invoice_format" => "Leveringen factuurindeling",
- "register_mode_default" => "Standaard kassa modus",
- "report_an_issue" => "Probleem melden",
- "return_policy_required" => "Retourbeleid is een vereist veld.",
- "reward" => "Beloning",
- "reward_configuration" => "Beloning configuratie",
- "right" => "Rechts",
- "sales_invoice_format" => "Indeling verkoopfactuur",
- "sales_quote_format" => "Indeling verkoopofferte",
- "mailpath_invalid" => "Ongeldig sendmail pad. Alleen letters, cijfers, strepen, underscores, slashes en punten zijn toegestaan.",
- "saved_successfully" => "Configuratie opgeslagen.",
- "saved_unsuccessfully" => "Configuratie opslaan mislukt.",
- "security_issue" => "Beveilingskwetsbaarheid waarschuwing",
- "server_notice" => "Gebruik onderstaande info om het probleem te melden.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Kantoor pictogram weergeven",
- "statistics" => "Statistieken verzenden",
- "statistics_tooltip" => "Statistieken verzenden voor ontwikkelings- en functie verbeteringen.",
- "stock_location" => "Voorraadlocatie",
- "stock_location_duplicate" => "Voorraadlocatie moet uniek zijn.",
- "stock_location_invalid_chars" => "Voorraadlocatie mag '_' niet bevatten.",
- "stock_location_required" => "Voorraadlocatie is een vereist veld.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Kolom 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Indeling zoeksuggesties",
- "suggestions_second_column" => "Kolom 2",
- "suggestions_third_column" => "Kolom 3",
- "system_conf" => "Installatie & configuratie",
- "system_info" => "Systeeminfo",
- "table" => "Tafel",
- "table_configuration" => "Tafel configuratie",
- "takings_printer" => "Kassabon printer",
- "tax" => "Belasting",
- "tax_category" => "belastingcategorie",
- "tax_category_duplicate" => "De ingevoerde belastingcategorie bestaat al.",
- "tax_category_invalid_chars" => "De ingevoerde belastingcategorie is ongeldig.",
- "tax_category_required" => "De belastingcategorie is vereist.",
- "tax_category_used" => "Kan belastingcategorie niet verwijderen omdat deze in gebruik is.",
- "tax_configuration" => "Belasting configuratie",
- "tax_decimals" => "Belasting decimalen",
- "tax_id" => "Belasting ID",
- "tax_included" => "Inclusief belasting",
- "theme" => "Thema",
- "theme_preview" => "Thema voorbeeld:",
- "thousands_separator" => "Duizenden scheidingsteken",
- "timezone" => "Tijdzone",
- "timezone_error" => "OSPOS tijdzone is anders dan uw lokale tijdzone.",
- "top" => "Boven",
- "use_destination_based_tax" => "Bestemming gebaseerde belasting gebruiken",
- "user_timezone" => "Lokale tijdzone:",
- "website" => "Website",
- "wholesale_markup" => "",
- "work_order_enable" => "Werkorder ondersteuning",
- "work_order_format" => "Indeling werkorder",
+ 'address' => 'Bedrijfsadres',
+ 'address_required' => 'Bedrijfsadres is een vereist veld.',
+ 'all_set' => 'Alle bestandsmachtigingen zijn juist ingesteld!',
+ 'allow_duplicate_barcodes' => 'Dezelfde streepjescodes toestaan',
+ 'apostrophe' => 'apostrof',
+ 'backup_button' => 'Reservekopie',
+ 'backup_database' => 'Reservekopie database',
+ 'barcode' => 'Streepjescode',
+ 'barcode_company' => 'Bedrijfsnaam',
+ 'barcode_configuration' => 'Streepjescode configuratie',
+ 'barcode_content' => 'Streepjescode inhoud',
+ 'barcode_first_row' => 'Rij 1',
+ 'barcode_font' => 'Lettertype',
+ 'barcode_formats' => 'Indelingen invoeren',
+ 'barcode_generate_if_empty' => 'Genereren wanneer leeg.',
+ 'barcode_height' => 'Hoogte (px)',
+ 'barcode_id' => 'Artikel ID/Naam',
+ 'barcode_info' => 'Streepjescode configuratie informatie',
+ 'barcode_layout' => 'Streepjescode indeling',
+ 'barcode_name' => 'Naam',
+ 'barcode_number' => 'Streepjescode',
+ 'barcode_number_in_row' => 'Nummer in rij',
+ 'barcode_page_cellspacing' => 'Pagina cel afstand weergeven.',
+ 'barcode_page_width' => 'Pagina breedte weergeven',
+ 'barcode_price' => 'Prijs',
+ 'barcode_second_row' => 'Rij 2',
+ 'barcode_third_row' => 'Rij 3',
+ 'barcode_tooltip' => 'Waarschuwing: Deze functie kan veroorzaken dat er dubbele items worden geïmporteerd of aangemaakt. Niet gebruiken als u geen dubbele streepjescodes wilt.',
+ 'barcode_type' => 'Streepjescode soort',
+ 'barcode_width' => 'Breedte (px)',
+ 'bottom' => 'Onderaan',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Contant decimalen',
+ 'cash_decimals_tooltip' => 'Wanneer contant decimalen en valuta decimalen gelijk zijn, vindt er geen contant afronding plaats. Tenzij contant afronding is ingesteld op halveren vijf.',
+ 'cash_rounding' => 'Contant afronding',
+ 'category_dropdown' => 'Categorie als vervolgkeuzelijst weergeven',
+ 'center' => 'Centreren',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'komma',
+ 'company' => 'Bedrijfsnaam',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Afbeelding wijzigen',
+ 'company_logo' => 'Bedrijfslogo',
+ 'company_remove_image' => 'Afbeelding verwijderen',
+ 'company_required' => 'Bedrijfsnaam is een vereist veld',
+ 'company_select_image' => 'Afbeelding selecteren',
+ 'company_website_url' => 'Bedrijfswebsite is geen geldige URL (http://...).',
+ 'country_codes' => 'Land codes',
+ 'country_codes_tooltip' => 'Kommagescheiden lijst van land codes voor het opzoeken van adres bij naam.',
+ 'currency_code' => 'Valuta code',
+ 'currency_decimals' => 'Valuta decimalen',
+ 'currency_symbol' => 'Valuta symbool',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Beloning',
+ 'customer_reward_duplicate' => 'Beloning moet uniek zijn.',
+ 'customer_reward_enable' => 'Klantbeloningen inschakelen',
+ 'customer_reward_invalid_chars' => "Beloning met '_' niet bevatten",
+ 'customer_reward_required' => 'Beloning is een vereist veld',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => 'Datum en tijd filter',
+ 'datetimeformat' => 'Datum en tijd indeling',
+ 'decimal_point' => 'Decimaal punt',
+ 'default_barcode_font_size_number' => 'Standaard streepjescode lettergrootte moet een getal zijn.',
+ 'default_barcode_font_size_required' => 'Standaard streepjescode lettergrootte is een vereist veld.',
+ 'default_barcode_height_number' => 'Standaard streepjescode hoogte moet een getal zijn.',
+ 'default_barcode_height_required' => 'Standaard streepjescode hoogte is een vereist veld.',
+ 'default_barcode_num_in_row_number' => 'Standaard streepjescode nummer in een rij moet een getal zijn.',
+ 'default_barcode_num_in_row_required' => 'Standaard streepjescode nummer in een rij is een vereist veld.',
+ 'default_barcode_page_cellspacing_number' => 'Standaard streepjescode pagina cel afstand moet een getal zijn.',
+ 'default_barcode_page_cellspacing_required' => 'Standaard streepjescode pagina cel afstand is een vereist veld.',
+ 'default_barcode_page_width_number' => 'Standaard streepjescode pagina breedte moet een getal zijn.',
+ 'default_barcode_page_width_required' => 'Standaard streepjescode pagina breedte is een vereist veld.',
+ 'default_barcode_width_number' => 'Standaard streepjescode breedte moet een getal zijn.',
+ 'default_barcode_width_required' => 'Standaard streepjescode breedte is een vereist veld.',
+ 'default_item_columns' => 'Standaard zichtbare artikelkolommen',
+ 'default_origin_tax_code' => 'Standaard oorsprong belastingcode',
+ 'default_receivings_discount' => 'Standaard leveringskorting',
+ 'default_receivings_discount_number' => 'Standaard leveringskorting moet een getal zijn.',
+ 'default_receivings_discount_required' => 'Standaard leveringskorting is een vereist veld.',
+ 'default_sales_discount' => 'Standaard verkoopkorting',
+ 'default_sales_discount_number' => 'Standaard verkoopkorting moet een getal zijn.',
+ 'default_sales_discount_required' => 'Standaard verkoopkorting is een vereist veld.',
+ 'default_tax_category' => 'Standaard belastingcategorie',
+ 'default_tax_code' => 'Standaard belastingcode',
+ 'default_tax_jurisdiction' => 'Standaard BTW-jurisdictie',
+ 'default_tax_name_number' => 'Standaard belastingnaam moet een tekenreeks zijn.',
+ 'default_tax_name_required' => 'Standaard belastingnaam is een vereist veld.',
+ 'default_tax_rate' => 'Standaard belastingtarief %',
+ 'default_tax_rate_1' => 'Belasting 1 tarief',
+ 'default_tax_rate_2' => 'Belasting 2 tarief',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Standaard belastingtarief moet een getal zijn.',
+ 'default_tax_rate_required' => 'Standaard belastingtarief is een vereist veld.',
+ 'derive_sale_quantity' => 'Afgeleide verkoophoeveelheid toestaan',
+ 'derive_sale_quantity_tooltip' => 'Wanneer aangevinkt zal er een nieuwe artikelsoort worden aangeleverd voor artikelen geordend op uitgebreid bedrag',
+ 'dinner_table' => 'Tafel',
+ 'dinner_table_duplicate' => 'Tafel moet uniek zijn.',
+ 'dinner_table_enable' => 'Eettafels inschakelen',
+ 'dinner_table_invalid_chars' => "Tafelnaam mag '_' niet bevatten.",
+ 'dinner_table_required' => 'Tafel is een vereist veld.',
+ 'dot' => 'punt',
+ 'email' => 'E-mail',
+ 'email_configuration' => 'E-mail configuratie',
+ 'email_mailpath' => 'Pad naar Sendmail',
+ 'email_protocol' => 'Protocol',
+ 'email_receipt_check_behaviour' => 'E-mail ontvangstbevestiging selectievakje',
+ 'email_receipt_check_behaviour_always' => 'Altijd geselecteerd',
+ 'email_receipt_check_behaviour_last' => 'Laatste selectie onthouden',
+ 'email_receipt_check_behaviour_never' => 'Nooit geselecteerd',
+ 'email_smtp_crypto' => 'SMTP encryptie',
+ 'email_smtp_host' => 'SMTP server',
+ 'email_smtp_pass' => 'SMTP wachtwoord',
+ 'email_smtp_port' => 'SMTP poort',
+ 'email_smtp_timeout' => 'SMTP time-out (s)',
+ 'email_smtp_user' => 'SMTP gebruikersnaam',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Privacy afdwingen',
+ 'enforce_privacy_tooltip' => 'Privacy van klanten beschermen door data te versleutelen als deze verwijderd wordt',
+ 'fax' => 'Fax',
+ 'file_perm' => 'Er zijn problemen met bestandsmachtigingen. Eerst oplossen en pagina vernieuwen.',
+ 'financial_year' => 'Begin boekjaar',
+ 'financial_year_apr' => '1 april',
+ 'financial_year_aug' => '1 augustus',
+ 'financial_year_dec' => '1 december',
+ 'financial_year_feb' => '1 februari',
+ 'financial_year_jan' => '1 januari',
+ 'financial_year_jul' => '1 juli',
+ 'financial_year_jun' => '1 juni',
+ 'financial_year_mar' => '1 maart',
+ 'financial_year_may' => '1 mei',
+ 'financial_year_nov' => '1 november',
+ 'financial_year_oct' => '1 oktober',
+ 'financial_year_sep' => '1 september',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => 'Aanmeldingspagina reCAPTCHA',
+ 'gcaptcha_secret_key' => 'reCAPTCHA geheime sleutel',
+ 'gcaptcha_secret_key_required' => 'reCAPTCHA geheime sleutel is een vereist veld',
+ 'gcaptcha_site_key' => 'reCAPTCHA site sleutel',
+ 'gcaptcha_site_key_required' => 'reCAPTCHA site sleutel is een vereist veld',
+ 'gcaptcha_tooltip' => 'Aanmeldingspagina beschermen met Google reCAPTCHA. Klik op het pictogram om API sleutel te koppelen.',
+ 'general' => 'Algemeen',
+ 'general_configuration' => 'Algemene configuratie',
+ 'giftcard_number' => 'Cadeaubonnummer',
+ 'giftcard_random' => 'Willekeurige genereren',
+ 'giftcard_series' => 'Genereren in series',
+ 'image_allowed_file_types' => 'Toegestane bestandstypen',
+ 'image_max_height_tooltip' => 'Maximaal toegestane hoogte van afbeelding uploads in pixels (px).',
+ 'image_max_size_tooltip' => 'Maximaal toegestane bestandsgrootte van afbeelding uploads in kilobytes (kb).',
+ 'image_max_width_tooltip' => 'Maximaal toegestane breedte van afbeelding uploads in pixels (px).',
+ 'image_restrictions' => 'Afbeelding upload beperkingen',
+ 'include_hsn' => 'Ondersteuning voor HSN codes inschakelen',
+ 'info' => 'Informatie',
+ 'info_configuration' => 'Winkelinformatie',
+ 'input_groups' => '',
+ 'integrations' => 'Integraties',
+ 'integrations_configuration' => 'Derde partij integraties',
+ 'invoice' => 'Factuur',
+ 'invoice_configuration' => 'Factuur afdrukinstellingen',
+ 'invoice_default_comments' => 'Standaard factuur opmerkingen',
+ 'invoice_email_message' => 'Factuur e-mail sjabloon',
+ 'invoice_enable' => 'Facturering inschakelen',
+ 'invoice_printer' => 'Factuur printer',
+ 'invoice_type' => 'Factuur soort',
+ 'is_readable' => 'is leesbaar, maar de machtigingen zijn onjuist ingesteld. Instellen op 640 of 660 en vernieuwen.',
+ 'is_writable' => 'is schrijfbaar, maar de machtigingen zijn onjuist ingesteld. Instellen op 750 en vernieuwen.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Waarschuwing: Deze functionaliteit werkt alleen wanneer je de FireFox jsPrintSetup invoegtoepassing hebt geïnstalleerd. Toch opslaan?',
+ 'language' => 'Taal',
+ 'last_used_invoice_number' => 'Laatst gebruikte factuurnummer',
+ 'last_used_quote_number' => 'Laatst gebruikte offertenummer',
+ 'last_used_work_order_number' => 'Laatst gebruikte W/O-nummer',
+ 'left' => 'Links',
+ 'license' => 'Licentie',
+ 'license_configuration' => 'Licentieoverzicht',
+ 'line_sequence' => 'Lijn volgorde',
+ 'lines_per_page' => 'Lijnen per pagina',
+ 'lines_per_page_number' => 'Lijnen per pagina moet een getal zijn.',
+ 'lines_per_page_required' => 'Lijnen per pagina is een vereist veld.',
+ 'locale' => 'Lokalisatie',
+ 'locale_configuration' => 'Lokalisatie configuratie',
+ 'locale_info' => 'Lokalisatie configuratie informatie',
+ 'location' => 'Voorraad',
+ 'location_configuration' => 'Voorraadlocaties',
+ 'location_info' => 'Locatie configuratie informatie',
+ 'login_form' => 'Stijl aanmeldformulier',
+ 'logout' => 'Wilt u een reservekopie maken voor het afmelden? Klik op [OK] om te bevestigen of op [Annuleren] om toch af te melden.',
+ 'mailchimp' => 'MailChimp',
+ 'mailchimp_api_key' => 'MailChimp API-sleutel',
+ 'mailchimp_configuration' => 'MailChimp configuratie',
+ 'mailchimp_key_successfully' => 'API-sleutel is geldig.',
+ 'mailchimp_key_unsuccessfully' => 'API-sleutel is ongeldig.',
+ 'mailchimp_lists' => 'MailChimp lijst(en)',
+ 'mailchimp_tooltip' => 'Klik op het pictogram voor een API-sleutel.',
+ 'message' => 'Bericht',
+ 'message_configuration' => 'Bericht configuratie',
+ 'msg_msg' => 'Opgeslagen sms-bericht',
+ 'msg_msg_placeholder' => 'Sla uw bericht hier op als u een sms-sjabloon wilt maken, zo niet laat het vak leeg.',
+ 'msg_pwd' => 'Sms API wachtwoord',
+ 'msg_pwd_required' => 'Sms API wachtwoord is een vereist veld',
+ 'msg_src' => 'Sms API afzender ID',
+ 'msg_src_required' => 'Sms API afzender ID is een vereist veld',
+ 'msg_uid' => 'Sms API gebruikersnaam',
+ 'msg_uid_required' => 'Sms API gebruikersnaam is een vereist veld',
+ 'multi_pack_enabled' => 'Meerdere pakketten per artikel',
+ 'no_risk' => "Geen kwetsbaarheden/beveiligingsrisico's.",
+ 'none' => 'geen',
+ 'notify_alignment' => 'Meldingspop-up positie',
+ 'number_format' => 'Nummer indeling',
+ 'number_locale' => 'Lokalisatie',
+ 'number_locale_invalid' => 'De ingevoerde landinstelling is ongeldig. Bekijk de koppeling in de knopinfo om een geldige landinstelling te vinden.',
+ 'number_locale_required' => 'Nummer landinstelling is een vereist veld.',
+ 'number_locale_tooltip' => 'Vind een geschikte landinstelling via deze koppeling.',
+ 'os_timezone' => 'OSPOS tijdzone:',
+ 'ospos_info' => 'OSPOS installatie info',
+ 'payment_options_order' => 'Betalingsopties volgorde',
+ 'payment_reference_code_length_limits' => 'Betalingsreferentiecode
Lengtelimieten',
+ 'payment_reference_code_length_max_label' => 'Max',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => 'Onjuiste machtigingen zijn een risico voor deze software.',
+ 'phone' => 'Telefoonnummer bedrijf',
+ 'phone_required' => 'Telefoonnummer bedrijf is een vereist veld.',
+ 'print_bottom_margin' => 'Marge onderkant',
+ 'print_bottom_margin_number' => 'Marge onderkant moet een getal zijn.',
+ 'print_bottom_margin_required' => 'Marge onderkant is een vereist veld.',
+ 'print_delay_autoreturn' => 'Vertraging automatisch terugkeren naar verkoop',
+ 'print_delay_autoreturn_number' => 'Vertraging automatisch terugkeren naar verkoop is een vereist veld.',
+ 'print_delay_autoreturn_required' => 'Vertraging automatisch terugkeren naar verkoop moet een getal zijn.',
+ 'print_footer' => 'Browser voettekst afdrukken',
+ 'print_header' => 'Browser koptekst afdrukken',
+ 'print_left_margin' => 'Marge linkerkant',
+ 'print_left_margin_number' => 'Marge linkerkant moet een getal zijn.',
+ 'print_left_margin_required' => 'Marge linkerkant is een vereist veld.',
+ 'print_receipt_check_behaviour' => 'Kassabon afdrukken selectievakje',
+ 'print_receipt_check_behaviour_always' => 'Altijd geselecteerd',
+ 'print_receipt_check_behaviour_last' => 'Laatst gebruikt onthouden',
+ 'print_receipt_check_behaviour_never' => 'Nooit geselecteerd',
+ 'print_right_margin' => 'Marge rechterkant',
+ 'print_right_margin_number' => 'Marge rechterkant moet een getal zijn.',
+ 'print_right_margin_required' => 'Marge rechterkant is een vereist veld.',
+ 'print_silently' => 'Dialoogvenster afdrukken weergeven',
+ 'print_top_margin' => 'Marge bovenkant',
+ 'print_top_margin_number' => 'Marge bovenkant moet een getal zijn.',
+ 'print_top_margin_required' => 'Marge bovenkant is een vereist veld.',
+ 'quantity_decimals' => 'Hoeveelheid decimalen',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Standaard offerte opmerkingen',
+ 'receipt' => 'Kassabon',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Kassabon afdrukinstellingen',
+ 'receipt_default' => 'Standaard',
+ 'receipt_font_size' => 'Lettergrootte',
+ 'receipt_font_size_number' => 'Lettergrootte moet een getal zijn.',
+ 'receipt_font_size_required' => 'Lettergrootte is een vereist veld.',
+ 'receipt_info' => 'Kassabon configuratie informatie',
+ 'receipt_printer' => 'Ticket printer',
+ 'receipt_short' => 'Kort',
+ 'receipt_show_company_name' => 'Bedrijfsnaam weergeven',
+ 'receipt_show_description' => 'Beschrijving weergeven',
+ 'receipt_show_serialnumber' => 'Serienummer weergeven',
+ 'receipt_show_tax_ind' => 'Belastingindicator weergeven',
+ 'receipt_show_taxes' => 'Belastingen weergeven',
+ 'receipt_show_total_discount' => 'Totale korting weergeven',
+ 'receipt_template' => 'Kassabon sjabloon',
+ 'receiving_calculate_average_price' => 'Gemiddelde prijs berekenen (levering)',
+ 'recv_invoice_format' => 'Leveringen factuurindeling',
+ 'register_mode_default' => 'Standaard kassa modus',
+ 'report_an_issue' => 'Probleem melden',
+ 'return_policy_required' => 'Retourbeleid is een vereist veld.',
+ 'reward' => 'Beloning',
+ 'reward_configuration' => 'Beloning configuratie',
+ 'right' => 'Rechts',
+ 'sales_invoice_format' => 'Indeling verkoopfactuur',
+ 'sales_quote_format' => 'Indeling verkoopofferte',
+ 'mailpath_invalid' => 'Ongeldig sendmail pad. Alleen letters, cijfers, strepen, underscores, slashes en punten zijn toegestaan.',
+ 'saved_successfully' => 'Configuratie opgeslagen.',
+ 'saved_unsuccessfully' => 'Configuratie opslaan mislukt.',
+ 'security_issue' => 'Beveilingskwetsbaarheid waarschuwing',
+ 'server_notice' => 'Gebruik onderstaande info om het probleem te melden.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Kantoor pictogram weergeven',
+ 'statistics' => 'Statistieken verzenden',
+ 'statistics_tooltip' => 'Statistieken verzenden voor ontwikkelings- en functie verbeteringen.',
+ 'stock_location' => 'Voorraadlocatie',
+ 'stock_location_duplicate' => 'Voorraadlocatie moet uniek zijn.',
+ 'stock_location_invalid_chars' => "Voorraadlocatie mag '_' niet bevatten.",
+ 'stock_location_required' => 'Voorraadlocatie is een vereist veld.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Kolom 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Indeling zoeksuggesties',
+ 'suggestions_second_column' => 'Kolom 2',
+ 'suggestions_third_column' => 'Kolom 3',
+ 'system_conf' => 'Installatie & configuratie',
+ 'system_info' => 'Systeeminfo',
+ 'table' => 'Tafel',
+ 'table_configuration' => 'Tafel configuratie',
+ 'takings_printer' => 'Kassabon printer',
+ 'tax' => 'Belasting',
+ 'tax_category' => 'belastingcategorie',
+ 'tax_category_duplicate' => 'De ingevoerde belastingcategorie bestaat al.',
+ 'tax_category_invalid_chars' => 'De ingevoerde belastingcategorie is ongeldig.',
+ 'tax_category_required' => 'De belastingcategorie is vereist.',
+ 'tax_category_used' => 'Kan belastingcategorie niet verwijderen omdat deze in gebruik is.',
+ 'tax_configuration' => 'Belasting configuratie',
+ 'tax_decimals' => 'Belasting decimalen',
+ 'tax_id' => 'Belasting ID',
+ 'tax_included' => 'Inclusief belasting',
+ 'theme' => 'Thema',
+ 'theme_preview' => 'Thema voorbeeld:',
+ 'thousands_separator' => 'Duizenden scheidingsteken',
+ 'timezone' => 'Tijdzone',
+ 'timezone_error' => 'OSPOS tijdzone is anders dan uw lokale tijdzone.',
+ 'top' => 'Boven',
+ 'use_destination_based_tax' => 'Bestemming gebaseerde belasting gebruiken',
+ 'user_timezone' => 'Lokale tijdzone:',
+ 'website' => 'Website',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Werkorder ondersteuning',
+ 'work_order_format' => 'Indeling werkorder',
];
diff --git a/app/Language/nl-NL/Login.php b/app/Language/nl-NL/Login.php
index 0f1117123..b66121a29 100644
--- a/app/Language/nl-NL/Login.php
+++ b/app/Language/nl-NL/Login.php
@@ -1,25 +1,30 @@
"Ik ben geen robot.",
- "go" => "Aanmelden",
- "invalid_gcaptcha" => "Bewijs dat je geen robot bent.",
- "invalid_installation" => "De installatie is niet juist, controleer uw php.ini bestand.",
- "invalid_username_and_password" => "Ongeldige gebruikersnaam en/of wachtwoord.",
- "login" => "Aanmelden",
- "logout" => "Afmelden",
- "migration_needed" => "Een databasemigratie naar {0} zal starten na aanmelding.",
- "migration_required" => "Database migratie vereist",
- "migration_auth_message" => "Beheerdersreferenties zijn vereist om de databasemigratie naar versie {0} te autoriseren. Log in om verder te gaan.",
- "migration_initializing" => "Database initialiseren",
- "migration_running" => "Databasemigraties uitvoeren...",
- "migration_complete" => "Database succesvol geïnitialiseerd!",
- "migration_complete_login" => "U kunt nu inloggen.",
- "migration_failed" => "Migratie mislukt",
- "migration_error_connection" => "Verbindingsfout. Probeer het opnieuw.",
- "migration_complete_redirect" => "Migratie voltooid. Doorsturen naar login...",
- "password" => "Wachtwoord",
- "required_username" => "Het gebruikersnaam veld is verplicht.",
- "username" => "Gebruikersnaam",
- "welcome" => "Welkom bij {0}!",
+ "gcaptcha" => "Ik ben geen robot.",
+ "go" => "Aanmelden",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Bewijs dat je geen robot bent.",
+ "invalid_installation" => "De installatie is niet juist, controleer uw php.ini bestand.",
+ "invalid_username_and_password" => "Ongeldige gebruikersnaam en/of wachtwoord.",
+ "login" => "Aanmelden",
+ "logout" => "Afmelden",
+ "migrating_database" => "Database migreren",
+ "migration_auth_message" => "Beheerdersreferenties zijn vereist om de databasemigratie naar versie {0} te autoriseren. Log in om verder te gaan.",
+ "migration_complete" => "Database succesvol geïnitialiseerd!",
+ "migration_complete_login" => "U kunt nu inloggen.",
+ "migration_complete_migrate" => "Database succesvol gemigreerd!",
+ "migration_complete_redirect" => "Migratie voltooid. Doorsturen naar login...",
+ "migration_error_connection" => "Verbindingsfout. Probeer het opnieuw.",
+ "migration_failed" => "Migratie mislukt",
+ "migration_initializing" => "Database initialiseren",
+ "migration_needed" => "Een databasemigratie naar {0} zal starten na aanmelding.",
+ "migration_required" => "Database migratie vereist",
+ "migration_running" => "Databasemigraties uitvoeren...",
+ "password" => "Wachtwoord",
+ "required_username" => "Het gebruikersnaam veld is verplicht.",
+ "username" => "Gebruikersnaam",
+ "welcome" => "Welkom bij {0}!"
];
diff --git a/app/Language/nl-NL/Sales.php b/app/Language/nl-NL/Sales.php
index 12826cc27..ad998dec5 100644
--- a/app/Language/nl-NL/Sales.php
+++ b/app/Language/nl-NL/Sales.php
@@ -1,235 +1,235 @@
"Beschikbare punten",
- "rewards_package" => "Beloningen",
- "rewards_remaining_balance" => "Resterende beloningspunten waarde is ",
- "account_number" => "Account #",
- "add_payment" => "Betaling toevoegen",
- "amount_due" => "Te betalen bedrag",
- "amount_tendered" => "Betaald bedrag",
- "authorized_signature" => "Geautoriseerde handtekening",
- "cancel_sale" => "Annuleren",
- "cash" => "Contant",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "Contant correctie",
- "cash_deposit" => "Contact storting",
- "cash_filter" => "Contant",
- "change_due" => "Wisselgeld tegoed",
- "change_price" => "Verkoopprijs wijzigen",
- "check" => "Cheque",
- "check_balance" => "Cheque restant",
- "check_filter" => "Cheque",
- "close" => "",
- "comment" => "Opmerking",
- "comments" => "Opmerkingen",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Voltooien",
- "confirm_cancel_sale" => "Weet u zeker dat u deze verkoop wilt wissen? Alle artikelen worden gewist.",
- "confirm_delete" => "Weet u zeker dat u de geselecteerde verko(o)p(en) wilt verwijderen?",
- "confirm_restore" => "Weet u zeker dat u de geselecteerde verko(o)p(en) wilt herstellen?",
- "credit" => "Creditcard",
- "credit_deposit" => "Krediet storting",
- "credit_filter" => "Creditcard",
- "current_table" => "",
- "customer" => "Klant",
- "customer_address" => "Adres",
- "customer_discount" => "Korting",
- "customer_email" => "E-mail",
- "customer_location" => "Locatie",
- "customer_mailchimp_status" => "MailChimp Status",
- "customer_optional" => "(Vereist voor te betalen betalingen)",
- "customer_required" => "(Vereist)",
- "customer_total" => "Totaal",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Verkoopdatum",
- "date_range" => "Datumbereik",
- "date_required" => "Een juiste datum moet ingevuld worden.",
- "date_type" => "Datum is een vereist veld.",
- "debit" => "Betaalpas",
- "debit_filter" => "",
- "delete" => "Verwijderen toestaan",
- "delete_confirmation" => "Weet u zeker dat u deze verkoop wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.",
- "delete_entire_sale" => "Volledige verkoop verwijderen",
- "delete_successful" => "Verkoop verwijderd.",
- "delete_unsuccessful" => "Verkoop verwijderen mislukt.",
- "description_abbrv" => "Beschr.",
- "discard" => "Negeren",
- "discard_quote" => "",
- "discount" => "Krtng",
- "discount_included" => "% korting",
- "discount_short" => "%",
- "due" => "Te betalen",
- "due_filter" => "Te betalen",
- "edit" => "Bewerken",
- "edit_item" => "Artikel bewerken",
- "edit_sale" => "Verkoop bewerken",
- "email_receipt" => "E-mail kassabon",
- "employee" => "Werknemer",
- "entry" => "Vermelding",
- "error_editing_item" => "Fout bij artikel bewerken",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Artikel zoeken of scannen",
- "find_or_scan_item_or_receipt" => "Artikel of kassabon vinden of scannen",
- "giftcard" => "Cadeaubon",
- "giftcard_balance" => "Cadeaubon saldo",
- "giftcard_filter" => "",
- "giftcard_number" => "Cadeaubonnummer",
- "group_by_category" => "Groeperen op categorie",
- "group_by_type" => "Groeperen op soort",
- "hsn" => "HSN",
- "id" => "Verkoop ID",
- "include_prices" => "Prijzen opnemen?",
- "invoice" => "Factuur",
- "invoice_confirm" => "Deze factuur zal verzonden worden naar",
- "invoice_enable" => "Factuurnummer",
- "invoice_filter" => "Facturen",
- "invoice_no_email" => "Deze klant bevat geen geldig e-mailadres.",
- "invoice_number" => "Factuur #",
- "invoice_number_duplicate" => "Factuurnummer {0} moet uniek zijn.",
- "invoice_sent" => "Factuur verzonden naar",
- "invoice_total" => "Factuurtotaal",
- "invoice_type_custom_invoice" => "Aangepaste factuur (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Aangepaste belastingfactuur (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Factuur (invoice.php)",
- "invoice_type_tax_invoice" => "Belastingfactuur (tax_invoice.php)",
- "invoice_unsent" => "Fout bij verzenden van factuur naar",
- "invoice_update" => "Opnieuw tellen",
- "item_insufficient_of_stock" => "Artikel heeft onvoldoende voorraad.",
- "item_name" => "Artikelnaam",
- "item_number" => "Artikel #",
- "item_out_of_stock" => "Artikel is niet voorradig.",
- "key_browser" => "Handige snelkoppelingen",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Voltooi Offerte/Factuur zonder betaling",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "Openen in volledig scherm",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "Inzoomen",
- "key_item_search" => "Item Search",
- "key_out" => "Uitzoomen",
- "key_payment" => "Add Payment",
- "key_print" => "Huidige pagina afdrukken",
- "key_restore" => "Originele weergave/grootte herstellen",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "Registratie modus",
- "must_enter_numeric" => "Betaald bedrag moet een getal zijn.",
- "must_enter_numeric_giftcard" => "Cadeaubonnummer moet een getal zijn.",
- "new_customer" => "Nieuwe klant",
- "new_item" => "Nieuw artikel",
- "no_description" => "Geen beschrijving",
- "no_filter" => "Alles",
- "no_items_in_cart" => "Geen artikelen in de winkelwagen.",
- "no_sales_to_display" => "Geen verkopen om te weergeven.",
- "none_selected" => "Geen verko(o)p(en) geselecteerd om te verwijderen.",
- "nontaxed_ind" => " ",
- "not_authorized" => "Deze actie is niet geautoriseerd.",
- "one_or_multiple" => "Verko(o)p(en)",
- "payment" => "Betalingssoort",
- "payment_amount" => "Bedrag",
- "payment_not_cover_total" => "Betaalde bedrag moet groter of gelijk zijn aan totaal.",
- "payment_type" => "Soort",
- "payments" => "",
- "payments_total" => "Betalingstotaal",
- "price" => "Prijs",
- "print_after_sale" => "Afdrukken na verkoop",
- "quantity" => "Hoeveelheid",
- "quantity_less_than_reorder_level" => "Waarschuwing: gewenste hoeveelheid is lager dan het opnieuw bestellen niveau voor dit artikel.",
- "quantity_less_than_zero" => "Waarschuwing: gewenste hoeveelheid is onvoldoende. De verkoop kan nog steeds verwerkt worden, maar controleer de voorraad.",
- "quantity_of_items" => "Hoeveelheid van {0} artikelen",
- "quote" => "Offerte",
- "quote_number" => "Offertenummer",
- "quote_number_duplicate" => "Offertenummer moet uniek zijn.",
- "quote_sent" => "Offerte verzonden naar",
- "quote_unsent" => "Offerte niet verzonden naar",
- "receipt" => "Kassabon",
- "receipt_no_email" => "Deze klant bevat geen geldig e-mailadres.",
- "receipt_number" => "Verkoop #",
- "receipt_sent" => "Kassabon verzonden naar",
- "receipt_unsent" => "Kassabon niet verzonden naar",
- "refund" => "Terugbetaling soort",
- "register" => "Verkoopregister",
- "remove_customer" => "Klant verwijderen",
- "remove_discount" => "",
- "return" => "Retourneren",
- "rewards" => "Beloningspunten",
- "rewards_balance" => "Beloningspunten balans",
- "sale" => "Verkoop",
- "sale_by_invoice" => "Verkopen op factuur",
- "sale_for_customer" => "Klant:",
- "sale_time" => "Tijd",
- "sales_tax" => "BTW",
- "sales_total" => "",
- "select_customer" => "Klant selecteren",
- "send_invoice" => "Factuur verzenden",
- "send_quote" => "Offerte verzenden",
- "send_receipt" => "Kassabon verzenden",
- "send_work_order" => "Werkorder verzenden",
- "serial" => "Serieel",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Factuur weergeven",
- "show_receipt" => "Kassabon weergeven",
- "start_typing_customer_name" => "Begin met typen klantgegevens...",
- "start_typing_item_name" => "Begin met typen artikelnaam of scan streepjescode...",
- "stock" => "Voorraad",
- "stock_location" => "Voorraadlocatie",
- "sub_total" => "Subtotaal",
- "successfully_deleted" => "U heeft verwijderd",
- "successfully_restored" => "U heeft hersteld",
- "successfully_suspended_sale" => "Verkoop gesluimerd.",
- "successfully_updated" => "Verkoop bijgewerkt.",
- "suspend_sale" => "Sluimeren",
- "suspended_doc_id" => "Document",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Gesluimerd",
- "table" => "Tafel",
- "takings" => "Dagelijkse verkopen",
- "tax" => "Belasting",
- "tax_id" => "Belasting ID",
- "tax_invoice" => "Belastingfactuur",
- "tax_percent" => "Belasting %",
- "taxed_ind" => "B",
- "total" => "Totaal",
- "total_tax_exclusive" => "Belasting uitsluiten",
- "transaction_failed" => "Verkooptransactie mislukt.",
- "unable_to_add_item" => "Artikel toevoegen aan verkoop mislukt",
- "unsuccessfully_deleted" => "Verko(o)p(en) verwijderen mislukt.",
- "unsuccessfully_restored" => "Verko(o)p(en) herstellen mislukt.",
- "unsuccessfully_suspended_sale" => "Verkoop sluimeren mislukt.",
- "unsuccessfully_updated" => "Verkoop bijwerken mislukt.",
- "unsuspend" => "Ontsluimeren",
- "unsuspend_and_delete" => "Actie",
- "update" => "Bijwerken",
- "upi" => "UPI",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "Werkorder",
- "work_order_number" => "Werkordernummer",
- "work_order_number_duplicate" => "Werkordernummer moet uniek zijn.",
- "work_order_sent" => "Werkorder verzonden naar",
- "work_order_unsent" => "Werkorder niet verzonden naar",
- "sale_not_found" => "Verkoop niet gevonden",
- "ubl_invoice" => "UBL-factuur",
- "download_ubl" => "UBL-factuur downloaden",
- "ubl_generation_failed" => "Genereren van UBL-factuur mislukt",
+ 'account_number' => 'Account #',
+ 'add_payment' => 'Betaling toevoegen',
+ 'amount_due' => 'Te betalen bedrag',
+ 'amount_tendered' => 'Betaald bedrag',
+ 'authorized_signature' => 'Geautoriseerde handtekening',
+ 'cancel_sale' => 'Annuleren',
+ 'cash' => 'Contant',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'Contant correctie',
+ 'cash_deposit' => 'Contact storting',
+ 'cash_filter' => 'Contant',
+ 'change_due' => 'Wisselgeld tegoed',
+ 'change_price' => 'Verkoopprijs wijzigen',
+ 'check' => 'Cheque',
+ 'check_balance' => 'Cheque restant',
+ 'check_filter' => 'Cheque',
+ 'close' => '',
+ 'comment' => 'Opmerking',
+ 'comments' => 'Opmerkingen',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Voltooien',
+ 'confirm_cancel_sale' => 'Weet u zeker dat u deze verkoop wilt wissen? Alle artikelen worden gewist.',
+ 'confirm_delete' => 'Weet u zeker dat u de geselecteerde verko(o)p(en) wilt verwijderen?',
+ 'confirm_restore' => 'Weet u zeker dat u de geselecteerde verko(o)p(en) wilt herstellen?',
+ 'credit' => 'Creditcard',
+ 'credit_deposit' => 'Krediet storting',
+ 'credit_filter' => 'Creditcard',
+ 'current_table' => '',
+ 'customer' => 'Klant',
+ 'customer_address' => 'Adres',
+ 'customer_discount' => 'Korting',
+ 'customer_email' => 'E-mail',
+ 'customer_location' => 'Locatie',
+ 'customer_mailchimp_status' => 'MailChimp Status',
+ 'customer_optional' => '(Vereist voor te betalen betalingen)',
+ 'customer_required' => '(Vereist)',
+ 'customer_total' => 'Totaal',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Beschikbare punten',
+ 'daily_sales' => '',
+ 'date' => 'Verkoopdatum',
+ 'date_range' => 'Datumbereik',
+ 'date_required' => 'Een juiste datum moet ingevuld worden.',
+ 'date_type' => 'Datum is een vereist veld.',
+ 'debit' => 'Betaalpas',
+ 'debit_filter' => '',
+ 'delete' => 'Verwijderen toestaan',
+ 'delete_confirmation' => 'Weet u zeker dat u deze verkoop wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt.',
+ 'delete_entire_sale' => 'Volledige verkoop verwijderen',
+ 'delete_successful' => 'Verkoop verwijderd.',
+ 'delete_unsuccessful' => 'Verkoop verwijderen mislukt.',
+ 'description_abbrv' => 'Beschr.',
+ 'discard' => 'Negeren',
+ 'discard_quote' => '',
+ 'discount' => 'Krtng',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% korting',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'Te betalen',
+ 'due_filter' => 'Te betalen',
+ 'edit' => 'Bewerken',
+ 'edit_item' => 'Artikel bewerken',
+ 'edit_sale' => 'Verkoop bewerken',
+ 'email_receipt' => 'E-mail kassabon',
+ 'employee' => 'Werknemer',
+ 'entry' => 'Vermelding',
+ 'error_editing_item' => 'Fout bij artikel bewerken',
+ 'find_or_scan_item' => 'Artikel zoeken of scannen',
+ 'find_or_scan_item_or_receipt' => 'Artikel of kassabon vinden of scannen',
+ 'giftcard' => 'Cadeaubon',
+ 'giftcard_balance' => 'Cadeaubon saldo',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Cadeaubonnummer',
+ 'group_by_category' => 'Groeperen op categorie',
+ 'group_by_type' => 'Groeperen op soort',
+ 'hsn' => 'HSN',
+ 'id' => 'Verkoop ID',
+ 'include_prices' => 'Prijzen opnemen?',
+ 'invoice' => 'Factuur',
+ 'invoice_confirm' => 'Deze factuur zal verzonden worden naar',
+ 'invoice_enable' => 'Factuurnummer',
+ 'invoice_filter' => 'Facturen',
+ 'invoice_no_email' => 'Deze klant bevat geen geldig e-mailadres.',
+ 'invoice_number' => 'Factuur #',
+ 'invoice_number_duplicate' => 'Factuurnummer {0} moet uniek zijn.',
+ 'invoice_sent' => 'Factuur verzonden naar',
+ 'invoice_total' => 'Factuurtotaal',
+ 'invoice_type_custom_invoice' => 'Aangepaste factuur (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Aangepaste belastingfactuur (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Factuur (invoice.php)',
+ 'invoice_type_tax_invoice' => 'Belastingfactuur (tax_invoice.php)',
+ 'invoice_unsent' => 'Fout bij verzenden van factuur naar',
+ 'invoice_update' => 'Opnieuw tellen',
+ 'item_insufficient_of_stock' => 'Artikel heeft onvoldoende voorraad.',
+ 'item_name' => 'Artikelnaam',
+ 'item_number' => 'Artikel #',
+ 'item_out_of_stock' => 'Artikel is niet voorradig.',
+ 'key_browser' => 'Handige snelkoppelingen',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Voltooi Offerte/Factuur zonder betaling',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => 'Openen in volledig scherm',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => 'Inzoomen',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => 'Uitzoomen',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => 'Huidige pagina afdrukken',
+ 'key_restore' => 'Originele weergave/grootte herstellen',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'Registratie modus',
+ 'must_enter_numeric' => 'Betaald bedrag moet een getal zijn.',
+ 'must_enter_numeric_giftcard' => 'Cadeaubonnummer moet een getal zijn.',
+ 'must_enter_reference_code' => 'Referentie-/ophaalnummer moet worden ingevoerd.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Nieuwe klant',
+ 'new_item' => 'Nieuw artikel',
+ 'no_description' => 'Geen beschrijving',
+ 'no_filter' => 'Alles',
+ 'no_items_in_cart' => 'Geen artikelen in de winkelwagen.',
+ 'no_sales_to_display' => 'Geen verkopen om te weergeven.',
+ 'none_selected' => 'Geen verko(o)p(en) geselecteerd om te verwijderen.',
+ 'nontaxed_ind' => ' ',
+ 'not_authorized' => 'Deze actie is niet geautoriseerd.',
+ 'one_or_multiple' => 'Verko(o)p(en)',
+ 'payment' => 'Betalingssoort',
+ 'payment_amount' => 'Bedrag',
+ 'payment_not_cover_total' => 'Betaalde bedrag moet groter of gelijk zijn aan totaal.',
+ 'payment_type' => 'Soort',
+ 'payments' => '',
+ 'payments_total' => 'Betalingstotaal',
+ 'price' => 'Prijs',
+ 'print_after_sale' => 'Afdrukken na verkoop',
+ 'quantity' => 'Hoeveelheid',
+ 'quantity_less_than_reorder_level' => 'Waarschuwing: gewenste hoeveelheid is lager dan het opnieuw bestellen niveau voor dit artikel.',
+ 'quantity_less_than_zero' => 'Waarschuwing: gewenste hoeveelheid is onvoldoende. De verkoop kan nog steeds verwerkt worden, maar controleer de voorraad.',
+ 'quantity_of_items' => 'Hoeveelheid van {0} artikelen',
+ 'quote' => 'Offerte',
+ 'quote_number' => 'Offertenummer',
+ 'quote_number_duplicate' => 'Offertenummer moet uniek zijn.',
+ 'quote_sent' => 'Offerte verzonden naar',
+ 'quote_unsent' => 'Offerte niet verzonden naar',
+ 'receipt' => 'Kassabon',
+ 'receipt_no_email' => 'Deze klant bevat geen geldig e-mailadres.',
+ 'receipt_number' => 'Verkoop #',
+ 'receipt_sent' => 'Kassabon verzonden naar',
+ 'receipt_unsent' => 'Kassabon niet verzonden naar',
+ 'reference_code' => 'Betalingsreferentiecode',
+ 'reference_code_invalid_characters' => 'De betalingsreferentiecode mag alleen letters en cijfers bevatten.',
+ 'reference_code_length_error' => 'De lengte van de betalingsreferentiecode is ongeldig.',
+ 'refund' => 'Terugbetaling soort',
+ 'register' => 'Verkoopregister',
+ 'remove_customer' => 'Klant verwijderen',
+ 'remove_discount' => '',
+ 'return' => 'Retourneren',
+ 'rewards' => 'Beloningspunten',
+ 'rewards_balance' => 'Beloningspunten balans',
+ 'rewards_package' => 'Beloningen',
+ 'rewards_remaining_balance' => 'Resterende beloningspunten waarde is ',
+ 'sale' => 'Verkoop',
+ 'sale_by_invoice' => 'Verkopen op factuur',
+ 'sale_for_customer' => 'Klant:',
+ 'sale_time' => 'Tijd',
+ 'sales_tax' => 'BTW',
+ 'sales_total' => '',
+ 'select_customer' => 'Klant selecteren',
+ 'send_invoice' => 'Factuur verzenden',
+ 'send_quote' => 'Offerte verzenden',
+ 'send_receipt' => 'Kassabon verzenden',
+ 'send_work_order' => 'Werkorder verzenden',
+ 'serial' => 'Serieel',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Factuur weergeven',
+ 'show_receipt' => 'Kassabon weergeven',
+ 'start_typing_customer_name' => 'Begin met typen klantgegevens...',
+ 'start_typing_item_name' => 'Begin met typen artikelnaam of scan streepjescode...',
+ 'stock' => 'Voorraad',
+ 'stock_location' => 'Voorraadlocatie',
+ 'sub_total' => 'Subtotaal',
+ 'successfully_deleted' => 'U heeft verwijderd',
+ 'successfully_restored' => 'U heeft hersteld',
+ 'successfully_suspended_sale' => 'Verkoop gesluimerd.',
+ 'successfully_updated' => 'Verkoop bijgewerkt.',
+ 'suspend_sale' => 'Sluimeren',
+ 'suspended_doc_id' => 'Document',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Gesluimerd',
+ 'table' => 'Tafel',
+ 'takings' => 'Dagelijkse verkopen',
+ 'tax' => 'Belasting',
+ 'tax_id' => 'Belasting ID',
+ 'tax_invoice' => 'Belastingfactuur',
+ 'tax_percent' => 'Belasting %',
+ 'taxed_ind' => 'B',
+ 'total' => 'Totaal',
+ 'total_tax_exclusive' => 'Belasting uitsluiten',
+ 'transaction_failed' => 'Verkooptransactie mislukt.',
+ 'unable_to_add_item' => 'Artikel toevoegen aan verkoop mislukt',
+ 'unsuccessfully_deleted' => 'Verko(o)p(en) verwijderen mislukt.',
+ 'unsuccessfully_restored' => 'Verko(o)p(en) herstellen mislukt.',
+ 'unsuccessfully_suspended_sale' => 'Verkoop sluimeren mislukt.',
+ 'unsuccessfully_updated' => 'Verkoop bijwerken mislukt.',
+ 'unsuspend' => 'Ontsluimeren',
+ 'unsuspend_and_delete' => 'Actie',
+ 'update' => 'Bijwerken',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'Werkorder',
+ 'work_order_number' => 'Werkordernummer',
+ 'work_order_number_duplicate' => 'Werkordernummer moet uniek zijn.',
+ 'work_order_sent' => 'Werkorder verzonden naar',
+ 'work_order_unsent' => 'Werkorder niet verzonden naar',
];
diff --git a/app/Language/pl/Config.php b/app/Language/pl/Config.php
index 1524112e5..8aed59197 100644
--- a/app/Language/pl/Config.php
+++ b/app/Language/pl/Config.php
@@ -1,331 +1,334 @@
"Adres Firmy",
- 'address_required' => "Adres Firmy jest polem wymaganym.",
- 'all_set' => "All file permissions are set correctly!",
- 'allow_duplicate_barcodes' => "Zezwalaj na duplikaty kodów kreskowych",
- 'apostrophe' => "apostrof",
- 'backup_button' => "Kopia zapasowa",
- 'backup_database' => "Kopia zapasowa bazy danych",
- 'barcode' => "Kod kreskowy",
- 'barcode_company' => "Nazwa firmy",
- 'barcode_configuration' => "Konfiguracja Kodów Kreskowych",
- 'barcode_content' => "Kontent Kodów Kreskowych",
- 'barcode_first_row' => "Wiersz 1",
- 'barcode_font' => "Czcionka",
- 'barcode_formats' => "",
- 'barcode_generate_if_empty' => "",
- 'barcode_height' => "",
- 'barcode_id' => "",
- 'barcode_info' => "",
- 'barcode_layout' => "",
- 'barcode_name' => "",
- 'barcode_number' => "",
- 'barcode_number_in_row' => "",
- 'barcode_page_cellspacing' => "",
- 'barcode_page_width' => "",
- 'barcode_price' => "",
- 'barcode_second_row' => "",
- 'barcode_third_row' => "",
- 'barcode_tooltip' => "",
- 'barcode_type' => "",
- 'barcode_width' => "",
- 'bottom' => "",
- 'cash_button' => "",
- 'cash_button_1' => "",
- 'cash_button_2' => "",
- 'cash_button_3' => "",
- 'cash_button_4' => "",
- 'cash_button_5' => "",
- 'cash_button_6' => "",
- 'cash_decimals' => "",
- 'cash_decimals_tooltip' => "",
- 'cash_rounding' => "",
- 'category_dropdown' => "",
- 'center' => "",
- 'change_apperance_tooltip' => "",
- 'comma' => "",
- 'company' => "",
- 'company_avatar' => "",
- 'company_change_image' => "",
- 'company_logo' => "",
- 'company_remove_image' => "",
- 'company_required' => "",
- 'company_select_image' => "",
- 'company_website_url' => "",
- 'country_codes' => "",
- 'country_codes_tooltip' => "",
- 'currency_code' => "",
- 'currency_decimals' => "",
- 'currency_symbol' => "",
- 'current_employee_only' => "",
- 'customer_reward' => "",
- 'customer_reward_duplicate' => "",
- 'customer_reward_enable' => "",
- 'customer_reward_invalid_chars' => "",
- 'customer_reward_required' => "",
- 'customer_sales_tax_support' => "",
- 'date_or_time_format' => "",
- 'datetimeformat' => "",
- 'decimal_point' => "",
- 'default_barcode_font_size_number' => "",
- 'default_barcode_font_size_required' => "",
- 'default_barcode_height_number' => "",
- 'default_barcode_height_required' => "",
- 'default_barcode_num_in_row_number' => "",
- 'default_barcode_num_in_row_required' => "",
- 'default_barcode_page_cellspacing_number' => "",
- 'default_barcode_page_cellspacing_required' => "",
- 'default_barcode_page_width_number' => "",
- 'default_barcode_page_width_required' => "",
- 'default_barcode_width_number' => "",
- 'default_barcode_width_required' => "",
- 'default_item_columns' => "",
- 'default_origin_tax_code' => "",
- 'default_receivings_discount' => "",
- 'default_receivings_discount_number' => "",
- 'default_receivings_discount_required' => "",
- 'default_sales_discount' => "",
- 'default_sales_discount_number' => "",
- 'default_sales_discount_required' => "",
- 'default_tax_category' => "",
- 'default_tax_code' => "",
- 'default_tax_jurisdiction' => "",
- 'default_tax_name_number' => "",
- 'default_tax_name_required' => "",
- 'default_tax_rate' => "",
- 'default_tax_rate_1' => "",
- 'default_tax_rate_2' => "",
- 'default_tax_rate_3' => "",
- 'default_tax_rate_number' => "",
- 'default_tax_rate_required' => "",
- 'derive_sale_quantity' => "",
- 'derive_sale_quantity_tooltip' => "",
- 'dinner_table' => "",
- 'dinner_table_duplicate' => "",
- 'dinner_table_enable' => "",
- 'dinner_table_invalid_chars' => "",
- 'dinner_table_required' => "",
- 'dot' => "",
- 'email' => "",
- 'email_configuration' => "",
- 'email_mailpath' => "",
- 'email_protocol' => "",
- 'email_receipt_check_behaviour' => "",
- 'email_receipt_check_behaviour_always' => "",
- 'email_receipt_check_behaviour_last' => "",
- 'email_receipt_check_behaviour_never' => "",
- 'email_smtp_crypto' => "",
- 'email_smtp_host' => "",
- 'email_smtp_pass' => "",
- 'email_smtp_port' => "",
- 'email_smtp_timeout' => "",
- 'email_smtp_user' => "",
- 'enable_avatar' => "",
- 'enable_avatar_tooltip' => "",
- 'enable_dropdown_tooltip' => "",
- 'enable_new_look' => "",
- 'enable_right_bar' => "",
- 'enable_right_bar_tooltip' => "",
- 'enforce_privacy' => "",
- 'enforce_privacy_tooltip' => "",
- 'fax' => "",
- 'file_perm' => "There are problems with file permissions please fix and reload this page.",
- 'financial_year' => "",
- 'financial_year_apr' => "",
- 'financial_year_aug' => "",
- 'financial_year_dec' => "",
- 'financial_year_feb' => "",
- 'financial_year_jan' => "",
- 'financial_year_jul' => "",
- 'financial_year_jun' => "",
- 'financial_year_mar' => "",
- 'financial_year_may' => "",
- 'financial_year_nov' => "",
- 'financial_year_oct' => "",
- 'financial_year_sep' => "",
- 'floating_labels' => "",
- 'gcaptcha_enable' => "",
- 'gcaptcha_secret_key' => "",
- 'gcaptcha_secret_key_required' => "",
- 'gcaptcha_site_key' => "",
- 'gcaptcha_site_key_required' => "",
- 'gcaptcha_tooltip' => "",
- 'general' => "",
- 'general_configuration' => "",
- 'giftcard_number' => "Numer Karty Podarunkowej",
- 'giftcard_random' => "",
- 'giftcard_series' => "",
- 'image_allowed_file_types' => "",
- 'image_max_height_tooltip' => "",
- 'image_max_size_tooltip' => "",
- 'image_max_width_tooltip' => "",
- 'image_restrictions' => "",
- 'include_hsn' => "",
- 'info' => "",
- 'info_configuration' => "",
- 'input_groups' => "",
- 'integrations' => "",
- 'integrations_configuration' => "",
- 'invoice' => "",
- 'invoice_configuration' => "",
- 'invoice_default_comments' => "",
- 'invoice_email_message' => "",
- 'invoice_enable' => "",
- 'invoice_printer' => "",
- 'invoice_type' => "",
- 'is_readable' => "",
- 'is_writable' => "is writable, but the permissions are higher than 750.",
- 'item_markup' => "",
- 'jsprintsetup_required' => "",
- 'language' => "",
- 'last_used_invoice_number' => "",
- 'last_used_quote_number' => "",
- 'last_used_work_order_number' => "",
- 'left' => "",
- 'license' => "",
- 'license_configuration' => "",
- 'line_sequence' => "",
- 'lines_per_page' => "",
- 'lines_per_page_number' => "",
- 'lines_per_page_required' => "",
- 'locale' => "",
- 'locale_configuration' => "",
- 'locale_info' => "",
- 'location' => "",
- 'location_configuration' => "",
- 'location_info' => "",
- 'login_form' => "",
- 'logout' => "",
- 'mailchimp' => "",
- 'mailchimp_api_key' => "",
- 'mailchimp_configuration' => "",
- 'mailchimp_key_successfully' => "",
- 'mailchimp_key_unsuccessfully' => "",
- 'mailchimp_lists' => "",
- 'mailchimp_tooltip' => "",
- 'message' => "",
- 'message_configuration' => "",
- 'msg_msg' => "",
- 'msg_msg_placeholder' => "",
- 'msg_pwd' => "",
- 'msg_pwd_required' => "",
- 'msg_src' => "",
- 'msg_src_required' => "",
- 'msg_uid' => "",
- 'msg_uid_required' => "",
- 'multi_pack_enabled' => "",
- 'no_risk' => "No security/vulnerability risks.",
- 'none' => "",
- 'notify_alignment' => "",
- 'number_format' => "",
- 'number_locale' => "",
- 'number_locale_invalid' => "",
- 'number_locale_required' => "",
- 'number_locale_tooltip' => "",
- 'os_timezone' => "",
- 'ospos_info' => "",
- 'payment_options_order' => "",
- 'perm_risk' => "Permissions higher than 750 leaves this software at risk.",
- 'phone' => "",
- 'phone_required' => "",
- 'print_bottom_margin' => "",
- 'print_bottom_margin_number' => "",
- 'print_bottom_margin_required' => "",
- 'print_delay_autoreturn' => "",
- 'print_delay_autoreturn_number' => "",
- 'print_delay_autoreturn_required' => "",
- 'print_footer' => "",
- 'print_header' => "",
- 'print_left_margin' => "",
- 'print_left_margin_number' => "",
- 'print_left_margin_required' => "",
- 'print_receipt_check_behaviour' => "",
- 'print_receipt_check_behaviour_always' => "",
- 'print_receipt_check_behaviour_last' => "",
- 'print_receipt_check_behaviour_never' => "",
- 'print_right_margin' => "",
- 'print_right_margin_number' => "",
- 'print_right_margin_required' => "",
- 'print_silently' => "",
- 'print_top_margin' => "",
- 'print_top_margin_number' => "",
- 'print_top_margin_required' => "",
- 'quantity_decimals' => "",
- 'quick_cash_enable' => "",
- 'quote_default_comments' => "",
- 'receipt' => "",
- 'receipt_category' => "",
- 'receipt_configuration' => "",
- 'receipt_default' => "",
- 'receipt_font_size' => "",
- 'receipt_font_size_number' => "",
- 'receipt_font_size_required' => "",
- 'receipt_info' => "",
- 'receipt_printer' => "",
- 'receipt_short' => "",
- 'receipt_show_company_name' => "",
- 'receipt_show_description' => "",
- 'receipt_show_serialnumber' => "",
- 'receipt_show_tax_ind' => "",
- 'receipt_show_taxes' => "",
- 'receipt_show_total_discount' => "",
- 'receipt_template' => "",
- 'receiving_calculate_average_price' => "",
- 'recv_invoice_format' => "",
- 'register_mode_default' => "",
- 'report_an_issue' => "",
- 'return_policy_required' => "",
- 'reward' => "",
- 'reward_configuration' => "",
- 'right' => "",
- 'sales_invoice_format' => "",
- 'sales_quote_format' => "",
- 'saved_successfully' => "",
- 'saved_unsuccessfully' => "",
- 'security_issue' => "Security Vulnerability Warning",
- 'server_notice' => "Please use the below info for issue reporting.",
- 'service_charge' => "",
- 'show_due_enable' => "",
- 'show_office_group' => "",
- 'statistics' => "",
- 'statistics_tooltip' => "",
- 'stock_location' => "",
- 'stock_location_duplicate' => "",
- 'stock_location_invalid_chars' => "",
- 'stock_location_required' => "",
- 'suggestions_fifth_column' => "",
- 'suggestions_first_column' => "",
- 'suggestions_fourth_column' => "",
- 'suggestions_layout' => "",
- 'suggestions_second_column' => "",
- 'suggestions_third_column' => "",
- 'system_conf' => "Setup & Conf",
- 'system_info' => "System Info",
- 'table' => "",
- 'table_configuration' => "",
- 'takings_printer' => "",
- 'tax' => "",
- 'tax_category' => "",
- 'tax_category_duplicate' => "",
- 'tax_category_invalid_chars' => "",
- 'tax_category_required' => "",
- 'tax_category_used' => "",
- 'tax_configuration' => "",
- 'tax_decimals' => "",
- 'tax_id' => "",
- 'tax_included' => "",
- 'theme' => "",
- 'theme_preview' => "",
- 'thousands_separator' => "",
- 'timezone' => "",
- 'timezone_error' => "",
- 'top' => "",
- 'use_destination_based_tax' => "",
- 'user_timezone' => "",
- 'website' => "",
- 'wholesale_markup' => "",
- 'work_order_enable' => "",
- 'work_order_format' => "",
+ 'address' => 'Adres Firmy',
+ 'address_required' => 'Adres Firmy jest polem wymaganym.',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => 'Zezwalaj na duplikaty kodów kreskowych',
+ 'apostrophe' => 'apostrof',
+ 'backup_button' => 'Kopia zapasowa',
+ 'backup_database' => 'Kopia zapasowa bazy danych',
+ 'barcode' => 'Kod kreskowy',
+ 'barcode_company' => 'Nazwa firmy',
+ 'barcode_configuration' => 'Konfiguracja Kodów Kreskowych',
+ 'barcode_content' => 'Kontent Kodów Kreskowych',
+ 'barcode_first_row' => 'Wiersz 1',
+ 'barcode_font' => 'Czcionka',
+ 'barcode_formats' => '',
+ 'barcode_generate_if_empty' => '',
+ 'barcode_height' => '',
+ 'barcode_id' => '',
+ 'barcode_info' => '',
+ 'barcode_layout' => '',
+ 'barcode_name' => '',
+ 'barcode_number' => '',
+ 'barcode_number_in_row' => '',
+ 'barcode_page_cellspacing' => '',
+ 'barcode_page_width' => '',
+ 'barcode_price' => '',
+ 'barcode_second_row' => '',
+ 'barcode_third_row' => '',
+ 'barcode_tooltip' => '',
+ 'barcode_type' => '',
+ 'barcode_width' => '',
+ 'bottom' => '',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => '',
+ 'cash_decimals_tooltip' => '',
+ 'cash_rounding' => '',
+ 'category_dropdown' => '',
+ 'center' => '',
+ 'change_apperance_tooltip' => '',
+ 'comma' => '',
+ 'company' => '',
+ 'company_avatar' => '',
+ 'company_change_image' => '',
+ 'company_logo' => '',
+ 'company_remove_image' => '',
+ 'company_required' => '',
+ 'company_select_image' => '',
+ 'company_website_url' => '',
+ 'country_codes' => '',
+ 'country_codes_tooltip' => '',
+ 'currency_code' => '',
+ 'currency_decimals' => '',
+ 'currency_symbol' => '',
+ 'current_employee_only' => '',
+ 'customer_reward' => '',
+ 'customer_reward_duplicate' => '',
+ 'customer_reward_enable' => '',
+ 'customer_reward_invalid_chars' => '',
+ 'customer_reward_required' => '',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => '',
+ 'datetimeformat' => '',
+ 'decimal_point' => '',
+ 'default_barcode_font_size_number' => '',
+ 'default_barcode_font_size_required' => '',
+ 'default_barcode_height_number' => '',
+ 'default_barcode_height_required' => '',
+ 'default_barcode_num_in_row_number' => '',
+ 'default_barcode_num_in_row_required' => '',
+ 'default_barcode_page_cellspacing_number' => '',
+ 'default_barcode_page_cellspacing_required' => '',
+ 'default_barcode_page_width_number' => '',
+ 'default_barcode_page_width_required' => '',
+ 'default_barcode_width_number' => '',
+ 'default_barcode_width_required' => '',
+ 'default_item_columns' => '',
+ 'default_origin_tax_code' => '',
+ 'default_receivings_discount' => '',
+ 'default_receivings_discount_number' => '',
+ 'default_receivings_discount_required' => '',
+ 'default_sales_discount' => '',
+ 'default_sales_discount_number' => '',
+ 'default_sales_discount_required' => '',
+ 'default_tax_category' => '',
+ 'default_tax_code' => '',
+ 'default_tax_jurisdiction' => '',
+ 'default_tax_name_number' => '',
+ 'default_tax_name_required' => '',
+ 'default_tax_rate' => '',
+ 'default_tax_rate_1' => '',
+ 'default_tax_rate_2' => '',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => '',
+ 'default_tax_rate_required' => '',
+ 'derive_sale_quantity' => '',
+ 'derive_sale_quantity_tooltip' => '',
+ 'dinner_table' => '',
+ 'dinner_table_duplicate' => '',
+ 'dinner_table_enable' => '',
+ 'dinner_table_invalid_chars' => '',
+ 'dinner_table_required' => '',
+ 'dot' => '',
+ 'email' => '',
+ 'email_configuration' => '',
+ 'email_mailpath' => '',
+ 'email_protocol' => '',
+ 'email_receipt_check_behaviour' => '',
+ 'email_receipt_check_behaviour_always' => '',
+ 'email_receipt_check_behaviour_last' => '',
+ 'email_receipt_check_behaviour_never' => '',
+ 'email_smtp_crypto' => '',
+ 'email_smtp_host' => '',
+ 'email_smtp_pass' => '',
+ 'email_smtp_port' => '',
+ 'email_smtp_timeout' => '',
+ 'email_smtp_user' => '',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => '',
+ 'enforce_privacy_tooltip' => '',
+ 'fax' => '',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => '',
+ 'financial_year_apr' => '',
+ 'financial_year_aug' => '',
+ 'financial_year_dec' => '',
+ 'financial_year_feb' => '',
+ 'financial_year_jan' => '',
+ 'financial_year_jul' => '',
+ 'financial_year_jun' => '',
+ 'financial_year_mar' => '',
+ 'financial_year_may' => '',
+ 'financial_year_nov' => '',
+ 'financial_year_oct' => '',
+ 'financial_year_sep' => '',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => '',
+ 'gcaptcha_secret_key' => '',
+ 'gcaptcha_secret_key_required' => '',
+ 'gcaptcha_site_key' => '',
+ 'gcaptcha_site_key_required' => '',
+ 'gcaptcha_tooltip' => '',
+ 'general' => '',
+ 'general_configuration' => '',
+ 'giftcard_number' => 'Numer Karty Podarunkowej',
+ 'giftcard_random' => '',
+ 'giftcard_series' => '',
+ 'image_allowed_file_types' => '',
+ 'image_max_height_tooltip' => '',
+ 'image_max_size_tooltip' => '',
+ 'image_max_width_tooltip' => '',
+ 'image_restrictions' => '',
+ 'include_hsn' => '',
+ 'info' => '',
+ 'info_configuration' => '',
+ 'input_groups' => '',
+ 'integrations' => '',
+ 'integrations_configuration' => '',
+ 'invoice' => '',
+ 'invoice_configuration' => '',
+ 'invoice_default_comments' => '',
+ 'invoice_email_message' => '',
+ 'invoice_enable' => '',
+ 'invoice_printer' => '',
+ 'invoice_type' => '',
+ 'is_readable' => '',
+ 'is_writable' => 'is writable, but the permissions are higher than 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => '',
+ 'language' => '',
+ 'last_used_invoice_number' => '',
+ 'last_used_quote_number' => '',
+ 'last_used_work_order_number' => '',
+ 'left' => '',
+ 'license' => '',
+ 'license_configuration' => '',
+ 'line_sequence' => '',
+ 'lines_per_page' => '',
+ 'lines_per_page_number' => '',
+ 'lines_per_page_required' => '',
+ 'locale' => '',
+ 'locale_configuration' => '',
+ 'locale_info' => '',
+ 'location' => '',
+ 'location_configuration' => '',
+ 'location_info' => '',
+ 'login_form' => '',
+ 'logout' => '',
+ 'mailchimp' => '',
+ 'mailchimp_api_key' => '',
+ 'mailchimp_configuration' => '',
+ 'mailchimp_key_successfully' => '',
+ 'mailchimp_key_unsuccessfully' => '',
+ 'mailchimp_lists' => '',
+ 'mailchimp_tooltip' => '',
+ 'message' => '',
+ 'message_configuration' => '',
+ 'msg_msg' => '',
+ 'msg_msg_placeholder' => '',
+ 'msg_pwd' => '',
+ 'msg_pwd_required' => '',
+ 'msg_src' => '',
+ 'msg_src_required' => '',
+ 'msg_uid' => '',
+ 'msg_uid_required' => '',
+ 'multi_pack_enabled' => '',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => '',
+ 'notify_alignment' => '',
+ 'number_format' => '',
+ 'number_locale' => '',
+ 'number_locale_invalid' => '',
+ 'number_locale_required' => '',
+ 'number_locale_tooltip' => '',
+ 'os_timezone' => '',
+ 'ospos_info' => '',
+ 'payment_options_order' => '',
+ 'payment_reference_code_length_limits' => 'Kod referencyjny płatności
Limity długości',
+ 'payment_reference_code_length_max_label' => 'Maks',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => 'Permissions higher than 750 leaves this software at risk.',
+ 'phone' => '',
+ 'phone_required' => '',
+ 'print_bottom_margin' => '',
+ 'print_bottom_margin_number' => '',
+ 'print_bottom_margin_required' => '',
+ 'print_delay_autoreturn' => '',
+ 'print_delay_autoreturn_number' => '',
+ 'print_delay_autoreturn_required' => '',
+ 'print_footer' => '',
+ 'print_header' => '',
+ 'print_left_margin' => '',
+ 'print_left_margin_number' => '',
+ 'print_left_margin_required' => '',
+ 'print_receipt_check_behaviour' => '',
+ 'print_receipt_check_behaviour_always' => '',
+ 'print_receipt_check_behaviour_last' => '',
+ 'print_receipt_check_behaviour_never' => '',
+ 'print_right_margin' => '',
+ 'print_right_margin_number' => '',
+ 'print_right_margin_required' => '',
+ 'print_silently' => '',
+ 'print_top_margin' => '',
+ 'print_top_margin_number' => '',
+ 'print_top_margin_required' => '',
+ 'quantity_decimals' => '',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => '',
+ 'receipt' => '',
+ 'receipt_category' => '',
+ 'receipt_configuration' => '',
+ 'receipt_default' => '',
+ 'receipt_font_size' => '',
+ 'receipt_font_size_number' => '',
+ 'receipt_font_size_required' => '',
+ 'receipt_info' => '',
+ 'receipt_printer' => '',
+ 'receipt_short' => '',
+ 'receipt_show_company_name' => '',
+ 'receipt_show_description' => '',
+ 'receipt_show_serialnumber' => '',
+ 'receipt_show_tax_ind' => '',
+ 'receipt_show_taxes' => '',
+ 'receipt_show_total_discount' => '',
+ 'receipt_template' => '',
+ 'receiving_calculate_average_price' => '',
+ 'recv_invoice_format' => '',
+ 'register_mode_default' => '',
+ 'report_an_issue' => '',
+ 'return_policy_required' => '',
+ 'reward' => '',
+ 'reward_configuration' => '',
+ 'right' => '',
+ 'sales_invoice_format' => '',
+ 'sales_quote_format' => '',
+ 'saved_successfully' => '',
+ 'saved_unsuccessfully' => '',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Please use the below info for issue reporting.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => '',
+ 'statistics' => '',
+ 'statistics_tooltip' => '',
+ 'stock_location' => '',
+ 'stock_location_duplicate' => '',
+ 'stock_location_invalid_chars' => '',
+ 'stock_location_required' => '',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => '',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => '',
+ 'suggestions_second_column' => '',
+ 'suggestions_third_column' => '',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => '',
+ 'table_configuration' => '',
+ 'takings_printer' => '',
+ 'tax' => '',
+ 'tax_category' => '',
+ 'tax_category_duplicate' => '',
+ 'tax_category_invalid_chars' => '',
+ 'tax_category_required' => '',
+ 'tax_category_used' => '',
+ 'tax_configuration' => '',
+ 'tax_decimals' => '',
+ 'tax_id' => '',
+ 'tax_included' => '',
+ 'theme' => '',
+ 'theme_preview' => '',
+ 'thousands_separator' => '',
+ 'timezone' => '',
+ 'timezone_error' => '',
+ 'top' => '',
+ 'use_destination_based_tax' => '',
+ 'user_timezone' => '',
+ 'website' => '',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => '',
+ 'work_order_format' => '',
];
diff --git a/app/Language/pl/Login.php b/app/Language/pl/Login.php
index 99b359e9a..2c1fa8c32 100644
--- a/app/Language/pl/Login.php
+++ b/app/Language/pl/Login.php
@@ -1,25 +1,30 @@
"Nie jestem robotem.",
- "go" => "Idź",
- "invalid_gcaptcha" => "Udowodnij, że nie jesteś robotem.",
- "invalid_installation" => "Instalacja nie jest poprawna, sprawdź swój plik php.ini.",
- "invalid_username_and_password" => "Niepoprawna nazwa użytkownika i/lub hasło.",
- "login" => "Zaloguj",
- "logout" => "Wyloguj",
- "migration_needed" => "Migracja bazy danych do {0} zacznie się po zalogowaniu.",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "Hasło",
- "required_username" => "",
- "username" => "Nazwa użytkownika",
- "welcome" => "Witaj w {0}!",
+ "gcaptcha" => "Nie jestem robotem.",
+ "go" => "Idź",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Udowodnij, że nie jesteś robotem.",
+ "invalid_installation" => "Instalacja nie jest poprawna, sprawdź swój plik php.ini.",
+ "invalid_username_and_password" => "Niepoprawna nazwa użytkownika i/lub hasło.",
+ "login" => "Zaloguj",
+ "logout" => "Wyloguj",
+ "migrating_database" => "Migracja bazy danych",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "Baza danych została pomyślnie zmigrowana!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "Migracja bazy danych do {0} zacznie się po zalogowaniu.",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "Hasło",
+ "required_username" => "",
+ "username" => "Nazwa użytkownika",
+ "welcome" => "Witaj w {0}!"
];
diff --git a/app/Language/pl/Sales.php b/app/Language/pl/Sales.php
index 170380a7d..c7f468202 100644
--- a/app/Language/pl/Sales.php
+++ b/app/Language/pl/Sales.php
@@ -1,231 +1,235 @@
"Dostępne punkty",
- 'rewards_package' => "",
- 'rewards_remaining_balance' => "",
- 'account_number' => "",
- 'add_payment' => "",
- 'amount_due' => "",
- 'amount_tendered' => "",
- 'authorized_signature' => "",
- 'cancel_sale' => "",
- 'cash' => "",
- 'cash_1' => "",
- 'cash_2' => "",
- 'cash_3' => "",
- 'cash_4' => "",
- 'cash_adjustment' => "",
- 'cash_deposit' => "",
- 'cash_filter' => "",
- 'change_due' => "",
- 'change_price' => "",
- 'check' => "",
- 'check_balance' => "",
- 'check_filter' => "",
- 'close' => "",
- 'comment' => "",
- 'comments' => "",
- 'company_name' => "",
- 'complete' => "",
- 'complete_sale' => "",
- 'confirm_cancel_sale' => "",
- 'confirm_delete' => "",
- 'confirm_restore' => "",
- 'credit' => "",
- 'credit_deposit' => "",
- 'credit_filter' => "",
- 'current_table' => "",
- 'customer' => "",
- 'customer_address' => "",
- 'customer_discount' => "",
- 'customer_email' => "",
- 'customer_location' => "",
- 'customer_mailchimp_status' => "",
- 'customer_optional' => "",
- 'customer_required' => "",
- 'customer_total' => "",
- 'customer_total_spent' => "",
- 'daily_sales' => "",
- 'date' => "",
- 'date_range' => "",
- 'date_required' => "",
- 'date_type' => "",
- 'debit' => "",
- 'debit_filter' => "",
- 'delete' => "",
- 'delete_confirmation' => "",
- 'delete_entire_sale' => "",
- 'delete_successful' => "",
- 'delete_unsuccessful' => "",
- 'description_abbrv' => "",
- 'discard' => "",
- 'discard_quote' => "",
- 'discount' => "",
- 'discount_included' => "",
- 'discount_short' => "",
- 'due' => "",
- 'due_filter' => "",
- 'edit' => "",
- 'edit_item' => "",
- 'edit_sale' => "",
- 'email_receipt' => "",
- 'employee' => "",
- 'entry' => "",
- 'error_editing_item' => "",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- 'find_or_scan_item' => "",
- 'find_or_scan_item_or_receipt' => "",
- 'giftcard' => "Karta Podarunkowa",
- 'giftcard_balance' => "",
- 'giftcard_filter' => "",
- 'giftcard_number' => "Numer Karty Podarunkowej",
- 'group_by_category' => "",
- 'group_by_type' => "",
- 'hsn' => "",
- 'id' => "",
- 'include_prices' => "",
- 'invoice' => "",
- 'invoice_confirm' => "",
- 'invoice_enable' => "",
- 'invoice_filter' => "",
- 'invoice_no_email' => "",
- 'invoice_number' => "",
- 'invoice_number_duplicate' => "",
- 'invoice_sent' => "",
- 'invoice_total' => "",
- 'invoice_type_custom_invoice' => "",
- 'invoice_type_custom_tax_invoice' => "",
- 'invoice_type_invoice' => "",
- 'invoice_type_tax_invoice' => "",
- 'invoice_unsent' => "",
- 'invoice_update' => "",
- 'item_insufficient_of_stock' => "",
- 'item_name' => "",
- 'item_number' => "",
- 'item_out_of_stock' => "",
- 'key_browser' => "",
- 'key_cancel' => "Cancels Current Quote/Invoice/Sale",
- 'key_customer_search' => "Customer Search",
- 'key_finish_quote' => "Finish Quote/Invoice witdout payment",
- 'key_finish_sale' => "Add Payment and Complete Invoice/Sale",
- 'key_full' => "",
- 'key_function' => "Function",
- 'key_help' => "Shortcuts",
- 'key_help_modal' => "Open Shortcuts Window",
- 'key_in' => "",
- 'key_item_search' => "Item Search",
- 'key_out' => "",
- 'key_payment' => "Add Payment",
- 'key_print' => "",
- 'key_restore' => "",
- 'key_search' => "",
- 'key_suspend' => "Suspend Current Sale",
- 'key_suspended' => "Show Suspended Sales",
- 'key_system' => "",
- 'key_tendered' => "Edit Amount Tendered",
- 'key_title' => "Sales Keyboard Shortcuts",
- 'mc' => "",
- 'mode' => "",
- 'must_enter_numeric' => "",
- 'must_enter_numeric_giftcard' => "",
- 'new_customer' => "",
- 'new_item' => "",
- 'no_description' => "",
- 'no_filter' => "",
- 'no_items_in_cart' => "",
- 'no_sales_to_display' => "",
- 'none_selected' => "",
- 'nontaxed_ind' => "",
- 'not_authorized' => "",
- 'one_or_multiple' => "",
- 'payment' => "",
- 'payment_amount' => "",
- 'payment_not_cover_total' => "",
- 'payment_type' => "",
- 'payments' => "",
- 'payments_total' => "",
- 'price' => "",
- 'print_after_sale' => "",
- 'quantity' => "Ilość",
- 'quantity_less_than_reorder_level' => "",
- 'quantity_less_than_zero' => "",
- 'quantity_of_items' => "",
- 'quote' => "",
- 'quote_number' => "",
- 'quote_number_duplicate' => "",
- 'quote_sent' => "",
- 'quote_unsent' => "",
- 'receipt' => "",
- 'receipt_no_email' => "",
- 'receipt_number' => "",
- 'receipt_sent' => "",
- 'receipt_unsent' => "",
- 'refund' => "",
- 'register' => "",
- 'remove_customer' => "",
- 'remove_discount' => "",
- 'return' => "",
- 'rewards' => "",
- 'rewards_balance' => "",
- 'sale' => "",
- 'sale_by_invoice' => "",
- 'sale_for_customer' => "",
- 'sale_time' => "",
- 'sales_tax' => "",
- 'sales_total' => "",
- 'select_customer' => "",
- 'send_invoice' => "",
- 'send_quote' => "",
- 'send_receipt' => "",
- 'send_work_order' => "",
- 'serial' => "",
- 'service_charge' => "",
- 'show_due' => "",
- 'show_invoice' => "",
- 'show_receipt' => "",
- 'start_typing_customer_name' => "",
- 'start_typing_item_name' => "",
- 'stock' => "",
- 'stock_location' => "",
- 'sub_total' => "",
- 'successfully_deleted' => "",
- 'successfully_restored' => "",
- 'successfully_suspended_sale' => "",
- 'successfully_updated' => "",
- 'suspend_sale' => "",
- 'suspended_doc_id' => "",
- 'suspended_sale_id' => "",
- 'suspended_sales' => "",
- 'table' => "",
- 'takings' => "",
- 'tax' => "",
- 'tax_id' => "",
- 'tax_invoice' => "",
- 'tax_percent' => "",
- 'taxed_ind' => "",
- 'total' => "",
- 'total_tax_exclusive' => "",
- 'transaction_failed' => "",
- 'unable_to_add_item' => "",
- 'unsuccessfully_deleted' => "",
- 'unsuccessfully_restored' => "",
- 'unsuccessfully_suspended_sale' => "",
- 'unsuccessfully_updated' => "",
- 'unsuspend' => "",
- 'unsuspend_and_delete' => "",
- 'update' => "",
- 'upi' => "",
- 'visa' => "",
- 'wholesale' => "",
- 'work_order' => "",
- 'work_order_number' => "",
- 'work_order_number_duplicate' => "",
- 'work_order_sent' => "",
- 'work_order_unsent' => "",
+ 'account_number' => '',
+ 'add_payment' => '',
+ 'amount_due' => '',
+ 'amount_tendered' => '',
+ 'authorized_signature' => '',
+ 'cancel_sale' => '',
+ 'cash' => '',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => '',
+ 'cash_deposit' => '',
+ 'cash_filter' => '',
+ 'change_due' => '',
+ 'change_price' => '',
+ 'check' => '',
+ 'check_balance' => '',
+ 'check_filter' => '',
+ 'close' => '',
+ 'comment' => '',
+ 'comments' => '',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => '',
+ 'confirm_cancel_sale' => '',
+ 'confirm_delete' => '',
+ 'confirm_restore' => '',
+ 'credit' => '',
+ 'credit_deposit' => '',
+ 'credit_filter' => '',
+ 'current_table' => '',
+ 'customer' => '',
+ 'customer_address' => '',
+ 'customer_discount' => '',
+ 'customer_email' => '',
+ 'customer_location' => '',
+ 'customer_mailchimp_status' => '',
+ 'customer_optional' => '',
+ 'customer_required' => '',
+ 'customer_total' => '',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Dostępne punkty',
+ 'daily_sales' => '',
+ 'date' => '',
+ 'date_range' => '',
+ 'date_required' => '',
+ 'date_type' => '',
+ 'debit' => '',
+ 'debit_filter' => '',
+ 'delete' => '',
+ 'delete_confirmation' => '',
+ 'delete_entire_sale' => '',
+ 'delete_successful' => '',
+ 'delete_unsuccessful' => '',
+ 'description_abbrv' => '',
+ 'discard' => '',
+ 'discard_quote' => '',
+ 'discount' => '',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '',
+ 'due' => '',
+ 'due_filter' => '',
+ 'edit' => '',
+ 'edit_item' => '',
+ 'edit_sale' => '',
+ 'email_receipt' => '',
+ 'employee' => '',
+ 'entry' => '',
+ 'error_editing_item' => '',
+ 'find_or_scan_item' => '',
+ 'find_or_scan_item_or_receipt' => '',
+ 'giftcard' => 'Karta Podarunkowa',
+ 'giftcard_balance' => '',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Numer Karty Podarunkowej',
+ 'group_by_category' => '',
+ 'group_by_type' => '',
+ 'hsn' => '',
+ 'id' => '',
+ 'include_prices' => '',
+ 'invoice' => '',
+ 'invoice_confirm' => '',
+ 'invoice_enable' => '',
+ 'invoice_filter' => '',
+ 'invoice_no_email' => '',
+ 'invoice_number' => '',
+ 'invoice_number_duplicate' => '',
+ 'invoice_sent' => '',
+ 'invoice_total' => '',
+ 'invoice_type_custom_invoice' => '',
+ 'invoice_type_custom_tax_invoice' => '',
+ 'invoice_type_invoice' => '',
+ 'invoice_type_tax_invoice' => '',
+ 'invoice_unsent' => '',
+ 'invoice_update' => '',
+ 'item_insufficient_of_stock' => '',
+ 'item_name' => '',
+ 'item_number' => '',
+ 'item_out_of_stock' => '',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => '',
+ 'must_enter_numeric' => '',
+ 'must_enter_numeric_giftcard' => '',
+ 'must_enter_reference_code' => 'Należy podać numer referencyjny/pobierania.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => '',
+ 'new_item' => '',
+ 'no_description' => '',
+ 'no_filter' => '',
+ 'no_items_in_cart' => '',
+ 'no_sales_to_display' => '',
+ 'none_selected' => '',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => '',
+ 'one_or_multiple' => '',
+ 'payment' => '',
+ 'payment_amount' => '',
+ 'payment_not_cover_total' => '',
+ 'payment_type' => '',
+ 'payments' => '',
+ 'payments_total' => '',
+ 'price' => '',
+ 'print_after_sale' => '',
+ 'quantity' => 'Ilość',
+ 'quantity_less_than_reorder_level' => '',
+ 'quantity_less_than_zero' => '',
+ 'quantity_of_items' => '',
+ 'quote' => '',
+ 'quote_number' => '',
+ 'quote_number_duplicate' => '',
+ 'quote_sent' => '',
+ 'quote_unsent' => '',
+ 'receipt' => '',
+ 'receipt_no_email' => '',
+ 'receipt_number' => '',
+ 'receipt_sent' => '',
+ 'receipt_unsent' => '',
+ 'reference_code' => 'Kod referencyjny płatności',
+ 'reference_code_invalid_characters' => 'Kod referencyjny może zawierać tylko litery i cyfry.',
+ 'reference_code_length_error' => 'Długość kodu referencyjnego jest nieprawidłowa.',
+ 'refund' => '',
+ 'register' => '',
+ 'remove_customer' => '',
+ 'remove_discount' => '',
+ 'return' => '',
+ 'rewards' => '',
+ 'rewards_balance' => '',
+ 'rewards_package' => '',
+ 'rewards_remaining_balance' => '',
+ 'sale' => '',
+ 'sale_by_invoice' => '',
+ 'sale_for_customer' => '',
+ 'sale_time' => '',
+ 'sales_tax' => '',
+ 'sales_total' => '',
+ 'select_customer' => '',
+ 'send_invoice' => '',
+ 'send_quote' => '',
+ 'send_receipt' => '',
+ 'send_work_order' => '',
+ 'serial' => '',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => '',
+ 'show_receipt' => '',
+ 'start_typing_customer_name' => '',
+ 'start_typing_item_name' => '',
+ 'stock' => '',
+ 'stock_location' => '',
+ 'sub_total' => '',
+ 'successfully_deleted' => '',
+ 'successfully_restored' => '',
+ 'successfully_suspended_sale' => '',
+ 'successfully_updated' => '',
+ 'suspend_sale' => '',
+ 'suspended_doc_id' => '',
+ 'suspended_sale_id' => '',
+ 'suspended_sales' => '',
+ 'table' => '',
+ 'takings' => '',
+ 'tax' => '',
+ 'tax_id' => '',
+ 'tax_invoice' => '',
+ 'tax_percent' => '',
+ 'taxed_ind' => '',
+ 'total' => '',
+ 'total_tax_exclusive' => '',
+ 'transaction_failed' => '',
+ 'unable_to_add_item' => '',
+ 'unsuccessfully_deleted' => '',
+ 'unsuccessfully_restored' => '',
+ 'unsuccessfully_suspended_sale' => '',
+ 'unsuccessfully_updated' => '',
+ 'unsuspend' => '',
+ 'unsuspend_and_delete' => '',
+ 'update' => '',
+ 'upi' => '',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => '',
+ 'work_order_number' => '',
+ 'work_order_number_duplicate' => '',
+ 'work_order_sent' => '',
+ 'work_order_unsent' => '',
];
diff --git a/app/Language/pt-BR/Config.php b/app/Language/pt-BR/Config.php
index e407a212f..b21b311ee 100644
--- a/app/Language/pt-BR/Config.php
+++ b/app/Language/pt-BR/Config.php
@@ -1,332 +1,335 @@
"Endereço da empresa",
- "address_required" => "Endereço da empresa é um campo obrigatório.",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "Permitir códigos de barras duplicados",
- "apostrophe" => "apóstrofe",
- "backup_button" => "Cópia de Segurança",
- "backup_database" => "Cópia de Segurança",
- "barcode" => "Código de Barras",
- "barcode_company" => "Nome da Empresa",
- "barcode_configuration" => "Configuração do Código de Barras",
- "barcode_content" => "Conteúdo do código de barras",
- "barcode_first_row" => "Linha 1",
- "barcode_font" => "Fonte",
- "barcode_formats" => "Formatos de entrada",
- "barcode_generate_if_empty" => "Gerar se vazio.",
- "barcode_height" => "Altura (px)",
- "barcode_id" => "Item Id/Nome",
- "barcode_info" => "Informação de configuração de códigos de barras",
- "barcode_layout" => "Layout Código de barras",
- "barcode_name" => "Nome",
- "barcode_number" => "Código de Barras",
- "barcode_number_in_row" => "Número de linhas",
- "barcode_page_cellspacing" => "Espaçamento das células na página de exibição.",
- "barcode_page_width" => "Largura da página de exibição",
- "barcode_price" => "Preço",
- "barcode_second_row" => "Linha 2",
- "barcode_third_row" => "Linha 3",
- "barcode_tooltip" => "Aviso: esse recurso pode fazer com que itens duplicados sejam importados ou criados. Não use se você não quiser códigos de barras duplicados.",
- "barcode_type" => "Tipo de código de barras",
- "barcode_width" => "Largura (px)",
- "bottom" => "Inferior",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Decimais da moeda",
- "cash_decimals_tooltip" => "Se os decimais de caixa e os decimais de moeda forem os mesmos, não haverá arredondamento de caixa.",
- "cash_rounding" => "Arredondamento de Caixa",
- "category_dropdown" => "Mostrar Categoria como campo suspenso",
- "center" => "Centro",
- "change_apperance_tooltip" => "",
- "comma" => "Vírgula",
- "company" => "Nome da empresa",
- "company_avatar" => "",
- "company_change_image" => "Trocar imagem",
- "company_logo" => "Logo da empresa",
- "company_remove_image" => "Remover imagem",
- "company_required" => "Nome da empresa é requerido",
- "company_select_image" => "Selecionar imagem",
- "company_website_url" => "Site da empresa não é uma URL válida (http://...).",
- "country_codes" => "Código do país",
- "country_codes_tooltip" => "Vírgula lista de códigos de país separado para pesquisa de endereços pelo nome.",
- "currency_code" => "Código da moeda",
- "currency_decimals" => "Decimais da moeda",
- "currency_symbol" => "Simbolo moeda",
- "current_employee_only" => "",
- "customer_reward" => "Recompensa",
- "customer_reward_duplicate" => "Recompensa deve ser única.",
- "customer_reward_enable" => "Ativar recompensas do cliente",
- "customer_reward_invalid_chars" => "Recompensa não pode conter '_'",
- "customer_reward_required" => "Recompensa é um campo obrigatório",
- "customer_sales_tax_support" => "Suporte ao imposto sobre vendas do cliente",
- "date_or_time_format" => "Filtro de data e hora",
- "datetimeformat" => "Formato da data e hora",
- "decimal_point" => "Ponto decimal",
- "default_barcode_font_size_number" => "O tamanho da fonte do código de barras padrão deve ser um número.",
- "default_barcode_font_size_required" => "O tamanho da fonte do código de barras padrão é um campo obrigatório.",
- "default_barcode_height_number" => "A altura do código de barras padrão deve ser um número.",
- "default_barcode_height_required" => "A altura do código de barras padrão é um campo obrigatório.",
- "default_barcode_num_in_row_number" => "O número de código de barras padrão na linha deve ser um número.",
- "default_barcode_num_in_row_required" => "O número de código de barras padrão na linha é um campo obrigatório.",
- "default_barcode_page_cellspacing_number" => "O espaçamento das células na página de código de barras padrão deve ser um número.",
- "default_barcode_page_cellspacing_required" => "O espaçamento das células na página de código de barras padrão é um campo obrigatório.",
- "default_barcode_page_width_number" => "A largura da página de código de barras padrão deve ser um número.",
- "default_barcode_page_width_required" => "A largura da página de código de barras padrão é um campo obrigatório.",
- "default_barcode_width_number" => "A largura do código de barras padrão deve ser um número.",
- "default_barcode_width_required" => "A largura do código de barras padrão é um campo obrigatório.",
- "default_item_columns" => "Colunas de itens visíveis padrão",
- "default_origin_tax_code" => "Código de imposto de origem padrão",
- "default_receivings_discount" => "Desconto de recebimento padrão",
- "default_receivings_discount_number" => "Desconto de recebimento padrão deve ser um número.",
- "default_receivings_discount_required" => "Desconto de recebimento padrão é um campo obrigatório.",
- "default_sales_discount" => "Desconto de vendas padrão",
- "default_sales_discount_number" => "O desconto de vendas padrão deve ser um número.",
- "default_sales_discount_required" => "O desconto de vendas padrão é um campo obrigatório.",
- "default_tax_category" => "Categoria de imposto padrão",
- "default_tax_code" => "Código Tributário Padrão",
- "default_tax_jurisdiction" => "Jurisdição fiscal padrão",
- "default_tax_name_number" => "O nome do imposto padrão deve ser uma string.",
- "default_tax_name_required" => "Nome da taxa padrão é requerida.",
- "default_tax_rate" => "Imposto Tarifa Padrão %",
- "default_tax_rate_1" => "Imposto 1 Tarifa",
- "default_tax_rate_2" => "Imposto 2 Tarifa",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "A taxa de Imposto padrão deve ser um número.",
- "default_tax_rate_required" => "A taxa de Imposto padrão é um campo obrigatório.",
- "derive_sale_quantity" => "Permitir quantidade de venda derivada",
- "derive_sale_quantity_tooltip" => "Se marcado, um novo tipo de item será fornecido para itens solicitados por quantidade estendida",
- "dinner_table" => "Mesa",
- "dinner_table_duplicate" => "A mesa deve ser única.",
- "dinner_table_enable" => "Ativar mesas de jantar",
- "dinner_table_invalid_chars" => "O nome da mesa não pode conter '_'.",
- "dinner_table_required" => "A mesa é um campo obrigatório.",
- "dot" => "ponto",
- "email" => "E-mail",
- "email_configuration" => "Configuração de Email",
- "email_mailpath" => "Caminho para Sendmail",
- "email_protocol" => "Protocolo",
- "email_receipt_check_behaviour" => "Caixa de seleção de recibo de e-mail",
- "email_receipt_check_behaviour_always" => "Sempre selecionado",
- "email_receipt_check_behaviour_last" => "Lembrar da última seleção",
- "email_receipt_check_behaviour_never" => "Sempre desativado",
- "email_smtp_crypto" => "Criptografia SMTP",
- "email_smtp_host" => "Servidor SMTP",
- "email_smtp_pass" => "Senha SMTP",
- "email_smtp_port" => "Porta SMTP",
- "email_smtp_timeout" => "SMTP Tempo esgotado",
- "email_smtp_user" => "Nome de usuário SMTP",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Reforce a privacidade",
- "enforce_privacy_tooltip" => "Proteja a privacidade dos clientes, impondo a codificação de dados no caso de seus dados serem excluídos",
- "fax" => "Fax",
- "file_perm" => "There are problems with file permissions please fix and reload this page.",
- "financial_year" => "Início do ano fiscal",
- "financial_year_apr" => "1 de abril",
- "financial_year_aug" => "1 de agosto",
- "financial_year_dec" => "1 de dezembro",
- "financial_year_feb" => "1 de fevereiro",
- "financial_year_jan" => "1 de janeiro",
- "financial_year_jul" => "1 de julho",
- "financial_year_jun" => "1 de junho",
- "financial_year_mar" => "1 de março",
- "financial_year_may" => "1 de maio",
- "financial_year_nov" => "1 de novembro",
- "financial_year_oct" => "1 de outubro",
- "financial_year_sep" => "1 de setembro",
- "floating_labels" => "",
- "gcaptcha_enable" => "Página de login reCAPTCHA",
- "gcaptcha_secret_key" => "Chave secreta do reCAPTCHA",
- "gcaptcha_secret_key_required" => "A chave secreta reCAPTCHA é um campo obrigatório",
- "gcaptcha_site_key" => "Chave do site reCAPTCHA",
- "gcaptcha_site_key_required" => "A chave do site reCAPTCHA é um campo obrigatório",
- "gcaptcha_tooltip" => "Proteja a página de login com o Google reCAPTCHA e clique no ícone de um par de chaves de API.",
- "general" => "Gerais",
- "general_configuration" => "Configurações Gerais",
- "giftcard_number" => "Número cartão presente",
- "giftcard_random" => "Geração aleaória",
- "giftcard_series" => "Gerado em serie",
- "image_allowed_file_types" => "Tipos de arquivo permitidos",
- "image_max_height_tooltip" => "Altura máxima permitida para envio de imagens em pixels (px).",
- "image_max_size_tooltip" => "Tamanho máximo permitido para envio de imagens em kilobytes (kb).",
- "image_max_width_tooltip" => "Largura máxima permitida para envio de imagens em pixels (px).",
- "image_restrictions" => "Restrições no envio de imagens",
- "include_hsn" => "Incluir suporte para códigos HSN",
- "info" => "Informações",
- "info_configuration" => "Informações da loja",
- "input_groups" => "",
- "integrations" => "Integrações",
- "integrations_configuration" => "Integrações de terceiros",
- "invoice" => "Fatura",
- "invoice_configuration" => "Configuração de Impressão",
- "invoice_default_comments" => "Comentário",
- "invoice_email_message" => "Modelo de e-mail Fatura",
- "invoice_enable" => "Habilitar faturamento",
- "invoice_printer" => "Imprimir fatura",
- "invoice_type" => "Tipo Fatura",
- "is_readable" => "É readable, mas as permissões estão incorretas. Por favor defina para 640 ou 660 e recarregue.",
- "is_writable" => "É writable, mas as permissões estão incorretas. Por favor defina para 750 e recarrege.",
- "item_markup" => "",
- "jsprintsetup_required" => "Aviso! Esta funcionalidade só irá funcionar se você tem o addon FireFox jsPrintSetup instalado. Salvar de qualquer maneira?",
- "language" => "Linguagem",
- "last_used_invoice_number" => "Último número de fatura usado",
- "last_used_quote_number" => "Último número de cotação usada",
- "last_used_work_order_number" => "Último número de ordem de serviço usado",
- "left" => "Esquerda",
- "license" => "Licenças",
- "license_configuration" => "Declaração de licença",
- "line_sequence" => "Sequência de Linhas",
- "lines_per_page" => "Linhas por página",
- "lines_per_page_number" => "Linhas por página deve ser um número.",
- "lines_per_page_required" => "As linhas por página é um campo obrigatório.",
- "locale" => "Localização",
- "locale_configuration" => "Configuração de Localização",
- "locale_info" => "Informações da Configuração de Localização",
- "location" => "Estoque",
- "location_configuration" => "Localização do Estoque",
- "location_info" => "Informações da localização",
- "login_form" => "",
- "logout" => "Você não quer fazer uma cópia de segurança antes de sair? Clique [OK] para fazer a cópia de segurança.",
- "mailchimp" => "Configuração Mailchimp",
- "mailchimp_api_key" => "Mailchimp chave API",
- "mailchimp_configuration" => "Configuração Mailchimp",
- "mailchimp_key_successfully" => "API chave válida.",
- "mailchimp_key_unsuccessfully" => "API chave inválida.",
- "mailchimp_lists" => "Lista(s) Mailchimp",
- "mailchimp_tooltip" => "Clique no ícone de uma chave de API.",
- "message" => "Mensagem",
- "message_configuration" => "Configuração de Mensagens",
- "msg_msg" => "Salvar mensagem de texto",
- "msg_msg_placeholder" => "Se você deseja usar um modelo de SMS salvar a sua mensagem aqui. Caso contrário, deixe a caixa em branco.",
- "msg_pwd" => "SMS-API senha",
- "msg_pwd_required" => "SMS-API Senha é um campo obrigatório",
- "msg_src" => "SMS-API Remetente ID",
- "msg_src_required" => "SMS-API Remetente ID é um campo obrigatório",
- "msg_uid" => "SMS-API usuário",
- "msg_uid_required" => "SMS-API usuário é um campo obrigatório",
- "multi_pack_enabled" => "Vários pacotes por item",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "nenhum",
- "notify_alignment" => "Notificação Posição Popup",
- "number_format" => "Formato do número",
- "number_locale" => "Localização",
- "number_locale_invalid" => "A localidade digitada é inválida. Verifique o link na dica para encontrar um valor aceitável.",
- "number_locale_required" => "Número Local é um campo obrigatório.",
- "number_locale_tooltip" => "Encontrar um local adequado através deste link.",
- "os_timezone" => "Fuso horário do OSPOS:",
- "ospos_info" => "Informações de instalação do OSPOS",
- "payment_options_order" => "Opções da ordem de pagamento",
- "perm_risk" => "Permissões incorretas deixam este software em risco.",
- "phone" => "Telefone",
- "phone_required" => "Telefone da Empresa é requerido.",
- "print_bottom_margin" => "Margem inferior",
- "print_bottom_margin_number" => "A margem inferior padrão deve ser um número.",
- "print_bottom_margin_required" => "A margem inferior padrão é um campo obrigatório.",
- "print_delay_autoreturn" => "Retorno automático para atraso de venda",
- "print_delay_autoreturn_number" => "Retorno automático para venda é um campo obrigatório.",
- "print_delay_autoreturn_required" => "Retorno automático para devolução de venda deve ser um número.",
- "print_footer" => "Imprimir rodapé do navegador",
- "print_header" => "Imprimir o cabeçalho do navegador",
- "print_left_margin" => "Margem esquerda",
- "print_left_margin_number" => "A margem esquerda padrão deve ser um número.",
- "print_left_margin_required" => "A margem esquerda padrão é um campo obrigatório.",
- "print_receipt_check_behaviour" => "Caixa seleção Recibo de impressão",
- "print_receipt_check_behaviour_always" => "Sempre verificado",
- "print_receipt_check_behaviour_last" => "Lembre-se da última seleção",
- "print_receipt_check_behaviour_never" => "Sempre desmarcado",
- "print_right_margin" => "Margem Direita",
- "print_right_margin_number" => "A margem direita padrão deve ser um número.",
- "print_right_margin_required" => "A margem direita padrão é um campo obrigatório.",
- "print_silently" => "Mostrar caixa de diálogo de impressão",
- "print_top_margin" => "Margem superior",
- "print_top_margin_number" => "A margem superior padrão deve ser um número.",
- "print_top_margin_required" => "A margem superior padrão é um campo obrigatório.",
- "quantity_decimals" => "Número de decimais",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Comentários de cotação padrão",
- "receipt" => "Recibo",
- "receipt_category" => "",
- "receipt_configuration" => "Configuração de Impressão",
- "receipt_default" => "Padrão",
- "receipt_font_size" => "Tamanho da fonte",
- "receipt_font_size_number" => "Tamanho da fonte deve ser um número.",
- "receipt_font_size_required" => "Tamanho da fonte é requerido.",
- "receipt_info" => "Informações de configuração de Recibos",
- "receipt_printer" => "Imprimir recibo",
- "receipt_short" => "Pequeno",
- "receipt_show_company_name" => "Mostrar nome da empresa",
- "receipt_show_description" => "Exibir descrição",
- "receipt_show_serialnumber" => "Exibir número serial",
- "receipt_show_tax_ind" => "Mostrar indicator de impostos",
- "receipt_show_taxes" => "Mostrar Impostos",
- "receipt_show_total_discount" => "Mostrar total desconto",
- "receipt_template" => "Modelo de recibo",
- "receiving_calculate_average_price" => "Calc Médio de Preço (Recebimento)",
- "recv_invoice_format" => "Formato da fatura de recebimento",
- "register_mode_default" => "Modo de registro padrão",
- "report_an_issue" => "Reporte um problema",
- "return_policy_required" => "A política de devolução é um campo obrigatório.",
- "reward" => "Recompensa",
- "reward_configuration" => "Configuração de recompensa",
- "right" => "Direita",
- "sales_invoice_format" => "Formato da Fatura de Vendas",
- "sales_quote_format" => "Formato de cotação de vendas",
- "mailpath_invalid" => "Caminho do sendmail inválido. Apenas letras, números, traços, sublinhados, barras e pontos são permitidos.",
- "saved_successfully" => "Configuração salva com sucesso.",
- "saved_unsuccessfully" => "Configuração não salva.",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "Por favor, use as informações abaixo para o relatório de problemas.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Mostrar ícone do escritório",
- "statistics" => "Enviar estatísticas",
- "statistics_tooltip" => "Envie estatísticas para desenvolvimento e aprimoramento de recursos.",
- "stock_location" => "Localização do Estoque",
- "stock_location_duplicate" => "Por favor, use um nome de localização única.",
- "stock_location_invalid_chars" => "O nome do local de ações não pode conter '_'.",
- "stock_location_required" => "Número da localização do estoque é um campo obrigatório.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Coluna 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Layout de sugestões de pesquisa",
- "suggestions_second_column" => "Coluna 2",
- "suggestions_third_column" => "Coluna 3",
- "system_conf" => "Setup & Conf",
- "system_info" => "System Info",
- "table" => "Mesa",
- "table_configuration" => "Configuração da mesa",
- "takings_printer" => "Imprimir Vendas",
- "tax" => "Imp",
- "tax_category" => "Categoria de imposto",
- "tax_category_duplicate" => "A categoria de imposto inserida já existe.",
- "tax_category_invalid_chars" => "A categoria de imposto inserida é inválida.",
- "tax_category_required" => "A categoria de imposto é obrigatória.",
- "tax_category_used" => "A categoria de imposto não pode ser excluída porque está sendo usada.",
- "tax_configuration" => "Configuração de impostos",
- "tax_decimals" => "Decimais da taxa",
- "tax_id" => "Id imposto",
- "tax_included" => "Imposto Incluído",
- "theme" => "Tema",
- "theme_preview" => "",
- "thousands_separator" => "Separador de milhar",
- "timezone" => "Fuso horário",
- "timezone_error" => "O fuso horário do OSPOS é diferente do fuso horário local.",
- "top" => "Topo",
- "use_destination_based_tax" => "Use o Imposto Baseado em Destino",
- "user_timezone" => "Fuso horário local:",
- "website" => "OSPOS",
- "wholesale_markup" => "",
- "work_order_enable" => "Suporte para Ordem de Serviço",
- "work_order_format" => "Formato Ordem de Serviço",
+ 'address' => 'Endereço da empresa',
+ 'address_required' => 'Endereço da empresa é um campo obrigatório.',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => 'Permitir códigos de barras duplicados',
+ 'apostrophe' => 'apóstrofe',
+ 'backup_button' => 'Cópia de Segurança',
+ 'backup_database' => 'Cópia de Segurança',
+ 'barcode' => 'Código de Barras',
+ 'barcode_company' => 'Nome da Empresa',
+ 'barcode_configuration' => 'Configuração do Código de Barras',
+ 'barcode_content' => 'Conteúdo do código de barras',
+ 'barcode_first_row' => 'Linha 1',
+ 'barcode_font' => 'Fonte',
+ 'barcode_formats' => 'Formatos de entrada',
+ 'barcode_generate_if_empty' => 'Gerar se vazio.',
+ 'barcode_height' => 'Altura (px)',
+ 'barcode_id' => 'Item Id/Nome',
+ 'barcode_info' => 'Informação de configuração de códigos de barras',
+ 'barcode_layout' => 'Layout Código de barras',
+ 'barcode_name' => 'Nome',
+ 'barcode_number' => 'Código de Barras',
+ 'barcode_number_in_row' => 'Número de linhas',
+ 'barcode_page_cellspacing' => 'Espaçamento das células na página de exibição.',
+ 'barcode_page_width' => 'Largura da página de exibição',
+ 'barcode_price' => 'Preço',
+ 'barcode_second_row' => 'Linha 2',
+ 'barcode_third_row' => 'Linha 3',
+ 'barcode_tooltip' => 'Aviso: esse recurso pode fazer com que itens duplicados sejam importados ou criados. Não use se você não quiser códigos de barras duplicados.',
+ 'barcode_type' => 'Tipo de código de barras',
+ 'barcode_width' => 'Largura (px)',
+ 'bottom' => 'Inferior',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Decimais da moeda',
+ 'cash_decimals_tooltip' => 'Se os decimais de caixa e os decimais de moeda forem os mesmos, não haverá arredondamento de caixa.',
+ 'cash_rounding' => 'Arredondamento de Caixa',
+ 'category_dropdown' => 'Mostrar Categoria como campo suspenso',
+ 'center' => 'Centro',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'Vírgula',
+ 'company' => 'Nome da empresa',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Trocar imagem',
+ 'company_logo' => 'Logo da empresa',
+ 'company_remove_image' => 'Remover imagem',
+ 'company_required' => 'Nome da empresa é requerido',
+ 'company_select_image' => 'Selecionar imagem',
+ 'company_website_url' => 'Site da empresa não é uma URL válida (http://...).',
+ 'country_codes' => 'Código do país',
+ 'country_codes_tooltip' => 'Vírgula lista de códigos de país separado para pesquisa de endereços pelo nome.',
+ 'currency_code' => 'Código da moeda',
+ 'currency_decimals' => 'Decimais da moeda',
+ 'currency_symbol' => 'Simbolo moeda',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Recompensa',
+ 'customer_reward_duplicate' => 'Recompensa deve ser única.',
+ 'customer_reward_enable' => 'Ativar recompensas do cliente',
+ 'customer_reward_invalid_chars' => "Recompensa não pode conter '_'",
+ 'customer_reward_required' => 'Recompensa é um campo obrigatório',
+ 'customer_sales_tax_support' => 'Suporte ao imposto sobre vendas do cliente',
+ 'date_or_time_format' => 'Filtro de data e hora',
+ 'datetimeformat' => 'Formato da data e hora',
+ 'decimal_point' => 'Ponto decimal',
+ 'default_barcode_font_size_number' => 'O tamanho da fonte do código de barras padrão deve ser um número.',
+ 'default_barcode_font_size_required' => 'O tamanho da fonte do código de barras padrão é um campo obrigatório.',
+ 'default_barcode_height_number' => 'A altura do código de barras padrão deve ser um número.',
+ 'default_barcode_height_required' => 'A altura do código de barras padrão é um campo obrigatório.',
+ 'default_barcode_num_in_row_number' => 'O número de código de barras padrão na linha deve ser um número.',
+ 'default_barcode_num_in_row_required' => 'O número de código de barras padrão na linha é um campo obrigatório.',
+ 'default_barcode_page_cellspacing_number' => 'O espaçamento das células na página de código de barras padrão deve ser um número.',
+ 'default_barcode_page_cellspacing_required' => 'O espaçamento das células na página de código de barras padrão é um campo obrigatório.',
+ 'default_barcode_page_width_number' => 'A largura da página de código de barras padrão deve ser um número.',
+ 'default_barcode_page_width_required' => 'A largura da página de código de barras padrão é um campo obrigatório.',
+ 'default_barcode_width_number' => 'A largura do código de barras padrão deve ser um número.',
+ 'default_barcode_width_required' => 'A largura do código de barras padrão é um campo obrigatório.',
+ 'default_item_columns' => 'Colunas de itens visíveis padrão',
+ 'default_origin_tax_code' => 'Código de imposto de origem padrão',
+ 'default_receivings_discount' => 'Desconto de recebimento padrão',
+ 'default_receivings_discount_number' => 'Desconto de recebimento padrão deve ser um número.',
+ 'default_receivings_discount_required' => 'Desconto de recebimento padrão é um campo obrigatório.',
+ 'default_sales_discount' => 'Desconto de vendas padrão',
+ 'default_sales_discount_number' => 'O desconto de vendas padrão deve ser um número.',
+ 'default_sales_discount_required' => 'O desconto de vendas padrão é um campo obrigatório.',
+ 'default_tax_category' => 'Categoria de imposto padrão',
+ 'default_tax_code' => 'Código Tributário Padrão',
+ 'default_tax_jurisdiction' => 'Jurisdição fiscal padrão',
+ 'default_tax_name_number' => 'O nome do imposto padrão deve ser uma string.',
+ 'default_tax_name_required' => 'Nome da taxa padrão é requerida.',
+ 'default_tax_rate' => 'Imposto Tarifa Padrão %',
+ 'default_tax_rate_1' => 'Imposto 1 Tarifa',
+ 'default_tax_rate_2' => 'Imposto 2 Tarifa',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'A taxa de Imposto padrão deve ser um número.',
+ 'default_tax_rate_required' => 'A taxa de Imposto padrão é um campo obrigatório.',
+ 'derive_sale_quantity' => 'Permitir quantidade de venda derivada',
+ 'derive_sale_quantity_tooltip' => 'Se marcado, um novo tipo de item será fornecido para itens solicitados por quantidade estendida',
+ 'dinner_table' => 'Mesa',
+ 'dinner_table_duplicate' => 'A mesa deve ser única.',
+ 'dinner_table_enable' => 'Ativar mesas de jantar',
+ 'dinner_table_invalid_chars' => "O nome da mesa não pode conter '_'.",
+ 'dinner_table_required' => 'A mesa é um campo obrigatório.',
+ 'dot' => 'ponto',
+ 'email' => 'E-mail',
+ 'email_configuration' => 'Configuração de Email',
+ 'email_mailpath' => 'Caminho para Sendmail',
+ 'email_protocol' => 'Protocolo',
+ 'email_receipt_check_behaviour' => 'Caixa de seleção de recibo de e-mail',
+ 'email_receipt_check_behaviour_always' => 'Sempre selecionado',
+ 'email_receipt_check_behaviour_last' => 'Lembrar da última seleção',
+ 'email_receipt_check_behaviour_never' => 'Sempre desativado',
+ 'email_smtp_crypto' => 'Criptografia SMTP',
+ 'email_smtp_host' => 'Servidor SMTP',
+ 'email_smtp_pass' => 'Senha SMTP',
+ 'email_smtp_port' => 'Porta SMTP',
+ 'email_smtp_timeout' => 'SMTP Tempo esgotado',
+ 'email_smtp_user' => 'Nome de usuário SMTP',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Reforce a privacidade',
+ 'enforce_privacy_tooltip' => 'Proteja a privacidade dos clientes, impondo a codificação de dados no caso de seus dados serem excluídos',
+ 'fax' => 'Fax',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => 'Início do ano fiscal',
+ 'financial_year_apr' => '1 de abril',
+ 'financial_year_aug' => '1 de agosto',
+ 'financial_year_dec' => '1 de dezembro',
+ 'financial_year_feb' => '1 de fevereiro',
+ 'financial_year_jan' => '1 de janeiro',
+ 'financial_year_jul' => '1 de julho',
+ 'financial_year_jun' => '1 de junho',
+ 'financial_year_mar' => '1 de março',
+ 'financial_year_may' => '1 de maio',
+ 'financial_year_nov' => '1 de novembro',
+ 'financial_year_oct' => '1 de outubro',
+ 'financial_year_sep' => '1 de setembro',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => 'Página de login reCAPTCHA',
+ 'gcaptcha_secret_key' => 'Chave secreta do reCAPTCHA',
+ 'gcaptcha_secret_key_required' => 'A chave secreta reCAPTCHA é um campo obrigatório',
+ 'gcaptcha_site_key' => 'Chave do site reCAPTCHA',
+ 'gcaptcha_site_key_required' => 'A chave do site reCAPTCHA é um campo obrigatório',
+ 'gcaptcha_tooltip' => 'Proteja a página de login com o Google reCAPTCHA e clique no ícone de um par de chaves de API.',
+ 'general' => 'Gerais',
+ 'general_configuration' => 'Configurações Gerais',
+ 'giftcard_number' => 'Número cartão presente',
+ 'giftcard_random' => 'Geração aleaória',
+ 'giftcard_series' => 'Gerado em serie',
+ 'image_allowed_file_types' => 'Tipos de arquivo permitidos',
+ 'image_max_height_tooltip' => 'Altura máxima permitida para envio de imagens em pixels (px).',
+ 'image_max_size_tooltip' => 'Tamanho máximo permitido para envio de imagens em kilobytes (kb).',
+ 'image_max_width_tooltip' => 'Largura máxima permitida para envio de imagens em pixels (px).',
+ 'image_restrictions' => 'Restrições no envio de imagens',
+ 'include_hsn' => 'Incluir suporte para códigos HSN',
+ 'info' => 'Informações',
+ 'info_configuration' => 'Informações da loja',
+ 'input_groups' => '',
+ 'integrations' => 'Integrações',
+ 'integrations_configuration' => 'Integrações de terceiros',
+ 'invoice' => 'Fatura',
+ 'invoice_configuration' => 'Configuração de Impressão',
+ 'invoice_default_comments' => 'Comentário',
+ 'invoice_email_message' => 'Modelo de e-mail Fatura',
+ 'invoice_enable' => 'Habilitar faturamento',
+ 'invoice_printer' => 'Imprimir fatura',
+ 'invoice_type' => 'Tipo Fatura',
+ 'is_readable' => 'É readable, mas as permissões estão incorretas. Por favor defina para 640 ou 660 e recarregue.',
+ 'is_writable' => 'É writable, mas as permissões estão incorretas. Por favor defina para 750 e recarrege.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Aviso! Esta funcionalidade só irá funcionar se você tem o addon FireFox jsPrintSetup instalado. Salvar de qualquer maneira?',
+ 'language' => 'Linguagem',
+ 'last_used_invoice_number' => 'Último número de fatura usado',
+ 'last_used_quote_number' => 'Último número de cotação usada',
+ 'last_used_work_order_number' => 'Último número de ordem de serviço usado',
+ 'left' => 'Esquerda',
+ 'license' => 'Licenças',
+ 'license_configuration' => 'Declaração de licença',
+ 'line_sequence' => 'Sequência de Linhas',
+ 'lines_per_page' => 'Linhas por página',
+ 'lines_per_page_number' => 'Linhas por página deve ser um número.',
+ 'lines_per_page_required' => 'As linhas por página é um campo obrigatório.',
+ 'locale' => 'Localização',
+ 'locale_configuration' => 'Configuração de Localização',
+ 'locale_info' => 'Informações da Configuração de Localização',
+ 'location' => 'Estoque',
+ 'location_configuration' => 'Localização do Estoque',
+ 'location_info' => 'Informações da localização',
+ 'login_form' => '',
+ 'logout' => 'Você não quer fazer uma cópia de segurança antes de sair? Clique [OK] para fazer a cópia de segurança.',
+ 'mailchimp' => 'Configuração Mailchimp',
+ 'mailchimp_api_key' => 'Mailchimp chave API',
+ 'mailchimp_configuration' => 'Configuração Mailchimp',
+ 'mailchimp_key_successfully' => 'API chave válida.',
+ 'mailchimp_key_unsuccessfully' => 'API chave inválida.',
+ 'mailchimp_lists' => 'Lista(s) Mailchimp',
+ 'mailchimp_tooltip' => 'Clique no ícone de uma chave de API.',
+ 'message' => 'Mensagem',
+ 'message_configuration' => 'Configuração de Mensagens',
+ 'msg_msg' => 'Salvar mensagem de texto',
+ 'msg_msg_placeholder' => 'Se você deseja usar um modelo de SMS salvar a sua mensagem aqui. Caso contrário, deixe a caixa em branco.',
+ 'msg_pwd' => 'SMS-API senha',
+ 'msg_pwd_required' => 'SMS-API Senha é um campo obrigatório',
+ 'msg_src' => 'SMS-API Remetente ID',
+ 'msg_src_required' => 'SMS-API Remetente ID é um campo obrigatório',
+ 'msg_uid' => 'SMS-API usuário',
+ 'msg_uid_required' => 'SMS-API usuário é um campo obrigatório',
+ 'multi_pack_enabled' => 'Vários pacotes por item',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => 'nenhum',
+ 'notify_alignment' => 'Notificação Posição Popup',
+ 'number_format' => 'Formato do número',
+ 'number_locale' => 'Localização',
+ 'number_locale_invalid' => 'A localidade digitada é inválida. Verifique o link na dica para encontrar um valor aceitável.',
+ 'number_locale_required' => 'Número Local é um campo obrigatório.',
+ 'number_locale_tooltip' => 'Encontrar um local adequado através deste link.',
+ 'os_timezone' => 'Fuso horário do OSPOS:',
+ 'ospos_info' => 'Informações de instalação do OSPOS',
+ 'payment_options_order' => 'Opções da ordem de pagamento',
+ 'payment_reference_code_length_limits' => 'Código de referência do pagamento
Limites de comprimento',
+ 'payment_reference_code_length_max_label' => 'Máx',
+ 'payment_reference_code_length_min_label' => 'Mín',
+ 'perm_risk' => 'Permissões incorretas deixam este software em risco.',
+ 'phone' => 'Telefone',
+ 'phone_required' => 'Telefone da Empresa é requerido.',
+ 'print_bottom_margin' => 'Margem inferior',
+ 'print_bottom_margin_number' => 'A margem inferior padrão deve ser um número.',
+ 'print_bottom_margin_required' => 'A margem inferior padrão é um campo obrigatório.',
+ 'print_delay_autoreturn' => 'Retorno automático para atraso de venda',
+ 'print_delay_autoreturn_number' => 'Retorno automático para venda é um campo obrigatório.',
+ 'print_delay_autoreturn_required' => 'Retorno automático para devolução de venda deve ser um número.',
+ 'print_footer' => 'Imprimir rodapé do navegador',
+ 'print_header' => 'Imprimir o cabeçalho do navegador',
+ 'print_left_margin' => 'Margem esquerda',
+ 'print_left_margin_number' => 'A margem esquerda padrão deve ser um número.',
+ 'print_left_margin_required' => 'A margem esquerda padrão é um campo obrigatório.',
+ 'print_receipt_check_behaviour' => 'Caixa seleção Recibo de impressão',
+ 'print_receipt_check_behaviour_always' => 'Sempre verificado',
+ 'print_receipt_check_behaviour_last' => 'Lembre-se da última seleção',
+ 'print_receipt_check_behaviour_never' => 'Sempre desmarcado',
+ 'print_right_margin' => 'Margem Direita',
+ 'print_right_margin_number' => 'A margem direita padrão deve ser um número.',
+ 'print_right_margin_required' => 'A margem direita padrão é um campo obrigatório.',
+ 'print_silently' => 'Mostrar caixa de diálogo de impressão',
+ 'print_top_margin' => 'Margem superior',
+ 'print_top_margin_number' => 'A margem superior padrão deve ser um número.',
+ 'print_top_margin_required' => 'A margem superior padrão é um campo obrigatório.',
+ 'quantity_decimals' => 'Número de decimais',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Comentários de cotação padrão',
+ 'receipt' => 'Recibo',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Configuração de Impressão',
+ 'receipt_default' => 'Padrão',
+ 'receipt_font_size' => 'Tamanho da fonte',
+ 'receipt_font_size_number' => 'Tamanho da fonte deve ser um número.',
+ 'receipt_font_size_required' => 'Tamanho da fonte é requerido.',
+ 'receipt_info' => 'Informações de configuração de Recibos',
+ 'receipt_printer' => 'Imprimir recibo',
+ 'receipt_short' => 'Pequeno',
+ 'receipt_show_company_name' => 'Mostrar nome da empresa',
+ 'receipt_show_description' => 'Exibir descrição',
+ 'receipt_show_serialnumber' => 'Exibir número serial',
+ 'receipt_show_tax_ind' => 'Mostrar indicator de impostos',
+ 'receipt_show_taxes' => 'Mostrar Impostos',
+ 'receipt_show_total_discount' => 'Mostrar total desconto',
+ 'receipt_template' => 'Modelo de recibo',
+ 'receiving_calculate_average_price' => 'Calc Médio de Preço (Recebimento)',
+ 'recv_invoice_format' => 'Formato da fatura de recebimento',
+ 'register_mode_default' => 'Modo de registro padrão',
+ 'report_an_issue' => 'Reporte um problema',
+ 'return_policy_required' => 'A política de devolução é um campo obrigatório.',
+ 'reward' => 'Recompensa',
+ 'reward_configuration' => 'Configuração de recompensa',
+ 'right' => 'Direita',
+ 'sales_invoice_format' => 'Formato da Fatura de Vendas',
+ 'sales_quote_format' => 'Formato de cotação de vendas',
+ 'mailpath_invalid' => 'Caminho do sendmail inválido. Apenas letras, números, traços, sublinhados, barras e pontos são permitidos.',
+ 'saved_successfully' => 'Configuração salva com sucesso.',
+ 'saved_unsuccessfully' => 'Configuração não salva.',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Por favor, use as informações abaixo para o relatório de problemas.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Mostrar ícone do escritório',
+ 'statistics' => 'Enviar estatísticas',
+ 'statistics_tooltip' => 'Envie estatísticas para desenvolvimento e aprimoramento de recursos.',
+ 'stock_location' => 'Localização do Estoque',
+ 'stock_location_duplicate' => 'Por favor, use um nome de localização única.',
+ 'stock_location_invalid_chars' => "O nome do local de ações não pode conter '_'.",
+ 'stock_location_required' => 'Número da localização do estoque é um campo obrigatório.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Coluna 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Layout de sugestões de pesquisa',
+ 'suggestions_second_column' => 'Coluna 2',
+ 'suggestions_third_column' => 'Coluna 3',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => 'Mesa',
+ 'table_configuration' => 'Configuração da mesa',
+ 'takings_printer' => 'Imprimir Vendas',
+ 'tax' => 'Imp',
+ 'tax_category' => 'Categoria de imposto',
+ 'tax_category_duplicate' => 'A categoria de imposto inserida já existe.',
+ 'tax_category_invalid_chars' => 'A categoria de imposto inserida é inválida.',
+ 'tax_category_required' => 'A categoria de imposto é obrigatória.',
+ 'tax_category_used' => 'A categoria de imposto não pode ser excluída porque está sendo usada.',
+ 'tax_configuration' => 'Configuração de impostos',
+ 'tax_decimals' => 'Decimais da taxa',
+ 'tax_id' => 'Id imposto',
+ 'tax_included' => 'Imposto Incluído',
+ 'theme' => 'Tema',
+ 'theme_preview' => '',
+ 'thousands_separator' => 'Separador de milhar',
+ 'timezone' => 'Fuso horário',
+ 'timezone_error' => 'O fuso horário do OSPOS é diferente do fuso horário local.',
+ 'top' => 'Topo',
+ 'use_destination_based_tax' => 'Use o Imposto Baseado em Destino',
+ 'user_timezone' => 'Fuso horário local:',
+ 'website' => 'OSPOS',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Suporte para Ordem de Serviço',
+ 'work_order_format' => 'Formato Ordem de Serviço',
];
diff --git a/app/Language/pt-BR/Login.php b/app/Language/pt-BR/Login.php
index f54b518a7..aa208c506 100644
--- a/app/Language/pt-BR/Login.php
+++ b/app/Language/pt-BR/Login.php
@@ -1,25 +1,30 @@
"Não sou um robô.",
- 'go' => "Entrar",
- 'invalid_gcaptcha' => "Inválido eu não sou um robô.",
- 'invalid_installation' => "A instalação não está correta, verifique o seu arquivo php.ini.",
- 'invalid_username_and_password' => "Usuário ou senha inválido.",
- 'login' => "Autenticação",
- 'logout' => "Sair",
- 'migration_needed' => "Uma migração do banco de dados para {0} será iniciada após o login.",
- 'migration_required' => "Migração de banco de dados necessária",
- 'migration_auth_message' => "Credenciais de administrador são necessárias para autorizar a migração do banco de dados para a versão {0}. Faça login para continuar.",
- 'migration_initializing' => "Inicializando banco de dados",
- 'migration_running' => "Executando migrações do banco de dados...",
- 'migration_complete' => "Banco de dados inicializado com sucesso!",
- 'migration_complete_login' => "Agora você pode fazer login.",
- 'migration_failed' => "Migração falhou",
- 'migration_error_connection' => "Erro de conexão. Por favor, tente novamente.",
- 'migration_complete_redirect' => "Migração concluída. Redirecionando para login...",
- 'password' => "Senha",
- 'required_username' => "O campo nome de usuário é obrigatório.",
- 'username' => "Usuário",
- 'welcome' => "Bem-vindo ao {0}!",
+ "gcaptcha" => "Não sou um robô.",
+ "go" => "Entrar",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Inválido eu não sou um robô.",
+ "invalid_installation" => "A instalação não está correta, verifique o seu arquivo php.ini.",
+ "invalid_username_and_password" => "Usuário ou senha inválido.",
+ "login" => "Autenticação",
+ "logout" => "Sair",
+ "migrating_database" => "",
+ "migration_auth_message" => "Credenciais de administrador são necessárias para autorizar a migração do banco de dados para a versão {0}. Faça login para continuar.",
+ "migration_complete" => "Banco de dados inicializado com sucesso!",
+ "migration_complete_login" => "Agora você pode fazer login.",
+ "migration_complete_migrate" => "",
+ "migration_complete_redirect" => "Migração concluída. Redirecionando para login...",
+ "migration_error_connection" => "Erro de conexão. Por favor, tente novamente.",
+ "migration_failed" => "Migração falhou",
+ "migration_initializing" => "Inicializando banco de dados",
+ "migration_needed" => "Uma migração do banco de dados para {0} será iniciada após o login.",
+ "migration_required" => "Migração de banco de dados necessária",
+ "migration_running" => "Executando migrações do banco de dados...",
+ "password" => "Senha",
+ "required_username" => "O campo nome de usuário é obrigatório.",
+ "username" => "Usuário",
+ "welcome" => "Bem-vindo ao {0}!"
];
diff --git a/app/Language/pt-BR/Sales.php b/app/Language/pt-BR/Sales.php
index 479c72d3a..4f367a203 100644
--- a/app/Language/pt-BR/Sales.php
+++ b/app/Language/pt-BR/Sales.php
@@ -1,235 +1,235 @@
"Pontos Disponíveis",
- "rewards_package" => "Recompensa",
- "rewards_remaining_balance" => "O valor restante dos pontos de recompensa é ",
- "account_number" => "Montante º",
- "add_payment" => "Pagar",
- "amount_due" => "Diferença",
- "amount_tendered" => "A Pagar",
- "authorized_signature" => "Assinatura autorizada",
- "cancel_sale" => "Cancelar",
- "cash" => "Dinheiro",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "Ajuste de Dinheiro",
- "cash_deposit" => "Depósito em dinheiro",
- "cash_filter" => "Dinheiro",
- "change_due" => "Troco",
- "change_price" => "Mudar o Preço de Venda",
- "check" => "Cheque",
- "check_balance" => "Cheque restante",
- "check_filter" => "Cheque",
- "close" => "",
- "comment" => "Cementário",
- "comments" => "Comentários",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Finalizar",
- "confirm_cancel_sale" => "Tem certeza de que deseja apagar esta venda? Todos os itens serão apagados.",
- "confirm_delete" => "Tem certeza de que deseja excluir as vendas selecionados?",
- "confirm_restore" => "Tem certeza de que deseja restaurar a (s) venda (ões) selecionada (s)?",
- "credit" => "Cartão Crédito",
- "credit_deposit" => "Depósito de crédito",
- "credit_filter" => "Cartão de Crédito",
- "current_table" => "",
- "customer" => "Cliente",
- "customer_address" => "Endereço",
- "customer_discount" => "Desconto",
- "customer_email" => "e-mail",
- "customer_location" => "Localização",
- "customer_mailchimp_status" => "Status Mailchimp",
- "customer_optional" => "(Obrigatório para pagamentos vencidos)",
- "customer_required" => "(Requerido)",
- "customer_total" => "Total",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Data Venda",
- "date_range" => "Intervalo de datas",
- "date_required" => "A data correta precisa ser preenchida.",
- "date_type" => "Data é requerida.",
- "debit" => "Cartão Débito",
- "debit_filter" => "",
- "delete" => "Permitir exclusão",
- "delete_confirmation" => "Tem certeza de que deseja excluir esta venda, esta ação não pode ser desfeita.",
- "delete_entire_sale" => "Apagar toda a venda",
- "delete_successful" => "Apagado com sucesso.",
- "delete_unsuccessful" => "Foi excluído com sucesso uma venda.",
- "description_abbrv" => "Descrição.",
- "discard" => "Descartar",
- "discard_quote" => "",
- "discount" => "Desconto",
- "discount_included" => "% Desconto",
- "discount_short" => "%",
- "due" => "Vencimento",
- "due_filter" => "Vencimento",
- "edit" => "Editar",
- "edit_item" => "Atualizar",
- "edit_sale" => "Editar Venda",
- "email_receipt" => "E-mail Recebido",
- "employee" => "Empregado",
- "entry" => "Entrada",
- "error_editing_item" => "Erro editando item",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Pesquisar Item",
- "find_or_scan_item_or_receipt" => "Produto",
- "giftcard" => "Cupom",
- "giftcard_balance" => "Balanço de Cartões presente",
- "giftcard_filter" => "",
- "giftcard_number" => "Número cartão presente",
- "group_by_category" => "Agrupar por Categoria",
- "group_by_type" => "Agrupar por Tipo",
- "hsn" => "HSN",
- "id" => "Venda ID",
- "include_prices" => "Incluir Preços?",
- "invoice" => "Fatura",
- "invoice_confirm" => "Esta fatura será enviada para",
- "invoice_enable" => "Criar Fatura",
- "invoice_filter" => "Faturas",
- "invoice_no_email" => "Este cliente não tem um endereço de e-mail válido.",
- "invoice_number" => "Fatura nº",
- "invoice_number_duplicate" => "Por favor insira um número de fatura única.",
- "invoice_sent" => "Enviar Fatura para",
- "invoice_total" => "Total da fatura",
- "invoice_type_custom_invoice" => "Fatura personalizada (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Fatura fiscal personalizada (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Fatura (invoice.php)",
- "invoice_type_tax_invoice" => "Fatura fiscal (tax_invoice.php)",
- "invoice_unsent" => "Fatura não devem ser enviados para",
- "invoice_update" => "Recontagem",
- "item_insufficient_of_stock" => "Item insuficiente no estoque.",
- "item_name" => "Produto",
- "item_number" => "Item nº",
- "item_out_of_stock" => "Item sem estoque.",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "Registrar como",
- "must_enter_numeric" => "Deve entrar valor numérico para montante da proposta apresentada.",
- "must_enter_numeric_giftcard" => "Deve entrar valor numérico para o número de cartão presente.",
- "new_customer" => "Novo Cliente",
- "new_item" => "Novo Item",
- "no_description" => "Sem descrição",
- "no_filter" => "Todos",
- "no_items_in_cart" => "Não há itens na cesta.",
- "no_sales_to_display" => "Sem vendas para mostrar.",
- "none_selected" => "Você não selecionou nenhuma venda para apagar.",
- "nontaxed_ind" => " ",
- "not_authorized" => "Esta ação não é autorizada.",
- "one_or_multiple" => "venda(s)",
- "payment" => "Forma de pagamento",
- "payment_amount" => "Conta",
- "payment_not_cover_total" => "Valor do pagamento não cobre total.",
- "payment_type" => "Tipo",
- "payments" => "",
- "payments_total" => "Total Pago",
- "price" => "Preço",
- "print_after_sale" => "Imprimir ao final",
- "quantity" => "Quantidade",
- "quantity_less_than_reorder_level" => "Aviso, quantidade desejada está abaixo do nível de reabastecimento.",
- "quantity_less_than_zero" => "Aviso, Quantidade desejado é insuficiente. Você ainda pode processar a venda mas verifique seu inventário.",
- "quantity_of_items" => "Quantidade de {0} itens",
- "quote" => "Cotação",
- "quote_number" => "Cotação número",
- "quote_number_duplicate" => "O número de cotação deve ser exclusivo.",
- "quote_sent" => "Cotação enviada para",
- "quote_unsent" => "As cotações não foram enviadas para",
- "receipt" => "Vendas",
- "receipt_no_email" => "Este cliente não possui um endereço de email válido.",
- "receipt_number" => "Venda nº",
- "receipt_sent" => "Enviar recibo para",
- "receipt_unsent" => "Recibo não devem ser enviados para",
- "refund" => "Tipo de Reembolso",
- "register" => "Registar Venda",
- "remove_customer" => "Remover Cliente",
- "remove_discount" => "",
- "return" => "Devolução",
- "rewards" => "Pontos de recompensa",
- "rewards_balance" => "Saldo de pontos de recompensa",
- "sale" => "Venda",
- "sale_by_invoice" => "Venda por fatura",
- "sale_for_customer" => "Cliente:",
- "sale_time" => "Data",
- "sales_tax" => "Imposto de venda",
- "sales_total" => "",
- "select_customer" => "Selecionar Cliente",
- "send_invoice" => "Enviar fatura",
- "send_quote" => "enviar cotação",
- "send_receipt" => "Enviar recibo",
- "send_work_order" => "Enviar ordem de trabalho",
- "serial" => "Série",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "fatura",
- "show_receipt" => "recibo",
- "start_typing_customer_name" => "Nome Cliente ...",
- "start_typing_item_name" => "Produto ...",
- "stock" => "Estoque",
- "stock_location" => "Estoque",
- "sub_total" => "Sub-total",
- "successfully_deleted" => "Apagado com sucesso",
- "successfully_restored" => "Você restaurou com sucesso",
- "successfully_suspended_sale" => "Suspenso com sucesso.",
- "successfully_updated" => "Venda atualizada.",
- "suspend_sale" => "Suspender",
- "suspended_doc_id" => "Documento",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Suspenso",
- "table" => "Mesa",
- "takings" => "Vendas",
- "tax" => "Taxa",
- "tax_id" => "Id imposto",
- "tax_invoice" => "Fatura de imposto",
- "tax_percent" => "Taxa %",
- "taxed_ind" => "Indicador de Taxa de Vendas",
- "total" => "Total",
- "total_tax_exclusive" => "taxas excluídas",
- "transaction_failed" => "Falha na transação Vendas.",
- "unable_to_add_item" => "Não é possível adicionar item à venda",
- "unsuccessfully_deleted" => "Venda(s) não pode ser excluído.",
- "unsuccessfully_restored" => "Falha na restauração de venda (s).",
- "unsuccessfully_suspended_sale" => "Suspenso com sucesso.",
- "unsuccessfully_updated" => "Venda sem sucesso na atualização.",
- "unsuspend" => "Não suspenso",
- "unsuspend_and_delete" => "Retornar e apagar",
- "update" => "Editar Venda",
- "upi" => "UPI",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "Ordem de trabalho",
- "work_order_number" => "Número da ordem de trabalho",
- "work_order_number_duplicate" => "O número da ordem de serviço deve ser exclusivo.",
- "work_order_sent" => "Ordem de trabalho enviada para",
- "work_order_unsent" => "A ordem de serviço não foi enviada para",
- "sale_not_found" => "Venda não encontrada",
- "ubl_invoice" => "Fatura UBL",
- "download_ubl" => "Baixar Fatura UBL",
- "ubl_generation_failed" => "Falha ao gerar fatura UBL",
+ 'account_number' => 'Montante º',
+ 'add_payment' => 'Pagar',
+ 'amount_due' => 'Diferença',
+ 'amount_tendered' => 'A Pagar',
+ 'authorized_signature' => 'Assinatura autorizada',
+ 'cancel_sale' => 'Cancelar',
+ 'cash' => 'Dinheiro',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'Ajuste de Dinheiro',
+ 'cash_deposit' => 'Depósito em dinheiro',
+ 'cash_filter' => 'Dinheiro',
+ 'change_due' => 'Troco',
+ 'change_price' => 'Mudar o Preço de Venda',
+ 'check' => 'Cheque',
+ 'check_balance' => 'Cheque restante',
+ 'check_filter' => 'Cheque',
+ 'close' => '',
+ 'comment' => 'Cementário',
+ 'comments' => 'Comentários',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Finalizar',
+ 'confirm_cancel_sale' => 'Tem certeza de que deseja apagar esta venda? Todos os itens serão apagados.',
+ 'confirm_delete' => 'Tem certeza de que deseja excluir as vendas selecionados?',
+ 'confirm_restore' => 'Tem certeza de que deseja restaurar a (s) venda (ões) selecionada (s)?',
+ 'credit' => 'Cartão Crédito',
+ 'credit_deposit' => 'Depósito de crédito',
+ 'credit_filter' => 'Cartão de Crédito',
+ 'current_table' => '',
+ 'customer' => 'Cliente',
+ 'customer_address' => 'Endereço',
+ 'customer_discount' => 'Desconto',
+ 'customer_email' => 'e-mail',
+ 'customer_location' => 'Localização',
+ 'customer_mailchimp_status' => 'Status Mailchimp',
+ 'customer_optional' => '(Obrigatório para pagamentos vencidos)',
+ 'customer_required' => '(Requerido)',
+ 'customer_total' => 'Total',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Pontos Disponíveis',
+ 'daily_sales' => '',
+ 'date' => 'Data Venda',
+ 'date_range' => 'Intervalo de datas',
+ 'date_required' => 'A data correta precisa ser preenchida.',
+ 'date_type' => 'Data é requerida.',
+ 'debit' => 'Cartão Débito',
+ 'debit_filter' => '',
+ 'delete' => 'Permitir exclusão',
+ 'delete_confirmation' => 'Tem certeza de que deseja excluir esta venda, esta ação não pode ser desfeita.',
+ 'delete_entire_sale' => 'Apagar toda a venda',
+ 'delete_successful' => 'Apagado com sucesso.',
+ 'delete_unsuccessful' => 'Foi excluído com sucesso uma venda.',
+ 'description_abbrv' => 'Descrição.',
+ 'discard' => 'Descartar',
+ 'discard_quote' => '',
+ 'discount' => 'Desconto',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Desconto',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'Vencimento',
+ 'due_filter' => 'Vencimento',
+ 'edit' => 'Editar',
+ 'edit_item' => 'Atualizar',
+ 'edit_sale' => 'Editar Venda',
+ 'email_receipt' => 'E-mail Recebido',
+ 'employee' => 'Empregado',
+ 'entry' => 'Entrada',
+ 'error_editing_item' => 'Erro editando item',
+ 'find_or_scan_item' => 'Pesquisar Item',
+ 'find_or_scan_item_or_receipt' => 'Produto',
+ 'giftcard' => 'Cupom',
+ 'giftcard_balance' => 'Balanço de Cartões presente',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Número cartão presente',
+ 'group_by_category' => 'Agrupar por Categoria',
+ 'group_by_type' => 'Agrupar por Tipo',
+ 'hsn' => 'HSN',
+ 'id' => 'Venda ID',
+ 'include_prices' => 'Incluir Preços?',
+ 'invoice' => 'Fatura',
+ 'invoice_confirm' => 'Esta fatura será enviada para',
+ 'invoice_enable' => 'Criar Fatura',
+ 'invoice_filter' => 'Faturas',
+ 'invoice_no_email' => 'Este cliente não tem um endereço de e-mail válido.',
+ 'invoice_number' => 'Fatura nº',
+ 'invoice_number_duplicate' => 'Por favor insira um número de fatura única.',
+ 'invoice_sent' => 'Enviar Fatura para',
+ 'invoice_total' => 'Total da fatura',
+ 'invoice_type_custom_invoice' => 'Fatura personalizada (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Fatura fiscal personalizada (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Fatura (invoice.php)',
+ 'invoice_type_tax_invoice' => 'Fatura fiscal (tax_invoice.php)',
+ 'invoice_unsent' => 'Fatura não devem ser enviados para',
+ 'invoice_update' => 'Recontagem',
+ 'item_insufficient_of_stock' => 'Item insuficiente no estoque.',
+ 'item_name' => 'Produto',
+ 'item_number' => 'Item nº',
+ 'item_out_of_stock' => 'Item sem estoque.',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'Registrar como',
+ 'must_enter_numeric' => 'Deve entrar valor numérico para montante da proposta apresentada.',
+ 'must_enter_numeric_giftcard' => 'Deve entrar valor numérico para o número de cartão presente.',
+ 'must_enter_reference_code' => 'O número de referência/recuperação deve ser informado.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Novo Cliente',
+ 'new_item' => 'Novo Item',
+ 'no_description' => 'Sem descrição',
+ 'no_filter' => 'Todos',
+ 'no_items_in_cart' => 'Não há itens na cesta.',
+ 'no_sales_to_display' => 'Sem vendas para mostrar.',
+ 'none_selected' => 'Você não selecionou nenhuma venda para apagar.',
+ 'nontaxed_ind' => ' ',
+ 'not_authorized' => 'Esta ação não é autorizada.',
+ 'one_or_multiple' => 'venda(s)',
+ 'payment' => 'Forma de pagamento',
+ 'payment_amount' => 'Conta',
+ 'payment_not_cover_total' => 'Valor do pagamento não cobre total.',
+ 'payment_type' => 'Tipo',
+ 'payments' => '',
+ 'payments_total' => 'Total Pago',
+ 'price' => 'Preço',
+ 'print_after_sale' => 'Imprimir ao final',
+ 'quantity' => 'Quantidade',
+ 'quantity_less_than_reorder_level' => 'Aviso, quantidade desejada está abaixo do nível de reabastecimento.',
+ 'quantity_less_than_zero' => 'Aviso, Quantidade desejado é insuficiente. Você ainda pode processar a venda mas verifique seu inventário.',
+ 'quantity_of_items' => 'Quantidade de {0} itens',
+ 'quote' => 'Cotação',
+ 'quote_number' => 'Cotação número',
+ 'quote_number_duplicate' => 'O número de cotação deve ser exclusivo.',
+ 'quote_sent' => 'Cotação enviada para',
+ 'quote_unsent' => 'As cotações não foram enviadas para',
+ 'receipt' => 'Vendas',
+ 'receipt_no_email' => 'Este cliente não possui um endereço de email válido.',
+ 'receipt_number' => 'Venda nº',
+ 'receipt_sent' => 'Enviar recibo para',
+ 'receipt_unsent' => 'Recibo não devem ser enviados para',
+ 'reference_code' => 'Código de referência do pagamento',
+ 'reference_code_invalid_characters' => 'O código de referência deve conter apenas letras e números.',
+ 'reference_code_length_error' => 'O comprimento do código de referência é inválido.',
+ 'refund' => 'Tipo de Reembolso',
+ 'register' => 'Registar Venda',
+ 'remove_customer' => 'Remover Cliente',
+ 'remove_discount' => '',
+ 'return' => 'Devolução',
+ 'rewards' => 'Pontos de recompensa',
+ 'rewards_balance' => 'Saldo de pontos de recompensa',
+ 'rewards_package' => 'Recompensa',
+ 'rewards_remaining_balance' => 'O valor restante dos pontos de recompensa é ',
+ 'sale' => 'Venda',
+ 'sale_by_invoice' => 'Venda por fatura',
+ 'sale_for_customer' => 'Cliente:',
+ 'sale_time' => 'Data',
+ 'sales_tax' => 'Imposto de venda',
+ 'sales_total' => '',
+ 'select_customer' => 'Selecionar Cliente',
+ 'send_invoice' => 'Enviar fatura',
+ 'send_quote' => 'enviar cotação',
+ 'send_receipt' => 'Enviar recibo',
+ 'send_work_order' => 'Enviar ordem de trabalho',
+ 'serial' => 'Série',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'fatura',
+ 'show_receipt' => 'recibo',
+ 'start_typing_customer_name' => 'Nome Cliente ...',
+ 'start_typing_item_name' => 'Produto ...',
+ 'stock' => 'Estoque',
+ 'stock_location' => 'Estoque',
+ 'sub_total' => 'Sub-total',
+ 'successfully_deleted' => 'Apagado com sucesso',
+ 'successfully_restored' => 'Você restaurou com sucesso',
+ 'successfully_suspended_sale' => 'Suspenso com sucesso.',
+ 'successfully_updated' => 'Venda atualizada.',
+ 'suspend_sale' => 'Suspender',
+ 'suspended_doc_id' => 'Documento',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Suspenso',
+ 'table' => 'Mesa',
+ 'takings' => 'Vendas',
+ 'tax' => 'Taxa',
+ 'tax_id' => 'Id imposto',
+ 'tax_invoice' => 'Fatura de imposto',
+ 'tax_percent' => 'Taxa %',
+ 'taxed_ind' => 'Indicador de Taxa de Vendas',
+ 'total' => 'Total',
+ 'total_tax_exclusive' => 'taxas excluídas',
+ 'transaction_failed' => 'Falha na transação Vendas.',
+ 'unable_to_add_item' => 'Não é possível adicionar item à venda',
+ 'unsuccessfully_deleted' => 'Venda(s) não pode ser excluído.',
+ 'unsuccessfully_restored' => 'Falha na restauração de venda (s).',
+ 'unsuccessfully_suspended_sale' => 'Suspenso com sucesso.',
+ 'unsuccessfully_updated' => 'Venda sem sucesso na atualização.',
+ 'unsuspend' => 'Não suspenso',
+ 'unsuspend_and_delete' => 'Retornar e apagar',
+ 'update' => 'Editar Venda',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'Ordem de trabalho',
+ 'work_order_number' => 'Número da ordem de trabalho',
+ 'work_order_number_duplicate' => 'O número da ordem de serviço deve ser exclusivo.',
+ 'work_order_sent' => 'Ordem de trabalho enviada para',
+ 'work_order_unsent' => 'A ordem de serviço não foi enviada para',
];
diff --git a/app/Language/ro/Config.php b/app/Language/ro/Config.php
index a4eebd5aa..f86518373 100644
--- a/app/Language/ro/Config.php
+++ b/app/Language/ro/Config.php
@@ -1,332 +1,335 @@
"Adresa companiei",
- "address_required" => "Adresa companiei este un câmp obligatoriu.",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "Permiteți coduri de bare duplicate",
- "apostrophe" => "apostrof",
- "backup_button" => "Backup",
- "backup_database" => "Rezervă de date",
- "barcode" => "Barcode",
- "barcode_company" => "Numele Companiei",
- "barcode_configuration" => "Configurarea codului de bare",
- "barcode_content" => "Conținutul codului de bare",
- "barcode_first_row" => "Rândul 1",
- "barcode_font" => "Font",
- "barcode_formats" => "Formate de intrare",
- "barcode_generate_if_empty" => "Generați dacă este gol.",
- "barcode_height" => "Înălțime (px)",
- "barcode_id" => "Element Id / Nume",
- "barcode_info" => "Informații privind configurația codurilor de bare",
- "barcode_layout" => "Formatul de coduri de bare",
- "barcode_name" => "Nume",
- "barcode_number" => "Cod de bare",
- "barcode_number_in_row" => "Numar în rânduri",
- "barcode_page_cellspacing" => "Afișați spațiul celular în pagină.",
- "barcode_page_width" => "Afișați lățimea paginii",
- "barcode_price" => "Preț",
- "barcode_second_row" => "Rândul 2",
- "barcode_third_row" => "Rândul 3",
- "barcode_tooltip" => "Avertisment: această caracteristică poate determina importul sau crearea elementelor duplicate. Nu utilizați dacă nu doriți coduri de bare duplicat.",
- "barcode_type" => "Tipul codului de bare",
- "barcode_width" => "Lățime (px)",
- "bottom" => "Subsol",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Decimale de numerar",
- "cash_decimals_tooltip" => "Dacă decimalele în numerar și decimalele monetare sunt aceleași, atunci nu va avea loc nicio rotunjire a numerarului.",
- "cash_rounding" => "Rotunjire numerar",
- "category_dropdown" => "",
- "center" => "Centru",
- "change_apperance_tooltip" => "",
- "comma" => "virgula",
- "company" => "Numele Companiei",
- "company_avatar" => "",
- "company_change_image" => "Schimbați imaginea",
- "company_logo" => "Sigla companiei",
- "company_remove_image" => "Eliminați imaginea",
- "company_required" => "Numele companiei este obligatoriu",
- "company_select_image" => "Selectati imaginea",
- "company_website_url" => "Site-ul Web al companie nu este un URL valid (http://...).",
- "country_codes" => "Cod tara",
- "country_codes_tooltip" => "Lista separata prin virgula a codurilor tarilor pentru cautarea adresei.",
- "currency_code" => "",
- "currency_decimals" => "Zecimale Valuta",
- "currency_symbol" => "Simbol Valuta",
- "current_employee_only" => "",
- "customer_reward" => "Recompensa",
- "customer_reward_duplicate" => "Recompensa trebuie sa fie unica",
- "customer_reward_enable" => "Activatie Recompensare Client",
- "customer_reward_invalid_chars" => "Recompensa nu poate contine '_'",
- "customer_reward_required" => "Recompensa este un camp obligatoriu",
- "customer_sales_tax_support" => "Suport Clienti privind Taxele pe Vanzari",
- "date_or_time_format" => "Filtru Data si Timp",
- "datetimeformat" => "Format Data si Timp",
- "decimal_point" => "",
- "default_barcode_font_size_number" => "",
- "default_barcode_font_size_required" => "",
- "default_barcode_height_number" => "",
- "default_barcode_height_required" => "",
- "default_barcode_num_in_row_number" => "",
- "default_barcode_num_in_row_required" => "",
- "default_barcode_page_cellspacing_number" => "",
- "default_barcode_page_cellspacing_required" => "",
- "default_barcode_page_width_number" => "",
- "default_barcode_page_width_required" => "",
- "default_barcode_width_number" => "",
- "default_barcode_width_required" => "",
- "default_item_columns" => "",
- "default_origin_tax_code" => "",
- "default_receivings_discount" => "",
- "default_receivings_discount_number" => "",
- "default_receivings_discount_required" => "",
- "default_sales_discount" => "",
- "default_sales_discount_number" => "",
- "default_sales_discount_required" => "",
- "default_tax_category" => "",
- "default_tax_code" => "",
- "default_tax_jurisdiction" => "",
- "default_tax_name_number" => "",
- "default_tax_name_required" => "",
- "default_tax_rate" => "",
- "default_tax_rate_1" => "",
- "default_tax_rate_2" => "",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "",
- "default_tax_rate_required" => "",
- "derive_sale_quantity" => "",
- "derive_sale_quantity_tooltip" => "",
- "dinner_table" => "",
- "dinner_table_duplicate" => "",
- "dinner_table_enable" => "",
- "dinner_table_invalid_chars" => "",
- "dinner_table_required" => "",
- "dot" => "",
- "email" => "",
- "email_configuration" => "",
- "email_mailpath" => "",
- "email_protocol" => "",
- "email_receipt_check_behaviour" => "",
- "email_receipt_check_behaviour_always" => "",
- "email_receipt_check_behaviour_last" => "",
- "email_receipt_check_behaviour_never" => "",
- "email_smtp_crypto" => "",
- "email_smtp_host" => "",
- "email_smtp_pass" => "",
- "email_smtp_port" => "",
- "email_smtp_timeout" => "",
- "email_smtp_user" => "",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "",
- "enforce_privacy_tooltip" => "",
- "fax" => "",
- "file_perm" => "There are problems with file permissions please fix and reload this page.",
- "financial_year" => "",
- "financial_year_apr" => "",
- "financial_year_aug" => "",
- "financial_year_dec" => "",
- "financial_year_feb" => "",
- "financial_year_jan" => "",
- "financial_year_jul" => "",
- "financial_year_jun" => "",
- "financial_year_mar" => "",
- "financial_year_may" => "",
- "financial_year_nov" => "",
- "financial_year_oct" => "",
- "financial_year_sep" => "",
- "floating_labels" => "",
- "gcaptcha_enable" => "",
- "gcaptcha_secret_key" => "",
- "gcaptcha_secret_key_required" => "",
- "gcaptcha_site_key" => "",
- "gcaptcha_site_key_required" => "",
- "gcaptcha_tooltip" => "",
- "general" => "",
- "general_configuration" => "",
- "giftcard_number" => "",
- "giftcard_random" => "",
- "giftcard_series" => "",
- "image_allowed_file_types" => "",
- "image_max_height_tooltip" => "",
- "image_max_size_tooltip" => "",
- "image_max_width_tooltip" => "",
- "image_restrictions" => "",
- "include_hsn" => "",
- "info" => "",
- "info_configuration" => "",
- "input_groups" => "",
- "integrations" => "",
- "integrations_configuration" => "",
- "invoice" => "",
- "invoice_configuration" => "",
- "invoice_default_comments" => "",
- "invoice_email_message" => "",
- "invoice_enable" => "",
- "invoice_printer" => "",
- "invoice_type" => "",
- "is_readable" => "",
- "is_writable" => "is writable, but the permissions are higher than 750.",
- "item_markup" => "",
- "jsprintsetup_required" => "",
- "language" => "",
- "last_used_invoice_number" => "",
- "last_used_quote_number" => "",
- "last_used_work_order_number" => "",
- "left" => "",
- "license" => "",
- "license_configuration" => "",
- "line_sequence" => "",
- "lines_per_page" => "",
- "lines_per_page_number" => "",
- "lines_per_page_required" => "",
- "locale" => "",
- "locale_configuration" => "",
- "locale_info" => "",
- "location" => "",
- "location_configuration" => "",
- "location_info" => "",
- "login_form" => "",
- "logout" => "",
- "mailchimp" => "",
- "mailchimp_api_key" => "",
- "mailchimp_configuration" => "",
- "mailchimp_key_successfully" => "",
- "mailchimp_key_unsuccessfully" => "",
- "mailchimp_lists" => "",
- "mailchimp_tooltip" => "",
- "message" => "",
- "message_configuration" => "",
- "msg_msg" => "",
- "msg_msg_placeholder" => "",
- "msg_pwd" => "",
- "msg_pwd_required" => "",
- "msg_src" => "",
- "msg_src_required" => "",
- "msg_uid" => "",
- "msg_uid_required" => "",
- "multi_pack_enabled" => "",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "",
- "notify_alignment" => "",
- "number_format" => "",
- "number_locale" => "",
- "number_locale_invalid" => "",
- "number_locale_required" => "",
- "number_locale_tooltip" => "",
- "os_timezone" => "",
- "ospos_info" => "",
- "payment_options_order" => "",
- "perm_risk" => "Permissions higher than 750 leaves this software at risk.",
- "phone" => "",
- "phone_required" => "",
- "print_bottom_margin" => "",
- "print_bottom_margin_number" => "",
- "print_bottom_margin_required" => "",
- "print_delay_autoreturn" => "",
- "print_delay_autoreturn_number" => "",
- "print_delay_autoreturn_required" => "",
- "print_footer" => "",
- "print_header" => "",
- "print_left_margin" => "",
- "print_left_margin_number" => "",
- "print_left_margin_required" => "",
- "print_receipt_check_behaviour" => "",
- "print_receipt_check_behaviour_always" => "",
- "print_receipt_check_behaviour_last" => "",
- "print_receipt_check_behaviour_never" => "",
- "print_right_margin" => "",
- "print_right_margin_number" => "",
- "print_right_margin_required" => "",
- "print_silently" => "",
- "print_top_margin" => "",
- "print_top_margin_number" => "",
- "print_top_margin_required" => "",
- "quantity_decimals" => "",
- "quick_cash_enable" => "",
- "quote_default_comments" => "",
- "receipt" => "",
- "receipt_category" => "",
- "receipt_configuration" => "",
- "receipt_default" => "",
- "receipt_font_size" => "",
- "receipt_font_size_number" => "",
- "receipt_font_size_required" => "",
- "receipt_info" => "",
- "receipt_printer" => "",
- "receipt_short" => "",
- "receipt_show_company_name" => "",
- "receipt_show_description" => "",
- "receipt_show_serialnumber" => "",
- "receipt_show_tax_ind" => "",
- "receipt_show_taxes" => "",
- "receipt_show_total_discount" => "",
- "receipt_template" => "",
- "receiving_calculate_average_price" => "",
- "recv_invoice_format" => "",
- "register_mode_default" => "",
- "report_an_issue" => "",
- "return_policy_required" => "",
- "reward" => "",
- "reward_configuration" => "",
- "right" => "",
- "sales_invoice_format" => "",
- "sales_quote_format" => "",
- "mailpath_invalid" => "",
- "saved_successfully" => "",
- "saved_unsuccessfully" => "",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "Please use the below info for issue reporting.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "",
- "statistics" => "",
- "statistics_tooltip" => "",
- "stock_location" => "",
- "stock_location_duplicate" => "",
- "stock_location_invalid_chars" => "",
- "stock_location_required" => "",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "",
- "suggestions_second_column" => "",
- "suggestions_third_column" => "",
- "system_conf" => "Setup & Conf",
- "system_info" => "System Info",
- "table" => "",
- "table_configuration" => "",
- "takings_printer" => "",
- "tax" => "",
- "tax_category" => "",
- "tax_category_duplicate" => "",
- "tax_category_invalid_chars" => "",
- "tax_category_required" => "",
- "tax_category_used" => "",
- "tax_configuration" => "",
- "tax_decimals" => "",
- "tax_id" => "",
- "tax_included" => "",
- "theme" => "",
- "theme_preview" => "",
- "thousands_separator" => "",
- "timezone" => "",
- "timezone_error" => "",
- "top" => "",
- "use_destination_based_tax" => "",
- "user_timezone" => "",
- "website" => "",
- "wholesale_markup" => "",
- "work_order_enable" => "",
- "work_order_format" => "",
+ 'address' => 'Adresa companiei',
+ 'address_required' => 'Adresa companiei este un câmp obligatoriu.',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => 'Permiteți coduri de bare duplicate',
+ 'apostrophe' => 'apostrof',
+ 'backup_button' => 'Backup',
+ 'backup_database' => 'Rezervă de date',
+ 'barcode' => 'Barcode',
+ 'barcode_company' => 'Numele Companiei',
+ 'barcode_configuration' => 'Configurarea codului de bare',
+ 'barcode_content' => 'Conținutul codului de bare',
+ 'barcode_first_row' => 'Rândul 1',
+ 'barcode_font' => 'Font',
+ 'barcode_formats' => 'Formate de intrare',
+ 'barcode_generate_if_empty' => 'Generați dacă este gol.',
+ 'barcode_height' => 'Înălțime (px)',
+ 'barcode_id' => 'Element Id / Nume',
+ 'barcode_info' => 'Informații privind configurația codurilor de bare',
+ 'barcode_layout' => 'Formatul de coduri de bare',
+ 'barcode_name' => 'Nume',
+ 'barcode_number' => 'Cod de bare',
+ 'barcode_number_in_row' => 'Numar în rânduri',
+ 'barcode_page_cellspacing' => 'Afișați spațiul celular în pagină.',
+ 'barcode_page_width' => 'Afișați lățimea paginii',
+ 'barcode_price' => 'Preț',
+ 'barcode_second_row' => 'Rândul 2',
+ 'barcode_third_row' => 'Rândul 3',
+ 'barcode_tooltip' => 'Avertisment: această caracteristică poate determina importul sau crearea elementelor duplicate. Nu utilizați dacă nu doriți coduri de bare duplicat.',
+ 'barcode_type' => 'Tipul codului de bare',
+ 'barcode_width' => 'Lățime (px)',
+ 'bottom' => 'Subsol',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Decimale de numerar',
+ 'cash_decimals_tooltip' => 'Dacă decimalele în numerar și decimalele monetare sunt aceleași, atunci nu va avea loc nicio rotunjire a numerarului.',
+ 'cash_rounding' => 'Rotunjire numerar',
+ 'category_dropdown' => '',
+ 'center' => 'Centru',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'virgula',
+ 'company' => 'Numele Companiei',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Schimbați imaginea',
+ 'company_logo' => 'Sigla companiei',
+ 'company_remove_image' => 'Eliminați imaginea',
+ 'company_required' => 'Numele companiei este obligatoriu',
+ 'company_select_image' => 'Selectati imaginea',
+ 'company_website_url' => 'Site-ul Web al companie nu este un URL valid (http://...).',
+ 'country_codes' => 'Cod tara',
+ 'country_codes_tooltip' => 'Lista separata prin virgula a codurilor tarilor pentru cautarea adresei.',
+ 'currency_code' => '',
+ 'currency_decimals' => 'Zecimale Valuta',
+ 'currency_symbol' => 'Simbol Valuta',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Recompensa',
+ 'customer_reward_duplicate' => 'Recompensa trebuie sa fie unica',
+ 'customer_reward_enable' => 'Activatie Recompensare Client',
+ 'customer_reward_invalid_chars' => "Recompensa nu poate contine '_'",
+ 'customer_reward_required' => 'Recompensa este un camp obligatoriu',
+ 'customer_sales_tax_support' => 'Suport Clienti privind Taxele pe Vanzari',
+ 'date_or_time_format' => 'Filtru Data si Timp',
+ 'datetimeformat' => 'Format Data si Timp',
+ 'decimal_point' => '',
+ 'default_barcode_font_size_number' => '',
+ 'default_barcode_font_size_required' => '',
+ 'default_barcode_height_number' => '',
+ 'default_barcode_height_required' => '',
+ 'default_barcode_num_in_row_number' => '',
+ 'default_barcode_num_in_row_required' => '',
+ 'default_barcode_page_cellspacing_number' => '',
+ 'default_barcode_page_cellspacing_required' => '',
+ 'default_barcode_page_width_number' => '',
+ 'default_barcode_page_width_required' => '',
+ 'default_barcode_width_number' => '',
+ 'default_barcode_width_required' => '',
+ 'default_item_columns' => '',
+ 'default_origin_tax_code' => '',
+ 'default_receivings_discount' => '',
+ 'default_receivings_discount_number' => '',
+ 'default_receivings_discount_required' => '',
+ 'default_sales_discount' => '',
+ 'default_sales_discount_number' => '',
+ 'default_sales_discount_required' => '',
+ 'default_tax_category' => '',
+ 'default_tax_code' => '',
+ 'default_tax_jurisdiction' => '',
+ 'default_tax_name_number' => '',
+ 'default_tax_name_required' => '',
+ 'default_tax_rate' => '',
+ 'default_tax_rate_1' => '',
+ 'default_tax_rate_2' => '',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => '',
+ 'default_tax_rate_required' => '',
+ 'derive_sale_quantity' => '',
+ 'derive_sale_quantity_tooltip' => '',
+ 'dinner_table' => '',
+ 'dinner_table_duplicate' => '',
+ 'dinner_table_enable' => '',
+ 'dinner_table_invalid_chars' => '',
+ 'dinner_table_required' => '',
+ 'dot' => '',
+ 'email' => '',
+ 'email_configuration' => '',
+ 'email_mailpath' => '',
+ 'email_protocol' => '',
+ 'email_receipt_check_behaviour' => '',
+ 'email_receipt_check_behaviour_always' => '',
+ 'email_receipt_check_behaviour_last' => '',
+ 'email_receipt_check_behaviour_never' => '',
+ 'email_smtp_crypto' => '',
+ 'email_smtp_host' => '',
+ 'email_smtp_pass' => '',
+ 'email_smtp_port' => '',
+ 'email_smtp_timeout' => '',
+ 'email_smtp_user' => '',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => '',
+ 'enforce_privacy_tooltip' => '',
+ 'fax' => '',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => '',
+ 'financial_year_apr' => '',
+ 'financial_year_aug' => '',
+ 'financial_year_dec' => '',
+ 'financial_year_feb' => '',
+ 'financial_year_jan' => '',
+ 'financial_year_jul' => '',
+ 'financial_year_jun' => '',
+ 'financial_year_mar' => '',
+ 'financial_year_may' => '',
+ 'financial_year_nov' => '',
+ 'financial_year_oct' => '',
+ 'financial_year_sep' => '',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => '',
+ 'gcaptcha_secret_key' => '',
+ 'gcaptcha_secret_key_required' => '',
+ 'gcaptcha_site_key' => '',
+ 'gcaptcha_site_key_required' => '',
+ 'gcaptcha_tooltip' => '',
+ 'general' => '',
+ 'general_configuration' => '',
+ 'giftcard_number' => '',
+ 'giftcard_random' => '',
+ 'giftcard_series' => '',
+ 'image_allowed_file_types' => '',
+ 'image_max_height_tooltip' => '',
+ 'image_max_size_tooltip' => '',
+ 'image_max_width_tooltip' => '',
+ 'image_restrictions' => '',
+ 'include_hsn' => '',
+ 'info' => '',
+ 'info_configuration' => '',
+ 'input_groups' => '',
+ 'integrations' => '',
+ 'integrations_configuration' => '',
+ 'invoice' => '',
+ 'invoice_configuration' => '',
+ 'invoice_default_comments' => '',
+ 'invoice_email_message' => '',
+ 'invoice_enable' => '',
+ 'invoice_printer' => '',
+ 'invoice_type' => '',
+ 'is_readable' => '',
+ 'is_writable' => 'is writable, but the permissions are higher than 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => '',
+ 'language' => '',
+ 'last_used_invoice_number' => '',
+ 'last_used_quote_number' => '',
+ 'last_used_work_order_number' => '',
+ 'left' => '',
+ 'license' => '',
+ 'license_configuration' => '',
+ 'line_sequence' => '',
+ 'lines_per_page' => '',
+ 'lines_per_page_number' => '',
+ 'lines_per_page_required' => '',
+ 'locale' => '',
+ 'locale_configuration' => '',
+ 'locale_info' => '',
+ 'location' => '',
+ 'location_configuration' => '',
+ 'location_info' => '',
+ 'login_form' => '',
+ 'logout' => '',
+ 'mailchimp' => '',
+ 'mailchimp_api_key' => '',
+ 'mailchimp_configuration' => '',
+ 'mailchimp_key_successfully' => '',
+ 'mailchimp_key_unsuccessfully' => '',
+ 'mailchimp_lists' => '',
+ 'mailchimp_tooltip' => '',
+ 'message' => '',
+ 'message_configuration' => '',
+ 'msg_msg' => '',
+ 'msg_msg_placeholder' => '',
+ 'msg_pwd' => '',
+ 'msg_pwd_required' => '',
+ 'msg_src' => '',
+ 'msg_src_required' => '',
+ 'msg_uid' => '',
+ 'msg_uid_required' => '',
+ 'multi_pack_enabled' => '',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => '',
+ 'notify_alignment' => '',
+ 'number_format' => '',
+ 'number_locale' => '',
+ 'number_locale_invalid' => '',
+ 'number_locale_required' => '',
+ 'number_locale_tooltip' => '',
+ 'os_timezone' => '',
+ 'ospos_info' => '',
+ 'payment_options_order' => '',
+ 'payment_reference_code_length_limits' => 'Cod de referință plată
Limite de lungime',
+ 'payment_reference_code_length_max_label' => 'Max',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => 'Permissions higher than 750 leaves this software at risk.',
+ 'phone' => '',
+ 'phone_required' => '',
+ 'print_bottom_margin' => '',
+ 'print_bottom_margin_number' => '',
+ 'print_bottom_margin_required' => '',
+ 'print_delay_autoreturn' => '',
+ 'print_delay_autoreturn_number' => '',
+ 'print_delay_autoreturn_required' => '',
+ 'print_footer' => '',
+ 'print_header' => '',
+ 'print_left_margin' => '',
+ 'print_left_margin_number' => '',
+ 'print_left_margin_required' => '',
+ 'print_receipt_check_behaviour' => '',
+ 'print_receipt_check_behaviour_always' => '',
+ 'print_receipt_check_behaviour_last' => '',
+ 'print_receipt_check_behaviour_never' => '',
+ 'print_right_margin' => '',
+ 'print_right_margin_number' => '',
+ 'print_right_margin_required' => '',
+ 'print_silently' => '',
+ 'print_top_margin' => '',
+ 'print_top_margin_number' => '',
+ 'print_top_margin_required' => '',
+ 'quantity_decimals' => '',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => '',
+ 'receipt' => '',
+ 'receipt_category' => '',
+ 'receipt_configuration' => '',
+ 'receipt_default' => '',
+ 'receipt_font_size' => '',
+ 'receipt_font_size_number' => '',
+ 'receipt_font_size_required' => '',
+ 'receipt_info' => '',
+ 'receipt_printer' => '',
+ 'receipt_short' => '',
+ 'receipt_show_company_name' => '',
+ 'receipt_show_description' => '',
+ 'receipt_show_serialnumber' => '',
+ 'receipt_show_tax_ind' => '',
+ 'receipt_show_taxes' => '',
+ 'receipt_show_total_discount' => '',
+ 'receipt_template' => '',
+ 'receiving_calculate_average_price' => '',
+ 'recv_invoice_format' => '',
+ 'register_mode_default' => '',
+ 'report_an_issue' => '',
+ 'return_policy_required' => '',
+ 'reward' => '',
+ 'reward_configuration' => '',
+ 'right' => '',
+ 'sales_invoice_format' => '',
+ 'sales_quote_format' => '',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => '',
+ 'saved_unsuccessfully' => '',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Please use the below info for issue reporting.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => '',
+ 'statistics' => '',
+ 'statistics_tooltip' => '',
+ 'stock_location' => '',
+ 'stock_location_duplicate' => '',
+ 'stock_location_invalid_chars' => '',
+ 'stock_location_required' => '',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => '',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => '',
+ 'suggestions_second_column' => '',
+ 'suggestions_third_column' => '',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => '',
+ 'table_configuration' => '',
+ 'takings_printer' => '',
+ 'tax' => '',
+ 'tax_category' => '',
+ 'tax_category_duplicate' => '',
+ 'tax_category_invalid_chars' => '',
+ 'tax_category_required' => '',
+ 'tax_category_used' => '',
+ 'tax_configuration' => '',
+ 'tax_decimals' => '',
+ 'tax_id' => '',
+ 'tax_included' => '',
+ 'theme' => '',
+ 'theme_preview' => '',
+ 'thousands_separator' => '',
+ 'timezone' => '',
+ 'timezone_error' => '',
+ 'top' => '',
+ 'use_destination_based_tax' => '',
+ 'user_timezone' => '',
+ 'website' => '',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => '',
+ 'work_order_format' => '',
];
diff --git a/app/Language/ro/Login.php b/app/Language/ro/Login.php
index 652c3f22c..75de2a599 100644
--- a/app/Language/ro/Login.php
+++ b/app/Language/ro/Login.php
@@ -1,25 +1,30 @@
"",
- "go" => "",
- "invalid_gcaptcha" => "",
- "invalid_installation" => "",
- "invalid_username_and_password" => "",
- "login" => "",
- "logout" => "",
- "migration_needed" => "",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "",
- "required_username" => "",
- "username" => "",
- "welcome" => "",
+ "gcaptcha" => "",
+ "go" => "",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "",
+ "invalid_installation" => "",
+ "invalid_username_and_password" => "",
+ "login" => "",
+ "logout" => "",
+ "migrating_database" => "Migrare bază de date",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "Baza de date a fost migrată cu succes!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "",
+ "required_username" => "",
+ "username" => "",
+ "welcome" => ""
];
diff --git a/app/Language/ro/Sales.php b/app/Language/ro/Sales.php
index 4370f287a..1246d25c0 100644
--- a/app/Language/ro/Sales.php
+++ b/app/Language/ro/Sales.php
@@ -1,231 +1,235 @@
"Puncte disponibile",
- "rewards_package" => "Recompense",
- "rewards_remaining_balance" => "Valoarea ramasa a punctelor de fidelizare este ",
- "account_number" => "Cont #",
- "add_payment" => "Adauga Plata",
- "amount_due" => "Suma datorata",
- "amount_tendered" => "Suma Oferita",
- "authorized_signature" => "Semnatura Autorizata",
- "cancel_sale" => "Anuleaza",
- "cash" => "Numerar",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "",
- "cash_deposit" => "Depozit Numerar",
- "cash_filter" => "Numerar",
- "change_due" => "Rest datorat",
- "change_price" => "",
- "check" => "Bon/cec",
- "check_balance" => "Verificati restul",
- "check_filter" => "Bon/cec",
- "close" => "",
- "comment" => "Comentariu",
- "comments" => "Comentarii",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Finalizare",
- "confirm_cancel_sale" => "Sigur vreti sa eliminati aceasta vanzare? Toate articolele vor fi sterse.",
- "confirm_delete" => "Sigur doriti stergerea Vanzarii/Vanzarilor selectate?",
- "confirm_restore" => "Sigur doriti restabilirea Vanzarii/Vanzarilor selectate?",
- "credit" => "Card Credit",
- "credit_deposit" => "Depozit Credit",
- "credit_filter" => "",
- "current_table" => "",
- "customer" => "Nume",
- "customer_address" => "Adresa",
- "customer_discount" => "Reducere",
- "customer_email" => "Email",
- "customer_location" => "Amplasare",
- "customer_mailchimp_status" => "Situatie Mailchimp",
- "customer_optional" => "(Optional)",
- "customer_required" => "(Necesar)",
- "customer_total" => "Total",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Data Vanzare",
- "date_range" => "Perioada",
- "date_required" => "Trebuie introdusa o data corecta.",
- "date_type" => "Data este un camp obligatoriu.",
- "debit" => "Card Debit",
- "debit_filter" => "",
- "delete" => "Permite Stergerea",
- "delete_confirmation" => "Sigur doriti stergerea acestei vanzari? Nu puteti reveni anterior dupa aceasta actiune.",
- "delete_entire_sale" => "Sterge Toata Vanzarea",
- "delete_successful" => "Stergere vanzare reusita.",
- "delete_unsuccessful" => "Stergere vanzare nereusita.",
- "description_abbrv" => "Desc.",
- "discard" => "Renunta",
- "discard_quote" => "",
- "discount" => "Reducere",
- "discount_included" => "% Reducere",
- "discount_short" => "%",
- "due" => "Datorat",
- "due_filter" => "De plata",
- "edit" => "Editare",
- "edit_item" => "Editare Articol",
- "edit_sale" => "Editare Vanzare",
- "email_receipt" => "Transmite Chitanta pe email",
- "employee" => "Salariat",
- "entry" => "Intrare",
- "error_editing_item" => "Eroare editare articol",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Gaseste sau scaneaza Articol",
- "find_or_scan_item_or_receipt" => "Gaseste sau scaneaza Articol sau Chitanta",
- "giftcard" => "Card Cadou",
- "giftcard_balance" => "Sold Card Cadou",
- "giftcard_filter" => "",
- "giftcard_number" => "Numar Card Cadou",
- "group_by_category" => "Grupare dupa Categorie",
- "group_by_type" => "Grupare dupa Tip",
- "hsn" => "HSN",
- "id" => "ID Vanzare",
- "include_prices" => "Include Preturi?",
- "invoice" => "Factura",
- "invoice_confirm" => "Aceasta factura va fi trimisa catre",
- "invoice_enable" => "Creare Factura",
- "invoice_filter" => "Facturi",
- "invoice_no_email" => "Adresa de email a acestui client nu este valida.",
- "invoice_number" => "Factura #",
- "invoice_number_duplicate" => "Numar Factura trebuie sa fie unic.",
- "invoice_sent" => "Factura trimisa catre",
- "invoice_total" => "Total Factura",
- "invoice_type_custom_invoice" => "Factura Personalizata (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Factura Fiscala Personalizata (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Factura (invoice.php)",
- "invoice_type_tax_invoice" => "Factura Fiscala (tax_invoice.php)",
- "invoice_unsent" => "Factura nu a putut fi trimisă catre",
- "invoice_update" => "Renumara",
- "item_insufficient_of_stock" => "Articol cu fara stoc suficient.",
- "item_name" => "Nume Articol",
- "item_number" => "Articol #",
- "item_out_of_stock" => "Articolul nu este in stoc.",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "Mod inregistrare",
- "must_enter_numeric" => "Valoare ofertata trebuie sa fie numerica.",
- "must_enter_numeric_giftcard" => "Numar Card Cadou trebuie sa fie numeric.",
- "new_customer" => "Client nou",
- "new_item" => "Articol nou",
- "no_description" => "Fara descriere",
- "no_filter" => "Toate",
- "no_items_in_cart" => "Nu sunt articole in cosul de cumparaturi.",
- "no_sales_to_display" => "Nu sunt Vanzari de afisat.",
- "none_selected" => "Nu ati selecta nicio Vanzare de sters.",
- "nontaxed_ind" => "",
- "not_authorized" => "Aceasta actiune nu este autorizata.",
- "one_or_multiple" => "Vanzare(i)",
- "payment" => "Tip Plata",
- "payment_amount" => "Valoare",
- "payment_not_cover_total" => "Valoarea de Plata trebuie sa fie mai mare sau egala decat Totalul.",
- "payment_type" => "Tip",
- "payments" => "",
- "payments_total" => "Total Plati",
- "price" => "Pret",
- "print_after_sale" => "Tipareste dupa Vanzare",
- "quantity" => "Cantitate",
- "quantity_less_than_reorder_level" => "Avertisment: Cantitatea dorita este sub nivelul de resuplinire a acestui Articol.",
- "quantity_less_than_zero" => "Avertisment: Cantitatea dorita este insuficienta. Vanzarea poate continua, dar verificati-va stocul.",
- "quantity_of_items" => "Cantitatea a {0} Articole",
- "quote" => "Cotatie",
- "quote_number" => "Numar Cotatie",
- "quote_number_duplicate" => "Numar Cotatie trebuie sa fie unic.",
- "quote_sent" => "Cotatie trimisa catre",
- "quote_unsent" => "Timitere cotatie nereusita catre",
- "receipt" => "Chitanta Vanzari",
- "receipt_no_email" => "Acest client nu are adresa de email valida.",
- "receipt_number" => "Vanzare #",
- "receipt_sent" => "Chitanta trimisa catre",
- "receipt_unsent" => "Trimitere chitanta nereusita catre",
- "refund" => "",
- "register" => "Registru Vanzari",
- "remove_customer" => "Eliminati Clientul",
- "remove_discount" => "",
- "return" => "Inapoiere",
- "rewards" => "Puncte fidelizare",
- "rewards_balance" => "Sold Puncte fidelizare",
- "sale" => "Vanzare",
- "sale_by_invoice" => "Vanzare cu Factura",
- "sale_for_customer" => "Client:",
- "sale_time" => "Timp",
- "sales_tax" => "Taxa",
- "sales_total" => "",
- "select_customer" => "Selectare Client",
- "send_invoice" => "Trimite Factura",
- "send_quote" => "Trimite Cotatie",
- "send_receipt" => "Trimite Chitanta",
- "send_work_order" => "Trimite Comanda de Lucru",
- "serial" => "Serie",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Arata Factura",
- "show_receipt" => "Arata Chitanta",
- "start_typing_customer_name" => "Incepeti sa tastati detaliile clientului ...",
- "start_typing_item_name" => "Incepeti tastarea Nume Articol sau scanati Cod de bare ...",
- "stock" => "Stoc",
- "stock_location" => "Locatie Stoc",
- "sub_total" => "Subtotal",
- "successfully_deleted" => "Ati reusit stergerea",
- "successfully_restored" => "Ati reusit restaurarea",
- "successfully_suspended_sale" => "Suspendare vanzare reusita.",
- "successfully_updated" => "Actualizare vanzare reusita.",
- "suspend_sale" => "Suspendare",
- "suspended_doc_id" => "Document",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Suspendata",
- "table" => "Masa",
- "takings" => "Vanzari Zilnice",
- "tax" => "Taxa",
- "tax_id" => "Id Taxa",
- "tax_invoice" => "Factura Fiscala",
- "tax_percent" => "Taxa %",
- "taxed_ind" => "",
- "total" => "Total",
- "total_tax_exclusive" => "Fara taxe",
- "transaction_failed" => "Tranzactie nereusita.",
- "unable_to_add_item" => "Adaugare articol la Vanzare nereusita",
- "unsuccessfully_deleted" => "Stergere Vanzare(i) nereusita.",
- "unsuccessfully_restored" => "Restaurare Vanzare(i) nereusita.",
- "unsuccessfully_suspended_sale" => "Suspendare Vanzare nereusita.",
- "unsuccessfully_updated" => "Actualizare Vanzare nereusita.",
- "unsuspend" => "Nesuspendata",
- "unsuspend_and_delete" => "Actiune",
- "update" => "Actualizare",
- "upi" => "",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "",
- "work_order_number" => "",
- "work_order_number_duplicate" => "",
- "work_order_sent" => "",
- "work_order_unsent" => "",
+ 'account_number' => 'Cont #',
+ 'add_payment' => 'Adauga Plata',
+ 'amount_due' => 'Suma datorata',
+ 'amount_tendered' => 'Suma Oferita',
+ 'authorized_signature' => 'Semnatura Autorizata',
+ 'cancel_sale' => 'Anuleaza',
+ 'cash' => 'Numerar',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => '',
+ 'cash_deposit' => 'Depozit Numerar',
+ 'cash_filter' => 'Numerar',
+ 'change_due' => 'Rest datorat',
+ 'change_price' => '',
+ 'check' => 'Bon/cec',
+ 'check_balance' => 'Verificati restul',
+ 'check_filter' => 'Bon/cec',
+ 'close' => '',
+ 'comment' => 'Comentariu',
+ 'comments' => 'Comentarii',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Finalizare',
+ 'confirm_cancel_sale' => 'Sigur vreti sa eliminati aceasta vanzare? Toate articolele vor fi sterse.',
+ 'confirm_delete' => 'Sigur doriti stergerea Vanzarii/Vanzarilor selectate?',
+ 'confirm_restore' => 'Sigur doriti restabilirea Vanzarii/Vanzarilor selectate?',
+ 'credit' => 'Card Credit',
+ 'credit_deposit' => 'Depozit Credit',
+ 'credit_filter' => '',
+ 'current_table' => '',
+ 'customer' => 'Nume',
+ 'customer_address' => 'Adresa',
+ 'customer_discount' => 'Reducere',
+ 'customer_email' => 'Email',
+ 'customer_location' => 'Amplasare',
+ 'customer_mailchimp_status' => 'Situatie Mailchimp',
+ 'customer_optional' => '(Optional)',
+ 'customer_required' => '(Necesar)',
+ 'customer_total' => 'Total',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Puncte disponibile',
+ 'daily_sales' => '',
+ 'date' => 'Data Vanzare',
+ 'date_range' => 'Perioada',
+ 'date_required' => 'Trebuie introdusa o data corecta.',
+ 'date_type' => 'Data este un camp obligatoriu.',
+ 'debit' => 'Card Debit',
+ 'debit_filter' => '',
+ 'delete' => 'Permite Stergerea',
+ 'delete_confirmation' => 'Sigur doriti stergerea acestei vanzari? Nu puteti reveni anterior dupa aceasta actiune.',
+ 'delete_entire_sale' => 'Sterge Toata Vanzarea',
+ 'delete_successful' => 'Stergere vanzare reusita.',
+ 'delete_unsuccessful' => 'Stergere vanzare nereusita.',
+ 'description_abbrv' => 'Desc.',
+ 'discard' => 'Renunta',
+ 'discard_quote' => '',
+ 'discount' => 'Reducere',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Reducere',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'Datorat',
+ 'due_filter' => 'De plata',
+ 'edit' => 'Editare',
+ 'edit_item' => 'Editare Articol',
+ 'edit_sale' => 'Editare Vanzare',
+ 'email_receipt' => 'Transmite Chitanta pe email',
+ 'employee' => 'Salariat',
+ 'entry' => 'Intrare',
+ 'error_editing_item' => 'Eroare editare articol',
+ 'find_or_scan_item' => 'Gaseste sau scaneaza Articol',
+ 'find_or_scan_item_or_receipt' => 'Gaseste sau scaneaza Articol sau Chitanta',
+ 'giftcard' => 'Card Cadou',
+ 'giftcard_balance' => 'Sold Card Cadou',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Numar Card Cadou',
+ 'group_by_category' => 'Grupare dupa Categorie',
+ 'group_by_type' => 'Grupare dupa Tip',
+ 'hsn' => 'HSN',
+ 'id' => 'ID Vanzare',
+ 'include_prices' => 'Include Preturi?',
+ 'invoice' => 'Factura',
+ 'invoice_confirm' => 'Aceasta factura va fi trimisa catre',
+ 'invoice_enable' => 'Creare Factura',
+ 'invoice_filter' => 'Facturi',
+ 'invoice_no_email' => 'Adresa de email a acestui client nu este valida.',
+ 'invoice_number' => 'Factura #',
+ 'invoice_number_duplicate' => 'Numar Factura trebuie sa fie unic.',
+ 'invoice_sent' => 'Factura trimisa catre',
+ 'invoice_total' => 'Total Factura',
+ 'invoice_type_custom_invoice' => 'Factura Personalizata (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Factura Fiscala Personalizata (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Factura (invoice.php)',
+ 'invoice_type_tax_invoice' => 'Factura Fiscala (tax_invoice.php)',
+ 'invoice_unsent' => 'Factura nu a putut fi trimisă catre',
+ 'invoice_update' => 'Renumara',
+ 'item_insufficient_of_stock' => 'Articol cu fara stoc suficient.',
+ 'item_name' => 'Nume Articol',
+ 'item_number' => 'Articol #',
+ 'item_out_of_stock' => 'Articolul nu este in stoc.',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'Mod inregistrare',
+ 'must_enter_numeric' => 'Valoare ofertata trebuie sa fie numerica.',
+ 'must_enter_numeric_giftcard' => 'Numar Card Cadou trebuie sa fie numeric.',
+ 'must_enter_reference_code' => 'Numărul de referință/recuperare trebuie introdus.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Client nou',
+ 'new_item' => 'Articol nou',
+ 'no_description' => 'Fara descriere',
+ 'no_filter' => 'Toate',
+ 'no_items_in_cart' => 'Nu sunt articole in cosul de cumparaturi.',
+ 'no_sales_to_display' => 'Nu sunt Vanzari de afisat.',
+ 'none_selected' => 'Nu ati selecta nicio Vanzare de sters.',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => 'Aceasta actiune nu este autorizata.',
+ 'one_or_multiple' => 'Vanzare(i)',
+ 'payment' => 'Tip Plata',
+ 'payment_amount' => 'Valoare',
+ 'payment_not_cover_total' => 'Valoarea de Plata trebuie sa fie mai mare sau egala decat Totalul.',
+ 'payment_type' => 'Tip',
+ 'payments' => '',
+ 'payments_total' => 'Total Plati',
+ 'price' => 'Pret',
+ 'print_after_sale' => 'Tipareste dupa Vanzare',
+ 'quantity' => 'Cantitate',
+ 'quantity_less_than_reorder_level' => 'Avertisment: Cantitatea dorita este sub nivelul de resuplinire a acestui Articol.',
+ 'quantity_less_than_zero' => 'Avertisment: Cantitatea dorita este insuficienta. Vanzarea poate continua, dar verificati-va stocul.',
+ 'quantity_of_items' => 'Cantitatea a {0} Articole',
+ 'quote' => 'Cotatie',
+ 'quote_number' => 'Numar Cotatie',
+ 'quote_number_duplicate' => 'Numar Cotatie trebuie sa fie unic.',
+ 'quote_sent' => 'Cotatie trimisa catre',
+ 'quote_unsent' => 'Timitere cotatie nereusita catre',
+ 'receipt' => 'Chitanta Vanzari',
+ 'receipt_no_email' => 'Acest client nu are adresa de email valida.',
+ 'receipt_number' => 'Vanzare #',
+ 'receipt_sent' => 'Chitanta trimisa catre',
+ 'receipt_unsent' => 'Trimitere chitanta nereusita catre',
+ 'reference_code' => 'Cod de referință plată',
+ 'reference_code_invalid_characters' => 'Codul de referință trebuie să conțină doar litere și cifre.',
+ 'reference_code_length_error' => 'Lungimea codului de referință este invalidă.',
+ 'refund' => '',
+ 'register' => 'Registru Vanzari',
+ 'remove_customer' => 'Eliminati Clientul',
+ 'remove_discount' => '',
+ 'return' => 'Inapoiere',
+ 'rewards' => 'Puncte fidelizare',
+ 'rewards_balance' => 'Sold Puncte fidelizare',
+ 'rewards_package' => 'Recompense',
+ 'rewards_remaining_balance' => 'Valoarea ramasa a punctelor de fidelizare este ',
+ 'sale' => 'Vanzare',
+ 'sale_by_invoice' => 'Vanzare cu Factura',
+ 'sale_for_customer' => 'Client:',
+ 'sale_time' => 'Timp',
+ 'sales_tax' => 'Taxa',
+ 'sales_total' => '',
+ 'select_customer' => 'Selectare Client',
+ 'send_invoice' => 'Trimite Factura',
+ 'send_quote' => 'Trimite Cotatie',
+ 'send_receipt' => 'Trimite Chitanta',
+ 'send_work_order' => 'Trimite Comanda de Lucru',
+ 'serial' => 'Serie',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Arata Factura',
+ 'show_receipt' => 'Arata Chitanta',
+ 'start_typing_customer_name' => 'Incepeti sa tastati detaliile clientului ...',
+ 'start_typing_item_name' => 'Incepeti tastarea Nume Articol sau scanati Cod de bare ...',
+ 'stock' => 'Stoc',
+ 'stock_location' => 'Locatie Stoc',
+ 'sub_total' => 'Subtotal',
+ 'successfully_deleted' => 'Ati reusit stergerea',
+ 'successfully_restored' => 'Ati reusit restaurarea',
+ 'successfully_suspended_sale' => 'Suspendare vanzare reusita.',
+ 'successfully_updated' => 'Actualizare vanzare reusita.',
+ 'suspend_sale' => 'Suspendare',
+ 'suspended_doc_id' => 'Document',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Suspendata',
+ 'table' => 'Masa',
+ 'takings' => 'Vanzari Zilnice',
+ 'tax' => 'Taxa',
+ 'tax_id' => 'Id Taxa',
+ 'tax_invoice' => 'Factura Fiscala',
+ 'tax_percent' => 'Taxa %',
+ 'taxed_ind' => '',
+ 'total' => 'Total',
+ 'total_tax_exclusive' => 'Fara taxe',
+ 'transaction_failed' => 'Tranzactie nereusita.',
+ 'unable_to_add_item' => 'Adaugare articol la Vanzare nereusita',
+ 'unsuccessfully_deleted' => 'Stergere Vanzare(i) nereusita.',
+ 'unsuccessfully_restored' => 'Restaurare Vanzare(i) nereusita.',
+ 'unsuccessfully_suspended_sale' => 'Suspendare Vanzare nereusita.',
+ 'unsuccessfully_updated' => 'Actualizare Vanzare nereusita.',
+ 'unsuspend' => 'Nesuspendata',
+ 'unsuspend_and_delete' => 'Actiune',
+ 'update' => 'Actualizare',
+ 'upi' => '',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => '',
+ 'work_order_number' => '',
+ 'work_order_number_duplicate' => '',
+ 'work_order_sent' => '',
+ 'work_order_unsent' => '',
];
diff --git a/app/Language/ru/Config.php b/app/Language/ru/Config.php
index 4b5be199e..79a24feb5 100644
--- a/app/Language/ru/Config.php
+++ b/app/Language/ru/Config.php
@@ -1,332 +1,335 @@
"Адрес компании",
- "address_required" => "Адрес компании - обязательное поле для заполнения.",
- "all_set" => "Все права доступа к файлам установлены правильно!",
- "allow_duplicate_barcodes" => "Разрешить дубликаты штрих-кодов",
- "apostrophe" => "апостроф",
- "backup_button" => "Резервная копия",
- "backup_database" => "Резервная копия базы данных",
- "barcode" => "Штрих-код",
- "barcode_company" => "Название компании",
- "barcode_configuration" => "Параметры штрих-кода",
- "barcode_content" => "Содержание штрих-кода",
- "barcode_first_row" => "Строка 1",
- "barcode_font" => "Шрифт",
- "barcode_formats" => "Формат ввода",
- "barcode_generate_if_empty" => "Сгенерировать новый, если пусто.",
- "barcode_height" => "Высота (пикс.)",
- "barcode_id" => "№ товара/Название",
- "barcode_info" => "Информация о параметрах штрих-кода",
- "barcode_layout" => "Макет штрих-кода",
- "barcode_name" => "Название",
- "barcode_number" => "Штрих-код",
- "barcode_number_in_row" => "Номер в строке",
- "barcode_page_cellspacing" => "Расстояние между ячейками.",
- "barcode_page_width" => "Ширина страницы",
- "barcode_price" => "Цена",
- "barcode_second_row" => "Строка 2",
- "barcode_third_row" => "Строка 3",
- "barcode_tooltip" => "Предупреждение: Эта функция может привести к тому, что будут созданы или импортированы дублирующиеся товары. Не используйте, если вы не хотите дублировать штрих-коды.",
- "barcode_type" => "Тип штрих-кода",
- "barcode_width" => "Ширина (пикс.)",
- "bottom" => "Конец",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Цены - десятичные дроби",
- "cash_decimals_tooltip" => "Если десятичные дроби для цен и валюты совпадают, то это не будет выполняться, если для цен не установлено округление до пяти.",
- "cash_rounding" => "Округление цен",
- "category_dropdown" => "Показывать категории всплывающим списом",
- "center" => "Центр",
- "change_apperance_tooltip" => "",
- "comma" => "Запятая",
- "company" => "Название компании",
- "company_avatar" => "",
- "company_change_image" => "Сменить изображение",
- "company_logo" => "Логотип компании",
- "company_remove_image" => "Удалить изображение",
- "company_required" => "Название компании - обязательное поле для заполнения",
- "company_select_image" => "Выбрать изображение",
- "company_website_url" => "Веб-сайт компании не является допустимым адресом (https://...).",
- "country_codes" => "Коды cтран",
- "country_codes_tooltip" => "Разделенный запятыми список кодов стран для поиска адреса.",
- "currency_code" => "Код валюты",
- "currency_decimals" => "Валюта - десятичные дроби",
- "currency_symbol" => "Символ валюты",
- "current_employee_only" => "",
- "customer_reward" => "Вознаграждение",
- "customer_reward_duplicate" => "Вознаграждение должно быть уникальным.",
- "customer_reward_enable" => "Включить программу лояльности",
- "customer_reward_invalid_chars" => "Вознаграждение не может содержать '_'",
- "customer_reward_required" => "Вознаграждение - обязательное поле для заполнения",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "Фильтр даты и времени",
- "datetimeformat" => "Формат даты и времени",
- "decimal_point" => "Разделитель десятичных",
- "default_barcode_font_size_number" => "Размер шрифта штрих-кода должен быть введен цифрами.",
- "default_barcode_font_size_required" => "Размер шрифта штрих-кода - обязательное поле.",
- "default_barcode_height_number" => "Высота штрих-кода должна быть введена цифрами.",
- "default_barcode_height_required" => "Высота штрих-кода - обязательное поле.",
- "default_barcode_num_in_row_number" => "Номер штрих-кода должен быть введен цифрами.",
- "default_barcode_num_in_row_required" => "Номер штрих-кода - обязательное поле.",
- "default_barcode_page_cellspacing_number" => "Расстояние между ячейками страницы штрих-кода должено быть введено цифрами.",
- "default_barcode_page_cellspacing_required" => "Расстояние между ячейками страницы штрих-кода - обязательное поле.",
- "default_barcode_page_width_number" => "Ширина страницы штрих-кода должна быть введена цифрами.",
- "default_barcode_page_width_required" => "Ширина страницы штрих-кода - обязательное поле.",
- "default_barcode_width_number" => "Ширина штрих-кода должна быть введена цифрами.",
- "default_barcode_width_required" => "Ширина штрих-кода - обязательное поле.",
- "default_item_columns" => "Колонки по умолчанию",
- "default_origin_tax_code" => "Код налога по умолчанию",
- "default_receivings_discount" => "Скидка на закупки по умолчанию",
- "default_receivings_discount_number" => "Скидка на закупки должна быть введена цифрами.",
- "default_receivings_discount_required" => "Скидка на закупки - обязательное поле.",
- "default_sales_discount" => "Скидка с продаж по умолчанию",
- "default_sales_discount_number" => "Скидка с продаж должна быть введена цифрами.",
- "default_sales_discount_required" => "Скидка с продаж - обязательное поле.",
- "default_tax_category" => "Категория налогов по умолчанию",
- "default_tax_code" => "Код налога по умолчанию",
- "default_tax_jurisdiction" => "Налоговая юрисдикция по умолчанию",
- "default_tax_name_number" => "Название налога должно быть строкой.",
- "default_tax_name_required" => "Название налога - обязательное поле.",
- "default_tax_rate" => "Ставка налога по умолчанию (в %)",
- "default_tax_rate_1" => "Ставка налога 1",
- "default_tax_rate_2" => "Ставка налога 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Ставка налога должна быть введена цифрами.",
- "default_tax_rate_required" => "Ставка налога - обязательное поле.",
- "derive_sale_quantity" => "Разрешить кол-во основанное на продажах",
- "derive_sale_quantity_tooltip" => "Если этот флажок установлен, для товаров, заказанных на расширенную сумму, будет предоставлен новый тип товара",
- "dinner_table" => "Столы",
- "dinner_table_duplicate" => "Стол должен быть уникальным.",
- "dinner_table_enable" => "Включить обеденные столы",
- "dinner_table_invalid_chars" => "Название стола не может содержать '_'.",
- "dinner_table_required" => "Название стола - обязательное поле.",
- "dot" => "точка",
- "email" => "Эл. почта",
- "email_configuration" => "Параметры эл. почты",
- "email_mailpath" => "Адрес эл. почты",
- "email_protocol" => "Протокол",
- "email_receipt_check_behaviour" => "Чек по эл. почте",
- "email_receipt_check_behaviour_always" => "Всегда активно",
- "email_receipt_check_behaviour_last" => "Запомнить последний выбор",
- "email_receipt_check_behaviour_never" => "Всегда неактивно",
- "email_smtp_crypto" => "Шифрование SMTP",
- "email_smtp_host" => "Сервер SMTP",
- "email_smtp_pass" => "Пароль SMTP",
- "email_smtp_port" => "Порт SMTP",
- "email_smtp_timeout" => "Задержка SMTP (сек.)",
- "email_smtp_user" => "Имя пользователя SMTP",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Конфиденциальность",
- "enforce_privacy_tooltip" => "Защитите конфиденциальность клиентов, применяя шифрование данных в случае их удаления",
- "fax" => "Факс",
- "file_perm" => "Есть проблемы с правами доступа к файлам. Пожалуйста, исправьте и перезагрузите эту страницу.",
- "financial_year" => "Начало финансового года",
- "financial_year_apr" => "1-е апреля",
- "financial_year_aug" => "1-е августа",
- "financial_year_dec" => "1-е декабря",
- "financial_year_feb" => "1-е февраля",
- "financial_year_jan" => "1-е января",
- "financial_year_jul" => "1-е июля",
- "financial_year_jun" => "1-е июня",
- "financial_year_mar" => "1-е марта",
- "financial_year_may" => "1-е мая",
- "financial_year_nov" => "1-е ноября",
- "financial_year_oct" => "1-е октября",
- "financial_year_sep" => "1-е сентября",
- "floating_labels" => "Всплывающие заголовки",
- "gcaptcha_enable" => "Страница входа с защитой reCAPTCHA",
- "gcaptcha_secret_key" => "reCAPTCHA секретный ключ",
- "gcaptcha_secret_key_required" => "reCAPTCHA секретный ключ - обязательное поле",
- "gcaptcha_site_key" => "reCAPTCHA Ключ сайта",
- "gcaptcha_site_key_required" => "reCAPTCHA Ключ сайта - обязательное поле",
- "gcaptcha_tooltip" => "Защитите страницу входа с помощью Google reCAPTCHA.",
- "general" => "Основные",
- "general_configuration" => "Общие настройки",
- "giftcard_number" => "Номер подарочной карты",
- "giftcard_random" => "Сгенерировать случайно",
- "giftcard_series" => "Сгенерировать в серии",
- "image_allowed_file_types" => "Доступные типы файлов",
- "image_max_height_tooltip" => "Максимально допустимая высота загружаемых изображений в пикселях.",
- "image_max_size_tooltip" => "Максимально допустимый размер загружаемого файла изображения в килобайтах (кб).",
- "image_max_width_tooltip" => "Максимально допустимая ширина загружаемых изображений в пикселях.",
- "image_restrictions" => "Ограничения на загрузку изображений",
- "include_hsn" => "Включить поддержку кодов HSN",
- "info" => "Информация",
- "info_configuration" => "Информация о магазине",
- "input_groups" => "Входные группы",
- "integrations" => "Интеграции",
- "integrations_configuration" => "Сторонние интеграции",
- "invoice" => "Счет (накладная)",
- "invoice_configuration" => "Настройки печати накладной",
- "invoice_default_comments" => "Комментарии к накладной по умолчанию",
- "invoice_email_message" => "Шаблон эл. письма накладной",
- "invoice_enable" => "Включить накладные",
- "invoice_printer" => "Принтер накладных",
- "invoice_type" => "Тип накладной",
- "is_readable" => "доступно для чтения, но права выставлены неправильно. Установите их на 640 или 660 и обновите эту страницу.",
- "is_writable" => "доступно для чтения, но права установлены неправильно. Установите их на 750 и обновите эту страницу.",
- "item_markup" => "",
- "jsprintsetup_required" => "Предупреждение: эта функция будет работать, только если у вас установлено дополнение FireFox jsPrintSetup. Все равно сохранить?",
- "language" => "Язык",
- "last_used_invoice_number" => "Последний использованный номер накладной",
- "last_used_quote_number" => "Последний номер предложения",
- "last_used_work_order_number" => "Последний номер рабочего заказа",
- "left" => "Слева",
- "license" => "Лицензии",
- "license_configuration" => "Заявление о лицензии",
- "line_sequence" => "Последовательность строк",
- "lines_per_page" => "Кол-во строк на страницу",
- "lines_per_page_number" => "Кол-во строк на страницу должно быть введено цифрами.",
- "lines_per_page_required" => "Кол-во строк на страницу - обязательное поле.",
- "locale" => "Локализация",
- "locale_configuration" => "Параметры локализации",
- "locale_info" => "Информация о параметрах локализации",
- "location" => "Склад",
- "location_configuration" => "Расположение складов",
- "location_info" => "Информация о параметрах расположения",
- "login_form" => "Стиль формы входа",
- "logout" => "Вы хотите сделать резервную копию перед выходом из системы? Нажмите [OK] для резервного копирования или [Отмена] для выхода.",
- "mailchimp" => "MailChimp",
- "mailchimp_api_key" => "MailChimp API-ключ",
- "mailchimp_configuration" => "Настройки MailChimp",
- "mailchimp_key_successfully" => "API-ключ верен.",
- "mailchimp_key_unsuccessfully" => "Неверный API-ключ.",
- "mailchimp_lists" => "Списки MailChimp",
- "mailchimp_tooltip" => "Нажмите на значок API-ключа.",
- "message" => "SMS",
- "message_configuration" => "Настройки сообщений",
- "msg_msg" => "Сохраненные текстовые сообщения",
- "msg_msg_placeholder" => "Если вы хотите использовать шаблон SMS, сохраните свое сообщение здесь, в противном случае оставьте поле пустым.",
- "msg_pwd" => "Пароль SMS-API",
- "msg_pwd_required" => "Пароль SMS-API - обязательное поле",
- "msg_src" => "ID отправителя SMS-API",
- "msg_src_required" => "ID отправителя SMS-API - обязательное поле",
- "msg_uid" => "Пользователь SMS-API",
- "msg_uid_required" => "Пользователь SMS-API - обязательное поле",
- "multi_pack_enabled" => "Несколько упаковок на товар",
- "no_risk" => "Нет рисков безопасности/уязвимостей.",
- "none" => "нет",
- "notify_alignment" => "Позиция всплывающего уведомления",
- "number_format" => "Формат номера",
- "number_locale" => "Локализация",
- "number_locale_invalid" => "Введенный регион недействителен. Проверьте ссылку во всплывающей подсказке, чтобы найти допустимый регион.",
- "number_locale_required" => "Региональный номер - обязательное поле.",
- "number_locale_tooltip" => "Найдите подходящий регион по этой ссылке.",
- "os_timezone" => "Часовой пояс системы:",
- "ospos_info" => "Информация об установке OSPOS",
- "payment_options_order" => "Параметры оплаты заказа",
- "perm_risk" => "Неправильные разрешения на доступ подвергают это программное обеспечение риску.",
- "phone" => "Телефон компании",
- "phone_required" => "Телефон компании - обязательное поле.",
- "print_bottom_margin" => "Отступ снизу",
- "print_bottom_margin_number" => "Отступ снизу должен быть введен цифрами.",
- "print_bottom_margin_required" => "Отступ снизу - обязательное поле.",
- "print_delay_autoreturn" => "Задержка автовозврата",
- "print_delay_autoreturn_number" => "Задержка автовозврата - обязательное поле.",
- "print_delay_autoreturn_required" => "Задержка автовозврата должна быть введена цифрами.",
- "print_footer" => "Печать нижнего колонтитула браузера",
- "print_header" => "Печать верхнего колонтитула браузера",
- "print_left_margin" => "Отступ слева",
- "print_left_margin_number" => "Отступ слева должен быть введен цифрами.",
- "print_left_margin_required" => "Отступ слева - обязательное поле.",
- "print_receipt_check_behaviour" => "Опция печати квитанции",
- "print_receipt_check_behaviour_always" => "Всегда активно",
- "print_receipt_check_behaviour_last" => "Запомнить последний выбор",
- "print_receipt_check_behaviour_never" => "Всегда неактивно",
- "print_right_margin" => "Отступ справа",
- "print_right_margin_number" => "Отступ справа должен быть введен цифрами.",
- "print_right_margin_required" => "Отступ справа - обязательное поле.",
- "print_silently" => "Показывать уведомление о печати",
- "print_top_margin" => "Отступ сверху",
- "print_top_margin_number" => "Отступ сверху должен быть введен цифрами.",
- "print_top_margin_required" => "Отступ сверху - обязательное поле.",
- "quantity_decimals" => "Количество - десятичные дроби",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Комментарий для предложения по умолчанию",
- "receipt" => "Чек",
- "receipt_category" => "",
- "receipt_configuration" => "Параметры печати чека",
- "receipt_default" => "По умолчанию",
- "receipt_font_size" => "Размер шрифта",
- "receipt_font_size_number" => "Размер шрифта должен быть введен цифрами.",
- "receipt_font_size_required" => "Размер шрифта - обязательное поле.",
- "receipt_info" => "Информация о настройках квитанций",
- "receipt_printer" => "Билетный принтер",
- "receipt_short" => "Короткий",
- "receipt_show_company_name" => "Показывать название компании",
- "receipt_show_description" => "Показывать описание",
- "receipt_show_serialnumber" => "Показывать серийный номер",
- "receipt_show_tax_ind" => "Показывать налоговый индикатор",
- "receipt_show_taxes" => "Показывать налоги",
- "receipt_show_total_discount" => "Показывать общую скидку",
- "receipt_template" => "Шаблон чека",
- "receiving_calculate_average_price" => "Расчет сред. цены (закупки)",
- "recv_invoice_format" => "Формат накладной для закупок",
- "register_mode_default" => "Режим регистрации по умолчанию",
- "report_an_issue" => "Сообщить о проблеме",
- "return_policy_required" => "Политика возврата - обязательное поле.",
- "reward" => "Программа лояльности",
- "reward_configuration" => "Параметры программы лояльности",
- "right" => "Справа",
- "sales_invoice_format" => "Формат накладной для продаж",
- "sales_quote_format" => "Формат предложений на продажу",
- "mailpath_invalid" => "Неверный путь sendmail. Разрешены только буквы, цифры, дефисы, подчеркивания, слеши и точки.",
- "saved_successfully" => "Конфигурация успешно сохранена.",
- "saved_unsuccessfully" => "Произошла ошибка при сохранении конфигурации.",
- "security_issue" => "Предупреждение об уязвимости системы безопасности",
- "server_notice" => "Пожалуйста, используйте приведенную ниже информацию для сообщения о проблеме.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Показать значок \"Офис\"",
- "statistics" => "Отправить статистику",
- "statistics_tooltip" => "Отправляйте статистику для разработки и улучшения функций.",
- "stock_location" => "Расположение склада",
- "stock_location_duplicate" => "Местоположение склада должно быть уникальным.",
- "stock_location_invalid_chars" => "Местоположение склада не может содержать '_'.",
- "stock_location_required" => "Местонахождение склада - обязательное поле.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Колонка 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Макет предложений поиска",
- "suggestions_second_column" => "Колонка 2",
- "suggestions_third_column" => "Колонка 3",
- "system_conf" => "Информация",
- "system_info" => "Системная информация",
- "table" => "Столики",
- "table_configuration" => "Настройка столов",
- "takings_printer" => "Чековый принтер",
- "tax" => "Налог",
- "tax_category" => "Категория налога",
- "tax_category_duplicate" => "Введенная налоговая категория уже существует.",
- "tax_category_invalid_chars" => "Введенная налоговая категория недействительна.",
- "tax_category_required" => "Налоговая категория - обязательна для заполнения.",
- "tax_category_used" => "Налоговая категория не может быть удалена, поскольку она используется.",
- "tax_configuration" => "Параметры налогов",
- "tax_decimals" => "Налоги - десятичные дроби",
- "tax_id" => "№ налога",
- "tax_included" => "Вкл. налоги",
- "theme" => "Тема",
- "theme_preview" => "Предпросмотр темы:",
- "thousands_separator" => "Разделитель тысяч",
- "timezone" => "Часовой пояс",
- "timezone_error" => "Часовой пояс системы отличается от вашего местного часового пояса.",
- "top" => "Вверх",
- "use_destination_based_tax" => "Использовать налог на основе пункта назначения",
- "user_timezone" => "Ваш часовой пояс:",
- "website" => "Веб-сайт",
- "wholesale_markup" => "",
- "work_order_enable" => "Поддержка рабочих заказов",
- "work_order_format" => "Формат рабочих заказов",
+ 'address' => 'Адрес компании',
+ 'address_required' => 'Адрес компании - обязательное поле для заполнения.',
+ 'all_set' => 'Все права доступа к файлам установлены правильно!',
+ 'allow_duplicate_barcodes' => 'Разрешить дубликаты штрих-кодов',
+ 'apostrophe' => 'апостроф',
+ 'backup_button' => 'Резервная копия',
+ 'backup_database' => 'Резервная копия базы данных',
+ 'barcode' => 'Штрих-код',
+ 'barcode_company' => 'Название компании',
+ 'barcode_configuration' => 'Параметры штрих-кода',
+ 'barcode_content' => 'Содержание штрих-кода',
+ 'barcode_first_row' => 'Строка 1',
+ 'barcode_font' => 'Шрифт',
+ 'barcode_formats' => 'Формат ввода',
+ 'barcode_generate_if_empty' => 'Сгенерировать новый, если пусто.',
+ 'barcode_height' => 'Высота (пикс.)',
+ 'barcode_id' => '№ товара/Название',
+ 'barcode_info' => 'Информация о параметрах штрих-кода',
+ 'barcode_layout' => 'Макет штрих-кода',
+ 'barcode_name' => 'Название',
+ 'barcode_number' => 'Штрих-код',
+ 'barcode_number_in_row' => 'Номер в строке',
+ 'barcode_page_cellspacing' => 'Расстояние между ячейками.',
+ 'barcode_page_width' => 'Ширина страницы',
+ 'barcode_price' => 'Цена',
+ 'barcode_second_row' => 'Строка 2',
+ 'barcode_third_row' => 'Строка 3',
+ 'barcode_tooltip' => 'Предупреждение: Эта функция может привести к тому, что будут созданы или импортированы дублирующиеся товары. Не используйте, если вы не хотите дублировать штрих-коды.',
+ 'barcode_type' => 'Тип штрих-кода',
+ 'barcode_width' => 'Ширина (пикс.)',
+ 'bottom' => 'Конец',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Цены - десятичные дроби',
+ 'cash_decimals_tooltip' => 'Если десятичные дроби для цен и валюты совпадают, то это не будет выполняться, если для цен не установлено округление до пяти.',
+ 'cash_rounding' => 'Округление цен',
+ 'category_dropdown' => 'Показывать категории всплывающим списом',
+ 'center' => 'Центр',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'Запятая',
+ 'company' => 'Название компании',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Сменить изображение',
+ 'company_logo' => 'Логотип компании',
+ 'company_remove_image' => 'Удалить изображение',
+ 'company_required' => 'Название компании - обязательное поле для заполнения',
+ 'company_select_image' => 'Выбрать изображение',
+ 'company_website_url' => 'Веб-сайт компании не является допустимым адресом (https://...).',
+ 'country_codes' => 'Коды cтран',
+ 'country_codes_tooltip' => 'Разделенный запятыми список кодов стран для поиска адреса.',
+ 'currency_code' => 'Код валюты',
+ 'currency_decimals' => 'Валюта - десятичные дроби',
+ 'currency_symbol' => 'Символ валюты',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Вознаграждение',
+ 'customer_reward_duplicate' => 'Вознаграждение должно быть уникальным.',
+ 'customer_reward_enable' => 'Включить программу лояльности',
+ 'customer_reward_invalid_chars' => "Вознаграждение не может содержать '_'",
+ 'customer_reward_required' => 'Вознаграждение - обязательное поле для заполнения',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => 'Фильтр даты и времени',
+ 'datetimeformat' => 'Формат даты и времени',
+ 'decimal_point' => 'Разделитель десятичных',
+ 'default_barcode_font_size_number' => 'Размер шрифта штрих-кода должен быть введен цифрами.',
+ 'default_barcode_font_size_required' => 'Размер шрифта штрих-кода - обязательное поле.',
+ 'default_barcode_height_number' => 'Высота штрих-кода должна быть введена цифрами.',
+ 'default_barcode_height_required' => 'Высота штрих-кода - обязательное поле.',
+ 'default_barcode_num_in_row_number' => 'Номер штрих-кода должен быть введен цифрами.',
+ 'default_barcode_num_in_row_required' => 'Номер штрих-кода - обязательное поле.',
+ 'default_barcode_page_cellspacing_number' => 'Расстояние между ячейками страницы штрих-кода должено быть введено цифрами.',
+ 'default_barcode_page_cellspacing_required' => 'Расстояние между ячейками страницы штрих-кода - обязательное поле.',
+ 'default_barcode_page_width_number' => 'Ширина страницы штрих-кода должна быть введена цифрами.',
+ 'default_barcode_page_width_required' => 'Ширина страницы штрих-кода - обязательное поле.',
+ 'default_barcode_width_number' => 'Ширина штрих-кода должна быть введена цифрами.',
+ 'default_barcode_width_required' => 'Ширина штрих-кода - обязательное поле.',
+ 'default_item_columns' => 'Колонки по умолчанию',
+ 'default_origin_tax_code' => 'Код налога по умолчанию',
+ 'default_receivings_discount' => 'Скидка на закупки по умолчанию',
+ 'default_receivings_discount_number' => 'Скидка на закупки должна быть введена цифрами.',
+ 'default_receivings_discount_required' => 'Скидка на закупки - обязательное поле.',
+ 'default_sales_discount' => 'Скидка с продаж по умолчанию',
+ 'default_sales_discount_number' => 'Скидка с продаж должна быть введена цифрами.',
+ 'default_sales_discount_required' => 'Скидка с продаж - обязательное поле.',
+ 'default_tax_category' => 'Категория налогов по умолчанию',
+ 'default_tax_code' => 'Код налога по умолчанию',
+ 'default_tax_jurisdiction' => 'Налоговая юрисдикция по умолчанию',
+ 'default_tax_name_number' => 'Название налога должно быть строкой.',
+ 'default_tax_name_required' => 'Название налога - обязательное поле.',
+ 'default_tax_rate' => 'Ставка налога по умолчанию (в %)',
+ 'default_tax_rate_1' => 'Ставка налога 1',
+ 'default_tax_rate_2' => 'Ставка налога 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Ставка налога должна быть введена цифрами.',
+ 'default_tax_rate_required' => 'Ставка налога - обязательное поле.',
+ 'derive_sale_quantity' => 'Разрешить кол-во основанное на продажах',
+ 'derive_sale_quantity_tooltip' => 'Если этот флажок установлен, для товаров, заказанных на расширенную сумму, будет предоставлен новый тип товара',
+ 'dinner_table' => 'Столы',
+ 'dinner_table_duplicate' => 'Стол должен быть уникальным.',
+ 'dinner_table_enable' => 'Включить обеденные столы',
+ 'dinner_table_invalid_chars' => "Название стола не может содержать '_'.",
+ 'dinner_table_required' => 'Название стола - обязательное поле.',
+ 'dot' => 'точка',
+ 'email' => 'Эл. почта',
+ 'email_configuration' => 'Параметры эл. почты',
+ 'email_mailpath' => 'Адрес эл. почты',
+ 'email_protocol' => 'Протокол',
+ 'email_receipt_check_behaviour' => 'Чек по эл. почте',
+ 'email_receipt_check_behaviour_always' => 'Всегда активно',
+ 'email_receipt_check_behaviour_last' => 'Запомнить последний выбор',
+ 'email_receipt_check_behaviour_never' => 'Всегда неактивно',
+ 'email_smtp_crypto' => 'Шифрование SMTP',
+ 'email_smtp_host' => 'Сервер SMTP',
+ 'email_smtp_pass' => 'Пароль SMTP',
+ 'email_smtp_port' => 'Порт SMTP',
+ 'email_smtp_timeout' => 'Задержка SMTP (сек.)',
+ 'email_smtp_user' => 'Имя пользователя SMTP',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Конфиденциальность',
+ 'enforce_privacy_tooltip' => 'Защитите конфиденциальность клиентов, применяя шифрование данных в случае их удаления',
+ 'fax' => 'Факс',
+ 'file_perm' => 'Есть проблемы с правами доступа к файлам. Пожалуйста, исправьте и перезагрузите эту страницу.',
+ 'financial_year' => 'Начало финансового года',
+ 'financial_year_apr' => '1-е апреля',
+ 'financial_year_aug' => '1-е августа',
+ 'financial_year_dec' => '1-е декабря',
+ 'financial_year_feb' => '1-е февраля',
+ 'financial_year_jan' => '1-е января',
+ 'financial_year_jul' => '1-е июля',
+ 'financial_year_jun' => '1-е июня',
+ 'financial_year_mar' => '1-е марта',
+ 'financial_year_may' => '1-е мая',
+ 'financial_year_nov' => '1-е ноября',
+ 'financial_year_oct' => '1-е октября',
+ 'financial_year_sep' => '1-е сентября',
+ 'floating_labels' => 'Всплывающие заголовки',
+ 'gcaptcha_enable' => 'Страница входа с защитой reCAPTCHA',
+ 'gcaptcha_secret_key' => 'reCAPTCHA секретный ключ',
+ 'gcaptcha_secret_key_required' => 'reCAPTCHA секретный ключ - обязательное поле',
+ 'gcaptcha_site_key' => 'reCAPTCHA Ключ сайта',
+ 'gcaptcha_site_key_required' => 'reCAPTCHA Ключ сайта - обязательное поле',
+ 'gcaptcha_tooltip' => 'Защитите страницу входа с помощью Google reCAPTCHA.',
+ 'general' => 'Основные',
+ 'general_configuration' => 'Общие настройки',
+ 'giftcard_number' => 'Номер подарочной карты',
+ 'giftcard_random' => 'Сгенерировать случайно',
+ 'giftcard_series' => 'Сгенерировать в серии',
+ 'image_allowed_file_types' => 'Доступные типы файлов',
+ 'image_max_height_tooltip' => 'Максимально допустимая высота загружаемых изображений в пикселях.',
+ 'image_max_size_tooltip' => 'Максимально допустимый размер загружаемого файла изображения в килобайтах (кб).',
+ 'image_max_width_tooltip' => 'Максимально допустимая ширина загружаемых изображений в пикселях.',
+ 'image_restrictions' => 'Ограничения на загрузку изображений',
+ 'include_hsn' => 'Включить поддержку кодов HSN',
+ 'info' => 'Информация',
+ 'info_configuration' => 'Информация о магазине',
+ 'input_groups' => 'Входные группы',
+ 'integrations' => 'Интеграции',
+ 'integrations_configuration' => 'Сторонние интеграции',
+ 'invoice' => 'Счет (накладная)',
+ 'invoice_configuration' => 'Настройки печати накладной',
+ 'invoice_default_comments' => 'Комментарии к накладной по умолчанию',
+ 'invoice_email_message' => 'Шаблон эл. письма накладной',
+ 'invoice_enable' => 'Включить накладные',
+ 'invoice_printer' => 'Принтер накладных',
+ 'invoice_type' => 'Тип накладной',
+ 'is_readable' => 'доступно для чтения, но права выставлены неправильно. Установите их на 640 или 660 и обновите эту страницу.',
+ 'is_writable' => 'доступно для чтения, но права установлены неправильно. Установите их на 750 и обновите эту страницу.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Предупреждение: эта функция будет работать, только если у вас установлено дополнение FireFox jsPrintSetup. Все равно сохранить?',
+ 'language' => 'Язык',
+ 'last_used_invoice_number' => 'Последний использованный номер накладной',
+ 'last_used_quote_number' => 'Последний номер предложения',
+ 'last_used_work_order_number' => 'Последний номер рабочего заказа',
+ 'left' => 'Слева',
+ 'license' => 'Лицензии',
+ 'license_configuration' => 'Заявление о лицензии',
+ 'line_sequence' => 'Последовательность строк',
+ 'lines_per_page' => 'Кол-во строк на страницу',
+ 'lines_per_page_number' => 'Кол-во строк на страницу должно быть введено цифрами.',
+ 'lines_per_page_required' => 'Кол-во строк на страницу - обязательное поле.',
+ 'locale' => 'Локализация',
+ 'locale_configuration' => 'Параметры локализации',
+ 'locale_info' => 'Информация о параметрах локализации',
+ 'location' => 'Склад',
+ 'location_configuration' => 'Расположение складов',
+ 'location_info' => 'Информация о параметрах расположения',
+ 'login_form' => 'Стиль формы входа',
+ 'logout' => 'Вы хотите сделать резервную копию перед выходом из системы? Нажмите [OK] для резервного копирования или [Отмена] для выхода.',
+ 'mailchimp' => 'MailChimp',
+ 'mailchimp_api_key' => 'MailChimp API-ключ',
+ 'mailchimp_configuration' => 'Настройки MailChimp',
+ 'mailchimp_key_successfully' => 'API-ключ верен.',
+ 'mailchimp_key_unsuccessfully' => 'Неверный API-ключ.',
+ 'mailchimp_lists' => 'Списки MailChimp',
+ 'mailchimp_tooltip' => 'Нажмите на значок API-ключа.',
+ 'message' => 'SMS',
+ 'message_configuration' => 'Настройки сообщений',
+ 'msg_msg' => 'Сохраненные текстовые сообщения',
+ 'msg_msg_placeholder' => 'Если вы хотите использовать шаблон SMS, сохраните свое сообщение здесь, в противном случае оставьте поле пустым.',
+ 'msg_pwd' => 'Пароль SMS-API',
+ 'msg_pwd_required' => 'Пароль SMS-API - обязательное поле',
+ 'msg_src' => 'ID отправителя SMS-API',
+ 'msg_src_required' => 'ID отправителя SMS-API - обязательное поле',
+ 'msg_uid' => 'Пользователь SMS-API',
+ 'msg_uid_required' => 'Пользователь SMS-API - обязательное поле',
+ 'multi_pack_enabled' => 'Несколько упаковок на товар',
+ 'no_risk' => 'Нет рисков безопасности/уязвимостей.',
+ 'none' => 'нет',
+ 'notify_alignment' => 'Позиция всплывающего уведомления',
+ 'number_format' => 'Формат номера',
+ 'number_locale' => 'Локализация',
+ 'number_locale_invalid' => 'Введенный регион недействителен. Проверьте ссылку во всплывающей подсказке, чтобы найти допустимый регион.',
+ 'number_locale_required' => 'Региональный номер - обязательное поле.',
+ 'number_locale_tooltip' => 'Найдите подходящий регион по этой ссылке.',
+ 'os_timezone' => 'Часовой пояс системы:',
+ 'ospos_info' => 'Информация об установке OSPOS',
+ 'payment_options_order' => 'Параметры оплаты заказа',
+ 'payment_reference_code_length_limits' => 'Код ссылки на платёж
Ограничения длины',
+ 'payment_reference_code_length_max_label' => 'Макс',
+ 'payment_reference_code_length_min_label' => 'Мин',
+ 'perm_risk' => 'Неправильные разрешения на доступ подвергают это программное обеспечение риску.',
+ 'phone' => 'Телефон компании',
+ 'phone_required' => 'Телефон компании - обязательное поле.',
+ 'print_bottom_margin' => 'Отступ снизу',
+ 'print_bottom_margin_number' => 'Отступ снизу должен быть введен цифрами.',
+ 'print_bottom_margin_required' => 'Отступ снизу - обязательное поле.',
+ 'print_delay_autoreturn' => 'Задержка автовозврата',
+ 'print_delay_autoreturn_number' => 'Задержка автовозврата - обязательное поле.',
+ 'print_delay_autoreturn_required' => 'Задержка автовозврата должна быть введена цифрами.',
+ 'print_footer' => 'Печать нижнего колонтитула браузера',
+ 'print_header' => 'Печать верхнего колонтитула браузера',
+ 'print_left_margin' => 'Отступ слева',
+ 'print_left_margin_number' => 'Отступ слева должен быть введен цифрами.',
+ 'print_left_margin_required' => 'Отступ слева - обязательное поле.',
+ 'print_receipt_check_behaviour' => 'Опция печати квитанции',
+ 'print_receipt_check_behaviour_always' => 'Всегда активно',
+ 'print_receipt_check_behaviour_last' => 'Запомнить последний выбор',
+ 'print_receipt_check_behaviour_never' => 'Всегда неактивно',
+ 'print_right_margin' => 'Отступ справа',
+ 'print_right_margin_number' => 'Отступ справа должен быть введен цифрами.',
+ 'print_right_margin_required' => 'Отступ справа - обязательное поле.',
+ 'print_silently' => 'Показывать уведомление о печати',
+ 'print_top_margin' => 'Отступ сверху',
+ 'print_top_margin_number' => 'Отступ сверху должен быть введен цифрами.',
+ 'print_top_margin_required' => 'Отступ сверху - обязательное поле.',
+ 'quantity_decimals' => 'Количество - десятичные дроби',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Комментарий для предложения по умолчанию',
+ 'receipt' => 'Чек',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Параметры печати чека',
+ 'receipt_default' => 'По умолчанию',
+ 'receipt_font_size' => 'Размер шрифта',
+ 'receipt_font_size_number' => 'Размер шрифта должен быть введен цифрами.',
+ 'receipt_font_size_required' => 'Размер шрифта - обязательное поле.',
+ 'receipt_info' => 'Информация о настройках квитанций',
+ 'receipt_printer' => 'Билетный принтер',
+ 'receipt_short' => 'Короткий',
+ 'receipt_show_company_name' => 'Показывать название компании',
+ 'receipt_show_description' => 'Показывать описание',
+ 'receipt_show_serialnumber' => 'Показывать серийный номер',
+ 'receipt_show_tax_ind' => 'Показывать налоговый индикатор',
+ 'receipt_show_taxes' => 'Показывать налоги',
+ 'receipt_show_total_discount' => 'Показывать общую скидку',
+ 'receipt_template' => 'Шаблон чека',
+ 'receiving_calculate_average_price' => 'Расчет сред. цены (закупки)',
+ 'recv_invoice_format' => 'Формат накладной для закупок',
+ 'register_mode_default' => 'Режим регистрации по умолчанию',
+ 'report_an_issue' => 'Сообщить о проблеме',
+ 'return_policy_required' => 'Политика возврата - обязательное поле.',
+ 'reward' => 'Программа лояльности',
+ 'reward_configuration' => 'Параметры программы лояльности',
+ 'right' => 'Справа',
+ 'sales_invoice_format' => 'Формат накладной для продаж',
+ 'sales_quote_format' => 'Формат предложений на продажу',
+ 'mailpath_invalid' => 'Неверный путь sendmail. Разрешены только буквы, цифры, дефисы, подчеркивания, слеши и точки.',
+ 'saved_successfully' => 'Конфигурация успешно сохранена.',
+ 'saved_unsuccessfully' => 'Произошла ошибка при сохранении конфигурации.',
+ 'security_issue' => 'Предупреждение об уязвимости системы безопасности',
+ 'server_notice' => 'Пожалуйста, используйте приведенную ниже информацию для сообщения о проблеме.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Показать значок "Офис"',
+ 'statistics' => 'Отправить статистику',
+ 'statistics_tooltip' => 'Отправляйте статистику для разработки и улучшения функций.',
+ 'stock_location' => 'Расположение склада',
+ 'stock_location_duplicate' => 'Местоположение склада должно быть уникальным.',
+ 'stock_location_invalid_chars' => "Местоположение склада не может содержать '_'.",
+ 'stock_location_required' => 'Местонахождение склада - обязательное поле.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Колонка 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Макет предложений поиска',
+ 'suggestions_second_column' => 'Колонка 2',
+ 'suggestions_third_column' => 'Колонка 3',
+ 'system_conf' => 'Информация',
+ 'system_info' => 'Системная информация',
+ 'table' => 'Столики',
+ 'table_configuration' => 'Настройка столов',
+ 'takings_printer' => 'Чековый принтер',
+ 'tax' => 'Налог',
+ 'tax_category' => 'Категория налога',
+ 'tax_category_duplicate' => 'Введенная налоговая категория уже существует.',
+ 'tax_category_invalid_chars' => 'Введенная налоговая категория недействительна.',
+ 'tax_category_required' => 'Налоговая категория - обязательна для заполнения.',
+ 'tax_category_used' => 'Налоговая категория не может быть удалена, поскольку она используется.',
+ 'tax_configuration' => 'Параметры налогов',
+ 'tax_decimals' => 'Налоги - десятичные дроби',
+ 'tax_id' => '№ налога',
+ 'tax_included' => 'Вкл. налоги',
+ 'theme' => 'Тема',
+ 'theme_preview' => 'Предпросмотр темы:',
+ 'thousands_separator' => 'Разделитель тысяч',
+ 'timezone' => 'Часовой пояс',
+ 'timezone_error' => 'Часовой пояс системы отличается от вашего местного часового пояса.',
+ 'top' => 'Вверх',
+ 'use_destination_based_tax' => 'Использовать налог на основе пункта назначения',
+ 'user_timezone' => 'Ваш часовой пояс:',
+ 'website' => 'Веб-сайт',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Поддержка рабочих заказов',
+ 'work_order_format' => 'Формат рабочих заказов',
];
diff --git a/app/Language/ru/Login.php b/app/Language/ru/Login.php
index 257362295..a584ca82e 100644
--- a/app/Language/ru/Login.php
+++ b/app/Language/ru/Login.php
@@ -1,25 +1,30 @@
"Я не робот.",
- "go" => "Войти",
- "invalid_gcaptcha" => "Пожалуйста, подтвердите, что вы не робот.",
- "invalid_installation" => "Ошибка установки, проверьте файл php.ini.",
- "invalid_username_and_password" => "Неверное имя пользователя или пароль.",
- "login" => "Вход",
- "logout" => "Выход",
- "migration_needed" => "Миграция базы данных в {0} начнется после входа в систему.",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "Пароль",
- "required_username" => "",
- "username" => "Имя пользователя",
- "welcome" => "Панель управления",
+ "gcaptcha" => "Я не робот.",
+ "go" => "Войти",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Пожалуйста, подтвердите, что вы не робот.",
+ "invalid_installation" => "Ошибка установки, проверьте файл php.ini.",
+ "invalid_username_and_password" => "Неверное имя пользователя или пароль.",
+ "login" => "Вход",
+ "logout" => "Выход",
+ "migrating_database" => "Миграция базы данных",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "База данных успешно перенесена!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "Миграция базы данных в {0} начнется после входа в систему.",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "Пароль",
+ "required_username" => "",
+ "username" => "Имя пользователя",
+ "welcome" => "Панель управления"
];
diff --git a/app/Language/ru/Sales.php b/app/Language/ru/Sales.php
index a26160981..d76a6c370 100644
--- a/app/Language/ru/Sales.php
+++ b/app/Language/ru/Sales.php
@@ -1,231 +1,235 @@
"Доступные баллы",
- "rewards_package" => "Награды",
- "rewards_remaining_balance" => "Остаток бонусных баллов составляет ",
- "account_number" => "Счет #",
- "add_payment" => "Добавить оплату",
- "amount_due" => "Сумма задолженности",
- "amount_tendered" => "Предложенная сумма",
- "authorized_signature" => "Подпись уполномоченного лица",
- "cancel_sale" => "Отменить продажу",
- "cash" => "Наличные",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "Денежная корректировка",
- "cash_deposit" => "Наличный депозит",
- "cash_filter" => "Наличные",
- "change_due" => "Изменение задолженности",
- "change_price" => "Изменить цену продажи",
- "check" => "Банковский чек",
- "check_balance" => "Проверка остатка",
- "check_filter" => "Банковский чек",
- "close" => "",
- "comment" => "Комментарий",
- "comments" => "Комментарии",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Завершить продажу",
- "confirm_cancel_sale" => "Вы уверены, что хотите удалить эту продажу? Все товары будут очищены.",
- "confirm_delete" => "Вы уверены, что хотите удалить выбранные продажи?",
- "confirm_restore" => "Вы уверены, что хотите восстановить выбранные продажи?",
- "credit" => "Кредитная карта",
- "credit_deposit" => "Кредитный депозит",
- "credit_filter" => "Кредитная карта",
- "current_table" => "",
- "customer" => "Клиент",
- "customer_address" => "Адрес",
- "customer_discount" => "Скидка",
- "customer_email" => "Эл. почта",
- "customer_location" => "Расположение",
- "customer_mailchimp_status" => "Статус Mailchimp",
- "customer_optional" => "(Требуется для своевременной оплаты)",
- "customer_required" => "(Необходимо)",
- "customer_total" => "Итог",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Дата продажи",
- "date_range" => "Диапазон дат",
- "date_required" => "Необходимо ввести правильную дату.",
- "date_type" => "Дата - обязательное поле для заполнения.",
- "debit" => "Дебетовая карта",
- "debit_filter" => "",
- "delete" => "Разрешить удаление",
- "delete_confirmation" => "Вы уверены, что хотите удалить эту продажу? Это действие не может быть отменено.",
- "delete_entire_sale" => "Удалить все продажи",
- "delete_successful" => "Успешно удалено.",
- "delete_unsuccessful" => "Ошибка при удалении продажи.",
- "description_abbrv" => "Опис.",
- "discard" => "Брак",
- "discard_quote" => "",
- "discount" => "Скидка",
- "discount_included" => "% скидки",
- "discount_short" => "%",
- "due" => "Долг",
- "due_filter" => "Долг",
- "edit" => "Правка",
- "edit_item" => "Редактировать товар",
- "edit_sale" => "Редактировать продажу",
- "email_receipt" => "Послать квитанцию по эл. почте",
- "employee" => "Сотрудник",
- "entry" => "Запись",
- "error_editing_item" => "Ошибка при редактировании товара",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Найти/Сканировать товар",
- "find_or_scan_item_or_receipt" => "Найти/Сканировать товара или квитанцию",
- "giftcard" => "Подарочная карта",
- "giftcard_balance" => "Баланс подарочной карты",
- "giftcard_filter" => "",
- "giftcard_number" => "Номер подарочной карты",
- "group_by_category" => "Сгруппировать по категориям",
- "group_by_type" => "Сгруппировать по типу",
- "hsn" => "",
- "id" => "№ продажи",
- "include_prices" => "Включить цены?",
- "invoice" => "Накладная",
- "invoice_confirm" => "Эта накладная будет отправлена",
- "invoice_enable" => "Номер накладной",
- "invoice_filter" => "Накладные",
- "invoice_no_email" => "У этого клиента нет действующего адреса электронной почты.",
- "invoice_number" => "Накладная #",
- "invoice_number_duplicate" => "Номер накладной {0} должен быть уникальным.",
- "invoice_sent" => "Накладная отправлена",
- "invoice_total" => "Общая сумма накладной",
- "invoice_type_custom_invoice" => "Пользовательская накладная (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Пользовательская налоговая накладная (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Накладная (invoice.php)",
- "invoice_type_tax_invoice" => "Налоговая накладная (tax_invoice.php)",
- "invoice_unsent" => "Не удалось отправить накладную",
- "invoice_update" => "Пересчет",
- "item_insufficient_of_stock" => "Недостаточно товара в наличии.",
- "item_name" => "Название товара",
- "item_number" => "№ товара",
- "item_out_of_stock" => "Этот товар отсутствует в наличии.",
- "key_browser" => "Сочетания клавиш",
- "key_cancel" => "Отмена текущих предложений/накладных/продаж",
- "key_customer_search" => "Поиск клиента",
- "key_finish_quote" => "Закрыть предложение/накладную без оплаты",
- "key_finish_sale" => "Добавить платеж и заполнить накладную/продажу",
- "key_full" => "Открыть в полноэкранном режиме",
- "key_function" => "Назначение",
- "key_help" => "Сочетания клавиш",
- "key_help_modal" => "Показать сочетания клавиш",
- "key_in" => "Увеличить",
- "key_item_search" => "Поиск товара",
- "key_out" => "Отдалить",
- "key_payment" => "Добавить оплату",
- "key_print" => "Распечатать текущую страницу",
- "key_restore" => "Восстановить исходное отображение/увеличение",
- "key_search" => "Поиск таблиц отчетов",
- "key_suspend" => "Приостановить текущую продажу",
- "key_suspended" => "Показать приостановленные продажи",
- "key_system" => "Системные горячие клавиши",
- "key_tendered" => "Изменить предложенную сумму",
- "key_title" => "Сочетания клавиш для продаж",
- "mc" => "",
- "mode" => "Режим журнала",
- "must_enter_numeric" => "Предложенная сумма должна быть числом.",
- "must_enter_numeric_giftcard" => "Номер подарочной карты должен быть числом.",
- "new_customer" => "Новый клиент",
- "new_item" => "Новый товар",
- "no_description" => "Нет описания",
- "no_filter" => "Все",
- "no_items_in_cart" => "Нет товаров в корзине.",
- "no_sales_to_display" => "Нет продаж для отображения.",
- "none_selected" => "Вы не выбрали ни одной продажи для удаления.",
- "nontaxed_ind" => "",
- "not_authorized" => "Это действие не разрешено.",
- "one_or_multiple" => "Продажа(ы)",
- "payment" => "Тип оплаты",
- "payment_amount" => "Сумма",
- "payment_not_cover_total" => "Сумма оплаты должна быть больше или равна общей сумме.",
- "payment_type" => "Тип",
- "payments" => "",
- "payments_total" => "Всего оплат",
- "price" => "Цена",
- "print_after_sale" => "Распечатать после продажи",
- "quantity" => "Кол-во",
- "quantity_less_than_reorder_level" => "Внимание: желаемое количество ниже уровня повторного заказа для этого товара.",
- "quantity_less_than_zero" => "Предупреждение: Желаемое количество недостаточно. Вы по-прежнему можете оформить продажу, но проверьте свои запасы.",
- "quantity_of_items" => "Кол-во товара {0}",
- "quote" => "Предложение",
- "quote_number" => "№ предложения",
- "quote_number_duplicate" => "Номер предложения должен быть уникальным.",
- "quote_sent" => "Предложение отправлено",
- "quote_unsent" => "Предложение не было отправлено",
- "receipt" => "Товарный чек",
- "receipt_no_email" => "У этого клиента нет действующего адреса электронной почты.",
- "receipt_number" => "Продажа #",
- "receipt_sent" => "Чек отправлен",
- "receipt_unsent" => "Чек не отправлен",
- "refund" => "Тип возврата",
- "register" => "Журнал продаж",
- "remove_customer" => "Удалить клиента",
- "remove_discount" => "",
- "return" => "Возврат",
- "rewards" => "Бонусные баллы",
- "rewards_balance" => "Баланс бонусных баллов",
- "sale" => "Продажа",
- "sale_by_invoice" => "Продажа по накладной",
- "sale_for_customer" => "Клиент:",
- "sale_time" => "Время",
- "sales_tax" => "Налог с продаж",
- "sales_total" => "",
- "select_customer" => "Выберите клиента",
- "send_invoice" => "Отправить накладную",
- "send_quote" => "Отправить предложение",
- "send_receipt" => "Отправить чек",
- "send_work_order" => "Отправить рабочий заказ",
- "serial" => "Серийный номер",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Показать накладную",
- "show_receipt" => "Показать чек",
- "start_typing_customer_name" => "Начните печатать имя клиента...",
- "start_typing_item_name" => "Сосканируйте штрих-код или начните печатать название товара...",
- "stock" => "Запасы",
- "stock_location" => "Расположение склада",
- "sub_total" => "Промежуточный итог",
- "successfully_deleted" => "Успешно удалено",
- "successfully_restored" => "Успешно восстановлено",
- "successfully_suspended_sale" => "Продажа успешно приостановлена.",
- "successfully_updated" => "Продажа успешно обновлена.",
- "suspend_sale" => "Приостановка продажи",
- "suspended_doc_id" => "Документ",
- "suspended_sale_id" => "№",
- "suspended_sales" => "Приостановлено",
- "table" => "Таблица",
- "takings" => "Ежедневные продажи",
- "tax" => "Налог",
- "tax_id" => "№ налога",
- "tax_invoice" => "Налоговая накладная",
- "tax_percent" => "Налоговые %",
- "taxed_ind" => "Н",
- "total" => "Итог",
- "total_tax_exclusive" => "Без налога",
- "transaction_failed" => "Ошибка транзакции продажи.",
- "unable_to_add_item" => "Не удалось добавить товар в продажу",
- "unsuccessfully_deleted" => "Продажу(и) удалить не удалось.",
- "unsuccessfully_restored" => "Не удалось восстановить продажу(и).",
- "unsuccessfully_suspended_sale" => "Не удалось приостановить продажу.",
- "unsuccessfully_updated" => "Не удалось обновить продажу.",
- "unsuspend" => "Возобновить",
- "unsuspend_and_delete" => "Действие",
- "update" => "Обновить",
- "upi" => "",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "Рабочий заказ",
- "work_order_number" => "Номер рабочего заказа",
- "work_order_number_duplicate" => "Номер рабочего заказа должен быть уникальным.",
- "work_order_sent" => "Рабочий заказ отправлен",
- "work_order_unsent" => "Не удалось отправить рабочий заказ",
+ 'account_number' => 'Счет #',
+ 'add_payment' => 'Добавить оплату',
+ 'amount_due' => 'Сумма задолженности',
+ 'amount_tendered' => 'Предложенная сумма',
+ 'authorized_signature' => 'Подпись уполномоченного лица',
+ 'cancel_sale' => 'Отменить продажу',
+ 'cash' => 'Наличные',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'Денежная корректировка',
+ 'cash_deposit' => 'Наличный депозит',
+ 'cash_filter' => 'Наличные',
+ 'change_due' => 'Изменение задолженности',
+ 'change_price' => 'Изменить цену продажи',
+ 'check' => 'Банковский чек',
+ 'check_balance' => 'Проверка остатка',
+ 'check_filter' => 'Банковский чек',
+ 'close' => '',
+ 'comment' => 'Комментарий',
+ 'comments' => 'Комментарии',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Завершить продажу',
+ 'confirm_cancel_sale' => 'Вы уверены, что хотите удалить эту продажу? Все товары будут очищены.',
+ 'confirm_delete' => 'Вы уверены, что хотите удалить выбранные продажи?',
+ 'confirm_restore' => 'Вы уверены, что хотите восстановить выбранные продажи?',
+ 'credit' => 'Кредитная карта',
+ 'credit_deposit' => 'Кредитный депозит',
+ 'credit_filter' => 'Кредитная карта',
+ 'current_table' => '',
+ 'customer' => 'Клиент',
+ 'customer_address' => 'Адрес',
+ 'customer_discount' => 'Скидка',
+ 'customer_email' => 'Эл. почта',
+ 'customer_location' => 'Расположение',
+ 'customer_mailchimp_status' => 'Статус Mailchimp',
+ 'customer_optional' => '(Требуется для своевременной оплаты)',
+ 'customer_required' => '(Необходимо)',
+ 'customer_total' => 'Итог',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Доступные баллы',
+ 'daily_sales' => '',
+ 'date' => 'Дата продажи',
+ 'date_range' => 'Диапазон дат',
+ 'date_required' => 'Необходимо ввести правильную дату.',
+ 'date_type' => 'Дата - обязательное поле для заполнения.',
+ 'debit' => 'Дебетовая карта',
+ 'debit_filter' => '',
+ 'delete' => 'Разрешить удаление',
+ 'delete_confirmation' => 'Вы уверены, что хотите удалить эту продажу? Это действие не может быть отменено.',
+ 'delete_entire_sale' => 'Удалить все продажи',
+ 'delete_successful' => 'Успешно удалено.',
+ 'delete_unsuccessful' => 'Ошибка при удалении продажи.',
+ 'description_abbrv' => 'Опис.',
+ 'discard' => 'Брак',
+ 'discard_quote' => '',
+ 'discount' => 'Скидка',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% скидки',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'Долг',
+ 'due_filter' => 'Долг',
+ 'edit' => 'Правка',
+ 'edit_item' => 'Редактировать товар',
+ 'edit_sale' => 'Редактировать продажу',
+ 'email_receipt' => 'Послать квитанцию по эл. почте',
+ 'employee' => 'Сотрудник',
+ 'entry' => 'Запись',
+ 'error_editing_item' => 'Ошибка при редактировании товара',
+ 'find_or_scan_item' => 'Найти/Сканировать товар',
+ 'find_or_scan_item_or_receipt' => 'Найти/Сканировать товара или квитанцию',
+ 'giftcard' => 'Подарочная карта',
+ 'giftcard_balance' => 'Баланс подарочной карты',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Номер подарочной карты',
+ 'group_by_category' => 'Сгруппировать по категориям',
+ 'group_by_type' => 'Сгруппировать по типу',
+ 'hsn' => '',
+ 'id' => '№ продажи',
+ 'include_prices' => 'Включить цены?',
+ 'invoice' => 'Накладная',
+ 'invoice_confirm' => 'Эта накладная будет отправлена',
+ 'invoice_enable' => 'Номер накладной',
+ 'invoice_filter' => 'Накладные',
+ 'invoice_no_email' => 'У этого клиента нет действующего адреса электронной почты.',
+ 'invoice_number' => 'Накладная #',
+ 'invoice_number_duplicate' => 'Номер накладной {0} должен быть уникальным.',
+ 'invoice_sent' => 'Накладная отправлена',
+ 'invoice_total' => 'Общая сумма накладной',
+ 'invoice_type_custom_invoice' => 'Пользовательская накладная (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Пользовательская налоговая накладная (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Накладная (invoice.php)',
+ 'invoice_type_tax_invoice' => 'Налоговая накладная (tax_invoice.php)',
+ 'invoice_unsent' => 'Не удалось отправить накладную',
+ 'invoice_update' => 'Пересчет',
+ 'item_insufficient_of_stock' => 'Недостаточно товара в наличии.',
+ 'item_name' => 'Название товара',
+ 'item_number' => '№ товара',
+ 'item_out_of_stock' => 'Этот товар отсутствует в наличии.',
+ 'key_browser' => 'Сочетания клавиш',
+ 'key_cancel' => 'Отмена текущих предложений/накладных/продаж',
+ 'key_customer_search' => 'Поиск клиента',
+ 'key_finish_quote' => 'Закрыть предложение/накладную без оплаты',
+ 'key_finish_sale' => 'Добавить платеж и заполнить накладную/продажу',
+ 'key_full' => 'Открыть в полноэкранном режиме',
+ 'key_function' => 'Назначение',
+ 'key_help' => 'Сочетания клавиш',
+ 'key_help_modal' => 'Показать сочетания клавиш',
+ 'key_in' => 'Увеличить',
+ 'key_item_search' => 'Поиск товара',
+ 'key_out' => 'Отдалить',
+ 'key_payment' => 'Добавить оплату',
+ 'key_print' => 'Распечатать текущую страницу',
+ 'key_restore' => 'Восстановить исходное отображение/увеличение',
+ 'key_search' => 'Поиск таблиц отчетов',
+ 'key_suspend' => 'Приостановить текущую продажу',
+ 'key_suspended' => 'Показать приостановленные продажи',
+ 'key_system' => 'Системные горячие клавиши',
+ 'key_tendered' => 'Изменить предложенную сумму',
+ 'key_title' => 'Сочетания клавиш для продаж',
+ 'mc' => '',
+ 'mode' => 'Режим журнала',
+ 'must_enter_numeric' => 'Предложенная сумма должна быть числом.',
+ 'must_enter_numeric_giftcard' => 'Номер подарочной карты должен быть числом.',
+ 'must_enter_reference_code' => 'Необходимо ввести справочный/поисковый номер.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Новый клиент',
+ 'new_item' => 'Новый товар',
+ 'no_description' => 'Нет описания',
+ 'no_filter' => 'Все',
+ 'no_items_in_cart' => 'Нет товаров в корзине.',
+ 'no_sales_to_display' => 'Нет продаж для отображения.',
+ 'none_selected' => 'Вы не выбрали ни одной продажи для удаления.',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => 'Это действие не разрешено.',
+ 'one_or_multiple' => 'Продажа(ы)',
+ 'payment' => 'Тип оплаты',
+ 'payment_amount' => 'Сумма',
+ 'payment_not_cover_total' => 'Сумма оплаты должна быть больше или равна общей сумме.',
+ 'payment_type' => 'Тип',
+ 'payments' => '',
+ 'payments_total' => 'Всего оплат',
+ 'price' => 'Цена',
+ 'print_after_sale' => 'Распечатать после продажи',
+ 'quantity' => 'Кол-во',
+ 'quantity_less_than_reorder_level' => 'Внимание: желаемое количество ниже уровня повторного заказа для этого товара.',
+ 'quantity_less_than_zero' => 'Предупреждение: Желаемое количество недостаточно. Вы по-прежнему можете оформить продажу, но проверьте свои запасы.',
+ 'quantity_of_items' => 'Кол-во товара {0}',
+ 'quote' => 'Предложение',
+ 'quote_number' => '№ предложения',
+ 'quote_number_duplicate' => 'Номер предложения должен быть уникальным.',
+ 'quote_sent' => 'Предложение отправлено',
+ 'quote_unsent' => 'Предложение не было отправлено',
+ 'receipt' => 'Товарный чек',
+ 'receipt_no_email' => 'У этого клиента нет действующего адреса электронной почты.',
+ 'receipt_number' => 'Продажа #',
+ 'receipt_sent' => 'Чек отправлен',
+ 'receipt_unsent' => 'Чек не отправлен',
+ 'reference_code' => 'Код ссылки на платёж',
+ 'reference_code_invalid_characters' => 'Код ссылки должен содержать только буквы и цифры.',
+ 'reference_code_length_error' => 'Длина кода ссылки недопустима.',
+ 'refund' => 'Тип возврата',
+ 'register' => 'Журнал продаж',
+ 'remove_customer' => 'Удалить клиента',
+ 'remove_discount' => '',
+ 'return' => 'Возврат',
+ 'rewards' => 'Бонусные баллы',
+ 'rewards_balance' => 'Баланс бонусных баллов',
+ 'rewards_package' => 'Награды',
+ 'rewards_remaining_balance' => 'Остаток бонусных баллов составляет ',
+ 'sale' => 'Продажа',
+ 'sale_by_invoice' => 'Продажа по накладной',
+ 'sale_for_customer' => 'Клиент:',
+ 'sale_time' => 'Время',
+ 'sales_tax' => 'Налог с продаж',
+ 'sales_total' => '',
+ 'select_customer' => 'Выберите клиента',
+ 'send_invoice' => 'Отправить накладную',
+ 'send_quote' => 'Отправить предложение',
+ 'send_receipt' => 'Отправить чек',
+ 'send_work_order' => 'Отправить рабочий заказ',
+ 'serial' => 'Серийный номер',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Показать накладную',
+ 'show_receipt' => 'Показать чек',
+ 'start_typing_customer_name' => 'Начните печатать имя клиента...',
+ 'start_typing_item_name' => 'Сосканируйте штрих-код или начните печатать название товара...',
+ 'stock' => 'Запасы',
+ 'stock_location' => 'Расположение склада',
+ 'sub_total' => 'Промежуточный итог',
+ 'successfully_deleted' => 'Успешно удалено',
+ 'successfully_restored' => 'Успешно восстановлено',
+ 'successfully_suspended_sale' => 'Продажа успешно приостановлена.',
+ 'successfully_updated' => 'Продажа успешно обновлена.',
+ 'suspend_sale' => 'Приостановка продажи',
+ 'suspended_doc_id' => 'Документ',
+ 'suspended_sale_id' => '№',
+ 'suspended_sales' => 'Приостановлено',
+ 'table' => 'Таблица',
+ 'takings' => 'Ежедневные продажи',
+ 'tax' => 'Налог',
+ 'tax_id' => '№ налога',
+ 'tax_invoice' => 'Налоговая накладная',
+ 'tax_percent' => 'Налоговые %',
+ 'taxed_ind' => 'Н',
+ 'total' => 'Итог',
+ 'total_tax_exclusive' => 'Без налога',
+ 'transaction_failed' => 'Ошибка транзакции продажи.',
+ 'unable_to_add_item' => 'Не удалось добавить товар в продажу',
+ 'unsuccessfully_deleted' => 'Продажу(и) удалить не удалось.',
+ 'unsuccessfully_restored' => 'Не удалось восстановить продажу(и).',
+ 'unsuccessfully_suspended_sale' => 'Не удалось приостановить продажу.',
+ 'unsuccessfully_updated' => 'Не удалось обновить продажу.',
+ 'unsuspend' => 'Возобновить',
+ 'unsuspend_and_delete' => 'Действие',
+ 'update' => 'Обновить',
+ 'upi' => '',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'Рабочий заказ',
+ 'work_order_number' => 'Номер рабочего заказа',
+ 'work_order_number_duplicate' => 'Номер рабочего заказа должен быть уникальным.',
+ 'work_order_sent' => 'Рабочий заказ отправлен',
+ 'work_order_unsent' => 'Не удалось отправить рабочий заказ',
];
diff --git a/app/Language/sv/Config.php b/app/Language/sv/Config.php
index b0739be45..0a817eb4c 100644
--- a/app/Language/sv/Config.php
+++ b/app/Language/sv/Config.php
@@ -1,332 +1,335 @@
"Företagsadress",
- "address_required" => "Företagsadress är ett obligatoriskt fält.",
- "all_set" => "Alla filbehörigheter är korrekt inställda!",
- "allow_duplicate_barcodes" => "Tillåt duplicera streckkoder",
- "apostrophe" => "apostrof",
- "backup_button" => "Backup",
- "backup_database" => "Säkerhetskopiera databas",
- "barcode" => "Streckkod",
- "barcode_company" => "Företagsnamn",
- "barcode_configuration" => "Streckkodskonfiguration",
- "barcode_content" => "Streckkod innehåll",
- "barcode_first_row" => "Rad 1",
- "barcode_font" => "Font",
- "barcode_formats" => "Inmatningsformat",
- "barcode_generate_if_empty" => "Skapa om tom.",
- "barcode_height" => "Höjd (px)",
- "barcode_id" => "Artikel-id / namn",
- "barcode_info" => "Streckkodskonfigurationsinformation",
- "barcode_layout" => "Streckkodslayout",
- "barcode_name" => "Namn",
- "barcode_number" => "Streckkod",
- "barcode_number_in_row" => "Antal i rad",
- "barcode_page_cellspacing" => "Visa kolumnbredd.",
- "barcode_page_width" => "Visa sidbredd",
- "barcode_price" => "Pris",
- "barcode_second_row" => "Rad 2",
- "barcode_third_row" => "Rad 3",
- "barcode_tooltip" => "Varning: Den här funktionen kan orsaka att duplicerade objekt importeras eller skapas. Använd inte om du inte vill ha dubbla streckkoder.",
- "barcode_type" => "Streckkodstyp",
- "barcode_width" => "Bredd (px)",
- "bottom" => "Botten",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Kontant decimaler",
- "cash_decimals_tooltip" => "Om kontanterna och valutadecimalen är desamma kommer ingen öresutjämning att äga rum.",
- "cash_rounding" => "Öresavjämning",
- "category_dropdown" => "Visa kategori som en rullgardinsmeny",
- "center" => "Mitten",
- "change_apperance_tooltip" => "",
- "comma" => "komma",
- "company" => "Företasnamn",
- "company_avatar" => "",
- "company_change_image" => "Ändra bild",
- "company_logo" => "Företagslogo",
- "company_remove_image" => "Radera bild",
- "company_required" => "Företagsnamn är ett obligatoriskt fält",
- "company_select_image" => "Välj Bild",
- "company_website_url" => "Företagets webbplats är inte en giltig URL (http: // ...).",
- "country_codes" => "Landskod",
- "country_codes_tooltip" => "Kommaseparerad lista över landskoder för nominatimadressuppslag.",
- "currency_code" => "Valutakod",
- "currency_decimals" => "Valuta Decimaler",
- "currency_symbol" => "Valutasymbol",
- "current_employee_only" => "",
- "customer_reward" => "Bonus",
- "customer_reward_duplicate" => "Bonus måste vara unik.",
- "customer_reward_enable" => "Aktivera kundbonus",
- "customer_reward_invalid_chars" => "Bonus kan inte innehålla '_'",
- "customer_reward_required" => "Bonus är ett obligatoriskt fält",
- "customer_sales_tax_support" => "Kundomsättningskatt Support",
- "date_or_time_format" => "Datum och tidsfilter",
- "datetimeformat" => "Datum och tid Format",
- "decimal_point" => "Decimalpunkt",
- "default_barcode_font_size_number" => "Standard streckkods teckensnittstorlek måste vara ett nummer.",
- "default_barcode_font_size_required" => "Standard streckkodstorlekstorlek är ett obligatoriskt fält.",
- "default_barcode_height_number" => "Standard streckkodshöjd måste vara ett nummer.",
- "default_barcode_height_required" => "Standard streckkodshöjd är ett obligatoriskt fält.",
- "default_barcode_num_in_row_number" => "Standard streckkodsnummer i rad måste vara ett nummer.",
- "default_barcode_num_in_row_required" => "Standard streckkodsnummer i rad måste vara ett nummer.",
- "default_barcode_page_cellspacing_number" => "Standard Streckkodssida Cellspacing måste vara ett nummer.",
- "default_barcode_page_cellspacing_required" => "Standard Streckkodssida Cellspacing är ett obligatoriskt fält.",
- "default_barcode_page_width_number" => "Standard streckkodssidans bredd måste vara ett nummer.",
- "default_barcode_page_width_required" => "Standard streckkodssidans bredd är ett obligatoriskt fält.",
- "default_barcode_width_number" => "Standard streckkodsbredd måste vara ett nummer.",
- "default_barcode_width_required" => "Standard streckkodsbredd är ett obligatoriskt fält.",
- "default_item_columns" => "Standard synliga artikel kolumner",
- "default_origin_tax_code" => "Standard Urkomstskattkod",
- "default_receivings_discount" => "Standardmottagningsrabatt",
- "default_receivings_discount_number" => "Standardmottagningsrabatten måste vara ett nummer.",
- "default_receivings_discount_required" => "Standardmottagningsrabatt är ett obligatoriskt fält.",
- "default_sales_discount" => "Standard Försäljningsrabatt %",
- "default_sales_discount_number" => "Standardförsäljningsrabatt måste vara ett nummer.",
- "default_sales_discount_required" => "Standardförsäljningsrabatt är ett obligatoriskt fält.",
- "default_tax_category" => "Standardskattskategori",
- "default_tax_code" => "Standard skattetabell",
- "default_tax_jurisdiction" => "Standardskattejurisdiktion",
- "default_tax_name_number" => "Standardskattnamn måste vara en sträng.",
- "default_tax_name_required" => "Standardskattnamn är ett obligatoriskt fält.",
- "default_tax_rate" => "Standardskattesats%",
- "default_tax_rate_1" => "Skattesats 1",
- "default_tax_rate_2" => "Skattesats 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Standardskattesats måste vara ett nummer.",
- "default_tax_rate_required" => "Standardskattesats är ett obligatoriskt fält.",
- "derive_sale_quantity" => "Tillåt avledad försäljningskvantitet",
- "derive_sale_quantity_tooltip" => "Om den är markerad kommer en ny objekttyp att tillhandahållas för poster som beställts med förlängd mängd",
- "dinner_table" => "Bord",
- "dinner_table_duplicate" => "Bordsnummer måste vara unik.",
- "dinner_table_enable" => "Aktivera bord",
- "dinner_table_invalid_chars" => "Bordsnamn får inte innehålla '_'.",
- "dinner_table_required" => "Bord är ett obligatoriskt fält.",
- "dot" => "punkt",
- "email" => "E-post",
- "email_configuration" => "E-mail Konfiguration",
- "email_mailpath" => "Sökväg till Sendmail",
- "email_protocol" => "Protokol",
- "email_receipt_check_behaviour" => "Kryssruta för e-postkvitto",
- "email_receipt_check_behaviour_always" => "Alltid förikryssad",
- "email_receipt_check_behaviour_last" => "Kom ihåg det senaste valet",
- "email_receipt_check_behaviour_never" => "Alltid urkryssad",
- "email_smtp_crypto" => "SMTP kryptering",
- "email_smtp_host" => "SMTP Server",
- "email_smtp_pass" => "SMTP Lösenord",
- "email_smtp_port" => "SMTP Port",
- "email_smtp_timeout" => "SMTP Timeout",
- "email_smtp_user" => "SMTP Användarnamn",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Upprätthålla integritet",
- "enforce_privacy_tooltip" => "Skydda kundernas integritet genom att kryptera data om deras data raderas",
- "fax" => "Fax",
- "file_perm" => "There are problems with file permissions please fix and reload this page.",
- "financial_year" => "Räkenskapsårets början",
- "financial_year_apr" => "1 april",
- "financial_year_aug" => "1 augusti",
- "financial_year_dec" => "1 december",
- "financial_year_feb" => "1 februari",
- "financial_year_jan" => "1 januari",
- "financial_year_jul" => "1 juli",
- "financial_year_jun" => "1 juni",
- "financial_year_mar" => "1 mars",
- "financial_year_may" => "1 maj",
- "financial_year_nov" => "1 november",
- "financial_year_oct" => "1 oktober",
- "financial_year_sep" => "1 september",
- "floating_labels" => "Flytande etiketter",
- "gcaptcha_enable" => "Inloggningssida reCAPTCHA",
- "gcaptcha_secret_key" => "Hemlig nyckel för reCAPTCHA",
- "gcaptcha_secret_key_required" => "reCAPTCHA Secret Key är ett obligatoriskt fält",
- "gcaptcha_site_key" => "Sid-nyckel för reCAPTCHA",
- "gcaptcha_site_key_required" => "reCAPTCHA Site Key är ett obligatoriskt fält",
- "gcaptcha_tooltip" => "Skydda inloggningssidan med Google reCAPTCHA, klicka på ikonen för ett API-nyckelpar.",
- "general" => "Allmämt",
- "general_configuration" => "Allmänna inställningar",
- "giftcard_number" => "Presentkortsnummer",
- "giftcard_random" => "Slumpa fram",
- "giftcard_series" => "Generera i serie",
- "image_allowed_file_types" => "Tillåtna filtyper",
- "image_max_height_tooltip" => "Högsta tillåtna höjd för bilduppladdningar i pixlar (px).",
- "image_max_size_tooltip" => "Högsta tillåtna filstorlek för bilduppladdningar i kilobyte (kb).",
- "image_max_width_tooltip" => "Högsta tillåtna bredd för bilduppladdningar i pixlar (px).",
- "image_restrictions" => "Begränsningar för bildöverföring",
- "include_hsn" => "Inkludera stöd för HSN-koder",
- "info" => "Information",
- "info_configuration" => "Butiksinformation",
- "input_groups" => "Inmatningsgrupper",
- "integrations" => "Integrationer",
- "integrations_configuration" => "Tredjepartsintegrationer",
- "invoice" => "Faktura",
- "invoice_configuration" => "Faktura utskriftsinställningar",
- "invoice_default_comments" => "Standardfaktura kommentarer",
- "invoice_email_message" => "Faktura e-postmall",
- "invoice_enable" => "Aktivera Fakturering",
- "invoice_printer" => "Faktura skrivare",
- "invoice_type" => "Fakturatyp",
- "is_readable" => "är läsbar, men behörigheterna är felaktigt inställda. Ställ in den på 640 eller 660 och uppdatera.",
- "is_writable" => "är skrivbar, men behörigheterna är felaktigt inställda. Ställ in den på 750 och uppdatera.",
- "item_markup" => "",
- "jsprintsetup_required" => "Varning: Den här funktionaliteten fungerar bara om du har installerat FireFox jsPrintSetup addon. Spara ändå?",
- "language" => "Språk",
- "last_used_invoice_number" => "Senast använt Fakturanummer",
- "last_used_quote_number" => "Senast använt Qouta nummer",
- "last_used_work_order_number" => "Senast använt arbetsordernummer",
- "left" => "Vänster",
- "license" => "Licens",
- "license_configuration" => "Licensvilkor",
- "line_sequence" => "Linjesekvens",
- "lines_per_page" => "Linjer per sida",
- "lines_per_page_number" => "Linjer per sida måste vara ett nummer.",
- "lines_per_page_required" => "Linjer per sida är ett obligatoriskt fält.",
- "locale" => "Lokalisering",
- "locale_configuration" => "Lokaliseringskonfiguration",
- "locale_info" => "Lokaliseringskonfigurationsinformation",
- "location" => "Lager",
- "location_configuration" => "Lagerplatser",
- "location_info" => "Platskonfigurationsinformation",
- "login_form" => "Formulär-stil för inloggning",
- "logout" => "Vill du göra en säkerhetskopiering innan du loggar ut? Klicka på [OK] för att säkerhetskopiera eller [Avbryt] för att logga ut.",
- "mailchimp" => "MailChimp",
- "mailchimp_api_key" => "API-nyckel för MailChimp",
- "mailchimp_configuration" => "Mailchimp konfiguration",
- "mailchimp_key_successfully" => "API-nyckeln är giltig.",
- "mailchimp_key_unsuccessfully" => "API-nyckeln är ogiltig.",
- "mailchimp_lists" => "MailChimp Listor",
- "mailchimp_tooltip" => "Klicka på ikonen för en API-nyckel.",
- "message" => "Medelande",
- "message_configuration" => "Meddelandekonfiguration",
- "msg_msg" => "Sparade SMS",
- "msg_msg_placeholder" => "Om du vill använda en SMS-mall, spara ditt meddelande här, annars lämna rutan tomt.",
- "msg_pwd" => "SMS-API-lösenord",
- "msg_pwd_required" => "SMS-API lösenord är ett obligatoriskt fält",
- "msg_src" => "SMS-API Sender-ID",
- "msg_src_required" => "SMS-API Sender-ID är ett obligatoriskt fält",
- "msg_uid" => "SMS-API Användarnamn",
- "msg_uid_required" => "SMS-API Användarnamn är ett obligatoriskt fält",
- "multi_pack_enabled" => "Flera paket per artikel",
- "no_risk" => "Ingen säkerhet/sårbarhetsrisker.",
- "none" => "inga",
- "notify_alignment" => "Meddelande Popup Position",
- "number_format" => "Nummerformat",
- "number_locale" => "Lokalisering",
- "number_locale_invalid" => "Den angivna lokaliseringen är ogiltig. Kontrollera länken i verktygstipset för att hitta en giltig plats.",
- "number_locale_required" => "Nummerlandskap är ett obligatoriskt fält.",
- "number_locale_tooltip" => "Hitta en lämplig ort genom denna länk.",
- "os_timezone" => "OSPOS-tidszon:",
- "ospos_info" => "OSPOS installationsinfo",
- "payment_options_order" => "Betalningsalternativ ordnning",
- "perm_risk" => "Felaktiga behörigheter gör att denna programvara är i fara.",
- "phone" => "Företagets telefon",
- "phone_required" => "Företagets telefon är ett obligatoriskt fält.",
- "print_bottom_margin" => "Marginal botten",
- "print_bottom_margin_number" => "Marginalbotten måste vara ett nummer.",
- "print_bottom_margin_required" => "Marginalbotten är ett obligatoriskt fält.",
- "print_delay_autoreturn" => "Autoreturn to Sale-försening",
- "print_delay_autoreturn_number" => "Fördröjning av autoreturn to Sale är ett obligatoriskt fält.",
- "print_delay_autoreturn_required" => "Fördröjning av autoreturn to Sale måste vara ett nummer.",
- "print_footer" => "Skriv ut sidfot",
- "print_header" => "Skriv ut sidhuvudet",
- "print_left_margin" => "Marginal vänster",
- "print_left_margin_number" => "Marginal vänster måste vara ett nummer.",
- "print_left_margin_required" => "Marginal vänster är ett obligatoriskt fält.",
- "print_receipt_check_behaviour" => "Kryssrutan Skriv ut kvitto",
- "print_receipt_check_behaviour_always" => "Kontrolleras alltid",
- "print_receipt_check_behaviour_last" => "Kom ihåg det senaste valet",
- "print_receipt_check_behaviour_never" => "Alltid urkryssad",
- "print_right_margin" => "Marginal höger",
- "print_right_margin_number" => "Marginal höger måste vara ett tal.",
- "print_right_margin_required" => "Marginal höger är ett obligatoriskt fält.",
- "print_silently" => "Visa utskriftsdialog",
- "print_top_margin" => "Marginal top",
- "print_top_margin_number" => "Marginal Top måste vara ett nummer.",
- "print_top_margin_required" => "Margin Top är ett obligatoriskt fält.",
- "quantity_decimals" => "Antal decimaler",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Standardoffert kommentar",
- "receipt" => "Kvitto",
- "receipt_category" => "",
- "receipt_configuration" => "Kvittosutskriftsinställningar",
- "receipt_default" => "Standard",
- "receipt_font_size" => "Textstorlek",
- "receipt_font_size_number" => "Teckensnittstorlek måste vara ett nummer.",
- "receipt_font_size_required" => "Teckensnittstorlek är ett obligatoriskt fält.",
- "receipt_info" => "Kvittokonfigurationsinformation",
- "receipt_printer" => "Kvittoskrivare",
- "receipt_short" => "Kort",
- "receipt_show_company_name" => "Visa företagsnamn",
- "receipt_show_description" => "Visa beskrivning",
- "receipt_show_serialnumber" => "Visa serienummer",
- "receipt_show_tax_ind" => "Visa skatteindikator",
- "receipt_show_taxes" => "Visa skatter",
- "receipt_show_total_discount" => "Visa total rabatt",
- "receipt_template" => "Kvitto mall",
- "receiving_calculate_average_price" => "Beräkna avg. Pris (Inleverans)",
- "recv_invoice_format" => "Mottagningsfakturaformat",
- "register_mode_default" => "Standardregisterläge",
- "report_an_issue" => "Rapportera ett problem",
- "return_policy_required" => "Returpolicy är ett obligatoriskt fält.",
- "reward" => "Bonus",
- "reward_configuration" => "Bonuskonfiguration",
- "right" => "Höger",
- "sales_invoice_format" => "Försäljningsfakturaformat",
- "sales_quote_format" => "Försäljningsquotaformat",
- "mailpath_invalid" => "",
- "saved_successfully" => "Konfigurationen sparades.",
- "saved_unsuccessfully" => "Konfigurationsbesparingen misslyckades.",
- "security_issue" => "Varning för säkerhetsrisker",
- "server_notice" => "Vänligen använd nedanstående info för fel-rapportering.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Visa kontorsikon",
- "statistics" => "Skicka statistik",
- "statistics_tooltip" => "Skicka statistik för utveckling och funktionsförbättringsändamål.",
- "stock_location" => "Lagerplats",
- "stock_location_duplicate" => "Lagerplats måste vara unik.",
- "stock_location_invalid_chars" => "Lagerplatsen kan inte innehålla '_'.",
- "stock_location_required" => "Lagerplats är ett obligatoriskt fält.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Kolumn 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Sök förslag till layout",
- "suggestions_second_column" => "Kolumn 2",
- "suggestions_third_column" => "Kolumn 3",
- "system_conf" => "Ställ in & Konf",
- "system_info" => "System Info",
- "table" => "Bord",
- "table_configuration" => "Bordsinställningar",
- "takings_printer" => "Kvittoskrivare",
- "tax" => "Skatt",
- "tax_category" => "Skattekategori",
- "tax_category_duplicate" => "Den angivna skattekategori existerar redan.",
- "tax_category_invalid_chars" => "Den angivna skattekategori är ogiltig.",
- "tax_category_required" => "Skattekategori krävs.",
- "tax_category_used" => "Skattekategori kan inte raderas eftersom den används.",
- "tax_configuration" => "Skattkonfiguration",
- "tax_decimals" => "Skatt decimaler",
- "tax_id" => "Skatteid",
- "tax_included" => "Skatt ingår",
- "theme" => "Tema",
- "theme_preview" => "Förhandsgranska tema:",
- "thousands_separator" => "Tusentals separator",
- "timezone" => "Tidszon",
- "timezone_error" => "OSPOS-tidszon skiljer sig från din lokala tidszon.",
- "top" => "Top",
- "use_destination_based_tax" => "Använd destinationsbaserad skatt",
- "user_timezone" => "Lokal tidszon:",
- "website" => "Hemsida",
- "wholesale_markup" => "",
- "work_order_enable" => "Arbetsorderstöd",
- "work_order_format" => "Arbetsorderformat",
+ 'address' => 'Företagsadress',
+ 'address_required' => 'Företagsadress är ett obligatoriskt fält.',
+ 'all_set' => 'Alla filbehörigheter är korrekt inställda!',
+ 'allow_duplicate_barcodes' => 'Tillåt duplicera streckkoder',
+ 'apostrophe' => 'apostrof',
+ 'backup_button' => 'Backup',
+ 'backup_database' => 'Säkerhetskopiera databas',
+ 'barcode' => 'Streckkod',
+ 'barcode_company' => 'Företagsnamn',
+ 'barcode_configuration' => 'Streckkodskonfiguration',
+ 'barcode_content' => 'Streckkod innehåll',
+ 'barcode_first_row' => 'Rad 1',
+ 'barcode_font' => 'Font',
+ 'barcode_formats' => 'Inmatningsformat',
+ 'barcode_generate_if_empty' => 'Skapa om tom.',
+ 'barcode_height' => 'Höjd (px)',
+ 'barcode_id' => 'Artikel-id / namn',
+ 'barcode_info' => 'Streckkodskonfigurationsinformation',
+ 'barcode_layout' => 'Streckkodslayout',
+ 'barcode_name' => 'Namn',
+ 'barcode_number' => 'Streckkod',
+ 'barcode_number_in_row' => 'Antal i rad',
+ 'barcode_page_cellspacing' => 'Visa kolumnbredd.',
+ 'barcode_page_width' => 'Visa sidbredd',
+ 'barcode_price' => 'Pris',
+ 'barcode_second_row' => 'Rad 2',
+ 'barcode_third_row' => 'Rad 3',
+ 'barcode_tooltip' => 'Varning: Den här funktionen kan orsaka att duplicerade objekt importeras eller skapas. Använd inte om du inte vill ha dubbla streckkoder.',
+ 'barcode_type' => 'Streckkodstyp',
+ 'barcode_width' => 'Bredd (px)',
+ 'bottom' => 'Botten',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Kontant decimaler',
+ 'cash_decimals_tooltip' => 'Om kontanterna och valutadecimalen är desamma kommer ingen öresutjämning att äga rum.',
+ 'cash_rounding' => 'Öresavjämning',
+ 'category_dropdown' => 'Visa kategori som en rullgardinsmeny',
+ 'center' => 'Mitten',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'komma',
+ 'company' => 'Företasnamn',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Ändra bild',
+ 'company_logo' => 'Företagslogo',
+ 'company_remove_image' => 'Radera bild',
+ 'company_required' => 'Företagsnamn är ett obligatoriskt fält',
+ 'company_select_image' => 'Välj Bild',
+ 'company_website_url' => 'Företagets webbplats är inte en giltig URL (http: // ...).',
+ 'country_codes' => 'Landskod',
+ 'country_codes_tooltip' => 'Kommaseparerad lista över landskoder för nominatimadressuppslag.',
+ 'currency_code' => 'Valutakod',
+ 'currency_decimals' => 'Valuta Decimaler',
+ 'currency_symbol' => 'Valutasymbol',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Bonus',
+ 'customer_reward_duplicate' => 'Bonus måste vara unik.',
+ 'customer_reward_enable' => 'Aktivera kundbonus',
+ 'customer_reward_invalid_chars' => "Bonus kan inte innehålla '_'",
+ 'customer_reward_required' => 'Bonus är ett obligatoriskt fält',
+ 'customer_sales_tax_support' => 'Kundomsättningskatt Support',
+ 'date_or_time_format' => 'Datum och tidsfilter',
+ 'datetimeformat' => 'Datum och tid Format',
+ 'decimal_point' => 'Decimalpunkt',
+ 'default_barcode_font_size_number' => 'Standard streckkods teckensnittstorlek måste vara ett nummer.',
+ 'default_barcode_font_size_required' => 'Standard streckkodstorlekstorlek är ett obligatoriskt fält.',
+ 'default_barcode_height_number' => 'Standard streckkodshöjd måste vara ett nummer.',
+ 'default_barcode_height_required' => 'Standard streckkodshöjd är ett obligatoriskt fält.',
+ 'default_barcode_num_in_row_number' => 'Standard streckkodsnummer i rad måste vara ett nummer.',
+ 'default_barcode_num_in_row_required' => 'Standard streckkodsnummer i rad måste vara ett nummer.',
+ 'default_barcode_page_cellspacing_number' => 'Standard Streckkodssida Cellspacing måste vara ett nummer.',
+ 'default_barcode_page_cellspacing_required' => 'Standard Streckkodssida Cellspacing är ett obligatoriskt fält.',
+ 'default_barcode_page_width_number' => 'Standard streckkodssidans bredd måste vara ett nummer.',
+ 'default_barcode_page_width_required' => 'Standard streckkodssidans bredd är ett obligatoriskt fält.',
+ 'default_barcode_width_number' => 'Standard streckkodsbredd måste vara ett nummer.',
+ 'default_barcode_width_required' => 'Standard streckkodsbredd är ett obligatoriskt fält.',
+ 'default_item_columns' => 'Standard synliga artikel kolumner',
+ 'default_origin_tax_code' => 'Standard Urkomstskattkod',
+ 'default_receivings_discount' => 'Standardmottagningsrabatt',
+ 'default_receivings_discount_number' => 'Standardmottagningsrabatten måste vara ett nummer.',
+ 'default_receivings_discount_required' => 'Standardmottagningsrabatt är ett obligatoriskt fält.',
+ 'default_sales_discount' => 'Standard Försäljningsrabatt %',
+ 'default_sales_discount_number' => 'Standardförsäljningsrabatt måste vara ett nummer.',
+ 'default_sales_discount_required' => 'Standardförsäljningsrabatt är ett obligatoriskt fält.',
+ 'default_tax_category' => 'Standardskattskategori',
+ 'default_tax_code' => 'Standard skattetabell',
+ 'default_tax_jurisdiction' => 'Standardskattejurisdiktion',
+ 'default_tax_name_number' => 'Standardskattnamn måste vara en sträng.',
+ 'default_tax_name_required' => 'Standardskattnamn är ett obligatoriskt fält.',
+ 'default_tax_rate' => 'Standardskattesats%',
+ 'default_tax_rate_1' => 'Skattesats 1',
+ 'default_tax_rate_2' => 'Skattesats 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Standardskattesats måste vara ett nummer.',
+ 'default_tax_rate_required' => 'Standardskattesats är ett obligatoriskt fält.',
+ 'derive_sale_quantity' => 'Tillåt avledad försäljningskvantitet',
+ 'derive_sale_quantity_tooltip' => 'Om den är markerad kommer en ny objekttyp att tillhandahållas för poster som beställts med förlängd mängd',
+ 'dinner_table' => 'Bord',
+ 'dinner_table_duplicate' => 'Bordsnummer måste vara unik.',
+ 'dinner_table_enable' => 'Aktivera bord',
+ 'dinner_table_invalid_chars' => "Bordsnamn får inte innehålla '_'.",
+ 'dinner_table_required' => 'Bord är ett obligatoriskt fält.',
+ 'dot' => 'punkt',
+ 'email' => 'E-post',
+ 'email_configuration' => 'E-mail Konfiguration',
+ 'email_mailpath' => 'Sökväg till Sendmail',
+ 'email_protocol' => 'Protokol',
+ 'email_receipt_check_behaviour' => 'Kryssruta för e-postkvitto',
+ 'email_receipt_check_behaviour_always' => 'Alltid förikryssad',
+ 'email_receipt_check_behaviour_last' => 'Kom ihåg det senaste valet',
+ 'email_receipt_check_behaviour_never' => 'Alltid urkryssad',
+ 'email_smtp_crypto' => 'SMTP kryptering',
+ 'email_smtp_host' => 'SMTP Server',
+ 'email_smtp_pass' => 'SMTP Lösenord',
+ 'email_smtp_port' => 'SMTP Port',
+ 'email_smtp_timeout' => 'SMTP Timeout',
+ 'email_smtp_user' => 'SMTP Användarnamn',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Upprätthålla integritet',
+ 'enforce_privacy_tooltip' => 'Skydda kundernas integritet genom att kryptera data om deras data raderas',
+ 'fax' => 'Fax',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => 'Räkenskapsårets början',
+ 'financial_year_apr' => '1 april',
+ 'financial_year_aug' => '1 augusti',
+ 'financial_year_dec' => '1 december',
+ 'financial_year_feb' => '1 februari',
+ 'financial_year_jan' => '1 januari',
+ 'financial_year_jul' => '1 juli',
+ 'financial_year_jun' => '1 juni',
+ 'financial_year_mar' => '1 mars',
+ 'financial_year_may' => '1 maj',
+ 'financial_year_nov' => '1 november',
+ 'financial_year_oct' => '1 oktober',
+ 'financial_year_sep' => '1 september',
+ 'floating_labels' => 'Flytande etiketter',
+ 'gcaptcha_enable' => 'Inloggningssida reCAPTCHA',
+ 'gcaptcha_secret_key' => 'Hemlig nyckel för reCAPTCHA',
+ 'gcaptcha_secret_key_required' => 'reCAPTCHA Secret Key är ett obligatoriskt fält',
+ 'gcaptcha_site_key' => 'Sid-nyckel för reCAPTCHA',
+ 'gcaptcha_site_key_required' => 'reCAPTCHA Site Key är ett obligatoriskt fält',
+ 'gcaptcha_tooltip' => 'Skydda inloggningssidan med Google reCAPTCHA, klicka på ikonen för ett API-nyckelpar.',
+ 'general' => 'Allmämt',
+ 'general_configuration' => 'Allmänna inställningar',
+ 'giftcard_number' => 'Presentkortsnummer',
+ 'giftcard_random' => 'Slumpa fram',
+ 'giftcard_series' => 'Generera i serie',
+ 'image_allowed_file_types' => 'Tillåtna filtyper',
+ 'image_max_height_tooltip' => 'Högsta tillåtna höjd för bilduppladdningar i pixlar (px).',
+ 'image_max_size_tooltip' => 'Högsta tillåtna filstorlek för bilduppladdningar i kilobyte (kb).',
+ 'image_max_width_tooltip' => 'Högsta tillåtna bredd för bilduppladdningar i pixlar (px).',
+ 'image_restrictions' => 'Begränsningar för bildöverföring',
+ 'include_hsn' => 'Inkludera stöd för HSN-koder',
+ 'info' => 'Information',
+ 'info_configuration' => 'Butiksinformation',
+ 'input_groups' => 'Inmatningsgrupper',
+ 'integrations' => 'Integrationer',
+ 'integrations_configuration' => 'Tredjepartsintegrationer',
+ 'invoice' => 'Faktura',
+ 'invoice_configuration' => 'Faktura utskriftsinställningar',
+ 'invoice_default_comments' => 'Standardfaktura kommentarer',
+ 'invoice_email_message' => 'Faktura e-postmall',
+ 'invoice_enable' => 'Aktivera Fakturering',
+ 'invoice_printer' => 'Faktura skrivare',
+ 'invoice_type' => 'Fakturatyp',
+ 'is_readable' => 'är läsbar, men behörigheterna är felaktigt inställda. Ställ in den på 640 eller 660 och uppdatera.',
+ 'is_writable' => 'är skrivbar, men behörigheterna är felaktigt inställda. Ställ in den på 750 och uppdatera.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Varning: Den här funktionaliteten fungerar bara om du har installerat FireFox jsPrintSetup addon. Spara ändå?',
+ 'language' => 'Språk',
+ 'last_used_invoice_number' => 'Senast använt Fakturanummer',
+ 'last_used_quote_number' => 'Senast använt Qouta nummer',
+ 'last_used_work_order_number' => 'Senast använt arbetsordernummer',
+ 'left' => 'Vänster',
+ 'license' => 'Licens',
+ 'license_configuration' => 'Licensvilkor',
+ 'line_sequence' => 'Linjesekvens',
+ 'lines_per_page' => 'Linjer per sida',
+ 'lines_per_page_number' => 'Linjer per sida måste vara ett nummer.',
+ 'lines_per_page_required' => 'Linjer per sida är ett obligatoriskt fält.',
+ 'locale' => 'Lokalisering',
+ 'locale_configuration' => 'Lokaliseringskonfiguration',
+ 'locale_info' => 'Lokaliseringskonfigurationsinformation',
+ 'location' => 'Lager',
+ 'location_configuration' => 'Lagerplatser',
+ 'location_info' => 'Platskonfigurationsinformation',
+ 'login_form' => 'Formulär-stil för inloggning',
+ 'logout' => 'Vill du göra en säkerhetskopiering innan du loggar ut? Klicka på [OK] för att säkerhetskopiera eller [Avbryt] för att logga ut.',
+ 'mailchimp' => 'MailChimp',
+ 'mailchimp_api_key' => 'API-nyckel för MailChimp',
+ 'mailchimp_configuration' => 'Mailchimp konfiguration',
+ 'mailchimp_key_successfully' => 'API-nyckeln är giltig.',
+ 'mailchimp_key_unsuccessfully' => 'API-nyckeln är ogiltig.',
+ 'mailchimp_lists' => 'MailChimp Listor',
+ 'mailchimp_tooltip' => 'Klicka på ikonen för en API-nyckel.',
+ 'message' => 'Medelande',
+ 'message_configuration' => 'Meddelandekonfiguration',
+ 'msg_msg' => 'Sparade SMS',
+ 'msg_msg_placeholder' => 'Om du vill använda en SMS-mall, spara ditt meddelande här, annars lämna rutan tomt.',
+ 'msg_pwd' => 'SMS-API-lösenord',
+ 'msg_pwd_required' => 'SMS-API lösenord är ett obligatoriskt fält',
+ 'msg_src' => 'SMS-API Sender-ID',
+ 'msg_src_required' => 'SMS-API Sender-ID är ett obligatoriskt fält',
+ 'msg_uid' => 'SMS-API Användarnamn',
+ 'msg_uid_required' => 'SMS-API Användarnamn är ett obligatoriskt fält',
+ 'multi_pack_enabled' => 'Flera paket per artikel',
+ 'no_risk' => 'Ingen säkerhet/sårbarhetsrisker.',
+ 'none' => 'inga',
+ 'notify_alignment' => 'Meddelande Popup Position',
+ 'number_format' => 'Nummerformat',
+ 'number_locale' => 'Lokalisering',
+ 'number_locale_invalid' => 'Den angivna lokaliseringen är ogiltig. Kontrollera länken i verktygstipset för att hitta en giltig plats.',
+ 'number_locale_required' => 'Nummerlandskap är ett obligatoriskt fält.',
+ 'number_locale_tooltip' => 'Hitta en lämplig ort genom denna länk.',
+ 'os_timezone' => 'OSPOS-tidszon:',
+ 'ospos_info' => 'OSPOS installationsinfo',
+ 'payment_options_order' => 'Betalningsalternativ ordnning',
+ 'payment_reference_code_length_limits' => 'Betalningsreferenskod
Längdgränser',
+ 'payment_reference_code_length_max_label' => 'Max',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => 'Felaktiga behörigheter gör att denna programvara är i fara.',
+ 'phone' => 'Företagets telefon',
+ 'phone_required' => 'Företagets telefon är ett obligatoriskt fält.',
+ 'print_bottom_margin' => 'Marginal botten',
+ 'print_bottom_margin_number' => 'Marginalbotten måste vara ett nummer.',
+ 'print_bottom_margin_required' => 'Marginalbotten är ett obligatoriskt fält.',
+ 'print_delay_autoreturn' => 'Autoreturn to Sale-försening',
+ 'print_delay_autoreturn_number' => 'Fördröjning av autoreturn to Sale är ett obligatoriskt fält.',
+ 'print_delay_autoreturn_required' => 'Fördröjning av autoreturn to Sale måste vara ett nummer.',
+ 'print_footer' => 'Skriv ut sidfot',
+ 'print_header' => 'Skriv ut sidhuvudet',
+ 'print_left_margin' => 'Marginal vänster',
+ 'print_left_margin_number' => 'Marginal vänster måste vara ett nummer.',
+ 'print_left_margin_required' => 'Marginal vänster är ett obligatoriskt fält.',
+ 'print_receipt_check_behaviour' => 'Kryssrutan Skriv ut kvitto',
+ 'print_receipt_check_behaviour_always' => 'Kontrolleras alltid',
+ 'print_receipt_check_behaviour_last' => 'Kom ihåg det senaste valet',
+ 'print_receipt_check_behaviour_never' => 'Alltid urkryssad',
+ 'print_right_margin' => 'Marginal höger',
+ 'print_right_margin_number' => 'Marginal höger måste vara ett tal.',
+ 'print_right_margin_required' => 'Marginal höger är ett obligatoriskt fält.',
+ 'print_silently' => 'Visa utskriftsdialog',
+ 'print_top_margin' => 'Marginal top',
+ 'print_top_margin_number' => 'Marginal Top måste vara ett nummer.',
+ 'print_top_margin_required' => 'Margin Top är ett obligatoriskt fält.',
+ 'quantity_decimals' => 'Antal decimaler',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Standardoffert kommentar',
+ 'receipt' => 'Kvitto',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Kvittosutskriftsinställningar',
+ 'receipt_default' => 'Standard',
+ 'receipt_font_size' => 'Textstorlek',
+ 'receipt_font_size_number' => 'Teckensnittstorlek måste vara ett nummer.',
+ 'receipt_font_size_required' => 'Teckensnittstorlek är ett obligatoriskt fält.',
+ 'receipt_info' => 'Kvittokonfigurationsinformation',
+ 'receipt_printer' => 'Kvittoskrivare',
+ 'receipt_short' => 'Kort',
+ 'receipt_show_company_name' => 'Visa företagsnamn',
+ 'receipt_show_description' => 'Visa beskrivning',
+ 'receipt_show_serialnumber' => 'Visa serienummer',
+ 'receipt_show_tax_ind' => 'Visa skatteindikator',
+ 'receipt_show_taxes' => 'Visa skatter',
+ 'receipt_show_total_discount' => 'Visa total rabatt',
+ 'receipt_template' => 'Kvitto mall',
+ 'receiving_calculate_average_price' => 'Beräkna avg. Pris (Inleverans)',
+ 'recv_invoice_format' => 'Mottagningsfakturaformat',
+ 'register_mode_default' => 'Standardregisterläge',
+ 'report_an_issue' => 'Rapportera ett problem',
+ 'return_policy_required' => 'Returpolicy är ett obligatoriskt fält.',
+ 'reward' => 'Bonus',
+ 'reward_configuration' => 'Bonuskonfiguration',
+ 'right' => 'Höger',
+ 'sales_invoice_format' => 'Försäljningsfakturaformat',
+ 'sales_quote_format' => 'Försäljningsquotaformat',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => 'Konfigurationen sparades.',
+ 'saved_unsuccessfully' => 'Konfigurationsbesparingen misslyckades.',
+ 'security_issue' => 'Varning för säkerhetsrisker',
+ 'server_notice' => 'Vänligen använd nedanstående info för fel-rapportering.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Visa kontorsikon',
+ 'statistics' => 'Skicka statistik',
+ 'statistics_tooltip' => 'Skicka statistik för utveckling och funktionsförbättringsändamål.',
+ 'stock_location' => 'Lagerplats',
+ 'stock_location_duplicate' => 'Lagerplats måste vara unik.',
+ 'stock_location_invalid_chars' => "Lagerplatsen kan inte innehålla '_'.",
+ 'stock_location_required' => 'Lagerplats är ett obligatoriskt fält.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Kolumn 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Sök förslag till layout',
+ 'suggestions_second_column' => 'Kolumn 2',
+ 'suggestions_third_column' => 'Kolumn 3',
+ 'system_conf' => 'Ställ in & Konf',
+ 'system_info' => 'System Info',
+ 'table' => 'Bord',
+ 'table_configuration' => 'Bordsinställningar',
+ 'takings_printer' => 'Kvittoskrivare',
+ 'tax' => 'Skatt',
+ 'tax_category' => 'Skattekategori',
+ 'tax_category_duplicate' => 'Den angivna skattekategori existerar redan.',
+ 'tax_category_invalid_chars' => 'Den angivna skattekategori är ogiltig.',
+ 'tax_category_required' => 'Skattekategori krävs.',
+ 'tax_category_used' => 'Skattekategori kan inte raderas eftersom den används.',
+ 'tax_configuration' => 'Skattkonfiguration',
+ 'tax_decimals' => 'Skatt decimaler',
+ 'tax_id' => 'Skatteid',
+ 'tax_included' => 'Skatt ingår',
+ 'theme' => 'Tema',
+ 'theme_preview' => 'Förhandsgranska tema:',
+ 'thousands_separator' => 'Tusentals separator',
+ 'timezone' => 'Tidszon',
+ 'timezone_error' => 'OSPOS-tidszon skiljer sig från din lokala tidszon.',
+ 'top' => 'Top',
+ 'use_destination_based_tax' => 'Använd destinationsbaserad skatt',
+ 'user_timezone' => 'Lokal tidszon:',
+ 'website' => 'Hemsida',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Arbetsorderstöd',
+ 'work_order_format' => 'Arbetsorderformat',
];
diff --git a/app/Language/sv/Login.php b/app/Language/sv/Login.php
index 3cb286958..a7d4991bf 100644
--- a/app/Language/sv/Login.php
+++ b/app/Language/sv/Login.php
@@ -1,25 +1,30 @@
"Jag är inte en robot.",
- "go" => "Logga in",
- "invalid_gcaptcha" => "Ogiltig jag är ingen robot.",
- "invalid_installation" => "Installationen är inte korrekt, kontrollera din php.ini fil.",
- "invalid_username_and_password" => "Ogiltigt användarnamn eller lösenord.",
- "login" => "Login",
- "logout" => "Logga ut",
- "migration_needed" => "En migration av databasen till {0} kommer att påbörjas efter inloggningen.",
- "migration_required" => "Databasmigration krävs",
- "migration_auth_message" => "Admin-uppgifter krävs för att godkänna databasmigrationen till version {0}. Logga in för att fortsätta.",
- "migration_initializing" => "Initierar databas",
- "migration_running" => "Kör databasmigrationer...",
- "migration_complete" => "Databas initierad framgångsrikt!",
- "migration_complete_login" => "Du kan nu logga in.",
- "migration_failed" => "Migration misslyckades",
- "migration_error_connection" => "Anslutningsfel. Försök igen.",
- "migration_complete_redirect" => "Migration klar. Omdirigerar till login...",
- "password" => "Lösenord",
- "required_username" => "Fältet för användarnamn krävs.",
- "username" => "Användarnamn",
- "welcome" => "Välkommen till {0}!",
+ "gcaptcha" => "Jag är inte en robot.",
+ "go" => "Logga in",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Ogiltig jag är ingen robot.",
+ "invalid_installation" => "Installationen är inte korrekt, kontrollera din php.ini fil.",
+ "invalid_username_and_password" => "Ogiltigt användarnamn eller lösenord.",
+ "login" => "Login",
+ "logout" => "Logga ut",
+ "migrating_database" => "Migrerar databas",
+ "migration_auth_message" => "Admin-uppgifter krävs för att godkänna databasmigrationen till version {0}. Logga in för att fortsätta.",
+ "migration_complete" => "Databas initierad framgångsrikt!",
+ "migration_complete_login" => "Du kan nu logga in.",
+ "migration_complete_migrate" => "Databasen har migrerats!",
+ "migration_complete_redirect" => "Migration klar. Omdirigerar till login...",
+ "migration_error_connection" => "Anslutningsfel. Försök igen.",
+ "migration_failed" => "Migration misslyckades",
+ "migration_initializing" => "Initierar databas",
+ "migration_needed" => "En migration av databasen till {0} kommer att påbörjas efter inloggningen.",
+ "migration_required" => "Databasmigration krävs",
+ "migration_running" => "Kör databasmigrationer...",
+ "password" => "Lösenord",
+ "required_username" => "Fältet för användarnamn krävs.",
+ "username" => "Användarnamn",
+ "welcome" => "Välkommen till {0}!"
];
diff --git a/app/Language/sv/Sales.php b/app/Language/sv/Sales.php
index 697668945..690f43ddc 100644
--- a/app/Language/sv/Sales.php
+++ b/app/Language/sv/Sales.php
@@ -1,232 +1,236 @@
"Tillgängliga poäng",
- "rewards_package" => "Belöning",
- "rewards_remaining_balance" => "Beloppets återstående värde är ",
- "account_number" => "Konto #",
- "add_payment" => "Lägg till betalning",
- "amount_due" => "Belopp",
- "amount_tendered" => "Upplagt belopp",
- "authorized_signature" => "Auktoriserad signatur",
- "cancel_sale" => "Avbryt",
- "cash" => "Kontant",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "Kontantjustering",
- "cash_deposit" => "Kontant insättning",
- "cash_filter" => "Kontant",
- "change_due" => "Ändra förfallna",
- "change_price" => "Ändra försäljningspris",
- "check" => "Kontrollera",
- "check_balance" => "Kontrollera resten",
- "check_filter" => "Kontrollera",
- "close" => "",
- "comment" => "Kommentar",
- "comments" => "Kommentarer",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Slutför",
- "confirm_cancel_sale" => "Är du säker på att du vill rensa den här försäljningen? Alla objekt kommer att rensas.",
- "confirm_delete" => "Är du säker på att du vill radera de valda försäljningarna?",
- "confirm_restore" => "Är du säker på att du vill återställa den valda försäljningen?",
- "credit" => "Kreditkort",
- "credit_deposit" => "Kreditkort",
- "credit_filter" => "Kreditkort",
- "current_table" => "",
- "customer" => "Namn",
- "customer_address" => "Adress",
- "customer_discount" => "Rabatt",
- "customer_email" => "E-mail",
- "customer_location" => "Plats",
- "customer_mailchimp_status" => "MailChimp status",
- "customer_optional" => "(Krävs för förfallna betalningar)",
- "customer_required" => "(Nödvändig)",
- "customer_total" => "Totalt",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Försäljningsdag",
- "date_range" => "Datumintervall",
- "date_required" => "Ett korrekt datum måste anges.",
- "date_type" => "Datum är ett obligatoriskt fält.",
- "debit" => "Kontokort",
- "debit_filter" => "",
- "delete" => "Tillåt radera",
- "delete_confirmation" => "Är du säker på att du vill radera denna försäljning? Den här åtgärden kan inte ångras.",
- "delete_entire_sale" => "Ta bort hela försäljningen",
- "delete_successful" => "Försäljningen raderades.",
- "delete_unsuccessful" => "Försäljningsradering misslyckades.",
- "description_abbrv" => "Beskr.",
- "discard" => "Kassera",
- "discard_quote" => "",
- "discount" => "Rabatt %",
- "discount_included" => "% Rabatt",
- "discount_short" => "%",
- "due" => "skuld",
- "due_filter" => "skuld",
- "edit" => "Ändra",
- "edit_item" => "Ändra Artikel",
- "edit_sale" => "Ändra försäljning",
- "email_receipt" => "E-mail kvitto",
- "employee" => "Anställd",
- "entry" => "Post",
- "error_editing_item" => "Ändra artikel misslyckades",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Hitta eller skanna artikel",
- "find_or_scan_item_or_receipt" => "Hitta eller skanna artikel eller kvitto",
- "giftcard" => "Presentkort",
- "giftcard_balance" => "Presentkortsbalans",
- "giftcard_filter" => "",
- "giftcard_number" => "Presentkortsnummer",
- "group_by_category" => "Gruppera per kategori",
- "group_by_type" => "Gruppera per typ",
- "hsn" => "HSN",
- "id" => "Försäljnings-ID",
- "include_prices" => "Inkludera priser?",
- "invoice" => "Faktura",
- "invoice_confirm" => "Denna faktura skickas till",
- "invoice_enable" => "Fakturanummer",
- "invoice_filter" => "Fakturor",
- "invoice_no_email" => "Den här kunden har ingen giltig e-postadress.",
- "invoice_number" => "Faktura #",
- "invoice_number_duplicate" => "Fakturanummer måste vara unika.",
- "invoice_sent" => "Faktura skickad till",
- "invoice_total" => "Faktura totalt",
- "invoice_type_custom_invoice" => "Anpassad faktura (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Anpassad momsfaktura (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Faktura (faktura.php",
- "invoice_type_tax_invoice" => "Skattefaktura (tax_invoice.php)",
- "invoice_unsent" => "Faktura misslyckades med att skickas till",
- "invoice_update" => "Omräkning",
- "item_insufficient_of_stock" => "Artikeln har otillräckligt lager.",
- "item_name" => "Namn på artikel",
- "item_number" => "Artikel #",
- "item_out_of_stock" => "Artikel är slut på lager.",
- "key_browser" => "Hjälpfulla genvägar",
- "key_cancel" => "Avbryter nuvarande Kvot/Faktura/Försäljning",
- "key_customer_search" => "Kundsökning",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Lägg till betalning och fullständig faktura/försäljning",
- "key_full" => "Öppna i fullskärmsläge",
- "key_function" => "Function",
- "key_help" => "Genvägar",
- "key_help_modal" => "Öppna fönstret för genvägar",
- "key_in" => "Zooma in",
- "key_item_search" => "Sök efter produkt",
- "key_out" => "Zooma ut",
- "key_payment" => "Lägg till betalning",
- "key_print" => "Skriv ut aktuell sida",
- "key_restore" => "Återställ originalskärmen/Zoomningen",
- "key_search" => "Sök i rapporttabeller",
- "key_suspend" => "Skjut upp pågående försäljning",
- "key_suspended" => "Visa uppskjutna försäljningar",
- "key_system" => "System-genvägar",
- "key_tendered" => "Redigera det remitterade beloppet",
- "key_title" => "Tangentbordsgenvägar för försäljning",
- "mc" => "",
- "mode" => "Registrera läge",
- "must_enter_numeric" => "Belopp som anslås måste vara ett nummer.",
- "must_enter_numeric_giftcard" => "Presentkortets nummer måste vara ett nummer.",
- "new_customer" => "Ny kund",
- "new_item" => "Ny artikel",
- "no_description" => "Inget",
- "no_filter" => "Alla",
- "no_items_in_cart" => "Det finns inga varor i kundvagnen.",
- "no_sales_to_display" => "Ingen försäljning att visa.",
- "none_selected" => "Du har inte valt någon Försäljning (ar) att radera.",
- "nontaxed_ind" => " ",
- "not_authorized" => "Den här åtgärden är inte tillåten.",
- "one_or_multiple" => "Försäljning(ar)",
- "payment" => "Betalningstyp",
- "payment_amount" => "Belopp",
- "payment_not_cover_total" => "Betalningsbeloppet måste vara större än eller lika med Totalt.",
- "payment_type" => "Typ",
- "payments" => "",
- "payments_total" => "Betalningar Totalt",
- "price" => "Pris",
- "print_after_sale" => "Skriv ut efter försäljning",
- "quantity" => "Antal",
- "quantity_less_than_reorder_level" => "Varning: Önskat antal är under påfyllnadsnivå för den aktuella produkten.",
- "quantity_less_than_zero" => "Varning: Önskat antal är otillräckligt. Du kan fortfarande bearbeta försäljningen, men granska din inventering.",
- "quantity_of_items" => "Antal {0} objekt",
- "quote" => "Kvot",
- "quote_number" => "Quote nummer",
- "quote_number_duplicate" => "Quote nummer måste vara unikt.",
- "quote_sent" => "Quote skickat till",
- "quote_unsent" => "Quote misslyckades att skickas till",
- "receipt" => "Kvitto",
- "receipt_no_email" => "Denna kund har ingen giltig e-postadress.",
- "receipt_number" => "Försäljning #",
- "receipt_sent" => "Kvitto skickat till",
- "receipt_unsent" => "Kvittot misslyckades med att skickas till",
- "refund" => "Återbetalningstyp",
- "register" => "Försäljningsregister",
- "remove_customer" => "Ta bort kund",
- "remove_discount" => "",
- "return" => "Retur",
- "rewards" => "Belöningspoäng",
- "rewards_balance" => "Belöningspoäng Balans",
- "sale" => "Försäljning",
- "sale_by_invoice" => "Försäljning via faktura",
- "sale_for_customer" => "Kund:",
- "sale_time" => "Tid",
- "sales_tax" => "Försäljnings skatt",
- "sales_total" => "",
- "select_customer" => "Välj kund (valfritt)",
- "send_invoice" => "Skicka faktura",
- "send_quote" => "Skicka Quote",
- "send_receipt" => "Skicka kvitto",
- "send_work_order" => "Skicka arbetsorder",
- "serial" => "Serie",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Visa faktura",
- "show_receipt" => "Visa kvitto",
- "start_typing_customer_name" => "Börja skriva kunduppgifter ...",
- "start_typing_item_name" => "Börja skriva typnamn eller skanna streckkod ...",
- "stock" => "Lager",
- "stock_location" => "Lagerplats",
- "sub_total" => "Delsumma",
- "successfully_deleted" => "Du har tagit bort",
- "successfully_restored" => "Du har lyckats återställa",
- "successfully_suspended_sale" => "Försäljning avbruten.",
- "successfully_updated" => "Försäljningsuppdatering lyckades.",
- "suspend_sale" => "Avbruten",
- "suspended_doc_id" => "Dokument",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Avbruten",
- "table" => "Tabell",
- "takings" => "Daglig försäljning",
- "tax" => "Skatt",
- "tax_id" => "Skatteid",
- "tax_invoice" => "Skatte faktura",
- "tax_percent" => "Skattesats %",
- "taxed_ind" => "T",
- "total" => "Totalt",
- "total_tax_exclusive" => "Skatt exkluderad",
- "transaction_failed" => "Försäljningstransaktionen misslyckades.",
- "unable_to_add_item" => "Artikel tillägg till försäljning misslyckades",
- "unsuccessfully_deleted" => "Försäljning (ar) radering misslyckades.",
- "unsuccessfully_restored" => "Återställningen av försäljning (ar) misslyckades.",
- "unsuccessfully_suspended_sale" => "Försäljningsuppehåll misslyckades.",
- "unsuccessfully_updated" => "Försäljnings uppdatering misslyckades.",
- "unsuspend" => "Återuppta",
- "unsuspend_and_delete" => "Verkställ",
- "update" => "Uppdatera",
- "upi" => "UPI",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "Arbetsorder",
- "work_order_number" => "Arbetsorder nummer",
- "work_order_number_duplicate" => "Arbetsorder nummer måste vara unikt.",
- "work_order_sent" => "Arbetsorder skickad till",
- "work_order_unsent" => "Arbetsorder gick ej att skicka till",
- "selected_customer" => "Vald kund",
+ 'account_number' => 'Konto #',
+ 'add_payment' => 'Lägg till betalning',
+ 'amount_due' => 'Belopp',
+ 'amount_tendered' => 'Upplagt belopp',
+ 'authorized_signature' => 'Auktoriserad signatur',
+ 'cancel_sale' => 'Avbryt',
+ 'cash' => 'Kontant',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'Kontantjustering',
+ 'cash_deposit' => 'Kontant insättning',
+ 'cash_filter' => 'Kontant',
+ 'change_due' => 'Ändra förfallna',
+ 'change_price' => 'Ändra försäljningspris',
+ 'check' => 'Kontrollera',
+ 'check_balance' => 'Kontrollera resten',
+ 'check_filter' => 'Kontrollera',
+ 'close' => '',
+ 'comment' => 'Kommentar',
+ 'comments' => 'Kommentarer',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Slutför',
+ 'confirm_cancel_sale' => 'Är du säker på att du vill rensa den här försäljningen? Alla objekt kommer att rensas.',
+ 'confirm_delete' => 'Är du säker på att du vill radera de valda försäljningarna?',
+ 'confirm_restore' => 'Är du säker på att du vill återställa den valda försäljningen?',
+ 'credit' => 'Kreditkort',
+ 'credit_deposit' => 'Kreditkort',
+ 'credit_filter' => 'Kreditkort',
+ 'current_table' => '',
+ 'customer' => 'Namn',
+ 'customer_address' => 'Adress',
+ 'customer_discount' => 'Rabatt',
+ 'customer_email' => 'E-mail',
+ 'customer_location' => 'Plats',
+ 'customer_mailchimp_status' => 'MailChimp status',
+ 'customer_optional' => '(Krävs för förfallna betalningar)',
+ 'customer_required' => '(Nödvändig)',
+ 'customer_total' => 'Totalt',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Tillgängliga poäng',
+ 'daily_sales' => '',
+ 'date' => 'Försäljningsdag',
+ 'date_range' => 'Datumintervall',
+ 'date_required' => 'Ett korrekt datum måste anges.',
+ 'date_type' => 'Datum är ett obligatoriskt fält.',
+ 'debit' => 'Kontokort',
+ 'debit_filter' => '',
+ 'delete' => 'Tillåt radera',
+ 'delete_confirmation' => 'Är du säker på att du vill radera denna försäljning? Den här åtgärden kan inte ångras.',
+ 'delete_entire_sale' => 'Ta bort hela försäljningen',
+ 'delete_successful' => 'Försäljningen raderades.',
+ 'delete_unsuccessful' => 'Försäljningsradering misslyckades.',
+ 'description_abbrv' => 'Beskr.',
+ 'discard' => 'Kassera',
+ 'discard_quote' => '',
+ 'discount' => 'Rabatt %',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Rabatt',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'skuld',
+ 'due_filter' => 'skuld',
+ 'edit' => 'Ändra',
+ 'edit_item' => 'Ändra Artikel',
+ 'edit_sale' => 'Ändra försäljning',
+ 'email_receipt' => 'E-mail kvitto',
+ 'employee' => 'Anställd',
+ 'entry' => 'Post',
+ 'error_editing_item' => 'Ändra artikel misslyckades',
+ 'find_or_scan_item' => 'Hitta eller skanna artikel',
+ 'find_or_scan_item_or_receipt' => 'Hitta eller skanna artikel eller kvitto',
+ 'giftcard' => 'Presentkort',
+ 'giftcard_balance' => 'Presentkortsbalans',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Presentkortsnummer',
+ 'group_by_category' => 'Gruppera per kategori',
+ 'group_by_type' => 'Gruppera per typ',
+ 'hsn' => 'HSN',
+ 'id' => 'Försäljnings-ID',
+ 'include_prices' => 'Inkludera priser?',
+ 'invoice' => 'Faktura',
+ 'invoice_confirm' => 'Denna faktura skickas till',
+ 'invoice_enable' => 'Fakturanummer',
+ 'invoice_filter' => 'Fakturor',
+ 'invoice_no_email' => 'Den här kunden har ingen giltig e-postadress.',
+ 'invoice_number' => 'Faktura #',
+ 'invoice_number_duplicate' => 'Fakturanummer måste vara unika.',
+ 'invoice_sent' => 'Faktura skickad till',
+ 'invoice_total' => 'Faktura totalt',
+ 'invoice_type_custom_invoice' => 'Anpassad faktura (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Anpassad momsfaktura (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Faktura (faktura.php',
+ 'invoice_type_tax_invoice' => 'Skattefaktura (tax_invoice.php)',
+ 'invoice_unsent' => 'Faktura misslyckades med att skickas till',
+ 'invoice_update' => 'Omräkning',
+ 'item_insufficient_of_stock' => 'Artikeln har otillräckligt lager.',
+ 'item_name' => 'Namn på artikel',
+ 'item_number' => 'Artikel #',
+ 'item_out_of_stock' => 'Artikel är slut på lager.',
+ 'key_browser' => 'Hjälpfulla genvägar',
+ 'key_cancel' => 'Avbryter nuvarande Kvot/Faktura/Försäljning',
+ 'key_customer_search' => 'Kundsökning',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Lägg till betalning och fullständig faktura/försäljning',
+ 'key_full' => 'Öppna i fullskärmsläge',
+ 'key_function' => 'Function',
+ 'key_help' => 'Genvägar',
+ 'key_help_modal' => 'Öppna fönstret för genvägar',
+ 'key_in' => 'Zooma in',
+ 'key_item_search' => 'Sök efter produkt',
+ 'key_out' => 'Zooma ut',
+ 'key_payment' => 'Lägg till betalning',
+ 'key_print' => 'Skriv ut aktuell sida',
+ 'key_restore' => 'Återställ originalskärmen/Zoomningen',
+ 'key_search' => 'Sök i rapporttabeller',
+ 'key_suspend' => 'Skjut upp pågående försäljning',
+ 'key_suspended' => 'Visa uppskjutna försäljningar',
+ 'key_system' => 'System-genvägar',
+ 'key_tendered' => 'Redigera det remitterade beloppet',
+ 'key_title' => 'Tangentbordsgenvägar för försäljning',
+ 'mc' => '',
+ 'mode' => 'Registrera läge',
+ 'must_enter_numeric' => 'Belopp som anslås måste vara ett nummer.',
+ 'must_enter_numeric_giftcard' => 'Presentkortets nummer måste vara ett nummer.',
+ 'must_enter_reference_code' => 'Referens-/hämtningsnummer måste anges.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Ny kund',
+ 'new_item' => 'Ny artikel',
+ 'no_description' => 'Inget',
+ 'no_filter' => 'Alla',
+ 'no_items_in_cart' => 'Det finns inga varor i kundvagnen.',
+ 'no_sales_to_display' => 'Ingen försäljning att visa.',
+ 'none_selected' => 'Du har inte valt någon Försäljning (ar) att radera.',
+ 'nontaxed_ind' => ' ',
+ 'not_authorized' => 'Den här åtgärden är inte tillåten.',
+ 'one_or_multiple' => 'Försäljning(ar)',
+ 'payment' => 'Betalningstyp',
+ 'payment_amount' => 'Belopp',
+ 'payment_not_cover_total' => 'Betalningsbeloppet måste vara större än eller lika med Totalt.',
+ 'payment_type' => 'Typ',
+ 'payments' => '',
+ 'payments_total' => 'Betalningar Totalt',
+ 'price' => 'Pris',
+ 'print_after_sale' => 'Skriv ut efter försäljning',
+ 'quantity' => 'Antal',
+ 'quantity_less_than_reorder_level' => 'Varning: Önskat antal är under påfyllnadsnivå för den aktuella produkten.',
+ 'quantity_less_than_zero' => 'Varning: Önskat antal är otillräckligt. Du kan fortfarande bearbeta försäljningen, men granska din inventering.',
+ 'quantity_of_items' => 'Antal {0} objekt',
+ 'quote' => 'Kvot',
+ 'quote_number' => 'Quote nummer',
+ 'quote_number_duplicate' => 'Quote nummer måste vara unikt.',
+ 'quote_sent' => 'Quote skickat till',
+ 'quote_unsent' => 'Quote misslyckades att skickas till',
+ 'receipt' => 'Kvitto',
+ 'receipt_no_email' => 'Denna kund har ingen giltig e-postadress.',
+ 'receipt_number' => 'Försäljning #',
+ 'receipt_sent' => 'Kvitto skickat till',
+ 'receipt_unsent' => 'Kvittot misslyckades med att skickas till',
+ 'reference_code' => 'Betalningsreferenskod',
+ 'reference_code_invalid_characters' => 'Referenskoden får bara innehålla bokstäver och siffror.',
+ 'reference_code_length_error' => 'Referenskodens längd är ogiltig.',
+ 'refund' => 'Återbetalningstyp',
+ 'register' => 'Försäljningsregister',
+ 'remove_customer' => 'Ta bort kund',
+ 'remove_discount' => '',
+ 'return' => 'Retur',
+ 'rewards' => 'Belöningspoäng',
+ 'rewards_balance' => 'Belöningspoäng Balans',
+ 'rewards_package' => 'Belöning',
+ 'rewards_remaining_balance' => 'Beloppets återstående värde är ',
+ 'sale' => 'Försäljning',
+ 'sale_by_invoice' => 'Försäljning via faktura',
+ 'sale_for_customer' => 'Kund:',
+ 'sale_time' => 'Tid',
+ 'sales_tax' => 'Försäljnings skatt',
+ 'sales_total' => '',
+ 'select_customer' => 'Välj kund (valfritt)',
+ 'selected_customer' => 'Vald kund',
+ 'send_invoice' => 'Skicka faktura',
+ 'send_quote' => 'Skicka Quote',
+ 'send_receipt' => 'Skicka kvitto',
+ 'send_work_order' => 'Skicka arbetsorder',
+ 'serial' => 'Serie',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Visa faktura',
+ 'show_receipt' => 'Visa kvitto',
+ 'start_typing_customer_name' => 'Börja skriva kunduppgifter ...',
+ 'start_typing_item_name' => 'Börja skriva typnamn eller skanna streckkod ...',
+ 'stock' => 'Lager',
+ 'stock_location' => 'Lagerplats',
+ 'sub_total' => 'Delsumma',
+ 'successfully_deleted' => 'Du har tagit bort',
+ 'successfully_restored' => 'Du har lyckats återställa',
+ 'successfully_suspended_sale' => 'Försäljning avbruten.',
+ 'successfully_updated' => 'Försäljningsuppdatering lyckades.',
+ 'suspend_sale' => 'Avbruten',
+ 'suspended_doc_id' => 'Dokument',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Avbruten',
+ 'table' => 'Tabell',
+ 'takings' => 'Daglig försäljning',
+ 'tax' => 'Skatt',
+ 'tax_id' => 'Skatteid',
+ 'tax_invoice' => 'Skatte faktura',
+ 'tax_percent' => 'Skattesats %',
+ 'taxed_ind' => 'T',
+ 'total' => 'Totalt',
+ 'total_tax_exclusive' => 'Skatt exkluderad',
+ 'transaction_failed' => 'Försäljningstransaktionen misslyckades.',
+ 'unable_to_add_item' => 'Artikel tillägg till försäljning misslyckades',
+ 'unsuccessfully_deleted' => 'Försäljning (ar) radering misslyckades.',
+ 'unsuccessfully_restored' => 'Återställningen av försäljning (ar) misslyckades.',
+ 'unsuccessfully_suspended_sale' => 'Försäljningsuppehåll misslyckades.',
+ 'unsuccessfully_updated' => 'Försäljnings uppdatering misslyckades.',
+ 'unsuspend' => 'Återuppta',
+ 'unsuspend_and_delete' => 'Verkställ',
+ 'update' => 'Uppdatera',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'Arbetsorder',
+ 'work_order_number' => 'Arbetsorder nummer',
+ 'work_order_number_duplicate' => 'Arbetsorder nummer måste vara unikt.',
+ 'work_order_sent' => 'Arbetsorder skickad till',
+ 'work_order_unsent' => 'Arbetsorder gick ej att skicka till',
];
diff --git a/app/Language/sw-KE/Config.php b/app/Language/sw-KE/Config.php
index 36f5f1ed1..8d5f46256 100644
--- a/app/Language/sw-KE/Config.php
+++ b/app/Language/sw-KE/Config.php
@@ -1,332 +1,335 @@
"Anwani ya Kampuni",
- "address_required" => "Anwani ya kampuni ni kiashiria kinachohitajika.",
- "all_set" => "Ruhusa zote za faili zimewekwa vizuri!",
- "allow_duplicate_barcodes" => "Ruhusu Misimbomstari iliyorudiwa",
- "apostrophe" => "apostrofi",
- "backup_button" => "Hifadhi Nakala",
- "backup_database" => "Hifadhi Nakala ya Hifadhidata",
- "barcode" => "Msimbo wa Mstari",
- "barcode_company" => "Jina la Kampuni",
- "barcode_configuration" => "Mpangilio wa Msimbomstari",
- "barcode_content" => "Yaliyomo kwenye Msimbomstari",
- "barcode_first_row" => "Safu 1",
- "barcode_font" => "Aina ya Herufi",
- "barcode_formats" => "Aina za Uingizaji",
- "barcode_generate_if_empty" => "Tengeneza ikiwa tupu.",
- "barcode_height" => "Urefu (px)",
- "barcode_id" => "Id ya Bidhaa/Jina",
- "barcode_info" => "Taarifa za Mpangilio wa Msimbomstari",
- "barcode_layout" => "Mpangilio wa Msimbomstari",
- "barcode_name" => "Jina",
- "barcode_number" => "Msimbomstari",
- "barcode_number_in_row" => "Idadi kwenye safu",
- "barcode_page_cellspacing" => "Onyesha nafasi kati ya seli za ukurasa.",
- "barcode_page_width" => "Onyesha upana wa ukurasa",
- "barcode_price" => "Bei",
- "barcode_second_row" => "Safu 2",
- "barcode_third_row" => "Safu 3",
- "barcode_tooltip" => "Tahadhari: Kipengele hiki kinaweza kusababisha kurudiwa kwa bidhaa zilizoingizwa au kuundwa. Usitumie ikiwa hutaki Msimbomstari(Barcode) zilizorudiwa.",
- "barcode_type" => "Aina ya Msimbomstari",
- "barcode_width" => "Upana (px)",
- "bottom" => "Chini",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Desimali za Fedha Taslimu",
- "cash_decimals_tooltip" => "Ikiwa Desimali za Fedha Taslimu na Desimali za Sarafu ni sawa basi hakuna mzunguko wa fedha taslimu utakaofanyika, isipokuwa Mzunguko wa Fedha Taslimu umewekwa kwenye Nusu Tano.",
- "cash_rounding" => "Mzunguko wa Fedha Taslimu",
- "category_dropdown" => "Onyesha Kategoria kama orodha ya kushuka",
- "center" => "Katikati",
- "change_apperance_tooltip" => "",
- "comma" => "koma",
- "company" => "Jina la Kampuni",
- "company_avatar" => "",
- "company_change_image" => "Badilisha Picha",
- "company_logo" => "Nembo ya Kampuni",
- "company_remove_image" => "Ondoa Picha",
- "company_required" => "Jina la kampuni ni kiashiria kinachohitajika",
- "company_select_image" => "Chagua Picha",
- "company_website_url" => "Tovuti ya kampuni si URL halali (http://...).",
- "country_codes" => "Msimbo wa Nchi",
- "country_codes_tooltip" => "Orodha ya misimbo ya nchi zilizotenganishwa kwa koma kwa utafutaji wa anwani wa uteuzi.",
- "currency_code" => "Nambari ya Sarafu",
- "currency_decimals" => "Desimali za Sarafu",
- "currency_symbol" => "Alama ya Sarafu",
- "current_employee_only" => "",
- "customer_reward" => "Zawadi",
- "customer_reward_duplicate" => "Zawadi lazima iwe ya kipekee.",
- "customer_reward_enable" => "Washa Zawadi kwa Wateja",
- "customer_reward_invalid_chars" => "Zawadi haiwezi kuwa na '_'",
- "customer_reward_required" => "Zawadi ni kiashiria kinachohitajika",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "Kichujio cha Tarehe na Muda",
- "datetimeformat" => "Muundo wa Tarehe na Muda",
- "decimal_point" => "Nukta ya Desimali",
- "default_barcode_font_size_number" => "Ukubwa wa herufi wa Msimbomstari lazima uwe nambari.",
- "default_barcode_font_size_required" => "Ukubwa wa herufi wa Msimbomstari ni kiashiria kinachohitajika.",
- "default_barcode_height_number" => "Urefu wa Msimbomstari lazima uwe nambari.",
- "default_barcode_height_required" => "Urefu wa Msimbomstari ni kiashiria kinachohitajika.",
- "default_barcode_num_in_row_number" => "Idadi ya Msimbomstari kwenye safu lazima iwe nambari.",
- "default_barcode_num_in_row_required" => "Idadi ya Msimbomstari kwenye safu ni kiashiria kinachohitajika.",
- "default_barcode_page_cellspacing_number" => "Nafasi kati ya chumba cha ukurasa wa Msimbomstari lazima iwe nambari.",
- "default_barcode_page_cellspacing_required" => "Nafasi kati ya chumba cha ukurasa wa Msimbomstari ni kiashiria kinachohitajika.",
- "default_barcode_page_width_number" => "Upana wa ukurasa wa Msimbomstari lazima uwe nambari.",
- "default_barcode_page_width_required" => "Upana wa ukurasa wa Msimbomstari ni kiashiria kinachohitajika.",
- "default_barcode_width_number" => "Upana wa Msimbomstari lazima uwe nambari.",
- "default_barcode_width_required" => "Upana wa Msimbomstari ni kiashiria kinachohitajika.",
- "default_item_columns" => "Safu wima za Bidhaa Zinazoonekana Kwa Chaguo-msingi",
- "default_origin_tax_code" => "Nambari ya Kodi ya Asili kwa Chaguo-msingi",
- "default_receivings_discount" => "Punguzo la Manunuzi kwa Chaguo-msingi",
- "default_receivings_discount_number" => "Punguzo la Manunuzi kwa Chaguo-msingi lazima liwe nambari.",
- "default_receivings_discount_required" => "Punguzo la Manunuzi kwa Chaguo-msingi ni kiashiria kinachohitajika.",
- "default_sales_discount" => "Punguzo la Mauzo kwa Chaguo-msingi",
- "default_sales_discount_number" => "Punguzo la Mauzo kwa Chaguo-msingi lazima liwe nambari.",
- "default_sales_discount_required" => "Punguzo la Mauzo kwa Chaguo-msingi ni kiashiria kinachohitajika.",
- "default_tax_category" => "Aina ya Kodi kwa Chaguo-msingi",
- "default_tax_code" => "Nambari ya Kodi kwa Chaguo-msingi",
- "default_tax_jurisdiction" => "Eneo la Kodi kwa Chaguo-msingi",
- "default_tax_name_number" => "Jina la Kodi lazima liwe maandishi.",
- "default_tax_name_required" => "Jina la Kodi ni kiashiria kinachohitajika.",
- "default_tax_rate" => "Kiwango cha Kodi kwa Chaguo-msingi %",
- "default_tax_rate_1" => "Kiwango cha Kodi 1",
- "default_tax_rate_2" => "Kiwango cha Kodi 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Kiwango cha Kodi kwa Chaguo-msingi lazima kiwe nambari.",
- "default_tax_rate_required" => "Kiwango cha Kodi kwa Chaguo-msingi ni kiashiria kinachohitajika.",
- "derive_sale_quantity" => "Ruhusu Kiasi cha Mauzo Kilichotokana",
- "derive_sale_quantity_tooltip" => "Ikiwa imechaguliwa basi aina mpya ya bidhaa itatolewa kwa bidhaa zilizoagizwa kwa kiasi kilichoongezwa",
- "dinner_table" => "Jedwali",
- "dinner_table_duplicate" => "Jedwali lazima iwe ya kipekee.",
- "dinner_table_enable" => "Washa Jedwali za Chakula",
- "dinner_table_invalid_chars" => "Jina la Jedwali haliwezi kuwa na '_'.",
- "dinner_table_required" => "Jedwali ni kiashiria kinachohitajika.",
- "dot" => "nukta",
- "email" => "Barua Pepe",
- "email_configuration" => "Mpangilio wa Barua Pepe",
- "email_mailpath" => "Njia ya Sendmail",
- "email_protocol" => "Itifaki",
- "email_receipt_check_behaviour" => "Kisanduku cha Risiti ya Barua Pepe",
- "email_receipt_check_behaviour_always" => "Daima imechaguliwa",
- "email_receipt_check_behaviour_last" => "Kumbuka chaguo la mwisho",
- "email_receipt_check_behaviour_never" => "Daima haijachaguliwa",
- "email_smtp_crypto" => "Usimbaji wa SMTP",
- "email_smtp_host" => "Seva ya SMTP",
- "email_smtp_pass" => "Nenosiri la SMTP",
- "email_smtp_port" => "Lango la SMTP",
- "email_smtp_timeout" => "Muda wa SMTP kuisha",
- "email_smtp_user" => "Jina la Mtumiaji la SMTP",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Lazimisha Faragha",
- "enforce_privacy_tooltip" => "Linda faragha ya Wateja kwa kulazimisha kuchanganya data endapo data zao zitafutwa",
- "fax" => "Faksi",
- "file_perm" => "Kuna matatizo na ruhusa za faili. Tafadhali rekebisha na upakie upya ukurasa huu.",
- "financial_year" => "Mwanzo wa Mwaka wa Fedha",
- "financial_year_apr" => "1 Aprili",
- "financial_year_aug" => "1 Agosti",
- "financial_year_dec" => "1 Desemba",
- "financial_year_feb" => "1 Februari",
- "financial_year_jan" => "1 Januari",
- "financial_year_jul" => "1 Julai",
- "financial_year_jun" => "1 Juni",
- "financial_year_mar" => "1 Machi",
- "financial_year_may" => "1 Mei",
- "financial_year_nov" => "1 Novemba",
- "financial_year_oct" => "1 Oktoba",
- "financial_year_sep" => "1 Septemba",
- "floating_labels" => "Lebo Zinazoelea",
- "gcaptcha_enable" => "Ukurasa wa Ingia reCAPTCHA",
- "gcaptcha_secret_key" => "Funguo ya Siri ya reCAPTCHA",
- "gcaptcha_secret_key_required" => "Funguo ya Siri ya reCAPTCHA ni kiashiria kinachohitajika",
- "gcaptcha_site_key" => "Funguo ya Tovuti ya reCAPTCHA",
- "gcaptcha_site_key_required" => "Funguo ya Tovuti ya reCAPTCHA ni kiashiria kinachohitajika",
- "gcaptcha_tooltip" => "Linda ukurasa wa Ingia kwa Google reCAPTCHA, bonyeza ikoni kupata jozi ya funguo za API.",
- "general" => "Jumla",
- "general_configuration" => "Mpangilio wa Jumla",
- "giftcard_number" => "Nambari ya Kadi ya Zawadi",
- "giftcard_random" => "Tengeneza kwa Nasibu",
- "giftcard_series" => "Tengeneza kwa Mfululizo",
- "image_allowed_file_types" => "Aina za faili zinazoruhusiwa",
- "image_max_height_tooltip" => "Urefu wa juu wa picha zinazopakiwa kwa pikseli (px).",
- "image_max_size_tooltip" => "Ukubwa wa juu wa faili za picha zinazopakiwa kwa kilobaiti (kb).",
- "image_max_width_tooltip" => "Upana wa juu wa picha zinazopakiwa kwa pikseli (px).",
- "image_restrictions" => "Vizuizi vya Upakiaji wa Picha",
- "include_hsn" => "Jumuisha Msaada wa Nambari za HSN",
- "info" => "Taarifa",
- "info_configuration" => "Taarifa za Duka",
- "input_groups" => "Makundi ya Uingizaji",
- "integrations" => "Muunganiko",
- "integrations_configuration" => "Muunganiko wa Watu wengine",
- "invoice" => "Ankara",
- "invoice_configuration" => "Mpangilio wa Uchapishaji wa Ankara",
- "invoice_default_comments" => "Maoni ya Chaguo-msingi ya Ankara",
- "invoice_email_message" => "Kiolezo cha Barua Pepe ya Ankara",
- "invoice_enable" => "Washa Utoaji wa Ankara",
- "invoice_printer" => "Kichapishi cha Ankara",
- "invoice_type" => "Aina ya Ankara",
- "is_readable" => "inasomeka, lakini ruhusa zimewekwa vibaya. Tafadhali weka 640 au 660 na upakie upya.",
- "is_writable" => "inaandikika, lakini ruhusa zimewekwa vibaya. Tafadhali weka 750 na upakie upya.",
- "item_markup" => "",
- "jsprintsetup_required" => "Tahadhari: Kipengele hiki kitafanya kazi tu ikiwa una kiendelezi cha FireFox jsPrintSetup kimewekwa. Hifadhi hata hivyo?",
- "language" => "Lugha",
- "last_used_invoice_number" => "Nambari ya mwisho ya Ankara iliyotumika",
- "last_used_quote_number" => "Nambari ya mwisho ya Nukuu iliyotumika",
- "last_used_work_order_number" => "Nambari ya mwisho ya Agizo la Kazi iliyotumika",
- "left" => "Kushoto",
- "license" => "Leseni",
- "license_configuration" => "Taarifa ya Leseni",
- "line_sequence" => "Mpangilio wa Mistari",
- "lines_per_page" => "Mistari kwa Kila Ukurasa",
- "lines_per_page_number" => "Mistari kwa Kila Ukurasa lazima iwe nambari.",
- "lines_per_page_required" => "Mistari kwa Kila Ukurasa ni kiashiria kinachohitajika.",
- "locale" => "Ujanibishaji",
- "locale_configuration" => "Mpangilio wa Ujanibishaji",
- "locale_info" => "Taarifa za Mpangilio wa Ujanibishaji",
- "location" => "Stoo",
- "location_configuration" => "Maeneo ya Stoo",
- "location_info" => "Taarifa za Mpangilio wa Stoo",
- "login_form" => "Aina ya Fomu ya Ingia",
- "logout" => "Unataka kufanya hifadhi nakala kabla ya kutoka? Bonyeza [Sawa] kuhifadhi au [Ghairi] kutoka.",
- "mailchimp" => "MailChimp",
- "mailchimp_api_key" => "Funguo ya API ya MailChimp",
- "mailchimp_configuration" => "Mpangilio wa MailChimp",
- "mailchimp_key_successfully" => "Funguo ya API ni sahihi.",
- "mailchimp_key_unsuccessfully" => "Funguo ya API si sahihi.",
- "mailchimp_lists" => "Orodha za MailChimp",
- "mailchimp_tooltip" => "Bonyeza ikoni kupata Funguo ya API.",
- "message" => "Ujumbe",
- "message_configuration" => "Mpangilio wa Ujumbe",
- "msg_msg" => "Ujumbe wa SMS uliohifadhiwa",
- "msg_msg_placeholder" => "Ikiwa unataka kutumia kiolezo cha SMS hifadhi ujumbe wako hapa, vinginevyo acha kisanduku wazi.",
- "msg_pwd" => "Nenosiri la SMS-API",
- "msg_pwd_required" => "Nenosiri la SMS-API ni kiashiria kinachohitajika",
- "msg_src" => "ID ya Mtumaji wa SMS-API",
- "msg_src_required" => "ID ya Mtumaji wa SMS-API ni kiashiria kinachohitajika",
- "msg_uid" => "Jina la Mtumiaji la SMS-API",
- "msg_uid_required" => "Jina la Mtumiaji la SMS-API ni kiashiria kinachohitajika",
- "multi_pack_enabled" => "Vifurushi Vingi kwa Kila Bidhaa",
- "no_risk" => "Hakuna hatari za usalama/udhaifu.",
- "none" => "hakuna",
- "notify_alignment" => "Nafasi ya Taarifa Ibukizi",
- "number_format" => "Muundo wa Nambari",
- "number_locale" => "Ujanibishaji",
- "number_locale_invalid" => "Ujanibishaji uliyoingiza si sahihi. Angalia kiungo kwenye kidokezo kupata Ujanibishaji sahihi.",
- "number_locale_required" => "Ujanibishaji ya Nambari ni kiashiria kinachohitajika.",
- "number_locale_tooltip" => "Tafuta Ujanibishaji inayofaa kupitia kiungo hiki.",
- "os_timezone" => "Saa ya OSPOS:",
- "ospos_info" => "Taarifa za Usakinishaji wa OSPOS",
- "payment_options_order" => "Mpangilio wa Chaguo za Malipo",
- "perm_risk" => "Ruhusa zisizo sahihi zinaacha programu hii kwenye hatari.",
- "phone" => "Namba ya simu ya Kampuni",
- "phone_required" => "Namba ya simu ya Kampuni ni kiashiria kinachohitajika.",
- "print_bottom_margin" => "Pembe ya Chini",
- "print_bottom_margin_number" => "Pembe ya Chini lazima iwe nambari.",
- "print_bottom_margin_required" => "Pembe ya Chini ni kiashiria kinachohitajika.",
- "print_delay_autoreturn" => "Muda wa Kurudi Moja kwa Moja kwenye Mauzo",
- "print_delay_autoreturn_number" => "Muda wa Kurudi Moja kwa Moja kwenye Mauzo ni kiashiria kinachohitajika.",
- "print_delay_autoreturn_required" => "Muda wa Kurudi Moja kwa Moja kwenye Mauzo lazima uwe nambari.",
- "print_footer" => "Chapisha Kijachini cha Kivinjari",
- "print_header" => "Chapisha Kijuu cha Kivinjari",
- "print_left_margin" => "Pembe ya Kushoto",
- "print_left_margin_number" => "Pembe ya Kushoto lazima iwe nambari.",
- "print_left_margin_required" => "Pembe ya Kushoto ni kiashiria kinachohitajika.",
- "print_receipt_check_behaviour" => "Kisanduku cha Risiti ya Kuchapisha",
- "print_receipt_check_behaviour_always" => "Daima imechaguliwa",
- "print_receipt_check_behaviour_last" => "Kumbuka chaguo la mwisho",
- "print_receipt_check_behaviour_never" => "Daima haijachaguliwa",
- "print_right_margin" => "Pembe ya Kulia",
- "print_right_margin_number" => "Pembe ya Kulia lazima iwe nambari.",
- "print_right_margin_required" => "Pembe ya Kulia ni kiashiria kinachohitajika.",
- "print_silently" => "Onyesha Dirisha la Kuchapisha",
- "print_top_margin" => "Pembe ya Juu",
- "print_top_margin_number" => "Pembe ya Juu lazima iwe nambari.",
- "print_top_margin_required" => "Pembe ya Juu ni kiashiria kinachohitajika.",
- "quantity_decimals" => "Desimali za Kiasi",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Maoni ya Chaguo-msingi la Nukuu",
- "receipt" => "Risiti",
- "receipt_category" => "",
- "receipt_configuration" => "Mpangilio wa Uchapishaji wa Risiti",
- "receipt_default" => "Chaguo-msingi",
- "receipt_font_size" => "Ukubwa wa Herufi",
- "receipt_font_size_number" => "Ukubwa wa Herufi lazima uwe nambari.",
- "receipt_font_size_required" => "Ukubwa wa Herufi ni kiashiria kinachohitajika.",
- "receipt_info" => "Taarifa za Mpangilio wa Risiti",
- "receipt_printer" => "Kichapishi cha Tiketi",
- "receipt_short" => "Fupi",
- "receipt_show_company_name" => "Onyesha Jina la Kampuni",
- "receipt_show_description" => "Onyesha Maelezo",
- "receipt_show_serialnumber" => "Onyesha Serial Number",
- "receipt_show_tax_ind" => "Onyesha Kiashiria cha Kodi",
- "receipt_show_taxes" => "Onyesha Kodi",
- "receipt_show_total_discount" => "Onyesha Jumla ya Punguzo",
- "receipt_template" => "Kiolezo cha Risiti",
- "receiving_calculate_average_price" => "Hesabu Bei ya wastani (Manunuzi)",
- "recv_invoice_format" => "Muundo wa Ankara ya Manunuzi",
- "register_mode_default" => "Hali ya Usajili kwa Chaguo-msingi",
- "report_an_issue" => "Ripoti tatizo",
- "return_policy_required" => "Return Policy ni kiashiria kinachohitajika.",
- "reward" => "Zawadi",
- "reward_configuration" => "Mpangilio wa Zawadi",
- "right" => "Kulia",
- "sales_invoice_format" => "Muundo wa Ankara ya Mauzo",
- "sales_quote_format" => "Muundo wa Nukuu ya Mauzo",
- "mailpath_invalid" => "",
- "saved_successfully" => "Mpangilio umehifadhiwa kwa mafanikio.",
- "saved_unsuccessfully" => "Mpangilio umeshindwa kuhifadhiwa.",
- "security_issue" => "Onyo la Udhaifu wa Usalama",
- "server_notice" => "Tafadhali tumia taarifa zilizo hapa chini kuripoti tatizo.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Onyesha ikoni ya ofisi",
- "statistics" => "Tuma Takwimu",
- "statistics_tooltip" => "Tuma takwimu kwa madhumuni ya maendeleo na uboreshaji wa vipengele.",
- "stock_location" => "Stoo",
- "stock_location_duplicate" => "Stoo lazima iwe ya kipekee.",
- "stock_location_invalid_chars" => "Stoo haiwezi kuwa na '_'.",
- "stock_location_required" => "Stoo ni kiashiria kinachohitajika.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Safu wima 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Mpangilio wa Mapendekezo ya Utafutaji",
- "suggestions_second_column" => "Safu wima 2",
- "suggestions_third_column" => "Safu wima 3",
- "system_conf" => "Usanidi & Mpangilio",
- "system_info" => "Taarifa za Mfumo",
- "table" => "Jedwali",
- "table_configuration" => "Jedwali la Mpangilio",
- "takings_printer" => "Kichapishi cha Risiti",
- "tax" => "Kodi",
- "tax_category" => "Aina ya Kodi",
- "tax_category_duplicate" => "Aina ya kodi uliyoingiza tayari ipo.",
- "tax_category_invalid_chars" => "Aina ya kodi uliyoingiza si sahihi.",
- "tax_category_required" => "Aina ya kodi ni lazima.",
- "tax_category_used" => "Aina ya kodi haiwezi kufutwa kwa sababu inatumika.",
- "tax_configuration" => "Mpangilio wa Kodi",
- "tax_decimals" => "Desimali za Kodi",
- "tax_id" => "Nambari ya Kodi",
- "tax_included" => "Kodi Imejumuishwa",
- "theme" => "Mandhari",
- "theme_preview" => "Onyesha Mandhari:",
- "thousands_separator" => "Kitenganishi cha Maelfu",
- "timezone" => "Saa za Eneo",
- "timezone_error" => "Saa za OSPOS ni tofauti na Saa za Eneo lako.",
- "top" => "Juu",
- "use_destination_based_tax" => "Tumia Kodi ya Kulingana na Eneo",
- "user_timezone" => "Saa za Eneo lako:",
- "website" => "Tovuti",
- "wholesale_markup" => "",
- "work_order_enable" => "Msaada wa Agizo la Kazi",
- "work_order_format" => "Muundo wa Agizo la Kazi",
-];
\ No newline at end of file
+ 'address' => 'Anwani ya Kampuni',
+ 'address_required' => 'Anwani ya kampuni ni kiashiria kinachohitajika.',
+ 'all_set' => 'Ruhusa zote za faili zimewekwa vizuri!',
+ 'allow_duplicate_barcodes' => 'Ruhusu Misimbomstari iliyorudiwa',
+ 'apostrophe' => 'apostrofi',
+ 'backup_button' => 'Hifadhi Nakala',
+ 'backup_database' => 'Hifadhi Nakala ya Hifadhidata',
+ 'barcode' => 'Msimbo wa Mstari',
+ 'barcode_company' => 'Jina la Kampuni',
+ 'barcode_configuration' => 'Mpangilio wa Msimbomstari',
+ 'barcode_content' => 'Yaliyomo kwenye Msimbomstari',
+ 'barcode_first_row' => 'Safu 1',
+ 'barcode_font' => 'Aina ya Herufi',
+ 'barcode_formats' => 'Aina za Uingizaji',
+ 'barcode_generate_if_empty' => 'Tengeneza ikiwa tupu.',
+ 'barcode_height' => 'Urefu (px)',
+ 'barcode_id' => 'Id ya Bidhaa/Jina',
+ 'barcode_info' => 'Taarifa za Mpangilio wa Msimbomstari',
+ 'barcode_layout' => 'Mpangilio wa Msimbomstari',
+ 'barcode_name' => 'Jina',
+ 'barcode_number' => 'Msimbomstari',
+ 'barcode_number_in_row' => 'Idadi kwenye safu',
+ 'barcode_page_cellspacing' => 'Onyesha nafasi kati ya seli za ukurasa.',
+ 'barcode_page_width' => 'Onyesha upana wa ukurasa',
+ 'barcode_price' => 'Bei',
+ 'barcode_second_row' => 'Safu 2',
+ 'barcode_third_row' => 'Safu 3',
+ 'barcode_tooltip' => 'Tahadhari: Kipengele hiki kinaweza kusababisha kurudiwa kwa bidhaa zilizoingizwa au kuundwa. Usitumie ikiwa hutaki Msimbomstari(Barcode) zilizorudiwa.',
+ 'barcode_type' => 'Aina ya Msimbomstari',
+ 'barcode_width' => 'Upana (px)',
+ 'bottom' => 'Chini',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Desimali za Fedha Taslimu',
+ 'cash_decimals_tooltip' => 'Ikiwa Desimali za Fedha Taslimu na Desimali za Sarafu ni sawa basi hakuna mzunguko wa fedha taslimu utakaofanyika, isipokuwa Mzunguko wa Fedha Taslimu umewekwa kwenye Nusu Tano.',
+ 'cash_rounding' => 'Mzunguko wa Fedha Taslimu',
+ 'category_dropdown' => 'Onyesha Kategoria kama orodha ya kushuka',
+ 'center' => 'Katikati',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'koma',
+ 'company' => 'Jina la Kampuni',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Badilisha Picha',
+ 'company_logo' => 'Nembo ya Kampuni',
+ 'company_remove_image' => 'Ondoa Picha',
+ 'company_required' => 'Jina la kampuni ni kiashiria kinachohitajika',
+ 'company_select_image' => 'Chagua Picha',
+ 'company_website_url' => 'Tovuti ya kampuni si URL halali (http://...).',
+ 'country_codes' => 'Msimbo wa Nchi',
+ 'country_codes_tooltip' => 'Orodha ya misimbo ya nchi zilizotenganishwa kwa koma kwa utafutaji wa anwani wa uteuzi.',
+ 'currency_code' => 'Nambari ya Sarafu',
+ 'currency_decimals' => 'Desimali za Sarafu',
+ 'currency_symbol' => 'Alama ya Sarafu',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Zawadi',
+ 'customer_reward_duplicate' => 'Zawadi lazima iwe ya kipekee.',
+ 'customer_reward_enable' => 'Washa Zawadi kwa Wateja',
+ 'customer_reward_invalid_chars' => "Zawadi haiwezi kuwa na '_'",
+ 'customer_reward_required' => 'Zawadi ni kiashiria kinachohitajika',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => 'Kichujio cha Tarehe na Muda',
+ 'datetimeformat' => 'Muundo wa Tarehe na Muda',
+ 'decimal_point' => 'Nukta ya Desimali',
+ 'default_barcode_font_size_number' => 'Ukubwa wa herufi wa Msimbomstari lazima uwe nambari.',
+ 'default_barcode_font_size_required' => 'Ukubwa wa herufi wa Msimbomstari ni kiashiria kinachohitajika.',
+ 'default_barcode_height_number' => 'Urefu wa Msimbomstari lazima uwe nambari.',
+ 'default_barcode_height_required' => 'Urefu wa Msimbomstari ni kiashiria kinachohitajika.',
+ 'default_barcode_num_in_row_number' => 'Idadi ya Msimbomstari kwenye safu lazima iwe nambari.',
+ 'default_barcode_num_in_row_required' => 'Idadi ya Msimbomstari kwenye safu ni kiashiria kinachohitajika.',
+ 'default_barcode_page_cellspacing_number' => 'Nafasi kati ya chumba cha ukurasa wa Msimbomstari lazima iwe nambari.',
+ 'default_barcode_page_cellspacing_required' => 'Nafasi kati ya chumba cha ukurasa wa Msimbomstari ni kiashiria kinachohitajika.',
+ 'default_barcode_page_width_number' => 'Upana wa ukurasa wa Msimbomstari lazima uwe nambari.',
+ 'default_barcode_page_width_required' => 'Upana wa ukurasa wa Msimbomstari ni kiashiria kinachohitajika.',
+ 'default_barcode_width_number' => 'Upana wa Msimbomstari lazima uwe nambari.',
+ 'default_barcode_width_required' => 'Upana wa Msimbomstari ni kiashiria kinachohitajika.',
+ 'default_item_columns' => 'Safu wima za Bidhaa Zinazoonekana Kwa Chaguo-msingi',
+ 'default_origin_tax_code' => 'Nambari ya Kodi ya Asili kwa Chaguo-msingi',
+ 'default_receivings_discount' => 'Punguzo la Manunuzi kwa Chaguo-msingi',
+ 'default_receivings_discount_number' => 'Punguzo la Manunuzi kwa Chaguo-msingi lazima liwe nambari.',
+ 'default_receivings_discount_required' => 'Punguzo la Manunuzi kwa Chaguo-msingi ni kiashiria kinachohitajika.',
+ 'default_sales_discount' => 'Punguzo la Mauzo kwa Chaguo-msingi',
+ 'default_sales_discount_number' => 'Punguzo la Mauzo kwa Chaguo-msingi lazima liwe nambari.',
+ 'default_sales_discount_required' => 'Punguzo la Mauzo kwa Chaguo-msingi ni kiashiria kinachohitajika.',
+ 'default_tax_category' => 'Aina ya Kodi kwa Chaguo-msingi',
+ 'default_tax_code' => 'Nambari ya Kodi kwa Chaguo-msingi',
+ 'default_tax_jurisdiction' => 'Eneo la Kodi kwa Chaguo-msingi',
+ 'default_tax_name_number' => 'Jina la Kodi lazima liwe maandishi.',
+ 'default_tax_name_required' => 'Jina la Kodi ni kiashiria kinachohitajika.',
+ 'default_tax_rate' => 'Kiwango cha Kodi kwa Chaguo-msingi %',
+ 'default_tax_rate_1' => 'Kiwango cha Kodi 1',
+ 'default_tax_rate_2' => 'Kiwango cha Kodi 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Kiwango cha Kodi kwa Chaguo-msingi lazima kiwe nambari.',
+ 'default_tax_rate_required' => 'Kiwango cha Kodi kwa Chaguo-msingi ni kiashiria kinachohitajika.',
+ 'derive_sale_quantity' => 'Ruhusu Kiasi cha Mauzo Kilichotokana',
+ 'derive_sale_quantity_tooltip' => 'Ikiwa imechaguliwa basi aina mpya ya bidhaa itatolewa kwa bidhaa zilizoagizwa kwa kiasi kilichoongezwa',
+ 'dinner_table' => 'Jedwali',
+ 'dinner_table_duplicate' => 'Jedwali lazima iwe ya kipekee.',
+ 'dinner_table_enable' => 'Washa Jedwali za Chakula',
+ 'dinner_table_invalid_chars' => "Jina la Jedwali haliwezi kuwa na '_'.",
+ 'dinner_table_required' => 'Jedwali ni kiashiria kinachohitajika.',
+ 'dot' => 'nukta',
+ 'email' => 'Barua Pepe',
+ 'email_configuration' => 'Mpangilio wa Barua Pepe',
+ 'email_mailpath' => 'Njia ya Sendmail',
+ 'email_protocol' => 'Itifaki',
+ 'email_receipt_check_behaviour' => 'Kisanduku cha Risiti ya Barua Pepe',
+ 'email_receipt_check_behaviour_always' => 'Daima imechaguliwa',
+ 'email_receipt_check_behaviour_last' => 'Kumbuka chaguo la mwisho',
+ 'email_receipt_check_behaviour_never' => 'Daima haijachaguliwa',
+ 'email_smtp_crypto' => 'Usimbaji wa SMTP',
+ 'email_smtp_host' => 'Seva ya SMTP',
+ 'email_smtp_pass' => 'Nenosiri la SMTP',
+ 'email_smtp_port' => 'Lango la SMTP',
+ 'email_smtp_timeout' => 'Muda wa SMTP kuisha',
+ 'email_smtp_user' => 'Jina la Mtumiaji la SMTP',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Lazimisha Faragha',
+ 'enforce_privacy_tooltip' => 'Linda faragha ya Wateja kwa kulazimisha kuchanganya data endapo data zao zitafutwa',
+ 'fax' => 'Faksi',
+ 'file_perm' => 'Kuna matatizo na ruhusa za faili. Tafadhali rekebisha na upakie upya ukurasa huu.',
+ 'financial_year' => 'Mwanzo wa Mwaka wa Fedha',
+ 'financial_year_apr' => '1 Aprili',
+ 'financial_year_aug' => '1 Agosti',
+ 'financial_year_dec' => '1 Desemba',
+ 'financial_year_feb' => '1 Februari',
+ 'financial_year_jan' => '1 Januari',
+ 'financial_year_jul' => '1 Julai',
+ 'financial_year_jun' => '1 Juni',
+ 'financial_year_mar' => '1 Machi',
+ 'financial_year_may' => '1 Mei',
+ 'financial_year_nov' => '1 Novemba',
+ 'financial_year_oct' => '1 Oktoba',
+ 'financial_year_sep' => '1 Septemba',
+ 'floating_labels' => 'Lebo Zinazoelea',
+ 'gcaptcha_enable' => 'Ukurasa wa Ingia reCAPTCHA',
+ 'gcaptcha_secret_key' => 'Funguo ya Siri ya reCAPTCHA',
+ 'gcaptcha_secret_key_required' => 'Funguo ya Siri ya reCAPTCHA ni kiashiria kinachohitajika',
+ 'gcaptcha_site_key' => 'Funguo ya Tovuti ya reCAPTCHA',
+ 'gcaptcha_site_key_required' => 'Funguo ya Tovuti ya reCAPTCHA ni kiashiria kinachohitajika',
+ 'gcaptcha_tooltip' => 'Linda ukurasa wa Ingia kwa Google reCAPTCHA, bonyeza ikoni kupata jozi ya funguo za API.',
+ 'general' => 'Jumla',
+ 'general_configuration' => 'Mpangilio wa Jumla',
+ 'giftcard_number' => 'Nambari ya Kadi ya Zawadi',
+ 'giftcard_random' => 'Tengeneza kwa Nasibu',
+ 'giftcard_series' => 'Tengeneza kwa Mfululizo',
+ 'image_allowed_file_types' => 'Aina za faili zinazoruhusiwa',
+ 'image_max_height_tooltip' => 'Urefu wa juu wa picha zinazopakiwa kwa pikseli (px).',
+ 'image_max_size_tooltip' => 'Ukubwa wa juu wa faili za picha zinazopakiwa kwa kilobaiti (kb).',
+ 'image_max_width_tooltip' => 'Upana wa juu wa picha zinazopakiwa kwa pikseli (px).',
+ 'image_restrictions' => 'Vizuizi vya Upakiaji wa Picha',
+ 'include_hsn' => 'Jumuisha Msaada wa Nambari za HSN',
+ 'info' => 'Taarifa',
+ 'info_configuration' => 'Taarifa za Duka',
+ 'input_groups' => 'Makundi ya Uingizaji',
+ 'integrations' => 'Muunganiko',
+ 'integrations_configuration' => 'Muunganiko wa Watu wengine',
+ 'invoice' => 'Ankara',
+ 'invoice_configuration' => 'Mpangilio wa Uchapishaji wa Ankara',
+ 'invoice_default_comments' => 'Maoni ya Chaguo-msingi ya Ankara',
+ 'invoice_email_message' => 'Kiolezo cha Barua Pepe ya Ankara',
+ 'invoice_enable' => 'Washa Utoaji wa Ankara',
+ 'invoice_printer' => 'Kichapishi cha Ankara',
+ 'invoice_type' => 'Aina ya Ankara',
+ 'is_readable' => 'inasomeka, lakini ruhusa zimewekwa vibaya. Tafadhali weka 640 au 660 na upakie upya.',
+ 'is_writable' => 'inaandikika, lakini ruhusa zimewekwa vibaya. Tafadhali weka 750 na upakie upya.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Tahadhari: Kipengele hiki kitafanya kazi tu ikiwa una kiendelezi cha FireFox jsPrintSetup kimewekwa. Hifadhi hata hivyo?',
+ 'language' => 'Lugha',
+ 'last_used_invoice_number' => 'Nambari ya mwisho ya Ankara iliyotumika',
+ 'last_used_quote_number' => 'Nambari ya mwisho ya Nukuu iliyotumika',
+ 'last_used_work_order_number' => 'Nambari ya mwisho ya Agizo la Kazi iliyotumika',
+ 'left' => 'Kushoto',
+ 'license' => 'Leseni',
+ 'license_configuration' => 'Taarifa ya Leseni',
+ 'line_sequence' => 'Mpangilio wa Mistari',
+ 'lines_per_page' => 'Mistari kwa Kila Ukurasa',
+ 'lines_per_page_number' => 'Mistari kwa Kila Ukurasa lazima iwe nambari.',
+ 'lines_per_page_required' => 'Mistari kwa Kila Ukurasa ni kiashiria kinachohitajika.',
+ 'locale' => 'Ujanibishaji',
+ 'locale_configuration' => 'Mpangilio wa Ujanibishaji',
+ 'locale_info' => 'Taarifa za Mpangilio wa Ujanibishaji',
+ 'location' => 'Stoo',
+ 'location_configuration' => 'Maeneo ya Stoo',
+ 'location_info' => 'Taarifa za Mpangilio wa Stoo',
+ 'login_form' => 'Aina ya Fomu ya Ingia',
+ 'logout' => 'Unataka kufanya hifadhi nakala kabla ya kutoka? Bonyeza [Sawa] kuhifadhi au [Ghairi] kutoka.',
+ 'mailchimp' => 'MailChimp',
+ 'mailchimp_api_key' => 'Funguo ya API ya MailChimp',
+ 'mailchimp_configuration' => 'Mpangilio wa MailChimp',
+ 'mailchimp_key_successfully' => 'Funguo ya API ni sahihi.',
+ 'mailchimp_key_unsuccessfully' => 'Funguo ya API si sahihi.',
+ 'mailchimp_lists' => 'Orodha za MailChimp',
+ 'mailchimp_tooltip' => 'Bonyeza ikoni kupata Funguo ya API.',
+ 'message' => 'Ujumbe',
+ 'message_configuration' => 'Mpangilio wa Ujumbe',
+ 'msg_msg' => 'Ujumbe wa SMS uliohifadhiwa',
+ 'msg_msg_placeholder' => 'Ikiwa unataka kutumia kiolezo cha SMS hifadhi ujumbe wako hapa, vinginevyo acha kisanduku wazi.',
+ 'msg_pwd' => 'Nenosiri la SMS-API',
+ 'msg_pwd_required' => 'Nenosiri la SMS-API ni kiashiria kinachohitajika',
+ 'msg_src' => 'ID ya Mtumaji wa SMS-API',
+ 'msg_src_required' => 'ID ya Mtumaji wa SMS-API ni kiashiria kinachohitajika',
+ 'msg_uid' => 'Jina la Mtumiaji la SMS-API',
+ 'msg_uid_required' => 'Jina la Mtumiaji la SMS-API ni kiashiria kinachohitajika',
+ 'multi_pack_enabled' => 'Vifurushi Vingi kwa Kila Bidhaa',
+ 'no_risk' => 'Hakuna hatari za usalama/udhaifu.',
+ 'none' => 'hakuna',
+ 'notify_alignment' => 'Nafasi ya Taarifa Ibukizi',
+ 'number_format' => 'Muundo wa Nambari',
+ 'number_locale' => 'Ujanibishaji',
+ 'number_locale_invalid' => 'Ujanibishaji uliyoingiza si sahihi. Angalia kiungo kwenye kidokezo kupata Ujanibishaji sahihi.',
+ 'number_locale_required' => 'Ujanibishaji ya Nambari ni kiashiria kinachohitajika.',
+ 'number_locale_tooltip' => 'Tafuta Ujanibishaji inayofaa kupitia kiungo hiki.',
+ 'os_timezone' => 'Saa ya OSPOS:',
+ 'ospos_info' => 'Taarifa za Usakinishaji wa OSPOS',
+ 'payment_options_order' => 'Mpangilio wa Chaguo za Malipo',
+ 'payment_reference_code_length_limits' => 'Nambari ya Kumbukumbu ya Malipo
Mipaka ya Urefu',
+ 'payment_reference_code_length_max_label' => 'Kiwango cha juu',
+ 'payment_reference_code_length_min_label' => 'Kiwango cha chini',
+ 'perm_risk' => 'Ruhusa zisizo sahihi zinaacha programu hii kwenye hatari.',
+ 'phone' => 'Namba ya simu ya Kampuni',
+ 'phone_required' => 'Namba ya simu ya Kampuni ni kiashiria kinachohitajika.',
+ 'print_bottom_margin' => 'Pembe ya Chini',
+ 'print_bottom_margin_number' => 'Pembe ya Chini lazima iwe nambari.',
+ 'print_bottom_margin_required' => 'Pembe ya Chini ni kiashiria kinachohitajika.',
+ 'print_delay_autoreturn' => 'Muda wa Kurudi Moja kwa Moja kwenye Mauzo',
+ 'print_delay_autoreturn_number' => 'Muda wa Kurudi Moja kwa Moja kwenye Mauzo ni kiashiria kinachohitajika.',
+ 'print_delay_autoreturn_required' => 'Muda wa Kurudi Moja kwa Moja kwenye Mauzo lazima uwe nambari.',
+ 'print_footer' => 'Chapisha Kijachini cha Kivinjari',
+ 'print_header' => 'Chapisha Kijuu cha Kivinjari',
+ 'print_left_margin' => 'Pembe ya Kushoto',
+ 'print_left_margin_number' => 'Pembe ya Kushoto lazima iwe nambari.',
+ 'print_left_margin_required' => 'Pembe ya Kushoto ni kiashiria kinachohitajika.',
+ 'print_receipt_check_behaviour' => 'Kisanduku cha Risiti ya Kuchapisha',
+ 'print_receipt_check_behaviour_always' => 'Daima imechaguliwa',
+ 'print_receipt_check_behaviour_last' => 'Kumbuka chaguo la mwisho',
+ 'print_receipt_check_behaviour_never' => 'Daima haijachaguliwa',
+ 'print_right_margin' => 'Pembe ya Kulia',
+ 'print_right_margin_number' => 'Pembe ya Kulia lazima iwe nambari.',
+ 'print_right_margin_required' => 'Pembe ya Kulia ni kiashiria kinachohitajika.',
+ 'print_silently' => 'Onyesha Dirisha la Kuchapisha',
+ 'print_top_margin' => 'Pembe ya Juu',
+ 'print_top_margin_number' => 'Pembe ya Juu lazima iwe nambari.',
+ 'print_top_margin_required' => 'Pembe ya Juu ni kiashiria kinachohitajika.',
+ 'quantity_decimals' => 'Desimali za Kiasi',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Maoni ya Chaguo-msingi la Nukuu',
+ 'receipt' => 'Risiti',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Mpangilio wa Uchapishaji wa Risiti',
+ 'receipt_default' => 'Chaguo-msingi',
+ 'receipt_font_size' => 'Ukubwa wa Herufi',
+ 'receipt_font_size_number' => 'Ukubwa wa Herufi lazima uwe nambari.',
+ 'receipt_font_size_required' => 'Ukubwa wa Herufi ni kiashiria kinachohitajika.',
+ 'receipt_info' => 'Taarifa za Mpangilio wa Risiti',
+ 'receipt_printer' => 'Kichapishi cha Tiketi',
+ 'receipt_short' => 'Fupi',
+ 'receipt_show_company_name' => 'Onyesha Jina la Kampuni',
+ 'receipt_show_description' => 'Onyesha Maelezo',
+ 'receipt_show_serialnumber' => 'Onyesha Serial Number',
+ 'receipt_show_tax_ind' => 'Onyesha Kiashiria cha Kodi',
+ 'receipt_show_taxes' => 'Onyesha Kodi',
+ 'receipt_show_total_discount' => 'Onyesha Jumla ya Punguzo',
+ 'receipt_template' => 'Kiolezo cha Risiti',
+ 'receiving_calculate_average_price' => 'Hesabu Bei ya wastani (Manunuzi)',
+ 'recv_invoice_format' => 'Muundo wa Ankara ya Manunuzi',
+ 'register_mode_default' => 'Hali ya Usajili kwa Chaguo-msingi',
+ 'report_an_issue' => 'Ripoti tatizo',
+ 'return_policy_required' => 'Return Policy ni kiashiria kinachohitajika.',
+ 'reward' => 'Zawadi',
+ 'reward_configuration' => 'Mpangilio wa Zawadi',
+ 'right' => 'Kulia',
+ 'sales_invoice_format' => 'Muundo wa Ankara ya Mauzo',
+ 'sales_quote_format' => 'Muundo wa Nukuu ya Mauzo',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => 'Mpangilio umehifadhiwa kwa mafanikio.',
+ 'saved_unsuccessfully' => 'Mpangilio umeshindwa kuhifadhiwa.',
+ 'security_issue' => 'Onyo la Udhaifu wa Usalama',
+ 'server_notice' => 'Tafadhali tumia taarifa zilizo hapa chini kuripoti tatizo.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Onyesha ikoni ya ofisi',
+ 'statistics' => 'Tuma Takwimu',
+ 'statistics_tooltip' => 'Tuma takwimu kwa madhumuni ya maendeleo na uboreshaji wa vipengele.',
+ 'stock_location' => 'Stoo',
+ 'stock_location_duplicate' => 'Stoo lazima iwe ya kipekee.',
+ 'stock_location_invalid_chars' => "Stoo haiwezi kuwa na '_'.",
+ 'stock_location_required' => 'Stoo ni kiashiria kinachohitajika.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Safu wima 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Mpangilio wa Mapendekezo ya Utafutaji',
+ 'suggestions_second_column' => 'Safu wima 2',
+ 'suggestions_third_column' => 'Safu wima 3',
+ 'system_conf' => 'Usanidi & Mpangilio',
+ 'system_info' => 'Taarifa za Mfumo',
+ 'table' => 'Jedwali',
+ 'table_configuration' => 'Jedwali la Mpangilio',
+ 'takings_printer' => 'Kichapishi cha Risiti',
+ 'tax' => 'Kodi',
+ 'tax_category' => 'Aina ya Kodi',
+ 'tax_category_duplicate' => 'Aina ya kodi uliyoingiza tayari ipo.',
+ 'tax_category_invalid_chars' => 'Aina ya kodi uliyoingiza si sahihi.',
+ 'tax_category_required' => 'Aina ya kodi ni lazima.',
+ 'tax_category_used' => 'Aina ya kodi haiwezi kufutwa kwa sababu inatumika.',
+ 'tax_configuration' => 'Mpangilio wa Kodi',
+ 'tax_decimals' => 'Desimali za Kodi',
+ 'tax_id' => 'Nambari ya Kodi',
+ 'tax_included' => 'Kodi Imejumuishwa',
+ 'theme' => 'Mandhari',
+ 'theme_preview' => 'Onyesha Mandhari:',
+ 'thousands_separator' => 'Kitenganishi cha Maelfu',
+ 'timezone' => 'Saa za Eneo',
+ 'timezone_error' => 'Saa za OSPOS ni tofauti na Saa za Eneo lako.',
+ 'top' => 'Juu',
+ 'use_destination_based_tax' => 'Tumia Kodi ya Kulingana na Eneo',
+ 'user_timezone' => 'Saa za Eneo lako:',
+ 'website' => 'Tovuti',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Msaada wa Agizo la Kazi',
+ 'work_order_format' => 'Muundo wa Agizo la Kazi',
+];
diff --git a/app/Language/sw-KE/Login.php b/app/Language/sw-KE/Login.php
index 15d9468d4..331eb30a5 100644
--- a/app/Language/sw-KE/Login.php
+++ b/app/Language/sw-KE/Login.php
@@ -1,25 +1,30 @@
"Mimi si roboti.",
- "go" => "Nenda",
- "invalid_gcaptcha" => "Tafadhali thibitisha kuwa wewe si roboti.",
- "invalid_installation" => "Usakinishaji si sahihi, angalia faili yako ya php.ini.",
- "invalid_username_and_password" => "Jina la mtumiaji na/au nenosiri si sahihi.",
- "login" => "Ingia",
- "logout" => "Toka",
- "migration_needed" => "Uhamishaji wa kanzidata hadi {0} utaanza baada ya kuingia.",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "Nenosiri",
- "required_username" => "Jina la mtumiaji ni lazima.",
- "username" => "Jina la Mtumiaji",
- "welcome" => "Karibu kwenye {0}!",
-];
\ No newline at end of file
+ "gcaptcha" => "Mimi si roboti.",
+ "go" => "Nenda",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Tafadhali thibitisha kuwa wewe si roboti.",
+ "invalid_installation" => "Usakinishaji si sahihi, angalia faili yako ya php.ini.",
+ "invalid_username_and_password" => "Jina la mtumiaji na/au nenosiri si sahihi.",
+ "login" => "Ingia",
+ "logout" => "Toka",
+ "migrating_database" => "Inahama hifadhidata",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "Hifadhidata imehama!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "Uhamishaji wa kanzidata hadi {0} utaanza baada ya kuingia.",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "Nenosiri",
+ "required_username" => "Jina la mtumiaji ni lazima.",
+ "username" => "Jina la Mtumiaji",
+ "welcome" => "Karibu kwenye {0}!"
+];
diff --git a/app/Language/sw-KE/Sales.php b/app/Language/sw-KE/Sales.php
index 6748f957b..43f1f6f1f 100644
--- a/app/Language/sw-KE/Sales.php
+++ b/app/Language/sw-KE/Sales.php
@@ -1,233 +1,237 @@
"Pointi Zinazopatikana",
- "rewards_package" => "Zawadi",
- "rewards_remaining_balance" => "Thamani ya pointi za zawadi zilizobaki ni ",
- "account_number" => "Nambari ya Akaunti",
- "add_payment" => "Ongeza Malipo",
- "amount_due" => "Kiasi Kinachodaiwa",
- "amount_tendered" => "Kiasi Kilicholipwa",
- "authorized_signature" => "Sahihi Iliyothibitishwa",
- "cancel_sale" => "Ghairi",
- "cash" => "Fedha Taslimu",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "Marekebisho ya Fedha",
- "cash_deposit" => "Amana ya Fedha",
- "cash_filter" => "Fedha Taslimu",
- "change_due" => "Chenji Inayodaiwa",
- "change_price" => "Badilisha Bei ya Uuzaji",
- "check" => "Hundi",
- "check_balance" => "Salio la Hundi",
- "check_filter" => "Hundi",
- "close" => "",
- "comment" => "Maoni",
- "comments" => "Maoni",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Kamilisha",
- "confirm_cancel_sale" => "Una uhakika unataka kufuta mauzo haya? Bidhaa zote zitaondolewa.",
- "confirm_delete" => "Una uhakika unataka kufuta mauzo uliyoyachagua?",
- "confirm_restore" => "Una uhakika unataka kurejesha mauzo uliyoyachagua?",
- "credit" => "Kadi ya Mkopo",
- "credit_deposit" => "Amana ya Mkopo",
- "credit_filter" => "Kadi ya Mkopo",
- "current_table" => "",
- "customer" => "Mteja",
- "customer_address" => "Anwani",
- "customer_discount" => "Punguzo",
- "customer_email" => "Barua Pepe",
- "customer_location" => "Mahali",
- "customer_mailchimp_status" => "Hali ya MailChimp",
- "customer_optional" => "(Inahitajika kwa Malipo ya Madeni)",
- "customer_required" => "(Inahitajika)",
- "customer_total" => "Jumla",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Tarehe ya Mauzo",
- "date_range" => "Wigo wa Tarehe",
- "date_required" => "Tafadhali ingiza tarehe sahihi.",
- "date_type" => "Tarehe ni kiashiria kinachohitajika.",
- "debit" => "Kadi ya Debit",
- "debit_filter" => "",
- "delete" => "Ruhusu Kufuta",
- "delete_confirmation" => "Una uhakika unataka kufuta mauzo haya? Hatua hii haiwezi kubatilishwa.",
- "delete_entire_sale" => "Futa Mauzo Yote",
- "delete_successful" => "Mauzo yamefutwa kwa mafanikio.",
- "delete_unsuccessful" => "Kufuta mauzo kimeshindikana.",
- "description_abbrv" => "Desc.",
- "discard" => "Ondoa", //Tupa
- "discard_quote" => "",
- "discount" => "Punguzo",
- "discount_included" => "% Punguzo",
- "discount_short" => "%",
- "due" => "Deni",
- "due_filter" => "",
- "edit" => "Hariri",
- "edit_item" => "Hariri Bidhaa",
- "edit_sale" => "Hariri Mauzo",
- "email_receipt" => "Tuma Risiti kwa Barua Pepe",
- "employee" => "Mfanyakazi",
- "entry" => "Ingizo",
- "error_editing_item" => "Hitilafu katika kuhariri bidhaa",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Tafuta au Changanua Bidhaa",
- "find_or_scan_item_or_receipt" => "Tafuta au Changanua Bidhaa au Risiti",
- "giftcard" => "Kadi ya Zawadi",
- "giftcard_balance" => "Salio la Kadi ya Zawadi",
- "giftcard_filter" => "",
- "giftcard_number" => "Namba ya Kadi ya Zawadi",
- "group_by_category" => "Panga kwa Kategoria",
- "group_by_type" => "Panga kwa Aina",
- "hsn" => "HSN",
- "id" => "Namba ya Mauzo",
- "include_prices" => "Jumuisha Bei?",
- "invoice" => "Ankara",
- "invoice_confirm" => "Ankara hii itatumwa kwa",
- "invoice_enable" => "Namba ya Ankara",
- "invoice_filter" => "Ankara",
- "invoice_no_email" => "Mteja huyu hana anwani halali ya barua pepe.",
- "invoice_number" => "Namba ya Ankara",
- "invoice_number_duplicate" => "Namba ya Ankara {0} lazima iwe ya kipekee.",
- "invoice_sent" => "Ankara imetumwa kwa",
- "invoice_total" => "Jumla ya Ankara",
- "invoice_type_custom_invoice" => "Ankara Maalum (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Ankara ya Kodi Maalum (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Ankara (invoice.php)",
- "invoice_type_tax_invoice" => "Ankara ya Kodi (tax_invoice.php)",
- "invoice_unsent" => "Imeshindikana kutuma ankara kwa",
- "invoice_update" => "Hesabu upya",
- "item_insufficient_of_stock" => "Bidhaa haina hisa ya kutosha.",
- "item_name" => "Jina la Bidhaa",
- "item_number" => "Namba ya Bidhaa",
- "item_out_of_stock" => "Bidhaa haina hisa.",
- "key_browser" => "Vifupisho vya Msaada",
- "key_cancel" => "Ghairi Nukuu/Ankara/Mauzo ya Sasa",
- "key_customer_search" => "Tafuta Mteja",
- "key_finish_quote" => "Kamilisha Nukuu/Ankara bila malipo",
- "key_finish_sale" => "Ongeza Malipo na Kamilisha Ankara/Mauzo",
- "key_full" => "Fungua kwa Skrini Nzima",
- "key_function" => "Function",
- "key_help" => "Vifupisho",
- "key_help_modal" => "Fungua Dirisha la Vifupisho",
- "key_in" => "Kuza",
- "key_item_search" => "Tafuta Bidhaa",
- "key_out" => "Punguza",
- "key_payment" => "Ongeza Malipo",
- "key_print" => "Chapisha Ukurasa wa Sasa",
- "key_restore" => "Rejesha Mwonekano wa Awali/Zoom",
- "key_search" => "Tafuta Jedwali la Ripoti",
- "key_suspend" => "Sitisha Mauzo ya Sasa",
- "key_suspended" => "Onyesha Mauzo Yaliyositishwa",
- "key_system" => "Vifupisho vya Mfumo",
- "key_tendered" => "Hariri Kiasi Kilicholipwa",
- "key_title" => "Vifupisho vya Kibodi (Keyboard) vya Mauzo",
- "mc" => "",
- "mode" => "Hali ya Usajili",
- "must_enter_numeric" => "Kiasi Kilicholipwa lazima kiwe Namba.",
- "must_enter_numeric_giftcard" => "Namba ya Kadi ya Zawadi lazima iwe Namba.",
- "new_customer" => "Mteja Mpya",
- "new_item" => "Bidhaa Mpya",
- "no_description" => "Hakuna maelezo",
- "no_filter" => "Zote",
- "no_items_in_cart" => "Hakuna bidhaa kwenye Kikapu cha Ununuzi.",
- "no_sales_to_display" => "Hakuna mauzo ya kuonyesha.",
- "none_selected" => "Hujachagua mauzo yoyote ya kufuta.",
- "nontaxed_ind" => " ",
- "not_authorized" => "Hatua hii haijaruhusiwa.",
- "one_or_multiple" => "Mauzo",
- "payment" => "Aina ya Malipo",
- "payment_amount" => "Kiasi",
- "payment_not_cover_total" => "Kiasi cha malipo lazima kiwe sawa au zaidi ya jumla kuu.",
- "payment_type" => "Aina",
- "payments" => "",
- "payments_total" => "Jumla ya Malipo",
- "price" => "Bei",
- "print_after_sale" => "Chapisha baada ya Mauzo",
- "quantity" => "Kiasi",
- "quantity_less_than_reorder_level" => "Onyo: Kiasi kilichotakiwa kiko chini ya kiwango cha kuagiza tena kwa bidhaa hiyo.",
- "quantity_less_than_zero" => "Onyo: Kiasi kilichotakiwa hakitoshi. Unaweza kuendelea na mauzo, lakini hakiki hesabu yako.",
- "quantity_of_items" => "Kiasi cha bidhaa {0}",
- "quote" => "Nukuu (Quote)",
- "quote_number" => "Nambari ya Nukuu",
- "quote_number_duplicate" => "Nambari ya Nukuu lazima iwe ya kipekee.",
- "quote_sent" => "Nukuu imetumwa kwa",
- "quote_unsent" => "Imeshindikana kutuma nukuu kwa",
- "receipt" => "Risiti ya Mauzo",
- "receipt_no_email" => "Mteja huyu hana anwani halali ya barua pepe.",
- "receipt_number" => "Namba ya Mauzo",
- "receipt_sent" => "Risiti imetumwa kwa",
- "receipt_unsent" => "Imeshindikana kutuma risiti kwa",
- "refund" => "Aina ya Marejesho",
- "register" => "Usajili wa Mauzo",
- "remove_customer" => "Ondoa Mteja",
- "remove_discount" => "Ondoa Punguzo",
- "return" => "Rudisha",
- "rewards" => "Pointi za Zawadi",
- "rewards_balance" => "Salio la Pointi za Zawadi",
- "sale" => "Mauzo",
- "sale_by_invoice" => "Mauzo kwa Ankara",
- "sale_for_customer" => "Mteja:",
- "sale_time" => "Muda",
- "sales_tax" => "Kodi ya Mauzo",
- "sales_total" => "",
- "select_customer" => "Chagua Mteja",
- "selected_customer" => "Mteja Uliyemchagua",
- "send_invoice" => "Tuma Ankara",
- "send_quote" => "Tuma Nukuu",
- "send_receipt" => "Tuma Risiti",
- "send_work_order" => "Tuma Agizo la Kazi",
- "serial" => "Nambari ya Seriali",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Onyesha Ankara",
- "show_receipt" => "Onyesha Risiti",
- "start_typing_customer_name" => "Anza kuandika taarifa za mteja...",
- "start_typing_item_name" => "Anza kuandika jina la bidhaa au changanua msimbo wa mstari (Scan Barcode)...",
- "stock" => "Hisa",
- "stock_location" => "Eneo la Hisa",
- "sub_total" => "Jumla Ndogo",
- "successfully_deleted" => "Umefanikiwa kufuta",
- "successfully_restored" => "Umefanikiwa kurejesha",
- "successfully_suspended_sale" => "Kusitisha mauzo kumewezekana.",
- "successfully_updated" => "Kusasisha mauzo kumewezekana.",
- "suspend_sale" => "Sitisha",
- "suspended_doc_id" => "Nyaraka",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Yaliyositishwa",
- "table" => "Jedwali",
- "takings" => "Mauzo ya Kila Siku",
- "tax" => "Kodi",
- "tax_id" => "Kitambulisho cha Kodi",
- "tax_invoice" => "Ankara ya Kodi",
- "tax_percent" => "Kodi %",
- "taxed_ind" => "K",
- "total" => "Jumla",
- "total_tax_exclusive" => "Kodi haijajumuishwa",
- "transaction_failed" => "Muamala wa Mauzo umeshindikana.",
- "unable_to_add_item" => "Imeshindikana kuongeza bidhaa kwenye Mauzo",
- "unsuccessfully_deleted" => "Imeshindikana kufuta Mauzo.",
- "unsuccessfully_restored" => "Imeshindikana kurejesha Mauzo.",
- "unsuccessfully_suspended_sale" => "Imeshindikana kusitisha Mauzo.",
- "unsuccessfully_updated" => "Kusasisha mauzo kimeshindikana.",
- "unsuspend" => "Ondoa Kusitishwa",
// "unsuspend_and_delete" => "Hatua (Action)",
- "unsuspend_and_delete" => "Hatua",
- "update" => "Sasisha",
- "upi" => "UPI",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "Agizo la Kazi (Work Order)",
- "work_order_number" => "Nambari ya Agizo la Kazi",
- "work_order_number_duplicate" => "Nambari ya Agizo la Kazi lazima iwe ya kipekee.",
- "work_order_sent" => "Agizo la Kazi limetumwa kwa",
- "work_order_unsent" => "Imeshindikana kutuma Agizo la Kazi kwa",
-];
\ No newline at end of file
+ 'account_number' => 'Nambari ya Akaunti',
+ 'add_payment' => 'Ongeza Malipo',
+ 'amount_due' => 'Kiasi Kinachodaiwa',
+ 'amount_tendered' => 'Kiasi Kilicholipwa',
+ 'authorized_signature' => 'Sahihi Iliyothibitishwa',
+ 'cancel_sale' => 'Ghairi',
+ 'cash' => 'Fedha Taslimu',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'Marekebisho ya Fedha',
+ 'cash_deposit' => 'Amana ya Fedha',
+ 'cash_filter' => 'Fedha Taslimu',
+ 'change_due' => 'Chenji Inayodaiwa',
+ 'change_price' => 'Badilisha Bei ya Uuzaji',
+ 'check' => 'Hundi',
+ 'check_balance' => 'Salio la Hundi',
+ 'check_filter' => 'Hundi',
+ 'close' => '',
+ 'comment' => 'Maoni',
+ 'comments' => 'Maoni',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Kamilisha',
+ 'confirm_cancel_sale' => 'Una uhakika unataka kufuta mauzo haya? Bidhaa zote zitaondolewa.',
+ 'confirm_delete' => 'Una uhakika unataka kufuta mauzo uliyoyachagua?',
+ 'confirm_restore' => 'Una uhakika unataka kurejesha mauzo uliyoyachagua?',
+ 'credit' => 'Kadi ya Mkopo',
+ 'credit_deposit' => 'Amana ya Mkopo',
+ 'credit_filter' => 'Kadi ya Mkopo',
+ 'current_table' => '',
+ 'customer' => 'Mteja',
+ 'customer_address' => 'Anwani',
+ 'customer_discount' => 'Punguzo',
+ 'customer_email' => 'Barua Pepe',
+ 'customer_location' => 'Mahali',
+ 'customer_mailchimp_status' => 'Hali ya MailChimp',
+ 'customer_optional' => '(Inahitajika kwa Malipo ya Madeni)',
+ 'customer_required' => '(Inahitajika)',
+ 'customer_total' => 'Jumla',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Pointi Zinazopatikana',
+ 'daily_sales' => '',
+ 'date' => 'Tarehe ya Mauzo',
+ 'date_range' => 'Wigo wa Tarehe',
+ 'date_required' => 'Tafadhali ingiza tarehe sahihi.',
+ 'date_type' => 'Tarehe ni kiashiria kinachohitajika.',
+ 'debit' => 'Kadi ya Debit',
+ 'debit_filter' => '',
+ 'delete' => 'Ruhusu Kufuta',
+ 'delete_confirmation' => 'Una uhakika unataka kufuta mauzo haya? Hatua hii haiwezi kubatilishwa.',
+ 'delete_entire_sale' => 'Futa Mauzo Yote',
+ 'delete_successful' => 'Mauzo yamefutwa kwa mafanikio.',
+ 'delete_unsuccessful' => 'Kufuta mauzo kimeshindikana.',
+ 'description_abbrv' => 'Desc.',
+ 'discard' => 'Ondoa', // Tupa
+ 'discard_quote' => '',
+ 'discount' => 'Punguzo',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Punguzo',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'Deni',
+ 'due_filter' => '',
+ 'edit' => 'Hariri',
+ 'edit_item' => 'Hariri Bidhaa',
+ 'edit_sale' => 'Hariri Mauzo',
+ 'email_receipt' => 'Tuma Risiti kwa Barua Pepe',
+ 'employee' => 'Mfanyakazi',
+ 'entry' => 'Ingizo',
+ 'error_editing_item' => 'Hitilafu katika kuhariri bidhaa',
+ 'find_or_scan_item' => 'Tafuta au Changanua Bidhaa',
+ 'find_or_scan_item_or_receipt' => 'Tafuta au Changanua Bidhaa au Risiti',
+ 'giftcard' => 'Kadi ya Zawadi',
+ 'giftcard_balance' => 'Salio la Kadi ya Zawadi',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Namba ya Kadi ya Zawadi',
+ 'group_by_category' => 'Panga kwa Kategoria',
+ 'group_by_type' => 'Panga kwa Aina',
+ 'hsn' => 'HSN',
+ 'id' => 'Namba ya Mauzo',
+ 'include_prices' => 'Jumuisha Bei?',
+ 'invoice' => 'Ankara',
+ 'invoice_confirm' => 'Ankara hii itatumwa kwa',
+ 'invoice_enable' => 'Namba ya Ankara',
+ 'invoice_filter' => 'Ankara',
+ 'invoice_no_email' => 'Mteja huyu hana anwani halali ya barua pepe.',
+ 'invoice_number' => 'Namba ya Ankara',
+ 'invoice_number_duplicate' => 'Namba ya Ankara {0} lazima iwe ya kipekee.',
+ 'invoice_sent' => 'Ankara imetumwa kwa',
+ 'invoice_total' => 'Jumla ya Ankara',
+ 'invoice_type_custom_invoice' => 'Ankara Maalum (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Ankara ya Kodi Maalum (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Ankara (invoice.php)',
+ 'invoice_type_tax_invoice' => 'Ankara ya Kodi (tax_invoice.php)',
+ 'invoice_unsent' => 'Imeshindikana kutuma ankara kwa',
+ 'invoice_update' => 'Hesabu upya',
+ 'item_insufficient_of_stock' => 'Bidhaa haina hisa ya kutosha.',
+ 'item_name' => 'Jina la Bidhaa',
+ 'item_number' => 'Namba ya Bidhaa',
+ 'item_out_of_stock' => 'Bidhaa haina hisa.',
+ 'key_browser' => 'Vifupisho vya Msaada',
+ 'key_cancel' => 'Ghairi Nukuu/Ankara/Mauzo ya Sasa',
+ 'key_customer_search' => 'Tafuta Mteja',
+ 'key_finish_quote' => 'Kamilisha Nukuu/Ankara bila malipo',
+ 'key_finish_sale' => 'Ongeza Malipo na Kamilisha Ankara/Mauzo',
+ 'key_full' => 'Fungua kwa Skrini Nzima',
+ 'key_function' => 'Function',
+ 'key_help' => 'Vifupisho',
+ 'key_help_modal' => 'Fungua Dirisha la Vifupisho',
+ 'key_in' => 'Kuza',
+ 'key_item_search' => 'Tafuta Bidhaa',
+ 'key_out' => 'Punguza',
+ 'key_payment' => 'Ongeza Malipo',
+ 'key_print' => 'Chapisha Ukurasa wa Sasa',
+ 'key_restore' => 'Rejesha Mwonekano wa Awali/Zoom',
+ 'key_search' => 'Tafuta Jedwali la Ripoti',
+ 'key_suspend' => 'Sitisha Mauzo ya Sasa',
+ 'key_suspended' => 'Onyesha Mauzo Yaliyositishwa',
+ 'key_system' => 'Vifupisho vya Mfumo',
+ 'key_tendered' => 'Hariri Kiasi Kilicholipwa',
+ 'key_title' => 'Vifupisho vya Kibodi (Keyboard) vya Mauzo',
+ 'mc' => '',
+ 'mode' => 'Hali ya Usajili',
+ 'must_enter_numeric' => 'Kiasi Kilicholipwa lazima kiwe Namba.',
+ 'must_enter_numeric_giftcard' => 'Namba ya Kadi ya Zawadi lazima iwe Namba.',
+ 'must_enter_reference_code' => 'Nambari ya Kumbukumbu/Upatikanaji lazima iingizwe.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Mteja Mpya',
+ 'new_item' => 'Bidhaa Mpya',
+ 'no_description' => 'Hakuna maelezo',
+ 'no_filter' => 'Zote',
+ 'no_items_in_cart' => 'Hakuna bidhaa kwenye Kikapu cha Ununuzi.',
+ 'no_sales_to_display' => 'Hakuna mauzo ya kuonyesha.',
+ 'none_selected' => 'Hujachagua mauzo yoyote ya kufuta.',
+ 'nontaxed_ind' => ' ',
+ 'not_authorized' => 'Hatua hii haijaruhusiwa.',
+ 'one_or_multiple' => 'Mauzo',
+ 'payment' => 'Aina ya Malipo',
+ 'payment_amount' => 'Kiasi',
+ 'payment_not_cover_total' => 'Kiasi cha malipo lazima kiwe sawa au zaidi ya jumla kuu.',
+ 'payment_type' => 'Aina',
+ 'payments' => '',
+ 'payments_total' => 'Jumla ya Malipo',
+ 'price' => 'Bei',
+ 'print_after_sale' => 'Chapisha baada ya Mauzo',
+ 'quantity' => 'Kiasi',
+ 'quantity_less_than_reorder_level' => 'Onyo: Kiasi kilichotakiwa kiko chini ya kiwango cha kuagiza tena kwa bidhaa hiyo.',
+ 'quantity_less_than_zero' => 'Onyo: Kiasi kilichotakiwa hakitoshi. Unaweza kuendelea na mauzo, lakini hakiki hesabu yako.',
+ 'quantity_of_items' => 'Kiasi cha bidhaa {0}',
+ 'quote' => 'Nukuu (Quote)',
+ 'quote_number' => 'Nambari ya Nukuu',
+ 'quote_number_duplicate' => 'Nambari ya Nukuu lazima iwe ya kipekee.',
+ 'quote_sent' => 'Nukuu imetumwa kwa',
+ 'quote_unsent' => 'Imeshindikana kutuma nukuu kwa',
+ 'receipt' => 'Risiti ya Mauzo',
+ 'receipt_no_email' => 'Mteja huyu hana anwani halali ya barua pepe.',
+ 'receipt_number' => 'Namba ya Mauzo',
+ 'receipt_sent' => 'Risiti imetumwa kwa',
+ 'receipt_unsent' => 'Imeshindikana kutuma risiti kwa',
+ 'reference_code' => 'Nambari ya Kumbukumbu ya Malipo',
+ 'reference_code_invalid_characters' => 'Nambari ya kumbukumbu lazima iwe na herufi na nambari peke yake.',
+ 'reference_code_length_error' => 'Urefu wa nambari ya kumbukumbu si sahihi.',
+ 'refund' => 'Aina ya Marejesho',
+ 'register' => 'Usajili wa Mauzo',
+ 'remove_customer' => 'Ondoa Mteja',
+ 'remove_discount' => 'Ondoa Punguzo',
+ 'return' => 'Rudisha',
+ 'rewards' => 'Pointi za Zawadi',
+ 'rewards_balance' => 'Salio la Pointi za Zawadi',
+ 'rewards_package' => 'Zawadi',
+ 'rewards_remaining_balance' => 'Thamani ya pointi za zawadi zilizobaki ni ',
+ 'sale' => 'Mauzo',
+ 'sale_by_invoice' => 'Mauzo kwa Ankara',
+ 'sale_for_customer' => 'Mteja:',
+ 'sale_time' => 'Muda',
+ 'sales_tax' => 'Kodi ya Mauzo',
+ 'sales_total' => '',
+ 'select_customer' => 'Chagua Mteja',
+ 'selected_customer' => 'Mteja Uliyemchagua',
+ 'send_invoice' => 'Tuma Ankara',
+ 'send_quote' => 'Tuma Nukuu',
+ 'send_receipt' => 'Tuma Risiti',
+ 'send_work_order' => 'Tuma Agizo la Kazi',
+ 'serial' => 'Nambari ya Seriali',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Onyesha Ankara',
+ 'show_receipt' => 'Onyesha Risiti',
+ 'start_typing_customer_name' => 'Anza kuandika taarifa za mteja...',
+ 'start_typing_item_name' => 'Anza kuandika jina la bidhaa au changanua msimbo wa mstari (Scan Barcode)...',
+ 'stock' => 'Hisa',
+ 'stock_location' => 'Eneo la Hisa',
+ 'sub_total' => 'Jumla Ndogo',
+ 'successfully_deleted' => 'Umefanikiwa kufuta',
+ 'successfully_restored' => 'Umefanikiwa kurejesha',
+ 'successfully_suspended_sale' => 'Kusitisha mauzo kumewezekana.',
+ 'successfully_updated' => 'Kusasisha mauzo kumewezekana.',
+ 'suspend_sale' => 'Sitisha',
+ 'suspended_doc_id' => 'Nyaraka',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Yaliyositishwa',
+ 'table' => 'Jedwali',
+ 'takings' => 'Mauzo ya Kila Siku',
+ 'tax' => 'Kodi',
+ 'tax_id' => 'Kitambulisho cha Kodi',
+ 'tax_invoice' => 'Ankara ya Kodi',
+ 'tax_percent' => 'Kodi %',
+ 'taxed_ind' => 'K',
+ 'total' => 'Jumla',
+ 'total_tax_exclusive' => 'Kodi haijajumuishwa',
+ 'transaction_failed' => 'Muamala wa Mauzo umeshindikana.',
+ 'unable_to_add_item' => 'Imeshindikana kuongeza bidhaa kwenye Mauzo',
+ 'unsuccessfully_deleted' => 'Imeshindikana kufuta Mauzo.',
+ 'unsuccessfully_restored' => 'Imeshindikana kurejesha Mauzo.',
+ 'unsuccessfully_suspended_sale' => 'Imeshindikana kusitisha Mauzo.',
+ 'unsuccessfully_updated' => 'Kusasisha mauzo kimeshindikana.',
+ 'unsuspend' => 'Ondoa Kusitishwa',
+ 'unsuspend_and_delete' => 'Hatua',
+ 'update' => 'Sasisha',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'Agizo la Kazi (Work Order)',
+ 'work_order_number' => 'Nambari ya Agizo la Kazi',
+ 'work_order_number_duplicate' => 'Nambari ya Agizo la Kazi lazima iwe ya kipekee.',
+ 'work_order_sent' => 'Agizo la Kazi limetumwa kwa',
+ 'work_order_unsent' => 'Imeshindikana kutuma Agizo la Kazi kwa',
+];
diff --git a/app/Language/sw-TZ/Config.php b/app/Language/sw-TZ/Config.php
index 36f5f1ed1..8d5f46256 100644
--- a/app/Language/sw-TZ/Config.php
+++ b/app/Language/sw-TZ/Config.php
@@ -1,332 +1,335 @@
"Anwani ya Kampuni",
- "address_required" => "Anwani ya kampuni ni kiashiria kinachohitajika.",
- "all_set" => "Ruhusa zote za faili zimewekwa vizuri!",
- "allow_duplicate_barcodes" => "Ruhusu Misimbomstari iliyorudiwa",
- "apostrophe" => "apostrofi",
- "backup_button" => "Hifadhi Nakala",
- "backup_database" => "Hifadhi Nakala ya Hifadhidata",
- "barcode" => "Msimbo wa Mstari",
- "barcode_company" => "Jina la Kampuni",
- "barcode_configuration" => "Mpangilio wa Msimbomstari",
- "barcode_content" => "Yaliyomo kwenye Msimbomstari",
- "barcode_first_row" => "Safu 1",
- "barcode_font" => "Aina ya Herufi",
- "barcode_formats" => "Aina za Uingizaji",
- "barcode_generate_if_empty" => "Tengeneza ikiwa tupu.",
- "barcode_height" => "Urefu (px)",
- "barcode_id" => "Id ya Bidhaa/Jina",
- "barcode_info" => "Taarifa za Mpangilio wa Msimbomstari",
- "barcode_layout" => "Mpangilio wa Msimbomstari",
- "barcode_name" => "Jina",
- "barcode_number" => "Msimbomstari",
- "barcode_number_in_row" => "Idadi kwenye safu",
- "barcode_page_cellspacing" => "Onyesha nafasi kati ya seli za ukurasa.",
- "barcode_page_width" => "Onyesha upana wa ukurasa",
- "barcode_price" => "Bei",
- "barcode_second_row" => "Safu 2",
- "barcode_third_row" => "Safu 3",
- "barcode_tooltip" => "Tahadhari: Kipengele hiki kinaweza kusababisha kurudiwa kwa bidhaa zilizoingizwa au kuundwa. Usitumie ikiwa hutaki Msimbomstari(Barcode) zilizorudiwa.",
- "barcode_type" => "Aina ya Msimbomstari",
- "barcode_width" => "Upana (px)",
- "bottom" => "Chini",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Desimali za Fedha Taslimu",
- "cash_decimals_tooltip" => "Ikiwa Desimali za Fedha Taslimu na Desimali za Sarafu ni sawa basi hakuna mzunguko wa fedha taslimu utakaofanyika, isipokuwa Mzunguko wa Fedha Taslimu umewekwa kwenye Nusu Tano.",
- "cash_rounding" => "Mzunguko wa Fedha Taslimu",
- "category_dropdown" => "Onyesha Kategoria kama orodha ya kushuka",
- "center" => "Katikati",
- "change_apperance_tooltip" => "",
- "comma" => "koma",
- "company" => "Jina la Kampuni",
- "company_avatar" => "",
- "company_change_image" => "Badilisha Picha",
- "company_logo" => "Nembo ya Kampuni",
- "company_remove_image" => "Ondoa Picha",
- "company_required" => "Jina la kampuni ni kiashiria kinachohitajika",
- "company_select_image" => "Chagua Picha",
- "company_website_url" => "Tovuti ya kampuni si URL halali (http://...).",
- "country_codes" => "Msimbo wa Nchi",
- "country_codes_tooltip" => "Orodha ya misimbo ya nchi zilizotenganishwa kwa koma kwa utafutaji wa anwani wa uteuzi.",
- "currency_code" => "Nambari ya Sarafu",
- "currency_decimals" => "Desimali za Sarafu",
- "currency_symbol" => "Alama ya Sarafu",
- "current_employee_only" => "",
- "customer_reward" => "Zawadi",
- "customer_reward_duplicate" => "Zawadi lazima iwe ya kipekee.",
- "customer_reward_enable" => "Washa Zawadi kwa Wateja",
- "customer_reward_invalid_chars" => "Zawadi haiwezi kuwa na '_'",
- "customer_reward_required" => "Zawadi ni kiashiria kinachohitajika",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "Kichujio cha Tarehe na Muda",
- "datetimeformat" => "Muundo wa Tarehe na Muda",
- "decimal_point" => "Nukta ya Desimali",
- "default_barcode_font_size_number" => "Ukubwa wa herufi wa Msimbomstari lazima uwe nambari.",
- "default_barcode_font_size_required" => "Ukubwa wa herufi wa Msimbomstari ni kiashiria kinachohitajika.",
- "default_barcode_height_number" => "Urefu wa Msimbomstari lazima uwe nambari.",
- "default_barcode_height_required" => "Urefu wa Msimbomstari ni kiashiria kinachohitajika.",
- "default_barcode_num_in_row_number" => "Idadi ya Msimbomstari kwenye safu lazima iwe nambari.",
- "default_barcode_num_in_row_required" => "Idadi ya Msimbomstari kwenye safu ni kiashiria kinachohitajika.",
- "default_barcode_page_cellspacing_number" => "Nafasi kati ya chumba cha ukurasa wa Msimbomstari lazima iwe nambari.",
- "default_barcode_page_cellspacing_required" => "Nafasi kati ya chumba cha ukurasa wa Msimbomstari ni kiashiria kinachohitajika.",
- "default_barcode_page_width_number" => "Upana wa ukurasa wa Msimbomstari lazima uwe nambari.",
- "default_barcode_page_width_required" => "Upana wa ukurasa wa Msimbomstari ni kiashiria kinachohitajika.",
- "default_barcode_width_number" => "Upana wa Msimbomstari lazima uwe nambari.",
- "default_barcode_width_required" => "Upana wa Msimbomstari ni kiashiria kinachohitajika.",
- "default_item_columns" => "Safu wima za Bidhaa Zinazoonekana Kwa Chaguo-msingi",
- "default_origin_tax_code" => "Nambari ya Kodi ya Asili kwa Chaguo-msingi",
- "default_receivings_discount" => "Punguzo la Manunuzi kwa Chaguo-msingi",
- "default_receivings_discount_number" => "Punguzo la Manunuzi kwa Chaguo-msingi lazima liwe nambari.",
- "default_receivings_discount_required" => "Punguzo la Manunuzi kwa Chaguo-msingi ni kiashiria kinachohitajika.",
- "default_sales_discount" => "Punguzo la Mauzo kwa Chaguo-msingi",
- "default_sales_discount_number" => "Punguzo la Mauzo kwa Chaguo-msingi lazima liwe nambari.",
- "default_sales_discount_required" => "Punguzo la Mauzo kwa Chaguo-msingi ni kiashiria kinachohitajika.",
- "default_tax_category" => "Aina ya Kodi kwa Chaguo-msingi",
- "default_tax_code" => "Nambari ya Kodi kwa Chaguo-msingi",
- "default_tax_jurisdiction" => "Eneo la Kodi kwa Chaguo-msingi",
- "default_tax_name_number" => "Jina la Kodi lazima liwe maandishi.",
- "default_tax_name_required" => "Jina la Kodi ni kiashiria kinachohitajika.",
- "default_tax_rate" => "Kiwango cha Kodi kwa Chaguo-msingi %",
- "default_tax_rate_1" => "Kiwango cha Kodi 1",
- "default_tax_rate_2" => "Kiwango cha Kodi 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Kiwango cha Kodi kwa Chaguo-msingi lazima kiwe nambari.",
- "default_tax_rate_required" => "Kiwango cha Kodi kwa Chaguo-msingi ni kiashiria kinachohitajika.",
- "derive_sale_quantity" => "Ruhusu Kiasi cha Mauzo Kilichotokana",
- "derive_sale_quantity_tooltip" => "Ikiwa imechaguliwa basi aina mpya ya bidhaa itatolewa kwa bidhaa zilizoagizwa kwa kiasi kilichoongezwa",
- "dinner_table" => "Jedwali",
- "dinner_table_duplicate" => "Jedwali lazima iwe ya kipekee.",
- "dinner_table_enable" => "Washa Jedwali za Chakula",
- "dinner_table_invalid_chars" => "Jina la Jedwali haliwezi kuwa na '_'.",
- "dinner_table_required" => "Jedwali ni kiashiria kinachohitajika.",
- "dot" => "nukta",
- "email" => "Barua Pepe",
- "email_configuration" => "Mpangilio wa Barua Pepe",
- "email_mailpath" => "Njia ya Sendmail",
- "email_protocol" => "Itifaki",
- "email_receipt_check_behaviour" => "Kisanduku cha Risiti ya Barua Pepe",
- "email_receipt_check_behaviour_always" => "Daima imechaguliwa",
- "email_receipt_check_behaviour_last" => "Kumbuka chaguo la mwisho",
- "email_receipt_check_behaviour_never" => "Daima haijachaguliwa",
- "email_smtp_crypto" => "Usimbaji wa SMTP",
- "email_smtp_host" => "Seva ya SMTP",
- "email_smtp_pass" => "Nenosiri la SMTP",
- "email_smtp_port" => "Lango la SMTP",
- "email_smtp_timeout" => "Muda wa SMTP kuisha",
- "email_smtp_user" => "Jina la Mtumiaji la SMTP",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Lazimisha Faragha",
- "enforce_privacy_tooltip" => "Linda faragha ya Wateja kwa kulazimisha kuchanganya data endapo data zao zitafutwa",
- "fax" => "Faksi",
- "file_perm" => "Kuna matatizo na ruhusa za faili. Tafadhali rekebisha na upakie upya ukurasa huu.",
- "financial_year" => "Mwanzo wa Mwaka wa Fedha",
- "financial_year_apr" => "1 Aprili",
- "financial_year_aug" => "1 Agosti",
- "financial_year_dec" => "1 Desemba",
- "financial_year_feb" => "1 Februari",
- "financial_year_jan" => "1 Januari",
- "financial_year_jul" => "1 Julai",
- "financial_year_jun" => "1 Juni",
- "financial_year_mar" => "1 Machi",
- "financial_year_may" => "1 Mei",
- "financial_year_nov" => "1 Novemba",
- "financial_year_oct" => "1 Oktoba",
- "financial_year_sep" => "1 Septemba",
- "floating_labels" => "Lebo Zinazoelea",
- "gcaptcha_enable" => "Ukurasa wa Ingia reCAPTCHA",
- "gcaptcha_secret_key" => "Funguo ya Siri ya reCAPTCHA",
- "gcaptcha_secret_key_required" => "Funguo ya Siri ya reCAPTCHA ni kiashiria kinachohitajika",
- "gcaptcha_site_key" => "Funguo ya Tovuti ya reCAPTCHA",
- "gcaptcha_site_key_required" => "Funguo ya Tovuti ya reCAPTCHA ni kiashiria kinachohitajika",
- "gcaptcha_tooltip" => "Linda ukurasa wa Ingia kwa Google reCAPTCHA, bonyeza ikoni kupata jozi ya funguo za API.",
- "general" => "Jumla",
- "general_configuration" => "Mpangilio wa Jumla",
- "giftcard_number" => "Nambari ya Kadi ya Zawadi",
- "giftcard_random" => "Tengeneza kwa Nasibu",
- "giftcard_series" => "Tengeneza kwa Mfululizo",
- "image_allowed_file_types" => "Aina za faili zinazoruhusiwa",
- "image_max_height_tooltip" => "Urefu wa juu wa picha zinazopakiwa kwa pikseli (px).",
- "image_max_size_tooltip" => "Ukubwa wa juu wa faili za picha zinazopakiwa kwa kilobaiti (kb).",
- "image_max_width_tooltip" => "Upana wa juu wa picha zinazopakiwa kwa pikseli (px).",
- "image_restrictions" => "Vizuizi vya Upakiaji wa Picha",
- "include_hsn" => "Jumuisha Msaada wa Nambari za HSN",
- "info" => "Taarifa",
- "info_configuration" => "Taarifa za Duka",
- "input_groups" => "Makundi ya Uingizaji",
- "integrations" => "Muunganiko",
- "integrations_configuration" => "Muunganiko wa Watu wengine",
- "invoice" => "Ankara",
- "invoice_configuration" => "Mpangilio wa Uchapishaji wa Ankara",
- "invoice_default_comments" => "Maoni ya Chaguo-msingi ya Ankara",
- "invoice_email_message" => "Kiolezo cha Barua Pepe ya Ankara",
- "invoice_enable" => "Washa Utoaji wa Ankara",
- "invoice_printer" => "Kichapishi cha Ankara",
- "invoice_type" => "Aina ya Ankara",
- "is_readable" => "inasomeka, lakini ruhusa zimewekwa vibaya. Tafadhali weka 640 au 660 na upakie upya.",
- "is_writable" => "inaandikika, lakini ruhusa zimewekwa vibaya. Tafadhali weka 750 na upakie upya.",
- "item_markup" => "",
- "jsprintsetup_required" => "Tahadhari: Kipengele hiki kitafanya kazi tu ikiwa una kiendelezi cha FireFox jsPrintSetup kimewekwa. Hifadhi hata hivyo?",
- "language" => "Lugha",
- "last_used_invoice_number" => "Nambari ya mwisho ya Ankara iliyotumika",
- "last_used_quote_number" => "Nambari ya mwisho ya Nukuu iliyotumika",
- "last_used_work_order_number" => "Nambari ya mwisho ya Agizo la Kazi iliyotumika",
- "left" => "Kushoto",
- "license" => "Leseni",
- "license_configuration" => "Taarifa ya Leseni",
- "line_sequence" => "Mpangilio wa Mistari",
- "lines_per_page" => "Mistari kwa Kila Ukurasa",
- "lines_per_page_number" => "Mistari kwa Kila Ukurasa lazima iwe nambari.",
- "lines_per_page_required" => "Mistari kwa Kila Ukurasa ni kiashiria kinachohitajika.",
- "locale" => "Ujanibishaji",
- "locale_configuration" => "Mpangilio wa Ujanibishaji",
- "locale_info" => "Taarifa za Mpangilio wa Ujanibishaji",
- "location" => "Stoo",
- "location_configuration" => "Maeneo ya Stoo",
- "location_info" => "Taarifa za Mpangilio wa Stoo",
- "login_form" => "Aina ya Fomu ya Ingia",
- "logout" => "Unataka kufanya hifadhi nakala kabla ya kutoka? Bonyeza [Sawa] kuhifadhi au [Ghairi] kutoka.",
- "mailchimp" => "MailChimp",
- "mailchimp_api_key" => "Funguo ya API ya MailChimp",
- "mailchimp_configuration" => "Mpangilio wa MailChimp",
- "mailchimp_key_successfully" => "Funguo ya API ni sahihi.",
- "mailchimp_key_unsuccessfully" => "Funguo ya API si sahihi.",
- "mailchimp_lists" => "Orodha za MailChimp",
- "mailchimp_tooltip" => "Bonyeza ikoni kupata Funguo ya API.",
- "message" => "Ujumbe",
- "message_configuration" => "Mpangilio wa Ujumbe",
- "msg_msg" => "Ujumbe wa SMS uliohifadhiwa",
- "msg_msg_placeholder" => "Ikiwa unataka kutumia kiolezo cha SMS hifadhi ujumbe wako hapa, vinginevyo acha kisanduku wazi.",
- "msg_pwd" => "Nenosiri la SMS-API",
- "msg_pwd_required" => "Nenosiri la SMS-API ni kiashiria kinachohitajika",
- "msg_src" => "ID ya Mtumaji wa SMS-API",
- "msg_src_required" => "ID ya Mtumaji wa SMS-API ni kiashiria kinachohitajika",
- "msg_uid" => "Jina la Mtumiaji la SMS-API",
- "msg_uid_required" => "Jina la Mtumiaji la SMS-API ni kiashiria kinachohitajika",
- "multi_pack_enabled" => "Vifurushi Vingi kwa Kila Bidhaa",
- "no_risk" => "Hakuna hatari za usalama/udhaifu.",
- "none" => "hakuna",
- "notify_alignment" => "Nafasi ya Taarifa Ibukizi",
- "number_format" => "Muundo wa Nambari",
- "number_locale" => "Ujanibishaji",
- "number_locale_invalid" => "Ujanibishaji uliyoingiza si sahihi. Angalia kiungo kwenye kidokezo kupata Ujanibishaji sahihi.",
- "number_locale_required" => "Ujanibishaji ya Nambari ni kiashiria kinachohitajika.",
- "number_locale_tooltip" => "Tafuta Ujanibishaji inayofaa kupitia kiungo hiki.",
- "os_timezone" => "Saa ya OSPOS:",
- "ospos_info" => "Taarifa za Usakinishaji wa OSPOS",
- "payment_options_order" => "Mpangilio wa Chaguo za Malipo",
- "perm_risk" => "Ruhusa zisizo sahihi zinaacha programu hii kwenye hatari.",
- "phone" => "Namba ya simu ya Kampuni",
- "phone_required" => "Namba ya simu ya Kampuni ni kiashiria kinachohitajika.",
- "print_bottom_margin" => "Pembe ya Chini",
- "print_bottom_margin_number" => "Pembe ya Chini lazima iwe nambari.",
- "print_bottom_margin_required" => "Pembe ya Chini ni kiashiria kinachohitajika.",
- "print_delay_autoreturn" => "Muda wa Kurudi Moja kwa Moja kwenye Mauzo",
- "print_delay_autoreturn_number" => "Muda wa Kurudi Moja kwa Moja kwenye Mauzo ni kiashiria kinachohitajika.",
- "print_delay_autoreturn_required" => "Muda wa Kurudi Moja kwa Moja kwenye Mauzo lazima uwe nambari.",
- "print_footer" => "Chapisha Kijachini cha Kivinjari",
- "print_header" => "Chapisha Kijuu cha Kivinjari",
- "print_left_margin" => "Pembe ya Kushoto",
- "print_left_margin_number" => "Pembe ya Kushoto lazima iwe nambari.",
- "print_left_margin_required" => "Pembe ya Kushoto ni kiashiria kinachohitajika.",
- "print_receipt_check_behaviour" => "Kisanduku cha Risiti ya Kuchapisha",
- "print_receipt_check_behaviour_always" => "Daima imechaguliwa",
- "print_receipt_check_behaviour_last" => "Kumbuka chaguo la mwisho",
- "print_receipt_check_behaviour_never" => "Daima haijachaguliwa",
- "print_right_margin" => "Pembe ya Kulia",
- "print_right_margin_number" => "Pembe ya Kulia lazima iwe nambari.",
- "print_right_margin_required" => "Pembe ya Kulia ni kiashiria kinachohitajika.",
- "print_silently" => "Onyesha Dirisha la Kuchapisha",
- "print_top_margin" => "Pembe ya Juu",
- "print_top_margin_number" => "Pembe ya Juu lazima iwe nambari.",
- "print_top_margin_required" => "Pembe ya Juu ni kiashiria kinachohitajika.",
- "quantity_decimals" => "Desimali za Kiasi",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Maoni ya Chaguo-msingi la Nukuu",
- "receipt" => "Risiti",
- "receipt_category" => "",
- "receipt_configuration" => "Mpangilio wa Uchapishaji wa Risiti",
- "receipt_default" => "Chaguo-msingi",
- "receipt_font_size" => "Ukubwa wa Herufi",
- "receipt_font_size_number" => "Ukubwa wa Herufi lazima uwe nambari.",
- "receipt_font_size_required" => "Ukubwa wa Herufi ni kiashiria kinachohitajika.",
- "receipt_info" => "Taarifa za Mpangilio wa Risiti",
- "receipt_printer" => "Kichapishi cha Tiketi",
- "receipt_short" => "Fupi",
- "receipt_show_company_name" => "Onyesha Jina la Kampuni",
- "receipt_show_description" => "Onyesha Maelezo",
- "receipt_show_serialnumber" => "Onyesha Serial Number",
- "receipt_show_tax_ind" => "Onyesha Kiashiria cha Kodi",
- "receipt_show_taxes" => "Onyesha Kodi",
- "receipt_show_total_discount" => "Onyesha Jumla ya Punguzo",
- "receipt_template" => "Kiolezo cha Risiti",
- "receiving_calculate_average_price" => "Hesabu Bei ya wastani (Manunuzi)",
- "recv_invoice_format" => "Muundo wa Ankara ya Manunuzi",
- "register_mode_default" => "Hali ya Usajili kwa Chaguo-msingi",
- "report_an_issue" => "Ripoti tatizo",
- "return_policy_required" => "Return Policy ni kiashiria kinachohitajika.",
- "reward" => "Zawadi",
- "reward_configuration" => "Mpangilio wa Zawadi",
- "right" => "Kulia",
- "sales_invoice_format" => "Muundo wa Ankara ya Mauzo",
- "sales_quote_format" => "Muundo wa Nukuu ya Mauzo",
- "mailpath_invalid" => "",
- "saved_successfully" => "Mpangilio umehifadhiwa kwa mafanikio.",
- "saved_unsuccessfully" => "Mpangilio umeshindwa kuhifadhiwa.",
- "security_issue" => "Onyo la Udhaifu wa Usalama",
- "server_notice" => "Tafadhali tumia taarifa zilizo hapa chini kuripoti tatizo.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Onyesha ikoni ya ofisi",
- "statistics" => "Tuma Takwimu",
- "statistics_tooltip" => "Tuma takwimu kwa madhumuni ya maendeleo na uboreshaji wa vipengele.",
- "stock_location" => "Stoo",
- "stock_location_duplicate" => "Stoo lazima iwe ya kipekee.",
- "stock_location_invalid_chars" => "Stoo haiwezi kuwa na '_'.",
- "stock_location_required" => "Stoo ni kiashiria kinachohitajika.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Safu wima 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Mpangilio wa Mapendekezo ya Utafutaji",
- "suggestions_second_column" => "Safu wima 2",
- "suggestions_third_column" => "Safu wima 3",
- "system_conf" => "Usanidi & Mpangilio",
- "system_info" => "Taarifa za Mfumo",
- "table" => "Jedwali",
- "table_configuration" => "Jedwali la Mpangilio",
- "takings_printer" => "Kichapishi cha Risiti",
- "tax" => "Kodi",
- "tax_category" => "Aina ya Kodi",
- "tax_category_duplicate" => "Aina ya kodi uliyoingiza tayari ipo.",
- "tax_category_invalid_chars" => "Aina ya kodi uliyoingiza si sahihi.",
- "tax_category_required" => "Aina ya kodi ni lazima.",
- "tax_category_used" => "Aina ya kodi haiwezi kufutwa kwa sababu inatumika.",
- "tax_configuration" => "Mpangilio wa Kodi",
- "tax_decimals" => "Desimali za Kodi",
- "tax_id" => "Nambari ya Kodi",
- "tax_included" => "Kodi Imejumuishwa",
- "theme" => "Mandhari",
- "theme_preview" => "Onyesha Mandhari:",
- "thousands_separator" => "Kitenganishi cha Maelfu",
- "timezone" => "Saa za Eneo",
- "timezone_error" => "Saa za OSPOS ni tofauti na Saa za Eneo lako.",
- "top" => "Juu",
- "use_destination_based_tax" => "Tumia Kodi ya Kulingana na Eneo",
- "user_timezone" => "Saa za Eneo lako:",
- "website" => "Tovuti",
- "wholesale_markup" => "",
- "work_order_enable" => "Msaada wa Agizo la Kazi",
- "work_order_format" => "Muundo wa Agizo la Kazi",
-];
\ No newline at end of file
+ 'address' => 'Anwani ya Kampuni',
+ 'address_required' => 'Anwani ya kampuni ni kiashiria kinachohitajika.',
+ 'all_set' => 'Ruhusa zote za faili zimewekwa vizuri!',
+ 'allow_duplicate_barcodes' => 'Ruhusu Misimbomstari iliyorudiwa',
+ 'apostrophe' => 'apostrofi',
+ 'backup_button' => 'Hifadhi Nakala',
+ 'backup_database' => 'Hifadhi Nakala ya Hifadhidata',
+ 'barcode' => 'Msimbo wa Mstari',
+ 'barcode_company' => 'Jina la Kampuni',
+ 'barcode_configuration' => 'Mpangilio wa Msimbomstari',
+ 'barcode_content' => 'Yaliyomo kwenye Msimbomstari',
+ 'barcode_first_row' => 'Safu 1',
+ 'barcode_font' => 'Aina ya Herufi',
+ 'barcode_formats' => 'Aina za Uingizaji',
+ 'barcode_generate_if_empty' => 'Tengeneza ikiwa tupu.',
+ 'barcode_height' => 'Urefu (px)',
+ 'barcode_id' => 'Id ya Bidhaa/Jina',
+ 'barcode_info' => 'Taarifa za Mpangilio wa Msimbomstari',
+ 'barcode_layout' => 'Mpangilio wa Msimbomstari',
+ 'barcode_name' => 'Jina',
+ 'barcode_number' => 'Msimbomstari',
+ 'barcode_number_in_row' => 'Idadi kwenye safu',
+ 'barcode_page_cellspacing' => 'Onyesha nafasi kati ya seli za ukurasa.',
+ 'barcode_page_width' => 'Onyesha upana wa ukurasa',
+ 'barcode_price' => 'Bei',
+ 'barcode_second_row' => 'Safu 2',
+ 'barcode_third_row' => 'Safu 3',
+ 'barcode_tooltip' => 'Tahadhari: Kipengele hiki kinaweza kusababisha kurudiwa kwa bidhaa zilizoingizwa au kuundwa. Usitumie ikiwa hutaki Msimbomstari(Barcode) zilizorudiwa.',
+ 'barcode_type' => 'Aina ya Msimbomstari',
+ 'barcode_width' => 'Upana (px)',
+ 'bottom' => 'Chini',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Desimali za Fedha Taslimu',
+ 'cash_decimals_tooltip' => 'Ikiwa Desimali za Fedha Taslimu na Desimali za Sarafu ni sawa basi hakuna mzunguko wa fedha taslimu utakaofanyika, isipokuwa Mzunguko wa Fedha Taslimu umewekwa kwenye Nusu Tano.',
+ 'cash_rounding' => 'Mzunguko wa Fedha Taslimu',
+ 'category_dropdown' => 'Onyesha Kategoria kama orodha ya kushuka',
+ 'center' => 'Katikati',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'koma',
+ 'company' => 'Jina la Kampuni',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Badilisha Picha',
+ 'company_logo' => 'Nembo ya Kampuni',
+ 'company_remove_image' => 'Ondoa Picha',
+ 'company_required' => 'Jina la kampuni ni kiashiria kinachohitajika',
+ 'company_select_image' => 'Chagua Picha',
+ 'company_website_url' => 'Tovuti ya kampuni si URL halali (http://...).',
+ 'country_codes' => 'Msimbo wa Nchi',
+ 'country_codes_tooltip' => 'Orodha ya misimbo ya nchi zilizotenganishwa kwa koma kwa utafutaji wa anwani wa uteuzi.',
+ 'currency_code' => 'Nambari ya Sarafu',
+ 'currency_decimals' => 'Desimali za Sarafu',
+ 'currency_symbol' => 'Alama ya Sarafu',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Zawadi',
+ 'customer_reward_duplicate' => 'Zawadi lazima iwe ya kipekee.',
+ 'customer_reward_enable' => 'Washa Zawadi kwa Wateja',
+ 'customer_reward_invalid_chars' => "Zawadi haiwezi kuwa na '_'",
+ 'customer_reward_required' => 'Zawadi ni kiashiria kinachohitajika',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => 'Kichujio cha Tarehe na Muda',
+ 'datetimeformat' => 'Muundo wa Tarehe na Muda',
+ 'decimal_point' => 'Nukta ya Desimali',
+ 'default_barcode_font_size_number' => 'Ukubwa wa herufi wa Msimbomstari lazima uwe nambari.',
+ 'default_barcode_font_size_required' => 'Ukubwa wa herufi wa Msimbomstari ni kiashiria kinachohitajika.',
+ 'default_barcode_height_number' => 'Urefu wa Msimbomstari lazima uwe nambari.',
+ 'default_barcode_height_required' => 'Urefu wa Msimbomstari ni kiashiria kinachohitajika.',
+ 'default_barcode_num_in_row_number' => 'Idadi ya Msimbomstari kwenye safu lazima iwe nambari.',
+ 'default_barcode_num_in_row_required' => 'Idadi ya Msimbomstari kwenye safu ni kiashiria kinachohitajika.',
+ 'default_barcode_page_cellspacing_number' => 'Nafasi kati ya chumba cha ukurasa wa Msimbomstari lazima iwe nambari.',
+ 'default_barcode_page_cellspacing_required' => 'Nafasi kati ya chumba cha ukurasa wa Msimbomstari ni kiashiria kinachohitajika.',
+ 'default_barcode_page_width_number' => 'Upana wa ukurasa wa Msimbomstari lazima uwe nambari.',
+ 'default_barcode_page_width_required' => 'Upana wa ukurasa wa Msimbomstari ni kiashiria kinachohitajika.',
+ 'default_barcode_width_number' => 'Upana wa Msimbomstari lazima uwe nambari.',
+ 'default_barcode_width_required' => 'Upana wa Msimbomstari ni kiashiria kinachohitajika.',
+ 'default_item_columns' => 'Safu wima za Bidhaa Zinazoonekana Kwa Chaguo-msingi',
+ 'default_origin_tax_code' => 'Nambari ya Kodi ya Asili kwa Chaguo-msingi',
+ 'default_receivings_discount' => 'Punguzo la Manunuzi kwa Chaguo-msingi',
+ 'default_receivings_discount_number' => 'Punguzo la Manunuzi kwa Chaguo-msingi lazima liwe nambari.',
+ 'default_receivings_discount_required' => 'Punguzo la Manunuzi kwa Chaguo-msingi ni kiashiria kinachohitajika.',
+ 'default_sales_discount' => 'Punguzo la Mauzo kwa Chaguo-msingi',
+ 'default_sales_discount_number' => 'Punguzo la Mauzo kwa Chaguo-msingi lazima liwe nambari.',
+ 'default_sales_discount_required' => 'Punguzo la Mauzo kwa Chaguo-msingi ni kiashiria kinachohitajika.',
+ 'default_tax_category' => 'Aina ya Kodi kwa Chaguo-msingi',
+ 'default_tax_code' => 'Nambari ya Kodi kwa Chaguo-msingi',
+ 'default_tax_jurisdiction' => 'Eneo la Kodi kwa Chaguo-msingi',
+ 'default_tax_name_number' => 'Jina la Kodi lazima liwe maandishi.',
+ 'default_tax_name_required' => 'Jina la Kodi ni kiashiria kinachohitajika.',
+ 'default_tax_rate' => 'Kiwango cha Kodi kwa Chaguo-msingi %',
+ 'default_tax_rate_1' => 'Kiwango cha Kodi 1',
+ 'default_tax_rate_2' => 'Kiwango cha Kodi 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Kiwango cha Kodi kwa Chaguo-msingi lazima kiwe nambari.',
+ 'default_tax_rate_required' => 'Kiwango cha Kodi kwa Chaguo-msingi ni kiashiria kinachohitajika.',
+ 'derive_sale_quantity' => 'Ruhusu Kiasi cha Mauzo Kilichotokana',
+ 'derive_sale_quantity_tooltip' => 'Ikiwa imechaguliwa basi aina mpya ya bidhaa itatolewa kwa bidhaa zilizoagizwa kwa kiasi kilichoongezwa',
+ 'dinner_table' => 'Jedwali',
+ 'dinner_table_duplicate' => 'Jedwali lazima iwe ya kipekee.',
+ 'dinner_table_enable' => 'Washa Jedwali za Chakula',
+ 'dinner_table_invalid_chars' => "Jina la Jedwali haliwezi kuwa na '_'.",
+ 'dinner_table_required' => 'Jedwali ni kiashiria kinachohitajika.',
+ 'dot' => 'nukta',
+ 'email' => 'Barua Pepe',
+ 'email_configuration' => 'Mpangilio wa Barua Pepe',
+ 'email_mailpath' => 'Njia ya Sendmail',
+ 'email_protocol' => 'Itifaki',
+ 'email_receipt_check_behaviour' => 'Kisanduku cha Risiti ya Barua Pepe',
+ 'email_receipt_check_behaviour_always' => 'Daima imechaguliwa',
+ 'email_receipt_check_behaviour_last' => 'Kumbuka chaguo la mwisho',
+ 'email_receipt_check_behaviour_never' => 'Daima haijachaguliwa',
+ 'email_smtp_crypto' => 'Usimbaji wa SMTP',
+ 'email_smtp_host' => 'Seva ya SMTP',
+ 'email_smtp_pass' => 'Nenosiri la SMTP',
+ 'email_smtp_port' => 'Lango la SMTP',
+ 'email_smtp_timeout' => 'Muda wa SMTP kuisha',
+ 'email_smtp_user' => 'Jina la Mtumiaji la SMTP',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Lazimisha Faragha',
+ 'enforce_privacy_tooltip' => 'Linda faragha ya Wateja kwa kulazimisha kuchanganya data endapo data zao zitafutwa',
+ 'fax' => 'Faksi',
+ 'file_perm' => 'Kuna matatizo na ruhusa za faili. Tafadhali rekebisha na upakie upya ukurasa huu.',
+ 'financial_year' => 'Mwanzo wa Mwaka wa Fedha',
+ 'financial_year_apr' => '1 Aprili',
+ 'financial_year_aug' => '1 Agosti',
+ 'financial_year_dec' => '1 Desemba',
+ 'financial_year_feb' => '1 Februari',
+ 'financial_year_jan' => '1 Januari',
+ 'financial_year_jul' => '1 Julai',
+ 'financial_year_jun' => '1 Juni',
+ 'financial_year_mar' => '1 Machi',
+ 'financial_year_may' => '1 Mei',
+ 'financial_year_nov' => '1 Novemba',
+ 'financial_year_oct' => '1 Oktoba',
+ 'financial_year_sep' => '1 Septemba',
+ 'floating_labels' => 'Lebo Zinazoelea',
+ 'gcaptcha_enable' => 'Ukurasa wa Ingia reCAPTCHA',
+ 'gcaptcha_secret_key' => 'Funguo ya Siri ya reCAPTCHA',
+ 'gcaptcha_secret_key_required' => 'Funguo ya Siri ya reCAPTCHA ni kiashiria kinachohitajika',
+ 'gcaptcha_site_key' => 'Funguo ya Tovuti ya reCAPTCHA',
+ 'gcaptcha_site_key_required' => 'Funguo ya Tovuti ya reCAPTCHA ni kiashiria kinachohitajika',
+ 'gcaptcha_tooltip' => 'Linda ukurasa wa Ingia kwa Google reCAPTCHA, bonyeza ikoni kupata jozi ya funguo za API.',
+ 'general' => 'Jumla',
+ 'general_configuration' => 'Mpangilio wa Jumla',
+ 'giftcard_number' => 'Nambari ya Kadi ya Zawadi',
+ 'giftcard_random' => 'Tengeneza kwa Nasibu',
+ 'giftcard_series' => 'Tengeneza kwa Mfululizo',
+ 'image_allowed_file_types' => 'Aina za faili zinazoruhusiwa',
+ 'image_max_height_tooltip' => 'Urefu wa juu wa picha zinazopakiwa kwa pikseli (px).',
+ 'image_max_size_tooltip' => 'Ukubwa wa juu wa faili za picha zinazopakiwa kwa kilobaiti (kb).',
+ 'image_max_width_tooltip' => 'Upana wa juu wa picha zinazopakiwa kwa pikseli (px).',
+ 'image_restrictions' => 'Vizuizi vya Upakiaji wa Picha',
+ 'include_hsn' => 'Jumuisha Msaada wa Nambari za HSN',
+ 'info' => 'Taarifa',
+ 'info_configuration' => 'Taarifa za Duka',
+ 'input_groups' => 'Makundi ya Uingizaji',
+ 'integrations' => 'Muunganiko',
+ 'integrations_configuration' => 'Muunganiko wa Watu wengine',
+ 'invoice' => 'Ankara',
+ 'invoice_configuration' => 'Mpangilio wa Uchapishaji wa Ankara',
+ 'invoice_default_comments' => 'Maoni ya Chaguo-msingi ya Ankara',
+ 'invoice_email_message' => 'Kiolezo cha Barua Pepe ya Ankara',
+ 'invoice_enable' => 'Washa Utoaji wa Ankara',
+ 'invoice_printer' => 'Kichapishi cha Ankara',
+ 'invoice_type' => 'Aina ya Ankara',
+ 'is_readable' => 'inasomeka, lakini ruhusa zimewekwa vibaya. Tafadhali weka 640 au 660 na upakie upya.',
+ 'is_writable' => 'inaandikika, lakini ruhusa zimewekwa vibaya. Tafadhali weka 750 na upakie upya.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Tahadhari: Kipengele hiki kitafanya kazi tu ikiwa una kiendelezi cha FireFox jsPrintSetup kimewekwa. Hifadhi hata hivyo?',
+ 'language' => 'Lugha',
+ 'last_used_invoice_number' => 'Nambari ya mwisho ya Ankara iliyotumika',
+ 'last_used_quote_number' => 'Nambari ya mwisho ya Nukuu iliyotumika',
+ 'last_used_work_order_number' => 'Nambari ya mwisho ya Agizo la Kazi iliyotumika',
+ 'left' => 'Kushoto',
+ 'license' => 'Leseni',
+ 'license_configuration' => 'Taarifa ya Leseni',
+ 'line_sequence' => 'Mpangilio wa Mistari',
+ 'lines_per_page' => 'Mistari kwa Kila Ukurasa',
+ 'lines_per_page_number' => 'Mistari kwa Kila Ukurasa lazima iwe nambari.',
+ 'lines_per_page_required' => 'Mistari kwa Kila Ukurasa ni kiashiria kinachohitajika.',
+ 'locale' => 'Ujanibishaji',
+ 'locale_configuration' => 'Mpangilio wa Ujanibishaji',
+ 'locale_info' => 'Taarifa za Mpangilio wa Ujanibishaji',
+ 'location' => 'Stoo',
+ 'location_configuration' => 'Maeneo ya Stoo',
+ 'location_info' => 'Taarifa za Mpangilio wa Stoo',
+ 'login_form' => 'Aina ya Fomu ya Ingia',
+ 'logout' => 'Unataka kufanya hifadhi nakala kabla ya kutoka? Bonyeza [Sawa] kuhifadhi au [Ghairi] kutoka.',
+ 'mailchimp' => 'MailChimp',
+ 'mailchimp_api_key' => 'Funguo ya API ya MailChimp',
+ 'mailchimp_configuration' => 'Mpangilio wa MailChimp',
+ 'mailchimp_key_successfully' => 'Funguo ya API ni sahihi.',
+ 'mailchimp_key_unsuccessfully' => 'Funguo ya API si sahihi.',
+ 'mailchimp_lists' => 'Orodha za MailChimp',
+ 'mailchimp_tooltip' => 'Bonyeza ikoni kupata Funguo ya API.',
+ 'message' => 'Ujumbe',
+ 'message_configuration' => 'Mpangilio wa Ujumbe',
+ 'msg_msg' => 'Ujumbe wa SMS uliohifadhiwa',
+ 'msg_msg_placeholder' => 'Ikiwa unataka kutumia kiolezo cha SMS hifadhi ujumbe wako hapa, vinginevyo acha kisanduku wazi.',
+ 'msg_pwd' => 'Nenosiri la SMS-API',
+ 'msg_pwd_required' => 'Nenosiri la SMS-API ni kiashiria kinachohitajika',
+ 'msg_src' => 'ID ya Mtumaji wa SMS-API',
+ 'msg_src_required' => 'ID ya Mtumaji wa SMS-API ni kiashiria kinachohitajika',
+ 'msg_uid' => 'Jina la Mtumiaji la SMS-API',
+ 'msg_uid_required' => 'Jina la Mtumiaji la SMS-API ni kiashiria kinachohitajika',
+ 'multi_pack_enabled' => 'Vifurushi Vingi kwa Kila Bidhaa',
+ 'no_risk' => 'Hakuna hatari za usalama/udhaifu.',
+ 'none' => 'hakuna',
+ 'notify_alignment' => 'Nafasi ya Taarifa Ibukizi',
+ 'number_format' => 'Muundo wa Nambari',
+ 'number_locale' => 'Ujanibishaji',
+ 'number_locale_invalid' => 'Ujanibishaji uliyoingiza si sahihi. Angalia kiungo kwenye kidokezo kupata Ujanibishaji sahihi.',
+ 'number_locale_required' => 'Ujanibishaji ya Nambari ni kiashiria kinachohitajika.',
+ 'number_locale_tooltip' => 'Tafuta Ujanibishaji inayofaa kupitia kiungo hiki.',
+ 'os_timezone' => 'Saa ya OSPOS:',
+ 'ospos_info' => 'Taarifa za Usakinishaji wa OSPOS',
+ 'payment_options_order' => 'Mpangilio wa Chaguo za Malipo',
+ 'payment_reference_code_length_limits' => 'Nambari ya Kumbukumbu ya Malipo
Mipaka ya Urefu',
+ 'payment_reference_code_length_max_label' => 'Kiwango cha juu',
+ 'payment_reference_code_length_min_label' => 'Kiwango cha chini',
+ 'perm_risk' => 'Ruhusa zisizo sahihi zinaacha programu hii kwenye hatari.',
+ 'phone' => 'Namba ya simu ya Kampuni',
+ 'phone_required' => 'Namba ya simu ya Kampuni ni kiashiria kinachohitajika.',
+ 'print_bottom_margin' => 'Pembe ya Chini',
+ 'print_bottom_margin_number' => 'Pembe ya Chini lazima iwe nambari.',
+ 'print_bottom_margin_required' => 'Pembe ya Chini ni kiashiria kinachohitajika.',
+ 'print_delay_autoreturn' => 'Muda wa Kurudi Moja kwa Moja kwenye Mauzo',
+ 'print_delay_autoreturn_number' => 'Muda wa Kurudi Moja kwa Moja kwenye Mauzo ni kiashiria kinachohitajika.',
+ 'print_delay_autoreturn_required' => 'Muda wa Kurudi Moja kwa Moja kwenye Mauzo lazima uwe nambari.',
+ 'print_footer' => 'Chapisha Kijachini cha Kivinjari',
+ 'print_header' => 'Chapisha Kijuu cha Kivinjari',
+ 'print_left_margin' => 'Pembe ya Kushoto',
+ 'print_left_margin_number' => 'Pembe ya Kushoto lazima iwe nambari.',
+ 'print_left_margin_required' => 'Pembe ya Kushoto ni kiashiria kinachohitajika.',
+ 'print_receipt_check_behaviour' => 'Kisanduku cha Risiti ya Kuchapisha',
+ 'print_receipt_check_behaviour_always' => 'Daima imechaguliwa',
+ 'print_receipt_check_behaviour_last' => 'Kumbuka chaguo la mwisho',
+ 'print_receipt_check_behaviour_never' => 'Daima haijachaguliwa',
+ 'print_right_margin' => 'Pembe ya Kulia',
+ 'print_right_margin_number' => 'Pembe ya Kulia lazima iwe nambari.',
+ 'print_right_margin_required' => 'Pembe ya Kulia ni kiashiria kinachohitajika.',
+ 'print_silently' => 'Onyesha Dirisha la Kuchapisha',
+ 'print_top_margin' => 'Pembe ya Juu',
+ 'print_top_margin_number' => 'Pembe ya Juu lazima iwe nambari.',
+ 'print_top_margin_required' => 'Pembe ya Juu ni kiashiria kinachohitajika.',
+ 'quantity_decimals' => 'Desimali za Kiasi',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Maoni ya Chaguo-msingi la Nukuu',
+ 'receipt' => 'Risiti',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Mpangilio wa Uchapishaji wa Risiti',
+ 'receipt_default' => 'Chaguo-msingi',
+ 'receipt_font_size' => 'Ukubwa wa Herufi',
+ 'receipt_font_size_number' => 'Ukubwa wa Herufi lazima uwe nambari.',
+ 'receipt_font_size_required' => 'Ukubwa wa Herufi ni kiashiria kinachohitajika.',
+ 'receipt_info' => 'Taarifa za Mpangilio wa Risiti',
+ 'receipt_printer' => 'Kichapishi cha Tiketi',
+ 'receipt_short' => 'Fupi',
+ 'receipt_show_company_name' => 'Onyesha Jina la Kampuni',
+ 'receipt_show_description' => 'Onyesha Maelezo',
+ 'receipt_show_serialnumber' => 'Onyesha Serial Number',
+ 'receipt_show_tax_ind' => 'Onyesha Kiashiria cha Kodi',
+ 'receipt_show_taxes' => 'Onyesha Kodi',
+ 'receipt_show_total_discount' => 'Onyesha Jumla ya Punguzo',
+ 'receipt_template' => 'Kiolezo cha Risiti',
+ 'receiving_calculate_average_price' => 'Hesabu Bei ya wastani (Manunuzi)',
+ 'recv_invoice_format' => 'Muundo wa Ankara ya Manunuzi',
+ 'register_mode_default' => 'Hali ya Usajili kwa Chaguo-msingi',
+ 'report_an_issue' => 'Ripoti tatizo',
+ 'return_policy_required' => 'Return Policy ni kiashiria kinachohitajika.',
+ 'reward' => 'Zawadi',
+ 'reward_configuration' => 'Mpangilio wa Zawadi',
+ 'right' => 'Kulia',
+ 'sales_invoice_format' => 'Muundo wa Ankara ya Mauzo',
+ 'sales_quote_format' => 'Muundo wa Nukuu ya Mauzo',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => 'Mpangilio umehifadhiwa kwa mafanikio.',
+ 'saved_unsuccessfully' => 'Mpangilio umeshindwa kuhifadhiwa.',
+ 'security_issue' => 'Onyo la Udhaifu wa Usalama',
+ 'server_notice' => 'Tafadhali tumia taarifa zilizo hapa chini kuripoti tatizo.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Onyesha ikoni ya ofisi',
+ 'statistics' => 'Tuma Takwimu',
+ 'statistics_tooltip' => 'Tuma takwimu kwa madhumuni ya maendeleo na uboreshaji wa vipengele.',
+ 'stock_location' => 'Stoo',
+ 'stock_location_duplicate' => 'Stoo lazima iwe ya kipekee.',
+ 'stock_location_invalid_chars' => "Stoo haiwezi kuwa na '_'.",
+ 'stock_location_required' => 'Stoo ni kiashiria kinachohitajika.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Safu wima 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Mpangilio wa Mapendekezo ya Utafutaji',
+ 'suggestions_second_column' => 'Safu wima 2',
+ 'suggestions_third_column' => 'Safu wima 3',
+ 'system_conf' => 'Usanidi & Mpangilio',
+ 'system_info' => 'Taarifa za Mfumo',
+ 'table' => 'Jedwali',
+ 'table_configuration' => 'Jedwali la Mpangilio',
+ 'takings_printer' => 'Kichapishi cha Risiti',
+ 'tax' => 'Kodi',
+ 'tax_category' => 'Aina ya Kodi',
+ 'tax_category_duplicate' => 'Aina ya kodi uliyoingiza tayari ipo.',
+ 'tax_category_invalid_chars' => 'Aina ya kodi uliyoingiza si sahihi.',
+ 'tax_category_required' => 'Aina ya kodi ni lazima.',
+ 'tax_category_used' => 'Aina ya kodi haiwezi kufutwa kwa sababu inatumika.',
+ 'tax_configuration' => 'Mpangilio wa Kodi',
+ 'tax_decimals' => 'Desimali za Kodi',
+ 'tax_id' => 'Nambari ya Kodi',
+ 'tax_included' => 'Kodi Imejumuishwa',
+ 'theme' => 'Mandhari',
+ 'theme_preview' => 'Onyesha Mandhari:',
+ 'thousands_separator' => 'Kitenganishi cha Maelfu',
+ 'timezone' => 'Saa za Eneo',
+ 'timezone_error' => 'Saa za OSPOS ni tofauti na Saa za Eneo lako.',
+ 'top' => 'Juu',
+ 'use_destination_based_tax' => 'Tumia Kodi ya Kulingana na Eneo',
+ 'user_timezone' => 'Saa za Eneo lako:',
+ 'website' => 'Tovuti',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Msaada wa Agizo la Kazi',
+ 'work_order_format' => 'Muundo wa Agizo la Kazi',
+];
diff --git a/app/Language/sw-TZ/Login.php b/app/Language/sw-TZ/Login.php
index 15d9468d4..331eb30a5 100644
--- a/app/Language/sw-TZ/Login.php
+++ b/app/Language/sw-TZ/Login.php
@@ -1,25 +1,30 @@
"Mimi si roboti.",
- "go" => "Nenda",
- "invalid_gcaptcha" => "Tafadhali thibitisha kuwa wewe si roboti.",
- "invalid_installation" => "Usakinishaji si sahihi, angalia faili yako ya php.ini.",
- "invalid_username_and_password" => "Jina la mtumiaji na/au nenosiri si sahihi.",
- "login" => "Ingia",
- "logout" => "Toka",
- "migration_needed" => "Uhamishaji wa kanzidata hadi {0} utaanza baada ya kuingia.",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "Nenosiri",
- "required_username" => "Jina la mtumiaji ni lazima.",
- "username" => "Jina la Mtumiaji",
- "welcome" => "Karibu kwenye {0}!",
-];
\ No newline at end of file
+ "gcaptcha" => "Mimi si roboti.",
+ "go" => "Nenda",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Tafadhali thibitisha kuwa wewe si roboti.",
+ "invalid_installation" => "Usakinishaji si sahihi, angalia faili yako ya php.ini.",
+ "invalid_username_and_password" => "Jina la mtumiaji na/au nenosiri si sahihi.",
+ "login" => "Ingia",
+ "logout" => "Toka",
+ "migrating_database" => "Inahama hifadhidata",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "Hifadhidata imehama!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "Uhamishaji wa kanzidata hadi {0} utaanza baada ya kuingia.",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "Nenosiri",
+ "required_username" => "Jina la mtumiaji ni lazima.",
+ "username" => "Jina la Mtumiaji",
+ "welcome" => "Karibu kwenye {0}!"
+];
diff --git a/app/Language/sw-TZ/Sales.php b/app/Language/sw-TZ/Sales.php
index 6748f957b..43f1f6f1f 100644
--- a/app/Language/sw-TZ/Sales.php
+++ b/app/Language/sw-TZ/Sales.php
@@ -1,233 +1,237 @@
"Pointi Zinazopatikana",
- "rewards_package" => "Zawadi",
- "rewards_remaining_balance" => "Thamani ya pointi za zawadi zilizobaki ni ",
- "account_number" => "Nambari ya Akaunti",
- "add_payment" => "Ongeza Malipo",
- "amount_due" => "Kiasi Kinachodaiwa",
- "amount_tendered" => "Kiasi Kilicholipwa",
- "authorized_signature" => "Sahihi Iliyothibitishwa",
- "cancel_sale" => "Ghairi",
- "cash" => "Fedha Taslimu",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "Marekebisho ya Fedha",
- "cash_deposit" => "Amana ya Fedha",
- "cash_filter" => "Fedha Taslimu",
- "change_due" => "Chenji Inayodaiwa",
- "change_price" => "Badilisha Bei ya Uuzaji",
- "check" => "Hundi",
- "check_balance" => "Salio la Hundi",
- "check_filter" => "Hundi",
- "close" => "",
- "comment" => "Maoni",
- "comments" => "Maoni",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Kamilisha",
- "confirm_cancel_sale" => "Una uhakika unataka kufuta mauzo haya? Bidhaa zote zitaondolewa.",
- "confirm_delete" => "Una uhakika unataka kufuta mauzo uliyoyachagua?",
- "confirm_restore" => "Una uhakika unataka kurejesha mauzo uliyoyachagua?",
- "credit" => "Kadi ya Mkopo",
- "credit_deposit" => "Amana ya Mkopo",
- "credit_filter" => "Kadi ya Mkopo",
- "current_table" => "",
- "customer" => "Mteja",
- "customer_address" => "Anwani",
- "customer_discount" => "Punguzo",
- "customer_email" => "Barua Pepe",
- "customer_location" => "Mahali",
- "customer_mailchimp_status" => "Hali ya MailChimp",
- "customer_optional" => "(Inahitajika kwa Malipo ya Madeni)",
- "customer_required" => "(Inahitajika)",
- "customer_total" => "Jumla",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Tarehe ya Mauzo",
- "date_range" => "Wigo wa Tarehe",
- "date_required" => "Tafadhali ingiza tarehe sahihi.",
- "date_type" => "Tarehe ni kiashiria kinachohitajika.",
- "debit" => "Kadi ya Debit",
- "debit_filter" => "",
- "delete" => "Ruhusu Kufuta",
- "delete_confirmation" => "Una uhakika unataka kufuta mauzo haya? Hatua hii haiwezi kubatilishwa.",
- "delete_entire_sale" => "Futa Mauzo Yote",
- "delete_successful" => "Mauzo yamefutwa kwa mafanikio.",
- "delete_unsuccessful" => "Kufuta mauzo kimeshindikana.",
- "description_abbrv" => "Desc.",
- "discard" => "Ondoa", //Tupa
- "discard_quote" => "",
- "discount" => "Punguzo",
- "discount_included" => "% Punguzo",
- "discount_short" => "%",
- "due" => "Deni",
- "due_filter" => "",
- "edit" => "Hariri",
- "edit_item" => "Hariri Bidhaa",
- "edit_sale" => "Hariri Mauzo",
- "email_receipt" => "Tuma Risiti kwa Barua Pepe",
- "employee" => "Mfanyakazi",
- "entry" => "Ingizo",
- "error_editing_item" => "Hitilafu katika kuhariri bidhaa",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Tafuta au Changanua Bidhaa",
- "find_or_scan_item_or_receipt" => "Tafuta au Changanua Bidhaa au Risiti",
- "giftcard" => "Kadi ya Zawadi",
- "giftcard_balance" => "Salio la Kadi ya Zawadi",
- "giftcard_filter" => "",
- "giftcard_number" => "Namba ya Kadi ya Zawadi",
- "group_by_category" => "Panga kwa Kategoria",
- "group_by_type" => "Panga kwa Aina",
- "hsn" => "HSN",
- "id" => "Namba ya Mauzo",
- "include_prices" => "Jumuisha Bei?",
- "invoice" => "Ankara",
- "invoice_confirm" => "Ankara hii itatumwa kwa",
- "invoice_enable" => "Namba ya Ankara",
- "invoice_filter" => "Ankara",
- "invoice_no_email" => "Mteja huyu hana anwani halali ya barua pepe.",
- "invoice_number" => "Namba ya Ankara",
- "invoice_number_duplicate" => "Namba ya Ankara {0} lazima iwe ya kipekee.",
- "invoice_sent" => "Ankara imetumwa kwa",
- "invoice_total" => "Jumla ya Ankara",
- "invoice_type_custom_invoice" => "Ankara Maalum (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Ankara ya Kodi Maalum (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Ankara (invoice.php)",
- "invoice_type_tax_invoice" => "Ankara ya Kodi (tax_invoice.php)",
- "invoice_unsent" => "Imeshindikana kutuma ankara kwa",
- "invoice_update" => "Hesabu upya",
- "item_insufficient_of_stock" => "Bidhaa haina hisa ya kutosha.",
- "item_name" => "Jina la Bidhaa",
- "item_number" => "Namba ya Bidhaa",
- "item_out_of_stock" => "Bidhaa haina hisa.",
- "key_browser" => "Vifupisho vya Msaada",
- "key_cancel" => "Ghairi Nukuu/Ankara/Mauzo ya Sasa",
- "key_customer_search" => "Tafuta Mteja",
- "key_finish_quote" => "Kamilisha Nukuu/Ankara bila malipo",
- "key_finish_sale" => "Ongeza Malipo na Kamilisha Ankara/Mauzo",
- "key_full" => "Fungua kwa Skrini Nzima",
- "key_function" => "Function",
- "key_help" => "Vifupisho",
- "key_help_modal" => "Fungua Dirisha la Vifupisho",
- "key_in" => "Kuza",
- "key_item_search" => "Tafuta Bidhaa",
- "key_out" => "Punguza",
- "key_payment" => "Ongeza Malipo",
- "key_print" => "Chapisha Ukurasa wa Sasa",
- "key_restore" => "Rejesha Mwonekano wa Awali/Zoom",
- "key_search" => "Tafuta Jedwali la Ripoti",
- "key_suspend" => "Sitisha Mauzo ya Sasa",
- "key_suspended" => "Onyesha Mauzo Yaliyositishwa",
- "key_system" => "Vifupisho vya Mfumo",
- "key_tendered" => "Hariri Kiasi Kilicholipwa",
- "key_title" => "Vifupisho vya Kibodi (Keyboard) vya Mauzo",
- "mc" => "",
- "mode" => "Hali ya Usajili",
- "must_enter_numeric" => "Kiasi Kilicholipwa lazima kiwe Namba.",
- "must_enter_numeric_giftcard" => "Namba ya Kadi ya Zawadi lazima iwe Namba.",
- "new_customer" => "Mteja Mpya",
- "new_item" => "Bidhaa Mpya",
- "no_description" => "Hakuna maelezo",
- "no_filter" => "Zote",
- "no_items_in_cart" => "Hakuna bidhaa kwenye Kikapu cha Ununuzi.",
- "no_sales_to_display" => "Hakuna mauzo ya kuonyesha.",
- "none_selected" => "Hujachagua mauzo yoyote ya kufuta.",
- "nontaxed_ind" => " ",
- "not_authorized" => "Hatua hii haijaruhusiwa.",
- "one_or_multiple" => "Mauzo",
- "payment" => "Aina ya Malipo",
- "payment_amount" => "Kiasi",
- "payment_not_cover_total" => "Kiasi cha malipo lazima kiwe sawa au zaidi ya jumla kuu.",
- "payment_type" => "Aina",
- "payments" => "",
- "payments_total" => "Jumla ya Malipo",
- "price" => "Bei",
- "print_after_sale" => "Chapisha baada ya Mauzo",
- "quantity" => "Kiasi",
- "quantity_less_than_reorder_level" => "Onyo: Kiasi kilichotakiwa kiko chini ya kiwango cha kuagiza tena kwa bidhaa hiyo.",
- "quantity_less_than_zero" => "Onyo: Kiasi kilichotakiwa hakitoshi. Unaweza kuendelea na mauzo, lakini hakiki hesabu yako.",
- "quantity_of_items" => "Kiasi cha bidhaa {0}",
- "quote" => "Nukuu (Quote)",
- "quote_number" => "Nambari ya Nukuu",
- "quote_number_duplicate" => "Nambari ya Nukuu lazima iwe ya kipekee.",
- "quote_sent" => "Nukuu imetumwa kwa",
- "quote_unsent" => "Imeshindikana kutuma nukuu kwa",
- "receipt" => "Risiti ya Mauzo",
- "receipt_no_email" => "Mteja huyu hana anwani halali ya barua pepe.",
- "receipt_number" => "Namba ya Mauzo",
- "receipt_sent" => "Risiti imetumwa kwa",
- "receipt_unsent" => "Imeshindikana kutuma risiti kwa",
- "refund" => "Aina ya Marejesho",
- "register" => "Usajili wa Mauzo",
- "remove_customer" => "Ondoa Mteja",
- "remove_discount" => "Ondoa Punguzo",
- "return" => "Rudisha",
- "rewards" => "Pointi za Zawadi",
- "rewards_balance" => "Salio la Pointi za Zawadi",
- "sale" => "Mauzo",
- "sale_by_invoice" => "Mauzo kwa Ankara",
- "sale_for_customer" => "Mteja:",
- "sale_time" => "Muda",
- "sales_tax" => "Kodi ya Mauzo",
- "sales_total" => "",
- "select_customer" => "Chagua Mteja",
- "selected_customer" => "Mteja Uliyemchagua",
- "send_invoice" => "Tuma Ankara",
- "send_quote" => "Tuma Nukuu",
- "send_receipt" => "Tuma Risiti",
- "send_work_order" => "Tuma Agizo la Kazi",
- "serial" => "Nambari ya Seriali",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Onyesha Ankara",
- "show_receipt" => "Onyesha Risiti",
- "start_typing_customer_name" => "Anza kuandika taarifa za mteja...",
- "start_typing_item_name" => "Anza kuandika jina la bidhaa au changanua msimbo wa mstari (Scan Barcode)...",
- "stock" => "Hisa",
- "stock_location" => "Eneo la Hisa",
- "sub_total" => "Jumla Ndogo",
- "successfully_deleted" => "Umefanikiwa kufuta",
- "successfully_restored" => "Umefanikiwa kurejesha",
- "successfully_suspended_sale" => "Kusitisha mauzo kumewezekana.",
- "successfully_updated" => "Kusasisha mauzo kumewezekana.",
- "suspend_sale" => "Sitisha",
- "suspended_doc_id" => "Nyaraka",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Yaliyositishwa",
- "table" => "Jedwali",
- "takings" => "Mauzo ya Kila Siku",
- "tax" => "Kodi",
- "tax_id" => "Kitambulisho cha Kodi",
- "tax_invoice" => "Ankara ya Kodi",
- "tax_percent" => "Kodi %",
- "taxed_ind" => "K",
- "total" => "Jumla",
- "total_tax_exclusive" => "Kodi haijajumuishwa",
- "transaction_failed" => "Muamala wa Mauzo umeshindikana.",
- "unable_to_add_item" => "Imeshindikana kuongeza bidhaa kwenye Mauzo",
- "unsuccessfully_deleted" => "Imeshindikana kufuta Mauzo.",
- "unsuccessfully_restored" => "Imeshindikana kurejesha Mauzo.",
- "unsuccessfully_suspended_sale" => "Imeshindikana kusitisha Mauzo.",
- "unsuccessfully_updated" => "Kusasisha mauzo kimeshindikana.",
- "unsuspend" => "Ondoa Kusitishwa",
// "unsuspend_and_delete" => "Hatua (Action)",
- "unsuspend_and_delete" => "Hatua",
- "update" => "Sasisha",
- "upi" => "UPI",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "Agizo la Kazi (Work Order)",
- "work_order_number" => "Nambari ya Agizo la Kazi",
- "work_order_number_duplicate" => "Nambari ya Agizo la Kazi lazima iwe ya kipekee.",
- "work_order_sent" => "Agizo la Kazi limetumwa kwa",
- "work_order_unsent" => "Imeshindikana kutuma Agizo la Kazi kwa",
-];
\ No newline at end of file
+ 'account_number' => 'Nambari ya Akaunti',
+ 'add_payment' => 'Ongeza Malipo',
+ 'amount_due' => 'Kiasi Kinachodaiwa',
+ 'amount_tendered' => 'Kiasi Kilicholipwa',
+ 'authorized_signature' => 'Sahihi Iliyothibitishwa',
+ 'cancel_sale' => 'Ghairi',
+ 'cash' => 'Fedha Taslimu',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'Marekebisho ya Fedha',
+ 'cash_deposit' => 'Amana ya Fedha',
+ 'cash_filter' => 'Fedha Taslimu',
+ 'change_due' => 'Chenji Inayodaiwa',
+ 'change_price' => 'Badilisha Bei ya Uuzaji',
+ 'check' => 'Hundi',
+ 'check_balance' => 'Salio la Hundi',
+ 'check_filter' => 'Hundi',
+ 'close' => '',
+ 'comment' => 'Maoni',
+ 'comments' => 'Maoni',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Kamilisha',
+ 'confirm_cancel_sale' => 'Una uhakika unataka kufuta mauzo haya? Bidhaa zote zitaondolewa.',
+ 'confirm_delete' => 'Una uhakika unataka kufuta mauzo uliyoyachagua?',
+ 'confirm_restore' => 'Una uhakika unataka kurejesha mauzo uliyoyachagua?',
+ 'credit' => 'Kadi ya Mkopo',
+ 'credit_deposit' => 'Amana ya Mkopo',
+ 'credit_filter' => 'Kadi ya Mkopo',
+ 'current_table' => '',
+ 'customer' => 'Mteja',
+ 'customer_address' => 'Anwani',
+ 'customer_discount' => 'Punguzo',
+ 'customer_email' => 'Barua Pepe',
+ 'customer_location' => 'Mahali',
+ 'customer_mailchimp_status' => 'Hali ya MailChimp',
+ 'customer_optional' => '(Inahitajika kwa Malipo ya Madeni)',
+ 'customer_required' => '(Inahitajika)',
+ 'customer_total' => 'Jumla',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Pointi Zinazopatikana',
+ 'daily_sales' => '',
+ 'date' => 'Tarehe ya Mauzo',
+ 'date_range' => 'Wigo wa Tarehe',
+ 'date_required' => 'Tafadhali ingiza tarehe sahihi.',
+ 'date_type' => 'Tarehe ni kiashiria kinachohitajika.',
+ 'debit' => 'Kadi ya Debit',
+ 'debit_filter' => '',
+ 'delete' => 'Ruhusu Kufuta',
+ 'delete_confirmation' => 'Una uhakika unataka kufuta mauzo haya? Hatua hii haiwezi kubatilishwa.',
+ 'delete_entire_sale' => 'Futa Mauzo Yote',
+ 'delete_successful' => 'Mauzo yamefutwa kwa mafanikio.',
+ 'delete_unsuccessful' => 'Kufuta mauzo kimeshindikana.',
+ 'description_abbrv' => 'Desc.',
+ 'discard' => 'Ondoa', // Tupa
+ 'discard_quote' => '',
+ 'discount' => 'Punguzo',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Punguzo',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'Deni',
+ 'due_filter' => '',
+ 'edit' => 'Hariri',
+ 'edit_item' => 'Hariri Bidhaa',
+ 'edit_sale' => 'Hariri Mauzo',
+ 'email_receipt' => 'Tuma Risiti kwa Barua Pepe',
+ 'employee' => 'Mfanyakazi',
+ 'entry' => 'Ingizo',
+ 'error_editing_item' => 'Hitilafu katika kuhariri bidhaa',
+ 'find_or_scan_item' => 'Tafuta au Changanua Bidhaa',
+ 'find_or_scan_item_or_receipt' => 'Tafuta au Changanua Bidhaa au Risiti',
+ 'giftcard' => 'Kadi ya Zawadi',
+ 'giftcard_balance' => 'Salio la Kadi ya Zawadi',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Namba ya Kadi ya Zawadi',
+ 'group_by_category' => 'Panga kwa Kategoria',
+ 'group_by_type' => 'Panga kwa Aina',
+ 'hsn' => 'HSN',
+ 'id' => 'Namba ya Mauzo',
+ 'include_prices' => 'Jumuisha Bei?',
+ 'invoice' => 'Ankara',
+ 'invoice_confirm' => 'Ankara hii itatumwa kwa',
+ 'invoice_enable' => 'Namba ya Ankara',
+ 'invoice_filter' => 'Ankara',
+ 'invoice_no_email' => 'Mteja huyu hana anwani halali ya barua pepe.',
+ 'invoice_number' => 'Namba ya Ankara',
+ 'invoice_number_duplicate' => 'Namba ya Ankara {0} lazima iwe ya kipekee.',
+ 'invoice_sent' => 'Ankara imetumwa kwa',
+ 'invoice_total' => 'Jumla ya Ankara',
+ 'invoice_type_custom_invoice' => 'Ankara Maalum (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Ankara ya Kodi Maalum (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Ankara (invoice.php)',
+ 'invoice_type_tax_invoice' => 'Ankara ya Kodi (tax_invoice.php)',
+ 'invoice_unsent' => 'Imeshindikana kutuma ankara kwa',
+ 'invoice_update' => 'Hesabu upya',
+ 'item_insufficient_of_stock' => 'Bidhaa haina hisa ya kutosha.',
+ 'item_name' => 'Jina la Bidhaa',
+ 'item_number' => 'Namba ya Bidhaa',
+ 'item_out_of_stock' => 'Bidhaa haina hisa.',
+ 'key_browser' => 'Vifupisho vya Msaada',
+ 'key_cancel' => 'Ghairi Nukuu/Ankara/Mauzo ya Sasa',
+ 'key_customer_search' => 'Tafuta Mteja',
+ 'key_finish_quote' => 'Kamilisha Nukuu/Ankara bila malipo',
+ 'key_finish_sale' => 'Ongeza Malipo na Kamilisha Ankara/Mauzo',
+ 'key_full' => 'Fungua kwa Skrini Nzima',
+ 'key_function' => 'Function',
+ 'key_help' => 'Vifupisho',
+ 'key_help_modal' => 'Fungua Dirisha la Vifupisho',
+ 'key_in' => 'Kuza',
+ 'key_item_search' => 'Tafuta Bidhaa',
+ 'key_out' => 'Punguza',
+ 'key_payment' => 'Ongeza Malipo',
+ 'key_print' => 'Chapisha Ukurasa wa Sasa',
+ 'key_restore' => 'Rejesha Mwonekano wa Awali/Zoom',
+ 'key_search' => 'Tafuta Jedwali la Ripoti',
+ 'key_suspend' => 'Sitisha Mauzo ya Sasa',
+ 'key_suspended' => 'Onyesha Mauzo Yaliyositishwa',
+ 'key_system' => 'Vifupisho vya Mfumo',
+ 'key_tendered' => 'Hariri Kiasi Kilicholipwa',
+ 'key_title' => 'Vifupisho vya Kibodi (Keyboard) vya Mauzo',
+ 'mc' => '',
+ 'mode' => 'Hali ya Usajili',
+ 'must_enter_numeric' => 'Kiasi Kilicholipwa lazima kiwe Namba.',
+ 'must_enter_numeric_giftcard' => 'Namba ya Kadi ya Zawadi lazima iwe Namba.',
+ 'must_enter_reference_code' => 'Nambari ya Kumbukumbu/Upatikanaji lazima iingizwe.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Mteja Mpya',
+ 'new_item' => 'Bidhaa Mpya',
+ 'no_description' => 'Hakuna maelezo',
+ 'no_filter' => 'Zote',
+ 'no_items_in_cart' => 'Hakuna bidhaa kwenye Kikapu cha Ununuzi.',
+ 'no_sales_to_display' => 'Hakuna mauzo ya kuonyesha.',
+ 'none_selected' => 'Hujachagua mauzo yoyote ya kufuta.',
+ 'nontaxed_ind' => ' ',
+ 'not_authorized' => 'Hatua hii haijaruhusiwa.',
+ 'one_or_multiple' => 'Mauzo',
+ 'payment' => 'Aina ya Malipo',
+ 'payment_amount' => 'Kiasi',
+ 'payment_not_cover_total' => 'Kiasi cha malipo lazima kiwe sawa au zaidi ya jumla kuu.',
+ 'payment_type' => 'Aina',
+ 'payments' => '',
+ 'payments_total' => 'Jumla ya Malipo',
+ 'price' => 'Bei',
+ 'print_after_sale' => 'Chapisha baada ya Mauzo',
+ 'quantity' => 'Kiasi',
+ 'quantity_less_than_reorder_level' => 'Onyo: Kiasi kilichotakiwa kiko chini ya kiwango cha kuagiza tena kwa bidhaa hiyo.',
+ 'quantity_less_than_zero' => 'Onyo: Kiasi kilichotakiwa hakitoshi. Unaweza kuendelea na mauzo, lakini hakiki hesabu yako.',
+ 'quantity_of_items' => 'Kiasi cha bidhaa {0}',
+ 'quote' => 'Nukuu (Quote)',
+ 'quote_number' => 'Nambari ya Nukuu',
+ 'quote_number_duplicate' => 'Nambari ya Nukuu lazima iwe ya kipekee.',
+ 'quote_sent' => 'Nukuu imetumwa kwa',
+ 'quote_unsent' => 'Imeshindikana kutuma nukuu kwa',
+ 'receipt' => 'Risiti ya Mauzo',
+ 'receipt_no_email' => 'Mteja huyu hana anwani halali ya barua pepe.',
+ 'receipt_number' => 'Namba ya Mauzo',
+ 'receipt_sent' => 'Risiti imetumwa kwa',
+ 'receipt_unsent' => 'Imeshindikana kutuma risiti kwa',
+ 'reference_code' => 'Nambari ya Kumbukumbu ya Malipo',
+ 'reference_code_invalid_characters' => 'Nambari ya kumbukumbu lazima iwe na herufi na nambari peke yake.',
+ 'reference_code_length_error' => 'Urefu wa nambari ya kumbukumbu si sahihi.',
+ 'refund' => 'Aina ya Marejesho',
+ 'register' => 'Usajili wa Mauzo',
+ 'remove_customer' => 'Ondoa Mteja',
+ 'remove_discount' => 'Ondoa Punguzo',
+ 'return' => 'Rudisha',
+ 'rewards' => 'Pointi za Zawadi',
+ 'rewards_balance' => 'Salio la Pointi za Zawadi',
+ 'rewards_package' => 'Zawadi',
+ 'rewards_remaining_balance' => 'Thamani ya pointi za zawadi zilizobaki ni ',
+ 'sale' => 'Mauzo',
+ 'sale_by_invoice' => 'Mauzo kwa Ankara',
+ 'sale_for_customer' => 'Mteja:',
+ 'sale_time' => 'Muda',
+ 'sales_tax' => 'Kodi ya Mauzo',
+ 'sales_total' => '',
+ 'select_customer' => 'Chagua Mteja',
+ 'selected_customer' => 'Mteja Uliyemchagua',
+ 'send_invoice' => 'Tuma Ankara',
+ 'send_quote' => 'Tuma Nukuu',
+ 'send_receipt' => 'Tuma Risiti',
+ 'send_work_order' => 'Tuma Agizo la Kazi',
+ 'serial' => 'Nambari ya Seriali',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Onyesha Ankara',
+ 'show_receipt' => 'Onyesha Risiti',
+ 'start_typing_customer_name' => 'Anza kuandika taarifa za mteja...',
+ 'start_typing_item_name' => 'Anza kuandika jina la bidhaa au changanua msimbo wa mstari (Scan Barcode)...',
+ 'stock' => 'Hisa',
+ 'stock_location' => 'Eneo la Hisa',
+ 'sub_total' => 'Jumla Ndogo',
+ 'successfully_deleted' => 'Umefanikiwa kufuta',
+ 'successfully_restored' => 'Umefanikiwa kurejesha',
+ 'successfully_suspended_sale' => 'Kusitisha mauzo kumewezekana.',
+ 'successfully_updated' => 'Kusasisha mauzo kumewezekana.',
+ 'suspend_sale' => 'Sitisha',
+ 'suspended_doc_id' => 'Nyaraka',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Yaliyositishwa',
+ 'table' => 'Jedwali',
+ 'takings' => 'Mauzo ya Kila Siku',
+ 'tax' => 'Kodi',
+ 'tax_id' => 'Kitambulisho cha Kodi',
+ 'tax_invoice' => 'Ankara ya Kodi',
+ 'tax_percent' => 'Kodi %',
+ 'taxed_ind' => 'K',
+ 'total' => 'Jumla',
+ 'total_tax_exclusive' => 'Kodi haijajumuishwa',
+ 'transaction_failed' => 'Muamala wa Mauzo umeshindikana.',
+ 'unable_to_add_item' => 'Imeshindikana kuongeza bidhaa kwenye Mauzo',
+ 'unsuccessfully_deleted' => 'Imeshindikana kufuta Mauzo.',
+ 'unsuccessfully_restored' => 'Imeshindikana kurejesha Mauzo.',
+ 'unsuccessfully_suspended_sale' => 'Imeshindikana kusitisha Mauzo.',
+ 'unsuccessfully_updated' => 'Kusasisha mauzo kimeshindikana.',
+ 'unsuspend' => 'Ondoa Kusitishwa',
+ 'unsuspend_and_delete' => 'Hatua',
+ 'update' => 'Sasisha',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'Agizo la Kazi (Work Order)',
+ 'work_order_number' => 'Nambari ya Agizo la Kazi',
+ 'work_order_number_duplicate' => 'Nambari ya Agizo la Kazi lazima iwe ya kipekee.',
+ 'work_order_sent' => 'Agizo la Kazi limetumwa kwa',
+ 'work_order_unsent' => 'Imeshindikana kutuma Agizo la Kazi kwa',
+];
diff --git a/app/Language/ta/Config.php b/app/Language/ta/Config.php
index b4ca09f93..84c33fd33 100644
--- a/app/Language/ta/Config.php
+++ b/app/Language/ta/Config.php
@@ -1,332 +1,335 @@
"Company Address",
- "address_required" => "Company address is a required field.",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "Allow Duplicate Barcodes",
- "apostrophe" => "apostrophe",
- "backup_button" => "Backup",
- "backup_database" => "Backup Database",
- "barcode" => "Barcode",
- "barcode_company" => "Company Name",
- "barcode_configuration" => "Barcode Configuration",
- "barcode_content" => "Barcode Content",
- "barcode_first_row" => "Row 1",
- "barcode_font" => "Font",
- "barcode_formats" => "Input Formats",
- "barcode_generate_if_empty" => "Generate if empty.",
- "barcode_height" => "Height (px)",
- "barcode_id" => "Item Id/Name",
- "barcode_info" => "Barcode Configuration Information",
- "barcode_layout" => "Barcode Layout",
- "barcode_name" => "Name",
- "barcode_number" => "Barcode",
- "barcode_number_in_row" => "Number in row",
- "barcode_page_cellspacing" => "Display page cellspacing.",
- "barcode_page_width" => "Display page width",
- "barcode_price" => "Price",
- "barcode_second_row" => "Row 2",
- "barcode_third_row" => "Row 3",
- "barcode_tooltip" => "எச்சரிக்கை: இந்த அம்சம் நகல் உருப்படிகளை இறக்குமதி செய்ய அல்லது உருவாக்க காரணமாக இருக்கலாம். நீங்கள் நகல் பட்டைக்குறியீடுகளை விரும்பவில்லை என்றால் பயன்படுத்த வேண்டாம்.",
- "barcode_type" => "Barcode Type",
- "barcode_width" => "Width (px)",
- "bottom" => "Bottom",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Cash Decimals",
- "cash_decimals_tooltip" => "If Cash Decimals and Currency Decimals are the same then no cash triggered rounding will take place, unless Cash Rounding is set to Half Five.",
- "cash_rounding" => "Cash Rounding",
- "category_dropdown" => "Show Category as a dropdown",
- "center" => "Center",
- "change_apperance_tooltip" => "",
- "comma" => "comma",
- "company" => "Company Name",
- "company_avatar" => "",
- "company_change_image" => "Change Image",
- "company_logo" => "Company Logo",
- "company_remove_image" => "Remove Image",
- "company_required" => "Company name is a required field",
- "company_select_image" => "Select Image",
- "company_website_url" => "Company website is not a valid URL (http://...).",
- "country_codes" => "Country Codes",
- "country_codes_tooltip" => "Comma separated list of country codes for nominatim address lookup.",
- "currency_code" => "Currency Code",
- "currency_decimals" => "Currency Decimals",
- "currency_symbol" => "Currency Symbol",
- "current_employee_only" => "",
- "customer_reward" => "Reward",
- "customer_reward_duplicate" => "Reward must be unique.",
- "customer_reward_enable" => "Enable Customer Rewards",
- "customer_reward_invalid_chars" => "Reward can not contain '_'",
- "customer_reward_required" => "Reward is a required field",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "Date and Time Filter",
- "datetimeformat" => "Date and Time Format",
- "decimal_point" => "Decimal Point",
- "default_barcode_font_size_number" => "Default Barcode Font Size must be a number.",
- "default_barcode_font_size_required" => "Default Barcode Font Size is a required field.",
- "default_barcode_height_number" => "Default Barcode Height must be a number.",
- "default_barcode_height_required" => "Default Barcode Height is a required field.",
- "default_barcode_num_in_row_number" => "Default Barcode Number in Row must be a number.",
- "default_barcode_num_in_row_required" => "Default Barcode Number in Row is a required field.",
- "default_barcode_page_cellspacing_number" => "Default Barcode Page Cellspacing must be a number.",
- "default_barcode_page_cellspacing_required" => "Default Barcode Page Cellspacing is a required field.",
- "default_barcode_page_width_number" => "Default Barcode Page Width must be a number.",
- "default_barcode_page_width_required" => "Default Barcode Page Width is a required field.",
- "default_barcode_width_number" => "Default Barcode Width must be a number.",
- "default_barcode_width_required" => "Default Barcode Width is a required field.",
- "default_item_columns" => "Default Visible Item Columns",
- "default_origin_tax_code" => "Default Origin Tax Code",
- "default_receivings_discount" => "Default Receivings Discount",
- "default_receivings_discount_number" => "Default Receivings Discount must be a number.",
- "default_receivings_discount_required" => "Default Receivings Discount is a required field.",
- "default_sales_discount" => "Default Sales Discount",
- "default_sales_discount_number" => "Default Sales Discount must be a number.",
- "default_sales_discount_required" => "Default Sales Discount is a required field.",
- "default_tax_category" => "Default Tax Category",
- "default_tax_code" => "Default Tax Code",
- "default_tax_jurisdiction" => "Default Tax Jurisdiction",
- "default_tax_name_number" => "Default Tax Name must be a string.",
- "default_tax_name_required" => "Default Tax Name is a required field.",
- "default_tax_rate" => "Default Tax Rate %",
- "default_tax_rate_1" => "Tax 1 Rate",
- "default_tax_rate_2" => "Tax 2 Rate",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Default Tax Rate must be a number.",
- "default_tax_rate_required" => "Default Tax Rate is a required field.",
- "derive_sale_quantity" => "Allow Derived Sale Quantity",
- "derive_sale_quantity_tooltip" => "If checked then a new item type will provided for items ordered by extended amount",
- "dinner_table" => "Table",
- "dinner_table_duplicate" => "Table must be unique.",
- "dinner_table_enable" => "Enable Dinner Tables",
- "dinner_table_invalid_chars" => "Table Name can not contain '_'.",
- "dinner_table_required" => "Table is a required field.",
- "dot" => "dot",
- "email" => "Email",
- "email_configuration" => "Email Configuration",
- "email_mailpath" => "Path to Sendmail",
- "email_protocol" => "Protocol",
- "email_receipt_check_behaviour" => "Email Receipt checkbox",
- "email_receipt_check_behaviour_always" => "Always checked",
- "email_receipt_check_behaviour_last" => "Remember last selection",
- "email_receipt_check_behaviour_never" => "Always unchecked",
- "email_smtp_crypto" => "SMTP Encryption",
- "email_smtp_host" => "SMTP Server",
- "email_smtp_pass" => "SMTP Password",
- "email_smtp_port" => "SMTP Port",
- "email_smtp_timeout" => "SMTP Timeout (s)",
- "email_smtp_user" => "SMTP Username",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Enforce privacy",
- "enforce_privacy_tooltip" => "Protect Customers privacy enforcing data scrambling in case of their data being deleted",
- "fax" => "Fax",
- "file_perm" => "There are problems with file permissions please fix and reload this page.",
- "financial_year" => "Fiscal Year Start",
- "financial_year_apr" => "1st of April",
- "financial_year_aug" => "1st of August",
- "financial_year_dec" => "1st of December",
- "financial_year_feb" => "1st of February",
- "financial_year_jan" => "1st of January",
- "financial_year_jul" => "1st of July",
- "financial_year_jun" => "1st of June",
- "financial_year_mar" => "1st of March",
- "financial_year_may" => "1st of May",
- "financial_year_nov" => "1st of November",
- "financial_year_oct" => "1st of October",
- "financial_year_sep" => "1st of September",
- "floating_labels" => "",
- "gcaptcha_enable" => "Login Page reCAPTCHA",
- "gcaptcha_secret_key" => "reCAPTCHA Secret Key",
- "gcaptcha_secret_key_required" => "reCAPTCHA Secret Key is a required field",
- "gcaptcha_site_key" => "reCAPTCHA Site Key",
- "gcaptcha_site_key_required" => "reCAPTCHA Site Key is a required field",
- "gcaptcha_tooltip" => "Protect the Login page with Google reCAPTCHA, click the icon for an API key pair.",
- "general" => "General",
- "general_configuration" => "General Configuration",
- "giftcard_number" => "Gift Card Number",
- "giftcard_random" => "Generate Random",
- "giftcard_series" => "Generate in Series",
- "image_allowed_file_types" => "Allowed file types",
- "image_max_height_tooltip" => "Maximum allowed height of image uploads in pixels (px).",
- "image_max_size_tooltip" => "Maximum allowed file size of image uploads in kilobytes (kb).",
- "image_max_width_tooltip" => "Maximum allowed width of image uploads in pixels (px).",
- "image_restrictions" => "Image Upload Restrictions",
- "include_hsn" => "Include Support for HSN Codes",
- "info" => "Information",
- "info_configuration" => "Store Information",
- "input_groups" => "",
- "integrations" => "Integrations",
- "integrations_configuration" => "Third Party Integrations",
- "invoice" => "Invoice",
- "invoice_configuration" => "Invoice Print Settings",
- "invoice_default_comments" => "Default Invoice Comments",
- "invoice_email_message" => "Invoice Email Template",
- "invoice_enable" => "Enable Invoicing",
- "invoice_printer" => "Invoice Printer",
- "invoice_type" => "Invoice Type",
- "is_readable" => "is readable, but the permissions are incorrectly set. Please set it to 640 or 660 and refresh.",
- "is_writable" => "is writable, but the permissions are incorrectly set. Please set it to 750 and refresh.",
- "item_markup" => "",
- "jsprintsetup_required" => "Warning: This functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?",
- "language" => "Language",
- "last_used_invoice_number" => "Last used Invoice Number",
- "last_used_quote_number" => "Last used Quote Number",
- "last_used_work_order_number" => "Last used W/O Number",
- "left" => "Left",
- "license" => "License",
- "license_configuration" => "License Statement",
- "line_sequence" => "Line Sequence",
- "lines_per_page" => "Lines per Page",
- "lines_per_page_number" => "Lines per Page must be a number.",
- "lines_per_page_required" => "Lines per Page is a required field.",
- "locale" => "Localization",
- "locale_configuration" => "Localization Configuration",
- "locale_info" => "Localization Configuration Information",
- "location" => "Stock",
- "location_configuration" => "Stock Locations",
- "location_info" => "Location Configuration Information",
- "login_form" => "",
- "logout" => "Do you want to make a backup before logging out? Click [OK] to backup or [Cancel] to logout.",
- "mailchimp" => "மெயில்சிம்ப்",
- "mailchimp_api_key" => "மெயில்சிம்ப் API விசை",
- "mailchimp_configuration" => "மெயில்சிம்ப் அமைப்பு",
- "mailchimp_key_successfully" => "API Key is valid.",
- "mailchimp_key_unsuccessfully" => "API Key is invalid.",
- "mailchimp_lists" => "மெயில்சிம்ப் பட்டியல்(கள்)",
- "mailchimp_tooltip" => "Click the icon for an API Key.",
- "message" => "Message",
- "message_configuration" => "Message Configuration",
- "msg_msg" => "Saved Text Message",
- "msg_msg_placeholder" => "If you wish to use a SMS template save your message here, otherwise leave the box blank.",
- "msg_pwd" => "SMS-API Password",
- "msg_pwd_required" => "SMS-API Password is a required field",
- "msg_src" => "SMS-API Sender ID",
- "msg_src_required" => "SMS-API Sender ID is a required field",
- "msg_uid" => "SMS-API Username",
- "msg_uid_required" => "SMS-API Username is a required field",
- "multi_pack_enabled" => "Multiple Packages per Item",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "none",
- "notify_alignment" => "Notification Popup Position",
- "number_format" => "Number Format",
- "number_locale" => "Localization",
- "number_locale_invalid" => "The entered locale is invalid. Check the link in the tooltip to find a valid locale.",
- "number_locale_required" => "Number Locale is a required field.",
- "number_locale_tooltip" => "Find a suitable locale through this link.",
- "os_timezone" => "OSPOS Timezone:",
- "ospos_info" => "OSPOS Installation Info",
- "payment_options_order" => "Payment Options Order",
- "perm_risk" => "Incorrect permissions leaves this software at risk.",
- "phone" => "Company Phone",
- "phone_required" => "Company Phone is a required field.",
- "print_bottom_margin" => "Margin Bottom",
- "print_bottom_margin_number" => "Margin Bottom must be a number.",
- "print_bottom_margin_required" => "Margin Bottom is a required field.",
- "print_delay_autoreturn" => "Autoreturn to Sale delay",
- "print_delay_autoreturn_number" => "Autoreturn to Sale delay is a required field.",
- "print_delay_autoreturn_required" => "Autoreturn to Sale delay must be a number.",
- "print_footer" => "Print Browser Footer",
- "print_header" => "Print Browser Header",
- "print_left_margin" => "Margin Left",
- "print_left_margin_number" => "Margin Left must be a number.",
- "print_left_margin_required" => "Margin Left is a required field.",
- "print_receipt_check_behaviour" => "Print Receipt checkbox",
- "print_receipt_check_behaviour_always" => "Always checked",
- "print_receipt_check_behaviour_last" => "Remember last selection",
- "print_receipt_check_behaviour_never" => "Always unchecked",
- "print_right_margin" => "Margin Right",
- "print_right_margin_number" => "Margin Right must be a number.",
- "print_right_margin_required" => "Margin Right is a required field.",
- "print_silently" => "Show Print Dialog",
- "print_top_margin" => "Margin Top",
- "print_top_margin_number" => "Margin Top must be a number.",
- "print_top_margin_required" => "Margin Top is a required field.",
- "quantity_decimals" => "Quantity Decimals",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Default Quote Comments",
- "receipt" => "Receipt",
- "receipt_category" => "",
- "receipt_configuration" => "Receipt Print Settings",
- "receipt_default" => "Default",
- "receipt_font_size" => "Font Size",
- "receipt_font_size_number" => "Font Size must be a number.",
- "receipt_font_size_required" => "Font Size is a required field.",
- "receipt_info" => "Receipt Configuration Information",
- "receipt_printer" => "Ticket Printer",
- "receipt_short" => "Short",
- "receipt_show_company_name" => "Show Company Name",
- "receipt_show_description" => "Show Description",
- "receipt_show_serialnumber" => "Show Serial Number",
- "receipt_show_tax_ind" => "Show Tax Indicator",
- "receipt_show_taxes" => "Show Taxes",
- "receipt_show_total_discount" => "Show Total Discount",
- "receipt_template" => "Receipt Template",
- "receiving_calculate_average_price" => "Calc avg. Price (Receiving)",
- "recv_invoice_format" => "Receivings Invoice Format",
- "register_mode_default" => "Default Register Mode",
- "report_an_issue" => "Report an issue",
- "return_policy_required" => "Return policy is a required field.",
- "reward" => "Reward",
- "reward_configuration" => "Reward Configuration",
- "right" => "Right",
- "sales_invoice_format" => "Sales Invoice Format",
- "sales_quote_format" => "Sales Quote Format",
- "mailpath_invalid" => "",
- "saved_successfully" => "Configuration save successful.",
- "saved_unsuccessfully" => "Configuration save failed.",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "Please use the below info for issue reporting.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Show office icon",
- "statistics" => "Send Statistics",
- "statistics_tooltip" => "Send statistics for development and feature improvement purposes.",
- "stock_location" => "Stock location",
- "stock_location_duplicate" => "Stock Location must be unique.",
- "stock_location_invalid_chars" => "Stock Location can not contain '_'.",
- "stock_location_required" => "Stock location is a required field.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Column 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Search Suggestions Layout",
- "suggestions_second_column" => "Column 2",
- "suggestions_third_column" => "Column 3",
- "system_conf" => "Setup & Conf",
- "system_info" => "System Info",
- "table" => "Table",
- "table_configuration" => "Table Configuration",
- "takings_printer" => "Receipt Printer",
- "tax" => "Tax",
- "tax_category" => "Tax Category",
- "tax_category_duplicate" => "The entered tax category already exists.",
- "tax_category_invalid_chars" => "The entered tax category is invalid.",
- "tax_category_required" => "The tax category is required.",
- "tax_category_used" => "Tax category cannot be deleted because it is being used.",
- "tax_configuration" => "Tax Configuration",
- "tax_decimals" => "Tax Decimals",
- "tax_id" => "Tax Id",
- "tax_included" => "Tax Included",
- "theme" => "Theme",
- "theme_preview" => "",
- "thousands_separator" => "Thousands Separator",
- "timezone" => "Timezone",
- "timezone_error" => "OSPOS Timezone is Different from your Local Timezone.",
- "top" => "Top",
- "use_destination_based_tax" => "Use Destination Based Tax",
- "user_timezone" => "Local Timezone:",
- "website" => "Website",
- "wholesale_markup" => "",
- "work_order_enable" => "Work Order Support",
- "work_order_format" => "Work Order Format",
+ 'address' => 'Company Address',
+ 'address_required' => 'Company address is a required field.',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => 'Allow Duplicate Barcodes',
+ 'apostrophe' => 'apostrophe',
+ 'backup_button' => 'Backup',
+ 'backup_database' => 'Backup Database',
+ 'barcode' => 'Barcode',
+ 'barcode_company' => 'Company Name',
+ 'barcode_configuration' => 'Barcode Configuration',
+ 'barcode_content' => 'Barcode Content',
+ 'barcode_first_row' => 'Row 1',
+ 'barcode_font' => 'Font',
+ 'barcode_formats' => 'Input Formats',
+ 'barcode_generate_if_empty' => 'Generate if empty.',
+ 'barcode_height' => 'Height (px)',
+ 'barcode_id' => 'Item Id/Name',
+ 'barcode_info' => 'Barcode Configuration Information',
+ 'barcode_layout' => 'Barcode Layout',
+ 'barcode_name' => 'Name',
+ 'barcode_number' => 'Barcode',
+ 'barcode_number_in_row' => 'Number in row',
+ 'barcode_page_cellspacing' => 'Display page cellspacing.',
+ 'barcode_page_width' => 'Display page width',
+ 'barcode_price' => 'Price',
+ 'barcode_second_row' => 'Row 2',
+ 'barcode_third_row' => 'Row 3',
+ 'barcode_tooltip' => 'எச்சரிக்கை: இந்த அம்சம் நகல் உருப்படிகளை இறக்குமதி செய்ய அல்லது உருவாக்க காரணமாக இருக்கலாம். நீங்கள் நகல் பட்டைக்குறியீடுகளை விரும்பவில்லை என்றால் பயன்படுத்த வேண்டாம்.',
+ 'barcode_type' => 'Barcode Type',
+ 'barcode_width' => 'Width (px)',
+ 'bottom' => 'Bottom',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Cash Decimals',
+ 'cash_decimals_tooltip' => 'If Cash Decimals and Currency Decimals are the same then no cash triggered rounding will take place, unless Cash Rounding is set to Half Five.',
+ 'cash_rounding' => 'Cash Rounding',
+ 'category_dropdown' => 'Show Category as a dropdown',
+ 'center' => 'Center',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'comma',
+ 'company' => 'Company Name',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Change Image',
+ 'company_logo' => 'Company Logo',
+ 'company_remove_image' => 'Remove Image',
+ 'company_required' => 'Company name is a required field',
+ 'company_select_image' => 'Select Image',
+ 'company_website_url' => 'Company website is not a valid URL (http://...).',
+ 'country_codes' => 'Country Codes',
+ 'country_codes_tooltip' => 'Comma separated list of country codes for nominatim address lookup.',
+ 'currency_code' => 'Currency Code',
+ 'currency_decimals' => 'Currency Decimals',
+ 'currency_symbol' => 'Currency Symbol',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Reward',
+ 'customer_reward_duplicate' => 'Reward must be unique.',
+ 'customer_reward_enable' => 'Enable Customer Rewards',
+ 'customer_reward_invalid_chars' => "Reward can not contain '_'",
+ 'customer_reward_required' => 'Reward is a required field',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => 'Date and Time Filter',
+ 'datetimeformat' => 'Date and Time Format',
+ 'decimal_point' => 'Decimal Point',
+ 'default_barcode_font_size_number' => 'Default Barcode Font Size must be a number.',
+ 'default_barcode_font_size_required' => 'Default Barcode Font Size is a required field.',
+ 'default_barcode_height_number' => 'Default Barcode Height must be a number.',
+ 'default_barcode_height_required' => 'Default Barcode Height is a required field.',
+ 'default_barcode_num_in_row_number' => 'Default Barcode Number in Row must be a number.',
+ 'default_barcode_num_in_row_required' => 'Default Barcode Number in Row is a required field.',
+ 'default_barcode_page_cellspacing_number' => 'Default Barcode Page Cellspacing must be a number.',
+ 'default_barcode_page_cellspacing_required' => 'Default Barcode Page Cellspacing is a required field.',
+ 'default_barcode_page_width_number' => 'Default Barcode Page Width must be a number.',
+ 'default_barcode_page_width_required' => 'Default Barcode Page Width is a required field.',
+ 'default_barcode_width_number' => 'Default Barcode Width must be a number.',
+ 'default_barcode_width_required' => 'Default Barcode Width is a required field.',
+ 'default_item_columns' => 'Default Visible Item Columns',
+ 'default_origin_tax_code' => 'Default Origin Tax Code',
+ 'default_receivings_discount' => 'Default Receivings Discount',
+ 'default_receivings_discount_number' => 'Default Receivings Discount must be a number.',
+ 'default_receivings_discount_required' => 'Default Receivings Discount is a required field.',
+ 'default_sales_discount' => 'Default Sales Discount',
+ 'default_sales_discount_number' => 'Default Sales Discount must be a number.',
+ 'default_sales_discount_required' => 'Default Sales Discount is a required field.',
+ 'default_tax_category' => 'Default Tax Category',
+ 'default_tax_code' => 'Default Tax Code',
+ 'default_tax_jurisdiction' => 'Default Tax Jurisdiction',
+ 'default_tax_name_number' => 'Default Tax Name must be a string.',
+ 'default_tax_name_required' => 'Default Tax Name is a required field.',
+ 'default_tax_rate' => 'Default Tax Rate %',
+ 'default_tax_rate_1' => 'Tax 1 Rate',
+ 'default_tax_rate_2' => 'Tax 2 Rate',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Default Tax Rate must be a number.',
+ 'default_tax_rate_required' => 'Default Tax Rate is a required field.',
+ 'derive_sale_quantity' => 'Allow Derived Sale Quantity',
+ 'derive_sale_quantity_tooltip' => 'If checked then a new item type will provided for items ordered by extended amount',
+ 'dinner_table' => 'Table',
+ 'dinner_table_duplicate' => 'Table must be unique.',
+ 'dinner_table_enable' => 'Enable Dinner Tables',
+ 'dinner_table_invalid_chars' => "Table Name can not contain '_'.",
+ 'dinner_table_required' => 'Table is a required field.',
+ 'dot' => 'dot',
+ 'email' => 'Email',
+ 'email_configuration' => 'Email Configuration',
+ 'email_mailpath' => 'Path to Sendmail',
+ 'email_protocol' => 'Protocol',
+ 'email_receipt_check_behaviour' => 'Email Receipt checkbox',
+ 'email_receipt_check_behaviour_always' => 'Always checked',
+ 'email_receipt_check_behaviour_last' => 'Remember last selection',
+ 'email_receipt_check_behaviour_never' => 'Always unchecked',
+ 'email_smtp_crypto' => 'SMTP Encryption',
+ 'email_smtp_host' => 'SMTP Server',
+ 'email_smtp_pass' => 'SMTP Password',
+ 'email_smtp_port' => 'SMTP Port',
+ 'email_smtp_timeout' => 'SMTP Timeout (s)',
+ 'email_smtp_user' => 'SMTP Username',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Enforce privacy',
+ 'enforce_privacy_tooltip' => 'Protect Customers privacy enforcing data scrambling in case of their data being deleted',
+ 'fax' => 'Fax',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => 'Fiscal Year Start',
+ 'financial_year_apr' => '1st of April',
+ 'financial_year_aug' => '1st of August',
+ 'financial_year_dec' => '1st of December',
+ 'financial_year_feb' => '1st of February',
+ 'financial_year_jan' => '1st of January',
+ 'financial_year_jul' => '1st of July',
+ 'financial_year_jun' => '1st of June',
+ 'financial_year_mar' => '1st of March',
+ 'financial_year_may' => '1st of May',
+ 'financial_year_nov' => '1st of November',
+ 'financial_year_oct' => '1st of October',
+ 'financial_year_sep' => '1st of September',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => 'Login Page reCAPTCHA',
+ 'gcaptcha_secret_key' => 'reCAPTCHA Secret Key',
+ 'gcaptcha_secret_key_required' => 'reCAPTCHA Secret Key is a required field',
+ 'gcaptcha_site_key' => 'reCAPTCHA Site Key',
+ 'gcaptcha_site_key_required' => 'reCAPTCHA Site Key is a required field',
+ 'gcaptcha_tooltip' => 'Protect the Login page with Google reCAPTCHA, click the icon for an API key pair.',
+ 'general' => 'General',
+ 'general_configuration' => 'General Configuration',
+ 'giftcard_number' => 'Gift Card Number',
+ 'giftcard_random' => 'Generate Random',
+ 'giftcard_series' => 'Generate in Series',
+ 'image_allowed_file_types' => 'Allowed file types',
+ 'image_max_height_tooltip' => 'Maximum allowed height of image uploads in pixels (px).',
+ 'image_max_size_tooltip' => 'Maximum allowed file size of image uploads in kilobytes (kb).',
+ 'image_max_width_tooltip' => 'Maximum allowed width of image uploads in pixels (px).',
+ 'image_restrictions' => 'Image Upload Restrictions',
+ 'include_hsn' => 'Include Support for HSN Codes',
+ 'info' => 'Information',
+ 'info_configuration' => 'Store Information',
+ 'input_groups' => '',
+ 'integrations' => 'Integrations',
+ 'integrations_configuration' => 'Third Party Integrations',
+ 'invoice' => 'Invoice',
+ 'invoice_configuration' => 'Invoice Print Settings',
+ 'invoice_default_comments' => 'Default Invoice Comments',
+ 'invoice_email_message' => 'Invoice Email Template',
+ 'invoice_enable' => 'Enable Invoicing',
+ 'invoice_printer' => 'Invoice Printer',
+ 'invoice_type' => 'Invoice Type',
+ 'is_readable' => 'is readable, but the permissions are incorrectly set. Please set it to 640 or 660 and refresh.',
+ 'is_writable' => 'is writable, but the permissions are incorrectly set. Please set it to 750 and refresh.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Warning: This functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?',
+ 'language' => 'Language',
+ 'last_used_invoice_number' => 'Last used Invoice Number',
+ 'last_used_quote_number' => 'Last used Quote Number',
+ 'last_used_work_order_number' => 'Last used W/O Number',
+ 'left' => 'Left',
+ 'license' => 'License',
+ 'license_configuration' => 'License Statement',
+ 'line_sequence' => 'Line Sequence',
+ 'lines_per_page' => 'Lines per Page',
+ 'lines_per_page_number' => 'Lines per Page must be a number.',
+ 'lines_per_page_required' => 'Lines per Page is a required field.',
+ 'locale' => 'Localization',
+ 'locale_configuration' => 'Localization Configuration',
+ 'locale_info' => 'Localization Configuration Information',
+ 'location' => 'Stock',
+ 'location_configuration' => 'Stock Locations',
+ 'location_info' => 'Location Configuration Information',
+ 'login_form' => '',
+ 'logout' => 'Do you want to make a backup before logging out? Click [OK] to backup or [Cancel] to logout.',
+ 'mailchimp' => 'மெயில்சிம்ப்',
+ 'mailchimp_api_key' => 'மெயில்சிம்ப் API விசை',
+ 'mailchimp_configuration' => 'மெயில்சிம்ப் அமைப்பு',
+ 'mailchimp_key_successfully' => 'API Key is valid.',
+ 'mailchimp_key_unsuccessfully' => 'API Key is invalid.',
+ 'mailchimp_lists' => 'மெயில்சிம்ப் பட்டியல்(கள்)',
+ 'mailchimp_tooltip' => 'Click the icon for an API Key.',
+ 'message' => 'Message',
+ 'message_configuration' => 'Message Configuration',
+ 'msg_msg' => 'Saved Text Message',
+ 'msg_msg_placeholder' => 'If you wish to use a SMS template save your message here, otherwise leave the box blank.',
+ 'msg_pwd' => 'SMS-API Password',
+ 'msg_pwd_required' => 'SMS-API Password is a required field',
+ 'msg_src' => 'SMS-API Sender ID',
+ 'msg_src_required' => 'SMS-API Sender ID is a required field',
+ 'msg_uid' => 'SMS-API Username',
+ 'msg_uid_required' => 'SMS-API Username is a required field',
+ 'multi_pack_enabled' => 'Multiple Packages per Item',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => 'none',
+ 'notify_alignment' => 'Notification Popup Position',
+ 'number_format' => 'Number Format',
+ 'number_locale' => 'Localization',
+ 'number_locale_invalid' => 'The entered locale is invalid. Check the link in the tooltip to find a valid locale.',
+ 'number_locale_required' => 'Number Locale is a required field.',
+ 'number_locale_tooltip' => 'Find a suitable locale through this link.',
+ 'os_timezone' => 'OSPOS Timezone:',
+ 'ospos_info' => 'OSPOS Installation Info',
+ 'payment_options_order' => 'Payment Options Order',
+ 'payment_reference_code_length_limits' => 'கட்டண குறிப்பு குறியீடு
நீள வரம்புகள்',
+ 'payment_reference_code_length_max_label' => 'அதிகபட்சம்',
+ 'payment_reference_code_length_min_label' => 'குறைந்தபட்சம்',
+ 'perm_risk' => 'Incorrect permissions leaves this software at risk.',
+ 'phone' => 'Company Phone',
+ 'phone_required' => 'Company Phone is a required field.',
+ 'print_bottom_margin' => 'Margin Bottom',
+ 'print_bottom_margin_number' => 'Margin Bottom must be a number.',
+ 'print_bottom_margin_required' => 'Margin Bottom is a required field.',
+ 'print_delay_autoreturn' => 'Autoreturn to Sale delay',
+ 'print_delay_autoreturn_number' => 'Autoreturn to Sale delay is a required field.',
+ 'print_delay_autoreturn_required' => 'Autoreturn to Sale delay must be a number.',
+ 'print_footer' => 'Print Browser Footer',
+ 'print_header' => 'Print Browser Header',
+ 'print_left_margin' => 'Margin Left',
+ 'print_left_margin_number' => 'Margin Left must be a number.',
+ 'print_left_margin_required' => 'Margin Left is a required field.',
+ 'print_receipt_check_behaviour' => 'Print Receipt checkbox',
+ 'print_receipt_check_behaviour_always' => 'Always checked',
+ 'print_receipt_check_behaviour_last' => 'Remember last selection',
+ 'print_receipt_check_behaviour_never' => 'Always unchecked',
+ 'print_right_margin' => 'Margin Right',
+ 'print_right_margin_number' => 'Margin Right must be a number.',
+ 'print_right_margin_required' => 'Margin Right is a required field.',
+ 'print_silently' => 'Show Print Dialog',
+ 'print_top_margin' => 'Margin Top',
+ 'print_top_margin_number' => 'Margin Top must be a number.',
+ 'print_top_margin_required' => 'Margin Top is a required field.',
+ 'quantity_decimals' => 'Quantity Decimals',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Default Quote Comments',
+ 'receipt' => 'Receipt',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Receipt Print Settings',
+ 'receipt_default' => 'Default',
+ 'receipt_font_size' => 'Font Size',
+ 'receipt_font_size_number' => 'Font Size must be a number.',
+ 'receipt_font_size_required' => 'Font Size is a required field.',
+ 'receipt_info' => 'Receipt Configuration Information',
+ 'receipt_printer' => 'Ticket Printer',
+ 'receipt_short' => 'Short',
+ 'receipt_show_company_name' => 'Show Company Name',
+ 'receipt_show_description' => 'Show Description',
+ 'receipt_show_serialnumber' => 'Show Serial Number',
+ 'receipt_show_tax_ind' => 'Show Tax Indicator',
+ 'receipt_show_taxes' => 'Show Taxes',
+ 'receipt_show_total_discount' => 'Show Total Discount',
+ 'receipt_template' => 'Receipt Template',
+ 'receiving_calculate_average_price' => 'Calc avg. Price (Receiving)',
+ 'recv_invoice_format' => 'Receivings Invoice Format',
+ 'register_mode_default' => 'Default Register Mode',
+ 'report_an_issue' => 'Report an issue',
+ 'return_policy_required' => 'Return policy is a required field.',
+ 'reward' => 'Reward',
+ 'reward_configuration' => 'Reward Configuration',
+ 'right' => 'Right',
+ 'sales_invoice_format' => 'Sales Invoice Format',
+ 'sales_quote_format' => 'Sales Quote Format',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => 'Configuration save successful.',
+ 'saved_unsuccessfully' => 'Configuration save failed.',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Please use the below info for issue reporting.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Show office icon',
+ 'statistics' => 'Send Statistics',
+ 'statistics_tooltip' => 'Send statistics for development and feature improvement purposes.',
+ 'stock_location' => 'Stock location',
+ 'stock_location_duplicate' => 'Stock Location must be unique.',
+ 'stock_location_invalid_chars' => "Stock Location can not contain '_'.",
+ 'stock_location_required' => 'Stock location is a required field.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Column 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Search Suggestions Layout',
+ 'suggestions_second_column' => 'Column 2',
+ 'suggestions_third_column' => 'Column 3',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => 'Table',
+ 'table_configuration' => 'Table Configuration',
+ 'takings_printer' => 'Receipt Printer',
+ 'tax' => 'Tax',
+ 'tax_category' => 'Tax Category',
+ 'tax_category_duplicate' => 'The entered tax category already exists.',
+ 'tax_category_invalid_chars' => 'The entered tax category is invalid.',
+ 'tax_category_required' => 'The tax category is required.',
+ 'tax_category_used' => 'Tax category cannot be deleted because it is being used.',
+ 'tax_configuration' => 'Tax Configuration',
+ 'tax_decimals' => 'Tax Decimals',
+ 'tax_id' => 'Tax Id',
+ 'tax_included' => 'Tax Included',
+ 'theme' => 'Theme',
+ 'theme_preview' => '',
+ 'thousands_separator' => 'Thousands Separator',
+ 'timezone' => 'Timezone',
+ 'timezone_error' => 'OSPOS Timezone is Different from your Local Timezone.',
+ 'top' => 'Top',
+ 'use_destination_based_tax' => 'Use Destination Based Tax',
+ 'user_timezone' => 'Local Timezone:',
+ 'website' => 'Website',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Work Order Support',
+ 'work_order_format' => 'Work Order Format',
];
diff --git a/app/Language/ta/Login.php b/app/Language/ta/Login.php
index 02a07a776..b747bc221 100644
--- a/app/Language/ta/Login.php
+++ b/app/Language/ta/Login.php
@@ -1,25 +1,30 @@
"ரோபோ ஸ்கிரிப்ட்கள் அல்ல.",
- "go" => "செல்",
- "invalid_gcaptcha" => "நீங்கள் தானியங்கி அல்ல என்பதை உறுதி செய்யவும்.",
- "invalid_installation" => "நிறுவியத்தில் தவறு , php.ini கோப்பை சரி பார்க்கவும் .",
- "invalid_username_and_password" => "பயனர்பெயர் அல்லது கடவுச்சொல் தவறு.",
- "login" => "உள்நுழைய",
- "logout" => "விடுபதிகை",
- "migration_needed" => "{0} க்கு தரவுத்தள இடம்பெயர்வு உள்நுழைந்த பிறகு தொடங்கும்.",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "கடவுச்சொல்",
- "required_username" => "",
- "username" => "பயனர்பெயர்",
- "welcome" => "{0} க்கு வருக!",
+ "gcaptcha" => "ரோபோ ஸ்கிரிப்ட்கள் அல்ல.",
+ "go" => "செல்",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "நீங்கள் தானியங்கி அல்ல என்பதை உறுதி செய்யவும்.",
+ "invalid_installation" => "நிறுவியத்தில் தவறு , php.ini கோப்பை சரி பார்க்கவும் .",
+ "invalid_username_and_password" => "பயனர்பெயர் அல்லது கடவுச்சொல் தவறு.",
+ "login" => "உள்நுழைய",
+ "logout" => "விடுபதிகை",
+ "migrating_database" => "தரவுத்தளம் இடம்பெயர்கிறது",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "தரவுத்தளம் வெற்றிகரமாக இடம்பெயர்ந்தது!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "{0} க்கு தரவுத்தள இடம்பெயர்வு உள்நுழைந்த பிறகு தொடங்கும்.",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "கடவுச்சொல்",
+ "required_username" => "",
+ "username" => "பயனர்பெயர்",
+ "welcome" => "{0} க்கு வருக!"
];
diff --git a/app/Language/ta/Sales.php b/app/Language/ta/Sales.php
index 4019e1012..1977d8860 100644
--- a/app/Language/ta/Sales.php
+++ b/app/Language/ta/Sales.php
@@ -1,232 +1,235 @@
"இருப்பு புள்ளிகள்",
- "rewards_package" => "வெகுமதிகள்",
- "rewards_remaining_balance" => "வெகுமதி புள்ளிகள் மீதமுள்ள மதிப்பு ",
- "account_number" => "கணக்கு #",
- "add_payment" => "கட்டணத்தைச் சேர்க்கவும்",
- "amount_due" => "செலுத்த வேண்டிய தொகை",
- "amount_tendered" => "கொடுத்த தொகை",
- "authorized_signature" => "அங்கீகரிக்கப்பட்ட கையெழுத்து",
- "cancel_sale" => "ரத்துசெய்",
- "cash" => "பணம்",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "பண சரிசெய்தல்",
- "cash_deposit" => "பண வைப்பு",
- "cash_filter" => "பணம்",
- "change_due" => "நிலுவை",
- "change_price" => "விற்பனை விலையை மாற்றவும்",
- "check" => "சோதி",
- "check_balance" => "மீதமுள்ளதை சோதி",
- "check_filter" => "சோதி",
- "close" => "",
- "comment" => "குறிப்புரை",
- "comments" => "குறிப்புரைகள்",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "நிறைவுறு",
- "confirm_cancel_sale" => "இந்த விற்பனையை அழிக்க விரும்புகிறீர்களா? அனைத்து பொருட்களும் அழிக்கப்படும்.",
- "confirm_delete" => "தேர்ந்தெடுக்கப்பட்ட விற்பனை (களை) நீக்க விரும்புகிறீர்களா?",
- "confirm_restore" => "தேர்ந்தெடுக்கப்பட்ட விற்பனை (களை) மீட்டமைக்க விரும்புகிறீர்களா?",
- "credit" => "கடன் அட்டை",
- "credit_deposit" => "கடன் வைப்பு",
- "credit_filter" => "கடன் அட்டை",
- "current_table" => "",
- "customer" => "வாடிக்கையாளர்",
- "customer_address" => "முகவரி",
- "customer_discount" => "தள்ளுபடி",
- "customer_email" => "மின்னஞ்சல்",
- "customer_location" => "இடம்",
- "customer_mailchimp_status" => "மெயில்சிம்ப் நிலை",
- "customer_optional" => "(நிலுவை தொகை வைக்க அவசியம்)",
- "customer_required" => "(தேவை)",
- "customer_total" => "மொத்தம்",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "விற்பனை தேதி",
- "date_range" => "தேதி வரம்பு",
- "date_required" => "சரியான தேதியை உள்ளிட வேண்டும்.",
- "date_type" => "தேதி தேவையான உள்ளீடு.",
- "debit" => "பற்று அட்டை",
- "debit_filter" => "",
- "delete" => "நீக்க அனுமதிக்கவும்",
- "delete_confirmation" => "இந்த விற்பனையை நீக்க விரும்புகிறீர்களா? இந்த செயலை திரும்ப பெற முடியாது.",
- "delete_entire_sale" => "முழு விற்பனையையும் நீக்கு",
- "delete_successful" => "விற்பனை நீக்கப்பட்டது.",
- "delete_unsuccessful" => "விற்பனை நீக்கப்படவில்லை.",
- "description_abbrv" => "பொருள்.",
- "discard" => "கைவிடு",
- "discard_quote" => "",
- "discount" => "தள்ளு",
- "discount_included" => "% தள்ளுபடி",
- "discount_short" => "%",
- "due" => "நிலுவை",
- "due_filter" => "நிலுவை",
- "edit" => "திருத்து",
- "edit_item" => "பொருளை திருத்து",
- "edit_sale" => "விற்பனையை திருத்து",
- "email_receipt" => "மின்னஞ்சல் ரசீது",
- "employee" => "ஊழியர்",
- "entry" => "உள்ளீடு",
- "error_editing_item" => "பொருளை திருத்துவதில் பிழை",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "பொருளைக் தேடு அல்லது ஸ்கேன் செய்யுங்கள்",
- "find_or_scan_item_or_receipt" => "தேடு அல்லது பொருளை வருடு அல்லது ரசீது",
- "giftcard" => "பரிசு அட்டை",
- "giftcard_balance" => "பரிசு அட்டை இருப்பு",
- "giftcard_filter" => "",
- "giftcard_number" => "பரிசு அட்டை எண்",
- "group_by_category" => "வகை வாரியாக",
- "group_by_type" => "வகை வாரியாக",
- "hsn" => "HSN",
- "id" => "விற்பனை எண்",
- "include_prices" => "விலைகளைச் சேர்க்கவா?",
- "invoice" => "விற்பனைச்சிட்டை",
- "invoice_confirm" => "இந்த விற்பனைச்சிட்டை அனுப்பப்படும்",
- "invoice_enable" => "விற்பனைச்சிட்டை எண்",
- "invoice_filter" => "விற்பனைச்சிட்டைகள்",
- "invoice_no_email" => "இந்த வாடிக்கையாளருக்கு சரியான மின்னஞ்சல் முகவரி இல்லை.",
- "invoice_number" => "விற்பனைச்சிட்டை #",
- "invoice_number_duplicate" => "விற்பனைச்சிட்டை எண் {0} தனித்துவமாக இருக்க வேண்டும்.",
- "invoice_sent" => "விற்பனைச்சிட்டை அனுப்பப்பட்டது",
- "invoice_total" => "விற்பனைச்சிட்டை மொத்தம்",
- "invoice_type_custom_invoice" => "தனிப்பயன் விலைப்பட்டியல் (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "தனிப்பயன் வரி விலைப்பட்டியல் (custom_tax_invoice.php)",
- "invoice_type_invoice" => "விலைப்பட்டியல் (விலைப்பட்டியல். Php)",
- "invoice_type_tax_invoice" => "வரி விலைப்பட்டியல் (tax_invoice.php)",
- "invoice_unsent" => "விற்பனைச்சிட்டை அனுப்பப்படவில்லை",
- "invoice_update" => "மறுபரிசீலனை",
- "item_insufficient_of_stock" => "உருப்படிக்கு போதுமான பங்கு இல்லை.",
- "item_name" => "பொருளின் பெயர்",
- "item_number" => "பொருள் #",
- "item_out_of_stock" => "பொருள் கையிருப்பில் இல்லை.",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "சில்லரை வணிகம்",
- "must_enter_numeric" => "தொகை ஒரு எண்ணாக இருக்க வேண்டும்.",
- "must_enter_numeric_giftcard" => "பரிசு அட்டை எண் ஒரு எண்ணாக இருக்க வேண்டும்.",
- "new_customer" => "புது வாடிக்கையாளர்",
- "new_item" => "புதிய பொருள்",
- "no_description" => "No description",
- "no_filter" => "அனைத்தும்",
- "no_items_in_cart" => "வண்டியில் எந்த பொருட்களும் இல்லை.",
- "no_sales_to_display" => "காண்பிக்க எந்த விற்பனையும் இல்லை.",
- "none_selected" => "விற்பனை(களை) நீக்க நீங்கள் எந்தப் பொருட்களையும் தேர்ந்தெடுக்கவில்லை.",
- "nontaxed_ind" => " ",
- "not_authorized" => "இந்த செயலுக்கு அங்கீகாரம் இல்லை.",
- "one_or_multiple" => "விற்பனை(கள்)",
- "payment" => "கட்டண வகை",
- "payment_amount" => "தொகை",
- "payment_not_cover_total" => "கட்டண தொகை மொத்தத்தை விட அதிகமாகவோ அல்லது சமமாகவோ இருக்க வேண்டும்.",
- "payment_type" => "Type",
- "payments" => "",
- "payments_total" => "மொத்தக் கட்டணம்",
- "price" => "விலை",
- "print_after_sale" => "விற்பனைக்குப் பிறகு அச்சிடு",
- "quantity" => "அளவு",
- "quantity_less_than_reorder_level" => "எச்சரிக்கை: விரும்பிய அளவு அந்த உருப்படிக்கான மறுவரிசை நிலைக்கு கீழே உள்ளது.",
- "quantity_less_than_zero" => "எச்சரிக்கை: விரும்பிய அளவு போதுமானதாக இல்லை. இருப்பினும் நீங்கள் விற்பனையைச் செயல்படுத்தலாம், ஆனால் உங்கள் சரக்குகளைத் தணிக்கை செய்யுங்கள்.",
- "quantity_of_items" => "{0} பொருட்களின் அளவு",
- "quote" => "விலைப்புள்ளி",
- "quote_number" => "விலைப்புள்ளி எண்",
- "quote_number_duplicate" => "விலைப்புள்ளி எண் தனித்துவமாக இருக்க வேண்டும்.",
- "quote_sent" => "விலைப்புள்ளி அனுப்பப்பட்டது",
- "quote_unsent" => "விலைப்புள்ளியை அனுப்ப இயலவில்லை",
- "receipt" => "விற்பனை ரசீது",
- "receipt_no_email" => "இந்த வாடிக்கையாளருக்கு சரியான மின்னஞ்சல் முகவரி இல்லை.",
- "receipt_number" => "விற்பனை #",
- "receipt_sent" => "ரசீது அனுப்பப்பட்டது",
- "receipt_unsent" => "ரசீதை அனுப்ப இயலவில்லை",
- "refund" => "பணத்தைத் திரும்பப்பெறுதல் வகை",
- "register" => "விற்பனை பதிவு",
- "remove_customer" => "வாடிக்கையாளரை அகற்று",
- "remove_discount" => "",
- "return" => "Return",
- "rewards" => "வெகுமதி புள்ளிகள்",
- "rewards_balance" => "வெகுமதி புள்ளிகள் இருப்பு",
- "sale" => "விற்பனை",
- "sale_by_invoice" => "விலைப்பட்டியல் மூலம் விற்பனை",
- "sale_for_customer" => "வாடிக்கையாளர்:",
- "sale_time" => "நேரம்",
- "sales_tax" => "விற்பனை வரி",
- "sales_total" => "",
- "select_customer" => "வாடிக்கையாளரைத் தேர்ந்தெடு",
- "send_invoice" => "விலைப்பட்டியல் அனுப்பு",
- "send_quote" => "விலைப்புள்ளியை அனுப்பு",
- "send_receipt" => "ரசீதை அனுப்பு",
- "send_work_order" => "பணி ஆணையை அனுப்பவும்",
- "serial" => "வரிசை",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "விலைப்பட்டியலைக் காட்டு",
- "show_receipt" => "ரசீதைக் காட்டு",
- "start_typing_customer_name" => "வாடிக்கையாளர் விவரங்களைத் தட்டச்சு செய்யத் தொடங்கு...",
- "start_typing_item_name" => "Start typing Item Name or scan Barcode...",
- "stock" => "Stock",
- "stock_location" => "Stock Location",
- "sub_total" => "Subtotal",
- "successfully_deleted" => "You have successfully deleted",
- "successfully_restored" => "You have successfully restored",
- "successfully_suspended_sale" => "Sale suspend successful.",
- "successfully_updated" => "Sale update successful.",
- "suspend_sale" => "Suspend",
- "suspended_doc_id" => "Document",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Suspended",
- "table" => "Table",
- "takings" => "Daily Sales",
- "tax" => "Tax",
- "tax_id" => "Tax Id",
- "tax_invoice" => "Tax Invoice",
- "tax_percent" => "Tax %",
- "taxed_ind" => "வ",
- "total" => "Total",
- "total_tax_exclusive" => "Tax excluded",
- "transaction_failed" => "Sales Transaction failed.",
- "unable_to_add_item" => "Item add to Sale failed",
- "unsuccessfully_deleted" => "Sale(s) delete failed.",
- "unsuccessfully_restored" => "Sale(s) restore failed.",
- "unsuccessfully_suspended_sale" => "Sale suspend failed.",
- "unsuccessfully_updated" => "Sale update failed.",
- "unsuspend" => "Unsuspend",
- "unsuspend_and_delete" => "Action",
- "update" => "Update",
- "upi" => "UPI",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "Work Order",
- "work_order_number" => "Work Order Number",
- "work_order_number_duplicate" => "Work Order Number must be unique.",
- "work_order_sent" => "Work Order sent to",
- "work_order_unsent" => "Work Order failed to be sent to",
- "sale_not_found" => "விற்பனை காணப்படவில்லை",
+ 'account_number' => 'கணக்கு #',
+ 'add_payment' => 'கட்டணத்தைச் சேர்க்கவும்',
+ 'amount_due' => 'செலுத்த வேண்டிய தொகை',
+ 'amount_tendered' => 'கொடுத்த தொகை',
+ 'authorized_signature' => 'அங்கீகரிக்கப்பட்ட கையெழுத்து',
+ 'cancel_sale' => 'ரத்துசெய்',
+ 'cash' => 'பணம்',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'பண சரிசெய்தல்',
+ 'cash_deposit' => 'பண வைப்பு',
+ 'cash_filter' => 'பணம்',
+ 'change_due' => 'நிலுவை',
+ 'change_price' => 'விற்பனை விலையை மாற்றவும்',
+ 'check' => 'சோதி',
+ 'check_balance' => 'மீதமுள்ளதை சோதி',
+ 'check_filter' => 'சோதி',
+ 'close' => '',
+ 'comment' => 'குறிப்புரை',
+ 'comments' => 'குறிப்புரைகள்',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'நிறைவுறு',
+ 'confirm_cancel_sale' => 'இந்த விற்பனையை அழிக்க விரும்புகிறீர்களா? அனைத்து பொருட்களும் அழிக்கப்படும்.',
+ 'confirm_delete' => 'தேர்ந்தெடுக்கப்பட்ட விற்பனை (களை) நீக்க விரும்புகிறீர்களா?',
+ 'confirm_restore' => 'தேர்ந்தெடுக்கப்பட்ட விற்பனை (களை) மீட்டமைக்க விரும்புகிறீர்களா?',
+ 'credit' => 'கடன் அட்டை',
+ 'credit_deposit' => 'கடன் வைப்பு',
+ 'credit_filter' => 'கடன் அட்டை',
+ 'current_table' => '',
+ 'customer' => 'வாடிக்கையாளர்',
+ 'customer_address' => 'முகவரி',
+ 'customer_discount' => 'தள்ளுபடி',
+ 'customer_email' => 'மின்னஞ்சல்',
+ 'customer_location' => 'இடம்',
+ 'customer_mailchimp_status' => 'மெயில்சிம்ப் நிலை',
+ 'customer_optional' => '(நிலுவை தொகை வைக்க அவசியம்)',
+ 'customer_required' => '(தேவை)',
+ 'customer_total' => 'மொத்தம்',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'இருப்பு புள்ளிகள்',
+ 'daily_sales' => '',
+ 'date' => 'விற்பனை தேதி',
+ 'date_range' => 'தேதி வரம்பு',
+ 'date_required' => 'சரியான தேதியை உள்ளிட வேண்டும்.',
+ 'date_type' => 'தேதி தேவையான உள்ளீடு.',
+ 'debit' => 'பற்று அட்டை',
+ 'debit_filter' => '',
+ 'delete' => 'நீக்க அனுமதிக்கவும்',
+ 'delete_confirmation' => 'இந்த விற்பனையை நீக்க விரும்புகிறீர்களா? இந்த செயலை திரும்ப பெற முடியாது.',
+ 'delete_entire_sale' => 'முழு விற்பனையையும் நீக்கு',
+ 'delete_successful' => 'விற்பனை நீக்கப்பட்டது.',
+ 'delete_unsuccessful' => 'விற்பனை நீக்கப்படவில்லை.',
+ 'description_abbrv' => 'பொருள்.',
+ 'discard' => 'கைவிடு',
+ 'discard_quote' => '',
+ 'discount' => 'தள்ளு',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% தள்ளுபடி',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'நிலுவை',
+ 'due_filter' => 'நிலுவை',
+ 'edit' => 'திருத்து',
+ 'edit_item' => 'பொருளை திருத்து',
+ 'edit_sale' => 'விற்பனையை திருத்து',
+ 'email_receipt' => 'மின்னஞ்சல் ரசீது',
+ 'employee' => 'ஊழியர்',
+ 'entry' => 'உள்ளீடு',
+ 'error_editing_item' => 'பொருளை திருத்துவதில் பிழை',
+ 'find_or_scan_item' => 'பொருளைக் தேடு அல்லது ஸ்கேன் செய்யுங்கள்',
+ 'find_or_scan_item_or_receipt' => 'தேடு அல்லது பொருளை வருடு அல்லது ரசீது',
+ 'giftcard' => 'பரிசு அட்டை',
+ 'giftcard_balance' => 'பரிசு அட்டை இருப்பு',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'பரிசு அட்டை எண்',
+ 'group_by_category' => 'வகை வாரியாக',
+ 'group_by_type' => 'வகை வாரியாக',
+ 'hsn' => 'HSN',
+ 'id' => 'விற்பனை எண்',
+ 'include_prices' => 'விலைகளைச் சேர்க்கவா?',
+ 'invoice' => 'விற்பனைச்சிட்டை',
+ 'invoice_confirm' => 'இந்த விற்பனைச்சிட்டை அனுப்பப்படும்',
+ 'invoice_enable' => 'விற்பனைச்சிட்டை எண்',
+ 'invoice_filter' => 'விற்பனைச்சிட்டைகள்',
+ 'invoice_no_email' => 'இந்த வாடிக்கையாளருக்கு சரியான மின்னஞ்சல் முகவரி இல்லை.',
+ 'invoice_number' => 'விற்பனைச்சிட்டை #',
+ 'invoice_number_duplicate' => 'விற்பனைச்சிட்டை எண் {0} தனித்துவமாக இருக்க வேண்டும்.',
+ 'invoice_sent' => 'விற்பனைச்சிட்டை அனுப்பப்பட்டது',
+ 'invoice_total' => 'விற்பனைச்சிட்டை மொத்தம்',
+ 'invoice_type_custom_invoice' => 'தனிப்பயன் விலைப்பட்டியல் (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'தனிப்பயன் வரி விலைப்பட்டியல் (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'விலைப்பட்டியல் (விலைப்பட்டியல். Php)',
+ 'invoice_type_tax_invoice' => 'வரி விலைப்பட்டியல் (tax_invoice.php)',
+ 'invoice_unsent' => 'விற்பனைச்சிட்டை அனுப்பப்படவில்லை',
+ 'invoice_update' => 'மறுபரிசீலனை',
+ 'item_insufficient_of_stock' => 'உருப்படிக்கு போதுமான பங்கு இல்லை.',
+ 'item_name' => 'பொருளின் பெயர்',
+ 'item_number' => 'பொருள் #',
+ 'item_out_of_stock' => 'பொருள் கையிருப்பில் இல்லை.',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'சில்லரை வணிகம்',
+ 'must_enter_numeric' => 'தொகை ஒரு எண்ணாக இருக்க வேண்டும்.',
+ 'must_enter_numeric_giftcard' => 'பரிசு அட்டை எண் ஒரு எண்ணாக இருக்க வேண்டும்.',
+ 'must_enter_reference_code' => 'குறிப்பு/மீட்டெடுப்பு எண் உள்ளிட வேண்டும்.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'புது வாடிக்கையாளர்',
+ 'new_item' => 'புதிய பொருள்',
+ 'no_description' => 'No description',
+ 'no_filter' => 'அனைத்தும்',
+ 'no_items_in_cart' => 'வண்டியில் எந்த பொருட்களும் இல்லை.',
+ 'no_sales_to_display' => 'காண்பிக்க எந்த விற்பனையும் இல்லை.',
+ 'none_selected' => 'விற்பனை(களை) நீக்க நீங்கள் எந்தப் பொருட்களையும் தேர்ந்தெடுக்கவில்லை.',
+ 'nontaxed_ind' => ' ',
+ 'not_authorized' => 'இந்த செயலுக்கு அங்கீகாரம் இல்லை.',
+ 'one_or_multiple' => 'விற்பனை(கள்)',
+ 'payment' => 'கட்டண வகை',
+ 'payment_amount' => 'தொகை',
+ 'payment_not_cover_total' => 'கட்டண தொகை மொத்தத்தை விட அதிகமாகவோ அல்லது சமமாகவோ இருக்க வேண்டும்.',
+ 'payment_type' => 'Type',
+ 'payments' => '',
+ 'payments_total' => 'மொத்தக் கட்டணம்',
+ 'price' => 'விலை',
+ 'print_after_sale' => 'விற்பனைக்குப் பிறகு அச்சிடு',
+ 'quantity' => 'அளவு',
+ 'quantity_less_than_reorder_level' => 'எச்சரிக்கை: விரும்பிய அளவு அந்த உருப்படிக்கான மறுவரிசை நிலைக்கு கீழே உள்ளது.',
+ 'quantity_less_than_zero' => 'எச்சரிக்கை: விரும்பிய அளவு போதுமானதாக இல்லை. இருப்பினும் நீங்கள் விற்பனையைச் செயல்படுத்தலாம், ஆனால் உங்கள் சரக்குகளைத் தணிக்கை செய்யுங்கள்.',
+ 'quantity_of_items' => '{0} பொருட்களின் அளவு',
+ 'quote' => 'விலைப்புள்ளி',
+ 'quote_number' => 'விலைப்புள்ளி எண்',
+ 'quote_number_duplicate' => 'விலைப்புள்ளி எண் தனித்துவமாக இருக்க வேண்டும்.',
+ 'quote_sent' => 'விலைப்புள்ளி அனுப்பப்பட்டது',
+ 'quote_unsent' => 'விலைப்புள்ளியை அனுப்ப இயலவில்லை',
+ 'receipt' => 'விற்பனை ரசீது',
+ 'receipt_no_email' => 'இந்த வாடிக்கையாளருக்கு சரியான மின்னஞ்சல் முகவரி இல்லை.',
+ 'receipt_number' => 'விற்பனை #',
+ 'receipt_sent' => 'ரசீது அனுப்பப்பட்டது',
+ 'receipt_unsent' => 'ரசீதை அனுப்ப இயலவில்லை',
+ 'reference_code' => 'கட்டண குறிப்பு குறியீடு',
+ 'reference_code_invalid_characters' => 'குறிப்பு குறியீடு எழுத்துக்கள் மற்றும் எண்கள் மட்டுமே கொண்டிருக்க வேண்டும்.',
+ 'reference_code_length_error' => 'குறிப்பு குறியீட்டின் நீளம் தவறானது.',
+ 'refund' => 'பணத்தைத் திரும்பப்பெறுதல் வகை',
+ 'register' => 'விற்பனை பதிவு',
+ 'remove_customer' => 'வாடிக்கையாளரை அகற்று',
+ 'remove_discount' => '',
+ 'return' => 'Return',
+ 'rewards' => 'வெகுமதி புள்ளிகள்',
+ 'rewards_balance' => 'வெகுமதி புள்ளிகள் இருப்பு',
+ 'rewards_package' => 'வெகுமதிகள்',
+ 'rewards_remaining_balance' => 'வெகுமதி புள்ளிகள் மீதமுள்ள மதிப்பு ',
+ 'sale' => 'விற்பனை',
+ 'sale_by_invoice' => 'விலைப்பட்டியல் மூலம் விற்பனை',
+ 'sale_for_customer' => 'வாடிக்கையாளர்:',
+ 'sale_time' => 'நேரம்',
+ 'sales_tax' => 'விற்பனை வரி',
+ 'sales_total' => '',
+ 'select_customer' => 'வாடிக்கையாளரைத் தேர்ந்தெடு',
+ 'send_invoice' => 'விலைப்பட்டியல் அனுப்பு',
+ 'send_quote' => 'விலைப்புள்ளியை அனுப்பு',
+ 'send_receipt' => 'ரசீதை அனுப்பு',
+ 'send_work_order' => 'பணி ஆணையை அனுப்பவும்',
+ 'serial' => 'வரிசை',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'விலைப்பட்டியலைக் காட்டு',
+ 'show_receipt' => 'ரசீதைக் காட்டு',
+ 'start_typing_customer_name' => 'வாடிக்கையாளர் விவரங்களைத் தட்டச்சு செய்யத் தொடங்கு...',
+ 'start_typing_item_name' => 'Start typing Item Name or scan Barcode...',
+ 'stock' => 'Stock',
+ 'stock_location' => 'Stock Location',
+ 'sub_total' => 'Subtotal',
+ 'successfully_deleted' => 'You have successfully deleted',
+ 'successfully_restored' => 'You have successfully restored',
+ 'successfully_suspended_sale' => 'Sale suspend successful.',
+ 'successfully_updated' => 'Sale update successful.',
+ 'suspend_sale' => 'Suspend',
+ 'suspended_doc_id' => 'Document',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Suspended',
+ 'table' => 'Table',
+ 'takings' => 'Daily Sales',
+ 'tax' => 'Tax',
+ 'tax_id' => 'Tax Id',
+ 'tax_invoice' => 'Tax Invoice',
+ 'tax_percent' => 'Tax %',
+ 'taxed_ind' => 'வ',
+ 'total' => 'Total',
+ 'total_tax_exclusive' => 'Tax excluded',
+ 'transaction_failed' => 'Sales Transaction failed.',
+ 'unable_to_add_item' => 'Item add to Sale failed',
+ 'unsuccessfully_deleted' => 'Sale(s) delete failed.',
+ 'unsuccessfully_restored' => 'Sale(s) restore failed.',
+ 'unsuccessfully_suspended_sale' => 'Sale suspend failed.',
+ 'unsuccessfully_updated' => 'Sale update failed.',
+ 'unsuspend' => 'Unsuspend',
+ 'unsuspend_and_delete' => 'Action',
+ 'update' => 'Update',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'Work Order',
+ 'work_order_number' => 'Work Order Number',
+ 'work_order_number_duplicate' => 'Work Order Number must be unique.',
+ 'work_order_sent' => 'Work Order sent to',
+ 'work_order_unsent' => 'Work Order failed to be sent to',
];
diff --git a/app/Language/th/Config.php b/app/Language/th/Config.php
index 02777e2c1..23144e024 100644
--- a/app/Language/th/Config.php
+++ b/app/Language/th/Config.php
@@ -1,332 +1,335 @@
"ที่อยู่",
- "address_required" => "ที่อยู่ต้องกรอก",
- "all_set" => "การตั้งค่าอนุญาตไฟล์ทั้งหมดถูกต้อง!",
- "allow_duplicate_barcodes" => "อนุญาตบาร์โค้ดที่ซ้ำกัน",
- "apostrophe" => "อัญประกาศเดี่ยว '",
- "backup_button" => "สำรองข้อมูล",
- "backup_database" => "สำรองฐานข้อมูล",
- "barcode" => "ตั้งค่าระบบบาร์โค้ด",
- "barcode_company" => "ชื่อร้านค้า",
- "barcode_configuration" => "ตั้งค่าระบบบาร์โค้ด",
- "barcode_content" => "รหัสที่พิมพ์",
- "barcode_first_row" => "แถว 1",
- "barcode_font" => "แบบอักษร",
- "barcode_formats" => "รูปแบบอินพุต",
- "barcode_generate_if_empty" => "Generate if empty",
- "barcode_height" => "สูง (px)",
- "barcode_id" => "รหัสสินค้า/ชื่อสินค้า",
- "barcode_info" => "ตั้งค่าบาร์โค้ด",
- "barcode_layout" => "โครงร่างการพิมพ์",
- "barcode_name" => "สินค้า",
- "barcode_number" => "UPC/EAN/ISBN",
- "barcode_number_in_row" => "จำนวนดวงใน 1 แถว",
- "barcode_page_cellspacing" => "ระยะห่างต่อดวง",
- "barcode_page_width" => "ความกว้างในหน้า",
- "barcode_price" => "ราคา",
- "barcode_second_row" => "แถว 2",
- "barcode_third_row" => "แถว 3",
- "barcode_tooltip" => "คำเตือน: คุณสมบัตินี้สามารถทำให้เกิดรายการที่ซ้ำกันที่จะนำเข้าหรือสร้าง ห้ามใช้หากคุณไม่ต้องการบาร์โค้ดที่ซ้ำกัน",
- "barcode_type" => "ประเภทบาร์โค้ด",
- "barcode_width" => "กว้าง (px)",
- "bottom" => "ด้านล่าง",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "ทศนิยมแบบการเงินสด",
- "cash_decimals_tooltip" => "ถ้าทศนิยมแบบเงินสดและทศนิยมแบบสกุลเงินเหมือนกันจะไม่มีการปัดเศษเงินสด",
- "cash_rounding" => "การปัดเศษทางการเงิน",
- "category_dropdown" => "แสดงกลุ่มเป็นแบบดรอปดาวน์",
- "center" => "กึ่งกลาง",
- "change_apperance_tooltip" => "",
- "comma" => "จุลภาค",
- "company" => "ชื่อร้านค้า",
- "company_avatar" => "",
- "company_change_image" => "เปลี่ยนรูป",
- "company_logo" => "ภาพโลโก้",
- "company_remove_image" => "ลบรูป",
- "company_required" => "ชื่อร้านค้าต้องกรอก",
- "company_select_image" => "เลือกรูป",
- "company_website_url" => "ที่อยู่เว็บไซต์ร้านค้าไม่ถูกต้อง (เช่น http://...)",
- "country_codes" => "รหัสประเทศ",
- "country_codes_tooltip" => "รายการรหัสประเทศที่คั่นด้วยคอมม่าสำหรับการค้นหาโดยชื่อที่อยู่",
- "currency_code" => "รหัสสกุลเงิน",
- "currency_decimals" => "ทศนิยมแบบการเงิน",
- "currency_symbol" => "สัญลักษณ์ค่าเงิน",
- "current_employee_only" => "",
- "customer_reward" => "รางวัล",
- "customer_reward_duplicate" => "รางวัลต้องไม่ซ้ำกัน",
- "customer_reward_enable" => "เปิดใช้งานรางวัลของลูกค้า",
- "customer_reward_invalid_chars" => "รางวัลไม่สามารถมี '_' ได้",
- "customer_reward_required" => "รางวัลเป็นฟิลด์บังคับ",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "ตัวกรองวันที่และเวลา",
- "datetimeformat" => "รูปแบบวันและเวลา",
- "decimal_point" => "จุดทศนิยม",
- "default_barcode_font_size_number" => "ค่าบาร์โค้ดจะต้องเป็นตัวเลข",
- "default_barcode_font_size_required" => "ต้องระบุขนาดตัวบาร์โค้ดเริ่มต้น",
- "default_barcode_height_number" => "ความสูงของบาร์โค้ดต้องเป็นตัวเลข",
- "default_barcode_height_required" => "ต้องระบุความสูงของบาร์โค้ด",
- "default_barcode_num_in_row_number" => "บาร์โค้ดในแถวจะต้องเป็นตัวเลข",
- "default_barcode_num_in_row_required" => "ต้องระบุค่าบาร์โค้ด",
- "default_barcode_page_cellspacing_number" => "The default barcode page cellspacing must be a number",
- "default_barcode_page_cellspacing_required" => "The default barcode page cellspacing is a required field",
- "default_barcode_page_width_number" => "The default barcode page width must be a number",
- "default_barcode_page_width_required" => "The default barcode page width is a required field",
- "default_barcode_width_number" => "The default barcode width must be a number",
- "default_barcode_width_required" => "The default barcode width is a required field",
- "default_item_columns" => "คอลัมน์รายการที่แสดงเป็นค่าเริ่มต้น",
- "default_origin_tax_code" => "รหัสภาษีที่เป็นค่าเริ่มต้น",
- "default_receivings_discount" => "ส่วนลดที่เป็นค่าเริ่มต้นที่จะได้รับ",
- "default_receivings_discount_number" => "การรับส่วนลดที่เป็นค่าเริ่มต้นต้องเป็นตัวเลข",
- "default_receivings_discount_required" => "การรับส่วนลดที่เป็นค่าเริ่มต้นจำเป็นต้องระบุ",
- "default_sales_discount" => "ส่วนลดการขายที่เป็นค่าเริ่มต้น",
- "default_sales_discount_number" => "ส่วนลดการขายเริ่มต้นจะต้องเป็นตัวเลข",
- "default_sales_discount_required" => "ส่วนลดการขายเริ่มต้นเป็นจำเป็นต้องมีข้อมูล",
- "default_tax_category" => "หมวดหมู่ภาษีที่เป็นค่าเริ่มต้น",
- "default_tax_code" => "รหัสภาษีที่เป็นค่าเริ่มต้น",
- "default_tax_jurisdiction" => "เขตพื้นที่กฎหมายภาษีที่เป็นค่าเริ่มต้น",
- "default_tax_name_number" => "ชื่อภาษีที่เป็นค่าเริ่มต้นจะต้องเป็นตัวอักษร",
- "default_tax_name_required" => "ชื่อภาษีเริ่มต้นจำเป็นต้องมีข้อมูล",
- "default_tax_rate" => "อัตราภาษีเริ่มต้น %",
- "default_tax_rate_1" => "อัตราภาษีลำดับที่ 1",
- "default_tax_rate_2" => "อัตราภาษีลำดับที่ 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "อัตราภาษีเริ่มต้นต้องเป็นตัวเลข",
- "default_tax_rate_required" => "อัตราภาษีเริ่มต้นต้องกรอก",
- "derive_sale_quantity" => "จำนวนปริมาณการขายที่ได้รับ",
- "derive_sale_quantity_tooltip" => "หากทำเครื่องหมาย ระบบจะระบุประเภทรายการใหม่สำหรับรายการตามจำนวนที่เพิ่มขึ้น",
- "dinner_table" => "โต๊ะ",
- "dinner_table_duplicate" => "โต๊ะจะต้องไม่ซ้ำกัน",
- "dinner_table_enable" => "เปิดใช้งานบริการโต๊ะนั่งทาน",
- "dinner_table_invalid_chars" => "ชื่อโต๊ะจะต้องไม่มีเครื่องหมาย '_' อยู่",
- "dinner_table_required" => "โต๊ะจำเป็นต้องระบุค่า",
- "dot" => "จุด",
- "email" => "อีเมล์",
- "email_configuration" => "ตั้งค่าอีเมล์",
- "email_mailpath" => "ที่อยู่ส่งเมล์",
- "email_protocol" => "โปรโตคอล",
- "email_receipt_check_behaviour" => "ทำเครื่องหมายรับอีเมล",
- "email_receipt_check_behaviour_always" => "ตรวจสอบอยู่เสมอ",
- "email_receipt_check_behaviour_last" => "จำการเลือกสุดท้าย",
- "email_receipt_check_behaviour_never" => "ไม่ถูกตรวจสอบเสมอ",
- "email_smtp_crypto" => "การเข้ารหัสของเอสเอ็มทีพี",
- "email_smtp_host" => "เซอร์เวอร์เอสเอ็มทีพี",
- "email_smtp_pass" => "รหัสผ่านเอสเอ็มทีพี",
- "email_smtp_port" => "เอสเอ็มทีพีพอร์ต",
- "email_smtp_timeout" => "ระยะเวลารอคอยของเอสเอ็มทีพี",
- "email_smtp_user" => "ชื่อผู้ใช้งานของเอสเอ็มทีพี",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "บังคับความเป็นส่วนตัว",
- "enforce_privacy_tooltip" => "ปกป้องความเป็นส่วนตัวของลูกค้าที่บังคับใช้การตรวจข้อมูลในกรณีที่ข้อมูลถูกลบ",
- "fax" => "แฟ็กซ์",
- "file_perm" => "มีปัญหาเกี่ยวกับการอนุญาตของไฟล์ โปรดแก้ไขและโหลดหน้านี้ใหม่อีกครั้ง",
- "financial_year" => "เริ่มปีงบประมาณ",
- "financial_year_apr" => "วันที่ 1 เมษายน",
- "financial_year_aug" => "วันที่ 1 สิงหาคม",
- "financial_year_dec" => "วันที่ 1 ธันวาคม",
- "financial_year_feb" => "วันที่ 1 กุมภาพันธ์",
- "financial_year_jan" => "วันที่ 1 มกราคม",
- "financial_year_jul" => "วันที่ 1 กรกฏาคม",
- "financial_year_jun" => "วันที่ 1 มิถุนายน",
- "financial_year_mar" => "วันที่ 1 มีนาคม",
- "financial_year_may" => "วันที่ 1 พฤษภาคม",
- "financial_year_nov" => "วันที่ 1 พฤศจิกายน",
- "financial_year_oct" => "วันที่ 1 ตุลาคม",
- "financial_year_sep" => "วันที่ 1 กันยายน",
- "floating_labels" => "แสดงตัวเลข",
- "gcaptcha_enable" => "ขอรหัสยืนยันใหม่ เพื่อเข้าระบบ",
- "gcaptcha_secret_key" => "รหัสลับ สำหรับรหัสยืนยัน",
- "gcaptcha_secret_key_required" => "จำเป็นต้องระบุ รหัสลับ สำหรับรหัสยืนยัน",
- "gcaptcha_site_key" => "รหัสของเว็บเพจ สำหรับรหัสยืนยัน",
- "gcaptcha_site_key_required" => "จำเป็นต้องระบุ รหัสของเว็บเพจ สำหรับรหัสยืนยัน",
- "gcaptcha_tooltip" => "ปกป้องการเข้าสู่ระบบด้วย reCAPTCHA โปรดคลิกที่ไอคอนเพื่อรับ API key pair",
- "general" => "การตั้งค่า",
- "general_configuration" => "ตั้งค่าทั่วไป",
- "giftcard_number" => "เลขที่บัตรของขวัญ",
- "giftcard_random" => "สร้างหมายเลขแบบสุ่ม",
- "giftcard_series" => "สร้างหมายเลขตามลำดับ",
- "image_allowed_file_types" => "ประเภทไฟล์ที่ยอมรับ",
- "image_max_height_tooltip" => "ค่าพิกเซลความสูงของรูปที่ยอมให้แนบไฟล์ได้",
- "image_max_size_tooltip" => "ขนาดของไฟล์รูปที่ยอมให้แนบไฟล์ได้ในขนาดกิโลไบต์(kb.)",
- "image_max_width_tooltip" => "ค่าพิกเซลความยาวของรูปที่ยอมให้แนบไฟล์ได้",
- "image_restrictions" => "ข้อจำกัดของไฟล์รูปที่แนบ",
- "include_hsn" => "เพิ่มการรองรับ HSN Codes",
- "info" => "ข้อมูลร้านค้า",
- "info_configuration" => "ข้อมูลร้านค้า",
- "input_groups" => "นำเข้าแบบกลุ่ม",
- "integrations" => "การเข้าร่วม",
- "integrations_configuration" => "การเข้าร่วมกับบุคคลภายนอก",
- "invoice" => "ใบแจ้งหนี้",
- "invoice_configuration" => "ตั้งค่าการพิมพ์ใบแจ้งหนี้",
- "invoice_default_comments" => "ค่าเริ่มต้นหมายเหตุในใบแจ้งหนี้",
- "invoice_email_message" => "ต้นแบบใบแจ้งหนี้ (Email)",
- "invoice_enable" => "เปิดการออกใบแจ้งหนี้",
- "invoice_printer" => "เครื่องพิมพ์สำหรับการออกใบแจ้งหนี้",
- "invoice_type" => "ชนิดของใบแจ้งหนี้",
- "is_readable" => "สามารถอ่านได้ แต่สิทธิ์ไม่ถูกต้อง กรุณาตั้งค่าเป็น 640 หรือ 660 แล้วโหลดใหม่อีกครั้ง",
- "is_writable" => "สามารถเขียนข้อมูลได้ แต่สิทธิ์ไม่ถูกต้อง ต้องสูงกว่าค่า 750 กรุณาตั้งค่าเป็น 750 แล้วโหลดใหม่อีกครั้ง",
- "item_markup" => "",
- "jsprintsetup_required" => "คำเตือน! ฟังก์ชันการทำงานที่ถูกปิดอยู่ จะสามารถใช้งานได้เมื่อติดตั้ง FireFox jsPrintSetup แล้วเท่านั้น, จะบันทึกข้อมูลหรือไม่?",
- "language" => "ภาษา",
- "last_used_invoice_number" => "หมายเลขใบแจ้งหนี้ฉบับล่าสุด",
- "last_used_quote_number" => "หมายเลขใบเสนอราคาฉบับล่าสุด",
- "last_used_work_order_number" => "หมายเลข W/O ฉบับล่าสุด",
- "left" => "ซ้าย",
- "license" => "ใบอนุญาต",
- "license_configuration" => "รายละเอียดใบอนุญาต",
- "line_sequence" => "เลขที่บรรทัด",
- "lines_per_page" => "จำนวนบรรทัด/หน้า",
- "lines_per_page_number" => "จำนวนบรรทัด/หน้า จะต้องเป็นตัวเลข",
- "lines_per_page_required" => "จำเป็นต้องป้อน จำนวนบรรทัด/หน้า",
- "locale" => "เขตพื้นที่",
- "locale_configuration" => "ตั้งค่าเขตพื้นที่",
- "locale_info" => "ข้อมูลเขตพื้นที่",
- "location" => "สินค้าคงคลัง",
- "location_configuration" => "ตำแหน่งสินค้าคงคลัง",
- "location_info" => "ข้อมูลตำแหน่งสินค้าคงคลัง",
- "login_form" => "รูปแบบแบบฟอร์มการเข้าระบบ",
- "logout" => "ต้องการสำรองข้อมูลก่อนออกจากระบบหรือไม่? [OK] สำรองข้อมูล / [Cancel] ออกจากระบบ",
- "mailchimp" => "ระบบส่งอีเมล์เมล์ชิม",
- "mailchimp_api_key" => "API Key สำหรับระบบส่งอีเมล์เมล์ชิม",
- "mailchimp_configuration" => "ตั้งค่าระบบส่งอีเมล์เมล์ชิม",
- "mailchimp_key_successfully" => "API Key ถูกต้อง",
- "mailchimp_key_unsuccessfully" => "API Key ไม่ถูกต้อง",
- "mailchimp_lists" => "รายการระบบส่งอีเมล์เมล์ชิม",
- "mailchimp_tooltip" => "คลิกที่ไอคอนเพื่อรับ API Key",
- "message" => "ข้อความ",
- "message_configuration" => "ตั้งค่าข้อความ",
- "msg_msg" => "ข้อความที่ถูกบักทึกไว้",
- "msg_msg_placeholder" => "สร้างข้อความ SMS template ที่นี่",
- "msg_pwd" => "รหัสผ่านของ SMS-API",
- "msg_pwd_required" => "จำเป็นต้องป้อน รหัสผ่านของ SMS-API",
- "msg_src" => "ID ผู้ส่ง (SMS-API)",
- "msg_src_required" => "จำเป็นต้องป้อน ID ผู้ส่ง",
- "msg_uid" => "ชื่อผู้ใช้งานระบบ SMS-API",
- "msg_uid_required" => "จำเป็นต้องป้อน ชื่อผู้ใช้งานระบบ SMS-API",
- "multi_pack_enabled" => "หนึ่งรายการมีหลายชิ้น",
- "no_risk" => "ไม่มีความเสี่ยงด้านความปลอดภัย / ความเสี่ยง",
- "none" => "none",
- "notify_alignment" => "แจ้งตำแหน่งแสดงการแจ้งเตือน",
- "number_format" => "รูปแบบตัวเลข",
- "number_locale" => "Localisation",
- "number_locale_invalid" => "The entered locale is invalid. Check the link in the tooltip to find a sensible value",
- "number_locale_required" => "Number Locale is a required field",
- "number_locale_tooltip" => "Find a suitable locale through this link",
- "os_timezone" => "เขตเวลาของระบบ OSPOS:",
- "ospos_info" => "ข้อมูลการติดตั้งระบบ OSPOS",
- "payment_options_order" => "ตัวเลือกการชำระเงิน",
- "perm_risk" => "การอนุญาตที่ไม่ถูกต้องทำให้ซอฟต์แวร์นี้ตกอยู่ในความเสี่ยง",
- "phone" => "เบอร์โทรศัพท์",
- "phone_required" => "เบอร์โทรต้องกรอก",
- "print_bottom_margin" => "ขอบล่าง",
- "print_bottom_margin_number" => "The default bottom margin must be a number",
- "print_bottom_margin_required" => "The default bottom margin is a required field",
- "print_delay_autoreturn" => "การส่งกลับอัตโนมัติของการขายที่ล่าช้า",
- "print_delay_autoreturn_number" => "การส่งกลับอัตโนมัติของการขายที่ล่าช้าจำเป็นต้องระบุ",
- "print_delay_autoreturn_required" => "การส่งกลับอัตโนมัติของการขายที่ล่าช้าต้องระบุเป็นตัวเลข",
- "print_footer" => "พิมพ์ส่วนท้ายของเบราว์เซอร์",
- "print_header" => "พิมพ์ส่วนหัวของเบราว์เซอร์",
- "print_left_margin" => "ขอบด้านซ้าย",
- "print_left_margin_number" => "ขอบด้านซ้ายค่าเริ่มต้นต้องเป็นตัวเลข",
- "print_left_margin_required" => "จำเป็นต้องระบุขอบด้านซ้าย",
- "print_receipt_check_behaviour" => "กล่องพิมพ์ใบเสร็จรับเงิน",
- "print_receipt_check_behaviour_always" => "เลือกไว้ตลอด",
- "print_receipt_check_behaviour_last" => "จดจำการเลือกสุดท้ายไว้",
- "print_receipt_check_behaviour_never" => "ไม่เลือกไว้ตลอด",
- "print_right_margin" => "ขอบด้านขวา",
- "print_right_margin_number" => "ขอบด้านขวาค่าเริ่มต้นต้องเป็นตัวเลข",
- "print_right_margin_required" => "ต้องระบุขอบด้านขวา",
- "print_silently" => "แสดงกล่องโต้ตอบการพิมพ์",
- "print_top_margin" => "ขอบด้านบน",
- "print_top_margin_number" => "ขอบด้านบนค่าเริ่มต้นจะต้องเป็นตัวเลข",
- "print_top_margin_required" => "ต้องระบุขอบด้านบน",
- "quantity_decimals" => "ทศนิยมจำนวน",
- "quick_cash_enable" => "",
- "quote_default_comments" => "ค่าปริยายของความคิดเห็น",
- "receipt" => "ใบเสร็จ",
- "receipt_category" => "",
- "receipt_configuration" => "ตั้งค่าใบเสร็จ",
- "receipt_default" => "ค่าเริ่มต้น",
- "receipt_font_size" => "ขนาดของตัวอักษร",
- "receipt_font_size_number" => "ขนาดตัวอักษรต้องเป็นตัวเลข",
- "receipt_font_size_required" => "จำเป็นต้องระบุขนาดตัวอักษร",
- "receipt_info" => "ข้อมูลการตั้งค่าใบเสร็จ",
- "receipt_printer" => "เครื่องพิมพ์ตั๋ว",
- "receipt_short" => "สั้น",
- "receipt_show_company_name" => "แสดงชื่อบริษัท",
- "receipt_show_description" => "แสดงรายละเอียด",
- "receipt_show_serialnumber" => "แสดงหมายเลขซีเรียล",
- "receipt_show_tax_ind" => "แสดงอัตราภาษี",
- "receipt_show_taxes" => "แสดงภาษี",
- "receipt_show_total_discount" => "แสดงส่วนลดทั้งหมด",
- "receipt_template" => "ต้นแบบใบเสร็จ",
- "receiving_calculate_average_price" => "คำนวณราคาเฉลี่ย (ได้รับมา)",
- "recv_invoice_format" => "ใบส่งของ",
- "register_mode_default" => "ค่าปริยายรูปแบบการลงทะเบียน",
- "report_an_issue" => "รายงานปัญหา",
- "return_policy_required" => "ต้องกรอกเงื่อนไขการคืนสินค้า",
- "reward" => "คะแนนสะสม",
- "reward_configuration" => "การตั้งค่าคะแนนสะสม",
- "right" => "ถูกต้อง",
- "sales_invoice_format" => "รหัสใบเสร็จ",
- "sales_quote_format" => "รูปแบบใบเสนอราคาขาย",
- "mailpath_invalid" => "",
- "saved_successfully" => "บันทึกข้อมูลร้านค้าเรียบร้อยแล้ว",
- "saved_unsuccessfully" => "บันทึกข้อมูลร้านค้าไม่สำเร็จ",
- "security_issue" => "คำเตือนช่องโหว่ด้านความปลอดภัย",
- "server_notice" => "โปรดใช้ข้อมูลด้านล่างสำหรับการรายงานปัญหา",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "แสดงไอคอนสำนักงาน",
- "statistics" => "ส่งยอดสถิติ",
- "statistics_tooltip" => "ส่งข้อมูลสถิติเพื่อการพัฒนาและปรับปรุงความสามารถ",
- "stock_location" => "สถานที่เก็บ",
- "stock_location_duplicate" => "ที่ตั้งคลังสินค้าต้องไม่ซ้ำกัน",
- "stock_location_invalid_chars" => "ชื่อสต๊อกสถานที่เก็บสินค้าต้องไม่มีอักษรพิเศษ '_'",
- "stock_location_required" => "จำเป็นต้องระบุสถานที่เก็บ",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "คอลัมน์ 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "รูปแบบข้อแนะนำในการค้นหา",
- "suggestions_second_column" => "คอลัมน์ 2",
- "suggestions_third_column" => "คอลัมน์ 3",
- "system_conf" => "การตั้งค่าและกำหนดค่า",
- "system_info" => "System Info",
- "table" => "โต๊ะนั่งทาน",
- "table_configuration" => "ตั้งค่าโต๊ะนั่งทาน",
- "takings_printer" => "เลือกเครื่องพิมพ์",
- "tax" => "ภาษี",
- "tax_category" => "หมวดหมู่ภาษี",
- "tax_category_duplicate" => "หมวดหมู่ภาษีที่ป้อน ซ้ำกับข้อมูลที่มีอยู่",
- "tax_category_invalid_chars" => "หมวดหมู่ภาษีที่ป้อน ไม่ถูกต้อง",
- "tax_category_required" => "หมวดหมู่ภาษี จำเป็นต้องป้อน",
- "tax_category_used" => "ไม่สามารถลบ หมวดหมู่ภาษี ที่กำลังมีการใช้งานอยู่",
- "tax_configuration" => "ตั้งค่าระบบภาษี",
- "tax_decimals" => "จำนวนทศนิยมภาษี",
- "tax_id" => "เลขประจำตัวผู้เสียภาษี",
- "tax_included" => "รวมภาษีแล้ว",
- "theme" => "Theme",
- "theme_preview" => "ดูตัวอย่างธีม:",
- "thousands_separator" => "ตัวคั่นหลักพัน",
- "timezone" => "โซนเวลา",
- "timezone_error" => "เขตเวลาของระบบ OSPOS แตกต่างกับเขตเวลาปัจจุบันของคุณ",
- "top" => "ด้านบน",
- "use_destination_based_tax" => "เปิดใช้ Destination-Based Tax",
- "user_timezone" => "เขตเวลาปัจจุบัน:",
- "website" => "เว็บไซต์",
- "wholesale_markup" => "",
- "work_order_enable" => "เปิดใช้ ใบสั่งงาน (WO)",
- "work_order_format" => "รูปแบบ ใบสั่งงาน (WO)",
+ 'address' => 'ที่อยู่',
+ 'address_required' => 'ที่อยู่ต้องกรอก',
+ 'all_set' => 'การตั้งค่าอนุญาตไฟล์ทั้งหมดถูกต้อง!',
+ 'allow_duplicate_barcodes' => 'อนุญาตบาร์โค้ดที่ซ้ำกัน',
+ 'apostrophe' => "อัญประกาศเดี่ยว '",
+ 'backup_button' => 'สำรองข้อมูล',
+ 'backup_database' => 'สำรองฐานข้อมูล',
+ 'barcode' => 'ตั้งค่าระบบบาร์โค้ด',
+ 'barcode_company' => 'ชื่อร้านค้า',
+ 'barcode_configuration' => 'ตั้งค่าระบบบาร์โค้ด',
+ 'barcode_content' => 'รหัสที่พิมพ์',
+ 'barcode_first_row' => 'แถว 1',
+ 'barcode_font' => 'แบบอักษร',
+ 'barcode_formats' => 'รูปแบบอินพุต',
+ 'barcode_generate_if_empty' => 'Generate if empty',
+ 'barcode_height' => 'สูง (px)',
+ 'barcode_id' => 'รหัสสินค้า/ชื่อสินค้า',
+ 'barcode_info' => 'ตั้งค่าบาร์โค้ด',
+ 'barcode_layout' => 'โครงร่างการพิมพ์',
+ 'barcode_name' => 'สินค้า',
+ 'barcode_number' => 'UPC/EAN/ISBN',
+ 'barcode_number_in_row' => 'จำนวนดวงใน 1 แถว',
+ 'barcode_page_cellspacing' => 'ระยะห่างต่อดวง',
+ 'barcode_page_width' => 'ความกว้างในหน้า',
+ 'barcode_price' => 'ราคา',
+ 'barcode_second_row' => 'แถว 2',
+ 'barcode_third_row' => 'แถว 3',
+ 'barcode_tooltip' => 'คำเตือน: คุณสมบัตินี้สามารถทำให้เกิดรายการที่ซ้ำกันที่จะนำเข้าหรือสร้าง ห้ามใช้หากคุณไม่ต้องการบาร์โค้ดที่ซ้ำกัน',
+ 'barcode_type' => 'ประเภทบาร์โค้ด',
+ 'barcode_width' => 'กว้าง (px)',
+ 'bottom' => 'ด้านล่าง',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'ทศนิยมแบบการเงินสด',
+ 'cash_decimals_tooltip' => 'ถ้าทศนิยมแบบเงินสดและทศนิยมแบบสกุลเงินเหมือนกันจะไม่มีการปัดเศษเงินสด',
+ 'cash_rounding' => 'การปัดเศษทางการเงิน',
+ 'category_dropdown' => 'แสดงกลุ่มเป็นแบบดรอปดาวน์',
+ 'center' => 'กึ่งกลาง',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'จุลภาค',
+ 'company' => 'ชื่อร้านค้า',
+ 'company_avatar' => '',
+ 'company_change_image' => 'เปลี่ยนรูป',
+ 'company_logo' => 'ภาพโลโก้',
+ 'company_remove_image' => 'ลบรูป',
+ 'company_required' => 'ชื่อร้านค้าต้องกรอก',
+ 'company_select_image' => 'เลือกรูป',
+ 'company_website_url' => 'ที่อยู่เว็บไซต์ร้านค้าไม่ถูกต้อง (เช่น http://...)',
+ 'country_codes' => 'รหัสประเทศ',
+ 'country_codes_tooltip' => 'รายการรหัสประเทศที่คั่นด้วยคอมม่าสำหรับการค้นหาโดยชื่อที่อยู่',
+ 'currency_code' => 'รหัสสกุลเงิน',
+ 'currency_decimals' => 'ทศนิยมแบบการเงิน',
+ 'currency_symbol' => 'สัญลักษณ์ค่าเงิน',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'รางวัล',
+ 'customer_reward_duplicate' => 'รางวัลต้องไม่ซ้ำกัน',
+ 'customer_reward_enable' => 'เปิดใช้งานรางวัลของลูกค้า',
+ 'customer_reward_invalid_chars' => "รางวัลไม่สามารถมี '_' ได้",
+ 'customer_reward_required' => 'รางวัลเป็นฟิลด์บังคับ',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => 'ตัวกรองวันที่และเวลา',
+ 'datetimeformat' => 'รูปแบบวันและเวลา',
+ 'decimal_point' => 'จุดทศนิยม',
+ 'default_barcode_font_size_number' => 'ค่าบาร์โค้ดจะต้องเป็นตัวเลข',
+ 'default_barcode_font_size_required' => 'ต้องระบุขนาดตัวบาร์โค้ดเริ่มต้น',
+ 'default_barcode_height_number' => 'ความสูงของบาร์โค้ดต้องเป็นตัวเลข',
+ 'default_barcode_height_required' => 'ต้องระบุความสูงของบาร์โค้ด',
+ 'default_barcode_num_in_row_number' => 'บาร์โค้ดในแถวจะต้องเป็นตัวเลข',
+ 'default_barcode_num_in_row_required' => 'ต้องระบุค่าบาร์โค้ด',
+ 'default_barcode_page_cellspacing_number' => 'The default barcode page cellspacing must be a number',
+ 'default_barcode_page_cellspacing_required' => 'The default barcode page cellspacing is a required field',
+ 'default_barcode_page_width_number' => 'The default barcode page width must be a number',
+ 'default_barcode_page_width_required' => 'The default barcode page width is a required field',
+ 'default_barcode_width_number' => 'The default barcode width must be a number',
+ 'default_barcode_width_required' => 'The default barcode width is a required field',
+ 'default_item_columns' => 'คอลัมน์รายการที่แสดงเป็นค่าเริ่มต้น',
+ 'default_origin_tax_code' => 'รหัสภาษีที่เป็นค่าเริ่มต้น',
+ 'default_receivings_discount' => 'ส่วนลดที่เป็นค่าเริ่มต้นที่จะได้รับ',
+ 'default_receivings_discount_number' => 'การรับส่วนลดที่เป็นค่าเริ่มต้นต้องเป็นตัวเลข',
+ 'default_receivings_discount_required' => 'การรับส่วนลดที่เป็นค่าเริ่มต้นจำเป็นต้องระบุ',
+ 'default_sales_discount' => 'ส่วนลดการขายที่เป็นค่าเริ่มต้น',
+ 'default_sales_discount_number' => 'ส่วนลดการขายเริ่มต้นจะต้องเป็นตัวเลข',
+ 'default_sales_discount_required' => 'ส่วนลดการขายเริ่มต้นเป็นจำเป็นต้องมีข้อมูล',
+ 'default_tax_category' => 'หมวดหมู่ภาษีที่เป็นค่าเริ่มต้น',
+ 'default_tax_code' => 'รหัสภาษีที่เป็นค่าเริ่มต้น',
+ 'default_tax_jurisdiction' => 'เขตพื้นที่กฎหมายภาษีที่เป็นค่าเริ่มต้น',
+ 'default_tax_name_number' => 'ชื่อภาษีที่เป็นค่าเริ่มต้นจะต้องเป็นตัวอักษร',
+ 'default_tax_name_required' => 'ชื่อภาษีเริ่มต้นจำเป็นต้องมีข้อมูล',
+ 'default_tax_rate' => 'อัตราภาษีเริ่มต้น %',
+ 'default_tax_rate_1' => 'อัตราภาษีลำดับที่ 1',
+ 'default_tax_rate_2' => 'อัตราภาษีลำดับที่ 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'อัตราภาษีเริ่มต้นต้องเป็นตัวเลข',
+ 'default_tax_rate_required' => 'อัตราภาษีเริ่มต้นต้องกรอก',
+ 'derive_sale_quantity' => 'จำนวนปริมาณการขายที่ได้รับ',
+ 'derive_sale_quantity_tooltip' => 'หากทำเครื่องหมาย ระบบจะระบุประเภทรายการใหม่สำหรับรายการตามจำนวนที่เพิ่มขึ้น',
+ 'dinner_table' => 'โต๊ะ',
+ 'dinner_table_duplicate' => 'โต๊ะจะต้องไม่ซ้ำกัน',
+ 'dinner_table_enable' => 'เปิดใช้งานบริการโต๊ะนั่งทาน',
+ 'dinner_table_invalid_chars' => "ชื่อโต๊ะจะต้องไม่มีเครื่องหมาย '_' อยู่",
+ 'dinner_table_required' => 'โต๊ะจำเป็นต้องระบุค่า',
+ 'dot' => 'จุด',
+ 'email' => 'อีเมล์',
+ 'email_configuration' => 'ตั้งค่าอีเมล์',
+ 'email_mailpath' => 'ที่อยู่ส่งเมล์',
+ 'email_protocol' => 'โปรโตคอล',
+ 'email_receipt_check_behaviour' => 'ทำเครื่องหมายรับอีเมล',
+ 'email_receipt_check_behaviour_always' => 'ตรวจสอบอยู่เสมอ',
+ 'email_receipt_check_behaviour_last' => 'จำการเลือกสุดท้าย',
+ 'email_receipt_check_behaviour_never' => 'ไม่ถูกตรวจสอบเสมอ',
+ 'email_smtp_crypto' => 'การเข้ารหัสของเอสเอ็มทีพี',
+ 'email_smtp_host' => 'เซอร์เวอร์เอสเอ็มทีพี',
+ 'email_smtp_pass' => 'รหัสผ่านเอสเอ็มทีพี',
+ 'email_smtp_port' => 'เอสเอ็มทีพีพอร์ต',
+ 'email_smtp_timeout' => 'ระยะเวลารอคอยของเอสเอ็มทีพี',
+ 'email_smtp_user' => 'ชื่อผู้ใช้งานของเอสเอ็มทีพี',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'บังคับความเป็นส่วนตัว',
+ 'enforce_privacy_tooltip' => 'ปกป้องความเป็นส่วนตัวของลูกค้าที่บังคับใช้การตรวจข้อมูลในกรณีที่ข้อมูลถูกลบ',
+ 'fax' => 'แฟ็กซ์',
+ 'file_perm' => 'มีปัญหาเกี่ยวกับการอนุญาตของไฟล์ โปรดแก้ไขและโหลดหน้านี้ใหม่อีกครั้ง',
+ 'financial_year' => 'เริ่มปีงบประมาณ',
+ 'financial_year_apr' => 'วันที่ 1 เมษายน',
+ 'financial_year_aug' => 'วันที่ 1 สิงหาคม',
+ 'financial_year_dec' => 'วันที่ 1 ธันวาคม',
+ 'financial_year_feb' => 'วันที่ 1 กุมภาพันธ์',
+ 'financial_year_jan' => 'วันที่ 1 มกราคม',
+ 'financial_year_jul' => 'วันที่ 1 กรกฏาคม',
+ 'financial_year_jun' => 'วันที่ 1 มิถุนายน',
+ 'financial_year_mar' => 'วันที่ 1 มีนาคม',
+ 'financial_year_may' => 'วันที่ 1 พฤษภาคม',
+ 'financial_year_nov' => 'วันที่ 1 พฤศจิกายน',
+ 'financial_year_oct' => 'วันที่ 1 ตุลาคม',
+ 'financial_year_sep' => 'วันที่ 1 กันยายน',
+ 'floating_labels' => 'แสดงตัวเลข',
+ 'gcaptcha_enable' => 'ขอรหัสยืนยันใหม่ เพื่อเข้าระบบ',
+ 'gcaptcha_secret_key' => 'รหัสลับ สำหรับรหัสยืนยัน',
+ 'gcaptcha_secret_key_required' => 'จำเป็นต้องระบุ รหัสลับ สำหรับรหัสยืนยัน',
+ 'gcaptcha_site_key' => 'รหัสของเว็บเพจ สำหรับรหัสยืนยัน',
+ 'gcaptcha_site_key_required' => 'จำเป็นต้องระบุ รหัสของเว็บเพจ สำหรับรหัสยืนยัน',
+ 'gcaptcha_tooltip' => 'ปกป้องการเข้าสู่ระบบด้วย reCAPTCHA โปรดคลิกที่ไอคอนเพื่อรับ API key pair',
+ 'general' => 'การตั้งค่า',
+ 'general_configuration' => 'ตั้งค่าทั่วไป',
+ 'giftcard_number' => 'เลขที่บัตรของขวัญ',
+ 'giftcard_random' => 'สร้างหมายเลขแบบสุ่ม',
+ 'giftcard_series' => 'สร้างหมายเลขตามลำดับ',
+ 'image_allowed_file_types' => 'ประเภทไฟล์ที่ยอมรับ',
+ 'image_max_height_tooltip' => 'ค่าพิกเซลความสูงของรูปที่ยอมให้แนบไฟล์ได้',
+ 'image_max_size_tooltip' => 'ขนาดของไฟล์รูปที่ยอมให้แนบไฟล์ได้ในขนาดกิโลไบต์(kb.)',
+ 'image_max_width_tooltip' => 'ค่าพิกเซลความยาวของรูปที่ยอมให้แนบไฟล์ได้',
+ 'image_restrictions' => 'ข้อจำกัดของไฟล์รูปที่แนบ',
+ 'include_hsn' => 'เพิ่มการรองรับ HSN Codes',
+ 'info' => 'ข้อมูลร้านค้า',
+ 'info_configuration' => 'ข้อมูลร้านค้า',
+ 'input_groups' => 'นำเข้าแบบกลุ่ม',
+ 'integrations' => 'การเข้าร่วม',
+ 'integrations_configuration' => 'การเข้าร่วมกับบุคคลภายนอก',
+ 'invoice' => 'ใบแจ้งหนี้',
+ 'invoice_configuration' => 'ตั้งค่าการพิมพ์ใบแจ้งหนี้',
+ 'invoice_default_comments' => 'ค่าเริ่มต้นหมายเหตุในใบแจ้งหนี้',
+ 'invoice_email_message' => 'ต้นแบบใบแจ้งหนี้ (Email)',
+ 'invoice_enable' => 'เปิดการออกใบแจ้งหนี้',
+ 'invoice_printer' => 'เครื่องพิมพ์สำหรับการออกใบแจ้งหนี้',
+ 'invoice_type' => 'ชนิดของใบแจ้งหนี้',
+ 'is_readable' => 'สามารถอ่านได้ แต่สิทธิ์ไม่ถูกต้อง กรุณาตั้งค่าเป็น 640 หรือ 660 แล้วโหลดใหม่อีกครั้ง',
+ 'is_writable' => 'สามารถเขียนข้อมูลได้ แต่สิทธิ์ไม่ถูกต้อง ต้องสูงกว่าค่า 750 กรุณาตั้งค่าเป็น 750 แล้วโหลดใหม่อีกครั้ง',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'คำเตือน! ฟังก์ชันการทำงานที่ถูกปิดอยู่ จะสามารถใช้งานได้เมื่อติดตั้ง FireFox jsPrintSetup แล้วเท่านั้น, จะบันทึกข้อมูลหรือไม่?',
+ 'language' => 'ภาษา',
+ 'last_used_invoice_number' => 'หมายเลขใบแจ้งหนี้ฉบับล่าสุด',
+ 'last_used_quote_number' => 'หมายเลขใบเสนอราคาฉบับล่าสุด',
+ 'last_used_work_order_number' => 'หมายเลข W/O ฉบับล่าสุด',
+ 'left' => 'ซ้าย',
+ 'license' => 'ใบอนุญาต',
+ 'license_configuration' => 'รายละเอียดใบอนุญาต',
+ 'line_sequence' => 'เลขที่บรรทัด',
+ 'lines_per_page' => 'จำนวนบรรทัด/หน้า',
+ 'lines_per_page_number' => 'จำนวนบรรทัด/หน้า จะต้องเป็นตัวเลข',
+ 'lines_per_page_required' => 'จำเป็นต้องป้อน จำนวนบรรทัด/หน้า',
+ 'locale' => 'เขตพื้นที่',
+ 'locale_configuration' => 'ตั้งค่าเขตพื้นที่',
+ 'locale_info' => 'ข้อมูลเขตพื้นที่',
+ 'location' => 'สินค้าคงคลัง',
+ 'location_configuration' => 'ตำแหน่งสินค้าคงคลัง',
+ 'location_info' => 'ข้อมูลตำแหน่งสินค้าคงคลัง',
+ 'login_form' => 'รูปแบบแบบฟอร์มการเข้าระบบ',
+ 'logout' => 'ต้องการสำรองข้อมูลก่อนออกจากระบบหรือไม่? [OK] สำรองข้อมูล / [Cancel] ออกจากระบบ',
+ 'mailchimp' => 'ระบบส่งอีเมล์เมล์ชิม',
+ 'mailchimp_api_key' => 'API Key สำหรับระบบส่งอีเมล์เมล์ชิม',
+ 'mailchimp_configuration' => 'ตั้งค่าระบบส่งอีเมล์เมล์ชิม',
+ 'mailchimp_key_successfully' => 'API Key ถูกต้อง',
+ 'mailchimp_key_unsuccessfully' => 'API Key ไม่ถูกต้อง',
+ 'mailchimp_lists' => 'รายการระบบส่งอีเมล์เมล์ชิม',
+ 'mailchimp_tooltip' => 'คลิกที่ไอคอนเพื่อรับ API Key',
+ 'message' => 'ข้อความ',
+ 'message_configuration' => 'ตั้งค่าข้อความ',
+ 'msg_msg' => 'ข้อความที่ถูกบักทึกไว้',
+ 'msg_msg_placeholder' => 'สร้างข้อความ SMS template ที่นี่',
+ 'msg_pwd' => 'รหัสผ่านของ SMS-API',
+ 'msg_pwd_required' => 'จำเป็นต้องป้อน รหัสผ่านของ SMS-API',
+ 'msg_src' => 'ID ผู้ส่ง (SMS-API)',
+ 'msg_src_required' => 'จำเป็นต้องป้อน ID ผู้ส่ง',
+ 'msg_uid' => 'ชื่อผู้ใช้งานระบบ SMS-API',
+ 'msg_uid_required' => 'จำเป็นต้องป้อน ชื่อผู้ใช้งานระบบ SMS-API',
+ 'multi_pack_enabled' => 'หนึ่งรายการมีหลายชิ้น',
+ 'no_risk' => 'ไม่มีความเสี่ยงด้านความปลอดภัย / ความเสี่ยง',
+ 'none' => 'none',
+ 'notify_alignment' => 'แจ้งตำแหน่งแสดงการแจ้งเตือน',
+ 'number_format' => 'รูปแบบตัวเลข',
+ 'number_locale' => 'Localisation',
+ 'number_locale_invalid' => 'The entered locale is invalid. Check the link in the tooltip to find a sensible value',
+ 'number_locale_required' => 'Number Locale is a required field',
+ 'number_locale_tooltip' => 'Find a suitable locale through this link',
+ 'os_timezone' => 'เขตเวลาของระบบ OSPOS:',
+ 'ospos_info' => 'ข้อมูลการติดตั้งระบบ OSPOS',
+ 'payment_options_order' => 'ตัวเลือกการชำระเงิน',
+ 'payment_reference_code_length_limits' => 'รหัสอ้างอิงการชำระเงิน
ขีดจำกัดความยาว',
+ 'payment_reference_code_length_max_label' => 'สูงสุด',
+ 'payment_reference_code_length_min_label' => 'ต่ำสุด',
+ 'perm_risk' => 'การอนุญาตที่ไม่ถูกต้องทำให้ซอฟต์แวร์นี้ตกอยู่ในความเสี่ยง',
+ 'phone' => 'เบอร์โทรศัพท์',
+ 'phone_required' => 'เบอร์โทรต้องกรอก',
+ 'print_bottom_margin' => 'ขอบล่าง',
+ 'print_bottom_margin_number' => 'The default bottom margin must be a number',
+ 'print_bottom_margin_required' => 'The default bottom margin is a required field',
+ 'print_delay_autoreturn' => 'การส่งกลับอัตโนมัติของการขายที่ล่าช้า',
+ 'print_delay_autoreturn_number' => 'การส่งกลับอัตโนมัติของการขายที่ล่าช้าจำเป็นต้องระบุ',
+ 'print_delay_autoreturn_required' => 'การส่งกลับอัตโนมัติของการขายที่ล่าช้าต้องระบุเป็นตัวเลข',
+ 'print_footer' => 'พิมพ์ส่วนท้ายของเบราว์เซอร์',
+ 'print_header' => 'พิมพ์ส่วนหัวของเบราว์เซอร์',
+ 'print_left_margin' => 'ขอบด้านซ้าย',
+ 'print_left_margin_number' => 'ขอบด้านซ้ายค่าเริ่มต้นต้องเป็นตัวเลข',
+ 'print_left_margin_required' => 'จำเป็นต้องระบุขอบด้านซ้าย',
+ 'print_receipt_check_behaviour' => 'กล่องพิมพ์ใบเสร็จรับเงิน',
+ 'print_receipt_check_behaviour_always' => 'เลือกไว้ตลอด',
+ 'print_receipt_check_behaviour_last' => 'จดจำการเลือกสุดท้ายไว้',
+ 'print_receipt_check_behaviour_never' => 'ไม่เลือกไว้ตลอด',
+ 'print_right_margin' => 'ขอบด้านขวา',
+ 'print_right_margin_number' => 'ขอบด้านขวาค่าเริ่มต้นต้องเป็นตัวเลข',
+ 'print_right_margin_required' => 'ต้องระบุขอบด้านขวา',
+ 'print_silently' => 'แสดงกล่องโต้ตอบการพิมพ์',
+ 'print_top_margin' => 'ขอบด้านบน',
+ 'print_top_margin_number' => 'ขอบด้านบนค่าเริ่มต้นจะต้องเป็นตัวเลข',
+ 'print_top_margin_required' => 'ต้องระบุขอบด้านบน',
+ 'quantity_decimals' => 'ทศนิยมจำนวน',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'ค่าปริยายของความคิดเห็น',
+ 'receipt' => 'ใบเสร็จ',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'ตั้งค่าใบเสร็จ',
+ 'receipt_default' => 'ค่าเริ่มต้น',
+ 'receipt_font_size' => 'ขนาดของตัวอักษร',
+ 'receipt_font_size_number' => 'ขนาดตัวอักษรต้องเป็นตัวเลข',
+ 'receipt_font_size_required' => 'จำเป็นต้องระบุขนาดตัวอักษร',
+ 'receipt_info' => 'ข้อมูลการตั้งค่าใบเสร็จ',
+ 'receipt_printer' => 'เครื่องพิมพ์ตั๋ว',
+ 'receipt_short' => 'สั้น',
+ 'receipt_show_company_name' => 'แสดงชื่อบริษัท',
+ 'receipt_show_description' => 'แสดงรายละเอียด',
+ 'receipt_show_serialnumber' => 'แสดงหมายเลขซีเรียล',
+ 'receipt_show_tax_ind' => 'แสดงอัตราภาษี',
+ 'receipt_show_taxes' => 'แสดงภาษี',
+ 'receipt_show_total_discount' => 'แสดงส่วนลดทั้งหมด',
+ 'receipt_template' => 'ต้นแบบใบเสร็จ',
+ 'receiving_calculate_average_price' => 'คำนวณราคาเฉลี่ย (ได้รับมา)',
+ 'recv_invoice_format' => 'ใบส่งของ',
+ 'register_mode_default' => 'ค่าปริยายรูปแบบการลงทะเบียน',
+ 'report_an_issue' => 'รายงานปัญหา',
+ 'return_policy_required' => 'ต้องกรอกเงื่อนไขการคืนสินค้า',
+ 'reward' => 'คะแนนสะสม',
+ 'reward_configuration' => 'การตั้งค่าคะแนนสะสม',
+ 'right' => 'ถูกต้อง',
+ 'sales_invoice_format' => 'รหัสใบเสร็จ',
+ 'sales_quote_format' => 'รูปแบบใบเสนอราคาขาย',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => 'บันทึกข้อมูลร้านค้าเรียบร้อยแล้ว',
+ 'saved_unsuccessfully' => 'บันทึกข้อมูลร้านค้าไม่สำเร็จ',
+ 'security_issue' => 'คำเตือนช่องโหว่ด้านความปลอดภัย',
+ 'server_notice' => 'โปรดใช้ข้อมูลด้านล่างสำหรับการรายงานปัญหา',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'แสดงไอคอนสำนักงาน',
+ 'statistics' => 'ส่งยอดสถิติ',
+ 'statistics_tooltip' => 'ส่งข้อมูลสถิติเพื่อการพัฒนาและปรับปรุงความสามารถ',
+ 'stock_location' => 'สถานที่เก็บ',
+ 'stock_location_duplicate' => 'ที่ตั้งคลังสินค้าต้องไม่ซ้ำกัน',
+ 'stock_location_invalid_chars' => "ชื่อสต๊อกสถานที่เก็บสินค้าต้องไม่มีอักษรพิเศษ '_'",
+ 'stock_location_required' => 'จำเป็นต้องระบุสถานที่เก็บ',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'คอลัมน์ 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'รูปแบบข้อแนะนำในการค้นหา',
+ 'suggestions_second_column' => 'คอลัมน์ 2',
+ 'suggestions_third_column' => 'คอลัมน์ 3',
+ 'system_conf' => 'การตั้งค่าและกำหนดค่า',
+ 'system_info' => 'System Info',
+ 'table' => 'โต๊ะนั่งทาน',
+ 'table_configuration' => 'ตั้งค่าโต๊ะนั่งทาน',
+ 'takings_printer' => 'เลือกเครื่องพิมพ์',
+ 'tax' => 'ภาษี',
+ 'tax_category' => 'หมวดหมู่ภาษี',
+ 'tax_category_duplicate' => 'หมวดหมู่ภาษีที่ป้อน ซ้ำกับข้อมูลที่มีอยู่',
+ 'tax_category_invalid_chars' => 'หมวดหมู่ภาษีที่ป้อน ไม่ถูกต้อง',
+ 'tax_category_required' => 'หมวดหมู่ภาษี จำเป็นต้องป้อน',
+ 'tax_category_used' => 'ไม่สามารถลบ หมวดหมู่ภาษี ที่กำลังมีการใช้งานอยู่',
+ 'tax_configuration' => 'ตั้งค่าระบบภาษี',
+ 'tax_decimals' => 'จำนวนทศนิยมภาษี',
+ 'tax_id' => 'เลขประจำตัวผู้เสียภาษี',
+ 'tax_included' => 'รวมภาษีแล้ว',
+ 'theme' => 'Theme',
+ 'theme_preview' => 'ดูตัวอย่างธีม:',
+ 'thousands_separator' => 'ตัวคั่นหลักพัน',
+ 'timezone' => 'โซนเวลา',
+ 'timezone_error' => 'เขตเวลาของระบบ OSPOS แตกต่างกับเขตเวลาปัจจุบันของคุณ',
+ 'top' => 'ด้านบน',
+ 'use_destination_based_tax' => 'เปิดใช้ Destination-Based Tax',
+ 'user_timezone' => 'เขตเวลาปัจจุบัน:',
+ 'website' => 'เว็บไซต์',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'เปิดใช้ ใบสั่งงาน (WO)',
+ 'work_order_format' => 'รูปแบบ ใบสั่งงาน (WO)',
];
diff --git a/app/Language/th/Login.php b/app/Language/th/Login.php
index 8368a4fb2..72ed92fd4 100644
--- a/app/Language/th/Login.php
+++ b/app/Language/th/Login.php
@@ -1,26 +1,30 @@
"ฉันไม่ใช่หุ่นยนต์นะ",
- "go" => "เข้าสู่ระบบ",
- "invalid_gcaptcha" => "กรุณาแสดงตัวตนว่าคุณไม่ใช่หุ่นยนต์",
- "invalid_installation" => "การติดตั้งไม่ถูกต้องตรวจสอบการตั้งค่าที่ไฟล์ php.ini ของคุณ",
- "invalid_username_and_password" => "ชื่อผู้ใช้งานและ/หรือรหัสผ่านเข้าระบบไม่ถูกต้อง",
- "login" => "ลงชื่อเข้าใช้",
- "logout" => "ออกจากระบบ",
- "migration_needed" => "การย้ายฐานข้อมูลไปยัง {0} จะเริ่มต้นหลังจากเข้าสู่ระบบ",
- "migration_required" => "จําเป็นต้องมีการปรับปรุงฐานข้อมูล",
- "migration_auth_message" => "ผู้ดูแลระบบจำเป็นต้องมีสิทธิ์ในการปรับปรุงฐานข้อมูลเวอร์ชั่น {0} กรุณาเข้าระบบเพื่อดำเนินการต่อ",
- "migration_complete_redirect" => "ทำการปรับปรุงฐานข้อมูลเรียบร้อย กำลังดำเนินการไปหน้าเข้าสู่ระบบ ...",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "password" => "รหัสผ่าน",
- "required_username" => "จำเป็นต้องระบุชื่อผู้ใช้งาน",
- "username" => "ชื่อผู้ใช้",
- "welcome" => "ยินดีต้อนรับสู่ {0}!",
+ "gcaptcha" => "ฉันไม่ใช่หุ่นยนต์นะ",
+ "go" => "เข้าสู่ระบบ",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "กรุณาแสดงตัวตนว่าคุณไม่ใช่หุ่นยนต์",
+ "invalid_installation" => "การติดตั้งไม่ถูกต้องตรวจสอบการตั้งค่าที่ไฟล์ php.ini ของคุณ",
+ "invalid_username_and_password" => "ชื่อผู้ใช้งานและ/หรือรหัสผ่านเข้าระบบไม่ถูกต้อง",
+ "login" => "ลงชื่อเข้าใช้",
+ "logout" => "ออกจากระบบ",
+ "migrating_database" => "กำลังย้ายฐานข้อมูล",
+ "migration_auth_message" => "ผู้ดูแลระบบจำเป็นต้องมีสิทธิ์ในการปรับปรุงฐานข้อมูลเวอร์ชั่น {0} กรุณาเข้าระบบเพื่อดำเนินการต่อ",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "ย้ายฐานข้อมูลสำเร็จแล้ว!",
+ "migration_complete_redirect" => "ทำการปรับปรุงฐานข้อมูลเรียบร้อย กำลังดำเนินการไปหน้าเข้าสู่ระบบ ...",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "การย้ายฐานข้อมูลไปยัง {0} จะเริ่มต้นหลังจากเข้าสู่ระบบ",
+ "migration_required" => "จําเป็นต้องมีการปรับปรุงฐานข้อมูล",
+ "migration_running" => "",
+ "password" => "รหัสผ่าน",
+ "required_username" => "จำเป็นต้องระบุชื่อผู้ใช้งาน",
+ "username" => "ชื่อผู้ใช้",
+ "welcome" => "ยินดีต้อนรับสู่ {0}!"
];
diff --git a/app/Language/th/Sales.php b/app/Language/th/Sales.php
index 7a41fe767..70b36c8b8 100644
--- a/app/Language/th/Sales.php
+++ b/app/Language/th/Sales.php
@@ -1,232 +1,236 @@
"คะแนนที่มี",
- 'rewards_package' => "คะแนนสะสม",
- 'rewards_remaining_balance' => "คะแนนสะสมคงเหลือ ",
- 'account_number' => "บัญชี #",
- 'add_payment' => "เพิ่มบิล",
- 'amount_due' => "ยอดค้างชำระ",
- 'amount_tendered' => "ชำระเข้ามา",
- 'authorized_signature' => "ลายเซ็นผู้มีอำนาจ",
- 'cancel_sale' => "ยกเลิกการขาย",
- 'cash' => "เงินสด",
- 'cash_1' => "",
- 'cash_2' => "",
- 'cash_3' => "",
- 'cash_4' => "",
- 'cash_adjustment' => "การปรับเงินสดขาย",
- 'cash_deposit' => "ฝากเงินสด",
- 'cash_filter' => "เงินสด",
- 'change_due' => "เงินทอน",
- 'change_price' => "เปลี่ยนราคาขาย",
- 'check' => "โอนเงิน/พร้อมเพย์/เช็ค",
- 'check_balance' => "เช็คยอดคงเหลือ",
- 'check_filter' => "ตรวจสอบ",
- 'close' => "",
- 'comment' => "หมายเหตุ",
- 'comments' => "หมายเหตุ",
- 'company_name' => "",
- 'complete' => "",
- 'complete_sale' => "จบการขาย",
- 'confirm_cancel_sale' => "แน่ใจหรือไม่ที่จะล้างการขายนี้? ทุกรายการจะถูกลบทั้งหมด",
- 'confirm_delete' => "โปรดยืนยันการลบรายการขายที่เลือกไว้ ?",
- 'confirm_restore' => "คุณแน่ใจหรือไม่ว่าต้องการยกเลิกการขายที่เลือกไว้?",
- 'credit' => "เครดิตการ์ด",
- 'credit_deposit' => "เงินฝากเครดิต",
- 'credit_filter' => "บัตรเครติด",
- 'current_table' => "",
- 'customer' => "ลูกค้า",
- 'customer_address' => "Customer Address",
- 'customer_discount' => "ส่วนลด",
- 'customer_email' => "Customer Email",
- 'customer_location' => "Customer Location",
- 'customer_mailchimp_status' => "สถานะของระบบส่งเมล์เมล์ชิม",
- 'customer_optional' => "(ต้องระบุวันที่ชำระเงิน)",
- 'customer_required' => "(ต้องระบุ)",
- 'customer_total' => "Total",
- 'customer_total_spent' => "",
- 'daily_sales' => "",
- 'date' => "วันที่ขาย",
- 'date_range' => "ระหว่างวันที่",
- 'date_required' => "กรุณากรอกวันที่ให้ถูกต้อง",
- 'date_type' => "กรุณากรอกข้อมูลในช่องวันที่",
- 'debit' => "บัตรประชารัฐ/เดบิตการ์ด",
- 'debit_filter' => "",
- 'delete' => "อนุญาตให้ลบ",
- 'delete_confirmation' => "แน่ใจหรือไม่ที่จะลบรายการขายนี้, ลบแล้วไม่สามารถเรียกกลับคืนใด้",
- 'delete_entire_sale' => "ลบการขายทั้งหมด",
- 'delete_successful' => "คุณลบการขายสำเร็จ",
- 'delete_unsuccessful' => "คุณลบการขายไม่สำเร็จ",
- 'description_abbrv' => "รายละเอียด",
- 'discard' => "ยกเลิก",
- 'discard_quote' => "",
- 'discount' => "ส่วนลด %",
- 'discount_included' => "% ส่วนลด",
- 'discount_short' => "%",
- 'due' => "วันครบกำหนด",
- 'due_filter' => "วันที่ครบกำหนด",
- 'edit' => "แก้ไข",
- 'edit_item' => "แก้ไขสินค้า",
- 'edit_sale' => "แก้ไขการขาย",
- 'email_receipt' => "อีเมลบิล",
- 'employee' => "พนักงาน",
- 'entry' => "การนำเข้า",
- 'error_editing_item' => "แก้ไขสินค้าล้มเหลว",
- 'negative_price_invalid' => "ราคาไม่สามารถเป็นค่าติดลบได้",
- 'negative_quantity_invalid' => "จำนวนไม่สามารถเป็นค่าติดลบได้",
- 'negative_discount_invalid' => "ส่วนลดไม่สามารถเป็นค่าติดลบได้",
- 'discount_percent_exceeds_100' => "ส่วนลดเปอร์เซ็นต์มีค่าได้ไม่เกิน 100%",
- 'discount_exceeds_item_total' => "ส่วนลดต้องไม่เกินจำนวนรายการขายทั้งหมด",
- 'negative_total_invalid' => "",
- 'find_or_scan_item' => "ค้นหาสินค้า",
- 'find_or_scan_item_or_receipt' => "ค้นหา หรือ แสกนรายการ หรือ ใบเสร็จ",
- 'giftcard' => "บัตรของขวัญ",
- 'giftcard_balance' => "ยอดคงเหลือบัตรของขวัญ",
- 'giftcard_filter' => "",
- 'giftcard_number' => "เลขที่บัตรของขวัญ",
- 'group_by_category' => "กลุ่มตามหมวดหมู่",
- 'group_by_type' => "กลุ่มตามประเภท",
- 'hsn' => "HSN",
- 'id' => "เลขที่ขาย",
- 'include_prices' => "รวมในราคา?",
- 'invoice' => "ใบแจ้งหนี้",
- 'invoice_confirm' => "ใบแจ้งหนี้นี้จะถูกส่งไปที่",
- 'invoice_enable' => "เลขที่ใบแจ้งหนี้",
- 'invoice_filter' => "ใบแจ้งหนี้",
- 'invoice_no_email' => "ลูกค้ารายนี้ไม่มีที่อยู่อีเมล",
- 'invoice_number' => "เลขใบแจ้งหนี้ #",
- 'invoice_number_duplicate' => "ใบแจ้งหนี้หมายเลข {0} จะต้องไม่ซ้ำกัน",
- 'invoice_sent' => "ส่งใบแจ้งหนี้ไปที่",
- 'invoice_total' => "ยอดรวมในใบแจ้งหนี้",
- 'invoice_type_custom_invoice' => "ใบแจ้งหนี้ที่กำหนดเอง (custom_invoice.php)",
- 'invoice_type_custom_tax_invoice' => "ใบกำกับภาษีที่กำหนดเอง (custom_tax_invoice.php)",
- 'invoice_type_invoice' => "ใบแจ้งหนี้ (invoice.php)",
- 'invoice_type_tax_invoice' => "ใบกำกับภาษี (tax_invoice.php)",
- 'invoice_unsent' => "ไม่สามารถส่งใบแจ้งหนี้ถึง",
- 'invoice_update' => "คำนวณใหม่",
- 'item_insufficient_of_stock' => "จำนวนสินค้าไม่เพียงพอ",
- 'item_name' => "ชื่อสินค้า",
- 'item_number' => "สินค้า #",
- 'item_out_of_stock' => "สินค้าจำหน่ายหมด",
- 'key_browser' => "ความช่วยเหลือ",
- 'key_cancel' => "ยกเลิกใบเสนอราคา/ใบแจ้งหนี้ /ใบการขาย นี้",
- 'key_customer_search' => "ค้นหาลูกค้า",
- 'key_finish_quote' => "จบใบเสนอราคา/ใบแจ้งหนี้โดยไม่ต้องชำระเงิน",
- 'key_finish_sale' => "เพิ่มการชำระเงินและใบแจ้งหนี้ /ใบรายการขาย",
- 'key_full' => "เปิดแบบเต็มหน้าจอ",
- 'key_function' => "ฟังก์ชั่น",
- 'key_help' => "คำสั่งลัดงานขาย",
- 'key_help_modal' => "เปิดหน้าต่างคำสั่งลัดงานขาย",
- 'key_in' => "ขยายเข้า",
- 'key_item_search' => "ค้นหารายการขาย",
- 'key_out' => "ขยายออก",
- 'key_payment' => "เพิ่มการชำระเงิน",
- 'key_print' => "พิมพ์หน้านี้",
- 'key_restore' => "คืนการแสดงผลแบบดั้งเดิม/ขยาย",
- 'key_search' => "ค้นหาตารางรายงาน",
- 'key_suspend' => "พักรายการขายปัจจุบัน",
- 'key_suspended' => "แสดงรายการขายที่พักไว้",
- 'key_system' => "ทางลัดระบบ",
- 'key_tendered' => "แก้ไขจำนวนเงินรับมา",
- 'key_title' => "ทางลัดคียบอร์ดงานขาย",
- 'mc' => "",
- 'mode' => "รูปแบบการลงทะเบียน",
- 'must_enter_numeric' => "จำนวนที่ถุกประมูลต้องใส่ข้อมุลที่เปนตัวเลข",
- 'must_enter_numeric_giftcard' => "เลขที่บัตรของขวัญ ต้องใส่ตัวเลขเท่านั้น",
- 'new_customer' => "ลูกค้าใหม่",
- 'new_item' => "สินค้าใหม่",
- 'no_description' => "ไม่ระบุรายละเอียด",
- 'no_filter' => "ทั้งหมด",
- 'no_items_in_cart' => "ไม่พบสินค้าในตระกร้า",
- 'no_sales_to_display' => "ไม่มีการขายที่จะแสดง",
- 'none_selected' => "คุณยังไม่ได้เลือกการขายที่จะลบ",
- 'nontaxed_ind' => " . ",
- 'not_authorized' => "การกระทำนี้ไม่ได้รับอนุญาต",
- 'one_or_multiple' => "การขาย",
- 'payment' => "รูปแบบชำระเงิน",
- 'payment_amount' => "จำนวน",
- 'payment_not_cover_total' => "จำนวนเงินที่ชำระต้องมากกว่าหรือเท่ากับยอดรวม",
- 'payment_type' => "ชำระโดย",
- 'payments' => "",
- 'payments_total' => "ยอดชำระแล้ว",
- 'price' => "ราคา",
- 'print_after_sale' => "พิมพ์บิลหลังการขาย",
- 'quantity' => "จำนวน",
- 'quantity_less_than_reorder_level' => "คำเตือน ถ้าจำนวนของไม่เพียงพอกับความต้องการหรือไม่ตรงกับยอดในบันชี ก็สามารถทำการขายได้ แต่ต้องเชคปริมานสินค้าคงคลัง",
- 'quantity_less_than_zero' => "คำเตือน: ถ้าจำนวนของไม่เพียงพอกับความต้องการหรือไม่ตรงกับยอดในบัญชี ก็สามารถทำการขายได้ แต่ต้องตรวจสอบปริมาญสินค้าคงคลังก่อน",
- 'quantity_of_items' => "ปริมาณของ {0} รายการ",
- 'quote' => "ใบเสนอราคา",
- 'quote_number' => "หมายเลขอ้างอิง",
- 'quote_number_duplicate' => "หมายเลขอ้างอิงต้องไม่ซ้ำกัน",
- 'quote_sent' => "ส่งการอ้างอิงถึง",
- 'quote_unsent' => "ส่งการอ้างอิงถึงผิดพลาด",
- 'receipt' => "บิลขาย",
- 'receipt_no_email' => "ลูกค้านี้ไม่มีที่อยู่อีเมล์",
- 'receipt_number' => "จุดขาย#",
- 'receipt_sent' => "ส่งใบเสร็จไปที่",
- 'receipt_unsent' => "ไม่สามารถส่งใบเสร็จไปที่",
- 'refund' => "ประเภทการยกเลิกการขาย",
- 'register' => "ลงทะเบียนขาย",
- 'remove_customer' => "ลบลูกค้า",
- 'remove_discount' => "",
- 'return' => "คืน",
- 'rewards' => "คะแนนสะสม",
- 'rewards_balance' => "คะแนนสะสมคงเหลือ",
- 'sale' => "ขาย",
- 'sale_by_invoice' => "การขายโดยใบแจ้งหนี้",
- 'sale_for_customer' => "ลูกค้า:",
- 'sale_time' => "เวลา",
- 'sales_tax' => "ภาษีการขาย",
- 'sales_total' => "",
- 'select_customer' => "เลือกลูกค้า (Optional)",
- 'send_invoice' => "ส่งใบแจ้งหนี้",
- 'send_quote' => "ส่งใบเสนอราคา",
- 'send_receipt' => "ส่งใบเสร็จ",
- 'send_work_order' => "ส่งคำสั่งงาน",
- 'serial' => "หมายเลขซีเรียล",
- 'service_charge' => "",
- 'show_due' => "",
- 'show_invoice' => "ใบแจ้งหนี้",
- 'show_receipt' => "ใบเสร็จ",
- 'start_typing_customer_name' => "เริ่มต้นพิมพ์ชื่อลูกค้า...",
- 'start_typing_item_name' => "เริ่มต้นพิมพ์ชื่อสินค้า หรือ สแกนบาร์โค๊ด...",
- 'stock' => "คลังสินค้า",
- 'stock_location' => "ที่เก็บ",
- 'sub_total' => "ยอดรวมย่อย",
- 'successfully_deleted' => "ลบการขายสมยูรณ์",
- 'successfully_restored' => "คุณกู้คืนสำเร็จแล้ว",
- 'successfully_suspended_sale' => "การขายของคุณถูกระงับเรียบร้อย",
- 'successfully_updated' => "อัพเดทการขายสมบูรณ์",
- 'suspend_sale' => "พักรายการ",
- 'suspended_doc_id' => "รหัสเอกสาร",
- 'suspended_sale_id' => "รหัสการขายที่ถูกพัก",
- 'suspended_sales' => "การขายที่พักไว้",
- 'table' => "โต๊ะ",
- 'takings' => "การขายประจำวัน",
- 'tax' => "ภาษี",
- 'tax_id' => "รหัสภาษี",
- 'tax_invoice' => "ใบกำกับภาษี",
- 'tax_percent' => "ภาษี %",
- 'taxed_ind' => "ภ",
- 'total' => "ยอดรวม",
- 'total_tax_exclusive' => "ยอดไม่รวมภาษี",
- 'transaction_failed' => "การดำเนินการขายล้มเหลว",
- 'unable_to_add_item' => "เพิ่มรายการไปยังการขายล้มเหลว",
- 'unsuccessfully_deleted' => "ลบการขายไม่สำเร็จ",
- 'unsuccessfully_restored' => "การคืนค่ารายการขายล้มเหลว",
- 'unsuccessfully_suspended_sale' => "การขายของคุณถูกระงับเรียบร้อย",
- 'unsuccessfully_updated' => "อัพเดทการขายไม่สมบูรณ์",
- 'unsuspend' => "ยกเลิกการระงับ",
- 'unsuspend_and_delete' => "ยกเลิกการระงับ และ ลบ",
- 'update' => "แก้ไข",
- 'upi' => "ยูพีไอ",
- 'visa' => "",
- 'wholesale' => "",
- 'work_order' => "คำสั่งงาน",
- 'work_order_number' => "หมายเลขคำสั่งงาน",
- 'work_order_number_duplicate' => "หมายเลขคำสั่งงานต้องไม่ซ้ำกัน",
- 'work_order_sent' => "คำสั่งงานส่งถึง",
- 'work_order_unsent' => "ส่งคำสั่งงานล้มเหลว",
- 'selected_customer' => "ลูกค้าที่เลือก",
+ 'account_number' => 'บัญชี #',
+ 'add_payment' => 'เพิ่มบิล',
+ 'amount_due' => 'ยอดค้างชำระ',
+ 'amount_tendered' => 'ชำระเข้ามา',
+ 'authorized_signature' => 'ลายเซ็นผู้มีอำนาจ',
+ 'cancel_sale' => 'ยกเลิกการขาย',
+ 'cash' => 'เงินสด',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'การปรับเงินสดขาย',
+ 'cash_deposit' => 'ฝากเงินสด',
+ 'cash_filter' => 'เงินสด',
+ 'change_due' => 'เงินทอน',
+ 'change_price' => 'เปลี่ยนราคาขาย',
+ 'check' => 'โอนเงิน/พร้อมเพย์/เช็ค',
+ 'check_balance' => 'เช็คยอดคงเหลือ',
+ 'check_filter' => 'ตรวจสอบ',
+ 'close' => '',
+ 'comment' => 'หมายเหตุ',
+ 'comments' => 'หมายเหตุ',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'จบการขาย',
+ 'confirm_cancel_sale' => 'แน่ใจหรือไม่ที่จะล้างการขายนี้? ทุกรายการจะถูกลบทั้งหมด',
+ 'confirm_delete' => 'โปรดยืนยันการลบรายการขายที่เลือกไว้ ?',
+ 'confirm_restore' => 'คุณแน่ใจหรือไม่ว่าต้องการยกเลิกการขายที่เลือกไว้?',
+ 'credit' => 'เครดิตการ์ด',
+ 'credit_deposit' => 'เงินฝากเครดิต',
+ 'credit_filter' => 'บัตรเครติด',
+ 'current_table' => '',
+ 'customer' => 'ลูกค้า',
+ 'customer_address' => 'Customer Address',
+ 'customer_discount' => 'ส่วนลด',
+ 'customer_email' => 'Customer Email',
+ 'customer_location' => 'Customer Location',
+ 'customer_mailchimp_status' => 'สถานะของระบบส่งเมล์เมล์ชิม',
+ 'customer_optional' => '(ต้องระบุวันที่ชำระเงิน)',
+ 'customer_required' => '(ต้องระบุ)',
+ 'customer_total' => 'Total',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'คะแนนที่มี',
+ 'daily_sales' => '',
+ 'date' => 'วันที่ขาย',
+ 'date_range' => 'ระหว่างวันที่',
+ 'date_required' => 'กรุณากรอกวันที่ให้ถูกต้อง',
+ 'date_type' => 'กรุณากรอกข้อมูลในช่องวันที่',
+ 'debit' => 'บัตรประชารัฐ/เดบิตการ์ด',
+ 'debit_filter' => '',
+ 'delete' => 'อนุญาตให้ลบ',
+ 'delete_confirmation' => 'แน่ใจหรือไม่ที่จะลบรายการขายนี้, ลบแล้วไม่สามารถเรียกกลับคืนใด้',
+ 'delete_entire_sale' => 'ลบการขายทั้งหมด',
+ 'delete_successful' => 'คุณลบการขายสำเร็จ',
+ 'delete_unsuccessful' => 'คุณลบการขายไม่สำเร็จ',
+ 'description_abbrv' => 'รายละเอียด',
+ 'discard' => 'ยกเลิก',
+ 'discard_quote' => '',
+ 'discount' => 'ส่วนลด %',
+ 'discount_exceeds_item_total' => 'ส่วนลดต้องไม่เกินจำนวนรายการขายทั้งหมด',
+ 'discount_included' => '% ส่วนลด',
+ 'discount_percent_exceeds_100' => 'ส่วนลดเปอร์เซ็นต์มีค่าได้ไม่เกิน 100%',
+ 'discount_short' => '%',
+ 'due' => 'วันครบกำหนด',
+ 'due_filter' => 'วันที่ครบกำหนด',
+ 'edit' => 'แก้ไข',
+ 'edit_item' => 'แก้ไขสินค้า',
+ 'edit_sale' => 'แก้ไขการขาย',
+ 'email_receipt' => 'อีเมลบิล',
+ 'employee' => 'พนักงาน',
+ 'entry' => 'การนำเข้า',
+ 'error_editing_item' => 'แก้ไขสินค้าล้มเหลว',
+ 'find_or_scan_item' => 'ค้นหาสินค้า',
+ 'find_or_scan_item_or_receipt' => 'ค้นหา หรือ แสกนรายการ หรือ ใบเสร็จ',
+ 'giftcard' => 'บัตรของขวัญ',
+ 'giftcard_balance' => 'ยอดคงเหลือบัตรของขวัญ',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'เลขที่บัตรของขวัญ',
+ 'group_by_category' => 'กลุ่มตามหมวดหมู่',
+ 'group_by_type' => 'กลุ่มตามประเภท',
+ 'hsn' => 'HSN',
+ 'id' => 'เลขที่ขาย',
+ 'include_prices' => 'รวมในราคา?',
+ 'invoice' => 'ใบแจ้งหนี้',
+ 'invoice_confirm' => 'ใบแจ้งหนี้นี้จะถูกส่งไปที่',
+ 'invoice_enable' => 'เลขที่ใบแจ้งหนี้',
+ 'invoice_filter' => 'ใบแจ้งหนี้',
+ 'invoice_no_email' => 'ลูกค้ารายนี้ไม่มีที่อยู่อีเมล',
+ 'invoice_number' => 'เลขใบแจ้งหนี้ #',
+ 'invoice_number_duplicate' => 'ใบแจ้งหนี้หมายเลข {0} จะต้องไม่ซ้ำกัน',
+ 'invoice_sent' => 'ส่งใบแจ้งหนี้ไปที่',
+ 'invoice_total' => 'ยอดรวมในใบแจ้งหนี้',
+ 'invoice_type_custom_invoice' => 'ใบแจ้งหนี้ที่กำหนดเอง (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'ใบกำกับภาษีที่กำหนดเอง (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'ใบแจ้งหนี้ (invoice.php)',
+ 'invoice_type_tax_invoice' => 'ใบกำกับภาษี (tax_invoice.php)',
+ 'invoice_unsent' => 'ไม่สามารถส่งใบแจ้งหนี้ถึง',
+ 'invoice_update' => 'คำนวณใหม่',
+ 'item_insufficient_of_stock' => 'จำนวนสินค้าไม่เพียงพอ',
+ 'item_name' => 'ชื่อสินค้า',
+ 'item_number' => 'สินค้า #',
+ 'item_out_of_stock' => 'สินค้าจำหน่ายหมด',
+ 'key_browser' => 'ความช่วยเหลือ',
+ 'key_cancel' => 'ยกเลิกใบเสนอราคา/ใบแจ้งหนี้ /ใบการขาย นี้',
+ 'key_customer_search' => 'ค้นหาลูกค้า',
+ 'key_finish_quote' => 'จบใบเสนอราคา/ใบแจ้งหนี้โดยไม่ต้องชำระเงิน',
+ 'key_finish_sale' => 'เพิ่มการชำระเงินและใบแจ้งหนี้ /ใบรายการขาย',
+ 'key_full' => 'เปิดแบบเต็มหน้าจอ',
+ 'key_function' => 'ฟังก์ชั่น',
+ 'key_help' => 'คำสั่งลัดงานขาย',
+ 'key_help_modal' => 'เปิดหน้าต่างคำสั่งลัดงานขาย',
+ 'key_in' => 'ขยายเข้า',
+ 'key_item_search' => 'ค้นหารายการขาย',
+ 'key_out' => 'ขยายออก',
+ 'key_payment' => 'เพิ่มการชำระเงิน',
+ 'key_print' => 'พิมพ์หน้านี้',
+ 'key_restore' => 'คืนการแสดงผลแบบดั้งเดิม/ขยาย',
+ 'key_search' => 'ค้นหาตารางรายงาน',
+ 'key_suspend' => 'พักรายการขายปัจจุบัน',
+ 'key_suspended' => 'แสดงรายการขายที่พักไว้',
+ 'key_system' => 'ทางลัดระบบ',
+ 'key_tendered' => 'แก้ไขจำนวนเงินรับมา',
+ 'key_title' => 'ทางลัดคียบอร์ดงานขาย',
+ 'mc' => '',
+ 'mode' => 'รูปแบบการลงทะเบียน',
+ 'must_enter_numeric' => 'จำนวนที่ถุกประมูลต้องใส่ข้อมุลที่เปนตัวเลข',
+ 'must_enter_numeric_giftcard' => 'เลขที่บัตรของขวัญ ต้องใส่ตัวเลขเท่านั้น',
+ 'must_enter_reference_code' => 'ต้องระบุหมายเลขอ้างอิง/การดึงข้อมูล',
+ 'negative_discount_invalid' => 'ส่วนลดไม่สามารถเป็นค่าติดลบได้',
+ 'negative_price_invalid' => 'ราคาไม่สามารถเป็นค่าติดลบได้',
+ 'negative_quantity_invalid' => 'จำนวนไม่สามารถเป็นค่าติดลบได้',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'ลูกค้าใหม่',
+ 'new_item' => 'สินค้าใหม่',
+ 'no_description' => 'ไม่ระบุรายละเอียด',
+ 'no_filter' => 'ทั้งหมด',
+ 'no_items_in_cart' => 'ไม่พบสินค้าในตระกร้า',
+ 'no_sales_to_display' => 'ไม่มีการขายที่จะแสดง',
+ 'none_selected' => 'คุณยังไม่ได้เลือกการขายที่จะลบ',
+ 'nontaxed_ind' => ' . ',
+ 'not_authorized' => 'การกระทำนี้ไม่ได้รับอนุญาต',
+ 'one_or_multiple' => 'การขาย',
+ 'payment' => 'รูปแบบชำระเงิน',
+ 'payment_amount' => 'จำนวน',
+ 'payment_not_cover_total' => 'จำนวนเงินที่ชำระต้องมากกว่าหรือเท่ากับยอดรวม',
+ 'payment_type' => 'ชำระโดย',
+ 'payments' => '',
+ 'payments_total' => 'ยอดชำระแล้ว',
+ 'price' => 'ราคา',
+ 'print_after_sale' => 'พิมพ์บิลหลังการขาย',
+ 'quantity' => 'จำนวน',
+ 'quantity_less_than_reorder_level' => 'คำเตือน ถ้าจำนวนของไม่เพียงพอกับความต้องการหรือไม่ตรงกับยอดในบันชี ก็สามารถทำการขายได้ แต่ต้องเชคปริมานสินค้าคงคลัง',
+ 'quantity_less_than_zero' => 'คำเตือน: ถ้าจำนวนของไม่เพียงพอกับความต้องการหรือไม่ตรงกับยอดในบัญชี ก็สามารถทำการขายได้ แต่ต้องตรวจสอบปริมาญสินค้าคงคลังก่อน',
+ 'quantity_of_items' => 'ปริมาณของ {0} รายการ',
+ 'quote' => 'ใบเสนอราคา',
+ 'quote_number' => 'หมายเลขอ้างอิง',
+ 'quote_number_duplicate' => 'หมายเลขอ้างอิงต้องไม่ซ้ำกัน',
+ 'quote_sent' => 'ส่งการอ้างอิงถึง',
+ 'quote_unsent' => 'ส่งการอ้างอิงถึงผิดพลาด',
+ 'receipt' => 'บิลขาย',
+ 'receipt_no_email' => 'ลูกค้านี้ไม่มีที่อยู่อีเมล์',
+ 'receipt_number' => 'จุดขาย#',
+ 'receipt_sent' => 'ส่งใบเสร็จไปที่',
+ 'receipt_unsent' => 'ไม่สามารถส่งใบเสร็จไปที่',
+ 'reference_code' => 'รหัสอ้างอิงการชำระเงิน',
+ 'reference_code_invalid_characters' => 'รหัสอ้างอิงต้องประกอบด้วยตัวอักษรและตัวเลขเท่านั้น',
+ 'reference_code_length_error' => 'ความยาวของรหัสอ้างอิงไม่ถูกต้อง',
+ 'refund' => 'ประเภทการยกเลิกการขาย',
+ 'register' => 'ลงทะเบียนขาย',
+ 'remove_customer' => 'ลบลูกค้า',
+ 'remove_discount' => '',
+ 'return' => 'คืน',
+ 'rewards' => 'คะแนนสะสม',
+ 'rewards_balance' => 'คะแนนสะสมคงเหลือ',
+ 'rewards_package' => 'คะแนนสะสม',
+ 'rewards_remaining_balance' => 'คะแนนสะสมคงเหลือ ',
+ 'sale' => 'ขาย',
+ 'sale_by_invoice' => 'การขายโดยใบแจ้งหนี้',
+ 'sale_for_customer' => 'ลูกค้า:',
+ 'sale_time' => 'เวลา',
+ 'sales_tax' => 'ภาษีการขาย',
+ 'sales_total' => '',
+ 'select_customer' => 'เลือกลูกค้า (Optional)',
+ 'selected_customer' => 'ลูกค้าที่เลือก',
+ 'send_invoice' => 'ส่งใบแจ้งหนี้',
+ 'send_quote' => 'ส่งใบเสนอราคา',
+ 'send_receipt' => 'ส่งใบเสร็จ',
+ 'send_work_order' => 'ส่งคำสั่งงาน',
+ 'serial' => 'หมายเลขซีเรียล',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'ใบแจ้งหนี้',
+ 'show_receipt' => 'ใบเสร็จ',
+ 'start_typing_customer_name' => 'เริ่มต้นพิมพ์ชื่อลูกค้า...',
+ 'start_typing_item_name' => 'เริ่มต้นพิมพ์ชื่อสินค้า หรือ สแกนบาร์โค๊ด...',
+ 'stock' => 'คลังสินค้า',
+ 'stock_location' => 'ที่เก็บ',
+ 'sub_total' => 'ยอดรวมย่อย',
+ 'successfully_deleted' => 'ลบการขายสมยูรณ์',
+ 'successfully_restored' => 'คุณกู้คืนสำเร็จแล้ว',
+ 'successfully_suspended_sale' => 'การขายของคุณถูกระงับเรียบร้อย',
+ 'successfully_updated' => 'อัพเดทการขายสมบูรณ์',
+ 'suspend_sale' => 'พักรายการ',
+ 'suspended_doc_id' => 'รหัสเอกสาร',
+ 'suspended_sale_id' => 'รหัสการขายที่ถูกพัก',
+ 'suspended_sales' => 'การขายที่พักไว้',
+ 'table' => 'โต๊ะ',
+ 'takings' => 'การขายประจำวัน',
+ 'tax' => 'ภาษี',
+ 'tax_id' => 'รหัสภาษี',
+ 'tax_invoice' => 'ใบกำกับภาษี',
+ 'tax_percent' => 'ภาษี %',
+ 'taxed_ind' => 'ภ',
+ 'total' => 'ยอดรวม',
+ 'total_tax_exclusive' => 'ยอดไม่รวมภาษี',
+ 'transaction_failed' => 'การดำเนินการขายล้มเหลว',
+ 'unable_to_add_item' => 'เพิ่มรายการไปยังการขายล้มเหลว',
+ 'unsuccessfully_deleted' => 'ลบการขายไม่สำเร็จ',
+ 'unsuccessfully_restored' => 'การคืนค่ารายการขายล้มเหลว',
+ 'unsuccessfully_suspended_sale' => 'การขายของคุณถูกระงับเรียบร้อย',
+ 'unsuccessfully_updated' => 'อัพเดทการขายไม่สมบูรณ์',
+ 'unsuspend' => 'ยกเลิกการระงับ',
+ 'unsuspend_and_delete' => 'ยกเลิกการระงับ และ ลบ',
+ 'update' => 'แก้ไข',
+ 'upi' => 'ยูพีไอ',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'คำสั่งงาน',
+ 'work_order_number' => 'หมายเลขคำสั่งงาน',
+ 'work_order_number_duplicate' => 'หมายเลขคำสั่งงานต้องไม่ซ้ำกัน',
+ 'work_order_sent' => 'คำสั่งงานส่งถึง',
+ 'work_order_unsent' => 'ส่งคำสั่งงานล้มเหลว',
];
diff --git a/app/Language/tl/Config.php b/app/Language/tl/Config.php
index 27ea43b99..2e001dc93 100644
--- a/app/Language/tl/Config.php
+++ b/app/Language/tl/Config.php
@@ -1,332 +1,335 @@
"Company Address",
- "address_required" => "Company Phone is a required field.",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "Allow Duplicate Barcodes",
- "apostrophe" => "apostrophe",
- "backup_button" => "Backup",
- "backup_database" => "Backup Database",
- "barcode" => "Barcode",
- "barcode_company" => "Company Name",
- "barcode_configuration" => "Barcode Configuration",
- "barcode_content" => "Barcode Content",
- "barcode_first_row" => "Row 3",
- "barcode_font" => "Font",
- "barcode_formats" => "Input Formats",
- "barcode_generate_if_empty" => "Generate if empty.",
- "barcode_height" => "Height (px)",
- "barcode_id" => "Item Id/Name",
- "barcode_info" => "Barcode Configuration Information",
- "barcode_layout" => "Barcode Layout",
- "barcode_name" => "Name",
- "barcode_number" => "Barcode",
- "barcode_number_in_row" => "Number in row",
- "barcode_page_cellspacing" => "Display page cellspacing.",
- "barcode_page_width" => "Display page width",
- "barcode_price" => "Price",
- "barcode_second_row" => "Row 3",
- "barcode_third_row" => "Row 2",
- "barcode_tooltip" => "Warning: This feature can cause duplicate items to be imported or created. Do not use if you do not want duplicate barcodes.",
- "barcode_type" => "Barcode Type",
- "barcode_width" => "Width (px)",
- "bottom" => "Bottom",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Cash Decimals",
- "cash_decimals_tooltip" => "If Cash Decimals and Currency Decimals are the same then no cash rounding will take place.",
- "cash_rounding" => "Cash Rounding",
- "category_dropdown" => "",
- "center" => "Center",
- "change_apperance_tooltip" => "",
- "comma" => "comma",
- "company" => "Company Name",
- "company_avatar" => "",
- "company_change_image" => "Change Image",
- "company_logo" => "Company Logo",
- "company_remove_image" => "Remove Image",
- "company_required" => "Company Name is a required field.",
- "company_select_image" => "Select Image",
- "company_website_url" => "Company website is not a valid URL (http://...).",
- "country_codes" => "Country Codes",
- "country_codes_tooltip" => "Comma separated list of country codes for nominatim address lookup.",
- "currency_code" => "Currency Code",
- "currency_decimals" => "Currency Decimals",
- "currency_symbol" => "Currency Symbol",
- "current_employee_only" => "",
- "customer_reward" => "Reward",
- "customer_reward_duplicate" => "Reward must be unique.",
- "customer_reward_enable" => "Enable Customer Rewards",
- "customer_reward_invalid_chars" => "Reward can not contain '_'",
- "customer_reward_required" => "Reward is a required field",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "Date and Time Filter",
- "datetimeformat" => "Date and Time Format",
- "decimal_point" => "Decimal Point",
- "default_barcode_font_size_number" => "Default Barcode Width must be a number.",
- "default_barcode_font_size_required" => "Default Barcode Width is a required field.",
- "default_barcode_height_number" => "Default Barcode Width must be a number.",
- "default_barcode_height_required" => "Default Barcode Width is a required field.",
- "default_barcode_num_in_row_number" => "Default Barcode Number in Row must be a number.",
- "default_barcode_num_in_row_required" => "Default Barcode Number in Row is a required field.",
- "default_barcode_page_cellspacing_number" => "Default Barcode Page Cellspacing must be a number.",
- "default_barcode_page_cellspacing_required" => "Default Barcode Page Cellspacing is a required field.",
- "default_barcode_page_width_number" => "Default Barcode Width must be a number.",
- "default_barcode_page_width_required" => "Default Barcode Width is a required field.",
- "default_barcode_width_number" => "Default Barcode Height must be a number.",
- "default_barcode_width_required" => "Default Barcode Height is a required field.",
- "default_item_columns" => "Default Visible Item Columns",
- "default_origin_tax_code" => "Default Origin Tax Code",
- "default_receivings_discount" => "Default Receivings Discount",
- "default_receivings_discount_number" => "Default Sales Discount must be a number.",
- "default_receivings_discount_required" => "Default Sales Discount is a required field.",
- "default_sales_discount" => "Default Sales Discount",
- "default_sales_discount_number" => "Default Receivings Discount must be a number.",
- "default_sales_discount_required" => "Default Receivings Discount is a required field.",
- "default_tax_category" => "Default Tax Category",
- "default_tax_code" => "Default Tax Rate",
- "default_tax_jurisdiction" => "Default Tax Jurisdiction",
- "default_tax_name_number" => "Default Tax Name must be a string.",
- "default_tax_name_required" => "Default Tax Rate is a required field.",
- "default_tax_rate" => "Default Tax Rate",
- "default_tax_rate_1" => "Tax 2 Rate",
- "default_tax_rate_2" => "Tax 1 Rate",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Default Tax Rate must be a number.",
- "default_tax_rate_required" => "Default Tax Name is a required field.",
- "derive_sale_quantity" => "Allow Derived Sale Quantity",
- "derive_sale_quantity_tooltip" => "If checked then a new item type will provided for items ordered by extended amount",
- "dinner_table" => "Table",
- "dinner_table_duplicate" => "Table must be unique.",
- "dinner_table_enable" => "Enable Dinner Tables",
- "dinner_table_invalid_chars" => "Table Name can not contain '_'.",
- "dinner_table_required" => "Table is a required field.",
- "dot" => "dot",
- "email" => "Email",
- "email_configuration" => "Email Configuration",
- "email_mailpath" => "Path to Sendmail",
- "email_protocol" => "Protocol",
- "email_receipt_check_behaviour" => "Email Receipt checkbox",
- "email_receipt_check_behaviour_always" => "Always checked",
- "email_receipt_check_behaviour_last" => "Remember last selection",
- "email_receipt_check_behaviour_never" => "Always unchecked",
- "email_smtp_crypto" => "SMTP Encryption",
- "email_smtp_host" => "SMTP Server",
- "email_smtp_pass" => "SMTP Password",
- "email_smtp_port" => "SMTP Port",
- "email_smtp_timeout" => "SMTP Timeout (s)",
- "email_smtp_user" => "SMTP Username",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Enforce privacy",
- "enforce_privacy_tooltip" => "Protect Customers privacy enforcing data scrambling in case of their data being deleted",
- "fax" => "Fax",
- "file_perm" => "There are problems with file permissions please fix and reload this page.",
- "financial_year" => "Fiscal Year Start",
- "financial_year_apr" => "1st of April",
- "financial_year_aug" => "1st of August",
- "financial_year_dec" => "1st of December",
- "financial_year_feb" => "1st of February",
- "financial_year_jan" => "1st of January",
- "financial_year_jul" => "1st of July",
- "financial_year_jun" => "1st of June",
- "financial_year_mar" => "1st of March",
- "financial_year_may" => "1st of May",
- "financial_year_nov" => "1st of November",
- "financial_year_oct" => "1st of October",
- "financial_year_sep" => "1st of September",
- "floating_labels" => "",
- "gcaptcha_enable" => "Login Page reCAPTCHA",
- "gcaptcha_secret_key" => "reCAPTCHA Site Key",
- "gcaptcha_secret_key_required" => "reCAPTCHA Site Key is a required field",
- "gcaptcha_site_key" => "reCAPTCHA Secret Key",
- "gcaptcha_site_key_required" => "reCAPTCHA Secret Key is a required field",
- "gcaptcha_tooltip" => "Protect the Login page with Google reCAPTCHA, click the icon for an API key pair.",
- "general" => "General",
- "general_configuration" => "General Configuration",
- "giftcard_number" => "Gift Card Number",
- "giftcard_random" => "Generate Random",
- "giftcard_series" => "Generate in Series",
- "image_allowed_file_types" => "",
- "image_max_height_tooltip" => "",
- "image_max_size_tooltip" => "",
- "image_max_width_tooltip" => "",
- "image_restrictions" => "",
- "include_hsn" => "Include Support for HSN Codes",
- "info" => "Information",
- "info_configuration" => "Store Information",
- "input_groups" => "",
- "integrations" => "Integrations",
- "integrations_configuration" => "Third Party Integrations",
- "invoice" => "Invoice",
- "invoice_configuration" => "Invoice Print Settings",
- "invoice_default_comments" => "Default Invoice Comments",
- "invoice_email_message" => "Invoice Email Template",
- "invoice_enable" => "Enable Invoicing",
- "invoice_printer" => "Invoice Printer",
- "invoice_type" => "Invoice Type",
- "is_readable" => "",
- "is_writable" => "is writable, but the permissions are higher than 750.",
- "item_markup" => "",
- "jsprintsetup_required" => "Warning: This functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?",
- "language" => "Language",
- "last_used_invoice_number" => "Last used Invoice Number",
- "last_used_quote_number" => "Last used Quote Number",
- "last_used_work_order_number" => "Last used W/O Number",
- "left" => "Left",
- "license" => "License",
- "license_configuration" => "License Statement",
- "line_sequence" => "Line Sequence",
- "lines_per_page" => "Lines per Page",
- "lines_per_page_number" => "Lines per Page must be a number.",
- "lines_per_page_required" => "Lines per Page is a required field.",
- "locale" => "Localization",
- "locale_configuration" => "Localization Configuration",
- "locale_info" => "Location Configuration Information",
- "location" => "Stock",
- "location_configuration" => "Stock Locations",
- "location_info" => "Localization Configuration Information",
- "login_form" => "",
- "logout" => "Do you want to make a backup before logging out? Click [OK] to backup or [Cancel] to logout.",
- "mailchimp" => "Mailchimp",
- "mailchimp_api_key" => "Mailchimp API Key",
- "mailchimp_configuration" => "Mailchimp Configuration",
- "mailchimp_key_successfully" => "API Key is invalid.",
- "mailchimp_key_unsuccessfully" => "API Key is valid.",
- "mailchimp_lists" => "Mailchimp List(s)",
- "mailchimp_tooltip" => "Click the icon for an API Key.",
- "message" => "Message",
- "message_configuration" => "Message Configuration",
- "msg_msg" => "Saved Text Message",
- "msg_msg_placeholder" => "If you wish to use a SMS template save your message here, otherwise leave the box blank.",
- "msg_pwd" => "SMS-API Password",
- "msg_pwd_required" => "SMS-API Password is a required field",
- "msg_src" => "SMS-API Sender ID",
- "msg_src_required" => "SMS-API Sender ID is a required field",
- "msg_uid" => "SMS-API Username",
- "msg_uid_required" => "SMS-API Username is a required field",
- "multi_pack_enabled" => "Multiple Packages per Item",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "none",
- "notify_alignment" => "Notification Popup Position",
- "number_format" => "Number Format",
- "number_locale" => "Localization",
- "number_locale_invalid" => "The entered locale is invalid. Check the link in the tooltip to find a valid locale.",
- "number_locale_required" => "Number Locale is a required field.",
- "number_locale_tooltip" => "Find a suitable locale through this link.",
- "os_timezone" => "",
- "ospos_info" => "OSPOS Installation Info",
- "payment_options_order" => "Payment Options Order",
- "perm_risk" => "Permissions higher than 750 leaves this software at risk.",
- "phone" => "Company Phone",
- "phone_required" => "Company Name is a required field.",
- "print_bottom_margin" => "Margin Bottom",
- "print_bottom_margin_number" => "Margin Left must be a number.",
- "print_bottom_margin_required" => "Margin Left is a required field.",
- "print_delay_autoreturn" => "Autoreturn to Sale delay",
- "print_delay_autoreturn_number" => "Autoreturn to Sale delay is a required field.",
- "print_delay_autoreturn_required" => "Autoreturn to Sale delay must be a number.",
- "print_footer" => "Print Browser Header",
- "print_header" => "Print Browser Footer",
- "print_left_margin" => "Margin Left",
- "print_left_margin_number" => "Margin Top must be a number.",
- "print_left_margin_required" => "Margin Right is a required field.",
- "print_receipt_check_behaviour" => "Print Receipt checkbox",
- "print_receipt_check_behaviour_always" => "Always checked",
- "print_receipt_check_behaviour_last" => "Remember last selection",
- "print_receipt_check_behaviour_never" => "Always unchecked",
- "print_right_margin" => "Margin Right",
- "print_right_margin_number" => "Margin Left must be a number.",
- "print_right_margin_required" => "Margin Left is a required field.",
- "print_silently" => "Show Print Dialog",
- "print_top_margin" => "Margin Top",
- "print_top_margin_number" => "Margin Left must be a number.",
- "print_top_margin_required" => "Margin Left is a required field.",
- "quantity_decimals" => "Quantity Decimals",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Default Quote Comments",
- "receipt" => "Receipt",
- "receipt_category" => "",
- "receipt_configuration" => "Receipt Print Settings",
- "receipt_default" => "Default",
- "receipt_font_size" => "Font Size",
- "receipt_font_size_number" => "Font Size must be a number.",
- "receipt_font_size_required" => "Font Size is a required field.",
- "receipt_info" => "Location Configuration Information",
- "receipt_printer" => "Ticket Printer",
- "receipt_short" => "Short",
- "receipt_show_company_name" => "Show Company Name",
- "receipt_show_description" => "Show Description",
- "receipt_show_serialnumber" => "Show Serial Number",
- "receipt_show_tax_ind" => "",
- "receipt_show_taxes" => "Show Taxes",
- "receipt_show_total_discount" => "Show Total Discount",
- "receipt_template" => "Receipt Template",
- "receiving_calculate_average_price" => "Calc avg. Price (Receiving)",
- "recv_invoice_format" => "Receivings Invoice Format",
- "register_mode_default" => "Default Register Mode",
- "report_an_issue" => "",
- "return_policy_required" => "Return policy is a required field.",
- "reward" => "Reward",
- "reward_configuration" => "Reward Configuration",
- "right" => "Right",
- "sales_invoice_format" => "Sales Invoice Format",
- "sales_quote_format" => "Sales Quote Format",
- "mailpath_invalid" => "",
- "saved_successfully" => "Configuration save successful.",
- "saved_unsuccessfully" => "Configuration save failed.",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "Please use the below info for issue reporting.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Show office icon",
- "statistics" => "Send Statistics",
- "statistics_tooltip" => "Send statistics for development and feature improvement purposes.",
- "stock_location" => "Stock location",
- "stock_location_duplicate" => "Stock Location must be unique.",
- "stock_location_invalid_chars" => "Stock Location can not contain '_'.",
- "stock_location_required" => "Stock location is a required field.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Column 3",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Search Suggestions Layout",
- "suggestions_second_column" => "Column 1",
- "suggestions_third_column" => "Column 1",
- "system_conf" => "Setup & Conf",
- "system_info" => "System Info",
- "table" => "Table",
- "table_configuration" => "Table Configuration",
- "takings_printer" => "Receipt Printer",
- "tax" => "Tax",
- "tax_category" => "Tax Category",
- "tax_category_duplicate" => "The entered tax category already exists.",
- "tax_category_invalid_chars" => "The entered tax category is invalid.",
- "tax_category_required" => "Tax category is required",
- "tax_category_used" => "Tax category cannot be deleted because it is being used.",
- "tax_configuration" => "Table Configuration",
- "tax_decimals" => "Tax Decimals",
- "tax_id" => "Tax Id",
- "tax_included" => "Tax included",
- "theme" => "Theme",
- "theme_preview" => "",
- "thousands_separator" => "Thousands Separator",
- "timezone" => "Timezone",
- "timezone_error" => "",
- "top" => "Top",
- "use_destination_based_tax" => "Use Destination Based Tax",
- "user_timezone" => "",
- "website" => "Website",
- "wholesale_markup" => "",
- "work_order_enable" => "Work Order Support",
- "work_order_format" => "Work Order Format",
+ 'address' => 'Company Address',
+ 'address_required' => 'Company Phone is a required field.',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => 'Allow Duplicate Barcodes',
+ 'apostrophe' => 'apostrophe',
+ 'backup_button' => 'Backup',
+ 'backup_database' => 'Backup Database',
+ 'barcode' => 'Barcode',
+ 'barcode_company' => 'Company Name',
+ 'barcode_configuration' => 'Barcode Configuration',
+ 'barcode_content' => 'Barcode Content',
+ 'barcode_first_row' => 'Row 3',
+ 'barcode_font' => 'Font',
+ 'barcode_formats' => 'Input Formats',
+ 'barcode_generate_if_empty' => 'Generate if empty.',
+ 'barcode_height' => 'Height (px)',
+ 'barcode_id' => 'Item Id/Name',
+ 'barcode_info' => 'Barcode Configuration Information',
+ 'barcode_layout' => 'Barcode Layout',
+ 'barcode_name' => 'Name',
+ 'barcode_number' => 'Barcode',
+ 'barcode_number_in_row' => 'Number in row',
+ 'barcode_page_cellspacing' => 'Display page cellspacing.',
+ 'barcode_page_width' => 'Display page width',
+ 'barcode_price' => 'Price',
+ 'barcode_second_row' => 'Row 3',
+ 'barcode_third_row' => 'Row 2',
+ 'barcode_tooltip' => 'Warning: This feature can cause duplicate items to be imported or created. Do not use if you do not want duplicate barcodes.',
+ 'barcode_type' => 'Barcode Type',
+ 'barcode_width' => 'Width (px)',
+ 'bottom' => 'Bottom',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Cash Decimals',
+ 'cash_decimals_tooltip' => 'If Cash Decimals and Currency Decimals are the same then no cash rounding will take place.',
+ 'cash_rounding' => 'Cash Rounding',
+ 'category_dropdown' => '',
+ 'center' => 'Center',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'comma',
+ 'company' => 'Company Name',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Change Image',
+ 'company_logo' => 'Company Logo',
+ 'company_remove_image' => 'Remove Image',
+ 'company_required' => 'Company Name is a required field.',
+ 'company_select_image' => 'Select Image',
+ 'company_website_url' => 'Company website is not a valid URL (http://...).',
+ 'country_codes' => 'Country Codes',
+ 'country_codes_tooltip' => 'Comma separated list of country codes for nominatim address lookup.',
+ 'currency_code' => 'Currency Code',
+ 'currency_decimals' => 'Currency Decimals',
+ 'currency_symbol' => 'Currency Symbol',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Reward',
+ 'customer_reward_duplicate' => 'Reward must be unique.',
+ 'customer_reward_enable' => 'Enable Customer Rewards',
+ 'customer_reward_invalid_chars' => "Reward can not contain '_'",
+ 'customer_reward_required' => 'Reward is a required field',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => 'Date and Time Filter',
+ 'datetimeformat' => 'Date and Time Format',
+ 'decimal_point' => 'Decimal Point',
+ 'default_barcode_font_size_number' => 'Default Barcode Width must be a number.',
+ 'default_barcode_font_size_required' => 'Default Barcode Width is a required field.',
+ 'default_barcode_height_number' => 'Default Barcode Width must be a number.',
+ 'default_barcode_height_required' => 'Default Barcode Width is a required field.',
+ 'default_barcode_num_in_row_number' => 'Default Barcode Number in Row must be a number.',
+ 'default_barcode_num_in_row_required' => 'Default Barcode Number in Row is a required field.',
+ 'default_barcode_page_cellspacing_number' => 'Default Barcode Page Cellspacing must be a number.',
+ 'default_barcode_page_cellspacing_required' => 'Default Barcode Page Cellspacing is a required field.',
+ 'default_barcode_page_width_number' => 'Default Barcode Width must be a number.',
+ 'default_barcode_page_width_required' => 'Default Barcode Width is a required field.',
+ 'default_barcode_width_number' => 'Default Barcode Height must be a number.',
+ 'default_barcode_width_required' => 'Default Barcode Height is a required field.',
+ 'default_item_columns' => 'Default Visible Item Columns',
+ 'default_origin_tax_code' => 'Default Origin Tax Code',
+ 'default_receivings_discount' => 'Default Receivings Discount',
+ 'default_receivings_discount_number' => 'Default Sales Discount must be a number.',
+ 'default_receivings_discount_required' => 'Default Sales Discount is a required field.',
+ 'default_sales_discount' => 'Default Sales Discount',
+ 'default_sales_discount_number' => 'Default Receivings Discount must be a number.',
+ 'default_sales_discount_required' => 'Default Receivings Discount is a required field.',
+ 'default_tax_category' => 'Default Tax Category',
+ 'default_tax_code' => 'Default Tax Rate',
+ 'default_tax_jurisdiction' => 'Default Tax Jurisdiction',
+ 'default_tax_name_number' => 'Default Tax Name must be a string.',
+ 'default_tax_name_required' => 'Default Tax Rate is a required field.',
+ 'default_tax_rate' => 'Default Tax Rate',
+ 'default_tax_rate_1' => 'Tax 2 Rate',
+ 'default_tax_rate_2' => 'Tax 1 Rate',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Default Tax Rate must be a number.',
+ 'default_tax_rate_required' => 'Default Tax Name is a required field.',
+ 'derive_sale_quantity' => 'Allow Derived Sale Quantity',
+ 'derive_sale_quantity_tooltip' => 'If checked then a new item type will provided for items ordered by extended amount',
+ 'dinner_table' => 'Table',
+ 'dinner_table_duplicate' => 'Table must be unique.',
+ 'dinner_table_enable' => 'Enable Dinner Tables',
+ 'dinner_table_invalid_chars' => "Table Name can not contain '_'.",
+ 'dinner_table_required' => 'Table is a required field.',
+ 'dot' => 'dot',
+ 'email' => 'Email',
+ 'email_configuration' => 'Email Configuration',
+ 'email_mailpath' => 'Path to Sendmail',
+ 'email_protocol' => 'Protocol',
+ 'email_receipt_check_behaviour' => 'Email Receipt checkbox',
+ 'email_receipt_check_behaviour_always' => 'Always checked',
+ 'email_receipt_check_behaviour_last' => 'Remember last selection',
+ 'email_receipt_check_behaviour_never' => 'Always unchecked',
+ 'email_smtp_crypto' => 'SMTP Encryption',
+ 'email_smtp_host' => 'SMTP Server',
+ 'email_smtp_pass' => 'SMTP Password',
+ 'email_smtp_port' => 'SMTP Port',
+ 'email_smtp_timeout' => 'SMTP Timeout (s)',
+ 'email_smtp_user' => 'SMTP Username',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Enforce privacy',
+ 'enforce_privacy_tooltip' => 'Protect Customers privacy enforcing data scrambling in case of their data being deleted',
+ 'fax' => 'Fax',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => 'Fiscal Year Start',
+ 'financial_year_apr' => '1st of April',
+ 'financial_year_aug' => '1st of August',
+ 'financial_year_dec' => '1st of December',
+ 'financial_year_feb' => '1st of February',
+ 'financial_year_jan' => '1st of January',
+ 'financial_year_jul' => '1st of July',
+ 'financial_year_jun' => '1st of June',
+ 'financial_year_mar' => '1st of March',
+ 'financial_year_may' => '1st of May',
+ 'financial_year_nov' => '1st of November',
+ 'financial_year_oct' => '1st of October',
+ 'financial_year_sep' => '1st of September',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => 'Login Page reCAPTCHA',
+ 'gcaptcha_secret_key' => 'reCAPTCHA Site Key',
+ 'gcaptcha_secret_key_required' => 'reCAPTCHA Site Key is a required field',
+ 'gcaptcha_site_key' => 'reCAPTCHA Secret Key',
+ 'gcaptcha_site_key_required' => 'reCAPTCHA Secret Key is a required field',
+ 'gcaptcha_tooltip' => 'Protect the Login page with Google reCAPTCHA, click the icon for an API key pair.',
+ 'general' => 'General',
+ 'general_configuration' => 'General Configuration',
+ 'giftcard_number' => 'Gift Card Number',
+ 'giftcard_random' => 'Generate Random',
+ 'giftcard_series' => 'Generate in Series',
+ 'image_allowed_file_types' => '',
+ 'image_max_height_tooltip' => '',
+ 'image_max_size_tooltip' => '',
+ 'image_max_width_tooltip' => '',
+ 'image_restrictions' => '',
+ 'include_hsn' => 'Include Support for HSN Codes',
+ 'info' => 'Information',
+ 'info_configuration' => 'Store Information',
+ 'input_groups' => '',
+ 'integrations' => 'Integrations',
+ 'integrations_configuration' => 'Third Party Integrations',
+ 'invoice' => 'Invoice',
+ 'invoice_configuration' => 'Invoice Print Settings',
+ 'invoice_default_comments' => 'Default Invoice Comments',
+ 'invoice_email_message' => 'Invoice Email Template',
+ 'invoice_enable' => 'Enable Invoicing',
+ 'invoice_printer' => 'Invoice Printer',
+ 'invoice_type' => 'Invoice Type',
+ 'is_readable' => '',
+ 'is_writable' => 'is writable, but the permissions are higher than 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Warning: This functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?',
+ 'language' => 'Language',
+ 'last_used_invoice_number' => 'Last used Invoice Number',
+ 'last_used_quote_number' => 'Last used Quote Number',
+ 'last_used_work_order_number' => 'Last used W/O Number',
+ 'left' => 'Left',
+ 'license' => 'License',
+ 'license_configuration' => 'License Statement',
+ 'line_sequence' => 'Line Sequence',
+ 'lines_per_page' => 'Lines per Page',
+ 'lines_per_page_number' => 'Lines per Page must be a number.',
+ 'lines_per_page_required' => 'Lines per Page is a required field.',
+ 'locale' => 'Localization',
+ 'locale_configuration' => 'Localization Configuration',
+ 'locale_info' => 'Location Configuration Information',
+ 'location' => 'Stock',
+ 'location_configuration' => 'Stock Locations',
+ 'location_info' => 'Localization Configuration Information',
+ 'login_form' => '',
+ 'logout' => 'Do you want to make a backup before logging out? Click [OK] to backup or [Cancel] to logout.',
+ 'mailchimp' => 'Mailchimp',
+ 'mailchimp_api_key' => 'Mailchimp API Key',
+ 'mailchimp_configuration' => 'Mailchimp Configuration',
+ 'mailchimp_key_successfully' => 'API Key is invalid.',
+ 'mailchimp_key_unsuccessfully' => 'API Key is valid.',
+ 'mailchimp_lists' => 'Mailchimp List(s)',
+ 'mailchimp_tooltip' => 'Click the icon for an API Key.',
+ 'message' => 'Message',
+ 'message_configuration' => 'Message Configuration',
+ 'msg_msg' => 'Saved Text Message',
+ 'msg_msg_placeholder' => 'If you wish to use a SMS template save your message here, otherwise leave the box blank.',
+ 'msg_pwd' => 'SMS-API Password',
+ 'msg_pwd_required' => 'SMS-API Password is a required field',
+ 'msg_src' => 'SMS-API Sender ID',
+ 'msg_src_required' => 'SMS-API Sender ID is a required field',
+ 'msg_uid' => 'SMS-API Username',
+ 'msg_uid_required' => 'SMS-API Username is a required field',
+ 'multi_pack_enabled' => 'Multiple Packages per Item',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => 'none',
+ 'notify_alignment' => 'Notification Popup Position',
+ 'number_format' => 'Number Format',
+ 'number_locale' => 'Localization',
+ 'number_locale_invalid' => 'The entered locale is invalid. Check the link in the tooltip to find a valid locale.',
+ 'number_locale_required' => 'Number Locale is a required field.',
+ 'number_locale_tooltip' => 'Find a suitable locale through this link.',
+ 'os_timezone' => '',
+ 'ospos_info' => 'OSPOS Installation Info',
+ 'payment_options_order' => 'Payment Options Order',
+ 'payment_reference_code_length_limits' => 'Code ng Sanggunian sa Pagbabayad
Mga Limitasyon sa Haba',
+ 'payment_reference_code_length_max_label' => 'Max',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => 'Permissions higher than 750 leaves this software at risk.',
+ 'phone' => 'Company Phone',
+ 'phone_required' => 'Company Name is a required field.',
+ 'print_bottom_margin' => 'Margin Bottom',
+ 'print_bottom_margin_number' => 'Margin Left must be a number.',
+ 'print_bottom_margin_required' => 'Margin Left is a required field.',
+ 'print_delay_autoreturn' => 'Autoreturn to Sale delay',
+ 'print_delay_autoreturn_number' => 'Autoreturn to Sale delay is a required field.',
+ 'print_delay_autoreturn_required' => 'Autoreturn to Sale delay must be a number.',
+ 'print_footer' => 'Print Browser Header',
+ 'print_header' => 'Print Browser Footer',
+ 'print_left_margin' => 'Margin Left',
+ 'print_left_margin_number' => 'Margin Top must be a number.',
+ 'print_left_margin_required' => 'Margin Right is a required field.',
+ 'print_receipt_check_behaviour' => 'Print Receipt checkbox',
+ 'print_receipt_check_behaviour_always' => 'Always checked',
+ 'print_receipt_check_behaviour_last' => 'Remember last selection',
+ 'print_receipt_check_behaviour_never' => 'Always unchecked',
+ 'print_right_margin' => 'Margin Right',
+ 'print_right_margin_number' => 'Margin Left must be a number.',
+ 'print_right_margin_required' => 'Margin Left is a required field.',
+ 'print_silently' => 'Show Print Dialog',
+ 'print_top_margin' => 'Margin Top',
+ 'print_top_margin_number' => 'Margin Left must be a number.',
+ 'print_top_margin_required' => 'Margin Left is a required field.',
+ 'quantity_decimals' => 'Quantity Decimals',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Default Quote Comments',
+ 'receipt' => 'Receipt',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Receipt Print Settings',
+ 'receipt_default' => 'Default',
+ 'receipt_font_size' => 'Font Size',
+ 'receipt_font_size_number' => 'Font Size must be a number.',
+ 'receipt_font_size_required' => 'Font Size is a required field.',
+ 'receipt_info' => 'Location Configuration Information',
+ 'receipt_printer' => 'Ticket Printer',
+ 'receipt_short' => 'Short',
+ 'receipt_show_company_name' => 'Show Company Name',
+ 'receipt_show_description' => 'Show Description',
+ 'receipt_show_serialnumber' => 'Show Serial Number',
+ 'receipt_show_tax_ind' => '',
+ 'receipt_show_taxes' => 'Show Taxes',
+ 'receipt_show_total_discount' => 'Show Total Discount',
+ 'receipt_template' => 'Receipt Template',
+ 'receiving_calculate_average_price' => 'Calc avg. Price (Receiving)',
+ 'recv_invoice_format' => 'Receivings Invoice Format',
+ 'register_mode_default' => 'Default Register Mode',
+ 'report_an_issue' => '',
+ 'return_policy_required' => 'Return policy is a required field.',
+ 'reward' => 'Reward',
+ 'reward_configuration' => 'Reward Configuration',
+ 'right' => 'Right',
+ 'sales_invoice_format' => 'Sales Invoice Format',
+ 'sales_quote_format' => 'Sales Quote Format',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => 'Configuration save successful.',
+ 'saved_unsuccessfully' => 'Configuration save failed.',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Please use the below info for issue reporting.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Show office icon',
+ 'statistics' => 'Send Statistics',
+ 'statistics_tooltip' => 'Send statistics for development and feature improvement purposes.',
+ 'stock_location' => 'Stock location',
+ 'stock_location_duplicate' => 'Stock Location must be unique.',
+ 'stock_location_invalid_chars' => "Stock Location can not contain '_'.",
+ 'stock_location_required' => 'Stock location is a required field.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Column 3',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Search Suggestions Layout',
+ 'suggestions_second_column' => 'Column 1',
+ 'suggestions_third_column' => 'Column 1',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => 'Table',
+ 'table_configuration' => 'Table Configuration',
+ 'takings_printer' => 'Receipt Printer',
+ 'tax' => 'Tax',
+ 'tax_category' => 'Tax Category',
+ 'tax_category_duplicate' => 'The entered tax category already exists.',
+ 'tax_category_invalid_chars' => 'The entered tax category is invalid.',
+ 'tax_category_required' => 'Tax category is required',
+ 'tax_category_used' => 'Tax category cannot be deleted because it is being used.',
+ 'tax_configuration' => 'Table Configuration',
+ 'tax_decimals' => 'Tax Decimals',
+ 'tax_id' => 'Tax Id',
+ 'tax_included' => 'Tax included',
+ 'theme' => 'Theme',
+ 'theme_preview' => '',
+ 'thousands_separator' => 'Thousands Separator',
+ 'timezone' => 'Timezone',
+ 'timezone_error' => '',
+ 'top' => 'Top',
+ 'use_destination_based_tax' => 'Use Destination Based Tax',
+ 'user_timezone' => '',
+ 'website' => 'Website',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Work Order Support',
+ 'work_order_format' => 'Work Order Format',
];
diff --git a/app/Language/tl/Login.php b/app/Language/tl/Login.php
index bbf0052a2..21855f250 100644
--- a/app/Language/tl/Login.php
+++ b/app/Language/tl/Login.php
@@ -1,25 +1,30 @@
"I'm not a robot.",
- "go" => "Go",
- "invalid_gcaptcha" => "Invalid I'm not a robot.",
- "invalid_installation" => "The installation is not correct, check your php.ini file.",
- "invalid_username_and_password" => "Invalid Username or Password.",
- "login" => "Login",
- "logout" => "",
- "migration_needed" => "",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "Password",
- "required_username" => "",
- "username" => "Username",
- "welcome" => "",
+ "gcaptcha" => "I'm not a robot.",
+ "go" => "Go",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Invalid I'm not a robot.",
+ "invalid_installation" => "The installation is not correct, check your php.ini file.",
+ "invalid_username_and_password" => "Invalid Username or Password.",
+ "login" => "Login",
+ "logout" => "",
+ "migrating_database" => "Inililipat ang Database",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "Matagumpay na nalipat ang database!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "Password",
+ "required_username" => "",
+ "username" => "Username",
+ "welcome" => ""
];
diff --git a/app/Language/tl/Sales.php b/app/Language/tl/Sales.php
index a40e655db..f1e7e809e 100644
--- a/app/Language/tl/Sales.php
+++ b/app/Language/tl/Sales.php
@@ -1,231 +1,235 @@
"Available Points",
- "rewards_package" => "Rewards",
- "rewards_remaining_balance" => "Reward Points remaining value is ",
- "account_number" => "Account #",
- "add_payment" => "Add Payment",
- "amount_due" => "Amount Due",
- "amount_tendered" => "Amount Tendered",
- "authorized_signature" => "Authorized Signature",
- "cancel_sale" => "Cancel",
- "cash" => "Cash",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "",
- "cash_deposit" => "Cash Deposit",
- "cash_filter" => "Cash",
- "change_due" => "Change Due",
- "change_price" => "",
- "check" => "Check",
- "check_balance" => "Check remainder",
- "check_filter" => "Check",
- "close" => "",
- "comment" => "Comment",
- "comments" => "Comments",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Complete",
- "confirm_cancel_sale" => "Are you sure you want to clear this sale? All items will cleared.",
- "confirm_delete" => "Are you sure you want to delete the selected Sale(s)?",
- "confirm_restore" => "Are you sure you want to restore the selected Sale(s)?",
- "credit" => "Credit Card",
- "credit_deposit" => "Credit Deposit",
- "credit_filter" => "",
- "current_table" => "",
- "customer" => "Name",
- "customer_address" => "Address",
- "customer_discount" => "Discount",
- "customer_email" => "Email",
- "customer_location" => "Location",
- "customer_mailchimp_status" => "Mailchimp status",
- "customer_optional" => "(Required for Due Payments)",
- "customer_required" => "(Required)",
- "customer_total" => "Total",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Sale Date",
- "date_range" => "Date Range",
- "date_required" => "A correct date must be entered.",
- "date_type" => "Date is a required field.",
- "debit" => "Debit Card",
- "debit_filter" => "",
- "delete" => "Allow Delete",
- "delete_confirmation" => "Are you sure you want to delete this sale? This action cannot be undone.",
- "delete_entire_sale" => "Delete Entire Sale",
- "delete_successful" => "Sale delete successful.",
- "delete_unsuccessful" => "Sale delete failed.",
- "description_abbrv" => "Desc.",
- "discard" => "Discard",
- "discard_quote" => "",
- "discount" => "Disc",
- "discount_included" => "% Discount",
- "discount_short" => "%",
- "due" => "Due",
- "due_filter" => "Due",
- "edit" => "Edit",
- "edit_item" => "Edit Item",
- "edit_sale" => "Edit Sale",
- "email_receipt" => "Email Receipt",
- "employee" => "Employee",
- "entry" => "Entry",
- "error_editing_item" => "Error editing item",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Find or Scan Item",
- "find_or_scan_item_or_receipt" => "Find or Scan Item or Receipt",
- "giftcard" => "Gift Card",
- "giftcard_balance" => "Gift Card Balance",
- "giftcard_filter" => "",
- "giftcard_number" => "Gift Card Number",
- "group_by_category" => "Group by Category",
- "group_by_type" => "Group by Type",
- "hsn" => "HSN",
- "id" => "Sale ID",
- "include_prices" => "Include Prices?",
- "invoice" => "Invoice",
- "invoice_confirm" => "This invoice will be sent to",
- "invoice_enable" => "Create Invoice",
- "invoice_filter" => "Invoices",
- "invoice_no_email" => "This customer does not have a valid email address.",
- "invoice_number" => "Invoice #",
- "invoice_number_duplicate" => "Invoice Number must be unique.",
- "invoice_sent" => "Invoice sent to",
- "invoice_total" => "Invoice Total",
- "invoice_type_custom_invoice" => "Custom Invoice (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Custom Tax Invoice (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Invoice (invoice.php)",
- "invoice_type_tax_invoice" => "Tax Invoice (tax_invoice.php)",
- "invoice_unsent" => "Invoice failed to be sent to",
- "invoice_update" => "Recount",
- "item_insufficient_of_stock" => "Item has insufficient stock.",
- "item_name" => "Item Name",
- "item_number" => "Item #",
- "item_out_of_stock" => "Item is out of stock.",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "Register Mode",
- "must_enter_numeric" => "Amount Tendered must be a number.",
- "must_enter_numeric_giftcard" => "Gift Card Number must be a number.",
- "new_customer" => "New Customer",
- "new_item" => "New Item",
- "no_description" => "No description",
- "no_filter" => "All",
- "no_items_in_cart" => "There are no Items in the cart.",
- "no_sales_to_display" => "No Sales to display.",
- "none_selected" => "You have not selected any Sale(s) to delete.",
- "nontaxed_ind" => "",
- "not_authorized" => "This action is not authorized.",
- "one_or_multiple" => "Sale(s)",
- "payment" => "Payment Type",
- "payment_amount" => "Amount",
- "payment_not_cover_total" => "Payment Amount must be greater than or equal to Total.",
- "payment_type" => "Type",
- "payments" => "",
- "payments_total" => "Payments Total",
- "price" => "Price",
- "print_after_sale" => "Print after Sale",
- "quantity" => "Quantity",
- "quantity_less_than_reorder_level" => "Warning: Desired Quantity is below Reorder Level for that Item.",
- "quantity_less_than_zero" => "Warning: Desired Quantity is insufficient. You can still process the sale, but audit your inventory.",
- "quantity_of_items" => "Quantity of {0} Items",
- "quote" => "Quote",
- "quote_number" => "Quote Number",
- "quote_number_duplicate" => "Quote Number must be unique.",
- "quote_sent" => "Quote sent to",
- "quote_unsent" => "Quote failed to be sent to",
- "receipt" => "Sales Receipt",
- "receipt_no_email" => "This customer does not have a valid email address.",
- "receipt_number" => "Sale #",
- "receipt_sent" => "Receipt sent to",
- "receipt_unsent" => "Receipt failed to be sent to",
- "refund" => "",
- "register" => "Sales Register",
- "remove_customer" => "Remove Customer",
- "remove_discount" => "",
- "return" => "Return",
- "rewards" => "Reward Points",
- "rewards_balance" => "Reward Points Balance",
- "sale" => "Sale",
- "sale_by_invoice" => "Sale by Invoice",
- "sale_for_customer" => "Customer:",
- "sale_time" => "Time",
- "sales_tax" => "Sales Tax",
- "sales_total" => "",
- "select_customer" => "Select Customer",
- "send_invoice" => "Send Invoice",
- "send_quote" => "Send Quote",
- "send_receipt" => "Send Receipt",
- "send_work_order" => "Send Work Order",
- "serial" => "Serial",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Show Invoice",
- "show_receipt" => "Show Receipt",
- "start_typing_customer_name" => "Start typing customer details...",
- "start_typing_item_name" => "Start typing Item Name or scan Barcode...",
- "stock" => "Stock",
- "stock_location" => "Stock Location",
- "sub_total" => "Subtotal",
- "successfully_deleted" => "You have successfully deleted",
- "successfully_restored" => "You have successfully restored",
- "successfully_suspended_sale" => "Sale suspend successful.",
- "successfully_updated" => "Sale update successful.",
- "suspend_sale" => "Suspend",
- "suspended_doc_id" => "Document",
- "suspended_sale_id" => "ID",
- "suspended_sales" => "Suspended",
- "table" => "Table",
- "takings" => "Daily Sales",
- "tax" => "Tax",
- "tax_id" => "Tax Id",
- "tax_invoice" => "Tax Invoice",
- "tax_percent" => "Tax %",
- "taxed_ind" => "",
- "total" => "Total",
- "total_tax_exclusive" => "Tax excluded",
- "transaction_failed" => "Sales Transaction failed.",
- "unable_to_add_item" => "Item add to Sale failed",
- "unsuccessfully_deleted" => "Sale(s) delete failed.",
- "unsuccessfully_restored" => "Sale(s) restore failed.",
- "unsuccessfully_suspended_sale" => "Sale suspend failed.",
- "unsuccessfully_updated" => "Sale update failed.",
- "unsuspend" => "Unsuspend",
- "unsuspend_and_delete" => "Action",
- "update" => "Update",
- "upi" => "UPI",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "Work Order",
- "work_order_number" => "Work Order Number",
- "work_order_number_duplicate" => "Work Order Number must be unique.",
- "work_order_sent" => "Work Order sent to",
- "work_order_unsent" => "Work Order failed to be sent to",
+ 'account_number' => 'Account #',
+ 'add_payment' => 'Add Payment',
+ 'amount_due' => 'Amount Due',
+ 'amount_tendered' => 'Amount Tendered',
+ 'authorized_signature' => 'Authorized Signature',
+ 'cancel_sale' => 'Cancel',
+ 'cash' => 'Cash',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => '',
+ 'cash_deposit' => 'Cash Deposit',
+ 'cash_filter' => 'Cash',
+ 'change_due' => 'Change Due',
+ 'change_price' => '',
+ 'check' => 'Check',
+ 'check_balance' => 'Check remainder',
+ 'check_filter' => 'Check',
+ 'close' => '',
+ 'comment' => 'Comment',
+ 'comments' => 'Comments',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Complete',
+ 'confirm_cancel_sale' => 'Are you sure you want to clear this sale? All items will cleared.',
+ 'confirm_delete' => 'Are you sure you want to delete the selected Sale(s)?',
+ 'confirm_restore' => 'Are you sure you want to restore the selected Sale(s)?',
+ 'credit' => 'Credit Card',
+ 'credit_deposit' => 'Credit Deposit',
+ 'credit_filter' => '',
+ 'current_table' => '',
+ 'customer' => 'Name',
+ 'customer_address' => 'Address',
+ 'customer_discount' => 'Discount',
+ 'customer_email' => 'Email',
+ 'customer_location' => 'Location',
+ 'customer_mailchimp_status' => 'Mailchimp status',
+ 'customer_optional' => '(Required for Due Payments)',
+ 'customer_required' => '(Required)',
+ 'customer_total' => 'Total',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Available Points',
+ 'daily_sales' => '',
+ 'date' => 'Sale Date',
+ 'date_range' => 'Date Range',
+ 'date_required' => 'A correct date must be entered.',
+ 'date_type' => 'Date is a required field.',
+ 'debit' => 'Debit Card',
+ 'debit_filter' => '',
+ 'delete' => 'Allow Delete',
+ 'delete_confirmation' => 'Are you sure you want to delete this sale? This action cannot be undone.',
+ 'delete_entire_sale' => 'Delete Entire Sale',
+ 'delete_successful' => 'Sale delete successful.',
+ 'delete_unsuccessful' => 'Sale delete failed.',
+ 'description_abbrv' => 'Desc.',
+ 'discard' => 'Discard',
+ 'discard_quote' => '',
+ 'discount' => 'Disc',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Discount',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'Due',
+ 'due_filter' => 'Due',
+ 'edit' => 'Edit',
+ 'edit_item' => 'Edit Item',
+ 'edit_sale' => 'Edit Sale',
+ 'email_receipt' => 'Email Receipt',
+ 'employee' => 'Employee',
+ 'entry' => 'Entry',
+ 'error_editing_item' => 'Error editing item',
+ 'find_or_scan_item' => 'Find or Scan Item',
+ 'find_or_scan_item_or_receipt' => 'Find or Scan Item or Receipt',
+ 'giftcard' => 'Gift Card',
+ 'giftcard_balance' => 'Gift Card Balance',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Gift Card Number',
+ 'group_by_category' => 'Group by Category',
+ 'group_by_type' => 'Group by Type',
+ 'hsn' => 'HSN',
+ 'id' => 'Sale ID',
+ 'include_prices' => 'Include Prices?',
+ 'invoice' => 'Invoice',
+ 'invoice_confirm' => 'This invoice will be sent to',
+ 'invoice_enable' => 'Create Invoice',
+ 'invoice_filter' => 'Invoices',
+ 'invoice_no_email' => 'This customer does not have a valid email address.',
+ 'invoice_number' => 'Invoice #',
+ 'invoice_number_duplicate' => 'Invoice Number must be unique.',
+ 'invoice_sent' => 'Invoice sent to',
+ 'invoice_total' => 'Invoice Total',
+ 'invoice_type_custom_invoice' => 'Custom Invoice (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Custom Tax Invoice (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Invoice (invoice.php)',
+ 'invoice_type_tax_invoice' => 'Tax Invoice (tax_invoice.php)',
+ 'invoice_unsent' => 'Invoice failed to be sent to',
+ 'invoice_update' => 'Recount',
+ 'item_insufficient_of_stock' => 'Item has insufficient stock.',
+ 'item_name' => 'Item Name',
+ 'item_number' => 'Item #',
+ 'item_out_of_stock' => 'Item is out of stock.',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'Register Mode',
+ 'must_enter_numeric' => 'Amount Tendered must be a number.',
+ 'must_enter_numeric_giftcard' => 'Gift Card Number must be a number.',
+ 'must_enter_reference_code' => 'Ang Numero ng Sanggunian/Pagkuha ay dapat ipasok.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'New Customer',
+ 'new_item' => 'New Item',
+ 'no_description' => 'No description',
+ 'no_filter' => 'All',
+ 'no_items_in_cart' => 'There are no Items in the cart.',
+ 'no_sales_to_display' => 'No Sales to display.',
+ 'none_selected' => 'You have not selected any Sale(s) to delete.',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => 'This action is not authorized.',
+ 'one_or_multiple' => 'Sale(s)',
+ 'payment' => 'Payment Type',
+ 'payment_amount' => 'Amount',
+ 'payment_not_cover_total' => 'Payment Amount must be greater than or equal to Total.',
+ 'payment_type' => 'Type',
+ 'payments' => '',
+ 'payments_total' => 'Payments Total',
+ 'price' => 'Price',
+ 'print_after_sale' => 'Print after Sale',
+ 'quantity' => 'Quantity',
+ 'quantity_less_than_reorder_level' => 'Warning: Desired Quantity is below Reorder Level for that Item.',
+ 'quantity_less_than_zero' => 'Warning: Desired Quantity is insufficient. You can still process the sale, but audit your inventory.',
+ 'quantity_of_items' => 'Quantity of {0} Items',
+ 'quote' => 'Quote',
+ 'quote_number' => 'Quote Number',
+ 'quote_number_duplicate' => 'Quote Number must be unique.',
+ 'quote_sent' => 'Quote sent to',
+ 'quote_unsent' => 'Quote failed to be sent to',
+ 'receipt' => 'Sales Receipt',
+ 'receipt_no_email' => 'This customer does not have a valid email address.',
+ 'receipt_number' => 'Sale #',
+ 'receipt_sent' => 'Receipt sent to',
+ 'receipt_unsent' => 'Receipt failed to be sent to',
+ 'reference_code' => 'Code ng Sanggunian sa Pagbabayad',
+ 'reference_code_invalid_characters' => 'Ang code ng sanggunian ay dapat naglalaman lamang ng mga titik at numero.',
+ 'reference_code_length_error' => 'Ang haba ng code ng sanggunian ay hindi wasto.',
+ 'refund' => '',
+ 'register' => 'Sales Register',
+ 'remove_customer' => 'Remove Customer',
+ 'remove_discount' => '',
+ 'return' => 'Return',
+ 'rewards' => 'Reward Points',
+ 'rewards_balance' => 'Reward Points Balance',
+ 'rewards_package' => 'Rewards',
+ 'rewards_remaining_balance' => 'Reward Points remaining value is ',
+ 'sale' => 'Sale',
+ 'sale_by_invoice' => 'Sale by Invoice',
+ 'sale_for_customer' => 'Customer:',
+ 'sale_time' => 'Time',
+ 'sales_tax' => 'Sales Tax',
+ 'sales_total' => '',
+ 'select_customer' => 'Select Customer',
+ 'send_invoice' => 'Send Invoice',
+ 'send_quote' => 'Send Quote',
+ 'send_receipt' => 'Send Receipt',
+ 'send_work_order' => 'Send Work Order',
+ 'serial' => 'Serial',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Show Invoice',
+ 'show_receipt' => 'Show Receipt',
+ 'start_typing_customer_name' => 'Start typing customer details...',
+ 'start_typing_item_name' => 'Start typing Item Name or scan Barcode...',
+ 'stock' => 'Stock',
+ 'stock_location' => 'Stock Location',
+ 'sub_total' => 'Subtotal',
+ 'successfully_deleted' => 'You have successfully deleted',
+ 'successfully_restored' => 'You have successfully restored',
+ 'successfully_suspended_sale' => 'Sale suspend successful.',
+ 'successfully_updated' => 'Sale update successful.',
+ 'suspend_sale' => 'Suspend',
+ 'suspended_doc_id' => 'Document',
+ 'suspended_sale_id' => 'ID',
+ 'suspended_sales' => 'Suspended',
+ 'table' => 'Table',
+ 'takings' => 'Daily Sales',
+ 'tax' => 'Tax',
+ 'tax_id' => 'Tax Id',
+ 'tax_invoice' => 'Tax Invoice',
+ 'tax_percent' => 'Tax %',
+ 'taxed_ind' => '',
+ 'total' => 'Total',
+ 'total_tax_exclusive' => 'Tax excluded',
+ 'transaction_failed' => 'Sales Transaction failed.',
+ 'unable_to_add_item' => 'Item add to Sale failed',
+ 'unsuccessfully_deleted' => 'Sale(s) delete failed.',
+ 'unsuccessfully_restored' => 'Sale(s) restore failed.',
+ 'unsuccessfully_suspended_sale' => 'Sale suspend failed.',
+ 'unsuccessfully_updated' => 'Sale update failed.',
+ 'unsuspend' => 'Unsuspend',
+ 'unsuspend_and_delete' => 'Action',
+ 'update' => 'Update',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'Work Order',
+ 'work_order_number' => 'Work Order Number',
+ 'work_order_number_duplicate' => 'Work Order Number must be unique.',
+ 'work_order_sent' => 'Work Order sent to',
+ 'work_order_unsent' => 'Work Order failed to be sent to',
];
diff --git a/app/Language/tr/Config.php b/app/Language/tr/Config.php
index 0b27543d2..851408f26 100644
--- a/app/Language/tr/Config.php
+++ b/app/Language/tr/Config.php
@@ -1,332 +1,335 @@
"Şirket Adresi",
- "address_required" => "Şirket Adresi zorunlu alandır.",
- "all_set" => "Tüm dosya izinleri düzgün belirlendi!",
- "allow_duplicate_barcodes" => "Aynı barkod numarasının birden fazla kaydedilmesine izin ver",
- "apostrophe" => "kesme imi",
- "backup_button" => "Yedekle",
- "backup_database" => "Veri Tabanını Yedekle",
- "barcode" => "Barkod",
- "barcode_company" => "Şirket Adı",
- "barcode_configuration" => "Barkod Yapılandırması",
- "barcode_content" => "Barkod İçeriği",
- "barcode_first_row" => "Satır 1",
- "barcode_font" => "Yazı Tipi",
- "barcode_formats" => "Giriş Biçimleri",
- "barcode_generate_if_empty" => "Boş ise oluştur.",
- "barcode_height" => "Yükseklik (pk)",
- "barcode_id" => "Ürün Id/Adı",
- "barcode_info" => "Barkod Yapılandırma Bilgisi",
- "barcode_layout" => "Barkod Yerleşimi",
- "barcode_name" => "Ad",
- "barcode_number" => "UPC/EAN/ISBN",
- "barcode_number_in_row" => "Satırdaki sayı",
- "barcode_page_cellspacing" => "Sayfadaki hücre boşluğunu göster.",
- "barcode_page_width" => "Sayfa genişliğini göster",
- "barcode_price" => "Fiyat",
- "barcode_second_row" => "Satır 2",
- "barcode_third_row" => "Satır 3",
- "barcode_tooltip" => "Uyarı: Bu özellik, yinelenen ögelerin içe aktarılmasına veya oluşturulmasına neden olabilir. Yinelenen barkod istemiyorsanız kullanmayın.",
- "barcode_type" => "Barkod Türü",
- "barcode_width" => "Genişlik (pk)",
- "bottom" => "Alt",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Nakit Ondalık",
- "cash_decimals_tooltip" => "Nakit Ondalık ve Para Birimi Ondaması aynıysa, nakit yuvarlama yapılmayacaktır.",
- "cash_rounding" => "Nakit Yuvarlama",
- "category_dropdown" => "Kategoriyi açılır liste olarak göster",
- "center" => "Orta",
- "change_apperance_tooltip" => "",
- "comma" => "virgül",
- "company" => "Şirket Adı",
- "company_avatar" => "",
- "company_change_image" => "Görüntüyü Değiştir",
- "company_logo" => "Şirket Logosu",
- "company_remove_image" => "Görüntüyü Kaldır",
- "company_required" => "Şirket Adı zorunlu alandır",
- "company_select_image" => "Görüntü Seç",
- "company_website_url" => "Şirket web sitesi geçerli bir URL değil (http: // ...).",
- "country_codes" => "Ülke Kodları",
- "country_codes_tooltip" => "Nominatim adres araması için ülke kodlarının virgülle ayrılmış listesi.",
- "currency_code" => "Para Birimi Kodu",
- "currency_decimals" => "Para Birimi Ondalık",
- "currency_symbol" => "Para Birimi",
- "current_employee_only" => "",
- "customer_reward" => "Ödül",
- "customer_reward_duplicate" => "Ödül eşsiz olmalı.",
- "customer_reward_enable" => "Müşteri Ödüllerini etkinleştir",
- "customer_reward_invalid_chars" => "Ödül '_' içeremez",
- "customer_reward_required" => "Ödül gerekli bir alandır",
- "customer_sales_tax_support" => "Müşteri Satış Vergisi Desteği",
- "date_or_time_format" => "Tarih ve Saat Filtresi",
- "datetimeformat" => "Tarih ve Zaman biçimi",
- "decimal_point" => "Ondalık nokta",
- "default_barcode_font_size_number" => "Öntanımlı Barkod Yazı Tipi Boyutu bir sayı olmalıdır.",
- "default_barcode_font_size_required" => "Ön tanımlı barkod yazı tipi boyutu alanı gereklidir.",
- "default_barcode_height_number" => "Ön tanımlı barkod yüksekliği bir sayı olmalıdır.",
- "default_barcode_height_required" => "Ön tanımlı barkod yüksekliği zorunlu bir alandır.",
- "default_barcode_num_in_row_number" => "Satırdaki Öntanımlı Barkod Numarası bir sayı olmalıdır.",
- "default_barcode_num_in_row_required" => "Standart Barkod Numarası gerekli bir alandır.",
- "default_barcode_page_cellspacing_number" => "Standart Barkod Sayfa cellspacing bir sayı olmalıdır.",
- "default_barcode_page_cellspacing_required" => "Standart Barkod Sayfa cellspacing gerekli bir alandır.",
- "default_barcode_page_width_number" => "Ön tanımlı barkod sayfası genişliği bir sayı olmalıdır.",
- "default_barcode_page_width_required" => "Ön tanımlı barkod sayfası genişliği zorunlu bir alandır.",
- "default_barcode_width_number" => "Ön tanımlı barkod genişliği bir sayı olmalıdır.",
- "default_barcode_width_required" => "Ön tanımlı barkod genişliği zorunlu bir alandır.",
- "default_item_columns" => "Öntanımlı Görünür Öge Sütunları",
- "default_origin_tax_code" => "Ön Tanımlı Vergi Kodu",
- "default_receivings_discount" => "Öntanımlı Alım İndirimi",
- "default_receivings_discount_number" => "Öntanımlı Alım İndirimi sayı olmalıdır.",
- "default_receivings_discount_required" => "Öntanımlı Alım İndirimi zorunlu bir alandır.",
- "default_sales_discount" => "Ön Tanımlı Satış İskontosu %",
- "default_sales_discount_number" => "Ön tanımlı satış iskontosu bir sayı olmalıdır.",
- "default_sales_discount_required" => "Ön tanımlı satış iskontosu zorunlu bir alandır.",
- "default_tax_category" => "Öntanımlı Vergi Kategorisi",
- "default_tax_code" => "Öntanımlı Vergi Kodu",
- "default_tax_jurisdiction" => "Öntanımlı Vergi Yargı Mercii",
- "default_tax_name_number" => "Ön Tanımlı Vergi Adı bir dize olmalıdır.",
- "default_tax_name_required" => "Ön tanımlı vergi adı zorunlu bir alandır.",
- "default_tax_rate" => "Öntanımlı Vergi Oranı %",
- "default_tax_rate_1" => "Vergi Oranı 1",
- "default_tax_rate_2" => "Vergi Oranı 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Öntanımlı Vergi Oranı sayı olmalıdır.",
- "default_tax_rate_required" => "Öntanımlı Vergi Oranı zorunlu alandır.",
- "derive_sale_quantity" => "Otomatik Satış Sayısı oluşturmasına izin ver",
- "derive_sale_quantity_tooltip" => "Seçili ise sipariş edilen ürünler için arttırılan miktarda yeni ürün türü sağlanacak",
- "dinner_table" => "Masa",
- "dinner_table_duplicate" => "Aynı masa ikinci kez tanımlanamaz.",
- "dinner_table_enable" => "Masalarını etkinleştir",
- "dinner_table_invalid_chars" => "Masa Adı '_' içeremez.",
- "dinner_table_required" => "Masa gerekli bir alandır.",
- "dot" => "nokta",
- "email" => "E-posta",
- "email_configuration" => "E-posta Yapılandırması",
- "email_mailpath" => "Sendmail yolu",
- "email_protocol" => "İletişim Kuralı",
- "email_receipt_check_behaviour" => "Fişi E-postala denetim kutusu",
- "email_receipt_check_behaviour_always" => "Her zaman işaretli",
- "email_receipt_check_behaviour_last" => "Son seçimimi hatırla",
- "email_receipt_check_behaviour_never" => "Her zaman işaretsiz",
- "email_smtp_crypto" => "SMTP Şifreleme",
- "email_smtp_host" => "SMTP Sunucusu",
- "email_smtp_pass" => "SMTP Parola",
- "email_smtp_port" => "SMTP Bağlantı Noktası",
- "email_smtp_timeout" => "SMTP Zaman Aşım(lar)ı",
- "email_smtp_user" => "SMTP Kullanıcı Adı",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Gizlilik uygula",
- "enforce_privacy_tooltip" => "Müşteriler bilgilerini gizliliğini korunur",
- "fax" => "Faks",
- "file_perm" => "Dosya izinleriyle ilgili sorunlar var, lütfen giderin ve bu sayfayı yeniden yükleyin.",
- "financial_year" => "Mali Yıl Başlat",
- "financial_year_apr" => "1 Nisan",
- "financial_year_aug" => "1 Ağustos",
- "financial_year_dec" => "1 Aralık",
- "financial_year_feb" => "1 Şubat",
- "financial_year_jan" => "1 Ocak",
- "financial_year_jul" => "1 Temmuz",
- "financial_year_jun" => "1 Haziran",
- "financial_year_mar" => "1 Mart",
- "financial_year_may" => "1 Mayıs",
- "financial_year_nov" => "1 Kasım",
- "financial_year_oct" => "1 Ekim",
- "financial_year_sep" => "1 Eylül",
- "floating_labels" => "Yüzen Etiketler",
- "gcaptcha_enable" => "Giriş Sayfası reCAPTCHA",
- "gcaptcha_secret_key" => "ReCAPTCHA Gizli Anahtar",
- "gcaptcha_secret_key_required" => "ReCAPTCHA Gizli Anahtar zorunlu bir alandır",
- "gcaptcha_site_key" => "ReCAPTCHA Site Anahtarı",
- "gcaptcha_site_key_required" => "ReCAPTCHA Site Anahtarı zorunlu bir alandır",
- "gcaptcha_tooltip" => "Giriş sayfasını Google reCAPTCHA ile koruyun, API anahtar çifti için simgeye tıklayın.",
- "general" => "Genel",
- "general_configuration" => "Genel Yapılandırma",
- "giftcard_number" => "Hediye Kartı Numarası",
- "giftcard_random" => "Rastgele Oluştur",
- "giftcard_series" => "Seri Oluştur",
- "image_allowed_file_types" => "İzin verilen dosya türleri",
- "image_max_height_tooltip" => "Görüntü yüklemelerinde piksel (px) türünde izin verilen azami yükseklik.",
- "image_max_size_tooltip" => "Görüntü yüklemelerinde kilobayt (kb) türünde izin verilen azami dosya boyutu.",
- "image_max_width_tooltip" => "Görüntü yüklemelerinde piksel (px) türünde izin verilen azami genişlik.",
- "image_restrictions" => "Görsel Yükleme Kısıtları",
- "include_hsn" => "HSN Kodları Desteğini İçer",
- "info" => "Bilgi",
- "info_configuration" => "Mağaza Bilgisi",
- "input_groups" => "Girdi Kümeleri",
- "integrations" => "Tümleşimler",
- "integrations_configuration" => "Üçüncü Taraf Tümleşimler",
- "invoice" => "Fatura",
- "invoice_configuration" => "Fatura Yazdırma Ayarları",
- "invoice_default_comments" => "Ön Tanımlı Fatura Yorumları",
- "invoice_email_message" => "Fatura E-Posta Şablonu",
- "invoice_enable" => "Faturalandırmayı Etkinleştir",
- "invoice_printer" => "Fatura Yazıcısı",
- "invoice_type" => "Fatura Türü",
- "is_readable" => "okunabilirdir ama izinleri yanlış belirlenmiştir. Lütfen 640'a veya 660'a ayarlayın ve tazeleyin.",
- "is_writable" => "yazılabilirdir ama izinleri yanlış belirlenmiştir. Lütfen 750'ye ayarlayın ve tazeleyin.",
- "item_markup" => "",
- "jsprintsetup_required" => "Uyarı: Bu işlev yalnızca FireFox jsPrintSetup eklentisi kuruluysa çalışacaktır. Yine de kaydedilsin mi?",
- "language" => "Dil",
- "last_used_invoice_number" => "Son kullanılan Fatura Numarası",
- "last_used_quote_number" => "Son kullanılan Teknif Numarası",
- "last_used_work_order_number" => "Son kullanılan İş Emri Numarası",
- "left" => "Sol",
- "license" => "Lisans",
- "license_configuration" => "Lisans Beyanı",
- "line_sequence" => "Satır Sırası",
- "lines_per_page" => "Sayfa Başı Satır",
- "lines_per_page_number" => "The lines per page must be a number.",
- "lines_per_page_required" => "Sayfa başı satır zorunlu bir alandır.",
- "locale" => "Yerelleştirme",
- "locale_configuration" => "Yerelleştirme Yapılandırması",
- "locale_info" => "Yerelleştirme Yapılandırması Bilgisi",
- "location" => "Stok",
- "location_configuration" => "Stok Konumları",
- "location_info" => "Konum Yapılandırma Bilgisi",
- "login_form" => "Giriş Form Biçimi",
- "logout" => "Çıkış yapmadan önce bir yedekleme yapmak ister misiniz? Yedeklemek için [Tamam] 'a veya oturumu kapatmak için [İptal]' e tıklayın.",
- "mailchimp" => "MailChimp",
- "mailchimp_api_key" => "MailChimp API Anahtarı",
- "mailchimp_configuration" => "MailChimp Yapılandırması",
- "mailchimp_key_successfully" => "API Anahtarı geçerlidir.",
- "mailchimp_key_unsuccessfully" => "API Anahtarı geçersiz.",
- "mailchimp_lists" => "MailChimp Listeleri",
- "mailchimp_tooltip" => "API Anahtarı için simgeye tıklayın.",
- "message" => "Mesaj",
- "message_configuration" => "İleti Yapılandırması",
- "msg_msg" => "Kaydedilen Metin İletisi",
- "msg_msg_placeholder" => "Eğer bir SMS şablonu kullanmak isterseniz iletinizi buraya kaydediniz. Ya da kutuyu boş bırakınız.",
- "msg_pwd" => "SMS-API Parolası",
- "msg_pwd_required" => "SMS-API Parola zorunlu bir alandır",
- "msg_src" => "SMS-API Gönderici Kimliği",
- "msg_src_required" => "SMS-API Gönderici Kimliği zorunlu bir alandır",
- "msg_uid" => "SMS-API Kullanıcı Adı",
- "msg_uid_required" => "SMS-API Kullanıcı Adı zorunlu bir alandır",
- "multi_pack_enabled" => "Öğe Başına Birden Çok Paket",
- "no_risk" => "Güvenlik/arıklık riski yok.",
- "none" => "Hiçbiri",
- "notify_alignment" => "Bildirim Balonu Konumu",
- "number_format" => "Numara Biçimi",
- "number_locale" => "Yerelleştirme",
- "number_locale_invalid" => "Girilen yerel ayar geçersiz. Geçerli bir yerel ayar bulmak için araç ipucundaki bağlantıyı denetleyin.",
- "number_locale_required" => "Numara Yerel Ayarı gerekli bir alandır.",
- "number_locale_tooltip" => "Bu bağlantı üzerinden yerel ayar kodunu bul.",
- "os_timezone" => "OSPOS Saat Dilimi:",
- "ospos_info" => "OSPOS Kurulum Bilgisi",
- "payment_options_order" => "Ödeme Seçenekleri Sırası",
- "perm_risk" => "Doğru olmayan izinler bu yazılımı riske atar.",
- "phone" => "Şirket Telefonu",
- "phone_required" => "Şirket Telefonu zorunlu alandır.",
- "print_bottom_margin" => "Alt Kenar",
- "print_bottom_margin_number" => "Alt Kenar bir sayı olmalıdır.",
- "print_bottom_margin_required" => "Alt Kenar gerekli bir alandır.",
- "print_delay_autoreturn" => "Otomatik Cevap için Satış Gecikmesi",
- "print_delay_autoreturn_number" => "Otomatik Cevap için Satış Gecikmesi gerekli bir alandır.",
- "print_delay_autoreturn_required" => "Otomatik Cevap için Satış Gecikmesi bir sayı olmalıdır..",
- "print_footer" => "Sayfa Altbilgisini Yazdır",
- "print_header" => "Sayfa Başlığını Yazdır",
- "print_left_margin" => "Sol Kenar",
- "print_left_margin_number" => "Sol Kenar bir sayı olmalıdır.",
- "print_left_margin_required" => "Sol Kenar gerekli bir alandır.",
- "print_receipt_check_behaviour" => "Fiş Yazdır denetim kutusu",
- "print_receipt_check_behaviour_always" => "Her zaman işaretle",
- "print_receipt_check_behaviour_last" => "Son seçimimi hatırla",
- "print_receipt_check_behaviour_never" => "Her zaman işaretleme",
- "print_right_margin" => "Sağ Kenar",
- "print_right_margin_number" => "Sağ Kenar bir sayı olmalıdır.",
- "print_right_margin_required" => "Sağ Kenar gerekli bir alandır.",
- "print_silently" => "Yazdırma Diyaloğunu Göster",
- "print_top_margin" => "Üst Kenar",
- "print_top_margin_number" => "Üst Kenar bir sayı olmalıdır.",
- "print_top_margin_required" => "Üst Kenar gerekli bir alandır.",
- "quantity_decimals" => "Ondalık Basamak Sayısı",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Standart Teklif Yorumları",
- "receipt" => "Fiş",
- "receipt_category" => "",
- "receipt_configuration" => "Fiş Yazdırma Ayarları",
- "receipt_default" => "Öntanımlı",
- "receipt_font_size" => "Yazı Boyutu",
- "receipt_font_size_number" => "Yazı Tipi Boyutu bir sayı olmalıdır.",
- "receipt_font_size_required" => "Yazı Tipi Boyutu gerekli bir alandır.",
- "receipt_info" => "Fiş Yapılandırma Bilgisi",
- "receipt_printer" => "Fiş Yazıcısı",
- "receipt_short" => "Kısa",
- "receipt_show_company_name" => "Şirket Adını Göster",
- "receipt_show_description" => "Açıklamayı Göster",
- "receipt_show_serialnumber" => "Seri Numarasını Göster",
- "receipt_show_tax_ind" => "Vergi Belirtecini Göster",
- "receipt_show_taxes" => "Vergileri Göster",
- "receipt_show_total_discount" => "Toplam İskontoyu Göster",
- "receipt_template" => "Fiş Şablonu",
- "receiving_calculate_average_price" => "Ortalama Fiyatı Hesapla (Alım)",
- "recv_invoice_format" => "Alım Fatura Biçimi",
- "register_mode_default" => "Standart Kayıt Modu",
- "report_an_issue" => "Sorun bildir",
- "return_policy_required" => "İade Politikası zorunlu alandır.",
- "reward" => "Ödül",
- "reward_configuration" => "Ödül Ayarları",
- "right" => "Sağ",
- "sales_invoice_format" => "Satış Fatura Biçimi",
- "sales_quote_format" => "Satış Teklif Biçimi",
- "mailpath_invalid" => "",
- "saved_successfully" => "Yapılandırma kaydedildi.",
- "saved_unsuccessfully" => "Yapılandırma kaydedilemedi.",
- "security_issue" => "Güvenlik Arıklığı Uyarısı",
- "server_notice" => "Lütfen sorun bildirme için aşağıdaki bilgileri kullanın.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Ofis simgesini göster",
- "statistics" => "İstatistik gönder",
- "statistics_tooltip" => "Geliştirme ve özellik iyileştirme amaçları için istatistik gönder.",
- "stock_location" => "Mağaza Yeri",
- "stock_location_duplicate" => "Lütfen benzersiz bir yer adı kullan.",
- "stock_location_invalid_chars" => "Mağaza yeri adı '_' içeremez.",
- "stock_location_required" => "Mağaza Yeri numarası zorunlu alandır.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Sütun 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Önerilerde Ara",
- "suggestions_second_column" => "Sütun 2",
- "suggestions_third_column" => "Sütun 3",
- "system_conf" => "Kurulum ve Yapı",
- "system_info" => "System Info",
- "table" => "Masa",
- "table_configuration" => "Masa Ayarı",
- "takings_printer" => "Fiş Yazıcısı",
- "tax" => "Vergi",
- "tax_category" => "Vergi Kategorisi",
- "tax_category_duplicate" => "Girilen vergi kategorisi zaten var.",
- "tax_category_invalid_chars" => "Girilen vergi kategorisi geçersiz.",
- "tax_category_required" => "Vergi kategori gereklidir.",
- "tax_category_used" => "Vergi kategorisi silinemez. Kullanılmaktadır.",
- "tax_configuration" => "Vergi Ayarları",
- "tax_decimals" => "Vergi Ondalık",
- "tax_id" => "Vergi numarası",
- "tax_included" => "Vergi Dahil",
- "theme" => "Gövde",
- "theme_preview" => "Temayı Ön İzle:",
- "thousands_separator" => "Binlik Ayırıcı",
- "timezone" => "Saat Dilimi",
- "timezone_error" => "OSPOS Saat Dilimi, yerel Saat Diliminizden farklı.",
- "top" => "Üst",
- "use_destination_based_tax" => "Hedef Bazlı Vergiyi Kullan",
- "user_timezone" => "Yerel Saat Dilimi:",
- "website" => "Web site",
- "wholesale_markup" => "",
- "work_order_enable" => "İş Emri Aktif",
- "work_order_format" => "İş Emri Biçimi",
+ 'address' => 'Şirket Adresi',
+ 'address_required' => 'Şirket Adresi zorunlu alandır.',
+ 'all_set' => 'Tüm dosya izinleri düzgün belirlendi!',
+ 'allow_duplicate_barcodes' => 'Aynı barkod numarasının birden fazla kaydedilmesine izin ver',
+ 'apostrophe' => 'kesme imi',
+ 'backup_button' => 'Yedekle',
+ 'backup_database' => 'Veri Tabanını Yedekle',
+ 'barcode' => 'Barkod',
+ 'barcode_company' => 'Şirket Adı',
+ 'barcode_configuration' => 'Barkod Yapılandırması',
+ 'barcode_content' => 'Barkod İçeriği',
+ 'barcode_first_row' => 'Satır 1',
+ 'barcode_font' => 'Yazı Tipi',
+ 'barcode_formats' => 'Giriş Biçimleri',
+ 'barcode_generate_if_empty' => 'Boş ise oluştur.',
+ 'barcode_height' => 'Yükseklik (pk)',
+ 'barcode_id' => 'Ürün Id/Adı',
+ 'barcode_info' => 'Barkod Yapılandırma Bilgisi',
+ 'barcode_layout' => 'Barkod Yerleşimi',
+ 'barcode_name' => 'Ad',
+ 'barcode_number' => 'UPC/EAN/ISBN',
+ 'barcode_number_in_row' => 'Satırdaki sayı',
+ 'barcode_page_cellspacing' => 'Sayfadaki hücre boşluğunu göster.',
+ 'barcode_page_width' => 'Sayfa genişliğini göster',
+ 'barcode_price' => 'Fiyat',
+ 'barcode_second_row' => 'Satır 2',
+ 'barcode_third_row' => 'Satır 3',
+ 'barcode_tooltip' => 'Uyarı: Bu özellik, yinelenen ögelerin içe aktarılmasına veya oluşturulmasına neden olabilir. Yinelenen barkod istemiyorsanız kullanmayın.',
+ 'barcode_type' => 'Barkod Türü',
+ 'barcode_width' => 'Genişlik (pk)',
+ 'bottom' => 'Alt',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Nakit Ondalık',
+ 'cash_decimals_tooltip' => 'Nakit Ondalık ve Para Birimi Ondaması aynıysa, nakit yuvarlama yapılmayacaktır.',
+ 'cash_rounding' => 'Nakit Yuvarlama',
+ 'category_dropdown' => 'Kategoriyi açılır liste olarak göster',
+ 'center' => 'Orta',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'virgül',
+ 'company' => 'Şirket Adı',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Görüntüyü Değiştir',
+ 'company_logo' => 'Şirket Logosu',
+ 'company_remove_image' => 'Görüntüyü Kaldır',
+ 'company_required' => 'Şirket Adı zorunlu alandır',
+ 'company_select_image' => 'Görüntü Seç',
+ 'company_website_url' => 'Şirket web sitesi geçerli bir URL değil (http: // ...).',
+ 'country_codes' => 'Ülke Kodları',
+ 'country_codes_tooltip' => 'Nominatim adres araması için ülke kodlarının virgülle ayrılmış listesi.',
+ 'currency_code' => 'Para Birimi Kodu',
+ 'currency_decimals' => 'Para Birimi Ondalık',
+ 'currency_symbol' => 'Para Birimi',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Ödül',
+ 'customer_reward_duplicate' => 'Ödül eşsiz olmalı.',
+ 'customer_reward_enable' => 'Müşteri Ödüllerini etkinleştir',
+ 'customer_reward_invalid_chars' => "Ödül '_' içeremez",
+ 'customer_reward_required' => 'Ödül gerekli bir alandır',
+ 'customer_sales_tax_support' => 'Müşteri Satış Vergisi Desteği',
+ 'date_or_time_format' => 'Tarih ve Saat Filtresi',
+ 'datetimeformat' => 'Tarih ve Zaman biçimi',
+ 'decimal_point' => 'Ondalık nokta',
+ 'default_barcode_font_size_number' => 'Öntanımlı Barkod Yazı Tipi Boyutu bir sayı olmalıdır.',
+ 'default_barcode_font_size_required' => 'Ön tanımlı barkod yazı tipi boyutu alanı gereklidir.',
+ 'default_barcode_height_number' => 'Ön tanımlı barkod yüksekliği bir sayı olmalıdır.',
+ 'default_barcode_height_required' => 'Ön tanımlı barkod yüksekliği zorunlu bir alandır.',
+ 'default_barcode_num_in_row_number' => 'Satırdaki Öntanımlı Barkod Numarası bir sayı olmalıdır.',
+ 'default_barcode_num_in_row_required' => 'Standart Barkod Numarası gerekli bir alandır.',
+ 'default_barcode_page_cellspacing_number' => 'Standart Barkod Sayfa cellspacing bir sayı olmalıdır.',
+ 'default_barcode_page_cellspacing_required' => 'Standart Barkod Sayfa cellspacing gerekli bir alandır.',
+ 'default_barcode_page_width_number' => 'Ön tanımlı barkod sayfası genişliği bir sayı olmalıdır.',
+ 'default_barcode_page_width_required' => 'Ön tanımlı barkod sayfası genişliği zorunlu bir alandır.',
+ 'default_barcode_width_number' => 'Ön tanımlı barkod genişliği bir sayı olmalıdır.',
+ 'default_barcode_width_required' => 'Ön tanımlı barkod genişliği zorunlu bir alandır.',
+ 'default_item_columns' => 'Öntanımlı Görünür Öge Sütunları',
+ 'default_origin_tax_code' => 'Ön Tanımlı Vergi Kodu',
+ 'default_receivings_discount' => 'Öntanımlı Alım İndirimi',
+ 'default_receivings_discount_number' => 'Öntanımlı Alım İndirimi sayı olmalıdır.',
+ 'default_receivings_discount_required' => 'Öntanımlı Alım İndirimi zorunlu bir alandır.',
+ 'default_sales_discount' => 'Ön Tanımlı Satış İskontosu %',
+ 'default_sales_discount_number' => 'Ön tanımlı satış iskontosu bir sayı olmalıdır.',
+ 'default_sales_discount_required' => 'Ön tanımlı satış iskontosu zorunlu bir alandır.',
+ 'default_tax_category' => 'Öntanımlı Vergi Kategorisi',
+ 'default_tax_code' => 'Öntanımlı Vergi Kodu',
+ 'default_tax_jurisdiction' => 'Öntanımlı Vergi Yargı Mercii',
+ 'default_tax_name_number' => 'Ön Tanımlı Vergi Adı bir dize olmalıdır.',
+ 'default_tax_name_required' => 'Ön tanımlı vergi adı zorunlu bir alandır.',
+ 'default_tax_rate' => 'Öntanımlı Vergi Oranı %',
+ 'default_tax_rate_1' => 'Vergi Oranı 1',
+ 'default_tax_rate_2' => 'Vergi Oranı 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Öntanımlı Vergi Oranı sayı olmalıdır.',
+ 'default_tax_rate_required' => 'Öntanımlı Vergi Oranı zorunlu alandır.',
+ 'derive_sale_quantity' => 'Otomatik Satış Sayısı oluşturmasına izin ver',
+ 'derive_sale_quantity_tooltip' => 'Seçili ise sipariş edilen ürünler için arttırılan miktarda yeni ürün türü sağlanacak',
+ 'dinner_table' => 'Masa',
+ 'dinner_table_duplicate' => 'Aynı masa ikinci kez tanımlanamaz.',
+ 'dinner_table_enable' => 'Masalarını etkinleştir',
+ 'dinner_table_invalid_chars' => "Masa Adı '_' içeremez.",
+ 'dinner_table_required' => 'Masa gerekli bir alandır.',
+ 'dot' => 'nokta',
+ 'email' => 'E-posta',
+ 'email_configuration' => 'E-posta Yapılandırması',
+ 'email_mailpath' => 'Sendmail yolu',
+ 'email_protocol' => 'İletişim Kuralı',
+ 'email_receipt_check_behaviour' => 'Fişi E-postala denetim kutusu',
+ 'email_receipt_check_behaviour_always' => 'Her zaman işaretli',
+ 'email_receipt_check_behaviour_last' => 'Son seçimimi hatırla',
+ 'email_receipt_check_behaviour_never' => 'Her zaman işaretsiz',
+ 'email_smtp_crypto' => 'SMTP Şifreleme',
+ 'email_smtp_host' => 'SMTP Sunucusu',
+ 'email_smtp_pass' => 'SMTP Parola',
+ 'email_smtp_port' => 'SMTP Bağlantı Noktası',
+ 'email_smtp_timeout' => 'SMTP Zaman Aşım(lar)ı',
+ 'email_smtp_user' => 'SMTP Kullanıcı Adı',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Gizlilik uygula',
+ 'enforce_privacy_tooltip' => 'Müşteriler bilgilerini gizliliğini korunur',
+ 'fax' => 'Faks',
+ 'file_perm' => 'Dosya izinleriyle ilgili sorunlar var, lütfen giderin ve bu sayfayı yeniden yükleyin.',
+ 'financial_year' => 'Mali Yıl Başlat',
+ 'financial_year_apr' => '1 Nisan',
+ 'financial_year_aug' => '1 Ağustos',
+ 'financial_year_dec' => '1 Aralık',
+ 'financial_year_feb' => '1 Şubat',
+ 'financial_year_jan' => '1 Ocak',
+ 'financial_year_jul' => '1 Temmuz',
+ 'financial_year_jun' => '1 Haziran',
+ 'financial_year_mar' => '1 Mart',
+ 'financial_year_may' => '1 Mayıs',
+ 'financial_year_nov' => '1 Kasım',
+ 'financial_year_oct' => '1 Ekim',
+ 'financial_year_sep' => '1 Eylül',
+ 'floating_labels' => 'Yüzen Etiketler',
+ 'gcaptcha_enable' => 'Giriş Sayfası reCAPTCHA',
+ 'gcaptcha_secret_key' => 'ReCAPTCHA Gizli Anahtar',
+ 'gcaptcha_secret_key_required' => 'ReCAPTCHA Gizli Anahtar zorunlu bir alandır',
+ 'gcaptcha_site_key' => 'ReCAPTCHA Site Anahtarı',
+ 'gcaptcha_site_key_required' => 'ReCAPTCHA Site Anahtarı zorunlu bir alandır',
+ 'gcaptcha_tooltip' => 'Giriş sayfasını Google reCAPTCHA ile koruyun, API anahtar çifti için simgeye tıklayın.',
+ 'general' => 'Genel',
+ 'general_configuration' => 'Genel Yapılandırma',
+ 'giftcard_number' => 'Hediye Kartı Numarası',
+ 'giftcard_random' => 'Rastgele Oluştur',
+ 'giftcard_series' => 'Seri Oluştur',
+ 'image_allowed_file_types' => 'İzin verilen dosya türleri',
+ 'image_max_height_tooltip' => 'Görüntü yüklemelerinde piksel (px) türünde izin verilen azami yükseklik.',
+ 'image_max_size_tooltip' => 'Görüntü yüklemelerinde kilobayt (kb) türünde izin verilen azami dosya boyutu.',
+ 'image_max_width_tooltip' => 'Görüntü yüklemelerinde piksel (px) türünde izin verilen azami genişlik.',
+ 'image_restrictions' => 'Görsel Yükleme Kısıtları',
+ 'include_hsn' => 'HSN Kodları Desteğini İçer',
+ 'info' => 'Bilgi',
+ 'info_configuration' => 'Mağaza Bilgisi',
+ 'input_groups' => 'Girdi Kümeleri',
+ 'integrations' => 'Tümleşimler',
+ 'integrations_configuration' => 'Üçüncü Taraf Tümleşimler',
+ 'invoice' => 'Fatura',
+ 'invoice_configuration' => 'Fatura Yazdırma Ayarları',
+ 'invoice_default_comments' => 'Ön Tanımlı Fatura Yorumları',
+ 'invoice_email_message' => 'Fatura E-Posta Şablonu',
+ 'invoice_enable' => 'Faturalandırmayı Etkinleştir',
+ 'invoice_printer' => 'Fatura Yazıcısı',
+ 'invoice_type' => 'Fatura Türü',
+ 'is_readable' => "okunabilirdir ama izinleri yanlış belirlenmiştir. Lütfen 640'a veya 660'a ayarlayın ve tazeleyin.",
+ 'is_writable' => "yazılabilirdir ama izinleri yanlış belirlenmiştir. Lütfen 750'ye ayarlayın ve tazeleyin.",
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Uyarı: Bu işlev yalnızca FireFox jsPrintSetup eklentisi kuruluysa çalışacaktır. Yine de kaydedilsin mi?',
+ 'language' => 'Dil',
+ 'last_used_invoice_number' => 'Son kullanılan Fatura Numarası',
+ 'last_used_quote_number' => 'Son kullanılan Teknif Numarası',
+ 'last_used_work_order_number' => 'Son kullanılan İş Emri Numarası',
+ 'left' => 'Sol',
+ 'license' => 'Lisans',
+ 'license_configuration' => 'Lisans Beyanı',
+ 'line_sequence' => 'Satır Sırası',
+ 'lines_per_page' => 'Sayfa Başı Satır',
+ 'lines_per_page_number' => 'The lines per page must be a number.',
+ 'lines_per_page_required' => 'Sayfa başı satır zorunlu bir alandır.',
+ 'locale' => 'Yerelleştirme',
+ 'locale_configuration' => 'Yerelleştirme Yapılandırması',
+ 'locale_info' => 'Yerelleştirme Yapılandırması Bilgisi',
+ 'location' => 'Stok',
+ 'location_configuration' => 'Stok Konumları',
+ 'location_info' => 'Konum Yapılandırma Bilgisi',
+ 'login_form' => 'Giriş Form Biçimi',
+ 'logout' => "Çıkış yapmadan önce bir yedekleme yapmak ister misiniz? Yedeklemek için [Tamam] 'a veya oturumu kapatmak için [İptal]' e tıklayın.",
+ 'mailchimp' => 'MailChimp',
+ 'mailchimp_api_key' => 'MailChimp API Anahtarı',
+ 'mailchimp_configuration' => 'MailChimp Yapılandırması',
+ 'mailchimp_key_successfully' => 'API Anahtarı geçerlidir.',
+ 'mailchimp_key_unsuccessfully' => 'API Anahtarı geçersiz.',
+ 'mailchimp_lists' => 'MailChimp Listeleri',
+ 'mailchimp_tooltip' => 'API Anahtarı için simgeye tıklayın.',
+ 'message' => 'Mesaj',
+ 'message_configuration' => 'İleti Yapılandırması',
+ 'msg_msg' => 'Kaydedilen Metin İletisi',
+ 'msg_msg_placeholder' => 'Eğer bir SMS şablonu kullanmak isterseniz iletinizi buraya kaydediniz. Ya da kutuyu boş bırakınız.',
+ 'msg_pwd' => 'SMS-API Parolası',
+ 'msg_pwd_required' => 'SMS-API Parola zorunlu bir alandır',
+ 'msg_src' => 'SMS-API Gönderici Kimliği',
+ 'msg_src_required' => 'SMS-API Gönderici Kimliği zorunlu bir alandır',
+ 'msg_uid' => 'SMS-API Kullanıcı Adı',
+ 'msg_uid_required' => 'SMS-API Kullanıcı Adı zorunlu bir alandır',
+ 'multi_pack_enabled' => 'Öğe Başına Birden Çok Paket',
+ 'no_risk' => 'Güvenlik/arıklık riski yok.',
+ 'none' => 'Hiçbiri',
+ 'notify_alignment' => 'Bildirim Balonu Konumu',
+ 'number_format' => 'Numara Biçimi',
+ 'number_locale' => 'Yerelleştirme',
+ 'number_locale_invalid' => 'Girilen yerel ayar geçersiz. Geçerli bir yerel ayar bulmak için araç ipucundaki bağlantıyı denetleyin.',
+ 'number_locale_required' => 'Numara Yerel Ayarı gerekli bir alandır.',
+ 'number_locale_tooltip' => 'Bu bağlantı üzerinden yerel ayar kodunu bul.',
+ 'os_timezone' => 'OSPOS Saat Dilimi:',
+ 'ospos_info' => 'OSPOS Kurulum Bilgisi',
+ 'payment_options_order' => 'Ödeme Seçenekleri Sırası',
+ 'payment_reference_code_length_limits' => 'Ödeme Referans Kodu
Uzunluk Sınırları',
+ 'payment_reference_code_length_max_label' => 'Maks',
+ 'payment_reference_code_length_min_label' => 'Min',
+ 'perm_risk' => 'Doğru olmayan izinler bu yazılımı riske atar.',
+ 'phone' => 'Şirket Telefonu',
+ 'phone_required' => 'Şirket Telefonu zorunlu alandır.',
+ 'print_bottom_margin' => 'Alt Kenar',
+ 'print_bottom_margin_number' => 'Alt Kenar bir sayı olmalıdır.',
+ 'print_bottom_margin_required' => 'Alt Kenar gerekli bir alandır.',
+ 'print_delay_autoreturn' => 'Otomatik Cevap için Satış Gecikmesi',
+ 'print_delay_autoreturn_number' => 'Otomatik Cevap için Satış Gecikmesi gerekli bir alandır.',
+ 'print_delay_autoreturn_required' => 'Otomatik Cevap için Satış Gecikmesi bir sayı olmalıdır..',
+ 'print_footer' => 'Sayfa Altbilgisini Yazdır',
+ 'print_header' => 'Sayfa Başlığını Yazdır',
+ 'print_left_margin' => 'Sol Kenar',
+ 'print_left_margin_number' => 'Sol Kenar bir sayı olmalıdır.',
+ 'print_left_margin_required' => 'Sol Kenar gerekli bir alandır.',
+ 'print_receipt_check_behaviour' => 'Fiş Yazdır denetim kutusu',
+ 'print_receipt_check_behaviour_always' => 'Her zaman işaretle',
+ 'print_receipt_check_behaviour_last' => 'Son seçimimi hatırla',
+ 'print_receipt_check_behaviour_never' => 'Her zaman işaretleme',
+ 'print_right_margin' => 'Sağ Kenar',
+ 'print_right_margin_number' => 'Sağ Kenar bir sayı olmalıdır.',
+ 'print_right_margin_required' => 'Sağ Kenar gerekli bir alandır.',
+ 'print_silently' => 'Yazdırma Diyaloğunu Göster',
+ 'print_top_margin' => 'Üst Kenar',
+ 'print_top_margin_number' => 'Üst Kenar bir sayı olmalıdır.',
+ 'print_top_margin_required' => 'Üst Kenar gerekli bir alandır.',
+ 'quantity_decimals' => 'Ondalık Basamak Sayısı',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Standart Teklif Yorumları',
+ 'receipt' => 'Fiş',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Fiş Yazdırma Ayarları',
+ 'receipt_default' => 'Öntanımlı',
+ 'receipt_font_size' => 'Yazı Boyutu',
+ 'receipt_font_size_number' => 'Yazı Tipi Boyutu bir sayı olmalıdır.',
+ 'receipt_font_size_required' => 'Yazı Tipi Boyutu gerekli bir alandır.',
+ 'receipt_info' => 'Fiş Yapılandırma Bilgisi',
+ 'receipt_printer' => 'Fiş Yazıcısı',
+ 'receipt_short' => 'Kısa',
+ 'receipt_show_company_name' => 'Şirket Adını Göster',
+ 'receipt_show_description' => 'Açıklamayı Göster',
+ 'receipt_show_serialnumber' => 'Seri Numarasını Göster',
+ 'receipt_show_tax_ind' => 'Vergi Belirtecini Göster',
+ 'receipt_show_taxes' => 'Vergileri Göster',
+ 'receipt_show_total_discount' => 'Toplam İskontoyu Göster',
+ 'receipt_template' => 'Fiş Şablonu',
+ 'receiving_calculate_average_price' => 'Ortalama Fiyatı Hesapla (Alım)',
+ 'recv_invoice_format' => 'Alım Fatura Biçimi',
+ 'register_mode_default' => 'Standart Kayıt Modu',
+ 'report_an_issue' => 'Sorun bildir',
+ 'return_policy_required' => 'İade Politikası zorunlu alandır.',
+ 'reward' => 'Ödül',
+ 'reward_configuration' => 'Ödül Ayarları',
+ 'right' => 'Sağ',
+ 'sales_invoice_format' => 'Satış Fatura Biçimi',
+ 'sales_quote_format' => 'Satış Teklif Biçimi',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => 'Yapılandırma kaydedildi.',
+ 'saved_unsuccessfully' => 'Yapılandırma kaydedilemedi.',
+ 'security_issue' => 'Güvenlik Arıklığı Uyarısı',
+ 'server_notice' => 'Lütfen sorun bildirme için aşağıdaki bilgileri kullanın.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Ofis simgesini göster',
+ 'statistics' => 'İstatistik gönder',
+ 'statistics_tooltip' => 'Geliştirme ve özellik iyileştirme amaçları için istatistik gönder.',
+ 'stock_location' => 'Mağaza Yeri',
+ 'stock_location_duplicate' => 'Lütfen benzersiz bir yer adı kullan.',
+ 'stock_location_invalid_chars' => "Mağaza yeri adı '_' içeremez.",
+ 'stock_location_required' => 'Mağaza Yeri numarası zorunlu alandır.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Sütun 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Önerilerde Ara',
+ 'suggestions_second_column' => 'Sütun 2',
+ 'suggestions_third_column' => 'Sütun 3',
+ 'system_conf' => 'Kurulum ve Yapı',
+ 'system_info' => 'System Info',
+ 'table' => 'Masa',
+ 'table_configuration' => 'Masa Ayarı',
+ 'takings_printer' => 'Fiş Yazıcısı',
+ 'tax' => 'Vergi',
+ 'tax_category' => 'Vergi Kategorisi',
+ 'tax_category_duplicate' => 'Girilen vergi kategorisi zaten var.',
+ 'tax_category_invalid_chars' => 'Girilen vergi kategorisi geçersiz.',
+ 'tax_category_required' => 'Vergi kategori gereklidir.',
+ 'tax_category_used' => 'Vergi kategorisi silinemez. Kullanılmaktadır.',
+ 'tax_configuration' => 'Vergi Ayarları',
+ 'tax_decimals' => 'Vergi Ondalık',
+ 'tax_id' => 'Vergi numarası',
+ 'tax_included' => 'Vergi Dahil',
+ 'theme' => 'Gövde',
+ 'theme_preview' => 'Temayı Ön İzle:',
+ 'thousands_separator' => 'Binlik Ayırıcı',
+ 'timezone' => 'Saat Dilimi',
+ 'timezone_error' => 'OSPOS Saat Dilimi, yerel Saat Diliminizden farklı.',
+ 'top' => 'Üst',
+ 'use_destination_based_tax' => 'Hedef Bazlı Vergiyi Kullan',
+ 'user_timezone' => 'Yerel Saat Dilimi:',
+ 'website' => 'Web site',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'İş Emri Aktif',
+ 'work_order_format' => 'İş Emri Biçimi',
];
diff --git a/app/Language/tr/Login.php b/app/Language/tr/Login.php
index d0a469d91..229fc4b40 100644
--- a/app/Language/tr/Login.php
+++ b/app/Language/tr/Login.php
@@ -1,25 +1,30 @@
"Ben robot değilim.",
- "go" => "Giriş",
- "invalid_gcaptcha" => "Robot olmadığınızı kanıtlayınız.",
- "invalid_installation" => "Yükleme doğru değil, php.ini dosyanızı gözden geçirin.",
- "invalid_username_and_password" => "Geçersiz kullanıcı adı ve/veya parola.",
- "login" => "Giriş",
- "logout" => "Çıkış",
- "migration_needed" => "Girişten sonra {0} veri tabanına göç başlayacak.",
- "migration_required" => "Veritabanı Göçü Gerekli",
- "migration_auth_message" => "Veritabanı göçünün {0} versiyonuna yetkilendirilmesi için yönetici kimlik bilgileri gereklidir. Devam etmek için giriş yapın.",
- "migration_initializing" => "Veritabanı başlatılıyor",
- "migration_running" => "Veritabanı göçleri çalışıyor...",
- "migration_complete" => "Veritabanı başarıyla başlatıldı!",
- "migration_complete_login" => "Artık giriş yapabilirsiniz.",
- "migration_failed" => "Göç başarısız oldu",
- "migration_error_connection" => "Bağlantı hatası. Lütfen tekrar deneyin.",
- "migration_complete_redirect" => "Göç tamamlandı. Girişe yönlendiriliyor...",
- "password" => "Parola",
- "required_username" => "Kullanıcı adı alanı gereklidir.",
- "username" => "Kullanıcı Adı",
- "welcome" => "{0}'e Hoş Geldiniz!",
+ "gcaptcha" => "Ben robot değilim.",
+ "go" => "Giriş",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Robot olmadığınızı kanıtlayınız.",
+ "invalid_installation" => "Yükleme doğru değil, php.ini dosyanızı gözden geçirin.",
+ "invalid_username_and_password" => "Geçersiz kullanıcı adı ve/veya parola.",
+ "login" => "Giriş",
+ "logout" => "Çıkış",
+ "migrating_database" => "Veritabanı Taşınıyor",
+ "migration_auth_message" => "Veritabanı göçünün {0} versiyonuna yetkilendirilmesi için yönetici kimlik bilgileri gereklidir. Devam etmek için giriş yapın.",
+ "migration_complete" => "Veritabanı başarıyla başlatıldı!",
+ "migration_complete_login" => "Artık giriş yapabilirsiniz.",
+ "migration_complete_migrate" => "Veritabanı başarıyla taşındı!",
+ "migration_complete_redirect" => "Göç tamamlandı. Girişe yönlendiriliyor...",
+ "migration_error_connection" => "Bağlantı hatası. Lütfen tekrar deneyin.",
+ "migration_failed" => "Göç başarısız oldu",
+ "migration_initializing" => "Veritabanı başlatılıyor",
+ "migration_needed" => "Girişten sonra {0} veri tabanına göç başlayacak.",
+ "migration_required" => "Veritabanı Göçü Gerekli",
+ "migration_running" => "Veritabanı göçleri çalışıyor...",
+ "password" => "Parola",
+ "required_username" => "Kullanıcı adı alanı gereklidir.",
+ "username" => "Kullanıcı Adı",
+ "welcome" => "{0}'e Hoş Geldiniz!"
];
diff --git a/app/Language/tr/Sales.php b/app/Language/tr/Sales.php
index 48a1ee668..0797e2fd7 100644
--- a/app/Language/tr/Sales.php
+++ b/app/Language/tr/Sales.php
@@ -1,231 +1,235 @@
"Var Olan Puanlar",
- "rewards_package" => "Ödüller",
- "rewards_remaining_balance" => "Ödül Puanı kalan değeri ",
- "account_number" => "Hesap Numarası",
- "add_payment" => "Ödeme Ekle",
- "amount_due" => "Kalan Ödeme",
- "amount_tendered" => "Ödenen Tutar",
- "authorized_signature" => "Yetkili İmza",
- "cancel_sale" => "İptal Et",
- "cash" => "Nakit",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "Nakit Düzeltimi",
- "cash_deposit" => "Nakit Depozito",
- "cash_filter" => "Nakit",
- "change_due" => "Para Üstü",
- "change_price" => "Satış Fiyatını Değiştir",
- "check" => "Çek",
- "check_balance" => "Çek bakiyesi",
- "check_filter" => "Çek",
- "close" => "",
- "comment" => "Yorum",
- "comments" => "Yorumlar",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Satışı Tamamla",
- "confirm_cancel_sale" => "Bu satışı temizlemek istiyor musunuz? Tüm ürünler temizlenecek.",
- "confirm_delete" => "Seçilen satışları silmek istediğinize emin misiniz?",
- "confirm_restore" => "Seçilen satışları kurtarmak istediğinize emin misiniz?",
- "credit" => "Kredi Kartı",
- "credit_deposit" => "Kredi Depozito",
- "credit_filter" => "Kredi Kartı",
- "current_table" => "",
- "customer" => "Müşteri",
- "customer_address" => "Customer Address",
- "customer_discount" => "İskonto",
- "customer_email" => "E-Posta",
- "customer_location" => "Konum",
- "customer_mailchimp_status" => "MailChimp durumu",
- "customer_optional" => "(Geciken Ödemeler İçin Gerekli)",
- "customer_required" => "(Gerekli)",
- "customer_total" => "Total",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Satış Tarihi",
- "date_range" => "Tarih Aralığı",
- "date_required" => "Doğru tarih girilmelidir.",
- "date_type" => "Tarih alanı zorunludur.",
- "debit" => "Banka Kartı",
- "debit_filter" => "",
- "delete" => "Silmeye izin ver",
- "delete_confirmation" => "Satışı silmek istediğinize emin misiniz, bu işlem geri alınamaz.",
- "delete_entire_sale" => "Satışın tamamını sil",
- "delete_successful" => "Satışı sildiniz.",
- "delete_unsuccessful" => "Satışı silemediniz.",
- "description_abbrv" => "Tanım.",
- "discard" => "İptal et",
- "discard_quote" => "",
- "discount" => "İsko",
- "discount_included" => "% İskonto",
- "discount_short" => "%",
- "due" => "Vade",
- "due_filter" => "Vade",
- "edit" => "Düzenle",
- "edit_item" => "Düzenle",
- "edit_sale" => "Satışı Düzenle",
- "email_receipt" => "Fişi E-Postala",
- "employee" => "Personel",
- "entry" => "Girdi",
- "error_editing_item" => "Ürün düzenleme hatası",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Ürün Bul/Oku",
- "find_or_scan_item_or_receipt" => "Ürün yada Fiş Bul/Oku",
- "giftcard" => "Hediye Çeki",
- "giftcard_balance" => "Hediye Çeki Bakiyesi",
- "giftcard_filter" => "",
- "giftcard_number" => "Hediye Çeki No",
- "group_by_category" => "Kategoriye göre gurupla",
- "group_by_type" => "Tipe göre gurupla",
- "hsn" => "HSN",
- "id" => "Satış No",
- "include_prices" => "Fiyat Dahil?",
- "invoice" => "Fatura",
- "invoice_confirm" => "Bu fatura şuna gönderilecek",
- "invoice_enable" => "Fatura Numarası",
- "invoice_filter" => "Faturalar",
- "invoice_no_email" => "Bu müşterinin geçerli e-posta adresi yok.",
- "invoice_number" => "Fatura #",
- "invoice_number_duplicate" => "Fatura Numarası {0} eşsiz olmalıdır.",
- "invoice_sent" => "Fatura gönderildi:",
- "invoice_total" => "Fatura Toplamı",
- "invoice_type_custom_invoice" => "Özel Fatura (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Özel Vergi Fatura (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Fatura (invoice.php)",
- "invoice_type_tax_invoice" => "Vergi Faturası (tax_invoice.php)",
- "invoice_unsent" => "Fatura gönderilemedi",
- "invoice_update" => "Yeniden Say",
- "item_insufficient_of_stock" => "Ürün Stoğu Yetersiz.",
- "item_name" => "Ürün Adı",
- "item_number" => "Ürün No",
- "item_out_of_stock" => "Ürün stokta yok.",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "Kayıt Kipi",
- "must_enter_numeric" => "Ödenen Tutar sayı olmalıdır.",
- "must_enter_numeric_giftcard" => "Hediye Çeki Numarası sayı olmalıdır.",
- "new_customer" => "Yeni Müşteri",
- "new_item" => "Yeni Ürün",
- "no_description" => "Açıklama yok",
- "no_filter" => "Tümü",
- "no_items_in_cart" => "Sepette ürün yok.",
- "no_sales_to_display" => "Gösterilecek satış yok.",
- "none_selected" => "Silinecek satış seçmediniz.",
- "nontaxed_ind" => " ",
- "not_authorized" => "Bu işlem için yetkisiz.",
- "one_or_multiple" => "Satış(lar)",
- "payment" => "Ödeme Türü",
- "payment_amount" => "Tutar",
- "payment_not_cover_total" => "Ödemeler toplam tutarı karşılamıyor.",
- "payment_type" => "Tür",
- "payments" => "",
- "payments_total" => "Ödemeler Toplamı",
- "price" => "Fiyat",
- "print_after_sale" => "Satıştan sonra yazdır",
- "quantity" => "Adet",
- "quantity_less_than_reorder_level" => "Dikkat: İlgili Öge için İstenen Stok, Yeniden Düzenleme Düzeyinin altında.",
- "quantity_less_than_zero" => "Dikkat: İstenen Stok yetersiz. Satışı sürdürebilirsiniz ama stoğunuzu gözden geçirin.",
- "quantity_of_items" => "{0} Ögenin Miktarı",
- "quote" => "Teklif",
- "quote_number" => "Teklif Sayısı",
- "quote_number_duplicate" => "Teklif Sayısı eşsiz olmalıdır.",
- "quote_sent" => "Teklif şuna gönderildi:",
- "quote_unsent" => "Teklif şuna gönderilemedi:",
- "receipt" => "Satış Fişi",
- "receipt_no_email" => "Müşteriye ait geçerli e-posta adresi yok.",
- "receipt_number" => "Fiş #",
- "receipt_sent" => "Fiş gönderildi:",
- "receipt_unsent" => "Fiş gönderilemedi:",
- "refund" => "Geri Ödeme Türü",
- "register" => "Satış Kaydı",
- "remove_customer" => "Müşteriyi Kaldır",
- "remove_discount" => "",
- "return" => "İade",
- "rewards" => "Ödül Puanları",
- "rewards_balance" => "Ödül Puanı Bakiyesi",
- "sale" => "Satış",
- "sale_by_invoice" => "Faturalı Satış",
- "sale_for_customer" => "Müşteri:",
- "sale_time" => "Saat",
- "sales_tax" => "Satış Vergisi",
- "sales_total" => "",
- "select_customer" => "Müşteri Seç",
- "send_invoice" => "Fatura Gönder",
- "send_quote" => "Teklif Gönder",
- "send_receipt" => "Fiş Gönder",
- "send_work_order" => "İş Emri Gönder",
- "serial" => "Seri",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Faturayı Göster",
- "show_receipt" => "Fişi Göster",
- "start_typing_customer_name" => "Müşteri ayrıntılarını yazın...",
- "start_typing_item_name" => "Ürün adı yazın veya barkod taratın...",
- "stock" => "Stok",
- "stock_location" => "Stok yeri",
- "sub_total" => "Ara Toplam",
- "successfully_deleted" => "Satış başarıyla silindi",
- "successfully_restored" => "Satış başarıyla kurtarıldı",
- "successfully_suspended_sale" => "Satış başarıyla askıya alındı.",
- "successfully_updated" => "Satış başarıyla güncellendi.",
- "suspend_sale" => "Askıya Al",
- "suspended_doc_id" => "Belge",
- "suspended_sale_id" => "Kimlik",
- "suspended_sales" => "Askıdaki Satışlar",
- "table" => "Masa",
- "takings" => "Günlük Satış",
- "tax" => "Vergi",
- "tax_id" => "Vergi Numarası",
- "tax_invoice" => "Vergi Faturası",
- "tax_percent" => "Vergi %",
- "taxed_ind" => "V",
- "total" => "Toplam",
- "total_tax_exclusive" => "Vergi hariç",
- "transaction_failed" => "Satış işlemi hatası.",
- "unable_to_add_item" => "Ürün satışa eklenemedi",
- "unsuccessfully_deleted" => "Satış silinemedi.",
- "unsuccessfully_restored" => "Satış onarılamadı.",
- "unsuccessfully_suspended_sale" => "Satış askıya alınamadı.",
- "unsuccessfully_updated" => "Satış düzenlenemedi.",
- "unsuspend" => "Satışa Al",
- "unsuspend_and_delete" => "Eylem",
- "update" => "Güncelle",
- "upi" => "UPI",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "İş Emri",
- "work_order_number" => "İş Emri Numarası",
- "work_order_number_duplicate" => "İş Emri Numarası diğerinden farklı olmalı.",
- "work_order_sent" => "İş Emri gönderildi:",
- "work_order_unsent" => "İş Emri gönderilemedi:",
+ 'account_number' => 'Hesap Numarası',
+ 'add_payment' => 'Ödeme Ekle',
+ 'amount_due' => 'Kalan Ödeme',
+ 'amount_tendered' => 'Ödenen Tutar',
+ 'authorized_signature' => 'Yetkili İmza',
+ 'cancel_sale' => 'İptal Et',
+ 'cash' => 'Nakit',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'Nakit Düzeltimi',
+ 'cash_deposit' => 'Nakit Depozito',
+ 'cash_filter' => 'Nakit',
+ 'change_due' => 'Para Üstü',
+ 'change_price' => 'Satış Fiyatını Değiştir',
+ 'check' => 'Çek',
+ 'check_balance' => 'Çek bakiyesi',
+ 'check_filter' => 'Çek',
+ 'close' => '',
+ 'comment' => 'Yorum',
+ 'comments' => 'Yorumlar',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Satışı Tamamla',
+ 'confirm_cancel_sale' => 'Bu satışı temizlemek istiyor musunuz? Tüm ürünler temizlenecek.',
+ 'confirm_delete' => 'Seçilen satışları silmek istediğinize emin misiniz?',
+ 'confirm_restore' => 'Seçilen satışları kurtarmak istediğinize emin misiniz?',
+ 'credit' => 'Kredi Kartı',
+ 'credit_deposit' => 'Kredi Depozito',
+ 'credit_filter' => 'Kredi Kartı',
+ 'current_table' => '',
+ 'customer' => 'Müşteri',
+ 'customer_address' => 'Customer Address',
+ 'customer_discount' => 'İskonto',
+ 'customer_email' => 'E-Posta',
+ 'customer_location' => 'Konum',
+ 'customer_mailchimp_status' => 'MailChimp durumu',
+ 'customer_optional' => '(Geciken Ödemeler İçin Gerekli)',
+ 'customer_required' => '(Gerekli)',
+ 'customer_total' => 'Total',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Var Olan Puanlar',
+ 'daily_sales' => '',
+ 'date' => 'Satış Tarihi',
+ 'date_range' => 'Tarih Aralığı',
+ 'date_required' => 'Doğru tarih girilmelidir.',
+ 'date_type' => 'Tarih alanı zorunludur.',
+ 'debit' => 'Banka Kartı',
+ 'debit_filter' => '',
+ 'delete' => 'Silmeye izin ver',
+ 'delete_confirmation' => 'Satışı silmek istediğinize emin misiniz, bu işlem geri alınamaz.',
+ 'delete_entire_sale' => 'Satışın tamamını sil',
+ 'delete_successful' => 'Satışı sildiniz.',
+ 'delete_unsuccessful' => 'Satışı silemediniz.',
+ 'description_abbrv' => 'Tanım.',
+ 'discard' => 'İptal et',
+ 'discard_quote' => '',
+ 'discount' => 'İsko',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% İskonto',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'Vade',
+ 'due_filter' => 'Vade',
+ 'edit' => 'Düzenle',
+ 'edit_item' => 'Düzenle',
+ 'edit_sale' => 'Satışı Düzenle',
+ 'email_receipt' => 'Fişi E-Postala',
+ 'employee' => 'Personel',
+ 'entry' => 'Girdi',
+ 'error_editing_item' => 'Ürün düzenleme hatası',
+ 'find_or_scan_item' => 'Ürün Bul/Oku',
+ 'find_or_scan_item_or_receipt' => 'Ürün yada Fiş Bul/Oku',
+ 'giftcard' => 'Hediye Çeki',
+ 'giftcard_balance' => 'Hediye Çeki Bakiyesi',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Hediye Çeki No',
+ 'group_by_category' => 'Kategoriye göre gurupla',
+ 'group_by_type' => 'Tipe göre gurupla',
+ 'hsn' => 'HSN',
+ 'id' => 'Satış No',
+ 'include_prices' => 'Fiyat Dahil?',
+ 'invoice' => 'Fatura',
+ 'invoice_confirm' => 'Bu fatura şuna gönderilecek',
+ 'invoice_enable' => 'Fatura Numarası',
+ 'invoice_filter' => 'Faturalar',
+ 'invoice_no_email' => 'Bu müşterinin geçerli e-posta adresi yok.',
+ 'invoice_number' => 'Fatura #',
+ 'invoice_number_duplicate' => 'Fatura Numarası {0} eşsiz olmalıdır.',
+ 'invoice_sent' => 'Fatura gönderildi:',
+ 'invoice_total' => 'Fatura Toplamı',
+ 'invoice_type_custom_invoice' => 'Özel Fatura (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Özel Vergi Fatura (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Fatura (invoice.php)',
+ 'invoice_type_tax_invoice' => 'Vergi Faturası (tax_invoice.php)',
+ 'invoice_unsent' => 'Fatura gönderilemedi',
+ 'invoice_update' => 'Yeniden Say',
+ 'item_insufficient_of_stock' => 'Ürün Stoğu Yetersiz.',
+ 'item_name' => 'Ürün Adı',
+ 'item_number' => 'Ürün No',
+ 'item_out_of_stock' => 'Ürün stokta yok.',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'Kayıt Kipi',
+ 'must_enter_numeric' => 'Ödenen Tutar sayı olmalıdır.',
+ 'must_enter_numeric_giftcard' => 'Hediye Çeki Numarası sayı olmalıdır.',
+ 'must_enter_reference_code' => 'Referans/Alım numarası girilmelidir.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Yeni Müşteri',
+ 'new_item' => 'Yeni Ürün',
+ 'no_description' => 'Açıklama yok',
+ 'no_filter' => 'Tümü',
+ 'no_items_in_cart' => 'Sepette ürün yok.',
+ 'no_sales_to_display' => 'Gösterilecek satış yok.',
+ 'none_selected' => 'Silinecek satış seçmediniz.',
+ 'nontaxed_ind' => ' ',
+ 'not_authorized' => 'Bu işlem için yetkisiz.',
+ 'one_or_multiple' => 'Satış(lar)',
+ 'payment' => 'Ödeme Türü',
+ 'payment_amount' => 'Tutar',
+ 'payment_not_cover_total' => 'Ödemeler toplam tutarı karşılamıyor.',
+ 'payment_type' => 'Tür',
+ 'payments' => '',
+ 'payments_total' => 'Ödemeler Toplamı',
+ 'price' => 'Fiyat',
+ 'print_after_sale' => 'Satıştan sonra yazdır',
+ 'quantity' => 'Adet',
+ 'quantity_less_than_reorder_level' => 'Dikkat: İlgili Öge için İstenen Stok, Yeniden Düzenleme Düzeyinin altında.',
+ 'quantity_less_than_zero' => 'Dikkat: İstenen Stok yetersiz. Satışı sürdürebilirsiniz ama stoğunuzu gözden geçirin.',
+ 'quantity_of_items' => '{0} Ögenin Miktarı',
+ 'quote' => 'Teklif',
+ 'quote_number' => 'Teklif Sayısı',
+ 'quote_number_duplicate' => 'Teklif Sayısı eşsiz olmalıdır.',
+ 'quote_sent' => 'Teklif şuna gönderildi:',
+ 'quote_unsent' => 'Teklif şuna gönderilemedi:',
+ 'receipt' => 'Satış Fişi',
+ 'receipt_no_email' => 'Müşteriye ait geçerli e-posta adresi yok.',
+ 'receipt_number' => 'Fiş #',
+ 'receipt_sent' => 'Fiş gönderildi:',
+ 'receipt_unsent' => 'Fiş gönderilemedi:',
+ 'reference_code' => 'Ödeme Referans Kodu',
+ 'reference_code_invalid_characters' => 'Referans kodu yalnızca harf ve rakam içermelidir.',
+ 'reference_code_length_error' => 'Referans kodunun uzunluğu geçersiz.',
+ 'refund' => 'Geri Ödeme Türü',
+ 'register' => 'Satış Kaydı',
+ 'remove_customer' => 'Müşteriyi Kaldır',
+ 'remove_discount' => '',
+ 'return' => 'İade',
+ 'rewards' => 'Ödül Puanları',
+ 'rewards_balance' => 'Ödül Puanı Bakiyesi',
+ 'rewards_package' => 'Ödüller',
+ 'rewards_remaining_balance' => 'Ödül Puanı kalan değeri ',
+ 'sale' => 'Satış',
+ 'sale_by_invoice' => 'Faturalı Satış',
+ 'sale_for_customer' => 'Müşteri:',
+ 'sale_time' => 'Saat',
+ 'sales_tax' => 'Satış Vergisi',
+ 'sales_total' => '',
+ 'select_customer' => 'Müşteri Seç',
+ 'send_invoice' => 'Fatura Gönder',
+ 'send_quote' => 'Teklif Gönder',
+ 'send_receipt' => 'Fiş Gönder',
+ 'send_work_order' => 'İş Emri Gönder',
+ 'serial' => 'Seri',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Faturayı Göster',
+ 'show_receipt' => 'Fişi Göster',
+ 'start_typing_customer_name' => 'Müşteri ayrıntılarını yazın...',
+ 'start_typing_item_name' => 'Ürün adı yazın veya barkod taratın...',
+ 'stock' => 'Stok',
+ 'stock_location' => 'Stok yeri',
+ 'sub_total' => 'Ara Toplam',
+ 'successfully_deleted' => 'Satış başarıyla silindi',
+ 'successfully_restored' => 'Satış başarıyla kurtarıldı',
+ 'successfully_suspended_sale' => 'Satış başarıyla askıya alındı.',
+ 'successfully_updated' => 'Satış başarıyla güncellendi.',
+ 'suspend_sale' => 'Askıya Al',
+ 'suspended_doc_id' => 'Belge',
+ 'suspended_sale_id' => 'Kimlik',
+ 'suspended_sales' => 'Askıdaki Satışlar',
+ 'table' => 'Masa',
+ 'takings' => 'Günlük Satış',
+ 'tax' => 'Vergi',
+ 'tax_id' => 'Vergi Numarası',
+ 'tax_invoice' => 'Vergi Faturası',
+ 'tax_percent' => 'Vergi %',
+ 'taxed_ind' => 'V',
+ 'total' => 'Toplam',
+ 'total_tax_exclusive' => 'Vergi hariç',
+ 'transaction_failed' => 'Satış işlemi hatası.',
+ 'unable_to_add_item' => 'Ürün satışa eklenemedi',
+ 'unsuccessfully_deleted' => 'Satış silinemedi.',
+ 'unsuccessfully_restored' => 'Satış onarılamadı.',
+ 'unsuccessfully_suspended_sale' => 'Satış askıya alınamadı.',
+ 'unsuccessfully_updated' => 'Satış düzenlenemedi.',
+ 'unsuspend' => 'Satışa Al',
+ 'unsuspend_and_delete' => 'Eylem',
+ 'update' => 'Güncelle',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'İş Emri',
+ 'work_order_number' => 'İş Emri Numarası',
+ 'work_order_number_duplicate' => 'İş Emri Numarası diğerinden farklı olmalı.',
+ 'work_order_sent' => 'İş Emri gönderildi:',
+ 'work_order_unsent' => 'İş Emri gönderilemedi:',
];
diff --git a/app/Language/uk/Config.php b/app/Language/uk/Config.php
index fa6f69c37..2d29fb4db 100644
--- a/app/Language/uk/Config.php
+++ b/app/Language/uk/Config.php
@@ -1,332 +1,335 @@
"Адреса організації",
- "address_required" => "Адреса організації - обов'язкове поле.",
- "all_set" => "Усі дозволи на файли встановлені правильно!",
- "allow_duplicate_barcodes" => "Дозволити дублювати штрих-коди",
- "apostrophe" => "Апостроф",
- "backup_button" => "Резервна копія",
- "backup_database" => "База даних резервного копіювання",
- "barcode" => "Штрих-код",
- "barcode_company" => "Назва організації",
- "barcode_configuration" => "Конфігурація штрих-коду",
- "barcode_content" => "Вміст штрих-коду",
- "barcode_first_row" => "Рядок 1",
- "barcode_font" => "Шрифт",
- "barcode_formats" => "Формат введення",
- "barcode_generate_if_empty" => "Створити, якщо порожньо.",
- "barcode_height" => "Висота (px)",
- "barcode_id" => "Ідентифікатор елементу/Ім'я",
- "barcode_info" => "Інформація про конфігурацію штрих-коду",
- "barcode_layout" => "Макет штрих-коду",
- "barcode_name" => "Ім'я",
- "barcode_number" => "Штрих-код",
- "barcode_number_in_row" => "Номер у рядку",
- "barcode_page_cellspacing" => "Відображення інтервалу клітинок на сторінці.",
- "barcode_page_width" => "Показати ширину сторінки",
- "barcode_price" => "Ціна",
- "barcode_second_row" => "Рядок 2",
- "barcode_third_row" => "Рядок 3",
- "barcode_tooltip" => "Увага! Ця функція може спричинити дублюваня елементів, імпортування або створення . Не використовуйте, якщо не хочете дублювати штрих-коди",
- "barcode_type" => "Тип штрих-коду",
- "barcode_width" => "Ширина",
- "bottom" => "Кінець",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Десяткові суми готівки",
- "cash_decimals_tooltip" => "Якщо грошові знаки та десяткові знаки валюти однакові, то округлення готівки не відбудеться",
- "cash_rounding" => "Округлення готівки",
- "category_dropdown" => "Показати категорію як випадаюче меню",
- "center" => "Центр",
- "change_apperance_tooltip" => "",
- "comma" => "Кома",
- "company" => "Назва організації",
- "company_avatar" => "",
- "company_change_image" => "Змінити зображення",
- "company_logo" => "Логотип компанії",
- "company_remove_image" => "Видалити зображення",
- "company_required" => "Назва організації - обов'язкове поле",
- "company_select_image" => "Вибрати зображення",
- "company_website_url" => "Веб-сайт організації не є дійсною URL-адресою (http: // ...)",
- "country_codes" => "Коди країн",
- "country_codes_tooltip" => "Список кодів, відокремлених комами, для пошуку номінальної адреси",
- "currency_code" => "Валютний код",
- "currency_decimals" => "Десяткові суми валюти",
- "currency_symbol" => "Символ валюти",
- "current_employee_only" => "",
- "customer_reward" => "Нагорода клієнта",
- "customer_reward_duplicate" => "Нагорода з такою назвою уже існує",
- "customer_reward_enable" => "Увімкнути нагороди клієнта",
- "customer_reward_invalid_chars" => "Винагорода не може містити '_'",
- "customer_reward_required" => "Нагорода - обов'язкове поле.",
- "customer_sales_tax_support" => "Податкова підтримка з продажу",
- "date_or_time_format" => "Формат дати та часу",
- "datetimeformat" => "Формат дати та часу",
- "decimal_point" => "Десяткова мітка",
- "default_barcode_font_size_number" => "Розмір шрифту штрих-коду за замовчуванням повинен бути числом",
- "default_barcode_font_size_required" => "Розмір шрифту штрих-коду за замовчуванням - обов'язкове поле",
- "default_barcode_height_number" => "Висота штрих-коду за замовчуванням повинна бути числом",
- "default_barcode_height_required" => "Стандартна висота штрих-коду - обов'язкове поле",
- "default_barcode_num_in_row_number" => "Номер штрих-коду за умовчанням у рядку повинен бути числом",
- "default_barcode_num_in_row_required" => "Носер штрих-коду за замовчуванням у рядку - це обов'язкове поле",
- "default_barcode_page_cellspacing_number" => "Інтервал клітинок штрих-коду за замовчуванням повинен бути числом",
- "default_barcode_page_cellspacing_required" => "Інтервал клітинок штрих-коду за замовчуванням - це обов'язкове поле",
- "default_barcode_page_width_number" => "Ширина сторінки штрих-коду за замовчуванням повинна бути числом",
- "default_barcode_page_width_required" => "Ширина сторінки штрих-коду за замовчуванням - це обов'язкове поле",
- "default_barcode_width_number" => "Ширина штрих-коду за замовчуванням повинна бути числом",
- "default_barcode_width_required" => "Ширина штрих-коду за замовчуванням - це обов'язкове поле",
- "default_item_columns" => "Стовпці видимих елементів за замовчуванням",
- "default_origin_tax_code" => "Податковий код за замовчуванням",
- "default_receivings_discount" => "Знижка на надходження за замовчуванням",
- "default_receivings_discount_number" => "Знижка надходжень за замовчуванням повинна бути числом",
- "default_receivings_discount_required" => "Знижка надходжень за замовчуванням - це обов'язкове поле",
- "default_sales_discount" => "Знижка на продаж за замовчуванням",
- "default_sales_discount_number" => "Знижка на продаж за замовчуванням повинна бути номером",
- "default_sales_discount_required" => "Знижка з продаж за замовчуванням - обов'язкове поле для заповнення",
- "default_tax_category" => "Податкова категорія за замовчуванням",
- "default_tax_code" => "Податковий кодекс за замовчуванням",
- "default_tax_jurisdiction" => "Податкова юрисдикція за замовчуванням",
- "default_tax_name_number" => "Назва Податку за Замовчуванням повинно бути рядком",
- "default_tax_name_required" => "Назва податку за замовчуванням - це обов'язкове поле",
- "default_tax_rate" => "Ставка податку за замовчуванням %",
- "default_tax_rate_1" => "Ставка податку 1",
- "default_tax_rate_2" => "Ставка податку 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Ставка податку за замовчуванням повинна бути числом",
- "default_tax_rate_required" => "Ставка податку за замовчуванням - це обов'язкове поле",
- "derive_sale_quantity" => "Дозволити похідну кількість продажів",
- "derive_sale_quantity_tooltip" => "Якщо прапорець встановлений, то відносно товарів, замовлених на основі розширеної суми, буде передбачено новий тип товару",
- "dinner_table" => "Обідня перерва",
- "dinner_table_duplicate" => "Така назва уже існує",
- "dinner_table_enable" => "Увімкнути обідні перерви",
- "dinner_table_invalid_chars" => "Назва не може містити '_'",
- "dinner_table_required" => "Це поле мусить бути заповнене",
- "dot" => "Крапка",
- "email" => "Електронна пошта",
- "email_configuration" => "Конфігурація Електронної Пошти",
- "email_mailpath" => "Доступ до електронної пошта",
- "email_protocol" => "Протокол",
- "email_receipt_check_behaviour" => "Селектор «Отримати по пошті»",
- "email_receipt_check_behaviour_always" => "Завжди активний",
- "email_receipt_check_behaviour_last" => "Запам'ятати останній вибір",
- "email_receipt_check_behaviour_never" => "Завжди деактивовано",
- "email_smtp_crypto" => "Шифрування SMTP",
- "email_smtp_host" => "SMTP Сервер",
- "email_smtp_pass" => "SMTP Пароль",
- "email_smtp_port" => "Порт SMTP",
- "email_smtp_timeout" => "Час очікування SMTP",
- "email_smtp_user" => "Ім'я користувача SMTP",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Забезпечення конфіденційності",
- "enforce_privacy_tooltip" => "Захист конфіденційності даних клієнта в разі видалення даних",
- "fax" => "Факс",
- "file_perm" => "Виникають проблеми з дозволами файлів, виправте та перезавантажте сторінку.",
- "financial_year" => "Початок фінансового року",
- "financial_year_apr" => "1 - е Квітня",
- "financial_year_aug" => "1 - е Серпня",
- "financial_year_dec" => "1 - е Грудня",
- "financial_year_feb" => "1 - е Лютого",
- "financial_year_jan" => "1 - е Січня",
- "financial_year_jul" => "1 - е Липня",
- "financial_year_jun" => "1 - е Червня",
- "financial_year_mar" => "1 - е Березня",
- "financial_year_may" => "1 - е Травня",
- "financial_year_nov" => "1 - е Листопада",
- "financial_year_oct" => "1 - е Жовтня",
- "financial_year_sep" => "1 - е Вересня",
- "floating_labels" => "",
- "gcaptcha_enable" => "Сторінка входу reCAPTCHA",
- "gcaptcha_secret_key" => "reCAPTCHA секретний ключ",
- "gcaptcha_secret_key_required" => "reCAPTCHA секретний ключ - це обов'язкове поле",
- "gcaptcha_site_key" => "ключ сайту reCAPTCHA",
- "gcaptcha_site_key_required" => "Ключ сайту reCAPTCHA - це обов'язкове поле",
- "gcaptcha_tooltip" => "Захистіть сторінку входу за допомогою Google reCAPTCHA, натисніть на піктограму для пари ключів API",
- "general" => "Загальне",
- "general_configuration" => "Загальна Конфігурація",
- "giftcard_number" => "Номер Подарункової Карти",
- "giftcard_random" => "Генерувати випадкові",
- "giftcard_series" => "Генерувати в серії",
- "image_allowed_file_types" => "Дозволені типи файлів",
- "image_max_height_tooltip" => "Максимально дозволена висота завантажуваних зображень у пікселях (px).",
- "image_max_size_tooltip" => "Максимально дозволений розмір файлу для завантаження зображень у кілобайтах.",
- "image_max_width_tooltip" => "Максимально дозволена ширина завантажуваних зображень у пікселях (px).",
- "image_restrictions" => "Обмеження на завантаження зображень",
- "include_hsn" => "Включіть підтримку кодів HSN",
- "info" => "Інформація",
- "info_configuration" => "Інформація про Магазин",
- "input_groups" => "",
- "integrations" => "Інтеграції",
- "integrations_configuration" => "Інтеграція сторонніх організацій",
- "invoice" => "Рахунок-фактура",
- "invoice_configuration" => "Налаштування друку рахунків-фактур",
- "invoice_default_comments" => "Коментарі до рахунків за замовчуванням",
- "invoice_email_message" => "Шаблони рахунків-фактур на електронну пошту",
- "invoice_enable" => "Увімкнути виставлення рахунків",
- "invoice_printer" => "Друк разунку-фактура",
- "invoice_type" => "Тип рахунку-фактури",
- "is_readable" => "Читається, але дозволи встановлені неправильно. Будь ласка, встановіть доступ до файлу 640 або 660 та оновіть сторінку.",
- "is_writable" => "Можна записати, але дозволи встановлені неправильно. Будь ласка, встановіть доступ до файлу 750 та оновіть сторінку.",
- "item_markup" => "",
- "jsprintsetup_required" => "Увага! Ця функція працюватиме лише у тому випадку, якщо у вас встановлений додаток FireFox jsPrintSetup. Зберегти все одно?",
- "language" => "Мова",
- "last_used_invoice_number" => "Останній використаний номер рахунку-фактури",
- "last_used_quote_number" => "Останній використаний номер котирування",
- "last_used_work_order_number" => "Останній використаний номер без виводу",
- "left" => "Залишок",
- "license" => "Ліцензія",
- "license_configuration" => "Відомості про ліцензію",
- "line_sequence" => "Послідовність рядків",
- "lines_per_page" => "Рядків на сторінці",
- "lines_per_page_number" => "Рядки на сторінці повинні бути числом",
- "lines_per_page_required" => "Рядки на сторінці - обов'язкове поле",
- "locale" => "Визначення місцезнаходження",
- "locale_configuration" => "Місце знаходження Конфігурації",
- "locale_info" => "Інформація про Місцезнаходження Конфігурації",
- "location" => "Склад",
- "location_configuration" => "Розташування складу",
- "location_info" => "Інформація про розташування конфігурації",
- "login_form" => "",
- "logout" => "Ви хочете зробити резервну копію перед виходом із системи? Натисніть [OK] для резервного копіювання або [Скасувати], щоб вийти?",
- "mailchimp" => "MailСhimp",
- "mailchimp_api_key" => "Ключ API від Mailchimp",
- "mailchimp_configuration" => "Конфігурація Mailchimp",
- "mailchimp_key_successfully" => "Ключ API недійсний",
- "mailchimp_key_unsuccessfully" => "Ключ API невірний",
- "mailchimp_lists" => "Список(и) Mailchimp",
- "mailchimp_tooltip" => "Натисніть на піктограму для ключа API",
- "message" => "Повідомлення",
- "message_configuration" => "Конфігурація повідомлень",
- "msg_msg" => "Збережене текстове повідомлення",
- "msg_msg_placeholder" => "Якщо ви хочете використовувати шаблон SMS, збережіть своє повідомлення тут або залиште поле порожнім",
- "msg_pwd" => "Пароль SMS-API",
- "msg_pwd_required" => "Пароль SMS-API - обов'язкове поле",
- "msg_src" => "Ідентифікатор відправника SMS-API",
- "msg_src_required" => "Ідентифікатор відправника SMS-API - обов'язкове поле",
- "msg_uid" => "Ім'я користувача SMS-API",
- "msg_uid_required" => "Ім'я користувача SMS-API - обов'язкове поле",
- "multi_pack_enabled" => "Декілька упаковок товару",
- "no_risk" => "Немає ризиків безпеки/вразливості.",
- "none" => "Жоден",
- "notify_alignment" => "Спливаюче повідомлення",
- "number_format" => "Формат номера",
- "number_locale" => "Місцезнаходження",
- "number_locale_invalid" => "Введене місцезнаходження є недійсним. Перевірте посилання в підказці, щоб знайти правильне місцезнаходження",
- "number_locale_required" => "Номер місцезнаходження - обов'язкове поле",
- "number_locale_tooltip" => "Знайдіть відповідне місцезнаходження за цим посиланням",
- "os_timezone" => "Часова зона OSPOS:",
- "ospos_info" => "Інформація про встановлення OSPOS",
- "payment_options_order" => "Варіанти оплати замовлення",
- "perm_risk" => "Неправильні дозволи роблять OSPOS вразливим.",
- "phone" => "Телефон організації",
- "phone_required" => "Телефон організації - обов'язкове полею",
- "print_bottom_margin" => "Верхнє поле",
- "print_bottom_margin_number" => "Верхнє поле за замовчуванням повинно бути числом",
- "print_bottom_margin_required" => "Верхнє поле за замовчуванням - обов'язкове поле",
- "print_delay_autoreturn" => "Затримка автоматичного повернення до продажу",
- "print_delay_autoreturn_number" => "Затримка автоматичного повернення до продажу - обов'язкове поле",
- "print_delay_autoreturn_required" => "Затримка автоматичного повернення до продажу повинна бути числом",
- "print_footer" => "Друк веб-переглядача",
- "print_header" => "Друк заголовка браузера",
- "print_left_margin" => "Ліве поле",
- "print_left_margin_number" => "Ліве поле замовчуванням повинен бути числом",
- "print_left_margin_required" => "Ліве поле за замовчуванням - обов'язкове поле",
- "print_receipt_check_behaviour" => "Друк квитанції, яка позначена прапорцем",
- "print_receipt_check_behaviour_always" => "Завжди перевіряється",
- "print_receipt_check_behaviour_last" => "Запам’ятати останній вибір",
- "print_receipt_check_behaviour_never" => "Ніколи не запам'товувати",
- "print_right_margin" => "Праве поле",
- "print_right_margin_number" => "Праве поле замовчуванням за замовчуванням повинно бути числом",
- "print_right_margin_required" => "Праве поле за замовчуванням - обов'язкове поле",
- "print_silently" => "Показати діалогове вікно друку",
- "print_top_margin" => "Верхнє поле",
- "print_top_margin_number" => "Верхнє поле за замовчуванням повинно бути числом",
- "print_top_margin_required" => "Верхнє поле за замовчуванням - обов'язкове поле для заповнення",
- "quantity_decimals" => "Кількість десятків",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Кількість десятків за замовчуванням",
- "receipt" => "Квитанція",
- "receipt_category" => "",
- "receipt_configuration" => "Налаштування друку квитанції",
- "receipt_default" => "За замовчуванням",
- "receipt_font_size" => "Розмір шрифту",
- "receipt_font_size_number" => "Розмір шрифту повинен бути числом",
- "receipt_font_size_required" => "Розмір шрифту - обов'язкове поле",
- "receipt_info" => "Отримання інформації про конфігурацію",
- "receipt_printer" => "Принтер для квитків",
- "receipt_short" => "Короткий зміст",
- "receipt_show_company_name" => "Показати назву організації",
- "receipt_show_description" => "Показати опис",
- "receipt_show_serialnumber" => "Показати серійний номер",
- "receipt_show_tax_ind" => "Показати показник податку",
- "receipt_show_taxes" => "Показати податковий показник",
- "receipt_show_total_discount" => "Показати загальну знижку",
- "receipt_template" => "Шаблон квитанції",
- "receiving_calculate_average_price" => "Сер. Ціна (отримання)",
- "recv_invoice_format" => "Формат отримання рахунків-фактур",
- "register_mode_default" => "Режим реєстрації за замовчуванням",
- "report_an_issue" => "Повідомити про проблему",
- "return_policy_required" => "Політика повернення - обов'язкове поле",
- "reward" => "Нагорода",
- "reward_configuration" => "Налаштування Нагороди",
- "right" => "Право",
- "sales_invoice_format" => "Формат рахунків-фактур продажів",
- "sales_quote_format" => "Формат котирування продажів",
- "mailpath_invalid" => "",
- "saved_successfully" => "Конфігурація успішно збережена",
- "saved_unsuccessfully" => "Помилка збереження конфігурації",
- "security_issue" => "Попередження про вразливість системи безпеки",
- "server_notice" => "Будь ласка, використовуйте інформацію подану нижче для звіту про проблеми",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Показати значок офісу",
- "statistics" => "Надіслати статистику",
- "statistics_tooltip" => "Надсилайте статистику для розробки та вдосконалення функцій",
- "stock_location" => "Місцезнаходження складу",
- "stock_location_duplicate" => "Склад з таким місцезнаходженням вже існує. Будь ласка, використайте інше",
- "stock_location_invalid_chars" => "Місцезнаходження не може містити спецсимволів",
- "stock_location_required" => "Місцезнаходження - обов'язкове поле",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Колонка 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Формат пошукових пропозицій",
- "suggestions_second_column" => "Колонка 2",
- "suggestions_third_column" => "Колонка 3",
- "system_conf" => "Налаштування",
- "system_info" => "Інформація про систему",
- "table" => "Таблиця",
- "table_configuration" => "Налаштування таблиці",
- "takings_printer" => "Підключення принтера",
- "tax" => "Податок",
- "tax_category" => "Категорія податку",
- "tax_category_duplicate" => "Введена податкова категорія вже існує",
- "tax_category_invalid_chars" => "Введена категорія податку недійсна",
- "tax_category_required" => "Податкова категорія - обов'язкове поле",
- "tax_category_used" => "Податкову категорію не можливо видалити, оскільки вона використовується",
- "tax_configuration" => "Налаштування податку.",
- "tax_decimals" => "Податкові десятки",
- "tax_id" => "Податковий номер",
- "tax_included" => "Податок включений",
- "theme" => "Тема",
- "theme_preview" => "",
- "thousands_separator" => "Роздільник тисячних розрядів",
- "timezone" => "Часовой пояс",
- "timezone_error" => "Часовий пояс OSPOS відрізняється від вашого місцевого часового поясу.",
- "top" => "Головний",
- "use_destination_based_tax" => "Використовуйте податок на основі призначення",
- "user_timezone" => "Місцевий часовий пояс:",
- "website" => "Веб-сайт",
- "wholesale_markup" => "",
- "work_order_enable" => "Підтримка робочого замовлення",
- "work_order_format" => "Формат робочого замовлення",
+ 'address' => 'Адреса організації',
+ 'address_required' => "Адреса організації - обов'язкове поле.",
+ 'all_set' => 'Усі дозволи на файли встановлені правильно!',
+ 'allow_duplicate_barcodes' => 'Дозволити дублювати штрих-коди',
+ 'apostrophe' => 'Апостроф',
+ 'backup_button' => 'Резервна копія',
+ 'backup_database' => 'База даних резервного копіювання',
+ 'barcode' => 'Штрих-код',
+ 'barcode_company' => 'Назва організації',
+ 'barcode_configuration' => 'Конфігурація штрих-коду',
+ 'barcode_content' => 'Вміст штрих-коду',
+ 'barcode_first_row' => 'Рядок 1',
+ 'barcode_font' => 'Шрифт',
+ 'barcode_formats' => 'Формат введення',
+ 'barcode_generate_if_empty' => 'Створити, якщо порожньо.',
+ 'barcode_height' => 'Висота (px)',
+ 'barcode_id' => "Ідентифікатор елементу/Ім'я",
+ 'barcode_info' => 'Інформація про конфігурацію штрих-коду',
+ 'barcode_layout' => 'Макет штрих-коду',
+ 'barcode_name' => "Ім'я",
+ 'barcode_number' => 'Штрих-код',
+ 'barcode_number_in_row' => 'Номер у рядку',
+ 'barcode_page_cellspacing' => 'Відображення інтервалу клітинок на сторінці.',
+ 'barcode_page_width' => 'Показати ширину сторінки',
+ 'barcode_price' => 'Ціна',
+ 'barcode_second_row' => 'Рядок 2',
+ 'barcode_third_row' => 'Рядок 3',
+ 'barcode_tooltip' => 'Увага! Ця функція може спричинити дублюваня елементів, імпортування або створення . Не використовуйте, якщо не хочете дублювати штрих-коди',
+ 'barcode_type' => 'Тип штрих-коду',
+ 'barcode_width' => 'Ширина',
+ 'bottom' => 'Кінець',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Десяткові суми готівки',
+ 'cash_decimals_tooltip' => 'Якщо грошові знаки та десяткові знаки валюти однакові, то округлення готівки не відбудеться',
+ 'cash_rounding' => 'Округлення готівки',
+ 'category_dropdown' => 'Показати категорію як випадаюче меню',
+ 'center' => 'Центр',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'Кома',
+ 'company' => 'Назва організації',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Змінити зображення',
+ 'company_logo' => 'Логотип компанії',
+ 'company_remove_image' => 'Видалити зображення',
+ 'company_required' => "Назва організації - обов'язкове поле",
+ 'company_select_image' => 'Вибрати зображення',
+ 'company_website_url' => 'Веб-сайт організації не є дійсною URL-адресою (http: // ...)',
+ 'country_codes' => 'Коди країн',
+ 'country_codes_tooltip' => 'Список кодів, відокремлених комами, для пошуку номінальної адреси',
+ 'currency_code' => 'Валютний код',
+ 'currency_decimals' => 'Десяткові суми валюти',
+ 'currency_symbol' => 'Символ валюти',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Нагорода клієнта',
+ 'customer_reward_duplicate' => 'Нагорода з такою назвою уже існує',
+ 'customer_reward_enable' => 'Увімкнути нагороди клієнта',
+ 'customer_reward_invalid_chars' => "Винагорода не може містити '_'",
+ 'customer_reward_required' => "Нагорода - обов'язкове поле.",
+ 'customer_sales_tax_support' => 'Податкова підтримка з продажу',
+ 'date_or_time_format' => 'Формат дати та часу',
+ 'datetimeformat' => 'Формат дати та часу',
+ 'decimal_point' => 'Десяткова мітка',
+ 'default_barcode_font_size_number' => 'Розмір шрифту штрих-коду за замовчуванням повинен бути числом',
+ 'default_barcode_font_size_required' => "Розмір шрифту штрих-коду за замовчуванням - обов'язкове поле",
+ 'default_barcode_height_number' => 'Висота штрих-коду за замовчуванням повинна бути числом',
+ 'default_barcode_height_required' => "Стандартна висота штрих-коду - обов'язкове поле",
+ 'default_barcode_num_in_row_number' => 'Номер штрих-коду за умовчанням у рядку повинен бути числом',
+ 'default_barcode_num_in_row_required' => "Носер штрих-коду за замовчуванням у рядку - це обов'язкове поле",
+ 'default_barcode_page_cellspacing_number' => 'Інтервал клітинок штрих-коду за замовчуванням повинен бути числом',
+ 'default_barcode_page_cellspacing_required' => "Інтервал клітинок штрих-коду за замовчуванням - це обов'язкове поле",
+ 'default_barcode_page_width_number' => 'Ширина сторінки штрих-коду за замовчуванням повинна бути числом',
+ 'default_barcode_page_width_required' => "Ширина сторінки штрих-коду за замовчуванням - це обов'язкове поле",
+ 'default_barcode_width_number' => 'Ширина штрих-коду за замовчуванням повинна бути числом',
+ 'default_barcode_width_required' => "Ширина штрих-коду за замовчуванням - це обов'язкове поле",
+ 'default_item_columns' => 'Стовпці видимих елементів за замовчуванням',
+ 'default_origin_tax_code' => 'Податковий код за замовчуванням',
+ 'default_receivings_discount' => 'Знижка на надходження за замовчуванням',
+ 'default_receivings_discount_number' => 'Знижка надходжень за замовчуванням повинна бути числом',
+ 'default_receivings_discount_required' => "Знижка надходжень за замовчуванням - це обов'язкове поле",
+ 'default_sales_discount' => 'Знижка на продаж за замовчуванням',
+ 'default_sales_discount_number' => 'Знижка на продаж за замовчуванням повинна бути номером',
+ 'default_sales_discount_required' => "Знижка з продаж за замовчуванням - обов'язкове поле для заповнення",
+ 'default_tax_category' => 'Податкова категорія за замовчуванням',
+ 'default_tax_code' => 'Податковий кодекс за замовчуванням',
+ 'default_tax_jurisdiction' => 'Податкова юрисдикція за замовчуванням',
+ 'default_tax_name_number' => 'Назва Податку за Замовчуванням повинно бути рядком',
+ 'default_tax_name_required' => "Назва податку за замовчуванням - це обов'язкове поле",
+ 'default_tax_rate' => 'Ставка податку за замовчуванням %',
+ 'default_tax_rate_1' => 'Ставка податку 1',
+ 'default_tax_rate_2' => 'Ставка податку 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Ставка податку за замовчуванням повинна бути числом',
+ 'default_tax_rate_required' => "Ставка податку за замовчуванням - це обов'язкове поле",
+ 'derive_sale_quantity' => 'Дозволити похідну кількість продажів',
+ 'derive_sale_quantity_tooltip' => 'Якщо прапорець встановлений, то відносно товарів, замовлених на основі розширеної суми, буде передбачено новий тип товару',
+ 'dinner_table' => 'Обідня перерва',
+ 'dinner_table_duplicate' => 'Така назва уже існує',
+ 'dinner_table_enable' => 'Увімкнути обідні перерви',
+ 'dinner_table_invalid_chars' => "Назва не може містити '_'",
+ 'dinner_table_required' => 'Це поле мусить бути заповнене',
+ 'dot' => 'Крапка',
+ 'email' => 'Електронна пошта',
+ 'email_configuration' => 'Конфігурація Електронної Пошти',
+ 'email_mailpath' => 'Доступ до електронної пошта',
+ 'email_protocol' => 'Протокол',
+ 'email_receipt_check_behaviour' => 'Селектор «Отримати по пошті»',
+ 'email_receipt_check_behaviour_always' => 'Завжди активний',
+ 'email_receipt_check_behaviour_last' => "Запам'ятати останній вибір",
+ 'email_receipt_check_behaviour_never' => 'Завжди деактивовано',
+ 'email_smtp_crypto' => 'Шифрування SMTP',
+ 'email_smtp_host' => 'SMTP Сервер',
+ 'email_smtp_pass' => 'SMTP Пароль',
+ 'email_smtp_port' => 'Порт SMTP',
+ 'email_smtp_timeout' => 'Час очікування SMTP',
+ 'email_smtp_user' => "Ім'я користувача SMTP",
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Забезпечення конфіденційності',
+ 'enforce_privacy_tooltip' => 'Захист конфіденційності даних клієнта в разі видалення даних',
+ 'fax' => 'Факс',
+ 'file_perm' => 'Виникають проблеми з дозволами файлів, виправте та перезавантажте сторінку.',
+ 'financial_year' => 'Початок фінансового року',
+ 'financial_year_apr' => '1 - е Квітня',
+ 'financial_year_aug' => '1 - е Серпня',
+ 'financial_year_dec' => '1 - е Грудня',
+ 'financial_year_feb' => '1 - е Лютого',
+ 'financial_year_jan' => '1 - е Січня',
+ 'financial_year_jul' => '1 - е Липня',
+ 'financial_year_jun' => '1 - е Червня',
+ 'financial_year_mar' => '1 - е Березня',
+ 'financial_year_may' => '1 - е Травня',
+ 'financial_year_nov' => '1 - е Листопада',
+ 'financial_year_oct' => '1 - е Жовтня',
+ 'financial_year_sep' => '1 - е Вересня',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => 'Сторінка входу reCAPTCHA',
+ 'gcaptcha_secret_key' => 'reCAPTCHA секретний ключ',
+ 'gcaptcha_secret_key_required' => "reCAPTCHA секретний ключ - це обов'язкове поле",
+ 'gcaptcha_site_key' => 'ключ сайту reCAPTCHA',
+ 'gcaptcha_site_key_required' => "Ключ сайту reCAPTCHA - це обов'язкове поле",
+ 'gcaptcha_tooltip' => 'Захистіть сторінку входу за допомогою Google reCAPTCHA, натисніть на піктограму для пари ключів API',
+ 'general' => 'Загальне',
+ 'general_configuration' => 'Загальна Конфігурація',
+ 'giftcard_number' => 'Номер Подарункової Карти',
+ 'giftcard_random' => 'Генерувати випадкові',
+ 'giftcard_series' => 'Генерувати в серії',
+ 'image_allowed_file_types' => 'Дозволені типи файлів',
+ 'image_max_height_tooltip' => 'Максимально дозволена висота завантажуваних зображень у пікселях (px).',
+ 'image_max_size_tooltip' => 'Максимально дозволений розмір файлу для завантаження зображень у кілобайтах.',
+ 'image_max_width_tooltip' => 'Максимально дозволена ширина завантажуваних зображень у пікселях (px).',
+ 'image_restrictions' => 'Обмеження на завантаження зображень',
+ 'include_hsn' => 'Включіть підтримку кодів HSN',
+ 'info' => 'Інформація',
+ 'info_configuration' => 'Інформація про Магазин',
+ 'input_groups' => '',
+ 'integrations' => 'Інтеграції',
+ 'integrations_configuration' => 'Інтеграція сторонніх організацій',
+ 'invoice' => 'Рахунок-фактура',
+ 'invoice_configuration' => 'Налаштування друку рахунків-фактур',
+ 'invoice_default_comments' => 'Коментарі до рахунків за замовчуванням',
+ 'invoice_email_message' => 'Шаблони рахунків-фактур на електронну пошту',
+ 'invoice_enable' => 'Увімкнути виставлення рахунків',
+ 'invoice_printer' => 'Друк разунку-фактура',
+ 'invoice_type' => 'Тип рахунку-фактури',
+ 'is_readable' => 'Читається, але дозволи встановлені неправильно. Будь ласка, встановіть доступ до файлу 640 або 660 та оновіть сторінку.',
+ 'is_writable' => 'Можна записати, але дозволи встановлені неправильно. Будь ласка, встановіть доступ до файлу 750 та оновіть сторінку.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Увага! Ця функція працюватиме лише у тому випадку, якщо у вас встановлений додаток FireFox jsPrintSetup. Зберегти все одно?',
+ 'language' => 'Мова',
+ 'last_used_invoice_number' => 'Останній використаний номер рахунку-фактури',
+ 'last_used_quote_number' => 'Останній використаний номер котирування',
+ 'last_used_work_order_number' => 'Останній використаний номер без виводу',
+ 'left' => 'Залишок',
+ 'license' => 'Ліцензія',
+ 'license_configuration' => 'Відомості про ліцензію',
+ 'line_sequence' => 'Послідовність рядків',
+ 'lines_per_page' => 'Рядків на сторінці',
+ 'lines_per_page_number' => 'Рядки на сторінці повинні бути числом',
+ 'lines_per_page_required' => "Рядки на сторінці - обов'язкове поле",
+ 'locale' => 'Визначення місцезнаходження',
+ 'locale_configuration' => 'Місце знаходження Конфігурації',
+ 'locale_info' => 'Інформація про Місцезнаходження Конфігурації',
+ 'location' => 'Склад',
+ 'location_configuration' => 'Розташування складу',
+ 'location_info' => 'Інформація про розташування конфігурації',
+ 'login_form' => '',
+ 'logout' => 'Ви хочете зробити резервну копію перед виходом із системи? Натисніть [OK] для резервного копіювання або [Скасувати], щоб вийти?',
+ 'mailchimp' => 'MailСhimp',
+ 'mailchimp_api_key' => 'Ключ API від Mailchimp',
+ 'mailchimp_configuration' => 'Конфігурація Mailchimp',
+ 'mailchimp_key_successfully' => 'Ключ API недійсний',
+ 'mailchimp_key_unsuccessfully' => 'Ключ API невірний',
+ 'mailchimp_lists' => 'Список(и) Mailchimp',
+ 'mailchimp_tooltip' => 'Натисніть на піктограму для ключа API',
+ 'message' => 'Повідомлення',
+ 'message_configuration' => 'Конфігурація повідомлень',
+ 'msg_msg' => 'Збережене текстове повідомлення',
+ 'msg_msg_placeholder' => 'Якщо ви хочете використовувати шаблон SMS, збережіть своє повідомлення тут або залиште поле порожнім',
+ 'msg_pwd' => 'Пароль SMS-API',
+ 'msg_pwd_required' => "Пароль SMS-API - обов'язкове поле",
+ 'msg_src' => 'Ідентифікатор відправника SMS-API',
+ 'msg_src_required' => "Ідентифікатор відправника SMS-API - обов'язкове поле",
+ 'msg_uid' => "Ім'я користувача SMS-API",
+ 'msg_uid_required' => "Ім'я користувача SMS-API - обов'язкове поле",
+ 'multi_pack_enabled' => 'Декілька упаковок товару',
+ 'no_risk' => 'Немає ризиків безпеки/вразливості.',
+ 'none' => 'Жоден',
+ 'notify_alignment' => 'Спливаюче повідомлення',
+ 'number_format' => 'Формат номера',
+ 'number_locale' => 'Місцезнаходження',
+ 'number_locale_invalid' => 'Введене місцезнаходження є недійсним. Перевірте посилання в підказці, щоб знайти правильне місцезнаходження',
+ 'number_locale_required' => "Номер місцезнаходження - обов'язкове поле",
+ 'number_locale_tooltip' => 'Знайдіть відповідне місцезнаходження за цим посиланням',
+ 'os_timezone' => 'Часова зона OSPOS:',
+ 'ospos_info' => 'Інформація про встановлення OSPOS',
+ 'payment_options_order' => 'Варіанти оплати замовлення',
+ 'payment_reference_code_length_limits' => 'Код посилання на платіж
Обмеження довжини',
+ 'payment_reference_code_length_max_label' => 'Макс',
+ 'payment_reference_code_length_min_label' => 'Мін',
+ 'perm_risk' => 'Неправильні дозволи роблять OSPOS вразливим.',
+ 'phone' => 'Телефон організації',
+ 'phone_required' => "Телефон організації - обов'язкове полею",
+ 'print_bottom_margin' => 'Верхнє поле',
+ 'print_bottom_margin_number' => 'Верхнє поле за замовчуванням повинно бути числом',
+ 'print_bottom_margin_required' => "Верхнє поле за замовчуванням - обов'язкове поле",
+ 'print_delay_autoreturn' => 'Затримка автоматичного повернення до продажу',
+ 'print_delay_autoreturn_number' => "Затримка автоматичного повернення до продажу - обов'язкове поле",
+ 'print_delay_autoreturn_required' => 'Затримка автоматичного повернення до продажу повинна бути числом',
+ 'print_footer' => 'Друк веб-переглядача',
+ 'print_header' => 'Друк заголовка браузера',
+ 'print_left_margin' => 'Ліве поле',
+ 'print_left_margin_number' => 'Ліве поле замовчуванням повинен бути числом',
+ 'print_left_margin_required' => "Ліве поле за замовчуванням - обов'язкове поле",
+ 'print_receipt_check_behaviour' => 'Друк квитанції, яка позначена прапорцем',
+ 'print_receipt_check_behaviour_always' => 'Завжди перевіряється',
+ 'print_receipt_check_behaviour_last' => 'Запам’ятати останній вибір',
+ 'print_receipt_check_behaviour_never' => "Ніколи не запам'товувати",
+ 'print_right_margin' => 'Праве поле',
+ 'print_right_margin_number' => 'Праве поле замовчуванням за замовчуванням повинно бути числом',
+ 'print_right_margin_required' => "Праве поле за замовчуванням - обов'язкове поле",
+ 'print_silently' => 'Показати діалогове вікно друку',
+ 'print_top_margin' => 'Верхнє поле',
+ 'print_top_margin_number' => 'Верхнє поле за замовчуванням повинно бути числом',
+ 'print_top_margin_required' => "Верхнє поле за замовчуванням - обов'язкове поле для заповнення",
+ 'quantity_decimals' => 'Кількість десятків',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Кількість десятків за замовчуванням',
+ 'receipt' => 'Квитанція',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Налаштування друку квитанції',
+ 'receipt_default' => 'За замовчуванням',
+ 'receipt_font_size' => 'Розмір шрифту',
+ 'receipt_font_size_number' => 'Розмір шрифту повинен бути числом',
+ 'receipt_font_size_required' => "Розмір шрифту - обов'язкове поле",
+ 'receipt_info' => 'Отримання інформації про конфігурацію',
+ 'receipt_printer' => 'Принтер для квитків',
+ 'receipt_short' => 'Короткий зміст',
+ 'receipt_show_company_name' => 'Показати назву організації',
+ 'receipt_show_description' => 'Показати опис',
+ 'receipt_show_serialnumber' => 'Показати серійний номер',
+ 'receipt_show_tax_ind' => 'Показати показник податку',
+ 'receipt_show_taxes' => 'Показати податковий показник',
+ 'receipt_show_total_discount' => 'Показати загальну знижку',
+ 'receipt_template' => 'Шаблон квитанції',
+ 'receiving_calculate_average_price' => 'Сер. Ціна (отримання)',
+ 'recv_invoice_format' => 'Формат отримання рахунків-фактур',
+ 'register_mode_default' => 'Режим реєстрації за замовчуванням',
+ 'report_an_issue' => 'Повідомити про проблему',
+ 'return_policy_required' => "Політика повернення - обов'язкове поле",
+ 'reward' => 'Нагорода',
+ 'reward_configuration' => 'Налаштування Нагороди',
+ 'right' => 'Право',
+ 'sales_invoice_format' => 'Формат рахунків-фактур продажів',
+ 'sales_quote_format' => 'Формат котирування продажів',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => 'Конфігурація успішно збережена',
+ 'saved_unsuccessfully' => 'Помилка збереження конфігурації',
+ 'security_issue' => 'Попередження про вразливість системи безпеки',
+ 'server_notice' => 'Будь ласка, використовуйте інформацію подану нижче для звіту про проблеми',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Показати значок офісу',
+ 'statistics' => 'Надіслати статистику',
+ 'statistics_tooltip' => 'Надсилайте статистику для розробки та вдосконалення функцій',
+ 'stock_location' => 'Місцезнаходження складу',
+ 'stock_location_duplicate' => 'Склад з таким місцезнаходженням вже існує. Будь ласка, використайте інше',
+ 'stock_location_invalid_chars' => 'Місцезнаходження не може містити спецсимволів',
+ 'stock_location_required' => "Місцезнаходження - обов'язкове поле",
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Колонка 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Формат пошукових пропозицій',
+ 'suggestions_second_column' => 'Колонка 2',
+ 'suggestions_third_column' => 'Колонка 3',
+ 'system_conf' => 'Налаштування',
+ 'system_info' => 'Інформація про систему',
+ 'table' => 'Таблиця',
+ 'table_configuration' => 'Налаштування таблиці',
+ 'takings_printer' => 'Підключення принтера',
+ 'tax' => 'Податок',
+ 'tax_category' => 'Категорія податку',
+ 'tax_category_duplicate' => 'Введена податкова категорія вже існує',
+ 'tax_category_invalid_chars' => 'Введена категорія податку недійсна',
+ 'tax_category_required' => "Податкова категорія - обов'язкове поле",
+ 'tax_category_used' => 'Податкову категорію не можливо видалити, оскільки вона використовується',
+ 'tax_configuration' => 'Налаштування податку.',
+ 'tax_decimals' => 'Податкові десятки',
+ 'tax_id' => 'Податковий номер',
+ 'tax_included' => 'Податок включений',
+ 'theme' => 'Тема',
+ 'theme_preview' => '',
+ 'thousands_separator' => 'Роздільник тисячних розрядів',
+ 'timezone' => 'Часовой пояс',
+ 'timezone_error' => 'Часовий пояс OSPOS відрізняється від вашого місцевого часового поясу.',
+ 'top' => 'Головний',
+ 'use_destination_based_tax' => 'Використовуйте податок на основі призначення',
+ 'user_timezone' => 'Місцевий часовий пояс:',
+ 'website' => 'Веб-сайт',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Підтримка робочого замовлення',
+ 'work_order_format' => 'Формат робочого замовлення',
];
diff --git a/app/Language/uk/Login.php b/app/Language/uk/Login.php
index dc30eb1bd..43ff3872b 100644
--- a/app/Language/uk/Login.php
+++ b/app/Language/uk/Login.php
@@ -1,25 +1,30 @@
"Я не робот.",
- "go" => "Увійти",
- "invalid_gcaptcha" => "Підтвердіть, що ви не робот.",
- "invalid_installation" => "Налаштування невірні, перевірте php.ini.",
- "invalid_username_and_password" => "Невірний логін або пароль.",
- "login" => "Логін",
- "logout" => "",
- "migration_needed" => "",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "Пароль",
- "required_username" => "",
- "username" => "Ім'я користувача",
- "welcome" => "",
+ "gcaptcha" => "Я не робот.",
+ "go" => "Увійти",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Підтвердіть, що ви не робот.",
+ "invalid_installation" => "Налаштування невірні, перевірте php.ini.",
+ "invalid_username_and_password" => "Невірний логін або пароль.",
+ "login" => "Логін",
+ "logout" => "",
+ "migrating_database" => "Міграція бази даних",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "База даних успішно перенесена!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "Пароль",
+ "required_username" => "",
+ "username" => "Ім'я користувача",
+ "welcome" => ""
];
diff --git a/app/Language/uk/Sales.php b/app/Language/uk/Sales.php
index 67eabdd5f..c15058215 100644
--- a/app/Language/uk/Sales.php
+++ b/app/Language/uk/Sales.php
@@ -1,231 +1,235 @@
"Доступні бали",
- "rewards_package" => "Винагороди",
- "rewards_remaining_balance" => "Залишкова цінність бонусних балів становить ",
- "account_number" => "Номер рахунку",
- "add_payment" => "Додати платіж",
- "amount_due" => "Сума заборгованості",
- "amount_tendered" => "Запропонована сума",
- "authorized_signature" => "Підпис уповноваженої особи",
- "cancel_sale" => "Відмінити",
- "cash" => "Готівка",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "Корегування готівки",
- "cash_deposit" => "Готівковий депозит",
- "cash_filter" => "Готівка",
- "change_due" => "Змінити належне(борг)",
- "change_price" => "Змінити ціну продажу",
- "check" => "Перевірити",
- "check_balance" => "Перевірити залишок",
- "check_filter" => "Перевірити",
- "close" => "",
- "comment" => "Коментувати",
- "comments" => "Коментарі",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Завершити продаж",
- "confirm_cancel_sale" => "Ви впевнені, що хочете скасувати цей продаж? Всі товари буде видалено.",
- "confirm_delete" => "Ви впевнені, що хочете видалити вибрані продажі?",
- "confirm_restore" => "Ви впевнені, що хочете відновити вибрані продажі?",
- "credit" => "Кредитна карта",
- "credit_deposit" => "Кредитний депозит",
- "credit_filter" => "Кредитна картка",
- "current_table" => "",
- "customer" => "Клієнт",
- "customer_address" => "Адреса клієнта",
- "customer_discount" => "Знижка",
- "customer_email" => "Електронна пошта клієнта",
- "customer_location" => "Місцезнаходження клієнта",
- "customer_mailchimp_status" => "Статус клієнта mailchimp",
- "customer_optional" => "(Потрібно для належних платежів)",
- "customer_required" => "(Обов'язково)",
- "customer_total" => "Всього",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Дата продажу",
- "date_range" => "Проміжок часу",
- "date_required" => "Необхідно ввести правильну дату.",
- "date_type" => "Дата мусить бути заповнена.",
- "debit" => "Дебетова карта",
- "debit_filter" => "",
- "delete" => "Дозволити видалення",
- "delete_confirmation" => "Ви впевнені, що хочете видалити цей продаж, цю дію не можливо скасувати.",
- "delete_entire_sale" => "Видалити всі продажі",
- "delete_successful" => "Продаж успішно видалено.",
- "delete_unsuccessful" => "Не вдалося видалити продаж.",
- "description_abbrv" => "Опис абревіатурою.",
- "discard" => "Скинути",
- "discard_quote" => "Скинути ціну",
- "discount" => "Знижка %",
- "discount_included" => "% Знижка включена",
- "discount_short" => "% Мала знижка",
- "due" => "Борг",
- "due_filter" => "Борг",
- "edit" => "Редагувати",
- "edit_item" => "Редагувати товар",
- "edit_sale" => "Редагувати продажі",
- "email_receipt" => "Відправити квитанції електронною поштою",
- "employee" => "Працівник",
- "entry" => "Вхід",
- "error_editing_item" => "Помилка редагування товару",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Знайти/Сканувати товар",
- "find_or_scan_item_or_receipt" => "Знайти/Сканувати товар або квитанцію",
- "giftcard" => "Подарункова карта",
- "giftcard_balance" => "Баланс подарункової картки",
- "giftcard_filter" => "",
- "giftcard_number" => "Номер подарункової карти",
- "group_by_category" => "Група за категорією",
- "group_by_type" => "Група за типом",
- "hsn" => "HSN",
- "id" => "Номер продажі",
- "include_prices" => "Включити ціни?",
- "invoice" => "Рахунок-фактура",
- "invoice_confirm" => "Цей рахунок на оплату буде відправленo",
- "invoice_enable" => "Створити рахунок-фактуру",
- "invoice_filter" => "Фільтер рахунку-фактури",
- "invoice_no_email" => "У цього клієнта немає дійсної адреси електронної пошти.",
- "invoice_number" => "Рахунок-фактура #",
- "invoice_number_duplicate" => "Рахунок-фактура з таким номером уже існує.",
- "invoice_sent" => "Рахунок-фактуру надіслано",
- "invoice_total" => "Сума рахунків-фактур",
- "invoice_type_custom_invoice" => "Рахунок-фактура для клієнта",
- "invoice_type_custom_tax_invoice" => "Податковий рахунок-фактура для клієнта",
- "invoice_type_invoice" => "Тип рахунку-фактури (invoice.php)",
- "invoice_type_tax_invoice" => "Податковий рахунок-фактура",
- "invoice_unsent" => "Не вдалося надіслати рахунок-фактуру",
- "invoice_update" => "Перерахунок",
- "item_insufficient_of_stock" => "Недостатньо товару на складі.",
- "item_name" => "Назва товару",
- "item_number" => "Номер товару",
- "item_out_of_stock" => "Товар відсутній на складі.",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "Режим журналу",
- "must_enter_numeric" => "Введена сума повинна бути числом.",
- "must_enter_numeric_giftcard" => "Номер подарункової картки повинен бути цифровим.",
- "new_customer" => "Новий клієнт",
- "new_item" => "Новий товар",
- "no_description" => "Без опису",
- "no_filter" => "Все",
- "no_items_in_cart" => "В кошику немає товарів.",
- "no_sales_to_display" => "Немає продаж для відображення.",
- "none_selected" => "Ви не обрали продажі для видалення.",
- "nontaxed_ind" => " Неоподатковуваний ІД ",
- "not_authorized" => "Ця дія не дозволена.",
- "one_or_multiple" => "Продаж(і)",
- "payment" => "Вид оплати",
- "payment_amount" => "Кількість",
- "payment_not_cover_total" => "Оплата не покриває загальну суму.",
- "payment_type" => "Тип",
- "payments" => "",
- "payments_total" => "Суми платежів",
- "price" => "Ціна",
- "print_after_sale" => "Роздрукувати після продажу",
- "quantity" => "Кількість",
- "quantity_less_than_reorder_level" => "Увага! Бажана кількість нижче рівня замовлення для цього товару.",
- "quantity_less_than_zero" => "Увага! Бажана кількість є недоступною. Ви все ще можете обробляти продажі, але перевірте товар.",
- "quantity_of_items" => "Кількість {0} товарів",
- "quote" => "Котирування",
- "quote_number" => "Номер котирування",
- "quote_number_duplicate" => "Номер котирування повинен бути унікальним.",
- "quote_sent" => "Котирування відправлено",
- "quote_unsent" => "Не вдалося надіслати котирування",
- "receipt" => "Квитанція",
- "receipt_no_email" => "Цей клієнт не має дійсної електронної адреси.",
- "receipt_number" => "Номер квитанції",
- "receipt_sent" => "Квитанція відправлена",
- "receipt_unsent" => "Не вдалося надіслати квитанцію",
- "refund" => "Тип відшкодування",
- "register" => "Журнал продажів",
- "remove_customer" => "Видалити клієнта",
- "remove_discount" => "",
- "return" => "Повернути",
- "rewards" => "Бонусні бали",
- "rewards_balance" => "Баланс бонусних балів",
- "sale" => "Продаж",
- "sale_by_invoice" => "Продаж за рахунком",
- "sale_for_customer" => "Клієнт:",
- "sale_time" => "Час продажу",
- "sales_tax" => "Податок з продажів",
- "sales_total" => "",
- "select_customer" => "Оберіть клієнта",
- "send_invoice" => "Відправити рахунок-фактуру",
- "send_quote" => "Надіслати котирвання продажів",
- "send_receipt" => "Відправити квитанцію",
- "send_work_order" => "Надіслати робочий наказ",
- "serial" => "Серійний номер",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Показати рахунок-фактуру",
- "show_receipt" => "Показати квитанцію",
- "start_typing_customer_name" => "Почніть вводити ім’я клієнта...",
- "start_typing_item_name" => "Почніть вводити назву товару або скористайтесь штрих-кодом ...",
- "stock" => "Склад",
- "stock_location" => "склад",
- "sub_total" => "Проміжний підсумок",
- "successfully_deleted" => "Продажі успішно видалено",
- "successfully_restored" => "Продажі успішно відновлено",
- "successfully_suspended_sale" => "Продажі успішно призупинені.",
- "successfully_updated" => "Продажі успішно оновлено.",
- "suspend_sale" => "Призупинені продажі",
- "suspended_doc_id" => "Документ",
- "suspended_sale_id" => "ІН",
- "suspended_sales" => "Призупинені",
- "table" => "Таблиця",
- "takings" => "Денний оборот",
- "tax" => "Податок",
- "tax_id" => "ІПН",
- "tax_invoice" => "Податкова накладна",
- "tax_percent" => "Податковий відсоток",
- "taxed_ind" => "П",
- "total" => "Сума",
- "total_tax_exclusive" => "Без податку",
- "transaction_failed" => "Не вдалося здійснити продажну транзакцію.",
- "unable_to_add_item" => "Помилка додавання товару до продажу",
- "unsuccessfully_deleted" => "Продажі невдало видалено.",
- "unsuccessfully_restored" => "Не вдалось відновити продажі.",
- "unsuccessfully_suspended_sale" => "Не вдалося призупинити продаж.",
- "unsuccessfully_updated" => "Помилка оновлення продажу.",
- "unsuspend" => "Невитрачені",
- "unsuspend_and_delete" => "Вперед",
- "update" => "Редагувати",
- "upi" => "UPI",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "Робоче замовлення (наряд на роботу)",
- "work_order_number" => "Номер робочого замовлення",
- "work_order_number_duplicate" => "Такий номер робочого замовлення уже існує.",
- "work_order_sent" => "Замовлення відправлено",
- "work_order_unsent" => "Не вдалось отримати робоче замовлення",
+ 'account_number' => 'Номер рахунку',
+ 'add_payment' => 'Додати платіж',
+ 'amount_due' => 'Сума заборгованості',
+ 'amount_tendered' => 'Запропонована сума',
+ 'authorized_signature' => 'Підпис уповноваженої особи',
+ 'cancel_sale' => 'Відмінити',
+ 'cash' => 'Готівка',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'Корегування готівки',
+ 'cash_deposit' => 'Готівковий депозит',
+ 'cash_filter' => 'Готівка',
+ 'change_due' => 'Змінити належне(борг)',
+ 'change_price' => 'Змінити ціну продажу',
+ 'check' => 'Перевірити',
+ 'check_balance' => 'Перевірити залишок',
+ 'check_filter' => 'Перевірити',
+ 'close' => '',
+ 'comment' => 'Коментувати',
+ 'comments' => 'Коментарі',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Завершити продаж',
+ 'confirm_cancel_sale' => 'Ви впевнені, що хочете скасувати цей продаж? Всі товари буде видалено.',
+ 'confirm_delete' => 'Ви впевнені, що хочете видалити вибрані продажі?',
+ 'confirm_restore' => 'Ви впевнені, що хочете відновити вибрані продажі?',
+ 'credit' => 'Кредитна карта',
+ 'credit_deposit' => 'Кредитний депозит',
+ 'credit_filter' => 'Кредитна картка',
+ 'current_table' => '',
+ 'customer' => 'Клієнт',
+ 'customer_address' => 'Адреса клієнта',
+ 'customer_discount' => 'Знижка',
+ 'customer_email' => 'Електронна пошта клієнта',
+ 'customer_location' => 'Місцезнаходження клієнта',
+ 'customer_mailchimp_status' => 'Статус клієнта mailchimp',
+ 'customer_optional' => '(Потрібно для належних платежів)',
+ 'customer_required' => "(Обов'язково)",
+ 'customer_total' => 'Всього',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Доступні бали',
+ 'daily_sales' => '',
+ 'date' => 'Дата продажу',
+ 'date_range' => 'Проміжок часу',
+ 'date_required' => 'Необхідно ввести правильну дату.',
+ 'date_type' => 'Дата мусить бути заповнена.',
+ 'debit' => 'Дебетова карта',
+ 'debit_filter' => '',
+ 'delete' => 'Дозволити видалення',
+ 'delete_confirmation' => 'Ви впевнені, що хочете видалити цей продаж, цю дію не можливо скасувати.',
+ 'delete_entire_sale' => 'Видалити всі продажі',
+ 'delete_successful' => 'Продаж успішно видалено.',
+ 'delete_unsuccessful' => 'Не вдалося видалити продаж.',
+ 'description_abbrv' => 'Опис абревіатурою.',
+ 'discard' => 'Скинути',
+ 'discard_quote' => 'Скинути ціну',
+ 'discount' => 'Знижка %',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Знижка включена',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '% Мала знижка',
+ 'due' => 'Борг',
+ 'due_filter' => 'Борг',
+ 'edit' => 'Редагувати',
+ 'edit_item' => 'Редагувати товар',
+ 'edit_sale' => 'Редагувати продажі',
+ 'email_receipt' => 'Відправити квитанції електронною поштою',
+ 'employee' => 'Працівник',
+ 'entry' => 'Вхід',
+ 'error_editing_item' => 'Помилка редагування товару',
+ 'find_or_scan_item' => 'Знайти/Сканувати товар',
+ 'find_or_scan_item_or_receipt' => 'Знайти/Сканувати товар або квитанцію',
+ 'giftcard' => 'Подарункова карта',
+ 'giftcard_balance' => 'Баланс подарункової картки',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Номер подарункової карти',
+ 'group_by_category' => 'Група за категорією',
+ 'group_by_type' => 'Група за типом',
+ 'hsn' => 'HSN',
+ 'id' => 'Номер продажі',
+ 'include_prices' => 'Включити ціни?',
+ 'invoice' => 'Рахунок-фактура',
+ 'invoice_confirm' => 'Цей рахунок на оплату буде відправленo',
+ 'invoice_enable' => 'Створити рахунок-фактуру',
+ 'invoice_filter' => 'Фільтер рахунку-фактури',
+ 'invoice_no_email' => 'У цього клієнта немає дійсної адреси електронної пошти.',
+ 'invoice_number' => 'Рахунок-фактура #',
+ 'invoice_number_duplicate' => 'Рахунок-фактура з таким номером уже існує.',
+ 'invoice_sent' => 'Рахунок-фактуру надіслано',
+ 'invoice_total' => 'Сума рахунків-фактур',
+ 'invoice_type_custom_invoice' => 'Рахунок-фактура для клієнта',
+ 'invoice_type_custom_tax_invoice' => 'Податковий рахунок-фактура для клієнта',
+ 'invoice_type_invoice' => 'Тип рахунку-фактури (invoice.php)',
+ 'invoice_type_tax_invoice' => 'Податковий рахунок-фактура',
+ 'invoice_unsent' => 'Не вдалося надіслати рахунок-фактуру',
+ 'invoice_update' => 'Перерахунок',
+ 'item_insufficient_of_stock' => 'Недостатньо товару на складі.',
+ 'item_name' => 'Назва товару',
+ 'item_number' => 'Номер товару',
+ 'item_out_of_stock' => 'Товар відсутній на складі.',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => 'Режим журналу',
+ 'must_enter_numeric' => 'Введена сума повинна бути числом.',
+ 'must_enter_numeric_giftcard' => 'Номер подарункової картки повинен бути цифровим.',
+ 'must_enter_reference_code' => 'Необхідно ввести довідковий/пошуковий номер.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Новий клієнт',
+ 'new_item' => 'Новий товар',
+ 'no_description' => 'Без опису',
+ 'no_filter' => 'Все',
+ 'no_items_in_cart' => 'В кошику немає товарів.',
+ 'no_sales_to_display' => 'Немає продаж для відображення.',
+ 'none_selected' => 'Ви не обрали продажі для видалення.',
+ 'nontaxed_ind' => ' Неоподатковуваний ІД ',
+ 'not_authorized' => 'Ця дія не дозволена.',
+ 'one_or_multiple' => 'Продаж(і)',
+ 'payment' => 'Вид оплати',
+ 'payment_amount' => 'Кількість',
+ 'payment_not_cover_total' => 'Оплата не покриває загальну суму.',
+ 'payment_type' => 'Тип',
+ 'payments' => '',
+ 'payments_total' => 'Суми платежів',
+ 'price' => 'Ціна',
+ 'print_after_sale' => 'Роздрукувати після продажу',
+ 'quantity' => 'Кількість',
+ 'quantity_less_than_reorder_level' => 'Увага! Бажана кількість нижче рівня замовлення для цього товару.',
+ 'quantity_less_than_zero' => 'Увага! Бажана кількість є недоступною. Ви все ще можете обробляти продажі, але перевірте товар.',
+ 'quantity_of_items' => 'Кількість {0} товарів',
+ 'quote' => 'Котирування',
+ 'quote_number' => 'Номер котирування',
+ 'quote_number_duplicate' => 'Номер котирування повинен бути унікальним.',
+ 'quote_sent' => 'Котирування відправлено',
+ 'quote_unsent' => 'Не вдалося надіслати котирування',
+ 'receipt' => 'Квитанція',
+ 'receipt_no_email' => 'Цей клієнт не має дійсної електронної адреси.',
+ 'receipt_number' => 'Номер квитанції',
+ 'receipt_sent' => 'Квитанція відправлена',
+ 'receipt_unsent' => 'Не вдалося надіслати квитанцію',
+ 'reference_code' => 'Код посилання на платіж',
+ 'reference_code_invalid_characters' => 'Код посилання повинен містити лише літери та цифри.',
+ 'reference_code_length_error' => 'Довжина коду посилання недопустима.',
+ 'refund' => 'Тип відшкодування',
+ 'register' => 'Журнал продажів',
+ 'remove_customer' => 'Видалити клієнта',
+ 'remove_discount' => '',
+ 'return' => 'Повернути',
+ 'rewards' => 'Бонусні бали',
+ 'rewards_balance' => 'Баланс бонусних балів',
+ 'rewards_package' => 'Винагороди',
+ 'rewards_remaining_balance' => 'Залишкова цінність бонусних балів становить ',
+ 'sale' => 'Продаж',
+ 'sale_by_invoice' => 'Продаж за рахунком',
+ 'sale_for_customer' => 'Клієнт:',
+ 'sale_time' => 'Час продажу',
+ 'sales_tax' => 'Податок з продажів',
+ 'sales_total' => '',
+ 'select_customer' => 'Оберіть клієнта',
+ 'send_invoice' => 'Відправити рахунок-фактуру',
+ 'send_quote' => 'Надіслати котирвання продажів',
+ 'send_receipt' => 'Відправити квитанцію',
+ 'send_work_order' => 'Надіслати робочий наказ',
+ 'serial' => 'Серійний номер',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Показати рахунок-фактуру',
+ 'show_receipt' => 'Показати квитанцію',
+ 'start_typing_customer_name' => 'Почніть вводити ім’я клієнта...',
+ 'start_typing_item_name' => 'Почніть вводити назву товару або скористайтесь штрих-кодом ...',
+ 'stock' => 'Склад',
+ 'stock_location' => 'склад',
+ 'sub_total' => 'Проміжний підсумок',
+ 'successfully_deleted' => 'Продажі успішно видалено',
+ 'successfully_restored' => 'Продажі успішно відновлено',
+ 'successfully_suspended_sale' => 'Продажі успішно призупинені.',
+ 'successfully_updated' => 'Продажі успішно оновлено.',
+ 'suspend_sale' => 'Призупинені продажі',
+ 'suspended_doc_id' => 'Документ',
+ 'suspended_sale_id' => 'ІН',
+ 'suspended_sales' => 'Призупинені',
+ 'table' => 'Таблиця',
+ 'takings' => 'Денний оборот',
+ 'tax' => 'Податок',
+ 'tax_id' => 'ІПН',
+ 'tax_invoice' => 'Податкова накладна',
+ 'tax_percent' => 'Податковий відсоток',
+ 'taxed_ind' => 'П',
+ 'total' => 'Сума',
+ 'total_tax_exclusive' => 'Без податку',
+ 'transaction_failed' => 'Не вдалося здійснити продажну транзакцію.',
+ 'unable_to_add_item' => 'Помилка додавання товару до продажу',
+ 'unsuccessfully_deleted' => 'Продажі невдало видалено.',
+ 'unsuccessfully_restored' => 'Не вдалось відновити продажі.',
+ 'unsuccessfully_suspended_sale' => 'Не вдалося призупинити продаж.',
+ 'unsuccessfully_updated' => 'Помилка оновлення продажу.',
+ 'unsuspend' => 'Невитрачені',
+ 'unsuspend_and_delete' => 'Вперед',
+ 'update' => 'Редагувати',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'Робоче замовлення (наряд на роботу)',
+ 'work_order_number' => 'Номер робочого замовлення',
+ 'work_order_number_duplicate' => 'Такий номер робочого замовлення уже існує.',
+ 'work_order_sent' => 'Замовлення відправлено',
+ 'work_order_unsent' => 'Не вдалось отримати робоче замовлення',
];
diff --git a/app/Language/ur/Config.php b/app/Language/ur/Config.php
index c8018452e..cfcf8c0ff 100644
--- a/app/Language/ur/Config.php
+++ b/app/Language/ur/Config.php
@@ -1,332 +1,335 @@
"",
- "address_required" => "",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "",
- "apostrophe" => "",
- "backup_button" => "",
- "backup_database" => "",
- "barcode" => "",
- "barcode_company" => "",
- "barcode_configuration" => "",
- "barcode_content" => "",
- "barcode_first_row" => "",
- "barcode_font" => "",
- "barcode_formats" => "",
- "barcode_generate_if_empty" => "",
- "barcode_height" => "",
- "barcode_id" => "",
- "barcode_info" => "",
- "barcode_layout" => "",
- "barcode_name" => "",
- "barcode_number" => "",
- "barcode_number_in_row" => "",
- "barcode_page_cellspacing" => "",
- "barcode_page_width" => "",
- "barcode_price" => "",
- "barcode_second_row" => "",
- "barcode_third_row" => "",
- "barcode_tooltip" => "",
- "barcode_type" => "",
- "barcode_width" => "",
- "bottom" => "",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "",
- "cash_decimals_tooltip" => "",
- "cash_rounding" => "",
- "category_dropdown" => "",
- "center" => "",
- "change_apperance_tooltip" => "",
- "comma" => "",
- "company" => "",
- "company_avatar" => "",
- "company_change_image" => "",
- "company_logo" => "",
- "company_remove_image" => "",
- "company_required" => "",
- "company_select_image" => "",
- "company_website_url" => "",
- "country_codes" => "",
- "country_codes_tooltip" => "",
- "currency_code" => "",
- "currency_decimals" => "",
- "currency_symbol" => "",
- "current_employee_only" => "",
- "customer_reward" => "",
- "customer_reward_duplicate" => "",
- "customer_reward_enable" => "",
- "customer_reward_invalid_chars" => "",
- "customer_reward_required" => "",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "",
- "datetimeformat" => "",
- "decimal_point" => "",
- "default_barcode_font_size_number" => "",
- "default_barcode_font_size_required" => "",
- "default_barcode_height_number" => "",
- "default_barcode_height_required" => "",
- "default_barcode_num_in_row_number" => "",
- "default_barcode_num_in_row_required" => "",
- "default_barcode_page_cellspacing_number" => "",
- "default_barcode_page_cellspacing_required" => "",
- "default_barcode_page_width_number" => "",
- "default_barcode_page_width_required" => "",
- "default_barcode_width_number" => "",
- "default_barcode_width_required" => "",
- "default_item_columns" => "",
- "default_origin_tax_code" => "",
- "default_receivings_discount" => "",
- "default_receivings_discount_number" => "",
- "default_receivings_discount_required" => "",
- "default_sales_discount" => "",
- "default_sales_discount_number" => "",
- "default_sales_discount_required" => "",
- "default_tax_category" => "",
- "default_tax_code" => "",
- "default_tax_jurisdiction" => "",
- "default_tax_name_number" => "",
- "default_tax_name_required" => "",
- "default_tax_rate" => "",
- "default_tax_rate_1" => "",
- "default_tax_rate_2" => "",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "",
- "default_tax_rate_required" => "",
- "derive_sale_quantity" => "",
- "derive_sale_quantity_tooltip" => "",
- "dinner_table" => "",
- "dinner_table_duplicate" => "",
- "dinner_table_enable" => "",
- "dinner_table_invalid_chars" => "",
- "dinner_table_required" => "",
- "dot" => "",
- "email" => "",
- "email_configuration" => "",
- "email_mailpath" => "",
- "email_protocol" => "",
- "email_receipt_check_behaviour" => "",
- "email_receipt_check_behaviour_always" => "",
- "email_receipt_check_behaviour_last" => "",
- "email_receipt_check_behaviour_never" => "",
- "email_smtp_crypto" => "",
- "email_smtp_host" => "",
- "email_smtp_pass" => "",
- "email_smtp_port" => "",
- "email_smtp_timeout" => "",
- "email_smtp_user" => "",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "",
- "enforce_privacy_tooltip" => "",
- "fax" => "",
- "file_perm" => "There are problems with file permissions please fix and reload this page.",
- "financial_year" => "",
- "financial_year_apr" => "",
- "financial_year_aug" => "",
- "financial_year_dec" => "",
- "financial_year_feb" => "",
- "financial_year_jan" => "",
- "financial_year_jul" => "",
- "financial_year_jun" => "",
- "financial_year_mar" => "",
- "financial_year_may" => "",
- "financial_year_nov" => "",
- "financial_year_oct" => "",
- "financial_year_sep" => "",
- "floating_labels" => "",
- "gcaptcha_enable" => "",
- "gcaptcha_secret_key" => "",
- "gcaptcha_secret_key_required" => "",
- "gcaptcha_site_key" => "",
- "gcaptcha_site_key_required" => "",
- "gcaptcha_tooltip" => "",
- "general" => "",
- "general_configuration" => "",
- "giftcard_number" => "",
- "giftcard_random" => "",
- "giftcard_series" => "",
- "image_allowed_file_types" => "",
- "image_max_height_tooltip" => "",
- "image_max_size_tooltip" => "",
- "image_max_width_tooltip" => "",
- "image_restrictions" => "",
- "include_hsn" => "",
- "info" => "",
- "info_configuration" => "",
- "input_groups" => "",
- "integrations" => "",
- "integrations_configuration" => "",
- "invoice" => "",
- "invoice_configuration" => "",
- "invoice_default_comments" => "",
- "invoice_email_message" => "",
- "invoice_enable" => "",
- "invoice_printer" => "",
- "invoice_type" => "",
- "is_readable" => "",
- "is_writable" => "is writable, but the permissions are higher than 750.",
- "item_markup" => "",
- "jsprintsetup_required" => "",
- "language" => "",
- "last_used_invoice_number" => "",
- "last_used_quote_number" => "",
- "last_used_work_order_number" => "",
- "left" => "",
- "license" => "",
- "license_configuration" => "",
- "line_sequence" => "",
- "lines_per_page" => "",
- "lines_per_page_number" => "",
- "lines_per_page_required" => "",
- "locale" => "",
- "locale_configuration" => "",
- "locale_info" => "",
- "location" => "",
- "location_configuration" => "",
- "location_info" => "",
- "login_form" => "",
- "logout" => "",
- "mailchimp" => "",
- "mailchimp_api_key" => "",
- "mailchimp_configuration" => "",
- "mailchimp_key_successfully" => "",
- "mailchimp_key_unsuccessfully" => "",
- "mailchimp_lists" => "",
- "mailchimp_tooltip" => "",
- "message" => "",
- "message_configuration" => "",
- "msg_msg" => "",
- "msg_msg_placeholder" => "",
- "msg_pwd" => "",
- "msg_pwd_required" => "",
- "msg_src" => "",
- "msg_src_required" => "",
- "msg_uid" => "",
- "msg_uid_required" => "",
- "multi_pack_enabled" => "",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "",
- "notify_alignment" => "",
- "number_format" => "",
- "number_locale" => "",
- "number_locale_invalid" => "",
- "number_locale_required" => "",
- "number_locale_tooltip" => "",
- "os_timezone" => "",
- "ospos_info" => "",
- "payment_options_order" => "",
- "perm_risk" => "Permissions higher than 750 leaves this software at risk.",
- "phone" => "",
- "phone_required" => "",
- "print_bottom_margin" => "",
- "print_bottom_margin_number" => "",
- "print_bottom_margin_required" => "",
- "print_delay_autoreturn" => "",
- "print_delay_autoreturn_number" => "",
- "print_delay_autoreturn_required" => "",
- "print_footer" => "",
- "print_header" => "",
- "print_left_margin" => "",
- "print_left_margin_number" => "",
- "print_left_margin_required" => "",
- "print_receipt_check_behaviour" => "",
- "print_receipt_check_behaviour_always" => "",
- "print_receipt_check_behaviour_last" => "",
- "print_receipt_check_behaviour_never" => "",
- "print_right_margin" => "",
- "print_right_margin_number" => "",
- "print_right_margin_required" => "",
- "print_silently" => "",
- "print_top_margin" => "",
- "print_top_margin_number" => "",
- "print_top_margin_required" => "",
- "quantity_decimals" => "",
- "quick_cash_enable" => "",
- "quote_default_comments" => "",
- "receipt" => "",
- "receipt_category" => "",
- "receipt_configuration" => "",
- "receipt_default" => "",
- "receipt_font_size" => "",
- "receipt_font_size_number" => "",
- "receipt_font_size_required" => "",
- "receipt_info" => "",
- "receipt_printer" => "",
- "receipt_short" => "",
- "receipt_show_company_name" => "",
- "receipt_show_description" => "",
- "receipt_show_serialnumber" => "",
- "receipt_show_tax_ind" => "",
- "receipt_show_taxes" => "",
- "receipt_show_total_discount" => "",
- "receipt_template" => "",
- "receiving_calculate_average_price" => "",
- "recv_invoice_format" => "",
- "register_mode_default" => "",
- "report_an_issue" => "",
- "return_policy_required" => "",
- "reward" => "",
- "reward_configuration" => "",
- "right" => "",
- "sales_invoice_format" => "",
- "sales_quote_format" => "",
- "mailpath_invalid" => "",
- "saved_successfully" => "",
- "saved_unsuccessfully" => "",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "",
- "statistics" => "",
- "statistics_tooltip" => "",
- "stock_location" => "",
- "stock_location_duplicate" => "",
- "stock_location_invalid_chars" => "",
- "stock_location_required" => "",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "",
- "suggestions_second_column" => "",
- "suggestions_third_column" => "",
- "system_conf" => "Setup & Conf",
- "system_info" => "",
- "table" => "",
- "table_configuration" => "",
- "takings_printer" => "",
- "tax" => "",
- "tax_category" => "",
- "tax_category_duplicate" => "",
- "tax_category_invalid_chars" => "",
- "tax_category_required" => "",
- "tax_category_used" => "",
- "tax_configuration" => "",
- "tax_decimals" => "",
- "tax_id" => "",
- "tax_included" => "",
- "theme" => "",
- "theme_preview" => "",
- "thousands_separator" => "",
- "timezone" => "",
- "timezone_error" => "",
- "top" => "",
- "use_destination_based_tax" => "",
- "user_timezone" => "",
- "website" => "",
- "wholesale_markup" => "",
- "work_order_enable" => "",
- "work_order_format" => "",
+ 'address' => '',
+ 'address_required' => '',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => '',
+ 'apostrophe' => '',
+ 'backup_button' => '',
+ 'backup_database' => '',
+ 'barcode' => '',
+ 'barcode_company' => '',
+ 'barcode_configuration' => '',
+ 'barcode_content' => '',
+ 'barcode_first_row' => '',
+ 'barcode_font' => '',
+ 'barcode_formats' => '',
+ 'barcode_generate_if_empty' => '',
+ 'barcode_height' => '',
+ 'barcode_id' => '',
+ 'barcode_info' => '',
+ 'barcode_layout' => '',
+ 'barcode_name' => '',
+ 'barcode_number' => '',
+ 'barcode_number_in_row' => '',
+ 'barcode_page_cellspacing' => '',
+ 'barcode_page_width' => '',
+ 'barcode_price' => '',
+ 'barcode_second_row' => '',
+ 'barcode_third_row' => '',
+ 'barcode_tooltip' => '',
+ 'barcode_type' => '',
+ 'barcode_width' => '',
+ 'bottom' => '',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => '',
+ 'cash_decimals_tooltip' => '',
+ 'cash_rounding' => '',
+ 'category_dropdown' => '',
+ 'center' => '',
+ 'change_apperance_tooltip' => '',
+ 'comma' => '',
+ 'company' => '',
+ 'company_avatar' => '',
+ 'company_change_image' => '',
+ 'company_logo' => '',
+ 'company_remove_image' => '',
+ 'company_required' => '',
+ 'company_select_image' => '',
+ 'company_website_url' => '',
+ 'country_codes' => '',
+ 'country_codes_tooltip' => '',
+ 'currency_code' => '',
+ 'currency_decimals' => '',
+ 'currency_symbol' => '',
+ 'current_employee_only' => '',
+ 'customer_reward' => '',
+ 'customer_reward_duplicate' => '',
+ 'customer_reward_enable' => '',
+ 'customer_reward_invalid_chars' => '',
+ 'customer_reward_required' => '',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => '',
+ 'datetimeformat' => '',
+ 'decimal_point' => '',
+ 'default_barcode_font_size_number' => '',
+ 'default_barcode_font_size_required' => '',
+ 'default_barcode_height_number' => '',
+ 'default_barcode_height_required' => '',
+ 'default_barcode_num_in_row_number' => '',
+ 'default_barcode_num_in_row_required' => '',
+ 'default_barcode_page_cellspacing_number' => '',
+ 'default_barcode_page_cellspacing_required' => '',
+ 'default_barcode_page_width_number' => '',
+ 'default_barcode_page_width_required' => '',
+ 'default_barcode_width_number' => '',
+ 'default_barcode_width_required' => '',
+ 'default_item_columns' => '',
+ 'default_origin_tax_code' => '',
+ 'default_receivings_discount' => '',
+ 'default_receivings_discount_number' => '',
+ 'default_receivings_discount_required' => '',
+ 'default_sales_discount' => '',
+ 'default_sales_discount_number' => '',
+ 'default_sales_discount_required' => '',
+ 'default_tax_category' => '',
+ 'default_tax_code' => '',
+ 'default_tax_jurisdiction' => '',
+ 'default_tax_name_number' => '',
+ 'default_tax_name_required' => '',
+ 'default_tax_rate' => '',
+ 'default_tax_rate_1' => '',
+ 'default_tax_rate_2' => '',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => '',
+ 'default_tax_rate_required' => '',
+ 'derive_sale_quantity' => '',
+ 'derive_sale_quantity_tooltip' => '',
+ 'dinner_table' => '',
+ 'dinner_table_duplicate' => '',
+ 'dinner_table_enable' => '',
+ 'dinner_table_invalid_chars' => '',
+ 'dinner_table_required' => '',
+ 'dot' => '',
+ 'email' => '',
+ 'email_configuration' => '',
+ 'email_mailpath' => '',
+ 'email_protocol' => '',
+ 'email_receipt_check_behaviour' => '',
+ 'email_receipt_check_behaviour_always' => '',
+ 'email_receipt_check_behaviour_last' => '',
+ 'email_receipt_check_behaviour_never' => '',
+ 'email_smtp_crypto' => '',
+ 'email_smtp_host' => '',
+ 'email_smtp_pass' => '',
+ 'email_smtp_port' => '',
+ 'email_smtp_timeout' => '',
+ 'email_smtp_user' => '',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => '',
+ 'enforce_privacy_tooltip' => '',
+ 'fax' => '',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => '',
+ 'financial_year_apr' => '',
+ 'financial_year_aug' => '',
+ 'financial_year_dec' => '',
+ 'financial_year_feb' => '',
+ 'financial_year_jan' => '',
+ 'financial_year_jul' => '',
+ 'financial_year_jun' => '',
+ 'financial_year_mar' => '',
+ 'financial_year_may' => '',
+ 'financial_year_nov' => '',
+ 'financial_year_oct' => '',
+ 'financial_year_sep' => '',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => '',
+ 'gcaptcha_secret_key' => '',
+ 'gcaptcha_secret_key_required' => '',
+ 'gcaptcha_site_key' => '',
+ 'gcaptcha_site_key_required' => '',
+ 'gcaptcha_tooltip' => '',
+ 'general' => '',
+ 'general_configuration' => '',
+ 'giftcard_number' => '',
+ 'giftcard_random' => '',
+ 'giftcard_series' => '',
+ 'image_allowed_file_types' => '',
+ 'image_max_height_tooltip' => '',
+ 'image_max_size_tooltip' => '',
+ 'image_max_width_tooltip' => '',
+ 'image_restrictions' => '',
+ 'include_hsn' => '',
+ 'info' => '',
+ 'info_configuration' => '',
+ 'input_groups' => '',
+ 'integrations' => '',
+ 'integrations_configuration' => '',
+ 'invoice' => '',
+ 'invoice_configuration' => '',
+ 'invoice_default_comments' => '',
+ 'invoice_email_message' => '',
+ 'invoice_enable' => '',
+ 'invoice_printer' => '',
+ 'invoice_type' => '',
+ 'is_readable' => '',
+ 'is_writable' => 'is writable, but the permissions are higher than 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => '',
+ 'language' => '',
+ 'last_used_invoice_number' => '',
+ 'last_used_quote_number' => '',
+ 'last_used_work_order_number' => '',
+ 'left' => '',
+ 'license' => '',
+ 'license_configuration' => '',
+ 'line_sequence' => '',
+ 'lines_per_page' => '',
+ 'lines_per_page_number' => '',
+ 'lines_per_page_required' => '',
+ 'locale' => '',
+ 'locale_configuration' => '',
+ 'locale_info' => '',
+ 'location' => '',
+ 'location_configuration' => '',
+ 'location_info' => '',
+ 'login_form' => '',
+ 'logout' => '',
+ 'mailchimp' => '',
+ 'mailchimp_api_key' => '',
+ 'mailchimp_configuration' => '',
+ 'mailchimp_key_successfully' => '',
+ 'mailchimp_key_unsuccessfully' => '',
+ 'mailchimp_lists' => '',
+ 'mailchimp_tooltip' => '',
+ 'message' => '',
+ 'message_configuration' => '',
+ 'msg_msg' => '',
+ 'msg_msg_placeholder' => '',
+ 'msg_pwd' => '',
+ 'msg_pwd_required' => '',
+ 'msg_src' => '',
+ 'msg_src_required' => '',
+ 'msg_uid' => '',
+ 'msg_uid_required' => '',
+ 'multi_pack_enabled' => '',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => '',
+ 'notify_alignment' => '',
+ 'number_format' => '',
+ 'number_locale' => '',
+ 'number_locale_invalid' => '',
+ 'number_locale_required' => '',
+ 'number_locale_tooltip' => '',
+ 'os_timezone' => '',
+ 'ospos_info' => '',
+ 'payment_options_order' => '',
+ 'payment_reference_code_length_limits' => 'ادائیگی حوالہ کوڈ
لمبائی کی حدود',
+ 'payment_reference_code_length_max_label' => 'زیادہ سے زیادہ',
+ 'payment_reference_code_length_min_label' => 'کم سے کم',
+ 'perm_risk' => 'Permissions higher than 750 leaves this software at risk.',
+ 'phone' => '',
+ 'phone_required' => '',
+ 'print_bottom_margin' => '',
+ 'print_bottom_margin_number' => '',
+ 'print_bottom_margin_required' => '',
+ 'print_delay_autoreturn' => '',
+ 'print_delay_autoreturn_number' => '',
+ 'print_delay_autoreturn_required' => '',
+ 'print_footer' => '',
+ 'print_header' => '',
+ 'print_left_margin' => '',
+ 'print_left_margin_number' => '',
+ 'print_left_margin_required' => '',
+ 'print_receipt_check_behaviour' => '',
+ 'print_receipt_check_behaviour_always' => '',
+ 'print_receipt_check_behaviour_last' => '',
+ 'print_receipt_check_behaviour_never' => '',
+ 'print_right_margin' => '',
+ 'print_right_margin_number' => '',
+ 'print_right_margin_required' => '',
+ 'print_silently' => '',
+ 'print_top_margin' => '',
+ 'print_top_margin_number' => '',
+ 'print_top_margin_required' => '',
+ 'quantity_decimals' => '',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => '',
+ 'receipt' => '',
+ 'receipt_category' => '',
+ 'receipt_configuration' => '',
+ 'receipt_default' => '',
+ 'receipt_font_size' => '',
+ 'receipt_font_size_number' => '',
+ 'receipt_font_size_required' => '',
+ 'receipt_info' => '',
+ 'receipt_printer' => '',
+ 'receipt_short' => '',
+ 'receipt_show_company_name' => '',
+ 'receipt_show_description' => '',
+ 'receipt_show_serialnumber' => '',
+ 'receipt_show_tax_ind' => '',
+ 'receipt_show_taxes' => '',
+ 'receipt_show_total_discount' => '',
+ 'receipt_template' => '',
+ 'receiving_calculate_average_price' => '',
+ 'recv_invoice_format' => '',
+ 'register_mode_default' => '',
+ 'report_an_issue' => '',
+ 'return_policy_required' => '',
+ 'reward' => '',
+ 'reward_configuration' => '',
+ 'right' => '',
+ 'sales_invoice_format' => '',
+ 'sales_quote_format' => '',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => '',
+ 'saved_unsuccessfully' => '',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => '',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => '',
+ 'statistics' => '',
+ 'statistics_tooltip' => '',
+ 'stock_location' => '',
+ 'stock_location_duplicate' => '',
+ 'stock_location_invalid_chars' => '',
+ 'stock_location_required' => '',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => '',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => '',
+ 'suggestions_second_column' => '',
+ 'suggestions_third_column' => '',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => '',
+ 'table' => '',
+ 'table_configuration' => '',
+ 'takings_printer' => '',
+ 'tax' => '',
+ 'tax_category' => '',
+ 'tax_category_duplicate' => '',
+ 'tax_category_invalid_chars' => '',
+ 'tax_category_required' => '',
+ 'tax_category_used' => '',
+ 'tax_configuration' => '',
+ 'tax_decimals' => '',
+ 'tax_id' => '',
+ 'tax_included' => '',
+ 'theme' => '',
+ 'theme_preview' => '',
+ 'thousands_separator' => '',
+ 'timezone' => '',
+ 'timezone_error' => '',
+ 'top' => '',
+ 'use_destination_based_tax' => '',
+ 'user_timezone' => '',
+ 'website' => '',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => '',
+ 'work_order_format' => '',
];
diff --git a/app/Language/ur/Login.php b/app/Language/ur/Login.php
index 652c3f22c..b02422892 100644
--- a/app/Language/ur/Login.php
+++ b/app/Language/ur/Login.php
@@ -1,25 +1,30 @@
"",
- "go" => "",
- "invalid_gcaptcha" => "",
- "invalid_installation" => "",
- "invalid_username_and_password" => "",
- "login" => "",
- "logout" => "",
- "migration_needed" => "",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "",
- "required_username" => "",
- "username" => "",
- "welcome" => "",
+ "gcaptcha" => "",
+ "go" => "",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "",
+ "invalid_installation" => "",
+ "invalid_username_and_password" => "",
+ "login" => "",
+ "logout" => "",
+ "migrating_database" => "ڈیٹا بیس منتقل ہو رہا ہے",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "ڈیٹا بیس کامیابی سے منتقل ہو گیا!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "",
+ "required_username" => "",
+ "username" => "",
+ "welcome" => ""
];
diff --git a/app/Language/ur/Sales.php b/app/Language/ur/Sales.php
index 6ee0bae6d..0fb4f2614 100644
--- a/app/Language/ur/Sales.php
+++ b/app/Language/ur/Sales.php
@@ -1,232 +1,235 @@
"",
- "rewards_package" => "",
- "rewards_remaining_balance" => "",
- "account_number" => "اکاوٗنٹ",
- "add_payment" => "",
- "amount_due" => "",
- "amount_tendered" => "",
- "authorized_signature" => "",
- "cancel_sale" => "",
- "cash" => "",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "",
- "cash_deposit" => "",
- "cash_filter" => "",
- "change_due" => "",
- "change_price" => "",
- "check" => "",
- "check_balance" => "",
- "check_filter" => "",
- "close" => "",
- "comment" => "",
- "comments" => "",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "",
- "confirm_cancel_sale" => "",
- "confirm_delete" => "",
- "confirm_restore" => "",
- "credit" => "",
- "credit_deposit" => "",
- "credit_filter" => "",
- "current_table" => "",
- "customer" => "",
- "customer_address" => "",
- "customer_discount" => "",
- "customer_email" => "",
- "customer_location" => "",
- "customer_mailchimp_status" => "",
- "customer_optional" => "",
- "customer_required" => "",
- "customer_total" => "",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "",
- "date_range" => "",
- "date_required" => "",
- "date_type" => "",
- "debit" => "",
- "debit_filter" => "",
- "delete" => "",
- "delete_confirmation" => "",
- "delete_entire_sale" => "",
- "delete_successful" => "",
- "delete_unsuccessful" => "",
- "description_abbrv" => "",
- "discard" => "",
- "discard_quote" => "",
- "discount" => "",
- "discount_included" => "",
- "discount_short" => "",
- "due" => "",
- "due_filter" => "",
- "edit" => "",
- "edit_item" => "",
- "edit_sale" => "",
- "email_receipt" => "",
- "employee" => "",
- "entry" => "",
- "error_editing_item" => "",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "",
- "find_or_scan_item_or_receipt" => "",
- "giftcard" => "",
- "giftcard_balance" => "",
- "giftcard_filter" => "",
- "giftcard_number" => "",
- "group_by_category" => "",
- "group_by_type" => "",
- "hsn" => "",
- "id" => "",
- "include_prices" => "",
- "invoice" => "",
- "invoice_confirm" => "",
- "invoice_enable" => "",
- "invoice_filter" => "",
- "invoice_no_email" => "",
- "invoice_number" => "",
- "invoice_number_duplicate" => "",
- "invoice_sent" => "",
- "invoice_total" => "",
- "invoice_type_custom_invoice" => "",
- "invoice_type_custom_tax_invoice" => "",
- "invoice_type_invoice" => "",
- "invoice_type_tax_invoice" => "",
- "invoice_unsent" => "",
- "invoice_update" => "",
- "item_insufficient_of_stock" => "",
- "item_name" => "",
- "item_number" => "",
- "item_out_of_stock" => "",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "",
- "must_enter_numeric" => "",
- "must_enter_numeric_giftcard" => "",
- "new_customer" => "",
- "new_item" => "",
- "no_description" => "",
- "no_filter" => "",
- "no_items_in_cart" => "",
- "no_sales_to_display" => "",
- "none_selected" => "",
- "nontaxed_ind" => "",
- "not_authorized" => "",
- "one_or_multiple" => "",
- "payment" => "",
- "payment_amount" => "",
- "payment_not_cover_total" => "",
- "payment_type" => "",
- "payments" => "",
- "payments_total" => "",
- "price" => "",
- "print_after_sale" => "",
- "quantity" => "",
- "quantity_less_than_reorder_level" => "",
- "quantity_less_than_zero" => "",
- "quantity_of_items" => "",
- "quote" => "",
- "quote_number" => "",
- "quote_number_duplicate" => "",
- "quote_sent" => "",
- "quote_unsent" => "",
- "receipt" => "",
- "receipt_no_email" => "",
- "receipt_number" => "",
- "receipt_sent" => "",
- "receipt_unsent" => "",
- "refund" => "",
- "register" => "",
- "remove_customer" => "",
- "remove_discount" => "",
- "return" => "",
- "rewards" => "",
- "rewards_balance" => "",
- "sale" => "",
- "sale_by_invoice" => "",
- "sale_for_customer" => "",
- "sale_time" => "",
- "sales_tax" => "",
- "sales_total" => "",
- "select_customer" => "",
- "send_invoice" => "",
- "send_quote" => "",
- "send_receipt" => "",
- "send_work_order" => "",
- "serial" => "",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "",
- "show_receipt" => "",
- "start_typing_customer_name" => "",
- "start_typing_item_name" => "",
- "stock" => "",
- "stock_location" => "",
- "sub_total" => "",
- "successfully_deleted" => "",
- "successfully_restored" => "",
- "successfully_suspended_sale" => "",
- "successfully_updated" => "",
- "suspend_sale" => "",
- "suspended_doc_id" => "",
- "suspended_sale_id" => "",
- "suspended_sales" => "",
- "table" => "",
- "takings" => "",
- "tax" => "",
- "tax_id" => "",
- "tax_invoice" => "",
- "tax_percent" => "",
- "taxed_ind" => "",
- "total" => "",
- "total_tax_exclusive" => "",
- "transaction_failed" => "",
- "unable_to_add_item" => "",
- "unsuccessfully_deleted" => "",
- "unsuccessfully_restored" => "",
- "unsuccessfully_suspended_sale" => "",
- "unsuccessfully_updated" => "",
- "unsuspend" => "",
- "unsuspend_and_delete" => "",
- "update" => "",
- "upi" => "",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "",
- "work_order_number" => "",
- "work_order_number_duplicate" => "",
- "work_order_sent" => "",
- "work_order_unsent" => "",
- "sale_not_found" => "",
+ 'account_number' => 'اکاوٗنٹ',
+ 'add_payment' => '',
+ 'amount_due' => '',
+ 'amount_tendered' => '',
+ 'authorized_signature' => '',
+ 'cancel_sale' => '',
+ 'cash' => '',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => '',
+ 'cash_deposit' => '',
+ 'cash_filter' => '',
+ 'change_due' => '',
+ 'change_price' => '',
+ 'check' => '',
+ 'check_balance' => '',
+ 'check_filter' => '',
+ 'close' => '',
+ 'comment' => '',
+ 'comments' => '',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => '',
+ 'confirm_cancel_sale' => '',
+ 'confirm_delete' => '',
+ 'confirm_restore' => '',
+ 'credit' => '',
+ 'credit_deposit' => '',
+ 'credit_filter' => '',
+ 'current_table' => '',
+ 'customer' => '',
+ 'customer_address' => '',
+ 'customer_discount' => '',
+ 'customer_email' => '',
+ 'customer_location' => '',
+ 'customer_mailchimp_status' => '',
+ 'customer_optional' => '',
+ 'customer_required' => '',
+ 'customer_total' => '',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => '',
+ 'daily_sales' => '',
+ 'date' => '',
+ 'date_range' => '',
+ 'date_required' => '',
+ 'date_type' => '',
+ 'debit' => '',
+ 'debit_filter' => '',
+ 'delete' => '',
+ 'delete_confirmation' => '',
+ 'delete_entire_sale' => '',
+ 'delete_successful' => '',
+ 'delete_unsuccessful' => '',
+ 'description_abbrv' => '',
+ 'discard' => '',
+ 'discard_quote' => '',
+ 'discount' => '',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '',
+ 'due' => '',
+ 'due_filter' => '',
+ 'edit' => '',
+ 'edit_item' => '',
+ 'edit_sale' => '',
+ 'email_receipt' => '',
+ 'employee' => '',
+ 'entry' => '',
+ 'error_editing_item' => '',
+ 'find_or_scan_item' => '',
+ 'find_or_scan_item_or_receipt' => '',
+ 'giftcard' => '',
+ 'giftcard_balance' => '',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => '',
+ 'group_by_category' => '',
+ 'group_by_type' => '',
+ 'hsn' => '',
+ 'id' => '',
+ 'include_prices' => '',
+ 'invoice' => '',
+ 'invoice_confirm' => '',
+ 'invoice_enable' => '',
+ 'invoice_filter' => '',
+ 'invoice_no_email' => '',
+ 'invoice_number' => '',
+ 'invoice_number_duplicate' => '',
+ 'invoice_sent' => '',
+ 'invoice_total' => '',
+ 'invoice_type_custom_invoice' => '',
+ 'invoice_type_custom_tax_invoice' => '',
+ 'invoice_type_invoice' => '',
+ 'invoice_type_tax_invoice' => '',
+ 'invoice_unsent' => '',
+ 'invoice_update' => '',
+ 'item_insufficient_of_stock' => '',
+ 'item_name' => '',
+ 'item_number' => '',
+ 'item_out_of_stock' => '',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => '',
+ 'must_enter_numeric' => '',
+ 'must_enter_numeric_giftcard' => '',
+ 'must_enter_reference_code' => 'حوالہ/بازیابی نمبر درج کرنا ضروری ہے۔',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => '',
+ 'new_item' => '',
+ 'no_description' => '',
+ 'no_filter' => '',
+ 'no_items_in_cart' => '',
+ 'no_sales_to_display' => '',
+ 'none_selected' => '',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => '',
+ 'one_or_multiple' => '',
+ 'payment' => '',
+ 'payment_amount' => '',
+ 'payment_not_cover_total' => '',
+ 'payment_type' => '',
+ 'payments' => '',
+ 'payments_total' => '',
+ 'price' => '',
+ 'print_after_sale' => '',
+ 'quantity' => '',
+ 'quantity_less_than_reorder_level' => '',
+ 'quantity_less_than_zero' => '',
+ 'quantity_of_items' => '',
+ 'quote' => '',
+ 'quote_number' => '',
+ 'quote_number_duplicate' => '',
+ 'quote_sent' => '',
+ 'quote_unsent' => '',
+ 'receipt' => '',
+ 'receipt_no_email' => '',
+ 'receipt_number' => '',
+ 'receipt_sent' => '',
+ 'receipt_unsent' => '',
+ 'reference_code' => 'ادائیگی حوالہ کوڈ',
+ 'reference_code_invalid_characters' => 'حوالہ کوڈ میں صرف حروف اور اعداد ہونے چاہئیں۔',
+ 'reference_code_length_error' => 'حوالہ کوڈ کی لمبائی غلط ہے۔',
+ 'refund' => '',
+ 'register' => '',
+ 'remove_customer' => '',
+ 'remove_discount' => '',
+ 'return' => '',
+ 'rewards' => '',
+ 'rewards_balance' => '',
+ 'rewards_package' => '',
+ 'rewards_remaining_balance' => '',
+ 'sale' => '',
+ 'sale_by_invoice' => '',
+ 'sale_for_customer' => '',
+ 'sale_time' => '',
+ 'sales_tax' => '',
+ 'sales_total' => '',
+ 'select_customer' => '',
+ 'send_invoice' => '',
+ 'send_quote' => '',
+ 'send_receipt' => '',
+ 'send_work_order' => '',
+ 'serial' => '',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => '',
+ 'show_receipt' => '',
+ 'start_typing_customer_name' => '',
+ 'start_typing_item_name' => '',
+ 'stock' => '',
+ 'stock_location' => '',
+ 'sub_total' => '',
+ 'successfully_deleted' => '',
+ 'successfully_restored' => '',
+ 'successfully_suspended_sale' => '',
+ 'successfully_updated' => '',
+ 'suspend_sale' => '',
+ 'suspended_doc_id' => '',
+ 'suspended_sale_id' => '',
+ 'suspended_sales' => '',
+ 'table' => '',
+ 'takings' => '',
+ 'tax' => '',
+ 'tax_id' => '',
+ 'tax_invoice' => '',
+ 'tax_percent' => '',
+ 'taxed_ind' => '',
+ 'total' => '',
+ 'total_tax_exclusive' => '',
+ 'transaction_failed' => '',
+ 'unable_to_add_item' => '',
+ 'unsuccessfully_deleted' => '',
+ 'unsuccessfully_restored' => '',
+ 'unsuccessfully_suspended_sale' => '',
+ 'unsuccessfully_updated' => '',
+ 'unsuspend' => '',
+ 'unsuspend_and_delete' => '',
+ 'update' => '',
+ 'upi' => '',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => '',
+ 'work_order_number' => '',
+ 'work_order_number_duplicate' => '',
+ 'work_order_sent' => '',
+ 'work_order_unsent' => '',
];
diff --git a/app/Language/vi/Config.php b/app/Language/vi/Config.php
index 35f7b1acf..cb3678cad 100644
--- a/app/Language/vi/Config.php
+++ b/app/Language/vi/Config.php
@@ -1,332 +1,335 @@
"Địa chỉ công ty",
- "address_required" => "Trường địa chỉ công ty là bắt buộc.",
- "all_set" => "Mọi quyền đều được đặt chính xác!",
- "allow_duplicate_barcodes" => "Cho phép trùng Mã vạch",
- "apostrophe" => "dấu nháy đơn",
- "backup_button" => "Sao lưu",
- "backup_database" => "Sao lưu cơ sở dữ liệu",
- "barcode" => "Mã vạch",
- "barcode_company" => "Tên công ty",
- "barcode_configuration" => "Cấu hình Mã vạch",
- "barcode_content" => "Nội dung Mã vạch",
- "barcode_first_row" => "Dòng 1",
- "barcode_font" => "Phông chữ",
- "barcode_formats" => "Định dạng đầu vào",
- "barcode_generate_if_empty" => "Tự tạo mới nếu để trống.",
- "barcode_height" => "Cao (px)",
- "barcode_id" => "Tên/Mã hàng hóa",
- "barcode_info" => "Thông tin cấu hình Mã vạch",
- "barcode_layout" => "Bố cục Mã vạch",
- "barcode_name" => "Tên",
- "barcode_number" => "Mã vạch",
- "barcode_number_in_row" => "Số ở dòng",
- "barcode_page_cellspacing" => "Khoảng cách ô trang hiển thị.",
- "barcode_page_width" => "Chiều rộng trang hiển thị",
- "barcode_price" => "Giá",
- "barcode_second_row" => "Dòng 2",
- "barcode_third_row" => "Dòng 3",
- "barcode_tooltip" => "Cảnh báo: Tính năng này có thể là nguyên nhân làm trùng lặp hàng hóa khi nhập hay tạo. Đừng dùng nếu bạn không muốn trùng mã vạch.",
- "barcode_type" => "Kiểu Mã vạch",
- "barcode_width" => "Rộng (px)",
- "bottom" => "Đáy",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "Số chứ số sau dấy phẩy",
- "cash_decimals_tooltip" => "Nếu số lẻ thập phân của tiền mặt và tiền tệ là giống nhau thì sẽ không làm tròn.",
- "cash_rounding" => "Làm tròn số tiền",
- "category_dropdown" => "Hiển thị thể loại dạng hộp thả xuống",
- "center" => "Giữa",
- "change_apperance_tooltip" => "",
- "comma" => "dấu phẩy",
- "company" => "Tên công ty",
- "company_avatar" => "",
- "company_change_image" => "Đổi ảnh",
- "company_logo" => "Logo công ty",
- "company_remove_image" => "Gỡ bỏ ảnh",
- "company_required" => "Tên công ty là bắt buộc",
- "company_select_image" => "Chọn ảnh",
- "company_website_url" => "Website của công ty không hợp lệ (http://...).",
- "country_codes" => "Mã Nước",
- "country_codes_tooltip" => "Danh sách ngăn cách bằng dấu phẩy mã các nước cho tìm kiếm địa chỉ đề cử.",
- "currency_code" => "Mã tiền tệ",
- "currency_decimals" => "Số chữ số sau dấy phẩy",
- "currency_symbol" => "Ký hiệu tiền tệ",
- "current_employee_only" => "",
- "customer_reward" => "Điểm thưởng",
- "customer_reward_duplicate" => "Điểm thưởng phải duy nhất.",
- "customer_reward_enable" => "Cho phép thưởng cho khách hàng",
- "customer_reward_invalid_chars" => "Điểm thưởng không thể chứa '_'",
- "customer_reward_required" => "Điểm thưởng là trường bắt buộc",
- "customer_sales_tax_support" => "Hỗ trợ thuế bán hàng Khách hàng",
- "date_or_time_format" => "Bộ lọc ngày và giờ",
- "datetimeformat" => "Định dạng ngày và giờ",
- "decimal_point" => "Dấu thập phân",
- "default_barcode_font_size_number" => "Cỡ phông chữ Mã vạch mặc định phải là dạng số.",
- "default_barcode_font_size_required" => "Cỡ phông chữ Mã vạch mặc định là trường bắt buộc.",
- "default_barcode_height_number" => "Chiều cao Mã vạch mặc định phải là dạng số.",
- "default_barcode_height_required" => "Chiều cao Mã vạch mặc định là trường mặc định.",
- "default_barcode_num_in_row_number" => "Số Mã vạch trên một Hàng mặc định phải là dạng số.",
- "default_barcode_num_in_row_required" => "Số Mã vạch mặc định mỗi dòng tính bằng dòng là trường bắt buộc.",
- "default_barcode_page_cellspacing_number" => "Khoảng cách ô trang Mã vạch mặc định phải là dạng số.",
- "default_barcode_page_cellspacing_required" => "Khoảng cách ô trang Mã vạch mặc định là trường bắt buộc.",
- "default_barcode_page_width_number" => "Chiều rộng trang Mã vạch mặc định phải là dạng số.",
- "default_barcode_page_width_required" => "Chiều rộng trang Mã vạch mặc định là trường bắt buộc.",
- "default_barcode_width_number" => "Chiều rộng Mã vạch mặc định phải là dạng số.",
- "default_barcode_width_required" => "Chiều rộng Mã vạch mặc định là trường bắt buộc.",
- "default_item_columns" => "Mục hiển thị mặc định",
- "default_origin_tax_code" => "Mã thuế gốc mặc định",
- "default_receivings_discount" => "Giảm giá mặc định",
- "default_receivings_discount_number" => "Giảm giá mặc định phải là số.",
- "default_receivings_discount_required" => "Giảm giá mặc định là trường bắt buộc.",
- "default_sales_discount" => "Giảm giá bán hàng mặc định",
- "default_sales_discount_number" => "Giảm giá bán hàng mặc định phải là dạng số.",
- "default_sales_discount_required" => "Trường Giảm giá bán hàng mặc định là bắt buộc.",
- "default_tax_category" => "Danh mục thuế mặc định",
- "default_tax_code" => "Mã số thuế mặc định",
- "default_tax_jurisdiction" => "Thẩm quyền thuế mặc định",
- "default_tax_name_number" => "Tên Thuế mặc định phải ở dạng chuỗi văn bản.",
- "default_tax_name_required" => "Trường tên Thuế mặc định là bắt buộc.",
- "default_tax_rate" => "Tỷ lệ thuế mặc định %",
- "default_tax_rate_1" => "Tỷ lệ thuế 1",
- "default_tax_rate_2" => "Tỷ lệ thuế 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "Tỷ lệ thuế mặc định phải là dạng số.",
- "default_tax_rate_required" => "Trường Tỷ lệ thuế mặc định là bắt buộc.",
- "derive_sale_quantity" => "Cho phép suy luận số lượng bán hàng",
- "derive_sale_quantity_tooltip" => "Nếu chọn thì một kiểu hàng hóa mới sẽ được cung cấp cho đặt hàng hàng hóa theo tổng số mở rộng",
- "dinner_table" => "Bàn ăn",
- "dinner_table_duplicate" => "Bàn phải duy nhất.",
- "dinner_table_enable" => "Sử dụng bàn ăn",
- "dinner_table_invalid_chars" => "Tên bàn ăn không được chứa '_'.",
- "dinner_table_required" => "Trường bàn ăn là bắt buộc.",
- "dot" => "dấu chấm",
- "email" => "Thư điện tử",
- "email_configuration" => "Cấu hình Thư điện tử",
- "email_mailpath" => "Đường dẫn đến Sendmail",
- "email_protocol" => "Giao thức",
- "email_receipt_check_behaviour" => "Dấu kiểm biên lai thư điện tử",
- "email_receipt_check_behaviour_always" => "Luôn đánh dấu kiểm",
- "email_receipt_check_behaviour_last" => "Nhớ lựa chọn cuối cùng",
- "email_receipt_check_behaviour_never" => "Luôn không đánh dấu kiểm",
- "email_smtp_crypto" => "Mã hóa SMTP",
- "email_smtp_host" => "Máy phục vụ SMTP",
- "email_smtp_pass" => "Mật khẩu SMTP",
- "email_smtp_port" => "Cổng SMTP",
- "email_smtp_timeout" => "Chờ tối đa SMTP",
- "email_smtp_user" => "Tài khoản SMTP",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "Chính sách bắt buộc",
- "enforce_privacy_tooltip" => "Bảo vệ riêng tư khách hàng bắt buộc xáo trộn dữ liệu trong trường hợp dữ liệu của họ đang bị xóa",
- "fax" => "Fax",
- "file_perm" => "Có một số vấn đề với phân quyền tập tin vui lòng sửa và tải lại trang này.",
- "financial_year" => "Ngày đầu năm tài chính",
- "financial_year_apr" => "1 tháng tư",
- "financial_year_aug" => "1 tháng tám",
- "financial_year_dec" => "1 tháng mười hai",
- "financial_year_feb" => "1 tháng hai",
- "financial_year_jan" => "1 tháng giêng",
- "financial_year_jul" => "1 tháng bảy",
- "financial_year_jun" => "1 tháng sáu",
- "financial_year_mar" => "1 tháng ba",
- "financial_year_may" => "1 tháng năm",
- "financial_year_nov" => "1 tháng mười một",
- "financial_year_oct" => "1 tháng mười",
- "financial_year_sep" => "1 tháng chín",
- "floating_labels" => "",
- "gcaptcha_enable" => "reCAPTCHA cho trang đăng nhập",
- "gcaptcha_secret_key" => "Khóa bí mật reCAPTCHA",
- "gcaptcha_secret_key_required" => "Khóa bí mật reCAPTCHA là trường bắt buộc",
- "gcaptcha_site_key" => "Khóa trang reCAPTCHA",
- "gcaptcha_site_key_required" => "Khóa trang reCAPTCHA là trường bắt buộc",
- "gcaptcha_tooltip" => "Bảo vệ trang đăng nhập bằng Google reCAPTCHA, bấm vào biểu tượng cho một cặp khóa API.",
- "general" => "Chung",
- "general_configuration" => "Thông tin chung",
- "giftcard_number" => "Số Thẻ quà tặng",
- "giftcard_random" => "Tạo ngẫu nhiên",
- "giftcard_series" => "Tạo dạng nối tiếp nhau",
- "image_allowed_file_types" => "Các kiểu tập tin được phép",
- "image_max_height_tooltip" => "Chiều cao ảnh tải lên tối đa được phép tính bằng điểm ảnh (px).",
- "image_max_size_tooltip" => "Kích cỡ tập tin ảnh tải lên tối đa được phép tính bằng kilobytes (kb).",
- "image_max_width_tooltip" => "Chiều rộng ảnh tải lên tối đa được phép tính bằng điểm ảnh (px).",
- "image_restrictions" => "Hạn chế tải ảnh lên",
- "include_hsn" => "Bao gồm hỗ trợ cho mã HSN",
- "info" => "Thông tin",
- "info_configuration" => "Thông tin cửa hàng",
- "input_groups" => "",
- "integrations" => "Tích hợp",
- "integrations_configuration" => "Tích hợp bên thứ ba",
- "invoice" => "Hóa đơn",
- "invoice_configuration" => "Cài đặt in hóa đơn",
- "invoice_default_comments" => "Ghi chú mặc định cho hóa đơn",
- "invoice_email_message" => "Mẫu hóa đơn khi gửi thư",
- "invoice_enable" => "Bật Hóa đơn",
- "invoice_printer" => "Máy in hóa đơn",
- "invoice_type" => "Loại hóa đơn",
- "is_readable" => "là đọc được, nhưng quyền hạn được đặt chưa đúng. Vui lòng đặt nó thành 640 hoặc 660 sau đó tải lại.",
- "is_writable" => "là ghi được, nhưng quyền hạn được đặt chưa đúng. Vui lòng đặt nó thành 750 sau đó tải lại.",
- "item_markup" => "",
- "jsprintsetup_required" => "Cảnh báo: Tính năng này chỉ làm việc nếu bạn đã cài đặt ứng dụng bổ xung jsPrintSetup cho FireFox. Cứ lưu chứ?",
- "language" => "Ngôn ngữ",
- "last_used_invoice_number" => "Số hóa đơn dùng lần cuối",
- "last_used_quote_number" => "Số báo giá dùng lần cuối",
- "last_used_work_order_number" => "Số W/O dùng lần cuối",
- "left" => "Trái",
- "license" => "Giấy phép",
- "license_configuration" => "Điều khoản của giấy phép",
- "line_sequence" => "Xếp dòng theo",
- "lines_per_page" => "Dòng trên mỗi trang",
- "lines_per_page_number" => "Dòng trên mỗi trang phải là dạng số.",
- "lines_per_page_required" => "Dòng trên mỗi trang là trường bắt buộc.",
- "locale" => "Định dạng",
- "locale_configuration" => "Cấu hình Bản địa hóa",
- "locale_info" => "Thông tin Cấu hình Bản địa hóa",
- "location" => "Kho",
- "location_configuration" => "Vị trí kho",
- "location_info" => "Thông tin cấu hình vị trí",
- "login_form" => "",
- "logout" => "Bạn có muốn sao lưu dự phòng trước khi đăng xuất ra không? Bấm chuột vào [OK] để sao lưu hoặc [Cancel] để đăng xuất.",
- "mailchimp" => "Mailchimp",
- "mailchimp_api_key" => "Khóa API Mailchimp",
- "mailchimp_configuration" => "Cấu hình Mailchimp",
- "mailchimp_key_successfully" => "API Key hợp lệ.",
- "mailchimp_key_unsuccessfully" => "API Key không hợp lệ.",
- "mailchimp_lists" => "Bó thư Mailchimp",
- "mailchimp_tooltip" => "Bấm vào biểu tượng để lấy khóa API.",
- "message" => "Nhắn tin",
- "message_configuration" => "Cấu hình nhắn tin",
- "msg_msg" => "Tin nhắn văn bản đã lưu",
- "msg_msg_placeholder" => "Nếu bạn muốn dùng một mẫu thì lưu lại các tin nhắn SMS ở đây, nếu không thì để trống.",
- "msg_pwd" => "Mật khẩu SMS-API",
- "msg_pwd_required" => "Mật khẩu SMS-API là trường bắt buộc",
- "msg_src" => "Mã số bộ gửi SMS-API",
- "msg_src_required" => "Mã số bộ gửi SMS-API là trường bắt buộc",
- "msg_uid" => "Tài khoản SMS-API",
- "msg_uid_required" => "Tài khoản SMS-API là trường bắt buộc",
- "multi_pack_enabled" => "Nhiều gói cho mỗi mục",
- "no_risk" => "Không tiềm ẩn rủi ro / bảo mật nào.",
- "none" => "không",
- "notify_alignment" => "Vị trí của thông báo nổi lên",
- "number_format" => "Định dạng số",
- "number_locale" => "Định dạng số",
- "number_locale_invalid" => "Vị trí đã nhập không hợp lệ. Kiểm tra liên kết trong tooltip để tìm vị trí hợp lệ.",
- "number_locale_required" => "Vị trí số là trường bắt buộc.",
- "number_locale_tooltip" => "Tìm vị trí phù hợp thông qua liên kết này.",
- "os_timezone" => "Múi giờ OSPOS:",
- "ospos_info" => "Thông tin cài đặt OSPOS",
- "payment_options_order" => "Thứ tự tùy chọn thanh toán",
- "perm_risk" => "Phân quyền không đúng khiến phần mềm tiềm ẩn rủi ro.",
- "phone" => "Điện thoại công ty",
- "phone_required" => "Trường Điện thoại công ty là bắt buộc.",
- "print_bottom_margin" => "Lề dưới",
- "print_bottom_margin_number" => "Lề dưới phải là dạng số.",
- "print_bottom_margin_required" => "Trường Lề dưới là bắt buộc.",
- "print_delay_autoreturn" => "Tự động trả về trễ bán hàng",
- "print_delay_autoreturn_number" => "Tự động trả về trễ bán hàng là trường bắt buộc.",
- "print_delay_autoreturn_required" => "Tự động trả về trễ bán hàng phải là dạng số.",
- "print_footer" => "In phần chân trình duyệt",
- "print_header" => "In phần đầu trình duyệt",
- "print_left_margin" => "Lề trái",
- "print_left_margin_number" => "Lề trái phải ở dạng số.",
- "print_left_margin_required" => "Trường Lề trái là bắt buộc.",
- "print_receipt_check_behaviour" => "In dấu kiểm biên lai",
- "print_receipt_check_behaviour_always" => "Luôn đánh dấu kiểm",
- "print_receipt_check_behaviour_last" => "Nhớ lựa chọn cuối cùng",
- "print_receipt_check_behaviour_never" => "Luôn không đánh dấu kiểm",
- "print_right_margin" => "Lề phải",
- "print_right_margin_number" => "Lề trên phải ở dạng số.",
- "print_right_margin_required" => "Trường Lề trên là bắt buộc.",
- "print_silently" => "Hiển thị hộp thoại In",
- "print_top_margin" => "Lề trên",
- "print_top_margin_number" => "Lề trên phải ở dạng số.",
- "print_top_margin_required" => "Trường Lề trên là bắt buộc.",
- "quantity_decimals" => "Số lượng dấu thập phân",
- "quick_cash_enable" => "",
- "quote_default_comments" => "Ghi chú báo giá mặc định",
- "receipt" => "Biên lai",
- "receipt_category" => "",
- "receipt_configuration" => "Cài đặt in biên lai",
- "receipt_default" => "Mặc định",
- "receipt_font_size" => "Cỡ chữ",
- "receipt_font_size_number" => "Cỡ chữ phải là dạng số.",
- "receipt_font_size_required" => "Trường Cỡ chữ là bắt buộc.",
- "receipt_info" => "Thông tin cấu hình Biên lai",
- "receipt_printer" => "In vé",
- "receipt_short" => "Ngắn",
- "receipt_show_company_name" => "Hiển thị tên công ty",
- "receipt_show_description" => "Hiện mô tả",
- "receipt_show_serialnumber" => "Hiển thị số Sê-ri",
- "receipt_show_tax_ind" => "Hiển thị chỉ thị thuế",
- "receipt_show_taxes" => "Hiển thị Thuế",
- "receipt_show_total_discount" => "Hiển thị Giảm giá tổng cộng",
- "receipt_template" => "Mẫu biên lai",
- "receiving_calculate_average_price" => "Tính giá tb (Nhập hàng)",
- "recv_invoice_format" => "Định dạng hóa đơn nhận hàng",
- "register_mode_default" => "Chế độ Đăng ký mặc định",
- "report_an_issue" => "Báo cáo trục trặc",
- "return_policy_required" => "Trường Chính sách trả hàng là bắt buộc.",
- "reward" => "Điểm thưởng",
- "reward_configuration" => "Cấu hình Điểm thưởng",
- "right" => "Phải",
- "sales_invoice_format" => "Định dạng Hóa đơn bán hàng",
- "sales_quote_format" => "Định dạng Báo giá bán hàng",
- "mailpath_invalid" => "",
- "saved_successfully" => "Cấu hình được lưu thành công.",
- "saved_unsuccessfully" => "Gặp lỗi khi lưu cấu hình.",
- "security_issue" => "Cảnh báo về lỗ hổng bảo mật",
- "server_notice" => "Vui lòng sử dụng các thông tin phía dưới để báo cáo lỗi.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "Hiển thị biểu tượng Văn phòng",
- "statistics" => "Gửi thống kê",
- "statistics_tooltip" => "Gửi thống kê cho nhà phát triển và mục đích cải tiến tính năng.",
- "stock_location" => "Vị trí kho",
- "stock_location_duplicate" => "Vị trí kho phải là duy nhất.",
- "stock_location_invalid_chars" => "Vị trí kho không được chứa '_'.",
- "stock_location_required" => "Trường Vị trí kho là bắt buộc.",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "Cột 1",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "Bố cục gợi ý tìm kiếm",
- "suggestions_second_column" => "Cột 2",
- "suggestions_third_column" => "Cột 3",
- "system_conf" => "Cài đặt & Cấu hình",
- "system_info" => "System Info",
- "table" => "Bàn ăn",
- "table_configuration" => "Cấu hình bàn ăn",
- "takings_printer" => "In Biên lai",
- "tax" => "Thuế",
- "tax_category" => "Thể loại thuế",
- "tax_category_duplicate" => "Thể loại thuế vừa nhập đã sẵn có.",
- "tax_category_invalid_chars" => "Thể loại thuế vừa nhập không hợp lệ.",
- "tax_category_required" => "Thể loại thuế là bắt buộc.",
- "tax_category_used" => "Không thể xóa Thể loại thuế bởi vì nó đang được dùng.",
- "tax_configuration" => "Cấu hình Thuế",
- "tax_decimals" => "Phần thập phân Thế",
- "tax_id" => "Mã số thuế",
- "tax_included" => "Gồm thuế",
- "theme" => "Giao diện",
- "theme_preview" => "",
- "thousands_separator" => "Dấu ngăn cách phần nghìn",
- "timezone" => "Múi giờ",
- "timezone_error" => "Múi giờ OSPOS khác với múi giờ trên máy của bạn.",
- "top" => "Đỉnh",
- "use_destination_based_tax" => "Sử dụng thuế dựa trên điểm đến",
- "user_timezone" => "Múi giờ trên máy nội bộ:",
- "website" => "Website",
- "wholesale_markup" => "",
- "work_order_enable" => "Hỗ trợ giao việc",
- "work_order_format" => "Định dạng giấy giao việc",
+ 'address' => 'Địa chỉ công ty',
+ 'address_required' => 'Trường địa chỉ công ty là bắt buộc.',
+ 'all_set' => 'Mọi quyền đều được đặt chính xác!',
+ 'allow_duplicate_barcodes' => 'Cho phép trùng Mã vạch',
+ 'apostrophe' => 'dấu nháy đơn',
+ 'backup_button' => 'Sao lưu',
+ 'backup_database' => 'Sao lưu cơ sở dữ liệu',
+ 'barcode' => 'Mã vạch',
+ 'barcode_company' => 'Tên công ty',
+ 'barcode_configuration' => 'Cấu hình Mã vạch',
+ 'barcode_content' => 'Nội dung Mã vạch',
+ 'barcode_first_row' => 'Dòng 1',
+ 'barcode_font' => 'Phông chữ',
+ 'barcode_formats' => 'Định dạng đầu vào',
+ 'barcode_generate_if_empty' => 'Tự tạo mới nếu để trống.',
+ 'barcode_height' => 'Cao (px)',
+ 'barcode_id' => 'Tên/Mã hàng hóa',
+ 'barcode_info' => 'Thông tin cấu hình Mã vạch',
+ 'barcode_layout' => 'Bố cục Mã vạch',
+ 'barcode_name' => 'Tên',
+ 'barcode_number' => 'Mã vạch',
+ 'barcode_number_in_row' => 'Số ở dòng',
+ 'barcode_page_cellspacing' => 'Khoảng cách ô trang hiển thị.',
+ 'barcode_page_width' => 'Chiều rộng trang hiển thị',
+ 'barcode_price' => 'Giá',
+ 'barcode_second_row' => 'Dòng 2',
+ 'barcode_third_row' => 'Dòng 3',
+ 'barcode_tooltip' => 'Cảnh báo: Tính năng này có thể là nguyên nhân làm trùng lặp hàng hóa khi nhập hay tạo. Đừng dùng nếu bạn không muốn trùng mã vạch.',
+ 'barcode_type' => 'Kiểu Mã vạch',
+ 'barcode_width' => 'Rộng (px)',
+ 'bottom' => 'Đáy',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => 'Số chứ số sau dấy phẩy',
+ 'cash_decimals_tooltip' => 'Nếu số lẻ thập phân của tiền mặt và tiền tệ là giống nhau thì sẽ không làm tròn.',
+ 'cash_rounding' => 'Làm tròn số tiền',
+ 'category_dropdown' => 'Hiển thị thể loại dạng hộp thả xuống',
+ 'center' => 'Giữa',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'dấu phẩy',
+ 'company' => 'Tên công ty',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Đổi ảnh',
+ 'company_logo' => 'Logo công ty',
+ 'company_remove_image' => 'Gỡ bỏ ảnh',
+ 'company_required' => 'Tên công ty là bắt buộc',
+ 'company_select_image' => 'Chọn ảnh',
+ 'company_website_url' => 'Website của công ty không hợp lệ (http://...).',
+ 'country_codes' => 'Mã Nước',
+ 'country_codes_tooltip' => 'Danh sách ngăn cách bằng dấu phẩy mã các nước cho tìm kiếm địa chỉ đề cử.',
+ 'currency_code' => 'Mã tiền tệ',
+ 'currency_decimals' => 'Số chữ số sau dấy phẩy',
+ 'currency_symbol' => 'Ký hiệu tiền tệ',
+ 'current_employee_only' => '',
+ 'customer_reward' => 'Điểm thưởng',
+ 'customer_reward_duplicate' => 'Điểm thưởng phải duy nhất.',
+ 'customer_reward_enable' => 'Cho phép thưởng cho khách hàng',
+ 'customer_reward_invalid_chars' => "Điểm thưởng không thể chứa '_'",
+ 'customer_reward_required' => 'Điểm thưởng là trường bắt buộc',
+ 'customer_sales_tax_support' => 'Hỗ trợ thuế bán hàng Khách hàng',
+ 'date_or_time_format' => 'Bộ lọc ngày và giờ',
+ 'datetimeformat' => 'Định dạng ngày và giờ',
+ 'decimal_point' => 'Dấu thập phân',
+ 'default_barcode_font_size_number' => 'Cỡ phông chữ Mã vạch mặc định phải là dạng số.',
+ 'default_barcode_font_size_required' => 'Cỡ phông chữ Mã vạch mặc định là trường bắt buộc.',
+ 'default_barcode_height_number' => 'Chiều cao Mã vạch mặc định phải là dạng số.',
+ 'default_barcode_height_required' => 'Chiều cao Mã vạch mặc định là trường mặc định.',
+ 'default_barcode_num_in_row_number' => 'Số Mã vạch trên một Hàng mặc định phải là dạng số.',
+ 'default_barcode_num_in_row_required' => 'Số Mã vạch mặc định mỗi dòng tính bằng dòng là trường bắt buộc.',
+ 'default_barcode_page_cellspacing_number' => 'Khoảng cách ô trang Mã vạch mặc định phải là dạng số.',
+ 'default_barcode_page_cellspacing_required' => 'Khoảng cách ô trang Mã vạch mặc định là trường bắt buộc.',
+ 'default_barcode_page_width_number' => 'Chiều rộng trang Mã vạch mặc định phải là dạng số.',
+ 'default_barcode_page_width_required' => 'Chiều rộng trang Mã vạch mặc định là trường bắt buộc.',
+ 'default_barcode_width_number' => 'Chiều rộng Mã vạch mặc định phải là dạng số.',
+ 'default_barcode_width_required' => 'Chiều rộng Mã vạch mặc định là trường bắt buộc.',
+ 'default_item_columns' => 'Mục hiển thị mặc định',
+ 'default_origin_tax_code' => 'Mã thuế gốc mặc định',
+ 'default_receivings_discount' => 'Giảm giá mặc định',
+ 'default_receivings_discount_number' => 'Giảm giá mặc định phải là số.',
+ 'default_receivings_discount_required' => 'Giảm giá mặc định là trường bắt buộc.',
+ 'default_sales_discount' => 'Giảm giá bán hàng mặc định',
+ 'default_sales_discount_number' => 'Giảm giá bán hàng mặc định phải là dạng số.',
+ 'default_sales_discount_required' => 'Trường Giảm giá bán hàng mặc định là bắt buộc.',
+ 'default_tax_category' => 'Danh mục thuế mặc định',
+ 'default_tax_code' => 'Mã số thuế mặc định',
+ 'default_tax_jurisdiction' => 'Thẩm quyền thuế mặc định',
+ 'default_tax_name_number' => 'Tên Thuế mặc định phải ở dạng chuỗi văn bản.',
+ 'default_tax_name_required' => 'Trường tên Thuế mặc định là bắt buộc.',
+ 'default_tax_rate' => 'Tỷ lệ thuế mặc định %',
+ 'default_tax_rate_1' => 'Tỷ lệ thuế 1',
+ 'default_tax_rate_2' => 'Tỷ lệ thuế 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => 'Tỷ lệ thuế mặc định phải là dạng số.',
+ 'default_tax_rate_required' => 'Trường Tỷ lệ thuế mặc định là bắt buộc.',
+ 'derive_sale_quantity' => 'Cho phép suy luận số lượng bán hàng',
+ 'derive_sale_quantity_tooltip' => 'Nếu chọn thì một kiểu hàng hóa mới sẽ được cung cấp cho đặt hàng hàng hóa theo tổng số mở rộng',
+ 'dinner_table' => 'Bàn ăn',
+ 'dinner_table_duplicate' => 'Bàn phải duy nhất.',
+ 'dinner_table_enable' => 'Sử dụng bàn ăn',
+ 'dinner_table_invalid_chars' => "Tên bàn ăn không được chứa '_'.",
+ 'dinner_table_required' => 'Trường bàn ăn là bắt buộc.',
+ 'dot' => 'dấu chấm',
+ 'email' => 'Thư điện tử',
+ 'email_configuration' => 'Cấu hình Thư điện tử',
+ 'email_mailpath' => 'Đường dẫn đến Sendmail',
+ 'email_protocol' => 'Giao thức',
+ 'email_receipt_check_behaviour' => 'Dấu kiểm biên lai thư điện tử',
+ 'email_receipt_check_behaviour_always' => 'Luôn đánh dấu kiểm',
+ 'email_receipt_check_behaviour_last' => 'Nhớ lựa chọn cuối cùng',
+ 'email_receipt_check_behaviour_never' => 'Luôn không đánh dấu kiểm',
+ 'email_smtp_crypto' => 'Mã hóa SMTP',
+ 'email_smtp_host' => 'Máy phục vụ SMTP',
+ 'email_smtp_pass' => 'Mật khẩu SMTP',
+ 'email_smtp_port' => 'Cổng SMTP',
+ 'email_smtp_timeout' => 'Chờ tối đa SMTP',
+ 'email_smtp_user' => 'Tài khoản SMTP',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => 'Chính sách bắt buộc',
+ 'enforce_privacy_tooltip' => 'Bảo vệ riêng tư khách hàng bắt buộc xáo trộn dữ liệu trong trường hợp dữ liệu của họ đang bị xóa',
+ 'fax' => 'Fax',
+ 'file_perm' => 'Có một số vấn đề với phân quyền tập tin vui lòng sửa và tải lại trang này.',
+ 'financial_year' => 'Ngày đầu năm tài chính',
+ 'financial_year_apr' => '1 tháng tư',
+ 'financial_year_aug' => '1 tháng tám',
+ 'financial_year_dec' => '1 tháng mười hai',
+ 'financial_year_feb' => '1 tháng hai',
+ 'financial_year_jan' => '1 tháng giêng',
+ 'financial_year_jul' => '1 tháng bảy',
+ 'financial_year_jun' => '1 tháng sáu',
+ 'financial_year_mar' => '1 tháng ba',
+ 'financial_year_may' => '1 tháng năm',
+ 'financial_year_nov' => '1 tháng mười một',
+ 'financial_year_oct' => '1 tháng mười',
+ 'financial_year_sep' => '1 tháng chín',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => 'reCAPTCHA cho trang đăng nhập',
+ 'gcaptcha_secret_key' => 'Khóa bí mật reCAPTCHA',
+ 'gcaptcha_secret_key_required' => 'Khóa bí mật reCAPTCHA là trường bắt buộc',
+ 'gcaptcha_site_key' => 'Khóa trang reCAPTCHA',
+ 'gcaptcha_site_key_required' => 'Khóa trang reCAPTCHA là trường bắt buộc',
+ 'gcaptcha_tooltip' => 'Bảo vệ trang đăng nhập bằng Google reCAPTCHA, bấm vào biểu tượng cho một cặp khóa API.',
+ 'general' => 'Chung',
+ 'general_configuration' => 'Thông tin chung',
+ 'giftcard_number' => 'Số Thẻ quà tặng',
+ 'giftcard_random' => 'Tạo ngẫu nhiên',
+ 'giftcard_series' => 'Tạo dạng nối tiếp nhau',
+ 'image_allowed_file_types' => 'Các kiểu tập tin được phép',
+ 'image_max_height_tooltip' => 'Chiều cao ảnh tải lên tối đa được phép tính bằng điểm ảnh (px).',
+ 'image_max_size_tooltip' => 'Kích cỡ tập tin ảnh tải lên tối đa được phép tính bằng kilobytes (kb).',
+ 'image_max_width_tooltip' => 'Chiều rộng ảnh tải lên tối đa được phép tính bằng điểm ảnh (px).',
+ 'image_restrictions' => 'Hạn chế tải ảnh lên',
+ 'include_hsn' => 'Bao gồm hỗ trợ cho mã HSN',
+ 'info' => 'Thông tin',
+ 'info_configuration' => 'Thông tin cửa hàng',
+ 'input_groups' => '',
+ 'integrations' => 'Tích hợp',
+ 'integrations_configuration' => 'Tích hợp bên thứ ba',
+ 'invoice' => 'Hóa đơn',
+ 'invoice_configuration' => 'Cài đặt in hóa đơn',
+ 'invoice_default_comments' => 'Ghi chú mặc định cho hóa đơn',
+ 'invoice_email_message' => 'Mẫu hóa đơn khi gửi thư',
+ 'invoice_enable' => 'Bật Hóa đơn',
+ 'invoice_printer' => 'Máy in hóa đơn',
+ 'invoice_type' => 'Loại hóa đơn',
+ 'is_readable' => 'là đọc được, nhưng quyền hạn được đặt chưa đúng. Vui lòng đặt nó thành 640 hoặc 660 sau đó tải lại.',
+ 'is_writable' => 'là ghi được, nhưng quyền hạn được đặt chưa đúng. Vui lòng đặt nó thành 750 sau đó tải lại.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Cảnh báo: Tính năng này chỉ làm việc nếu bạn đã cài đặt ứng dụng bổ xung jsPrintSetup cho FireFox. Cứ lưu chứ?',
+ 'language' => 'Ngôn ngữ',
+ 'last_used_invoice_number' => 'Số hóa đơn dùng lần cuối',
+ 'last_used_quote_number' => 'Số báo giá dùng lần cuối',
+ 'last_used_work_order_number' => 'Số W/O dùng lần cuối',
+ 'left' => 'Trái',
+ 'license' => 'Giấy phép',
+ 'license_configuration' => 'Điều khoản của giấy phép',
+ 'line_sequence' => 'Xếp dòng theo',
+ 'lines_per_page' => 'Dòng trên mỗi trang',
+ 'lines_per_page_number' => 'Dòng trên mỗi trang phải là dạng số.',
+ 'lines_per_page_required' => 'Dòng trên mỗi trang là trường bắt buộc.',
+ 'locale' => 'Định dạng',
+ 'locale_configuration' => 'Cấu hình Bản địa hóa',
+ 'locale_info' => 'Thông tin Cấu hình Bản địa hóa',
+ 'location' => 'Kho',
+ 'location_configuration' => 'Vị trí kho',
+ 'location_info' => 'Thông tin cấu hình vị trí',
+ 'login_form' => '',
+ 'logout' => 'Bạn có muốn sao lưu dự phòng trước khi đăng xuất ra không? Bấm chuột vào [OK] để sao lưu hoặc [Cancel] để đăng xuất.',
+ 'mailchimp' => 'Mailchimp',
+ 'mailchimp_api_key' => 'Khóa API Mailchimp',
+ 'mailchimp_configuration' => 'Cấu hình Mailchimp',
+ 'mailchimp_key_successfully' => 'API Key hợp lệ.',
+ 'mailchimp_key_unsuccessfully' => 'API Key không hợp lệ.',
+ 'mailchimp_lists' => 'Bó thư Mailchimp',
+ 'mailchimp_tooltip' => 'Bấm vào biểu tượng để lấy khóa API.',
+ 'message' => 'Nhắn tin',
+ 'message_configuration' => 'Cấu hình nhắn tin',
+ 'msg_msg' => 'Tin nhắn văn bản đã lưu',
+ 'msg_msg_placeholder' => 'Nếu bạn muốn dùng một mẫu thì lưu lại các tin nhắn SMS ở đây, nếu không thì để trống.',
+ 'msg_pwd' => 'Mật khẩu SMS-API',
+ 'msg_pwd_required' => 'Mật khẩu SMS-API là trường bắt buộc',
+ 'msg_src' => 'Mã số bộ gửi SMS-API',
+ 'msg_src_required' => 'Mã số bộ gửi SMS-API là trường bắt buộc',
+ 'msg_uid' => 'Tài khoản SMS-API',
+ 'msg_uid_required' => 'Tài khoản SMS-API là trường bắt buộc',
+ 'multi_pack_enabled' => 'Nhiều gói cho mỗi mục',
+ 'no_risk' => 'Không tiềm ẩn rủi ro / bảo mật nào.',
+ 'none' => 'không',
+ 'notify_alignment' => 'Vị trí của thông báo nổi lên',
+ 'number_format' => 'Định dạng số',
+ 'number_locale' => 'Định dạng số',
+ 'number_locale_invalid' => 'Vị trí đã nhập không hợp lệ. Kiểm tra liên kết trong tooltip để tìm vị trí hợp lệ.',
+ 'number_locale_required' => 'Vị trí số là trường bắt buộc.',
+ 'number_locale_tooltip' => 'Tìm vị trí phù hợp thông qua liên kết này.',
+ 'os_timezone' => 'Múi giờ OSPOS:',
+ 'ospos_info' => 'Thông tin cài đặt OSPOS',
+ 'payment_options_order' => 'Thứ tự tùy chọn thanh toán',
+ 'payment_reference_code_length_limits' => 'Mã tham chiếu thanh toán
Giới hạn độ dài',
+ 'payment_reference_code_length_max_label' => 'Tối đa',
+ 'payment_reference_code_length_min_label' => 'Tối thiểu',
+ 'perm_risk' => 'Phân quyền không đúng khiến phần mềm tiềm ẩn rủi ro.',
+ 'phone' => 'Điện thoại công ty',
+ 'phone_required' => 'Trường Điện thoại công ty là bắt buộc.',
+ 'print_bottom_margin' => 'Lề dưới',
+ 'print_bottom_margin_number' => 'Lề dưới phải là dạng số.',
+ 'print_bottom_margin_required' => 'Trường Lề dưới là bắt buộc.',
+ 'print_delay_autoreturn' => 'Tự động trả về trễ bán hàng',
+ 'print_delay_autoreturn_number' => 'Tự động trả về trễ bán hàng là trường bắt buộc.',
+ 'print_delay_autoreturn_required' => 'Tự động trả về trễ bán hàng phải là dạng số.',
+ 'print_footer' => 'In phần chân trình duyệt',
+ 'print_header' => 'In phần đầu trình duyệt',
+ 'print_left_margin' => 'Lề trái',
+ 'print_left_margin_number' => 'Lề trái phải ở dạng số.',
+ 'print_left_margin_required' => 'Trường Lề trái là bắt buộc.',
+ 'print_receipt_check_behaviour' => 'In dấu kiểm biên lai',
+ 'print_receipt_check_behaviour_always' => 'Luôn đánh dấu kiểm',
+ 'print_receipt_check_behaviour_last' => 'Nhớ lựa chọn cuối cùng',
+ 'print_receipt_check_behaviour_never' => 'Luôn không đánh dấu kiểm',
+ 'print_right_margin' => 'Lề phải',
+ 'print_right_margin_number' => 'Lề trên phải ở dạng số.',
+ 'print_right_margin_required' => 'Trường Lề trên là bắt buộc.',
+ 'print_silently' => 'Hiển thị hộp thoại In',
+ 'print_top_margin' => 'Lề trên',
+ 'print_top_margin_number' => 'Lề trên phải ở dạng số.',
+ 'print_top_margin_required' => 'Trường Lề trên là bắt buộc.',
+ 'quantity_decimals' => 'Số lượng dấu thập phân',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => 'Ghi chú báo giá mặc định',
+ 'receipt' => 'Biên lai',
+ 'receipt_category' => '',
+ 'receipt_configuration' => 'Cài đặt in biên lai',
+ 'receipt_default' => 'Mặc định',
+ 'receipt_font_size' => 'Cỡ chữ',
+ 'receipt_font_size_number' => 'Cỡ chữ phải là dạng số.',
+ 'receipt_font_size_required' => 'Trường Cỡ chữ là bắt buộc.',
+ 'receipt_info' => 'Thông tin cấu hình Biên lai',
+ 'receipt_printer' => 'In vé',
+ 'receipt_short' => 'Ngắn',
+ 'receipt_show_company_name' => 'Hiển thị tên công ty',
+ 'receipt_show_description' => 'Hiện mô tả',
+ 'receipt_show_serialnumber' => 'Hiển thị số Sê-ri',
+ 'receipt_show_tax_ind' => 'Hiển thị chỉ thị thuế',
+ 'receipt_show_taxes' => 'Hiển thị Thuế',
+ 'receipt_show_total_discount' => 'Hiển thị Giảm giá tổng cộng',
+ 'receipt_template' => 'Mẫu biên lai',
+ 'receiving_calculate_average_price' => 'Tính giá tb (Nhập hàng)',
+ 'recv_invoice_format' => 'Định dạng hóa đơn nhận hàng',
+ 'register_mode_default' => 'Chế độ Đăng ký mặc định',
+ 'report_an_issue' => 'Báo cáo trục trặc',
+ 'return_policy_required' => 'Trường Chính sách trả hàng là bắt buộc.',
+ 'reward' => 'Điểm thưởng',
+ 'reward_configuration' => 'Cấu hình Điểm thưởng',
+ 'right' => 'Phải',
+ 'sales_invoice_format' => 'Định dạng Hóa đơn bán hàng',
+ 'sales_quote_format' => 'Định dạng Báo giá bán hàng',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => 'Cấu hình được lưu thành công.',
+ 'saved_unsuccessfully' => 'Gặp lỗi khi lưu cấu hình.',
+ 'security_issue' => 'Cảnh báo về lỗ hổng bảo mật',
+ 'server_notice' => 'Vui lòng sử dụng các thông tin phía dưới để báo cáo lỗi.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => 'Hiển thị biểu tượng Văn phòng',
+ 'statistics' => 'Gửi thống kê',
+ 'statistics_tooltip' => 'Gửi thống kê cho nhà phát triển và mục đích cải tiến tính năng.',
+ 'stock_location' => 'Vị trí kho',
+ 'stock_location_duplicate' => 'Vị trí kho phải là duy nhất.',
+ 'stock_location_invalid_chars' => "Vị trí kho không được chứa '_'.",
+ 'stock_location_required' => 'Trường Vị trí kho là bắt buộc.',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => 'Cột 1',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => 'Bố cục gợi ý tìm kiếm',
+ 'suggestions_second_column' => 'Cột 2',
+ 'suggestions_third_column' => 'Cột 3',
+ 'system_conf' => 'Cài đặt & Cấu hình',
+ 'system_info' => 'System Info',
+ 'table' => 'Bàn ăn',
+ 'table_configuration' => 'Cấu hình bàn ăn',
+ 'takings_printer' => 'In Biên lai',
+ 'tax' => 'Thuế',
+ 'tax_category' => 'Thể loại thuế',
+ 'tax_category_duplicate' => 'Thể loại thuế vừa nhập đã sẵn có.',
+ 'tax_category_invalid_chars' => 'Thể loại thuế vừa nhập không hợp lệ.',
+ 'tax_category_required' => 'Thể loại thuế là bắt buộc.',
+ 'tax_category_used' => 'Không thể xóa Thể loại thuế bởi vì nó đang được dùng.',
+ 'tax_configuration' => 'Cấu hình Thuế',
+ 'tax_decimals' => 'Phần thập phân Thế',
+ 'tax_id' => 'Mã số thuế',
+ 'tax_included' => 'Gồm thuế',
+ 'theme' => 'Giao diện',
+ 'theme_preview' => '',
+ 'thousands_separator' => 'Dấu ngăn cách phần nghìn',
+ 'timezone' => 'Múi giờ',
+ 'timezone_error' => 'Múi giờ OSPOS khác với múi giờ trên máy của bạn.',
+ 'top' => 'Đỉnh',
+ 'use_destination_based_tax' => 'Sử dụng thuế dựa trên điểm đến',
+ 'user_timezone' => 'Múi giờ trên máy nội bộ:',
+ 'website' => 'Website',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => 'Hỗ trợ giao việc',
+ 'work_order_format' => 'Định dạng giấy giao việc',
];
diff --git a/app/Language/vi/Login.php b/app/Language/vi/Login.php
index 140537698..d5dd21112 100644
--- a/app/Language/vi/Login.php
+++ b/app/Language/vi/Login.php
@@ -1,25 +1,30 @@
"Tôi không phải là robot.",
- "go" => "Đăng nhập",
- "invalid_gcaptcha" => "Xin vui lòng xác nhận bạn không phải là robot.",
- "invalid_installation" => "Phần cài đặt chưa đúng, kiểm tra tập tin php.ini của bạn.",
- "invalid_username_and_password" => "Tài khoản hoặc mật khẩu không hợp lệ.",
- "login" => "Đăng nhập",
- "logout" => "Đăng xuất",
- "migration_needed" => "Di chuyển cơ sở dữ liệu sang {0} sẽ được bắt đầu sau khi đăng nhập.",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "Mật khẩu",
- "required_username" => "",
- "username" => "Tài khoản",
- "welcome" => "Chào mừng đến với {0}!",
+ "gcaptcha" => "Tôi không phải là robot.",
+ "go" => "Đăng nhập",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "Xin vui lòng xác nhận bạn không phải là robot.",
+ "invalid_installation" => "Phần cài đặt chưa đúng, kiểm tra tập tin php.ini của bạn.",
+ "invalid_username_and_password" => "Tài khoản hoặc mật khẩu không hợp lệ.",
+ "login" => "Đăng nhập",
+ "logout" => "Đăng xuất",
+ "migrating_database" => "Đang di chuyển cơ sở dữ liệu",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "Di chuyển cơ sở dữ liệu thành công!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "Di chuyển cơ sở dữ liệu sang {0} sẽ được bắt đầu sau khi đăng nhập.",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "Mật khẩu",
+ "required_username" => "",
+ "username" => "Tài khoản",
+ "welcome" => "Chào mừng đến với {0}!"
];
diff --git a/app/Language/vi/Sales.php b/app/Language/vi/Sales.php
index 9d65ddaeb..25be8a2c1 100644
--- a/app/Language/vi/Sales.php
+++ b/app/Language/vi/Sales.php
@@ -1,231 +1,235 @@
"Các điểm sẵn có",
- "rewards_package" => "Điểm thưởng",
- "rewards_remaining_balance" => "Giá trị còn lại của điểm thưởng là ",
- "account_number" => "Tài khoản #",
- "add_payment" => "Thêm thanh toán",
- "amount_due" => "Số còn lại phải thanh toán",
- "amount_tendered" => "Số tiền thanh toán",
- "authorized_signature" => "Chữ ký ủy quyền",
- "cancel_sale" => "Thôi",
- "cash" => "Tiền mặt",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "Điều chỉnh tiền mặt",
- "cash_deposit" => "Số dư tiền mặt",
- "cash_filter" => "Tiền mặt",
- "change_due" => "Tiền thối lại",
- "change_price" => "Thay đổi giá bán",
- "check" => "Séc",
- "check_balance" => "Phần còn lại séc",
- "check_filter" => "Séc",
- "close" => "",
- "comment" => "Ghi chú",
- "comments" => "Ghi chú",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "Hoàn thành",
- "confirm_cancel_sale" => "Bạn có chắc muốn xóa trắng lần bán hàng này? Mọi hàng hóa sẽ bị xóa sạch.",
- "confirm_delete" => "Bạn chắc chắn muốn xóa các lần bán hàng được chọn không?",
- "confirm_restore" => "Bạn chắc chắn muốn hoàn lại các lần bán hàng được chọn không?",
- "credit" => "Thẻ tín dụng",
- "credit_deposit" => "Số dư tiền gửi",
- "credit_filter" => "Thẻ tín dụng",
- "current_table" => "",
- "customer" => "Khách hàng",
- "customer_address" => "Địa chỉ",
- "customer_discount" => "Giảm giá",
- "customer_email" => "Thư điện tử",
- "customer_location" => "Vị trí",
- "customer_mailchimp_status" => "Trạng thái tài khoản Mailchimp",
- "customer_optional" => "(Tùy chọn)",
- "customer_required" => "(Bắt buộc)",
- "customer_total" => "Tổng cộng",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "Ngày bán",
- "date_range" => "Phạm vi Ngày",
- "date_required" => "Ngày phải được nhập theo định dạng.",
- "date_type" => "Trường Ngày tháng là bắt buộc.",
- "debit" => "Thẻ ghi nợ",
- "debit_filter" => "",
- "delete" => "Cho phép xóa",
- "delete_confirmation" => "Bạn có chắc muốn xóa lần nhập bán hàng? Thao tác này không thể hoàn lại.",
- "delete_entire_sale" => "Xóa toàn bộ đơn bán hàng",
- "delete_successful" => "Đã xóa thành công lần bán hàng.",
- "delete_unsuccessful" => "Gặp lỗi khi xóa đơn bán hàng.",
- "description_abbrv" => "Ggiá.",
- "discard" => "Hủy",
- "discard_quote" => "",
- "discount" => "Ggiá %",
- "discount_included" => "% Giảm giá",
- "discount_short" => "%",
- "due" => "Trả chậm",
- "due_filter" => "Trả chậm",
- "edit" => "Sửa",
- "edit_item" => "Sửa hàng hóa",
- "edit_sale" => "Sửa bán hàng",
- "email_receipt" => "Biên lai thư",
- "employee" => "Nhân viên",
- "entry" => "Mục nhập",
- "error_editing_item" => "Lỗi sửa hàng hóa",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "Tìm hay quét Hàng hóa",
- "find_or_scan_item_or_receipt" => "Tìm hay quét Hàng hóa hay Biên lai",
- "giftcard" => "Thẻ quà tặng",
- "giftcard_balance" => "Số thẻ quà tặng còn lại",
- "giftcard_filter" => "",
- "giftcard_number" => "Số Thẻ quà tặng",
- "group_by_category" => "Gộp theo Danh mục",
- "group_by_type" => "Gộp theo kiểu",
- "hsn" => "HSN",
- "id" => "Mã bán hàng",
- "include_prices" => "Bao gồm Giá?",
- "invoice" => "Hóa đơn",
- "invoice_confirm" => "Hóa đơn sẽ được gửi đến",
- "invoice_enable" => "Tạo hóa dơn",
- "invoice_filter" => "Hóa đơn",
- "invoice_no_email" => "Khách hàng này không có địa chỉ thư điện tử hợp lệ.",
- "invoice_number" => "Hóa đơn #",
- "invoice_number_duplicate" => "Số Hóa đơn phải duy nhất.",
- "invoice_sent" => "Gửi Hóa đơn đến",
- "invoice_total" => "Tổng hóa đơn",
- "invoice_type_custom_invoice" => "Hóa đơn tùy chọn (custom_invoice.php)",
- "invoice_type_custom_tax_invoice" => "Hóa đơn thuế tự chọn (custom_tax_invoice.php)",
- "invoice_type_invoice" => "Hóa đơn (invoice.php)",
- "invoice_type_tax_invoice" => "Hóa đơn thuế (tax_invoice.php)",
- "invoice_unsent" => "Gặp lỗi khi gửi Hóa đơn cho",
- "invoice_update" => "Kiểm lại",
- "item_insufficient_of_stock" => "Không đủ hàng tồn cho mặt hàng này.",
- "item_name" => "Tên Hàng hóa",
- "item_number" => "Hàng hóa #",
- "item_out_of_stock" => "Hết hàng trong kho.",
- "key_browser" => "Phím tắt hữu ích",
- "key_cancel" => "Hủy báo giá/hóa đơn/bán hàng hiện tại",
- "key_customer_search" => "Tìm khách hàng",
- "key_finish_quote" => "Kết thúc báo giá/hóa đơn mà không cần thanh toán",
- "key_finish_sale" => "Thanh toán và hoàn thành hóa đơn/bán hàng",
- "key_full" => "Toàn màn hình",
- "key_function" => "Function",
- "key_help" => "Phím tắt",
- "key_help_modal" => "Mở cửa sổ phím tắt",
- "key_in" => "Phòng to",
- "key_item_search" => "Tìm hàng hóa",
- "key_out" => "Thu nhỏ",
- "key_payment" => "Thêm thanh toán",
- "key_print" => "In trang hiện tại",
- "key_restore" => "Khôi phục mức thu/phóng mặc định",
- "key_search" => "Tìm báo cáo",
- "key_suspend" => "Tạm hoãn đơn hàng",
- "key_suspended" => "Xem đơn hàng tạm hoãn",
- "key_system" => "Phím tắt hệ thống",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Phím tắt bán hàng",
- "mc" => "",
- "mode" => "Chế độ đăng ký",
- "must_enter_numeric" => "Số tiền thanh toán phải là dạng số.",
- "must_enter_numeric_giftcard" => "Số Thẻ quà tặng phải là dạng số.",
- "new_customer" => "Khách hàng mới",
- "new_item" => "Hàng hóa mới",
- "no_description" => "Không",
- "no_filter" => "Tất cả",
- "no_items_in_cart" => "Không có Hàng hóa trong rổ hàng.",
- "no_sales_to_display" => "Không có lần bán hàng để hiển thị.",
- "none_selected" => "Bạn chưa chọn bất kỳ một lần bán hàng nào để mà xóa.",
- "nontaxed_ind" => "",
- "not_authorized" => "Thao tác này không được phép.",
- "one_or_multiple" => "Bán hàng",
- "payment" => "Phương thức thanh toán",
- "payment_amount" => "Tổng số",
- "payment_not_cover_total" => "Chưa thanh toán đủ đơn hàng.",
- "payment_type" => "Kiểu",
- "payments" => "",
- "payments_total" => "Đã thanh toán",
- "price" => "Giá",
- "print_after_sale" => "In sau khi Bán hàng",
- "quantity" => "Số lượng",
- "quantity_less_than_reorder_level" => "Cảnh báo: Số lượng mong muốn dưới Mức đặt mua bổ xung cho hàng hóa đó.",
- "quantity_less_than_zero" => "Cảnh báo: Số lượng mong muốn không đủ. Bạn vẫn có thể xử lý đơn hàng, nhưng hãy kiểm toán tồn kho của bạn.",
- "quantity_of_items" => "Số lượng của Hàng hóa {0}",
- "quote" => "Báo giá",
- "quote_number" => "Số Báo giá",
- "quote_number_duplicate" => "Số Báo giá phải là duy nhất.",
- "quote_sent" => "Báo giá gửi đến",
- "quote_unsent" => "Gặp lỗi khi gửi báo giá đến",
- "receipt" => "Biên lai các lần bán hàng",
- "receipt_no_email" => "Khách hàng này có địa chỉ thư điện tử không hợp lệ.",
- "receipt_number" => "Bán hàng #",
- "receipt_sent" => "Biên lai gửi đến",
- "receipt_unsent" => "Gặp lỗi khi gửi biên lai đến",
- "refund" => "Phương thức hoàn tiền",
- "register" => "Nhập đơn bán hàng",
- "remove_customer" => "Xóa bỏ khách hàng",
- "remove_discount" => "",
- "return" => "Trả hàng",
- "rewards" => "Điểm thưởng",
- "rewards_balance" => "Số Điểm thưởng còn lại",
- "sale" => "Bán hàng",
- "sale_by_invoice" => "Bán bằng Hóa đơn",
- "sale_for_customer" => "Khách hàng:",
- "sale_time" => "Thời gian",
- "sales_tax" => "Thuế các lần bán hàng",
- "sales_total" => "",
- "select_customer" => "Chọn Khách hàng",
- "send_invoice" => "Gửi hóa đơn",
- "send_quote" => "Gửi báo giá",
- "send_receipt" => "Gửi biên lai",
- "send_work_order" => "Gửi Giấy giao việc",
- "serial" => "Số sê-ri",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Hiển thị hóa đơn",
- "show_receipt" => "Hiển thị biên lai",
- "start_typing_customer_name" => "Bắt đầu gõ chi tiết khách hàng...",
- "start_typing_item_name" => "Bắt đầu gõ tên hàng hóa hoặc quét mã vạch...",
- "stock" => "Kho",
- "stock_location" => "Vị trí kho",
- "sub_total" => "Tổng trước thuế",
- "successfully_deleted" => "Bạn đã xóa thành công",
- "successfully_restored" => "Bạn đã khôi phục lại đơn hàng",
- "successfully_suspended_sale" => "Đã tạm hoãn thành công lần bán hàng.",
- "successfully_updated" => "Đã cập nhật thành công lần bán hàng.",
- "suspend_sale" => "Tạm hoãn",
- "suspended_doc_id" => "Tài liệu",
- "suspended_sale_id" => "MÃ SỐ",
- "suspended_sales" => "Đơn hàng tạm hoãn",
- "table" => "Bàn",
- "takings" => "Đơn hàng trong ngày",
- "tax" => "Thuế",
- "tax_id" => "Mã số thuế",
- "tax_invoice" => "Hóa đơn thuế",
- "tax_percent" => "Thuế %",
- "taxed_ind" => "T",
- "total" => "Tổng",
- "total_tax_exclusive" => "Gồm thuế",
- "transaction_failed" => "Gặp lỗi khi giao dịch bán hàng.",
- "unable_to_add_item" => "Gặp lỗi khi thêm hàng hóa vào đơn hàng",
- "unsuccessfully_deleted" => "Gặp lỗi khi xóa các lần bán hàng.",
- "unsuccessfully_restored" => "Gặp lỗi khi hoàn lại các lần bán hàng.",
- "unsuccessfully_suspended_sale" => "Gặp lỗi khi tạm ngừng lần bán hàng.",
- "unsuccessfully_updated" => "Gặp lỗi khi cập nhật lần bán hàng.",
- "unsuspend" => "Hủy tạm hoãn",
- "unsuspend_and_delete" => "Thao tác",
- "update" => "Cập nhật",
- "upi" => "UPI",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "Giấy giao việc",
- "work_order_number" => "Số giấy giao việc",
- "work_order_number_duplicate" => "Số giấy giao việc phải là duy nhất.",
- "work_order_sent" => "Gửi Giấy giao việc cho",
- "work_order_unsent" => "Gặp lỗi khi gửi Giấy giao việc cho",
+ 'account_number' => 'Tài khoản #',
+ 'add_payment' => 'Thêm thanh toán',
+ 'amount_due' => 'Số còn lại phải thanh toán',
+ 'amount_tendered' => 'Số tiền thanh toán',
+ 'authorized_signature' => 'Chữ ký ủy quyền',
+ 'cancel_sale' => 'Thôi',
+ 'cash' => 'Tiền mặt',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => 'Điều chỉnh tiền mặt',
+ 'cash_deposit' => 'Số dư tiền mặt',
+ 'cash_filter' => 'Tiền mặt',
+ 'change_due' => 'Tiền thối lại',
+ 'change_price' => 'Thay đổi giá bán',
+ 'check' => 'Séc',
+ 'check_balance' => 'Phần còn lại séc',
+ 'check_filter' => 'Séc',
+ 'close' => '',
+ 'comment' => 'Ghi chú',
+ 'comments' => 'Ghi chú',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => 'Hoàn thành',
+ 'confirm_cancel_sale' => 'Bạn có chắc muốn xóa trắng lần bán hàng này? Mọi hàng hóa sẽ bị xóa sạch.',
+ 'confirm_delete' => 'Bạn chắc chắn muốn xóa các lần bán hàng được chọn không?',
+ 'confirm_restore' => 'Bạn chắc chắn muốn hoàn lại các lần bán hàng được chọn không?',
+ 'credit' => 'Thẻ tín dụng',
+ 'credit_deposit' => 'Số dư tiền gửi',
+ 'credit_filter' => 'Thẻ tín dụng',
+ 'current_table' => '',
+ 'customer' => 'Khách hàng',
+ 'customer_address' => 'Địa chỉ',
+ 'customer_discount' => 'Giảm giá',
+ 'customer_email' => 'Thư điện tử',
+ 'customer_location' => 'Vị trí',
+ 'customer_mailchimp_status' => 'Trạng thái tài khoản Mailchimp',
+ 'customer_optional' => '(Tùy chọn)',
+ 'customer_required' => '(Bắt buộc)',
+ 'customer_total' => 'Tổng cộng',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => 'Các điểm sẵn có',
+ 'daily_sales' => '',
+ 'date' => 'Ngày bán',
+ 'date_range' => 'Phạm vi Ngày',
+ 'date_required' => 'Ngày phải được nhập theo định dạng.',
+ 'date_type' => 'Trường Ngày tháng là bắt buộc.',
+ 'debit' => 'Thẻ ghi nợ',
+ 'debit_filter' => '',
+ 'delete' => 'Cho phép xóa',
+ 'delete_confirmation' => 'Bạn có chắc muốn xóa lần nhập bán hàng? Thao tác này không thể hoàn lại.',
+ 'delete_entire_sale' => 'Xóa toàn bộ đơn bán hàng',
+ 'delete_successful' => 'Đã xóa thành công lần bán hàng.',
+ 'delete_unsuccessful' => 'Gặp lỗi khi xóa đơn bán hàng.',
+ 'description_abbrv' => 'Ggiá.',
+ 'discard' => 'Hủy',
+ 'discard_quote' => '',
+ 'discount' => 'Ggiá %',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Giảm giá',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => 'Trả chậm',
+ 'due_filter' => 'Trả chậm',
+ 'edit' => 'Sửa',
+ 'edit_item' => 'Sửa hàng hóa',
+ 'edit_sale' => 'Sửa bán hàng',
+ 'email_receipt' => 'Biên lai thư',
+ 'employee' => 'Nhân viên',
+ 'entry' => 'Mục nhập',
+ 'error_editing_item' => 'Lỗi sửa hàng hóa',
+ 'find_or_scan_item' => 'Tìm hay quét Hàng hóa',
+ 'find_or_scan_item_or_receipt' => 'Tìm hay quét Hàng hóa hay Biên lai',
+ 'giftcard' => 'Thẻ quà tặng',
+ 'giftcard_balance' => 'Số thẻ quà tặng còn lại',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => 'Số Thẻ quà tặng',
+ 'group_by_category' => 'Gộp theo Danh mục',
+ 'group_by_type' => 'Gộp theo kiểu',
+ 'hsn' => 'HSN',
+ 'id' => 'Mã bán hàng',
+ 'include_prices' => 'Bao gồm Giá?',
+ 'invoice' => 'Hóa đơn',
+ 'invoice_confirm' => 'Hóa đơn sẽ được gửi đến',
+ 'invoice_enable' => 'Tạo hóa dơn',
+ 'invoice_filter' => 'Hóa đơn',
+ 'invoice_no_email' => 'Khách hàng này không có địa chỉ thư điện tử hợp lệ.',
+ 'invoice_number' => 'Hóa đơn #',
+ 'invoice_number_duplicate' => 'Số Hóa đơn phải duy nhất.',
+ 'invoice_sent' => 'Gửi Hóa đơn đến',
+ 'invoice_total' => 'Tổng hóa đơn',
+ 'invoice_type_custom_invoice' => 'Hóa đơn tùy chọn (custom_invoice.php)',
+ 'invoice_type_custom_tax_invoice' => 'Hóa đơn thuế tự chọn (custom_tax_invoice.php)',
+ 'invoice_type_invoice' => 'Hóa đơn (invoice.php)',
+ 'invoice_type_tax_invoice' => 'Hóa đơn thuế (tax_invoice.php)',
+ 'invoice_unsent' => 'Gặp lỗi khi gửi Hóa đơn cho',
+ 'invoice_update' => 'Kiểm lại',
+ 'item_insufficient_of_stock' => 'Không đủ hàng tồn cho mặt hàng này.',
+ 'item_name' => 'Tên Hàng hóa',
+ 'item_number' => 'Hàng hóa #',
+ 'item_out_of_stock' => 'Hết hàng trong kho.',
+ 'key_browser' => 'Phím tắt hữu ích',
+ 'key_cancel' => 'Hủy báo giá/hóa đơn/bán hàng hiện tại',
+ 'key_customer_search' => 'Tìm khách hàng',
+ 'key_finish_quote' => 'Kết thúc báo giá/hóa đơn mà không cần thanh toán',
+ 'key_finish_sale' => 'Thanh toán và hoàn thành hóa đơn/bán hàng',
+ 'key_full' => 'Toàn màn hình',
+ 'key_function' => 'Function',
+ 'key_help' => 'Phím tắt',
+ 'key_help_modal' => 'Mở cửa sổ phím tắt',
+ 'key_in' => 'Phòng to',
+ 'key_item_search' => 'Tìm hàng hóa',
+ 'key_out' => 'Thu nhỏ',
+ 'key_payment' => 'Thêm thanh toán',
+ 'key_print' => 'In trang hiện tại',
+ 'key_restore' => 'Khôi phục mức thu/phóng mặc định',
+ 'key_search' => 'Tìm báo cáo',
+ 'key_suspend' => 'Tạm hoãn đơn hàng',
+ 'key_suspended' => 'Xem đơn hàng tạm hoãn',
+ 'key_system' => 'Phím tắt hệ thống',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Phím tắt bán hàng',
+ 'mc' => '',
+ 'mode' => 'Chế độ đăng ký',
+ 'must_enter_numeric' => 'Số tiền thanh toán phải là dạng số.',
+ 'must_enter_numeric_giftcard' => 'Số Thẻ quà tặng phải là dạng số.',
+ 'must_enter_reference_code' => 'Số tham chiếu/truy xuất phải được nhập.',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => 'Khách hàng mới',
+ 'new_item' => 'Hàng hóa mới',
+ 'no_description' => 'Không',
+ 'no_filter' => 'Tất cả',
+ 'no_items_in_cart' => 'Không có Hàng hóa trong rổ hàng.',
+ 'no_sales_to_display' => 'Không có lần bán hàng để hiển thị.',
+ 'none_selected' => 'Bạn chưa chọn bất kỳ một lần bán hàng nào để mà xóa.',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => 'Thao tác này không được phép.',
+ 'one_or_multiple' => 'Bán hàng',
+ 'payment' => 'Phương thức thanh toán',
+ 'payment_amount' => 'Tổng số',
+ 'payment_not_cover_total' => 'Chưa thanh toán đủ đơn hàng.',
+ 'payment_type' => 'Kiểu',
+ 'payments' => '',
+ 'payments_total' => 'Đã thanh toán',
+ 'price' => 'Giá',
+ 'print_after_sale' => 'In sau khi Bán hàng',
+ 'quantity' => 'Số lượng',
+ 'quantity_less_than_reorder_level' => 'Cảnh báo: Số lượng mong muốn dưới Mức đặt mua bổ xung cho hàng hóa đó.',
+ 'quantity_less_than_zero' => 'Cảnh báo: Số lượng mong muốn không đủ. Bạn vẫn có thể xử lý đơn hàng, nhưng hãy kiểm toán tồn kho của bạn.',
+ 'quantity_of_items' => 'Số lượng của Hàng hóa {0}',
+ 'quote' => 'Báo giá',
+ 'quote_number' => 'Số Báo giá',
+ 'quote_number_duplicate' => 'Số Báo giá phải là duy nhất.',
+ 'quote_sent' => 'Báo giá gửi đến',
+ 'quote_unsent' => 'Gặp lỗi khi gửi báo giá đến',
+ 'receipt' => 'Biên lai các lần bán hàng',
+ 'receipt_no_email' => 'Khách hàng này có địa chỉ thư điện tử không hợp lệ.',
+ 'receipt_number' => 'Bán hàng #',
+ 'receipt_sent' => 'Biên lai gửi đến',
+ 'receipt_unsent' => 'Gặp lỗi khi gửi biên lai đến',
+ 'reference_code' => 'Mã tham chiếu thanh toán',
+ 'reference_code_invalid_characters' => 'Mã tham chiếu chỉ được chứa chữ cái và chữ số.',
+ 'reference_code_length_error' => 'Độ dài mã tham chiếu không hợp lệ.',
+ 'refund' => 'Phương thức hoàn tiền',
+ 'register' => 'Nhập đơn bán hàng',
+ 'remove_customer' => 'Xóa bỏ khách hàng',
+ 'remove_discount' => '',
+ 'return' => 'Trả hàng',
+ 'rewards' => 'Điểm thưởng',
+ 'rewards_balance' => 'Số Điểm thưởng còn lại',
+ 'rewards_package' => 'Điểm thưởng',
+ 'rewards_remaining_balance' => 'Giá trị còn lại của điểm thưởng là ',
+ 'sale' => 'Bán hàng',
+ 'sale_by_invoice' => 'Bán bằng Hóa đơn',
+ 'sale_for_customer' => 'Khách hàng:',
+ 'sale_time' => 'Thời gian',
+ 'sales_tax' => 'Thuế các lần bán hàng',
+ 'sales_total' => '',
+ 'select_customer' => 'Chọn Khách hàng',
+ 'send_invoice' => 'Gửi hóa đơn',
+ 'send_quote' => 'Gửi báo giá',
+ 'send_receipt' => 'Gửi biên lai',
+ 'send_work_order' => 'Gửi Giấy giao việc',
+ 'serial' => 'Số sê-ri',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Hiển thị hóa đơn',
+ 'show_receipt' => 'Hiển thị biên lai',
+ 'start_typing_customer_name' => 'Bắt đầu gõ chi tiết khách hàng...',
+ 'start_typing_item_name' => 'Bắt đầu gõ tên hàng hóa hoặc quét mã vạch...',
+ 'stock' => 'Kho',
+ 'stock_location' => 'Vị trí kho',
+ 'sub_total' => 'Tổng trước thuế',
+ 'successfully_deleted' => 'Bạn đã xóa thành công',
+ 'successfully_restored' => 'Bạn đã khôi phục lại đơn hàng',
+ 'successfully_suspended_sale' => 'Đã tạm hoãn thành công lần bán hàng.',
+ 'successfully_updated' => 'Đã cập nhật thành công lần bán hàng.',
+ 'suspend_sale' => 'Tạm hoãn',
+ 'suspended_doc_id' => 'Tài liệu',
+ 'suspended_sale_id' => 'MÃ SỐ',
+ 'suspended_sales' => 'Đơn hàng tạm hoãn',
+ 'table' => 'Bàn',
+ 'takings' => 'Đơn hàng trong ngày',
+ 'tax' => 'Thuế',
+ 'tax_id' => 'Mã số thuế',
+ 'tax_invoice' => 'Hóa đơn thuế',
+ 'tax_percent' => 'Thuế %',
+ 'taxed_ind' => 'T',
+ 'total' => 'Tổng',
+ 'total_tax_exclusive' => 'Gồm thuế',
+ 'transaction_failed' => 'Gặp lỗi khi giao dịch bán hàng.',
+ 'unable_to_add_item' => 'Gặp lỗi khi thêm hàng hóa vào đơn hàng',
+ 'unsuccessfully_deleted' => 'Gặp lỗi khi xóa các lần bán hàng.',
+ 'unsuccessfully_restored' => 'Gặp lỗi khi hoàn lại các lần bán hàng.',
+ 'unsuccessfully_suspended_sale' => 'Gặp lỗi khi tạm ngừng lần bán hàng.',
+ 'unsuccessfully_updated' => 'Gặp lỗi khi cập nhật lần bán hàng.',
+ 'unsuspend' => 'Hủy tạm hoãn',
+ 'unsuspend_and_delete' => 'Thao tác',
+ 'update' => 'Cập nhật',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => 'Giấy giao việc',
+ 'work_order_number' => 'Số giấy giao việc',
+ 'work_order_number_duplicate' => 'Số giấy giao việc phải là duy nhất.',
+ 'work_order_sent' => 'Gửi Giấy giao việc cho',
+ 'work_order_unsent' => 'Gặp lỗi khi gửi Giấy giao việc cho',
];
diff --git a/app/Language/zh-Hans/Config.php b/app/Language/zh-Hans/Config.php
index f96c5f774..d75120a5e 100644
--- a/app/Language/zh-Hans/Config.php
+++ b/app/Language/zh-Hans/Config.php
@@ -1,332 +1,335 @@
"公司地址",
- "address_required" => "公司地址为必填",
- "all_set" => "All file permissions are set correctly!",
- "allow_duplicate_barcodes" => "允许重复条形码",
- "apostrophe" => "apostrophe",
- "backup_button" => "Backup",
- "backup_database" => "Backup Database",
- "barcode" => "条形码",
- "barcode_company" => "公司名称",
- "barcode_configuration" => "设置条形码",
- "barcode_content" => "条形码内容",
- "barcode_first_row" => "条形码第一行",
- "barcode_font" => "条形码字体",
- "barcode_formats" => "输入格式",
- "barcode_generate_if_empty" => "Generate if empty",
- "barcode_height" => "条形码高度 (px)",
- "barcode_id" => "商品 ID/名字",
- "barcode_info" => "条形码设置信息",
- "barcode_layout" => "条形码布局",
- "barcode_name" => "条形码名字",
- "barcode_number" => "UPC/EAN/ISBN",
- "barcode_number_in_row" => "Number in row",
- "barcode_page_cellspacing" => "Display page cellspacing",
- "barcode_page_width" => "条形码显示宽度",
- "barcode_price" => "金额",
- "barcode_second_row" => "条形码第二行",
- "barcode_third_row" => "条形码第三行",
- "barcode_tooltip" => "警告:此功能可能导致重复项被导入或创建。 如果您不想重复的条形码,请不要使用。",
- "barcode_type" => "条形码类型",
- "barcode_width" => "条形码宽度 (px)",
- "bottom" => "Bottom",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "现金小数点",
- "cash_decimals_tooltip" => "",
- "cash_rounding" => "",
- "category_dropdown" => "显示类别为下拉式菜单",
- "center" => "Center",
- "change_apperance_tooltip" => "",
- "comma" => "comma",
- "company" => "公司名称",
- "company_avatar" => "",
- "company_change_image" => "Change Image",
- "company_logo" => "Company Logo",
- "company_remove_image" => "Remove Image",
- "company_required" => "公司名称为必填",
- "company_select_image" => "选择公司图片",
- "company_website_url" => "公司网址格式错误 (http://...)",
- "country_codes" => "国家地区代码",
- "country_codes_tooltip" => "Comma separated list of country codes for nominatim address lookup.",
- "currency_code" => "",
- "currency_decimals" => "Currency Decimals",
- "currency_symbol" => "货币符号",
- "current_employee_only" => "",
- "customer_reward" => "",
- "customer_reward_duplicate" => "",
- "customer_reward_enable" => "",
- "customer_reward_invalid_chars" => "",
- "customer_reward_required" => "",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "",
- "datetimeformat" => "Date and Time format",
- "decimal_point" => "Decimal Point",
- "default_barcode_font_size_number" => "默认条形码字体大小必须是数字",
- "default_barcode_font_size_required" => "The default barcode font size is a required field",
- "default_barcode_height_number" => "The default barcode height must be a number",
- "default_barcode_height_required" => "The default barcode height is a required field",
- "default_barcode_num_in_row_number" => "The default barcode num in row must be a number",
- "default_barcode_num_in_row_required" => "The default barcode num in row is a required field",
- "default_barcode_page_cellspacing_number" => "The default barcode page cellspacing must be a number",
- "default_barcode_page_cellspacing_required" => "The default barcode page cellspacing is a required field",
- "default_barcode_page_width_number" => "The default barcode page width must be a number",
- "default_barcode_page_width_required" => "The default barcode page width is a required field",
- "default_barcode_width_number" => "The default barcode width must be a number",
- "default_barcode_width_required" => "The default barcode width is a required field",
- "default_item_columns" => "",
- "default_origin_tax_code" => "",
- "default_receivings_discount" => "",
- "default_receivings_discount_number" => "",
- "default_receivings_discount_required" => "",
- "default_sales_discount" => "Default Sales Discount %",
- "default_sales_discount_number" => "The default sales discount must be a number",
- "default_sales_discount_required" => "The default sales discount is a required field",
- "default_tax_category" => "",
- "default_tax_code" => "",
- "default_tax_jurisdiction" => "",
- "default_tax_name_number" => "",
- "default_tax_name_required" => "The default tax name is a required field",
- "default_tax_rate" => "預設稅率 %",
- "default_tax_rate_1" => "稅率 1",
- "default_tax_rate_2" => "稅率 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "預設稅率必需為數字",
- "default_tax_rate_required" => "預設稅率為必填",
- "derive_sale_quantity" => "",
- "derive_sale_quantity_tooltip" => "",
- "dinner_table" => "",
- "dinner_table_duplicate" => "",
- "dinner_table_enable" => "",
- "dinner_table_invalid_chars" => "",
- "dinner_table_required" => "",
- "dot" => "dot",
- "email" => "郵箱",
- "email_configuration" => "Email Configuration",
- "email_mailpath" => "Path to Sendmail",
- "email_protocol" => "Protocol",
- "email_receipt_check_behaviour" => "",
- "email_receipt_check_behaviour_always" => "",
- "email_receipt_check_behaviour_last" => "",
- "email_receipt_check_behaviour_never" => "",
- "email_smtp_crypto" => "SMTP Encryption",
- "email_smtp_host" => "SMTP Server",
- "email_smtp_pass" => "SMTP Password",
- "email_smtp_port" => "SMTP Port",
- "email_smtp_timeout" => "SMTP Timeout (s)",
- "email_smtp_user" => "SMTP Username",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "",
- "enforce_privacy_tooltip" => "",
- "fax" => "傳真",
- "file_perm" => "There are problems with file permissions please fix and reload this page.",
- "financial_year" => "",
- "financial_year_apr" => "",
- "financial_year_aug" => "",
- "financial_year_dec" => "",
- "financial_year_feb" => "",
- "financial_year_jan" => "",
- "financial_year_jul" => "",
- "financial_year_jun" => "",
- "financial_year_mar" => "",
- "financial_year_may" => "",
- "financial_year_nov" => "",
- "financial_year_oct" => "",
- "financial_year_sep" => "",
- "floating_labels" => "",
- "gcaptcha_enable" => "",
- "gcaptcha_secret_key" => "",
- "gcaptcha_secret_key_required" => "",
- "gcaptcha_site_key" => "",
- "gcaptcha_site_key_required" => "",
- "gcaptcha_tooltip" => "",
- "general" => "General",
- "general_configuration" => "General Configuration",
- "giftcard_number" => "",
- "giftcard_random" => "",
- "giftcard_series" => "",
- "image_allowed_file_types" => "",
- "image_max_height_tooltip" => "",
- "image_max_size_tooltip" => "",
- "image_max_width_tooltip" => "",
- "image_restrictions" => "",
- "include_hsn" => "",
- "info" => "儲存組態",
- "info_configuration" => "儲存組態",
- "input_groups" => "",
- "integrations" => "",
- "integrations_configuration" => "",
- "invoice" => "Invoice",
- "invoice_configuration" => "Invoice Print Settings",
- "invoice_default_comments" => "Default Invoice Comments",
- "invoice_email_message" => "Invoice Email Template",
- "invoice_enable" => "Enable Invoicing",
- "invoice_printer" => "Invoice Printer",
- "invoice_type" => "",
- "is_readable" => "",
- "is_writable" => "is writable, but the permissions are higher than 750.",
- "item_markup" => "",
- "jsprintsetup_required" => "Warning! This disabled functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?",
- "language" => "語言",
- "last_used_invoice_number" => "",
- "last_used_quote_number" => "",
- "last_used_work_order_number" => "",
- "left" => "Left",
- "license" => "License",
- "license_configuration" => "License Statement",
- "line_sequence" => "",
- "lines_per_page" => "Lines Per Page",
- "lines_per_page_number" => "The lines per page must be a number",
- "lines_per_page_required" => "The lines per page is a required field",
- "locale" => "Localisation",
- "locale_configuration" => "Localisation Configuration",
- "locale_info" => "Localisation Configuration Information",
- "location" => "Stock",
- "location_configuration" => "Stock Locations",
- "location_info" => "Location Configuration Information",
- "login_form" => "",
- "logout" => "Don't you want to make a backup before logging out?",
- "mailchimp" => "",
- "mailchimp_api_key" => "",
- "mailchimp_configuration" => "",
- "mailchimp_key_successfully" => "",
- "mailchimp_key_unsuccessfully" => "",
- "mailchimp_lists" => "",
- "mailchimp_tooltip" => "",
- "message" => "Message",
- "message_configuration" => "Message Configuration",
- "msg_msg" => "Saved Text Message",
- "msg_msg_placeholder" => "If you wish to use a SMS template save your message here. Otherwise leave the box blank.",
- "msg_pwd" => "SMS-API Password",
- "msg_pwd_required" => "SMS-API Password is a required field",
- "msg_src" => "SMS-API Sender ID",
- "msg_src_required" => "SMS-API Sender ID is a required field",
- "msg_uid" => "SMS-API Username",
- "msg_uid_required" => "SMS-API Username is a required field",
- "multi_pack_enabled" => "",
- "no_risk" => "No security/vulnerability risks.",
- "none" => "none",
- "notify_alignment" => "Notification Popup Position",
- "number_format" => "Number Format",
- "number_locale" => "Localisation",
- "number_locale_invalid" => "The entered locale is invalid. Check the link in the tooltip to find a sensible value",
- "number_locale_required" => "Number Locale is a required field",
- "number_locale_tooltip" => "Find a suitable locale through this link",
- "os_timezone" => "",
- "ospos_info" => "",
- "payment_options_order" => "Payment Options Order",
- "perm_risk" => "Permissions higher than 750 leaves this software at risk.",
- "phone" => "公司电话",
- "phone_required" => "公司电话为必填",
- "print_bottom_margin" => "Margin Bottom",
- "print_bottom_margin_number" => "The default bottom margin must be a number",
- "print_bottom_margin_required" => "The default bottom margin is a required field",
- "print_delay_autoreturn" => "",
- "print_delay_autoreturn_number" => "",
- "print_delay_autoreturn_required" => "",
- "print_footer" => "Print Browser Footer",
- "print_header" => "Print Browser Header",
- "print_left_margin" => "Margin Left",
- "print_left_margin_number" => "The default left margin must be a number",
- "print_left_margin_required" => "The default left margin is a required field",
- "print_receipt_check_behaviour" => "",
- "print_receipt_check_behaviour_always" => "",
- "print_receipt_check_behaviour_last" => "",
- "print_receipt_check_behaviour_never" => "",
- "print_right_margin" => "Margin Right",
- "print_right_margin_number" => "The default right margin must be a number",
- "print_right_margin_required" => "The default right margin is a required field",
- "print_silently" => "Show Print Dialog",
- "print_top_margin" => "Margin Top",
- "print_top_margin_number" => "The default top margin must be a number",
- "print_top_margin_required" => "The default top margin is a required field",
- "quantity_decimals" => "Quantity Decimals",
- "quick_cash_enable" => "",
- "quote_default_comments" => "",
- "receipt" => "收据",
- "receipt_category" => "",
- "receipt_configuration" => "收据打印设置",
- "receipt_default" => "默认",
- "receipt_font_size" => "字体大小",
- "receipt_font_size_number" => "字体大小必须是数字",
- "receipt_font_size_required" => "字体大小是必填的",
- "receipt_info" => "Receipt Configuration Information",
- "receipt_printer" => "收据打印机",
- "receipt_short" => "Short",
- "receipt_show_company_name" => "显示公司名称",
- "receipt_show_description" => "显示描述",
- "receipt_show_serialnumber" => "显示序列号",
- "receipt_show_tax_ind" => "",
- "receipt_show_taxes" => "显示税",
- "receipt_show_total_discount" => "Show Total Discount",
- "receipt_template" => "收据模板",
- "receiving_calculate_average_price" => "Calc avg. Price (Receiving)",
- "recv_invoice_format" => "Receivings Invoice Format",
- "register_mode_default" => "",
- "report_an_issue" => "",
- "return_policy_required" => "退换货政策为必填",
- "reward" => "",
- "reward_configuration" => "",
- "right" => "Right",
- "sales_invoice_format" => "Sales Invoice Format",
- "sales_quote_format" => "",
- "mailpath_invalid" => "",
- "saved_successfully" => "組態設置儲存成功",
- "saved_unsuccessfully" => "組態設置儲存失敗",
- "security_issue" => "Security Vulnerability Warning",
- "server_notice" => "Please use the below info for issue reporting.",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "",
- "statistics" => "Send statistics",
- "statistics_tooltip" => "Send statistics for development and feature improvement purposes",
- "stock_location" => "仓库地址",
- "stock_location_duplicate" => "仓库地址不可重复",
- "stock_location_invalid_chars" => "The stock location name can not contain '_'",
- "stock_location_required" => "Stock location number is a required field",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "",
- "suggestions_second_column" => "",
- "suggestions_third_column" => "",
- "system_conf" => "Setup & Conf",
- "system_info" => "System Info",
- "table" => "",
- "table_configuration" => "",
- "takings_printer" => "Takings Printer",
- "tax" => "税",
- "tax_category" => "",
- "tax_category_duplicate" => "",
- "tax_category_invalid_chars" => "",
- "tax_category_required" => "",
- "tax_category_used" => "",
- "tax_configuration" => "",
- "tax_decimals" => "税的小数点",
- "tax_id" => "税ID",
- "tax_included" => "含税",
- "theme" => "主题",
- "theme_preview" => "",
- "thousands_separator" => "千位分隔符",
- "timezone" => "时区",
- "timezone_error" => "",
- "top" => "Top",
- "use_destination_based_tax" => "",
- "user_timezone" => "",
- "website" => "网站",
- "wholesale_markup" => "",
- "work_order_enable" => "",
- "work_order_format" => "",
+ 'address' => '公司地址',
+ 'address_required' => '公司地址为必填',
+ 'all_set' => 'All file permissions are set correctly!',
+ 'allow_duplicate_barcodes' => '允许重复条形码',
+ 'apostrophe' => 'apostrophe',
+ 'backup_button' => 'Backup',
+ 'backup_database' => 'Backup Database',
+ 'barcode' => '条形码',
+ 'barcode_company' => '公司名称',
+ 'barcode_configuration' => '设置条形码',
+ 'barcode_content' => '条形码内容',
+ 'barcode_first_row' => '条形码第一行',
+ 'barcode_font' => '条形码字体',
+ 'barcode_formats' => '输入格式',
+ 'barcode_generate_if_empty' => 'Generate if empty',
+ 'barcode_height' => '条形码高度 (px)',
+ 'barcode_id' => '商品 ID/名字',
+ 'barcode_info' => '条形码设置信息',
+ 'barcode_layout' => '条形码布局',
+ 'barcode_name' => '条形码名字',
+ 'barcode_number' => 'UPC/EAN/ISBN',
+ 'barcode_number_in_row' => 'Number in row',
+ 'barcode_page_cellspacing' => 'Display page cellspacing',
+ 'barcode_page_width' => '条形码显示宽度',
+ 'barcode_price' => '金额',
+ 'barcode_second_row' => '条形码第二行',
+ 'barcode_third_row' => '条形码第三行',
+ 'barcode_tooltip' => '警告:此功能可能导致重复项被导入或创建。 如果您不想重复的条形码,请不要使用。',
+ 'barcode_type' => '条形码类型',
+ 'barcode_width' => '条形码宽度 (px)',
+ 'bottom' => 'Bottom',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => '现金小数点',
+ 'cash_decimals_tooltip' => '',
+ 'cash_rounding' => '',
+ 'category_dropdown' => '显示类别为下拉式菜单',
+ 'center' => 'Center',
+ 'change_apperance_tooltip' => '',
+ 'comma' => 'comma',
+ 'company' => '公司名称',
+ 'company_avatar' => '',
+ 'company_change_image' => 'Change Image',
+ 'company_logo' => 'Company Logo',
+ 'company_remove_image' => 'Remove Image',
+ 'company_required' => '公司名称为必填',
+ 'company_select_image' => '选择公司图片',
+ 'company_website_url' => '公司网址格式错误 (http://...)',
+ 'country_codes' => '国家地区代码',
+ 'country_codes_tooltip' => 'Comma separated list of country codes for nominatim address lookup.',
+ 'currency_code' => '',
+ 'currency_decimals' => 'Currency Decimals',
+ 'currency_symbol' => '货币符号',
+ 'current_employee_only' => '',
+ 'customer_reward' => '',
+ 'customer_reward_duplicate' => '',
+ 'customer_reward_enable' => '',
+ 'customer_reward_invalid_chars' => '',
+ 'customer_reward_required' => '',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => '',
+ 'datetimeformat' => 'Date and Time format',
+ 'decimal_point' => 'Decimal Point',
+ 'default_barcode_font_size_number' => '默认条形码字体大小必须是数字',
+ 'default_barcode_font_size_required' => 'The default barcode font size is a required field',
+ 'default_barcode_height_number' => 'The default barcode height must be a number',
+ 'default_barcode_height_required' => 'The default barcode height is a required field',
+ 'default_barcode_num_in_row_number' => 'The default barcode num in row must be a number',
+ 'default_barcode_num_in_row_required' => 'The default barcode num in row is a required field',
+ 'default_barcode_page_cellspacing_number' => 'The default barcode page cellspacing must be a number',
+ 'default_barcode_page_cellspacing_required' => 'The default barcode page cellspacing is a required field',
+ 'default_barcode_page_width_number' => 'The default barcode page width must be a number',
+ 'default_barcode_page_width_required' => 'The default barcode page width is a required field',
+ 'default_barcode_width_number' => 'The default barcode width must be a number',
+ 'default_barcode_width_required' => 'The default barcode width is a required field',
+ 'default_item_columns' => '',
+ 'default_origin_tax_code' => '',
+ 'default_receivings_discount' => '',
+ 'default_receivings_discount_number' => '',
+ 'default_receivings_discount_required' => '',
+ 'default_sales_discount' => 'Default Sales Discount %',
+ 'default_sales_discount_number' => 'The default sales discount must be a number',
+ 'default_sales_discount_required' => 'The default sales discount is a required field',
+ 'default_tax_category' => '',
+ 'default_tax_code' => '',
+ 'default_tax_jurisdiction' => '',
+ 'default_tax_name_number' => '',
+ 'default_tax_name_required' => 'The default tax name is a required field',
+ 'default_tax_rate' => '預設稅率 %',
+ 'default_tax_rate_1' => '稅率 1',
+ 'default_tax_rate_2' => '稅率 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => '預設稅率必需為數字',
+ 'default_tax_rate_required' => '預設稅率為必填',
+ 'derive_sale_quantity' => '',
+ 'derive_sale_quantity_tooltip' => '',
+ 'dinner_table' => '',
+ 'dinner_table_duplicate' => '',
+ 'dinner_table_enable' => '',
+ 'dinner_table_invalid_chars' => '',
+ 'dinner_table_required' => '',
+ 'dot' => 'dot',
+ 'email' => '郵箱',
+ 'email_configuration' => 'Email Configuration',
+ 'email_mailpath' => 'Path to Sendmail',
+ 'email_protocol' => 'Protocol',
+ 'email_receipt_check_behaviour' => '',
+ 'email_receipt_check_behaviour_always' => '',
+ 'email_receipt_check_behaviour_last' => '',
+ 'email_receipt_check_behaviour_never' => '',
+ 'email_smtp_crypto' => 'SMTP Encryption',
+ 'email_smtp_host' => 'SMTP Server',
+ 'email_smtp_pass' => 'SMTP Password',
+ 'email_smtp_port' => 'SMTP Port',
+ 'email_smtp_timeout' => 'SMTP Timeout (s)',
+ 'email_smtp_user' => 'SMTP Username',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => '',
+ 'enforce_privacy_tooltip' => '',
+ 'fax' => '傳真',
+ 'file_perm' => 'There are problems with file permissions please fix and reload this page.',
+ 'financial_year' => '',
+ 'financial_year_apr' => '',
+ 'financial_year_aug' => '',
+ 'financial_year_dec' => '',
+ 'financial_year_feb' => '',
+ 'financial_year_jan' => '',
+ 'financial_year_jul' => '',
+ 'financial_year_jun' => '',
+ 'financial_year_mar' => '',
+ 'financial_year_may' => '',
+ 'financial_year_nov' => '',
+ 'financial_year_oct' => '',
+ 'financial_year_sep' => '',
+ 'floating_labels' => '',
+ 'gcaptcha_enable' => '',
+ 'gcaptcha_secret_key' => '',
+ 'gcaptcha_secret_key_required' => '',
+ 'gcaptcha_site_key' => '',
+ 'gcaptcha_site_key_required' => '',
+ 'gcaptcha_tooltip' => '',
+ 'general' => 'General',
+ 'general_configuration' => 'General Configuration',
+ 'giftcard_number' => '',
+ 'giftcard_random' => '',
+ 'giftcard_series' => '',
+ 'image_allowed_file_types' => '',
+ 'image_max_height_tooltip' => '',
+ 'image_max_size_tooltip' => '',
+ 'image_max_width_tooltip' => '',
+ 'image_restrictions' => '',
+ 'include_hsn' => '',
+ 'info' => '儲存組態',
+ 'info_configuration' => '儲存組態',
+ 'input_groups' => '',
+ 'integrations' => '',
+ 'integrations_configuration' => '',
+ 'invoice' => 'Invoice',
+ 'invoice_configuration' => 'Invoice Print Settings',
+ 'invoice_default_comments' => 'Default Invoice Comments',
+ 'invoice_email_message' => 'Invoice Email Template',
+ 'invoice_enable' => 'Enable Invoicing',
+ 'invoice_printer' => 'Invoice Printer',
+ 'invoice_type' => '',
+ 'is_readable' => '',
+ 'is_writable' => 'is writable, but the permissions are higher than 750.',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Warning! This disabled functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?',
+ 'language' => '語言',
+ 'last_used_invoice_number' => '',
+ 'last_used_quote_number' => '',
+ 'last_used_work_order_number' => '',
+ 'left' => 'Left',
+ 'license' => 'License',
+ 'license_configuration' => 'License Statement',
+ 'line_sequence' => '',
+ 'lines_per_page' => 'Lines Per Page',
+ 'lines_per_page_number' => 'The lines per page must be a number',
+ 'lines_per_page_required' => 'The lines per page is a required field',
+ 'locale' => 'Localisation',
+ 'locale_configuration' => 'Localisation Configuration',
+ 'locale_info' => 'Localisation Configuration Information',
+ 'location' => 'Stock',
+ 'location_configuration' => 'Stock Locations',
+ 'location_info' => 'Location Configuration Information',
+ 'login_form' => '',
+ 'logout' => "Don't you want to make a backup before logging out?",
+ 'mailchimp' => '',
+ 'mailchimp_api_key' => '',
+ 'mailchimp_configuration' => '',
+ 'mailchimp_key_successfully' => '',
+ 'mailchimp_key_unsuccessfully' => '',
+ 'mailchimp_lists' => '',
+ 'mailchimp_tooltip' => '',
+ 'message' => 'Message',
+ 'message_configuration' => 'Message Configuration',
+ 'msg_msg' => 'Saved Text Message',
+ 'msg_msg_placeholder' => 'If you wish to use a SMS template save your message here. Otherwise leave the box blank.',
+ 'msg_pwd' => 'SMS-API Password',
+ 'msg_pwd_required' => 'SMS-API Password is a required field',
+ 'msg_src' => 'SMS-API Sender ID',
+ 'msg_src_required' => 'SMS-API Sender ID is a required field',
+ 'msg_uid' => 'SMS-API Username',
+ 'msg_uid_required' => 'SMS-API Username is a required field',
+ 'multi_pack_enabled' => '',
+ 'no_risk' => 'No security/vulnerability risks.',
+ 'none' => 'none',
+ 'notify_alignment' => 'Notification Popup Position',
+ 'number_format' => 'Number Format',
+ 'number_locale' => 'Localisation',
+ 'number_locale_invalid' => 'The entered locale is invalid. Check the link in the tooltip to find a sensible value',
+ 'number_locale_required' => 'Number Locale is a required field',
+ 'number_locale_tooltip' => 'Find a suitable locale through this link',
+ 'os_timezone' => '',
+ 'ospos_info' => '',
+ 'payment_options_order' => 'Payment Options Order',
+ 'payment_reference_code_length_limits' => '付款参考代码
长度限制',
+ 'payment_reference_code_length_max_label' => '最大',
+ 'payment_reference_code_length_min_label' => '最小',
+ 'perm_risk' => 'Permissions higher than 750 leaves this software at risk.',
+ 'phone' => '公司电话',
+ 'phone_required' => '公司电话为必填',
+ 'print_bottom_margin' => 'Margin Bottom',
+ 'print_bottom_margin_number' => 'The default bottom margin must be a number',
+ 'print_bottom_margin_required' => 'The default bottom margin is a required field',
+ 'print_delay_autoreturn' => '',
+ 'print_delay_autoreturn_number' => '',
+ 'print_delay_autoreturn_required' => '',
+ 'print_footer' => 'Print Browser Footer',
+ 'print_header' => 'Print Browser Header',
+ 'print_left_margin' => 'Margin Left',
+ 'print_left_margin_number' => 'The default left margin must be a number',
+ 'print_left_margin_required' => 'The default left margin is a required field',
+ 'print_receipt_check_behaviour' => '',
+ 'print_receipt_check_behaviour_always' => '',
+ 'print_receipt_check_behaviour_last' => '',
+ 'print_receipt_check_behaviour_never' => '',
+ 'print_right_margin' => 'Margin Right',
+ 'print_right_margin_number' => 'The default right margin must be a number',
+ 'print_right_margin_required' => 'The default right margin is a required field',
+ 'print_silently' => 'Show Print Dialog',
+ 'print_top_margin' => 'Margin Top',
+ 'print_top_margin_number' => 'The default top margin must be a number',
+ 'print_top_margin_required' => 'The default top margin is a required field',
+ 'quantity_decimals' => 'Quantity Decimals',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => '',
+ 'receipt' => '收据',
+ 'receipt_category' => '',
+ 'receipt_configuration' => '收据打印设置',
+ 'receipt_default' => '默认',
+ 'receipt_font_size' => '字体大小',
+ 'receipt_font_size_number' => '字体大小必须是数字',
+ 'receipt_font_size_required' => '字体大小是必填的',
+ 'receipt_info' => 'Receipt Configuration Information',
+ 'receipt_printer' => '收据打印机',
+ 'receipt_short' => 'Short',
+ 'receipt_show_company_name' => '显示公司名称',
+ 'receipt_show_description' => '显示描述',
+ 'receipt_show_serialnumber' => '显示序列号',
+ 'receipt_show_tax_ind' => '',
+ 'receipt_show_taxes' => '显示税',
+ 'receipt_show_total_discount' => 'Show Total Discount',
+ 'receipt_template' => '收据模板',
+ 'receiving_calculate_average_price' => 'Calc avg. Price (Receiving)',
+ 'recv_invoice_format' => 'Receivings Invoice Format',
+ 'register_mode_default' => '',
+ 'report_an_issue' => '',
+ 'return_policy_required' => '退换货政策为必填',
+ 'reward' => '',
+ 'reward_configuration' => '',
+ 'right' => 'Right',
+ 'sales_invoice_format' => 'Sales Invoice Format',
+ 'sales_quote_format' => '',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => '組態設置儲存成功',
+ 'saved_unsuccessfully' => '組態設置儲存失敗',
+ 'security_issue' => 'Security Vulnerability Warning',
+ 'server_notice' => 'Please use the below info for issue reporting.',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => '',
+ 'statistics' => 'Send statistics',
+ 'statistics_tooltip' => 'Send statistics for development and feature improvement purposes',
+ 'stock_location' => '仓库地址',
+ 'stock_location_duplicate' => '仓库地址不可重复',
+ 'stock_location_invalid_chars' => "The stock location name can not contain '_'",
+ 'stock_location_required' => 'Stock location number is a required field',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => '',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => '',
+ 'suggestions_second_column' => '',
+ 'suggestions_third_column' => '',
+ 'system_conf' => 'Setup & Conf',
+ 'system_info' => 'System Info',
+ 'table' => '',
+ 'table_configuration' => '',
+ 'takings_printer' => 'Takings Printer',
+ 'tax' => '税',
+ 'tax_category' => '',
+ 'tax_category_duplicate' => '',
+ 'tax_category_invalid_chars' => '',
+ 'tax_category_required' => '',
+ 'tax_category_used' => '',
+ 'tax_configuration' => '',
+ 'tax_decimals' => '税的小数点',
+ 'tax_id' => '税ID',
+ 'tax_included' => '含税',
+ 'theme' => '主题',
+ 'theme_preview' => '',
+ 'thousands_separator' => '千位分隔符',
+ 'timezone' => '时区',
+ 'timezone_error' => '',
+ 'top' => 'Top',
+ 'use_destination_based_tax' => '',
+ 'user_timezone' => '',
+ 'website' => '网站',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => '',
+ 'work_order_format' => '',
];
diff --git a/app/Language/zh-Hans/Login.php b/app/Language/zh-Hans/Login.php
index c7802344e..8fc3c4d66 100644
--- a/app/Language/zh-Hans/Login.php
+++ b/app/Language/zh-Hans/Login.php
@@ -1,24 +1,29 @@
"我不是机器人。",
- "go" => "登入",
- "invalid_gcaptcha" => "无效,我不是机器人。",
- "invalid_installation" => "安装不正确,请检查您的php.ini文件。",
- "invalid_username_and_password" => "无效的用户名或密码。",
- "login" => "登入",
- "logout" => "退出",
- "migration_needed" => "",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "密码",
- "username" => "用户名",
- "welcome" => "欢迎来到 {0}!",
+ "gcaptcha" => "我不是机器人。",
+ "go" => "登入",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "无效,我不是机器人。",
+ "invalid_installation" => "安装不正确,请检查您的php.ini文件。",
+ "invalid_username_and_password" => "无效的用户名或密码。",
+ "login" => "登入",
+ "logout" => "退出",
+ "migrating_database" => "正在迁移数据库",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "数据库迁移成功!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "密码",
+ "username" => "用户名",
+ "welcome" => "欢迎来到 {0}!"
];
diff --git a/app/Language/zh-Hans/Sales.php b/app/Language/zh-Hans/Sales.php
index ba4df4c6c..ba1ac1961 100644
--- a/app/Language/zh-Hans/Sales.php
+++ b/app/Language/zh-Hans/Sales.php
@@ -1,231 +1,235 @@
"可用积分",
- "rewards_package" => "",
- "rewards_remaining_balance" => "",
- "account_number" => "",
- "add_payment" => "新增付款",
- "amount_due" => "商品金額",
- "amount_tendered" => "已收帳款",
- "authorized_signature" => "",
- "cancel_sale" => "取消銷售",
- "cash" => "現金",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "",
- "cash_deposit" => "",
- "cash_filter" => "現金",
- "change_due" => "更改到期日",
- "change_price" => "",
- "check" => "支票",
- "check_balance" => "查看餘額",
- "check_filter" => "",
- "close" => "",
- "comment" => "評論",
- "comments" => "評論",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "完成銷售",
- "confirm_cancel_sale" => "你確定要清除此筆銷售單?本單內的所有產品將被清除。",
- "confirm_delete" => "你確定要清除此銷售產品?",
- "confirm_restore" => "",
- "credit" => "信用卡",
- "credit_deposit" => "",
- "credit_filter" => "",
- "current_table" => "",
- "customer" => "客戶",
- "customer_address" => "Customer Address",
- "customer_discount" => "折扣",
- "customer_email" => "Customer Email",
- "customer_location" => "Customer Location",
- "customer_mailchimp_status" => "",
- "customer_optional" => "",
- "customer_required" => "",
- "customer_total" => "Total",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "日期",
- "date_range" => "日期範圍",
- "date_required" => "A correct date needs to be filled in",
- "date_type" => "Date field is required",
- "debit" => "簽帳卡",
- "debit_filter" => "",
- "delete" => "",
- "delete_confirmation" => "你確定要刪除此銷售資料,這個動作不能撤消",
- "delete_entire_sale" => "刪除全部銷售資料",
- "delete_successful" => "您已成功刪除銷售資料",
- "delete_unsuccessful" => "銷售資料刪除失敗",
- "description_abbrv" => "倒序",
- "discard" => "",
- "discard_quote" => "",
- "discount" => "折扣 %",
- "discount_included" => "% Discount",
- "discount_short" => "%",
- "due" => "",
- "due_filter" => "",
- "edit" => "編輯",
- "edit_item" => "編輯產品",
- "edit_sale" => "編輯銷售資料",
- "email_receipt" => "Email 銷售單",
- "employee" => "員工",
- "entry" => "",
- "error_editing_item" => "編輯產品錯誤",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "查找/掃描商品",
- "find_or_scan_item_or_receipt" => "查找/掃描產品或收貨單",
- "giftcard" => "禮金券",
- "giftcard_balance" => "Giftcard Balance",
- "giftcard_filter" => "",
- "giftcard_number" => "禮金券編號",
- "group_by_category" => "",
- "group_by_type" => "",
- "hsn" => "",
- "id" => "銷售編號",
- "include_prices" => "",
- "invoice" => "Invoice",
- "invoice_confirm" => "This invoice will be sent to",
- "invoice_enable" => "Create Invoice",
- "invoice_filter" => "Invoices",
- "invoice_no_email" => "This customer does not have a valid email address",
- "invoice_number" => "Invoice #",
- "invoice_number_duplicate" => "Please enter an unique invoice number",
- "invoice_sent" => "Invoice sent to",
- "invoice_total" => "",
- "invoice_type_custom_invoice" => "",
- "invoice_type_custom_tax_invoice" => "",
- "invoice_type_invoice" => "",
- "invoice_type_tax_invoice" => "",
- "invoice_unsent" => "Invoice failed to be sent to",
- "invoice_update" => "Recount",
- "item_insufficient_of_stock" => "產品庫存不足",
- "item_name" => "產品名稱",
- "item_number" => "產品 #",
- "item_out_of_stock" => "產品缺貨",
- "key_browser" => "",
- "key_cancel" => "Cancels Current Quote/Invoice/Sale",
- "key_customer_search" => "Customer Search",
- "key_finish_quote" => "Finish Quote/Invoice witdout payment",
- "key_finish_sale" => "Add Payment and Complete Invoice/Sale",
- "key_full" => "",
- "key_function" => "Function",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "登記模式",
- "must_enter_numeric" => "已收帳款必須輸入數值",
- "must_enter_numeric_giftcard" => "禮金券編號必須輸入數值",
- "new_customer" => "新客戶",
- "new_item" => "新增產品",
- "no_description" => "None",
- "no_filter" => "All",
- "no_items_in_cart" => "購物車中沒有任何產品",
- "no_sales_to_display" => "No sales to display",
- "none_selected" => "您還沒有選擇任何產品進行編輯",
- "nontaxed_ind" => "",
- "not_authorized" => "",
- "one_or_multiple" => "",
- "payment" => "付款方式",
- "payment_amount" => "Amount",
- "payment_not_cover_total" => "付款金額不足",
- "payment_type" => "Type",
- "payments" => "",
- "payments_total" => "Payments Total",
- "price" => "價格",
- "print_after_sale" => "出貨時打印收據",
- "quantity" => "數量.",
- "quantity_less_than_reorder_level" => "警告!產品的庫存數量是不足的。您仍然可以處理銷售,但檢查您的庫存",
- "quantity_less_than_zero" => "警告!產品的庫存數量是不足的。您仍然可以處理銷售,但檢查您的庫存",
- "quantity_of_items" => "",
- "quote" => "",
- "quote_number" => "",
- "quote_number_duplicate" => "",
- "quote_sent" => "",
- "quote_unsent" => "",
- "receipt" => "銷貨單",
- "receipt_no_email" => "",
- "receipt_number" => "POS #",
- "receipt_sent" => "Receipt sent to",
- "receipt_unsent" => "Receipt failed to be sent to",
- "refund" => "",
- "register" => "銷售登記",
- "remove_customer" => "移除客戶",
- "remove_discount" => "",
- "return" => "退貨",
- "rewards" => "",
- "rewards_balance" => "",
- "sale" => "銷售",
- "sale_by_invoice" => "",
- "sale_for_customer" => "客戶:",
- "sale_time" => "Time",
- "sales_tax" => "",
- "sales_total" => "",
- "select_customer" => "選擇客戶 (Optional)",
- "send_invoice" => "Send Invoice",
- "send_quote" => "",
- "send_receipt" => "Send Receipt",
- "send_work_order" => "",
- "serial" => "序號",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "Show Invoice",
- "show_receipt" => "Show Receipt",
- "start_typing_customer_name" => "開始輸入客戶的名字",
- "start_typing_item_name" => "開始輸入產品名或掃描條碼...",
- "stock" => "",
- "stock_location" => "",
- "sub_total" => "小計",
- "successfully_deleted" => "銷售資料成功刪除",
- "successfully_restored" => "",
- "successfully_suspended_sale" => "本銷售資料已經成功暫停",
- "successfully_updated" => "銷售資料成功更新",
- "suspend_sale" => "暫停銷售",
- "suspended_doc_id" => "",
- "suspended_sale_id" => "暫停銷售編號",
- "suspended_sales" => "已暫停銷售",
- "table" => "",
- "takings" => "Takings",
- "tax" => "稅額",
- "tax_id" => "",
- "tax_invoice" => "",
- "tax_percent" => "稅率 %",
- "taxed_ind" => "",
- "total" => "總計",
- "total_tax_exclusive" => "Tax excluded",
- "transaction_failed" => "銷售交易失敗",
- "unable_to_add_item" => "無法增加出售產品",
- "unsuccessfully_deleted" => "銷售資料刪除失敗",
- "unsuccessfully_restored" => "",
- "unsuccessfully_suspended_sale" => "本銷售資料已經成功暫停",
- "unsuccessfully_updated" => "銷售資料更新失敗",
- "unsuspend" => "取消暫停銷售",
- "unsuspend_and_delete" => "取消暫停銷售並刪除",
- "update" => "編輯",
- "upi" => "",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "",
- "work_order_number" => "",
- "work_order_number_duplicate" => "",
- "work_order_sent" => "",
- "work_order_unsent" => "",
+ 'account_number' => '',
+ 'add_payment' => '新增付款',
+ 'amount_due' => '商品金額',
+ 'amount_tendered' => '已收帳款',
+ 'authorized_signature' => '',
+ 'cancel_sale' => '取消銷售',
+ 'cash' => '現金',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => '',
+ 'cash_deposit' => '',
+ 'cash_filter' => '現金',
+ 'change_due' => '更改到期日',
+ 'change_price' => '',
+ 'check' => '支票',
+ 'check_balance' => '查看餘額',
+ 'check_filter' => '',
+ 'close' => '',
+ 'comment' => '評論',
+ 'comments' => '評論',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => '完成銷售',
+ 'confirm_cancel_sale' => '你確定要清除此筆銷售單?本單內的所有產品將被清除。',
+ 'confirm_delete' => '你確定要清除此銷售產品?',
+ 'confirm_restore' => '',
+ 'credit' => '信用卡',
+ 'credit_deposit' => '',
+ 'credit_filter' => '',
+ 'current_table' => '',
+ 'customer' => '客戶',
+ 'customer_address' => 'Customer Address',
+ 'customer_discount' => '折扣',
+ 'customer_email' => 'Customer Email',
+ 'customer_location' => 'Customer Location',
+ 'customer_mailchimp_status' => '',
+ 'customer_optional' => '',
+ 'customer_required' => '',
+ 'customer_total' => 'Total',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => '可用积分',
+ 'daily_sales' => '',
+ 'date' => '日期',
+ 'date_range' => '日期範圍',
+ 'date_required' => 'A correct date needs to be filled in',
+ 'date_type' => 'Date field is required',
+ 'debit' => '簽帳卡',
+ 'debit_filter' => '',
+ 'delete' => '',
+ 'delete_confirmation' => '你確定要刪除此銷售資料,這個動作不能撤消',
+ 'delete_entire_sale' => '刪除全部銷售資料',
+ 'delete_successful' => '您已成功刪除銷售資料',
+ 'delete_unsuccessful' => '銷售資料刪除失敗',
+ 'description_abbrv' => '倒序',
+ 'discard' => '',
+ 'discard_quote' => '',
+ 'discount' => '折扣 %',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% Discount',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => '',
+ 'due_filter' => '',
+ 'edit' => '編輯',
+ 'edit_item' => '編輯產品',
+ 'edit_sale' => '編輯銷售資料',
+ 'email_receipt' => 'Email 銷售單',
+ 'employee' => '員工',
+ 'entry' => '',
+ 'error_editing_item' => '編輯產品錯誤',
+ 'find_or_scan_item' => '查找/掃描商品',
+ 'find_or_scan_item_or_receipt' => '查找/掃描產品或收貨單',
+ 'giftcard' => '禮金券',
+ 'giftcard_balance' => 'Giftcard Balance',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => '禮金券編號',
+ 'group_by_category' => '',
+ 'group_by_type' => '',
+ 'hsn' => '',
+ 'id' => '銷售編號',
+ 'include_prices' => '',
+ 'invoice' => 'Invoice',
+ 'invoice_confirm' => 'This invoice will be sent to',
+ 'invoice_enable' => 'Create Invoice',
+ 'invoice_filter' => 'Invoices',
+ 'invoice_no_email' => 'This customer does not have a valid email address',
+ 'invoice_number' => 'Invoice #',
+ 'invoice_number_duplicate' => 'Please enter an unique invoice number',
+ 'invoice_sent' => 'Invoice sent to',
+ 'invoice_total' => '',
+ 'invoice_type_custom_invoice' => '',
+ 'invoice_type_custom_tax_invoice' => '',
+ 'invoice_type_invoice' => '',
+ 'invoice_type_tax_invoice' => '',
+ 'invoice_unsent' => 'Invoice failed to be sent to',
+ 'invoice_update' => 'Recount',
+ 'item_insufficient_of_stock' => '產品庫存不足',
+ 'item_name' => '產品名稱',
+ 'item_number' => '產品 #',
+ 'item_out_of_stock' => '產品缺貨',
+ 'key_browser' => '',
+ 'key_cancel' => 'Cancels Current Quote/Invoice/Sale',
+ 'key_customer_search' => 'Customer Search',
+ 'key_finish_quote' => 'Finish Quote/Invoice witdout payment',
+ 'key_finish_sale' => 'Add Payment and Complete Invoice/Sale',
+ 'key_full' => '',
+ 'key_function' => 'Function',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => '登記模式',
+ 'must_enter_numeric' => '已收帳款必須輸入數值',
+ 'must_enter_numeric_giftcard' => '禮金券編號必須輸入數值',
+ 'must_enter_reference_code' => '必须输入参考/检索编号。',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => '新客戶',
+ 'new_item' => '新增產品',
+ 'no_description' => 'None',
+ 'no_filter' => 'All',
+ 'no_items_in_cart' => '購物車中沒有任何產品',
+ 'no_sales_to_display' => 'No sales to display',
+ 'none_selected' => '您還沒有選擇任何產品進行編輯',
+ 'nontaxed_ind' => '',
+ 'not_authorized' => '',
+ 'one_or_multiple' => '',
+ 'payment' => '付款方式',
+ 'payment_amount' => 'Amount',
+ 'payment_not_cover_total' => '付款金額不足',
+ 'payment_type' => 'Type',
+ 'payments' => '',
+ 'payments_total' => 'Payments Total',
+ 'price' => '價格',
+ 'print_after_sale' => '出貨時打印收據',
+ 'quantity' => '數量.',
+ 'quantity_less_than_reorder_level' => '警告!產品的庫存數量是不足的。您仍然可以處理銷售,但檢查您的庫存',
+ 'quantity_less_than_zero' => '警告!產品的庫存數量是不足的。您仍然可以處理銷售,但檢查您的庫存',
+ 'quantity_of_items' => '',
+ 'quote' => '',
+ 'quote_number' => '',
+ 'quote_number_duplicate' => '',
+ 'quote_sent' => '',
+ 'quote_unsent' => '',
+ 'receipt' => '銷貨單',
+ 'receipt_no_email' => '',
+ 'receipt_number' => 'POS #',
+ 'receipt_sent' => 'Receipt sent to',
+ 'receipt_unsent' => 'Receipt failed to be sent to',
+ 'reference_code' => '付款参考代码',
+ 'reference_code_invalid_characters' => '参考代码只能包含字母和数字。',
+ 'reference_code_length_error' => '参考代码长度无效。',
+ 'refund' => '',
+ 'register' => '銷售登記',
+ 'remove_customer' => '移除客戶',
+ 'remove_discount' => '',
+ 'return' => '退貨',
+ 'rewards' => '',
+ 'rewards_balance' => '',
+ 'rewards_package' => '',
+ 'rewards_remaining_balance' => '',
+ 'sale' => '銷售',
+ 'sale_by_invoice' => '',
+ 'sale_for_customer' => '客戶:',
+ 'sale_time' => 'Time',
+ 'sales_tax' => '',
+ 'sales_total' => '',
+ 'select_customer' => '選擇客戶 (Optional)',
+ 'send_invoice' => 'Send Invoice',
+ 'send_quote' => '',
+ 'send_receipt' => 'Send Receipt',
+ 'send_work_order' => '',
+ 'serial' => '序號',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => 'Show Invoice',
+ 'show_receipt' => 'Show Receipt',
+ 'start_typing_customer_name' => '開始輸入客戶的名字',
+ 'start_typing_item_name' => '開始輸入產品名或掃描條碼...',
+ 'stock' => '',
+ 'stock_location' => '',
+ 'sub_total' => '小計',
+ 'successfully_deleted' => '銷售資料成功刪除',
+ 'successfully_restored' => '',
+ 'successfully_suspended_sale' => '本銷售資料已經成功暫停',
+ 'successfully_updated' => '銷售資料成功更新',
+ 'suspend_sale' => '暫停銷售',
+ 'suspended_doc_id' => '',
+ 'suspended_sale_id' => '暫停銷售編號',
+ 'suspended_sales' => '已暫停銷售',
+ 'table' => '',
+ 'takings' => 'Takings',
+ 'tax' => '稅額',
+ 'tax_id' => '',
+ 'tax_invoice' => '',
+ 'tax_percent' => '稅率 %',
+ 'taxed_ind' => '',
+ 'total' => '總計',
+ 'total_tax_exclusive' => 'Tax excluded',
+ 'transaction_failed' => '銷售交易失敗',
+ 'unable_to_add_item' => '無法增加出售產品',
+ 'unsuccessfully_deleted' => '銷售資料刪除失敗',
+ 'unsuccessfully_restored' => '',
+ 'unsuccessfully_suspended_sale' => '本銷售資料已經成功暫停',
+ 'unsuccessfully_updated' => '銷售資料更新失敗',
+ 'unsuspend' => '取消暫停銷售',
+ 'unsuspend_and_delete' => '取消暫停銷售並刪除',
+ 'update' => '編輯',
+ 'upi' => '',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => '',
+ 'work_order_number' => '',
+ 'work_order_number_duplicate' => '',
+ 'work_order_sent' => '',
+ 'work_order_unsent' => '',
];
diff --git a/app/Language/zh-Hant/Config.php b/app/Language/zh-Hant/Config.php
index 1266f2248..ecb6f570d 100644
--- a/app/Language/zh-Hant/Config.php
+++ b/app/Language/zh-Hant/Config.php
@@ -1,332 +1,335 @@
"公司地址",
- "address_required" => "公司地址為必填.",
- "all_set" => "所有文件權限設置正確!",
- "allow_duplicate_barcodes" => "允許重複的條碼",
- "apostrophe" => "撇號",
- "backup_button" => "Backup",
- "backup_database" => "Backup Database",
- "barcode" => "條碼",
- "barcode_company" => "公司名稱",
- "barcode_configuration" => "條碼配置",
- "barcode_content" => "條碼內容",
- "barcode_first_row" => "第 1 行",
- "barcode_font" => "Font",
- "barcode_formats" => "輸入格式",
- "barcode_generate_if_empty" => "為空時生成.",
- "barcode_height" => "高度(像素)",
- "barcode_id" => "Item Id/Name",
- "barcode_info" => "條碼配置信息",
- "barcode_layout" => "條碼佈局",
- "barcode_name" => "客戶",
- "barcode_number" => "UPC/EAN/ISBN",
- "barcode_number_in_row" => "行數",
- "barcode_page_cellspacing" => "顯示頁面單元格間距.",
- "barcode_page_width" => "顯示頁面寬度",
- "barcode_price" => "價格",
- "barcode_second_row" => "Row 4",
- "barcode_third_row" => "Row 5",
- "barcode_tooltip" => "警告:此功能可能會導致導入或創建重複項。如果您不想要重複的條形碼,請不要使用。",
- "barcode_type" => "條碼類型",
- "barcode_width" => "寬度(像素)",
- "bottom" => "底部",
- "cash_button" => "",
- "cash_button_1" => "",
- "cash_button_2" => "",
- "cash_button_3" => "",
- "cash_button_4" => "",
- "cash_button_5" => "",
- "cash_button_6" => "",
- "cash_decimals" => "現金小數",
- "cash_decimals_tooltip" => "如果現金小數和貨幣小數相同,則不會發生現金觸發的四捨五入,除非現金四捨五入設置為五分之一。",
- "cash_rounding" => "現金四捨五入",
- "category_dropdown" => "下拉式顯示類別",
- "center" => "中心",
- "change_apperance_tooltip" => "",
- "comma" => "逗號",
- "company" => "公司名稱",
- "company_avatar" => "",
- "company_change_image" => "更改圖像",
- "company_logo" => "公司標誌",
- "company_remove_image" => "刪除圖像",
- "company_required" => "公司名稱為必填",
- "company_select_image" => "選擇圖像",
- "company_website_url" => "公司網址格式錯誤 (http://...).",
- "country_codes" => "國家代碼",
- "country_codes_tooltip" => "以逗號分隔的國家/地區代碼列表,用於提名地址查找。",
- "currency_code" => "幣別代碼",
- "currency_decimals" => "貨幣小數",
- "currency_symbol" => "貨幣符號",
- "current_employee_only" => "",
- "customer_reward" => "報酬",
- "customer_reward_duplicate" => "獎勵必須是唯一的。",
- "customer_reward_enable" => "啟用客戶獎勵",
- "customer_reward_invalid_chars" => "獎勵不能包含“_”",
- "customer_reward_required" => "獎勵是必填字段",
- "customer_sales_tax_support" => "",
- "date_or_time_format" => "日期和時間過濾器",
- "datetimeformat" => "日期時間格式",
- "decimal_point" => "小數點位數",
- "default_barcode_font_size_number" => "默認條形碼字體大小必須是數字。",
- "default_barcode_font_size_required" => "默認條碼字體大小是必填字段。",
- "default_barcode_height_number" => "默認條碼高度必須是數字。",
- "default_barcode_height_required" => "默認條碼高度是必填字段。",
- "default_barcode_num_in_row_number" => "行中的默認條形碼編號必須是數字。",
- "default_barcode_num_in_row_required" => "行中的默認條形碼編號是必填字段。",
- "default_barcode_page_cellspacing_number" => "默認條碼頁 Cellspacing 必須是一個數字。",
- "default_barcode_page_cellspacing_required" => "默認條碼頁單元格間距是必填字段。",
- "default_barcode_page_width_number" => "默認條形碼頁面寬度必須是數字。",
- "default_barcode_page_width_required" => "默認條碼頁面寬度為必填字段.",
- "default_barcode_width_number" => "默認條碼寬度必須是數字。",
- "default_barcode_width_required" => "默認條碼寬度是必填字段。",
- "default_item_columns" => "默認可見項目列",
- "default_origin_tax_code" => "默認原產地稅碼",
- "default_receivings_discount" => "默認收款折扣",
- "default_receivings_discount_number" => "默認收款折扣必須是一個數字。",
- "default_receivings_discount_required" => "默認收款折扣是必填字段。",
- "default_sales_discount" => "Default Sales Discount %",
- "default_sales_discount_number" => "默認銷售折扣必須是數字。",
- "default_sales_discount_required" => "默認銷售折扣是必填字段.",
- "default_tax_category" => "默認稅種",
- "default_tax_code" => "默認稅碼",
- "default_tax_jurisdiction" => "默認稅收管轄權",
- "default_tax_name_number" => "默認稅名必須是字符串。",
- "default_tax_name_required" => "The default tax name is a required field.",
- "default_tax_rate" => "預設稅率 %",
- "default_tax_rate_1" => "稅率 1",
- "default_tax_rate_2" => "稅率 2",
- "default_tax_rate_3" => "",
- "default_tax_rate_number" => "預設稅率必需為數字.",
- "default_tax_rate_required" => "預設稅率為必填.",
- "derive_sale_quantity" => "允許派生銷售數量",
- "derive_sale_quantity_tooltip" => "如果選中,則將為按擴展金額訂購的商品提供新的商品類型",
- "dinner_table" => "餐桌",
- "dinner_table_duplicate" => "餐桌必須唯一.",
- "dinner_table_enable" => "啟用餐桌",
- "dinner_table_invalid_chars" => "餐桌名稱不能包含 '_'.",
- "dinner_table_required" => "餐桌是必填欄位.",
- "dot" => "點",
- "email" => "郵箱",
- "email_configuration" => "Email Configuration",
- "email_mailpath" => "發送郵件的路徑",
- "email_protocol" => "Protocol",
- "email_receipt_check_behaviour" => "電子郵件收據複選框",
- "email_receipt_check_behaviour_always" => "始終檢查",
- "email_receipt_check_behaviour_last" => "記住上次選擇",
- "email_receipt_check_behaviour_never" => "始終未選中",
- "email_smtp_crypto" => "SMTP 加密",
- "email_smtp_host" => "SMTP Server",
- "email_smtp_pass" => "SMTP Password",
- "email_smtp_port" => "SMTP Port",
- "email_smtp_timeout" => "SMTP 逾時",
- "email_smtp_user" => "SMTP 用戶名",
- "enable_avatar" => "",
- "enable_avatar_tooltip" => "",
- "enable_dropdown_tooltip" => "",
- "enable_new_look" => "",
- "enable_right_bar" => "",
- "enable_right_bar_tooltip" => "",
- "enforce_privacy" => "保護隱私",
- "enforce_privacy_tooltip" => "保護客戶隱私,在他們的數據被刪除的情況下強制執行數據擾亂",
- "fax" => "傳真",
- "file_perm" => "檔案權限有問題,請修正後重刷網頁.",
- "financial_year" => "財務年起始",
- "financial_year_apr" => "4月1日",
- "financial_year_aug" => "8月1日",
- "financial_year_dec" => "12月1日",
- "financial_year_feb" => "2月1日",
- "financial_year_jan" => "1月1日",
- "financial_year_jul" => "7月1日",
- "financial_year_jun" => "6月1日",
- "financial_year_mar" => "3月1日",
- "financial_year_may" => "5月1日",
- "financial_year_nov" => "11月1日",
- "financial_year_oct" => "10月1日",
- "financial_year_sep" => "9月1日",
- "floating_labels" => "浮動標籤",
- "gcaptcha_enable" => "登入檢核碼(reCAPTCHA)",
- "gcaptcha_secret_key" => "reCAPTCHA 密鑰",
- "gcaptcha_secret_key_required" => "reCAPTCHA 密鑰是必填字段",
- "gcaptcha_site_key" => "reCAPTCHA 站點密鑰",
- "gcaptcha_site_key_required" => "reCAPTCHA 站點密鑰是必填字段",
- "gcaptcha_tooltip" => "登入使用Google reCAPTCHA保護,點選圖標進行 API key 配對.",
- "general" => "一般",
- "general_configuration" => "一般設定",
- "giftcard_number" => "禮物卡號碼",
- "giftcard_random" => "亂數產生",
- "giftcard_series" => "序列產生",
- "image_allowed_file_types" => "允許圖檔類型",
- "image_max_height_tooltip" => "上傳圖檔最大高度(px).",
- "image_max_size_tooltip" => "上傳圖檔大小上限(kb).",
- "image_max_width_tooltip" => "上傳圖檔最大寬度(px).",
- "image_restrictions" => "上傳圖檔限制",
- "include_hsn" => "包括對 HSN 代碼的支持",
- "info" => "儲存組態",
- "info_configuration" => "儲存組態",
- "input_groups" => "輸入組",
- "integrations" => "整合",
- "integrations_configuration" => "第三方整合",
- "invoice" => "發票",
- "invoice_configuration" => "發票打印設置",
- "invoice_default_comments" => "默認發票註釋",
- "invoice_email_message" => "發票電子郵件模板",
- "invoice_enable" => "啟用發票",
- "invoice_printer" => "發票打印機",
- "invoice_type" => "發票類型",
- "is_readable" => "可讀取但權限不正確,請設定為 640 或 660 後重整.",
- "is_writable" => "可寫,但權限設置不正確。請將其設置為 750 並刷新。",
- "item_markup" => "",
- "jsprintsetup_required" => "Warning! This disabled functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?",
- "language" => "語言",
- "last_used_invoice_number" => "上次使用的發票編號",
- "last_used_quote_number" => "上次使用的報價編號",
- "last_used_work_order_number" => "上次使用的 W / O 編號",
- "left" => "剩下",
- "license" => "許可証",
- "license_configuration" => "許可聲明",
- "line_sequence" => "行序",
- "lines_per_page" => "Lines Per Page",
- "lines_per_page_number" => "每頁行數必須是數字。",
- "lines_per_page_required" => "每頁行數是必填字段。",
- "locale" => "Localisation",
- "locale_configuration" => "Localisation Configuration",
- "locale_info" => "Localisation Configuration Information",
- "location" => "庫存",
- "location_configuration" => "庫存位置",
- "location_info" => "位置配置信息",
- "login_form" => "登錄表單樣式",
- "logout" => "是否要在註銷前進行備份?點擊【確定】進行備份,點擊【取消】退出。",
- "mailchimp" => "郵件黑猩猩",
- "mailchimp_api_key" => "黑猩猩 API 密鑰",
- "mailchimp_configuration" => "黑猩猩配置",
- "mailchimp_key_successfully" => "API 密鑰有效。",
- "mailchimp_key_unsuccessfully" => "無效的 API 密鑰.",
- "mailchimp_lists" => "MailChimp 列表",
- "mailchimp_tooltip" => "單擊 API 密鑰的圖標。",
- "message" => "Message",
- "message_configuration" => "Message Configuration",
- "msg_msg" => "保存的短信",
- "msg_msg_placeholder" => "If you wish to use a SMS template save your message here. Otherwise leave the box blank.",
- "msg_pwd" => "SMS-API Password",
- "msg_pwd_required" => "SMS-API 密碼是必填字段",
- "msg_src" => "SMS-API 發件人 ID",
- "msg_src_required" => "SMS-API 發件人 ID 是必填字段",
- "msg_uid" => "SMS-API 用戶名",
- "msg_uid_required" => "SMS-API 用戶名是必填字段",
- "multi_pack_enabled" => "每件物品多個包裹",
- "no_risk" => "沒有安全/漏洞風險。",
- "none" => "none",
- "notify_alignment" => "通知彈出位置",
- "number_format" => "Number Format",
- "number_locale" => "Localisation",
- "number_locale_invalid" => "輸入的區域設置無效。檢查工具提示中的鏈接以查找有效的語言環境。",
- "number_locale_required" => "數字語言是必填字段。",
- "number_locale_tooltip" => "通過此鏈接找到合適的語言環境。",
- "os_timezone" => "OSPOS 時區:",
- "ospos_info" => "OSPOS 安裝信息",
- "payment_options_order" => "付款選項訂單",
- "perm_risk" => "不正確的權限使該軟件面臨風險。",
- "phone" => "電話",
- "phone_required" => "公司電話為必填.",
- "print_bottom_margin" => "保證金底部",
- "print_bottom_margin_number" => "底部邊距必須是數字。",
- "print_bottom_margin_required" => "底部邊距是必填字段。",
- "print_delay_autoreturn" => "自動返回銷售延遲",
- "print_delay_autoreturn_number" => "自動返回銷售延遲是必填字段。",
- "print_delay_autoreturn_required" => "自動返回銷售延遲必須是一個數字。",
- "print_footer" => "打印瀏覽器頁腳",
- "print_header" => "打印瀏覽器標題",
- "print_left_margin" => "左邊界",
- "print_left_margin_number" => "左邊距必須是一個數字。",
- "print_left_margin_required" => "左邊距是必填字段。",
- "print_receipt_check_behaviour" => "打印收據複選框",
- "print_receipt_check_behaviour_always" => "始終檢查",
- "print_receipt_check_behaviour_last" => "記住上次選擇",
- "print_receipt_check_behaviour_never" => "始終未選中",
- "print_right_margin" => "右邊界",
- "print_right_margin_number" => "邊距右邊必須是一個數字。",
- "print_right_margin_required" => "右邊距是必填字段。",
- "print_silently" => "顯示打印對話框",
- "print_top_margin" => "上邊界",
- "print_top_margin_number" => "邊距頂部必須是一個數字。",
- "print_top_margin_required" => "邊距頂部是必填字段。",
- "quantity_decimals" => "數量小數",
- "quick_cash_enable" => "",
- "quote_default_comments" => "默認報價註釋",
- "receipt" => "收據",
- "receipt_category" => "",
- "receipt_configuration" => "收據打印設置",
- "receipt_default" => "Default",
- "receipt_font_size" => "字體大小",
- "receipt_font_size_number" => "字體大小必須是數字。",
- "receipt_font_size_required" => "字體大小是必填字段。",
- "receipt_info" => "收據配置信息",
- "receipt_printer" => "票據打印機",
- "receipt_short" => "簡短",
- "receipt_show_company_name" => "顯示公司名稱",
- "receipt_show_description" => "顯示說明",
- "receipt_show_serialnumber" => "顯示序列號",
- "receipt_show_tax_ind" => "顯示稅收指標",
- "receipt_show_taxes" => "顯示稅金",
- "receipt_show_total_discount" => "顯示總折扣",
- "receipt_template" => "收據模板",
- "receiving_calculate_average_price" => "計算平均值價格(收貨)",
- "recv_invoice_format" => "收據發票格式",
- "register_mode_default" => "默認註冊模式",
- "report_an_issue" => "問題回報",
- "return_policy_required" => "退換貨政策為必填.",
- "reward" => "獎勵",
- "reward_configuration" => "獎勵配置",
- "right" => "Right",
- "sales_invoice_format" => "銷售發票格式",
- "sales_quote_format" => "銷售報價格式",
- "mailpath_invalid" => "",
- "saved_successfully" => "組態設置儲存成功.",
- "saved_unsuccessfully" => "組態設置儲存失敗.",
- "security_issue" => "安全漏洞警告",
- "server_notice" => "請使用以下信息進行問題報告。",
- "service_charge" => "",
- "show_due_enable" => "",
- "show_office_group" => "顯示辦公室圖標",
- "statistics" => "Send statistics",
- "statistics_tooltip" => "發送統計數據用於開發和功能改進目的。",
- "stock_location" => "倉庫地址",
- "stock_location_duplicate" => "庫存位置必須是唯一的。",
- "stock_location_invalid_chars" => "庫存位置不能包含“_”。",
- "stock_location_required" => "庫存位置是必填字段。",
- "suggestions_fifth_column" => "",
- "suggestions_first_column" => "第 1 欄",
- "suggestions_fourth_column" => "",
- "suggestions_layout" => "搜索建議佈局",
- "suggestions_second_column" => "第 2 欄",
- "suggestions_third_column" => "第 3 欄",
- "system_conf" => "設置和配置",
- "system_info" => "System Info",
- "table" => "桌子",
- "table_configuration" => "表配置",
- "takings_printer" => "Takings Printer",
- "tax" => "稅",
- "tax_category" => "",
- "tax_category_duplicate" => "",
- "tax_category_invalid_chars" => "",
- "tax_category_required" => "",
- "tax_category_used" => "",
- "tax_configuration" => "",
- "tax_decimals" => "稅收小數",
- "tax_id" => "",
- "tax_included" => "含稅",
- "theme" => "Theme",
- "theme_preview" => "",
- "thousands_separator" => "千位分隔符",
- "timezone" => "時區",
- "timezone_error" => "",
- "top" => "Top",
- "use_destination_based_tax" => "",
- "user_timezone" => "本地時區:",
- "website" => "網站",
- "wholesale_markup" => "",
- "work_order_enable" => "",
- "work_order_format" => "",
+ 'address' => '公司地址',
+ 'address_required' => '公司地址為必填.',
+ 'all_set' => '所有文件權限設置正確!',
+ 'allow_duplicate_barcodes' => '允許重複的條碼',
+ 'apostrophe' => '撇號',
+ 'backup_button' => 'Backup',
+ 'backup_database' => 'Backup Database',
+ 'barcode' => '條碼',
+ 'barcode_company' => '公司名稱',
+ 'barcode_configuration' => '條碼配置',
+ 'barcode_content' => '條碼內容',
+ 'barcode_first_row' => '第 1 行',
+ 'barcode_font' => 'Font',
+ 'barcode_formats' => '輸入格式',
+ 'barcode_generate_if_empty' => '為空時生成.',
+ 'barcode_height' => '高度(像素)',
+ 'barcode_id' => 'Item Id/Name',
+ 'barcode_info' => '條碼配置信息',
+ 'barcode_layout' => '條碼佈局',
+ 'barcode_name' => '客戶',
+ 'barcode_number' => 'UPC/EAN/ISBN',
+ 'barcode_number_in_row' => '行數',
+ 'barcode_page_cellspacing' => '顯示頁面單元格間距.',
+ 'barcode_page_width' => '顯示頁面寬度',
+ 'barcode_price' => '價格',
+ 'barcode_second_row' => 'Row 4',
+ 'barcode_third_row' => 'Row 5',
+ 'barcode_tooltip' => '警告:此功能可能會導致導入或創建重複項。如果您不想要重複的條形碼,請不要使用。',
+ 'barcode_type' => '條碼類型',
+ 'barcode_width' => '寬度(像素)',
+ 'bottom' => '底部',
+ 'cash_button' => '',
+ 'cash_button_1' => '',
+ 'cash_button_2' => '',
+ 'cash_button_3' => '',
+ 'cash_button_4' => '',
+ 'cash_button_5' => '',
+ 'cash_button_6' => '',
+ 'cash_decimals' => '現金小數',
+ 'cash_decimals_tooltip' => '如果現金小數和貨幣小數相同,則不會發生現金觸發的四捨五入,除非現金四捨五入設置為五分之一。',
+ 'cash_rounding' => '現金四捨五入',
+ 'category_dropdown' => '下拉式顯示類別',
+ 'center' => '中心',
+ 'change_apperance_tooltip' => '',
+ 'comma' => '逗號',
+ 'company' => '公司名稱',
+ 'company_avatar' => '',
+ 'company_change_image' => '更改圖像',
+ 'company_logo' => '公司標誌',
+ 'company_remove_image' => '刪除圖像',
+ 'company_required' => '公司名稱為必填',
+ 'company_select_image' => '選擇圖像',
+ 'company_website_url' => '公司網址格式錯誤 (http://...).',
+ 'country_codes' => '國家代碼',
+ 'country_codes_tooltip' => '以逗號分隔的國家/地區代碼列表,用於提名地址查找。',
+ 'currency_code' => '幣別代碼',
+ 'currency_decimals' => '貨幣小數',
+ 'currency_symbol' => '貨幣符號',
+ 'current_employee_only' => '',
+ 'customer_reward' => '報酬',
+ 'customer_reward_duplicate' => '獎勵必須是唯一的。',
+ 'customer_reward_enable' => '啟用客戶獎勵',
+ 'customer_reward_invalid_chars' => '獎勵不能包含“_”',
+ 'customer_reward_required' => '獎勵是必填字段',
+ 'customer_sales_tax_support' => '',
+ 'date_or_time_format' => '日期和時間過濾器',
+ 'datetimeformat' => '日期時間格式',
+ 'decimal_point' => '小數點位數',
+ 'default_barcode_font_size_number' => '默認條形碼字體大小必須是數字。',
+ 'default_barcode_font_size_required' => '默認條碼字體大小是必填字段。',
+ 'default_barcode_height_number' => '默認條碼高度必須是數字。',
+ 'default_barcode_height_required' => '默認條碼高度是必填字段。',
+ 'default_barcode_num_in_row_number' => '行中的默認條形碼編號必須是數字。',
+ 'default_barcode_num_in_row_required' => '行中的默認條形碼編號是必填字段。',
+ 'default_barcode_page_cellspacing_number' => '默認條碼頁 Cellspacing 必須是一個數字。',
+ 'default_barcode_page_cellspacing_required' => '默認條碼頁單元格間距是必填字段。',
+ 'default_barcode_page_width_number' => '默認條形碼頁面寬度必須是數字。',
+ 'default_barcode_page_width_required' => '默認條碼頁面寬度為必填字段.',
+ 'default_barcode_width_number' => '默認條碼寬度必須是數字。',
+ 'default_barcode_width_required' => '默認條碼寬度是必填字段。',
+ 'default_item_columns' => '默認可見項目列',
+ 'default_origin_tax_code' => '默認原產地稅碼',
+ 'default_receivings_discount' => '默認收款折扣',
+ 'default_receivings_discount_number' => '默認收款折扣必須是一個數字。',
+ 'default_receivings_discount_required' => '默認收款折扣是必填字段。',
+ 'default_sales_discount' => 'Default Sales Discount %',
+ 'default_sales_discount_number' => '默認銷售折扣必須是數字。',
+ 'default_sales_discount_required' => '默認銷售折扣是必填字段.',
+ 'default_tax_category' => '默認稅種',
+ 'default_tax_code' => '默認稅碼',
+ 'default_tax_jurisdiction' => '默認稅收管轄權',
+ 'default_tax_name_number' => '默認稅名必須是字符串。',
+ 'default_tax_name_required' => 'The default tax name is a required field.',
+ 'default_tax_rate' => '預設稅率 %',
+ 'default_tax_rate_1' => '稅率 1',
+ 'default_tax_rate_2' => '稅率 2',
+ 'default_tax_rate_3' => '',
+ 'default_tax_rate_number' => '預設稅率必需為數字.',
+ 'default_tax_rate_required' => '預設稅率為必填.',
+ 'derive_sale_quantity' => '允許派生銷售數量',
+ 'derive_sale_quantity_tooltip' => '如果選中,則將為按擴展金額訂購的商品提供新的商品類型',
+ 'dinner_table' => '餐桌',
+ 'dinner_table_duplicate' => '餐桌必須唯一.',
+ 'dinner_table_enable' => '啟用餐桌',
+ 'dinner_table_invalid_chars' => "餐桌名稱不能包含 '_'.",
+ 'dinner_table_required' => '餐桌是必填欄位.',
+ 'dot' => '點',
+ 'email' => '郵箱',
+ 'email_configuration' => 'Email Configuration',
+ 'email_mailpath' => '發送郵件的路徑',
+ 'email_protocol' => 'Protocol',
+ 'email_receipt_check_behaviour' => '電子郵件收據複選框',
+ 'email_receipt_check_behaviour_always' => '始終檢查',
+ 'email_receipt_check_behaviour_last' => '記住上次選擇',
+ 'email_receipt_check_behaviour_never' => '始終未選中',
+ 'email_smtp_crypto' => 'SMTP 加密',
+ 'email_smtp_host' => 'SMTP Server',
+ 'email_smtp_pass' => 'SMTP Password',
+ 'email_smtp_port' => 'SMTP Port',
+ 'email_smtp_timeout' => 'SMTP 逾時',
+ 'email_smtp_user' => 'SMTP 用戶名',
+ 'enable_avatar' => '',
+ 'enable_avatar_tooltip' => '',
+ 'enable_dropdown_tooltip' => '',
+ 'enable_new_look' => '',
+ 'enable_right_bar' => '',
+ 'enable_right_bar_tooltip' => '',
+ 'enforce_privacy' => '保護隱私',
+ 'enforce_privacy_tooltip' => '保護客戶隱私,在他們的數據被刪除的情況下強制執行數據擾亂',
+ 'fax' => '傳真',
+ 'file_perm' => '檔案權限有問題,請修正後重刷網頁.',
+ 'financial_year' => '財務年起始',
+ 'financial_year_apr' => '4月1日',
+ 'financial_year_aug' => '8月1日',
+ 'financial_year_dec' => '12月1日',
+ 'financial_year_feb' => '2月1日',
+ 'financial_year_jan' => '1月1日',
+ 'financial_year_jul' => '7月1日',
+ 'financial_year_jun' => '6月1日',
+ 'financial_year_mar' => '3月1日',
+ 'financial_year_may' => '5月1日',
+ 'financial_year_nov' => '11月1日',
+ 'financial_year_oct' => '10月1日',
+ 'financial_year_sep' => '9月1日',
+ 'floating_labels' => '浮動標籤',
+ 'gcaptcha_enable' => '登入檢核碼(reCAPTCHA)',
+ 'gcaptcha_secret_key' => 'reCAPTCHA 密鑰',
+ 'gcaptcha_secret_key_required' => 'reCAPTCHA 密鑰是必填字段',
+ 'gcaptcha_site_key' => 'reCAPTCHA 站點密鑰',
+ 'gcaptcha_site_key_required' => 'reCAPTCHA 站點密鑰是必填字段',
+ 'gcaptcha_tooltip' => '登入使用Google reCAPTCHA保護,點選圖標進行 API key 配對.',
+ 'general' => '一般',
+ 'general_configuration' => '一般設定',
+ 'giftcard_number' => '禮物卡號碼',
+ 'giftcard_random' => '亂數產生',
+ 'giftcard_series' => '序列產生',
+ 'image_allowed_file_types' => '允許圖檔類型',
+ 'image_max_height_tooltip' => '上傳圖檔最大高度(px).',
+ 'image_max_size_tooltip' => '上傳圖檔大小上限(kb).',
+ 'image_max_width_tooltip' => '上傳圖檔最大寬度(px).',
+ 'image_restrictions' => '上傳圖檔限制',
+ 'include_hsn' => '包括對 HSN 代碼的支持',
+ 'info' => '儲存組態',
+ 'info_configuration' => '儲存組態',
+ 'input_groups' => '輸入組',
+ 'integrations' => '整合',
+ 'integrations_configuration' => '第三方整合',
+ 'invoice' => '發票',
+ 'invoice_configuration' => '發票打印設置',
+ 'invoice_default_comments' => '默認發票註釋',
+ 'invoice_email_message' => '發票電子郵件模板',
+ 'invoice_enable' => '啟用發票',
+ 'invoice_printer' => '發票打印機',
+ 'invoice_type' => '發票類型',
+ 'is_readable' => '可讀取但權限不正確,請設定為 640 或 660 後重整.',
+ 'is_writable' => '可寫,但權限設置不正確。請將其設置為 750 並刷新。',
+ 'item_markup' => '',
+ 'jsprintsetup_required' => 'Warning! This disabled functionality will only work if you have the FireFox jsPrintSetup addon installed. Save anyway?',
+ 'language' => '語言',
+ 'last_used_invoice_number' => '上次使用的發票編號',
+ 'last_used_quote_number' => '上次使用的報價編號',
+ 'last_used_work_order_number' => '上次使用的 W / O 編號',
+ 'left' => '剩下',
+ 'license' => '許可証',
+ 'license_configuration' => '許可聲明',
+ 'line_sequence' => '行序',
+ 'lines_per_page' => 'Lines Per Page',
+ 'lines_per_page_number' => '每頁行數必須是數字。',
+ 'lines_per_page_required' => '每頁行數是必填字段。',
+ 'locale' => 'Localisation',
+ 'locale_configuration' => 'Localisation Configuration',
+ 'locale_info' => 'Localisation Configuration Information',
+ 'location' => '庫存',
+ 'location_configuration' => '庫存位置',
+ 'location_info' => '位置配置信息',
+ 'login_form' => '登錄表單樣式',
+ 'logout' => '是否要在註銷前進行備份?點擊【確定】進行備份,點擊【取消】退出。',
+ 'mailchimp' => '郵件黑猩猩',
+ 'mailchimp_api_key' => '黑猩猩 API 密鑰',
+ 'mailchimp_configuration' => '黑猩猩配置',
+ 'mailchimp_key_successfully' => 'API 密鑰有效。',
+ 'mailchimp_key_unsuccessfully' => '無效的 API 密鑰.',
+ 'mailchimp_lists' => 'MailChimp 列表',
+ 'mailchimp_tooltip' => '單擊 API 密鑰的圖標。',
+ 'message' => 'Message',
+ 'message_configuration' => 'Message Configuration',
+ 'msg_msg' => '保存的短信',
+ 'msg_msg_placeholder' => 'If you wish to use a SMS template save your message here. Otherwise leave the box blank.',
+ 'msg_pwd' => 'SMS-API Password',
+ 'msg_pwd_required' => 'SMS-API 密碼是必填字段',
+ 'msg_src' => 'SMS-API 發件人 ID',
+ 'msg_src_required' => 'SMS-API 發件人 ID 是必填字段',
+ 'msg_uid' => 'SMS-API 用戶名',
+ 'msg_uid_required' => 'SMS-API 用戶名是必填字段',
+ 'multi_pack_enabled' => '每件物品多個包裹',
+ 'no_risk' => '沒有安全/漏洞風險。',
+ 'none' => 'none',
+ 'notify_alignment' => '通知彈出位置',
+ 'number_format' => 'Number Format',
+ 'number_locale' => 'Localisation',
+ 'number_locale_invalid' => '輸入的區域設置無效。檢查工具提示中的鏈接以查找有效的語言環境。',
+ 'number_locale_required' => '數字語言是必填字段。',
+ 'number_locale_tooltip' => '通過此鏈接找到合適的語言環境。',
+ 'os_timezone' => 'OSPOS 時區:',
+ 'ospos_info' => 'OSPOS 安裝信息',
+ 'payment_options_order' => '付款選項訂單',
+ 'payment_reference_code_length_limits' => '付款參考代碼
長度限制',
+ 'payment_reference_code_length_max_label' => '最大',
+ 'payment_reference_code_length_min_label' => '最小',
+ 'perm_risk' => '不正確的權限使該軟件面臨風險。',
+ 'phone' => '電話',
+ 'phone_required' => '公司電話為必填.',
+ 'print_bottom_margin' => '保證金底部',
+ 'print_bottom_margin_number' => '底部邊距必須是數字。',
+ 'print_bottom_margin_required' => '底部邊距是必填字段。',
+ 'print_delay_autoreturn' => '自動返回銷售延遲',
+ 'print_delay_autoreturn_number' => '自動返回銷售延遲是必填字段。',
+ 'print_delay_autoreturn_required' => '自動返回銷售延遲必須是一個數字。',
+ 'print_footer' => '打印瀏覽器頁腳',
+ 'print_header' => '打印瀏覽器標題',
+ 'print_left_margin' => '左邊界',
+ 'print_left_margin_number' => '左邊距必須是一個數字。',
+ 'print_left_margin_required' => '左邊距是必填字段。',
+ 'print_receipt_check_behaviour' => '打印收據複選框',
+ 'print_receipt_check_behaviour_always' => '始終檢查',
+ 'print_receipt_check_behaviour_last' => '記住上次選擇',
+ 'print_receipt_check_behaviour_never' => '始終未選中',
+ 'print_right_margin' => '右邊界',
+ 'print_right_margin_number' => '邊距右邊必須是一個數字。',
+ 'print_right_margin_required' => '右邊距是必填字段。',
+ 'print_silently' => '顯示打印對話框',
+ 'print_top_margin' => '上邊界',
+ 'print_top_margin_number' => '邊距頂部必須是一個數字。',
+ 'print_top_margin_required' => '邊距頂部是必填字段。',
+ 'quantity_decimals' => '數量小數',
+ 'quick_cash_enable' => '',
+ 'quote_default_comments' => '默認報價註釋',
+ 'receipt' => '收據',
+ 'receipt_category' => '',
+ 'receipt_configuration' => '收據打印設置',
+ 'receipt_default' => 'Default',
+ 'receipt_font_size' => '字體大小',
+ 'receipt_font_size_number' => '字體大小必須是數字。',
+ 'receipt_font_size_required' => '字體大小是必填字段。',
+ 'receipt_info' => '收據配置信息',
+ 'receipt_printer' => '票據打印機',
+ 'receipt_short' => '簡短',
+ 'receipt_show_company_name' => '顯示公司名稱',
+ 'receipt_show_description' => '顯示說明',
+ 'receipt_show_serialnumber' => '顯示序列號',
+ 'receipt_show_tax_ind' => '顯示稅收指標',
+ 'receipt_show_taxes' => '顯示稅金',
+ 'receipt_show_total_discount' => '顯示總折扣',
+ 'receipt_template' => '收據模板',
+ 'receiving_calculate_average_price' => '計算平均值價格(收貨)',
+ 'recv_invoice_format' => '收據發票格式',
+ 'register_mode_default' => '默認註冊模式',
+ 'report_an_issue' => '問題回報',
+ 'return_policy_required' => '退換貨政策為必填.',
+ 'reward' => '獎勵',
+ 'reward_configuration' => '獎勵配置',
+ 'right' => 'Right',
+ 'sales_invoice_format' => '銷售發票格式',
+ 'sales_quote_format' => '銷售報價格式',
+ 'mailpath_invalid' => '',
+ 'saved_successfully' => '組態設置儲存成功.',
+ 'saved_unsuccessfully' => '組態設置儲存失敗.',
+ 'security_issue' => '安全漏洞警告',
+ 'server_notice' => '請使用以下信息進行問題報告。',
+ 'service_charge' => '',
+ 'show_due_enable' => '',
+ 'show_office_group' => '顯示辦公室圖標',
+ 'statistics' => 'Send statistics',
+ 'statistics_tooltip' => '發送統計數據用於開發和功能改進目的。',
+ 'stock_location' => '倉庫地址',
+ 'stock_location_duplicate' => '庫存位置必須是唯一的。',
+ 'stock_location_invalid_chars' => '庫存位置不能包含“_”。',
+ 'stock_location_required' => '庫存位置是必填字段。',
+ 'suggestions_fifth_column' => '',
+ 'suggestions_first_column' => '第 1 欄',
+ 'suggestions_fourth_column' => '',
+ 'suggestions_layout' => '搜索建議佈局',
+ 'suggestions_second_column' => '第 2 欄',
+ 'suggestions_third_column' => '第 3 欄',
+ 'system_conf' => '設置和配置',
+ 'system_info' => 'System Info',
+ 'table' => '桌子',
+ 'table_configuration' => '表配置',
+ 'takings_printer' => 'Takings Printer',
+ 'tax' => '稅',
+ 'tax_category' => '',
+ 'tax_category_duplicate' => '',
+ 'tax_category_invalid_chars' => '',
+ 'tax_category_required' => '',
+ 'tax_category_used' => '',
+ 'tax_configuration' => '',
+ 'tax_decimals' => '稅收小數',
+ 'tax_id' => '',
+ 'tax_included' => '含稅',
+ 'theme' => 'Theme',
+ 'theme_preview' => '',
+ 'thousands_separator' => '千位分隔符',
+ 'timezone' => '時區',
+ 'timezone_error' => '',
+ 'top' => 'Top',
+ 'use_destination_based_tax' => '',
+ 'user_timezone' => '本地時區:',
+ 'website' => '網站',
+ 'wholesale_markup' => '',
+ 'work_order_enable' => '',
+ 'work_order_format' => '',
];
diff --git a/app/Language/zh-Hant/Login.php b/app/Language/zh-Hant/Login.php
index 22b500516..cc8614fdc 100644
--- a/app/Language/zh-Hant/Login.php
+++ b/app/Language/zh-Hant/Login.php
@@ -1,25 +1,30 @@
"我不是機器人。",
- "go" => "登入",
- "invalid_gcaptcha" => "請確認您不是機器人。",
- "invalid_installation" => "安裝不正確,請檢查您的php.ini文件。",
- "invalid_username_and_password" => "帳號或密碼錯誤。",
- "login" => "登入",
- "logout" => "登出",
- "migration_needed" => "登錄後將開始向 {0} 的數據庫遷移。",
- "migration_required" => "",
- "migration_auth_message" => "",
- "migration_initializing" => "",
- "migration_running" => "",
- "migration_complete" => "",
- "migration_complete_login" => "",
- "migration_failed" => "",
- "migration_error_connection" => "",
- "migration_complete_redirect" => "",
- "password" => "密碼",
- "required_username" => "",
- "username" => "帳號",
- "welcome" => "歡迎來到 {0}!",
+ "gcaptcha" => "我不是機器人。",
+ "go" => "登入",
+ "initialization_message" => "",
+ "initialization_required" => "",
+ "initialize" => "",
+ "invalid_gcaptcha" => "請確認您不是機器人。",
+ "invalid_installation" => "安裝不正確,請檢查您的php.ini文件。",
+ "invalid_username_and_password" => "帳號或密碼錯誤。",
+ "login" => "登入",
+ "logout" => "登出",
+ "migrating_database" => "正在遷移資料庫",
+ "migration_auth_message" => "",
+ "migration_complete" => "",
+ "migration_complete_login" => "",
+ "migration_complete_migrate" => "資料庫遷移成功!",
+ "migration_complete_redirect" => "",
+ "migration_error_connection" => "",
+ "migration_failed" => "",
+ "migration_initializing" => "",
+ "migration_needed" => "登錄後將開始向 {0} 的數據庫遷移。",
+ "migration_required" => "",
+ "migration_running" => "",
+ "password" => "密碼",
+ "required_username" => "",
+ "username" => "帳號",
+ "welcome" => "歡迎來到 {0}!"
];
diff --git a/app/Language/zh-Hant/Sales.php b/app/Language/zh-Hant/Sales.php
index f7e78496d..aeb4c0a03 100644
--- a/app/Language/zh-Hant/Sales.php
+++ b/app/Language/zh-Hant/Sales.php
@@ -1,231 +1,235 @@
"現有積分",
- "rewards_package" => "獎賞",
- "rewards_remaining_balance" => "剩餘獎賞積分 ",
- "account_number" => "帳戶 #",
- "add_payment" => "新增付款",
- "amount_due" => "商品金額",
- "amount_tendered" => "已收帳款",
- "authorized_signature" => "授權簽名",
- "cancel_sale" => "取消銷售",
- "cash" => "現金",
- "cash_1" => "",
- "cash_2" => "",
- "cash_3" => "",
- "cash_4" => "",
- "cash_adjustment" => "現金調整",
- "cash_deposit" => "已預付金額",
- "cash_filter" => "現金",
- "change_due" => "更改到期日",
- "change_price" => "更改售價",
- "check" => "支票",
- "check_balance" => "查看餘額",
- "check_filter" => "查看選項",
- "close" => "",
- "comment" => "評論",
- "comments" => "評論",
- "company_name" => "",
- "complete" => "",
- "complete_sale" => "完成銷售",
- "confirm_cancel_sale" => "你確定要清除此筆銷售單?本單內的所有產品將被清除。",
- "confirm_delete" => "你確定要清除此銷售產品?",
- "confirm_restore" => "你確定要回復此銷售產品?",
- "credit" => "信用卡",
- "credit_deposit" => "預付卡",
- "credit_filter" => "信用卡",
- "current_table" => "",
- "customer" => "客戶",
- "customer_address" => "客戶地址",
- "customer_discount" => "折扣",
- "customer_email" => "客戶電郵地址",
- "customer_location" => "客戶所在地",
- "customer_mailchimp_status" => "MailChimp電子報行銷狀態",
- "customer_optional" => "到期付款需要",
- "customer_required" => "必需",
- "customer_total" => "總數",
- "customer_total_spent" => "",
- "daily_sales" => "",
- "date" => "日期",
- "date_range" => "日期範圍",
- "date_required" => "必需填上正確的日期.",
- "date_type" => "必需填寫日期.",
- "debit" => "簽帳卡",
- "debit_filter" => "",
- "delete" => "確認刪除",
- "delete_confirmation" => "你確定要刪除此銷售資料,這個動作不能還原.",
- "delete_entire_sale" => "刪除全部銷售資料",
- "delete_successful" => "您已成功刪除銷售資料.",
- "delete_unsuccessful" => "銷售資料刪除失敗.",
- "description_abbrv" => "倒序.",
- "discard" => "放棄",
- "discard_quote" => "",
- "discount" => "折扣 %",
- "discount_included" => "% 折扣",
- "discount_short" => "%",
- "due" => "由",
- "due_filter" => "由...選項",
- "edit" => "編輯",
- "edit_item" => "編輯產品",
- "edit_sale" => "編輯銷售資料",
- "email_receipt" => "Email 銷售單",
- "employee" => "員工",
- "entry" => "加入項目",
- "error_editing_item" => "編輯產品錯誤",
- "negative_price_invalid" => "",
- "negative_quantity_invalid" => "",
- "negative_discount_invalid" => "",
- "discount_percent_exceeds_100" => "",
- "discount_exceeds_item_total" => "",
- "negative_total_invalid" => "",
- "find_or_scan_item" => "查找/掃描商品",
- "find_or_scan_item_or_receipt" => "查找/掃描產品或收貨單",
- "giftcard" => "禮金券",
- "giftcard_balance" => "䄠金劵餘額",
- "giftcard_filter" => "",
- "giftcard_number" => "禮金券編號",
- "group_by_category" => "以類別分類",
- "group_by_type" => "以類型分類",
- "hsn" => "HSN",
- "id" => "銷售編號",
- "include_prices" => "包括價格?",
- "invoice" => "發票",
- "invoice_confirm" => "已傳送發票到",
- "invoice_enable" => "建立發票",
- "invoice_filter" => "發票選項",
- "invoice_no_email" => "此客戶沒有正確的電郵地址.",
- "invoice_number" => "發票編號#",
- "invoice_number_duplicate" => "重覆的發票號碼.",
- "invoice_sent" => "發票已發送到",
- "invoice_total" => "帳單總額",
- "invoice_type_custom_invoice" => "自定義發票",
- "invoice_type_custom_tax_invoice" => "自定義稅務發票",
- "invoice_type_invoice" => "發票",
- "invoice_type_tax_invoice" => "稅務發票",
- "invoice_unsent" => "發票傳送失敗",
- "invoice_update" => "重新清點",
- "item_insufficient_of_stock" => "產品庫存不足.",
- "item_name" => "產品名稱",
- "item_number" => "產品 #",
- "item_out_of_stock" => "產品缺貨.",
- "key_browser" => "",
- "key_cancel" => "取消目前詢價/收據/銷售",
- "key_customer_search" => "搜尋顧客",
- "key_finish_quote" => "完成詢價/收據 尚未付款",
- "key_finish_sale" => "增加付款及完成收據/販售",
- "key_full" => "",
- "key_function" => "功能",
- "key_help" => "Shortcuts",
- "key_help_modal" => "Open Shortcuts Window",
- "key_in" => "",
- "key_item_search" => "Item Search",
- "key_out" => "",
- "key_payment" => "Add Payment",
- "key_print" => "",
- "key_restore" => "",
- "key_search" => "",
- "key_suspend" => "Suspend Current Sale",
- "key_suspended" => "Show Suspended Sales",
- "key_system" => "",
- "key_tendered" => "Edit Amount Tendered",
- "key_title" => "Sales Keyboard Shortcuts",
- "mc" => "",
- "mode" => "登記模式",
- "must_enter_numeric" => "已收帳款必須輸入數值.",
- "must_enter_numeric_giftcard" => "禮金券編號必須輸入數值.",
- "new_customer" => "新客戶",
- "new_item" => "新增產品",
- "no_description" => "沒有描述",
- "no_filter" => "全部",
- "no_items_in_cart" => "購物車中沒有任何產品.",
- "no_sales_to_display" => "沒有任何紀錄.",
- "none_selected" => "您還沒有選擇任何產品進行編輯.",
- "nontaxed_ind" => " . ",
- "not_authorized" => "此操作未經授權.",
- "one_or_multiple" => "銷售",
- "payment" => "付款方式",
- "payment_amount" => "總額",
- "payment_not_cover_total" => "付款金額不足.",
- "payment_type" => "銷售付款類別",
- "payments" => "",
- "payments_total" => "付款總額",
- "price" => "價格",
- "print_after_sale" => "出貨時打印收據",
- "quantity" => "數量",
- "quantity_less_than_reorder_level" => "警告!產品的庫存數量是不足的。您仍然可以處理銷售,但檢查您的庫存.",
- "quantity_less_than_zero" => "警告!產品的庫存數量是不足的。您仍然可以處理銷售,但檢查您的庫存.",
- "quantity_of_items" => "貨品數量",
- "quote" => "報價",
- "quote_number" => "報價單編號",
- "quote_number_duplicate" => "報價單編號必須獨有.",
- "quote_sent" => "報價單寄給",
- "quote_unsent" => "報價單發送敗失",
- "receipt" => "銷貨單",
- "receipt_no_email" => "此客戶沒有有效的電子郵件地址.",
- "receipt_number" => "銷售收據編號",
- "receipt_sent" => "發送收據",
- "receipt_unsent" => "收據未能發送",
- "refund" => "退款類型",
- "register" => "銷售登記",
- "remove_customer" => "移除客戶",
- "remove_discount" => "",
- "return" => "退貨",
- "rewards" => "積分",
- "rewards_balance" => "積分總數",
- "sale" => "銷售",
- "sale_by_invoice" => "發票銷售",
- "sale_for_customer" => "客戶:",
- "sale_time" => "時間",
- "sales_tax" => "銷售稅",
- "sales_total" => "",
- "select_customer" => "選擇客戶 (Optional)",
- "send_invoice" => "發送發票",
- "send_quote" => "發送報價",
- "send_receipt" => "發送收據",
- "send_work_order" => "發送訂單",
- "serial" => "序號",
- "service_charge" => "",
- "show_due" => "",
- "show_invoice" => "顯示發票",
- "show_receipt" => "顯示收據",
- "start_typing_customer_name" => "開始輸入客戶的名字...",
- "start_typing_item_name" => "開始輸入產品名或掃描條碼...",
- "stock" => "庫存",
- "stock_location" => "庫存地點",
- "sub_total" => "小計",
- "successfully_deleted" => "銷售資料成功刪除",
- "successfully_restored" => "您已成功還原",
- "successfully_suspended_sale" => "本銷售資料已經成功暫停.",
- "successfully_updated" => "銷售資料成功更新.",
- "suspend_sale" => "暫停銷售",
- "suspended_doc_id" => "文件",
- "suspended_sale_id" => "暫停銷售編號",
- "suspended_sales" => "已暫停銷售",
- "table" => "銷售表格",
- "takings" => "銷售收入",
- "tax" => "稅額",
- "tax_id" => "稅務編號",
- "tax_invoice" => "稅務發票",
- "tax_percent" => "稅率 %",
- "taxed_ind" => "t",
- "total" => "總計",
- "total_tax_exclusive" => "不含稅",
- "transaction_failed" => "銷售交易失敗.",
- "unable_to_add_item" => "無法增加出售產品",
- "unsuccessfully_deleted" => "銷售資料刪除失敗.",
- "unsuccessfully_restored" => "銷售還原失敗.",
- "unsuccessfully_suspended_sale" => "本銷售資料已經成功暫停.",
- "unsuccessfully_updated" => "銷售資料更新失敗.",
- "unsuspend" => "取消暫停銷售",
- "unsuspend_and_delete" => "取消暫停銷售並刪除",
- "update" => "編輯",
- "upi" => "UPI",
- "visa" => "",
- "wholesale" => "",
- "work_order" => "工作指示",
- "work_order_number" => "工作指示編號",
- "work_order_number_duplicate" => "工作編號重複.",
- "work_order_sent" => "發送工作指示",
- "work_order_unsent" => "工作指示發送失敗",
+ 'account_number' => '帳戶 #',
+ 'add_payment' => '新增付款',
+ 'amount_due' => '商品金額',
+ 'amount_tendered' => '已收帳款',
+ 'authorized_signature' => '授權簽名',
+ 'cancel_sale' => '取消銷售',
+ 'cash' => '現金',
+ 'cash_1' => '',
+ 'cash_2' => '',
+ 'cash_3' => '',
+ 'cash_4' => '',
+ 'cash_adjustment' => '現金調整',
+ 'cash_deposit' => '已預付金額',
+ 'cash_filter' => '現金',
+ 'change_due' => '更改到期日',
+ 'change_price' => '更改售價',
+ 'check' => '支票',
+ 'check_balance' => '查看餘額',
+ 'check_filter' => '查看選項',
+ 'close' => '',
+ 'comment' => '評論',
+ 'comments' => '評論',
+ 'company_name' => '',
+ 'complete' => '',
+ 'complete_sale' => '完成銷售',
+ 'confirm_cancel_sale' => '你確定要清除此筆銷售單?本單內的所有產品將被清除。',
+ 'confirm_delete' => '你確定要清除此銷售產品?',
+ 'confirm_restore' => '你確定要回復此銷售產品?',
+ 'credit' => '信用卡',
+ 'credit_deposit' => '預付卡',
+ 'credit_filter' => '信用卡',
+ 'current_table' => '',
+ 'customer' => '客戶',
+ 'customer_address' => '客戶地址',
+ 'customer_discount' => '折扣',
+ 'customer_email' => '客戶電郵地址',
+ 'customer_location' => '客戶所在地',
+ 'customer_mailchimp_status' => 'MailChimp電子報行銷狀態',
+ 'customer_optional' => '到期付款需要',
+ 'customer_required' => '必需',
+ 'customer_total' => '總數',
+ 'customer_total_spent' => '',
+ 'customers_available_points' => '現有積分',
+ 'daily_sales' => '',
+ 'date' => '日期',
+ 'date_range' => '日期範圍',
+ 'date_required' => '必需填上正確的日期.',
+ 'date_type' => '必需填寫日期.',
+ 'debit' => '簽帳卡',
+ 'debit_filter' => '',
+ 'delete' => '確認刪除',
+ 'delete_confirmation' => '你確定要刪除此銷售資料,這個動作不能還原.',
+ 'delete_entire_sale' => '刪除全部銷售資料',
+ 'delete_successful' => '您已成功刪除銷售資料.',
+ 'delete_unsuccessful' => '銷售資料刪除失敗.',
+ 'description_abbrv' => '倒序.',
+ 'discard' => '放棄',
+ 'discard_quote' => '',
+ 'discount' => '折扣 %',
+ 'discount_exceeds_item_total' => '',
+ 'discount_included' => '% 折扣',
+ 'discount_percent_exceeds_100' => '',
+ 'discount_short' => '%',
+ 'due' => '由',
+ 'due_filter' => '由...選項',
+ 'edit' => '編輯',
+ 'edit_item' => '編輯產品',
+ 'edit_sale' => '編輯銷售資料',
+ 'email_receipt' => 'Email 銷售單',
+ 'employee' => '員工',
+ 'entry' => '加入項目',
+ 'error_editing_item' => '編輯產品錯誤',
+ 'find_or_scan_item' => '查找/掃描商品',
+ 'find_or_scan_item_or_receipt' => '查找/掃描產品或收貨單',
+ 'giftcard' => '禮金券',
+ 'giftcard_balance' => '䄠金劵餘額',
+ 'giftcard_filter' => '',
+ 'giftcard_number' => '禮金券編號',
+ 'group_by_category' => '以類別分類',
+ 'group_by_type' => '以類型分類',
+ 'hsn' => 'HSN',
+ 'id' => '銷售編號',
+ 'include_prices' => '包括價格?',
+ 'invoice' => '發票',
+ 'invoice_confirm' => '已傳送發票到',
+ 'invoice_enable' => '建立發票',
+ 'invoice_filter' => '發票選項',
+ 'invoice_no_email' => '此客戶沒有正確的電郵地址.',
+ 'invoice_number' => '發票編號#',
+ 'invoice_number_duplicate' => '重覆的發票號碼.',
+ 'invoice_sent' => '發票已發送到',
+ 'invoice_total' => '帳單總額',
+ 'invoice_type_custom_invoice' => '自定義發票',
+ 'invoice_type_custom_tax_invoice' => '自定義稅務發票',
+ 'invoice_type_invoice' => '發票',
+ 'invoice_type_tax_invoice' => '稅務發票',
+ 'invoice_unsent' => '發票傳送失敗',
+ 'invoice_update' => '重新清點',
+ 'item_insufficient_of_stock' => '產品庫存不足.',
+ 'item_name' => '產品名稱',
+ 'item_number' => '產品 #',
+ 'item_out_of_stock' => '產品缺貨.',
+ 'key_browser' => '',
+ 'key_cancel' => '取消目前詢價/收據/銷售',
+ 'key_customer_search' => '搜尋顧客',
+ 'key_finish_quote' => '完成詢價/收據 尚未付款',
+ 'key_finish_sale' => '增加付款及完成收據/販售',
+ 'key_full' => '',
+ 'key_function' => '功能',
+ 'key_help' => 'Shortcuts',
+ 'key_help_modal' => 'Open Shortcuts Window',
+ 'key_in' => '',
+ 'key_item_search' => 'Item Search',
+ 'key_out' => '',
+ 'key_payment' => 'Add Payment',
+ 'key_print' => '',
+ 'key_restore' => '',
+ 'key_search' => '',
+ 'key_suspend' => 'Suspend Current Sale',
+ 'key_suspended' => 'Show Suspended Sales',
+ 'key_system' => '',
+ 'key_tendered' => 'Edit Amount Tendered',
+ 'key_title' => 'Sales Keyboard Shortcuts',
+ 'mc' => '',
+ 'mode' => '登記模式',
+ 'must_enter_numeric' => '已收帳款必須輸入數值.',
+ 'must_enter_numeric_giftcard' => '禮金券編號必須輸入數值.',
+ 'must_enter_reference_code' => '必須輸入參考/檢索編號。',
+ 'negative_discount_invalid' => '',
+ 'negative_price_invalid' => '',
+ 'negative_quantity_invalid' => '',
+ 'negative_total_invalid' => '',
+ 'new_customer' => '新客戶',
+ 'new_item' => '新增產品',
+ 'no_description' => '沒有描述',
+ 'no_filter' => '全部',
+ 'no_items_in_cart' => '購物車中沒有任何產品.',
+ 'no_sales_to_display' => '沒有任何紀錄.',
+ 'none_selected' => '您還沒有選擇任何產品進行編輯.',
+ 'nontaxed_ind' => ' . ',
+ 'not_authorized' => '此操作未經授權.',
+ 'one_or_multiple' => '銷售',
+ 'payment' => '付款方式',
+ 'payment_amount' => '總額',
+ 'payment_not_cover_total' => '付款金額不足.',
+ 'payment_type' => '銷售付款類別',
+ 'payments' => '',
+ 'payments_total' => '付款總額',
+ 'price' => '價格',
+ 'print_after_sale' => '出貨時打印收據',
+ 'quantity' => '數量',
+ 'quantity_less_than_reorder_level' => '警告!產品的庫存數量是不足的。您仍然可以處理銷售,但檢查您的庫存.',
+ 'quantity_less_than_zero' => '警告!產品的庫存數量是不足的。您仍然可以處理銷售,但檢查您的庫存.',
+ 'quantity_of_items' => '貨品數量',
+ 'quote' => '報價',
+ 'quote_number' => '報價單編號',
+ 'quote_number_duplicate' => '報價單編號必須獨有.',
+ 'quote_sent' => '報價單寄給',
+ 'quote_unsent' => '報價單發送敗失',
+ 'receipt' => '銷貨單',
+ 'receipt_no_email' => '此客戶沒有有效的電子郵件地址.',
+ 'receipt_number' => '銷售收據編號',
+ 'receipt_sent' => '發送收據',
+ 'receipt_unsent' => '收據未能發送',
+ 'reference_code' => '付款參考代碼',
+ 'reference_code_invalid_characters' => '參考代碼只能包含字母和數字。',
+ 'reference_code_length_error' => '參考代碼長度無效。',
+ 'refund' => '退款類型',
+ 'register' => '銷售登記',
+ 'remove_customer' => '移除客戶',
+ 'remove_discount' => '',
+ 'return' => '退貨',
+ 'rewards' => '積分',
+ 'rewards_balance' => '積分總數',
+ 'rewards_package' => '獎賞',
+ 'rewards_remaining_balance' => '剩餘獎賞積分 ',
+ 'sale' => '銷售',
+ 'sale_by_invoice' => '發票銷售',
+ 'sale_for_customer' => '客戶:',
+ 'sale_time' => '時間',
+ 'sales_tax' => '銷售稅',
+ 'sales_total' => '',
+ 'select_customer' => '選擇客戶 (Optional)',
+ 'send_invoice' => '發送發票',
+ 'send_quote' => '發送報價',
+ 'send_receipt' => '發送收據',
+ 'send_work_order' => '發送訂單',
+ 'serial' => '序號',
+ 'service_charge' => '',
+ 'show_due' => '',
+ 'show_invoice' => '顯示發票',
+ 'show_receipt' => '顯示收據',
+ 'start_typing_customer_name' => '開始輸入客戶的名字...',
+ 'start_typing_item_name' => '開始輸入產品名或掃描條碼...',
+ 'stock' => '庫存',
+ 'stock_location' => '庫存地點',
+ 'sub_total' => '小計',
+ 'successfully_deleted' => '銷售資料成功刪除',
+ 'successfully_restored' => '您已成功還原',
+ 'successfully_suspended_sale' => '本銷售資料已經成功暫停.',
+ 'successfully_updated' => '銷售資料成功更新.',
+ 'suspend_sale' => '暫停銷售',
+ 'suspended_doc_id' => '文件',
+ 'suspended_sale_id' => '暫停銷售編號',
+ 'suspended_sales' => '已暫停銷售',
+ 'table' => '銷售表格',
+ 'takings' => '銷售收入',
+ 'tax' => '稅額',
+ 'tax_id' => '稅務編號',
+ 'tax_invoice' => '稅務發票',
+ 'tax_percent' => '稅率 %',
+ 'taxed_ind' => 't',
+ 'total' => '總計',
+ 'total_tax_exclusive' => '不含稅',
+ 'transaction_failed' => '銷售交易失敗.',
+ 'unable_to_add_item' => '無法增加出售產品',
+ 'unsuccessfully_deleted' => '銷售資料刪除失敗.',
+ 'unsuccessfully_restored' => '銷售還原失敗.',
+ 'unsuccessfully_suspended_sale' => '本銷售資料已經成功暫停.',
+ 'unsuccessfully_updated' => '銷售資料更新失敗.',
+ 'unsuspend' => '取消暫停銷售',
+ 'unsuspend_and_delete' => '取消暫停銷售並刪除',
+ 'update' => '編輯',
+ 'upi' => 'UPI',
+ 'visa' => '',
+ 'wholesale' => '',
+ 'work_order' => '工作指示',
+ 'work_order_number' => '工作指示編號',
+ 'work_order_number_duplicate' => '工作編號重複.',
+ 'work_order_sent' => '發送工作指示',
+ 'work_order_unsent' => '工作指示發送失敗',
];
diff --git a/app/Libraries/MY_Migration.php b/app/Libraries/MY_Migration.php
index 98177d770..a1bf1f256 100644
--- a/app/Libraries/MY_Migration.php
+++ b/app/Libraries/MY_Migration.php
@@ -4,6 +4,7 @@ namespace App\Libraries;
use CodeIgniter\Database\MigrationRunner;
use Config\Database;
+use Exception;
use stdClass;
class MY_Migration extends MigrationRunner
@@ -11,18 +12,18 @@ class MY_Migration extends MigrationRunner
/**
* @return bool
*/
- public function is_latest(): bool
+ public function isLatest(): bool
{
- $latest_version = $this->get_latest_migration();
- $current_version = $this->get_current_version();
+ $latestVersion = $this->getLatestMigration();
+ $currentVersion = $this->getCurrentVersion();
- return $latest_version === $current_version;
+ return $latestVersion === $currentVersion;
}
/**
* @return int
*/
- public function get_latest_migration(): int
+ public function getLatestMigration(): int
{
$migrations = $this->findMigrations();
return (int) basename(end($migrations)->version);
@@ -31,9 +32,10 @@ class MY_Migration extends MigrationRunner
/**
* Gets the database version number
*
- * @return int The version number of the last successfully run database migration.
+ * @return int|null The version number of the last successfully run database migration,
+ * 0 for a confirmed empty database, or null if the database is unavailable.
*/
- public static function get_current_version(): int
+ public static function getCurrentVersion(): ?int
{
try {
$db = Database::connect();
@@ -43,10 +45,10 @@ class MY_Migration extends MigrationRunner
$result = $builder->get()->getRow();
return $result ? (int) $result->version : 0;
}
- } catch (\Exception $e) {
- // Database not available yet (e.g. fresh install before schema).
+ } catch (Exception $e) {
+ // Database unavailable — distinct from a confirmed empty database.
// Catches mysqli_sql_exception which is not a DatabaseException.
- return 0;
+ return null;
}
return 0;
@@ -55,11 +57,11 @@ class MY_Migration extends MigrationRunner
/**
* @return void
*/
- public function migrate_to_ci4(): void
+ public function migrateToCI4(): void
{
- $ci3_migrations_version = $this->ci3_migrations_exists();
+ $ci3_migrations_version = $this->ci3MigrationsExists();
if ($ci3_migrations_version) {
- $this->migrate_table($ci3_migrations_version);
+ $this->migrateTable($ci3_migrations_version);
}
}
@@ -68,7 +70,7 @@ class MY_Migration extends MigrationRunner
*
* @return bool|string The version number of the last CI3 migration to run or false if the table is CI4 or doesn't exist
*/
- private function ci3_migrations_exists(): bool|string
+ private function ci3MigrationsExists(): bool|string
{
try {
if ($this->db->tableExists('migrations') && !$this->db->fieldExists('id', 'migrations')) {
@@ -77,7 +79,7 @@ class MY_Migration extends MigrationRunner
$result = $builder->get()->getRow();
return $result ? $result->version : false;
}
- } catch (\Exception $e) {
+ } catch (Exception $e) {
// Database not available yet (e.g. fresh install before schema).
// Catches mysqli_sql_exception which is not a DatabaseException.
}
@@ -89,11 +91,11 @@ class MY_Migration extends MigrationRunner
* @param string $ci3_migrations_version
* @return void
*/
- private function migrate_table(string $ci3_migrations_version): void
+ private function migrateTable(string $ci3_migrations_version): void
{
- $this->convert_table();
+ $this->convertTable();
- $available_migrations = $this->get_available_migrations();
+ $available_migrations = $this->getAvailableMigrations();
foreach ($available_migrations as $version => $path) {
if ($version > (int)$ci3_migrations_version) {
@@ -128,28 +130,28 @@ class MY_Migration extends MigrationRunner
/**
* @return array
*/
- private function get_available_migrations(): array
+ private function getAvailableMigrations(): array
{
$migrations = $this->findMigrations();
- $exploded_migrations = [];
+ $explodedMigrations = [];
foreach ($migrations as $migration) {
$version = substr($migration->uid, 0, 14);
$path = substr($migration->uid, 14);
- $exploded_migrations[$version] = $path;
+ $explodedMigrations[$version] = $path;
}
- ksort($exploded_migrations);
+ ksort($explodedMigrations);
- return $exploded_migrations;
+ return $explodedMigrations;
}
/**
* Converts the CI3 migrations database to CI4
* @return void
*/
- public function convert_table(): void
+ public function convertTable(): void
{
$forge = Database::forge();
$forge->dropTable('migrations');
diff --git a/app/Libraries/Sale_lib.php b/app/Libraries/Sale_lib.php
index 58c9ce233..b956ddbf9 100644
--- a/app/Libraries/Sale_lib.php
+++ b/app/Libraries/Sale_lib.php
@@ -558,10 +558,10 @@ class Sale_lib
/**
* Multiple Payments
*/
- public function get_payments(): array
+ public function getPayments(): array
{
if (!$this->session->get('sales_payments')) {
- $this->set_payments([]);
+ $this->setPayments([]);
}
return $this->session->get('sales_payments');
@@ -570,32 +570,34 @@ class Sale_lib
/**
* Multiple Payments
*/
- public function set_payments(array $payments_data): void
+ public function setPayments(array $payments_data): void
{
$this->session->set('sales_payments', $payments_data);
}
/**
- * Adds a new payment to the payments array or updates an existing one.
+ * Adds a new payment to the payment array or updates an existing one.
* It will also disable cash_mode if a non-qualifying payment type is added.
- * @param string $payment_id
- * @param string $payment_amount
- * @param int $cash_adjustment
+ * @param string $paymentId
+ * @param string $paymentAmount
+ * @param string|null $referenceCode
+ * @param int $cashAdjustment
*/
- public function add_payment(string $payment_id, string $payment_amount, int $cash_adjustment = CASH_ADJUSTMENT_FALSE): void
+ public function addPayment(string $paymentId, string $paymentAmount, ?string $referenceCode = null, int $cashAdjustment = CASH_ADJUSTMENT_FALSE): void
{
- $payments = $this->get_payments();
- if (isset($payments[$payment_id])) {
+ $payments = $this->getPayments();
+ if (isset($payments[$paymentId])) {
// payment_method already exists, add to payment_amount
- $payments[$payment_id]['payment_amount'] = bcadd($payments[$payment_id]['payment_amount'], $payment_amount);
+ $payments[$paymentId]['payment_amount'] = bcadd($payments[$paymentId]['payment_amount'], $paymentAmount);
} else {
// Add to existing array
$payment = [
- $payment_id => [
- 'payment_type' => $payment_id,
- 'payment_amount' => $payment_amount,
+ $paymentId => [
+ 'payment_type' => $paymentId,
+ 'payment_amount' => $paymentAmount,
'cash_refund' => 0,
- 'cash_adjustment' => $cash_adjustment
+ 'cash_adjustment' => $cashAdjustment,
+ 'reference_code' => $referenceCode,
]
];
@@ -603,12 +605,12 @@ class Sale_lib
}
if ($this->session->get('cash_mode')) {
- if ($this->session->get('cash_rounding') && $payment_id != lang('Sales.cash') && $payment_id != lang('Sales.cash_adjustment')) {
+ if ($this->session->get('cash_rounding') && $paymentId != lang('Sales.cash') && $paymentId != lang('Sales.cash_adjustment')) {
$this->session->set('cash_mode', CASH_MODE_FALSE);
}
}
- $this->set_payments($payments);
+ $this->setPayments($payments);
}
/**
@@ -616,11 +618,11 @@ class Sale_lib
*/
public function edit_payment(string $payment_id, float $payment_amount): bool
{
- $payments = $this->get_payments();
+ $payments = $this->getPayments();
if (isset($payments[$payment_id])) {
$payments[$payment_id]['payment_type'] = $payment_id;
$payments[$payment_id]['payment_amount'] = $payment_amount;
- $this->set_payments($payments);
+ $this->setPayments($payments);
return true;
}
@@ -635,7 +637,7 @@ class Sale_lib
*/
public function delete_payment(string $payment_id): void
{
- $payments = $this->get_payments();
+ $payments = $this->getPayments();
$decoded_payment_id = urldecode($payment_id);
unset($payments[$decoded_payment_id]);
@@ -651,7 +653,7 @@ class Sale_lib
unset($payments[lang('Sales.cash')]);
}
}
- $this->set_payments($payments);
+ $this->setPayments($payments);
}
/**
@@ -671,7 +673,7 @@ class Sale_lib
$subtotal = '0.0';
$cash_mode_eligible = CASH_MODE_TRUE;
- foreach ($this->get_payments() as $payments) {
+ foreach ($this->getPayments() as $payments) {
if (!$payments['cash_adjustment']) {
$subtotal = bcadd($payments['payment_amount'], $subtotal);
}
@@ -1386,7 +1388,7 @@ class Sale_lib
// Now load payments
foreach ($this->sale->get_sale_payments($sale_id)->getResult() as $row) {
- $this->add_payment($row->payment_type, $row->payment_amount, $row->cash_adjustment);
+ $this->addPayment($row->payment_type, $row->payment_amount, $row->reference_code ?? null, $row->cash_adjustment);
}
$this->set_customer($this->sale->get_customer($sale_id)->person_id);
diff --git a/app/Models/Giftcard.php b/app/Models/Giftcard.php
index ffa485666..699e1b901 100644
--- a/app/Models/Giftcard.php
+++ b/app/Models/Giftcard.php
@@ -106,15 +106,15 @@ class Giftcard extends Model
/**
* Gets a giftcard id given a giftcard number
*/
- public function get_giftcard_id(string $giftcard_number): bool
+ public function getGiftcardId(string $giftcardNumber): int|false
{
$builder = $this->db->table('giftcards');
- $builder->where('giftcard_number', $giftcard_number);
+ $builder->where('giftcard_number', $giftcardNumber);
$builder->where('deleted', 0);
$query = $builder->get();
- if ($query->getNumRows() == 1) { // TODO: ===
+ if ($query->getNumRows() === 1) {
return $query->getRow()->giftcard_id;
}
@@ -291,7 +291,7 @@ class Giftcard extends Model
*/
public function get_giftcard_value(string $giftcard_number): float // TODO: we may need to do a search for all float values and for currencies cast them to strings at the point where we get them from the database.
{
- if (!$this->exists($this->get_giftcard_id($giftcard_number))) {
+ if (!$this->exists($this->getGiftcardId($giftcard_number))) {
return 0;
}
@@ -349,7 +349,7 @@ class Giftcard extends Model
*/
public function get_giftcard_customer(string $giftcard_number): int|null
{
- if (!$this->exists($this->get_giftcard_id($giftcard_number))) {
+ if (!$this->exists($this->getGiftcardId($giftcard_number))) {
return 0;
}
diff --git a/app/Models/Sale.php b/app/Models/Sale.php
index 0e5ddffe2..4696310eb 100644
--- a/app/Models/Sale.php
+++ b/app/Models/Sale.php
@@ -77,7 +77,8 @@ class Sale extends Model
MAX(IFnull(payments.sale_payment_amount, 0)) AS amount_tendered,
(MAX(payments.sale_payment_amount)) - ($sale_total) AS change_due,
" . '
- MAX(payments.payment_type) AS payment_type';
+ MAX(payments.payment_type) AS payment_type,
+ MAX(payments.reference_code) AS reference_code';
$builder = $this->db->table('sales_items AS sales_items');
$builder->select($sql);
@@ -94,7 +95,7 @@ class Sale extends Model
$builder->where('sales.sale_id', $sale_id);
- $builder->groupBy('sales.sale_id');
+ $builder->groupBy('sales.sale_id, payments.reference_code');
$builder->orderBy('sales.sale_time', 'asc');
return $builder->get();
@@ -481,7 +482,8 @@ class Sale extends Model
'payment_amount' => $payment_amount,
'cash_refund' => $cash_refund,
'cash_adjustment' => $cash_adjustment,
- 'employee_id' => $employee_id
+ 'employee_id' => $employee_id,
+ 'reference_code' => $payment['reference_code'] ?? null,
];
$success = $builder->insert($sales_payments_data);
} elseif ($payment_id != NEW_ENTRY) {
@@ -516,19 +518,19 @@ class Sale extends Model
* @throws ReflectionException
*/
public function save_value(
- int $sale_id,
- string &$sale_status,
- array &$items,
- int $customer_id,
- int $employee_id,
- string $comment,
+ int $saleId,
+ string &$saleStatus,
+ array &$items,
+ int $customerId,
+ int $employeeId,
+ string $comment,
?string $invoice_number,
?string $work_order_number,
?string $quote_number,
- int $sale_type,
- ?array $payments,
- ?int $dinner_table_id,
- ?array &$sales_taxes
+ int $sale_type,
+ ?array $payments,
+ ?int $dinner_table_id,
+ ?array &$sales_taxes
): int { // TODO: this method returns the sale_id but the override is expecting it to return a bool. The signature needs to be reworked. Generally when there are more than 3 maybe 4 parameters, there's a good chance that an object needs to be passed rather than so many params.
$config = config(OSPOS::class)->settings;
$attribute = model(Attribute::class);
@@ -539,8 +541,8 @@ class Sale extends Model
$item_quantity = model(Item_quantity::class);
- if ($sale_id != NEW_ENTRY) {
- $this->clear_suspended_sale_detail($sale_id);
+ if ($saleId != NEW_ENTRY) {
+ $this->clear_suspended_sale_detail($saleId);
}
if (count($items) == 0) { // TODO: ===
@@ -549,10 +551,10 @@ class Sale extends Model
$sales_data = [
'sale_time' => date('Y-m-d H:i:s'),
- 'customer_id' => $customer->exists($customer_id) ? $customer_id : null,
- 'employee_id' => $employee_id,
+ 'customer_id' => $customer->exists($customerId) ? $customerId : null,
+ 'employee_id' => $employeeId,
'comment' => $comment,
- 'sale_status' => $sale_status,
+ 'sale_status' => $saleStatus,
'invoice_number' => $invoice_number,
'quote_number' => $quote_number,
'work_order_number' => $work_order_number,
@@ -563,38 +565,37 @@ class Sale extends Model
// Run these queries as a transaction, we want to make sure we do all or nothing
$this->db->transStart();
- if ($sale_id == NEW_ENTRY) {
- $builder = $this->db->table('sales');
+ $builder = $this->db->table('sales');
+ if ($saleId == NEW_ENTRY) {
$builder->insert($sales_data);
- $sale_id = $this->db->insertID();
+ $saleId = $this->db->insertID();
} else {
- $builder = $this->db->table('sales');
- $builder->where('sale_id', $sale_id);
+ $builder->where('sale_id', $saleId);
$builder->update($sales_data);
}
$total_amount = 0;
- $total_amount_used = 0;
+ $totalAmountUsed = 0;
foreach ($payments as $payment_id => $payment) {
if (!empty(strstr($payment['payment_type'], lang('Sales.giftcard')))) {
- // We have a gift card, and we have to deduct the used value from the total value of the card.
- $splitpayment = explode(':', $payment['payment_type']); // TODO: this variable doesn't follow our naming conventions. Probably should be refactored to split_payment.
- $cur_giftcard_value = $giftcard->get_giftcard_value($splitpayment[1]); // TODO: this should be refactored to $current_giftcard_value
- $giftcard->update_giftcard_value($splitpayment[1], $cur_giftcard_value - $payment['payment_amount']);
+ $splitPayment = explode(':', $payment['payment_type']);
+ $currentGiftcardValue = $giftcard->get_giftcard_value($splitPayment[1]);
+ $giftcard->update_giftcard_value($splitPayment[1], $currentGiftcardValue - $payment['payment_amount']);
} elseif (!empty(strstr($payment['payment_type'], lang('Sales.rewards')))) {
- $cur_rewards_value = $customer->get_info($customer_id)->points;
- $customer->update_reward_points_value($customer_id, $cur_rewards_value - $payment['payment_amount']);
- $total_amount_used = floatval($total_amount_used) + floatval($payment['payment_amount']);
+ $currentRewardsValue = $customer->get_info($customerId)->points;
+ $customer->update_reward_points_value($customerId, $currentRewardsValue - $payment['payment_amount']);
+ $totalAmountUsed = floatval($totalAmountUsed) + floatval($payment['payment_amount']);
}
$sales_payments_data = [
- 'sale_id' => $sale_id,
+ 'sale_id' => $saleId,
'payment_type' => $payment['payment_type'],
'payment_amount' => $payment['payment_amount'],
'cash_refund' => $payment['cash_refund'],
'cash_adjustment' => $payment['cash_adjustment'],
- 'employee_id' => $employee_id
+ 'employee_id' => $employeeId,
+ 'reference_code' => $payment['reference_code'] ?? '',
];
$builder = $this->db->table('sales_payments');
@@ -603,9 +604,9 @@ class Sale extends Model
$total_amount = floatval($total_amount) + floatval($payment['payment_amount']) - floatval($payment['cash_refund']);
}
- $this->save_customer_rewards($customer_id, $sale_id, $total_amount, $total_amount_used);
+ $this->save_customer_rewards($customerId, $saleId, $total_amount, $totalAmountUsed);
- $customer = $customer->get_info($customer_id);
+ $customer = $customer->get_info($customerId);
foreach ($items as $line => $item_data) {
$cur_item_info = $item->get_info($item_data['item_id']);
@@ -615,7 +616,7 @@ class Sale extends Model
}
$sales_items_data = [
- 'sale_id' => $sale_id,
+ 'sale_id' => $saleId,
'item_id' => $item_data['item_id'],
'line' => $item_data['line'],
'description' => character_limiter($item_data['description'], 255),
@@ -632,7 +633,7 @@ class Sale extends Model
$builder = $this->db->table('sales_items');
$builder->insert($sales_items_data);
- if ($cur_item_info->stock_type == HAS_STOCK && $sale_status == COMPLETED) { // TODO: === ?
+ if ($cur_item_info->stock_type == HAS_STOCK && $saleStatus == COMPLETED) { // TODO: === ?
// Update stock quantity if item type is a standard stock item and the sale is a standard sale
$item_quantity_data = $item_quantity->get_item_quantity($item_data['item_id'], $item_data['item_location']);
@@ -652,11 +653,11 @@ class Sale extends Model
}
// Inventory Count Details
- $sale_remarks = 'POS ' . $sale_id; // TODO: Use string interpolation here.
+ $sale_remarks = 'POS ' . $saleId; // TODO: Use string interpolation here.
$inv_data = [
'trans_date' => date('Y-m-d H:i:s'),
'trans_items' => $item_data['item_id'],
- 'trans_user' => $employee_id,
+ 'trans_user' => $employeeId,
'trans_location' => $item_data['item_location'],
'trans_comment' => $sale_remarks,
'trans_inventory' => -$item_data['quantity']
@@ -665,17 +666,17 @@ class Sale extends Model
$inventory->insert($inv_data, false);
}
- $attribute->copy_attribute_links($item_data['item_id'], 'sale_id', $sale_id);
+ $attribute->copy_attribute_links($item_data['item_id'], 'sale_id', $saleId);
}
- if ($customer_id == NEW_ENTRY || $customer->taxable) {
- $this->save_sales_tax($sale_id, $sales_taxes[0]);
- $this->save_sales_items_taxes($sale_id, $sales_taxes[1]);
+ if ($customerId == NEW_ENTRY || $customer->taxable) {
+ $this->save_sales_tax($saleId, $sales_taxes[0]);
+ $this->save_sales_items_taxes($saleId, $sales_taxes[1]);
}
if ($config['dinner_table_enable']) {
$dinner_table = model(Dinner_table::class);
- if ($sale_status == COMPLETED) { // TODO: === ?
+ if ($saleStatus == COMPLETED) { // TODO: === ?
$dinner_table->release($dinner_table_id);
} else {
$dinner_table->occupy($dinner_table_id);
@@ -684,7 +685,7 @@ class Sale extends Model
$this->db->transComplete();
- return $this->db->transStatus() ? $sale_id : -1;
+ return $this->db->transStatus() ? $saleId : -1;
}
/**
@@ -1015,7 +1016,7 @@ class Sale extends Model
{
$giftcard = model(Giftcard::class);
- if (!$giftcard->exists($giftcard->get_giftcard_id($giftcardNumber))) { // TODO: camelCase is used here for the variable name but we are using _ everywhere else. CI4 moved to camelCase... we should pick one and do that.
+ if (!$giftcard->exists($giftcard->getGiftcardId($giftcardNumber))) { // TODO: camelCase is used here for the variable name but we are using _ everywhere else. CI4 moved to camelCase... we should pick one and do that.
return 0;
}
@@ -1093,7 +1094,8 @@ class Sale extends Model
SUM(CASE WHEN payments.cash_adjustment = 0 THEN payments.payment_amount ELSE 0 END) AS sale_payment_amount,
SUM(CASE WHEN payments.cash_adjustment = 1 THEN payments.payment_amount ELSE 0 END) AS sale_cash_adjustment,
SUM(payments.cash_refund) AS sale_cash_refund,
- GROUP_CONCAT(CONCAT(payments.payment_type, " ", (payments.payment_amount - payments.cash_refund)) SEPARATOR ", ") AS payment_type
+ GROUP_CONCAT(CONCAT(payments.payment_type, " ", (payments.payment_amount - payments.cash_refund)) SEPARATOR ", ") AS payment_type,
+ GROUP_CONCAT(NULLIF(payments.reference_code, "") SEPARATOR ", ") AS reference_code
FROM ' . $this->db->prefixTable('sales_payments') . ' AS payments
INNER JOIN ' . $this->db->prefixTable('sales') . ' AS sales
ON sales.sale_id = payments.sale_id
diff --git a/app/Views/configs/locale_config.php b/app/Views/configs/locale_config.php
index 93bd72d8b..f78adcd78 100644
--- a/app/Views/configs/locale_config.php
+++ b/app/Views/configs/locale_config.php
@@ -176,6 +176,25 @@
+