This commit is contained in:
Dennis Eichhorn 2023-10-09 22:06:37 +00:00
parent d3f32d305c
commit af74e90226
31 changed files with 673 additions and 5282 deletions

View File

@ -90,50 +90,5 @@
"children": [] "children": []
} }
] ]
},
{
"id": 1003104001,
"pid": "/sales/analysis",
"type": 3,
"subtype": 1,
"name": "Client",
"uri": "{/base}/sales/analysis/client?{?}",
"target": "self",
"icon": null,
"order": 15,
"from": "ClientManagement",
"permission": { "permission": 2, "category": null, "element": null },
"parent": 1001602001,
"children": []
},
{
"id": 1003105001,
"pid": "/sales/analysis",
"type": 3,
"subtype": 1,
"name": "Region",
"uri": "{/base}/sales/analysis/region?{?}",
"target": "self",
"icon": null,
"order": 20,
"from": "ClientManagement",
"permission": { "permission": 2, "category": null, "element": null },
"parent": 1001602001,
"children": []
},
{
"id": 1003106001,
"pid": "/sales/analysis",
"type": 3,
"subtype": 1,
"name": "SalesRep",
"uri": "{/base}/sales/analysis/rep?{?}",
"target": "self",
"icon": null,
"order": 25,
"from": "ClientManagement",
"permission": { "permission": 2, "category": null, "element": null },
"parent": 1001602001,
"children": []
} }
] ]

View File

@ -89,10 +89,52 @@
"values": [] "values": []
}, },
{ {
"name": "group", "name": "segment",
"l11n": { "l11n": {
"en": "Group", "en": "Segment",
"de": "Gruppe" "de": "Segment"
},
"value_type": 1,
"is_custom_allowed": false,
"validation_pattern": "",
"is_required": true,
"default_value": "",
"values": [
{
"value": 1,
"l11n": {
"en": "Segment 1",
"de": "Segment 1"
}
}
]
},
{
"name": "section",
"l11n": {
"en": "Section",
"de": "Sparte"
},
"value_type": 1,
"is_custom_allowed": false,
"validation_pattern": "",
"is_required": true,
"default_value": "",
"values": [
{
"value": 1,
"l11n": {
"en": "Section 1",
"de": "Section 1"
}
}
]
},
{
"name": "client_group",
"l11n": {
"en": "Client Group",
"de": "Kundengruppe"
}, },
"value_type": 1, "value_type": 1,
"is_custom_allowed": false, "is_custom_allowed": false,
@ -109,6 +151,27 @@
} }
] ]
}, },
{
"name": "client_type",
"l11n": {
"en": "Client Type",
"de": "Kundentyp"
},
"value_type": 1,
"is_custom_allowed": false,
"validation_pattern": "",
"is_required": true,
"default_value": "",
"values": [
{
"value": 1,
"l11n": {
"en": "Type 1",
"de": "Typ 1"
}
}
]
},
{ {
"name": "sales_tax_code", "name": "sales_tax_code",
"l11n": { "l11n": {

View File

@ -105,7 +105,7 @@ final class Installer extends InstallerAbstract
$module->apiClientL11nTypeCreate($request, $response); $module->apiClientL11nTypeCreate($request, $response);
$responseData = $response->get(''); $responseData = $response->getData('');
if (!\is_array($responseData)) { if (!\is_array($responseData)) {
continue; continue;
} }
@ -152,7 +152,7 @@ final class Installer extends InstallerAbstract
$module->apiClientAttributeTypeCreate($request, $response); $module->apiClientAttributeTypeCreate($request, $response);
$responseData = $response->get(''); $responseData = $response->getData('');
if (!\is_array($responseData)) { if (!\is_array($responseData)) {
continue; continue;
} }
@ -223,7 +223,7 @@ final class Installer extends InstallerAbstract
$module->apiClientAttributeValueCreate($request, $response); $module->apiClientAttributeValueCreate($request, $response);
$responseData = $response->get(''); $responseData = $response->getData('');
if (!\is_array($responseData)) { if (!\is_array($responseData)) {
continue; continue;
} }

View File

@ -84,15 +84,4 @@ return [
], ],
], ],
], ],
'^.*/sales/analysis/client(\?.*|$)$' => [
[
'dest' => '\Modules\ClientManagement\Controller\BackendController:viewClientAnalysis',
'verb' => RouteVerb::GET,
'permission' => [
'module' => BackendController::NAME,
'type' => PermissionType::READ,
'state' => PermissionCategory::ANALYSIS,
],
],
],
]; ];

View File

@ -1,8 +1,9 @@
import { jsOMS } from '../../jsOMS/Utils/oLib.js';
import { Autoloader } from '../../jsOMS/Autoloader.js'; import { Autoloader } from '../../jsOMS/Autoloader.js';
Autoloader.defineNamespace('jsOMS.Modules'); Autoloader.defineNamespace('omsApp.Modules');
jsOMS.Modules.ClientManagement = class { omsApp.Modules.ClientManagement = class {
/** /**
* @constructor * @constructor
* *
@ -48,6 +49,7 @@ jsOMS.Modules.ClientManagement = class {
const data = JSON.parse(chart.getAttribute('data-chart')); const data = JSON.parse(chart.getAttribute('data-chart'));
const myChart = new Chart(chart.getContext('2d'), data); const myChart = new Chart(chart.getContext('2d'), data);
}; };
bindMap (map) bindMap (map)

View File

@ -61,7 +61,8 @@ final class ApiAttributeController extends Controller
return; return;
} }
$attribute = $this->createAttributeFromRequest($request); $type = ClientAttributeTypeMapper::get()->where('id', (int) $request->getData('type'))->execute();
$attribute = $this->createAttributeFromRequest($request, $type);
$this->createModel($request->header->account, $attribute, ClientAttributeMapper::class, 'attribute', $request->getOrigin()); $this->createModel($request->header->account, $attribute, ClientAttributeMapper::class, 'attribute', $request->getOrigin());
$this->createStandardCreateResponse($request, $response, $attribute); $this->createStandardCreateResponse($request, $response, $attribute);
} }

View File

@ -155,8 +155,8 @@ final class ApiController extends Controller
$internalRequest->header->account = $request->header->account; $internalRequest->header->account = $request->header->account;
$internalRequest->setData('ref', $client->id); $internalRequest->setData('ref', $client->id);
$internalRequest->setData('type', $type->id); $internalRequest->setData('type', $type->id);
$internalRequest->setData('custom', $request->hasData('vat_id')); $internalRequest->setData('value', $request->getDataString('vat_id'));
$this->app->moduleManager->get('ClientManagement', 'ApiAttribute') $this->app->moduleManager->get('ClientManagement', 'ApiAttribute')
->apiClientAttributeCreate($internalRequest, $internalResponse); ->apiClientAttributeCreate($internalRequest, $internalResponse);
@ -561,16 +561,16 @@ final class ApiController extends Controller
*/ */
public function apiNoteCreate(RequestAbstract $request, ResponseAbstract $response, array $data = []) : void public function apiNoteCreate(RequestAbstract $request, ResponseAbstract $response, array $data = []) : void
{ {
$request->setData('virtualpath', '/Modules/ClientManagement/' . $request->getData('id'), true); $request->setData('virtualpath', '/Modules/ClientManagement/' . ((int) $request->getData('id')), true);
$this->app->moduleManager->get('Editor')->apiEditorCreate($request, $response, $data); $this->app->moduleManager->get('Editor')->apiEditorCreate($request, $response, $data);
$responseData = $response->get($request->uri->__toString()); $responseData = $response->getDataArray($request->uri->__toString());
if (!\is_array($responseData)) { if (!\is_array($responseData)) {
return; return;
} }
$model = $responseData['response']; $model = $responseData['response'];
$this->createModelRelation($request->header->account, $request->getData('id'), $model->id, ClientMapper::class, 'notes', '', $request->getOrigin()); $this->createModelRelation($request->header->account, (int) $request->getData('id'), $model->id, ClientMapper::class, 'notes', '', $request->getOrigin());
} }
/** /**

View File

@ -205,8 +205,8 @@ final class BackendController extends Controller
$head = $response->data['Content']->head; $head = $response->data['Content']->head;
$nonce = $this->app->appSettings->getOption('script-nonce'); $nonce = $this->app->appSettings->getOption('script-nonce');
$head->addAsset(AssetType::CSS, 'Resources/chartjs/Chartjs/chart.css'); $head->addAsset(AssetType::CSS, 'Resources/chartjs/chart.css');
$head->addAsset(AssetType::JSLATE, 'Resources/chartjs/Chartjs/chart.js', ['nonce' => $nonce]); $head->addAsset(AssetType::JSLATE, 'Resources/chartjs/chart.js', ['nonce' => $nonce]);
$head->addAsset(AssetType::JSLATE, 'Resources/OpenLayers/OpenLayers.js', ['nonce' => $nonce]); $head->addAsset(AssetType::JSLATE, 'Resources/OpenLayers/OpenLayers.js', ['nonce' => $nonce]);
$head->addAsset(AssetType::JSLATE, 'Modules/ClientManagement/Controller.js', ['nonce' => $nonce, 'type' => 'module']); $head->addAsset(AssetType::JSLATE, 'Modules/ClientManagement/Controller.js', ['nonce' => $nonce, 'type' => 'module']);
@ -305,178 +305,4 @@ final class BackendController extends Controller
{ {
return new View($this->app->l11nManager, $request, $response); return new View($this->app->l11nManager, $request, $response);
} }
/**
* Routing end-point for application behaviour.
*
* @param RequestAbstract $request Request
* @param ResponseAbstract $response Response
* @param array $data Generic data
*
* @return RenderableInterface
*
* @since 1.0.0
* @codeCoverageIgnore
*/
public function viewClientAnalysis(RequestAbstract $request, ResponseAbstract $response, array $data = []) : RenderableInterface
{
$head = $response->data['Content']->head;
$nonce = $this->app->appSettings->getOption('script-nonce');
$head->addAsset(AssetType::CSS, 'Resources/chartjs/Chartjs/chart.css');
$head->addAsset(AssetType::JSLATE, 'Resources/chartjs/Chartjs/chart.js', ['nonce' => $nonce]);
$head->addAsset(AssetType::JSLATE, 'Modules/ClientManagement/Controller.js', ['nonce' => $nonce, 'type' => 'module']);
$view = new View($this->app->l11nManager, $request, $response);
$view->setTemplate('/Modules/ClientManagement/Theme/Backend/client-analysis');
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1001602001, $request, $response);
$monthlySalesCosts = [];
for ($i = 1; $i < 13; ++$i) {
$monthlySalesCosts[] = [
'net_sales' => $sales = \mt_rand(1200000000, 2000000000),
'net_costs' => (int) ($sales * \mt_rand(25, 55) / 100),
'year' => 2020,
'month' => $i,
];
}
$view->data['monthlySalesCosts'] = $monthlySalesCosts;
/////
$monthlySalesCustomer = [];
for ($i = 1; $i < 13; ++$i) {
$monthlySalesCustomer[] = [
'net_sales' => $sales = \mt_rand(1200000000, 2000000000),
'customers' => \mt_rand(200, 400),
'year' => 2020,
'month' => $i,
];
}
$view->data['monthlySalesCustomer'] = $monthlySalesCustomer;
$annualSalesCustomer = [];
for ($i = 1; $i < 11; ++$i) {
$annualSalesCustomer[] = [
'net_sales' => $sales = \mt_rand(1200000000, 2000000000) * 12,
'customers' => \mt_rand(200, 400) * 6,
'year' => 2020 - 10 + $i,
];
}
$view->data['annualSalesCustomer'] = $annualSalesCustomer;
/////
$monthlyCustomerRetention = [];
for ($i = 1; $i < 10; ++$i) {
$monthlyCustomerRetention[] = [
'customers' => \mt_rand(200, 400),
'year' => \date('y') - 9 + $i,
];
}
$view->data['monthlyCustomerRetention'] = $monthlyCustomerRetention;
/////
$currentCustomerRegion = [
'Europe' => (int) (\mt_rand(200, 400) / 4),
'America' => (int) (\mt_rand(200, 400) / 4),
'Asia' => (int) (\mt_rand(200, 400) / 4),
'Africa' => (int) (\mt_rand(200, 400) / 4),
'CIS' => (int) (\mt_rand(200, 400) / 4),
'Other' => (int) (\mt_rand(200, 400) / 4),
];
$view->data['currentCustomerRegion'] = $currentCustomerRegion;
$annualCustomerRegion = [];
for ($i = 1; $i < 11; ++$i) {
$annualCustomerRegion[] = [
'year' => 2020 - 10 + $i,
'Europe' => $a = (int) (\mt_rand(200, 400) / 4),
'America' => $b = (int) (\mt_rand(200, 400) / 4),
'Asia' => $c = (int) (\mt_rand(200, 400) / 4),
'Africa' => $d = (int) (\mt_rand(200, 400) / 4),
'CIS' => $e = (int) (\mt_rand(200, 400) / 4),
'Other' => $f = (int) (\mt_rand(200, 400) / 4),
'Total' => $a + $b + $c + $d + $e + $f,
];
}
$view->data['annualCustomerRegion'] = $annualCustomerRegion;
/////
$currentCustomersRep = [];
for ($i = 1; $i < 13; ++$i) {
$currentCustomersRep['Rep ' . $i] = [
'customers' => (int) (\mt_rand(200, 400) / 12),
];
}
\uasort($currentCustomersRep, function($a, $b) {
return $b['customers'] <=> $a['customers'];
});
$view->data['currentCustomersRep'] = $currentCustomersRep;
$annualCustomersRep = [];
for ($i = 1; $i < 13; ++$i) {
$annualCustomersRep['Rep ' . $i] = [];
for ($j = 1; $j < 11; ++$j) {
$annualCustomersRep['Rep ' . $i][] = [
'customers' => (int) (\mt_rand(200, 400) / 12),
'year' => 2020 - 10 + $j,
];
}
}
$view->data['annualCustomersRep'] = $annualCustomersRep;
/////
$currentCustomersCountry = [];
for ($i = 1; $i < 51; ++$i) {
$country = (string) ISO3166NameEnum::getRandom();
$currentCustomersCountry[\substr($country, 0, 20)] = [
'customers' => (int) (\mt_rand(200, 400) / 12),
];
}
\uasort($currentCustomersCountry, function($a, $b) {
return $b['customers'] <=> $a['customers'];
});
$view->data['currentCustomersCountry'] = $currentCustomersCountry;
$annualCustomersCountry = [];
for ($i = 1; $i < 51; ++$i) {
$countryCode = ISO3166CharEnum::getRandom();
$countryName = (string) ISO3166NameEnum::getByName('_' . $countryCode);
$annualCustomersCountry[\substr($countryName, 0, 20)] = [];
for ($j = 1; $j < 11; ++$j) {
$annualCustomersCountry[\substr($countryName, 0, 20)][] = [
'customers' => (int) (\mt_rand(200, 400) / 12),
'year' => 2020 - 10 + $j,
'name' => $countryName,
'code' => $countryCode,
];
}
}
$view->data['annualCustomersCountry'] = $annualCustomersCountry;
/////
$customerGroups = [];
for ($i = 1; $i < 7; ++$i) {
$customerGroups['Group ' . $i] = [
'customers' => (int) (\mt_rand(200, 400) / 12),
];
}
$view->data['customerGroups'] = $customerGroups;
return $view;
}
} }

View File

@ -17,48 +17,48 @@ return ['ClientManagement' => [
'Addition' => 'إضافة', 'Addition' => 'إضافة',
'Address' => 'تبوك', 'Address' => 'تبوك',
'Addresses' => 'عناوين', 'Addresses' => 'عناوين',
'Africa' => '#VALUE!', 'Africa' => '',
'AllCustomers' => '#VALUE!', 'AllCustomers' => '',
'America' => '#VALUE!', 'America' => '',
'Analyse' => '#VALUE!', 'Analyse' => '',
'AreaManager' => 'مدير المنطقة', 'AreaManager' => 'مدير المنطقة',
'Articlegroup' => 'articlegroup.', 'Articlegroup' => 'articlegroup.',
'Articles' => 'مقالات', 'Articles' => 'مقالات',
'Asia' => '#VALUE!', 'Asia' => '',
'Attribute' => '#VALUE!', 'Attribute' => '',
'AttributeTypes' => '', 'AttributeTypes' => '',
'Attributes' => '#VALUE!', 'Attributes' => '',
'Balance' => 'الرصيد', 'Balance' => 'الرصيد',
'BaseTime' => '#VALUE!', 'BaseTime' => '',
'Bills' => '#VALUE!', 'Bills' => '',
'Bonus' => 'علاوة', 'Bonus' => 'علاوة',
'Business' => 'اعمال', 'Business' => 'اعمال',
'CIS' => '#VALUE!', 'CIS' => '',
'CLV' => 'قذيفة', 'CLV' => 'قذيفة',
'Calendar' => 'تقويم', 'Calendar' => 'تقويم',
'City' => 'مدينة', 'City' => 'مدينة',
'Client' => 'عميل', 'Client' => 'عميل',
'ClientID' => '#VALUE!', 'ClientID' => '',
'Clients' => 'عملاء', 'Clients' => 'عملاء',
'ComparisonTime' => '#VALUE!', 'ComparisonTime' => '',
'Contact' => 'اتصل', 'Contact' => 'اتصل',
'Country' => 'دولة', 'Country' => 'دولة',
'Created' => 'خلقت', 'Created' => 'خلقت',
'CreatedAt' => '#VALUE!', 'CreatedAt' => '',
'CreditRating' => 'التصنيف الائتماني', 'CreditRating' => 'التصنيف الائتماني',
'Creditcard' => 'بطاقة إئتمان', 'Creditcard' => 'بطاقة إئتمان',
'Customers' => '#VALUE!', 'Customers' => '',
'DSO' => 'DSO.', 'DSO' => 'DSO.',
'Date' => 'تاريخ', 'Date' => 'تاريخ',
'Default' => 'تقصير', 'Default' => 'تقصير',
'Delivery' => 'توصيل', 'Delivery' => 'توصيل',
'Discount' => 'خصم', 'Discount' => 'خصم',
'DiscountBonus' => '#VALUE!', 'DiscountBonus' => '',
'DiscountP' => 'خصم ٪', 'DiscountP' => 'خصم ٪',
'Documents' => 'وثائق', 'Documents' => 'وثائق',
'Due' => 'بسبب', 'Due' => 'بسبب',
'Email' => 'بريد الالكتروني', 'Email' => 'بريد الالكتروني',
'Europe' => '#VALUE!', 'Europe' => '',
'Fax' => 'فاكس', 'Fax' => 'فاكس',
'Files' => 'الملفات', 'Files' => 'الملفات',
'Filter' => 'منقي', 'Filter' => 'منقي',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => 'فاتورة', 'Invoice' => 'فاتورة',
'Invoices' => 'الفواتير', 'Invoices' => 'الفواتير',
'IsDefault' => 'افتراضي؟', 'IsDefault' => 'افتراضي؟',
'Items' => '#VALUE!', 'Items' => '',
'LastContact' => 'آخر اتصال', 'LastContact' => 'آخر اتصال',
'LastOrder' => 'آخر طلب', 'LastOrder' => 'آخر طلب',
'Log' => 'سجل', 'Log' => 'سجل',
'Logs' => 'السجلات', 'Logs' => 'السجلات',
'LostCustomers' => '#VALUE!', 'LostCustomers' => '',
'MRR' => 'مرر', 'MRR' => 'مرر',
'MTDSales' => 'مبيعات MTD', 'MTDSales' => 'مبيعات MTD',
'Map' => '', 'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => 'اسم 2.', 'Name2' => 'اسم 2.',
'Name3' => 'اسم 3.', 'Name3' => 'اسم 3.',
'Net' => 'شبكة', 'Net' => 'شبكة',
'NewCustomers' => '#VALUE!', 'NewCustomers' => '',
'Notes' => 'ملحوظات', 'Notes' => 'ملحوظات',
'Number' => 'عدد', 'Number' => 'عدد',
'Office' => 'مكتب. مقر. مركز', 'Office' => 'مكتب. مقر. مركز',
'Other' => '#VALUE!', 'Other' => '',
'Payment' => 'دفع', 'Payment' => 'دفع',
'PaymentTerm' => 'مصطلح الدفع', 'PaymentTerm' => 'مصطلح الدفع',
'Permission' => 'إذن', 'Permission' => 'إذن',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => 'نشر', 'Private' => 'نشر',
'Productgroup' => 'productgroup.', 'Productgroup' => 'productgroup.',
'Profile' => 'الملف الشخصي', 'Profile' => 'الملف الشخصي',
'Profit' => '#VALUE!', 'Profit' => '',
'Purchase' => 'شراء', 'Purchase' => 'شراء',
'Quantity' => 'كمية', 'Quantity' => 'كمية',
'RecentInvoices' => 'الفواتير الأخيرة', 'RecentInvoices' => 'الفواتير الأخيرة',
'Region' => '#VALUE!', 'Region' => '',
'Rep' => '#VALUE!', 'Rep' => '',
'Retention' => '#VALUE!', 'Retention' => '',
'Sales' => 'مبيعات', 'Sales' => 'مبيعات',
'Segment' => 'قطعة', 'Segment' => 'قطعة',
'Segments' => 'شرائح', 'Segments' => 'شرائح',
'Subtype' => 'النوع الفرعي', 'Subtype' => 'النوع الفرعي',
'Support' => 'يدعم', 'Support' => 'يدعم',
'Tags' => 'كذا', 'Tags' => 'كذا',
'Title' => '#VALUE!', 'Title' => '',
'Total' => '#VALUE!', 'Total' => '',
'TotalPrice' => '#VALUE!', 'TotalPrice' => '',
'Type' => 'نوع', 'Type' => 'نوع',
'UnitPrice' => '#VALUE!', 'UnitPrice' => '',
'Value' => '#VALUE!', 'Value' => '',
'Website' => 'موقع إلكتروني', 'Website' => 'موقع إلكتروني',
'Wire' => 'الأسلاك', 'Wire' => 'الأسلاك',
'YTDSales' => 'مبيعات YTD', 'YTDSales' => 'مبيعات YTD',

View File

@ -17,48 +17,48 @@ return ['ClientManagement' => [
'Addition' => 'Přidání', 'Addition' => 'Přidání',
'Address' => 'Adresa', 'Address' => 'Adresa',
'Addresses' => 'Adresy', 'Addresses' => 'Adresy',
'Africa' => '#VALUE!', 'Africa' => '',
'AllCustomers' => '#VALUE!', 'AllCustomers' => '',
'America' => '#VALUE!', 'America' => '',
'Analyse' => '#VALUE!', 'Analyse' => '',
'AreaManager' => 'Oblastní manažer', 'AreaManager' => 'Oblastní manažer',
'Articlegroup' => 'Článek', 'Articlegroup' => 'Článek',
'Articles' => 'Články', 'Articles' => 'Články',
'Asia' => '#VALUE!', 'Asia' => '',
'Attribute' => '#VALUE!', 'Attribute' => '',
'AttributeTypes' => '', 'AttributeTypes' => '',
'Attributes' => '#VALUE!', 'Attributes' => '',
'Balance' => 'Zůstatek', 'Balance' => 'Zůstatek',
'BaseTime' => '#VALUE!', 'BaseTime' => '',
'Bills' => '#VALUE!', 'Bills' => '',
'Bonus' => 'Bonus', 'Bonus' => 'Bonus',
'Business' => 'Business.', 'Business' => 'Business.',
'CIS' => '#VALUE!', 'CIS' => '',
'CLV' => 'Clv.', 'CLV' => 'Clv.',
'Calendar' => 'Kalendář', 'Calendar' => 'Kalendář',
'City' => 'Město', 'City' => 'Město',
'Client' => 'Klienta', 'Client' => 'Klienta',
'ClientID' => '#VALUE!', 'ClientID' => '',
'Clients' => 'Klienti', 'Clients' => 'Klienti',
'ComparisonTime' => '#VALUE!', 'ComparisonTime' => '',
'Contact' => 'Kontakt', 'Contact' => 'Kontakt',
'Country' => 'Země', 'Country' => 'Země',
'Created' => 'Vytvořený', 'Created' => 'Vytvořený',
'CreatedAt' => '#VALUE!', 'CreatedAt' => '',
'CreditRating' => 'Úvěrový rating', 'CreditRating' => 'Úvěrový rating',
'Creditcard' => 'Kreditní karta', 'Creditcard' => 'Kreditní karta',
'Customers' => '#VALUE!', 'Customers' => '',
'DSO' => 'DSO.', 'DSO' => 'DSO.',
'Date' => 'datum', 'Date' => 'datum',
'Default' => 'Výchozí hodnota', 'Default' => 'Výchozí hodnota',
'Delivery' => 'dodávka', 'Delivery' => 'dodávka',
'Discount' => 'Sleva', 'Discount' => 'Sleva',
'DiscountBonus' => '#VALUE!', 'DiscountBonus' => '',
'DiscountP' => 'Sleva%', 'DiscountP' => 'Sleva%',
'Documents' => 'Dokumenty', 'Documents' => 'Dokumenty',
'Due' => 'Způsoben', 'Due' => 'Způsoben',
'Email' => 'E-mailem', 'Email' => 'E-mailem',
'Europe' => '#VALUE!', 'Europe' => '',
'Fax' => 'Fax', 'Fax' => 'Fax',
'Files' => 'Soubory', 'Files' => 'Soubory',
'Filter' => 'Filtr', 'Filter' => 'Filtr',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => 'Faktura', 'Invoice' => 'Faktura',
'Invoices' => 'Faktury', 'Invoices' => 'Faktury',
'IsDefault' => 'Je výchozí?', 'IsDefault' => 'Je výchozí?',
'Items' => '#VALUE!', 'Items' => '',
'LastContact' => 'Poslední kontakt', 'LastContact' => 'Poslední kontakt',
'LastOrder' => 'Poslední objednávka', 'LastOrder' => 'Poslední objednávka',
'Log' => 'Log', 'Log' => 'Log',
'Logs' => 'Protokoly', 'Logs' => 'Protokoly',
'LostCustomers' => '#VALUE!', 'LostCustomers' => '',
'MRR' => 'Mrr.', 'MRR' => 'Mrr.',
'MTDSales' => 'Prodej MTD.', 'MTDSales' => 'Prodej MTD.',
'Map' => '', 'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => 'Jméno2.', 'Name2' => 'Jméno2.',
'Name3' => 'Jméno3.', 'Name3' => 'Jméno3.',
'Net' => 'Síť', 'Net' => 'Síť',
'NewCustomers' => '#VALUE!', 'NewCustomers' => '',
'Notes' => 'Poznámky', 'Notes' => 'Poznámky',
'Number' => 'Číslo', 'Number' => 'Číslo',
'Office' => 'Kancelář', 'Office' => 'Kancelář',
'Other' => '#VALUE!', 'Other' => '',
'Payment' => 'Způsob platby', 'Payment' => 'Způsob platby',
'PaymentTerm' => 'Platební termín', 'PaymentTerm' => 'Platební termín',
'Permission' => 'Povolení', 'Permission' => 'Povolení',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => 'Soukromý', 'Private' => 'Soukromý',
'Productgroup' => 'ProductSgroup.', 'Productgroup' => 'ProductSgroup.',
'Profile' => 'Profil', 'Profile' => 'Profil',
'Profit' => '#VALUE!', 'Profit' => '',
'Purchase' => 'Nákup', 'Purchase' => 'Nákup',
'Quantity' => 'Množství', 'Quantity' => 'Množství',
'RecentInvoices' => 'Nedávné faktury', 'RecentInvoices' => 'Nedávné faktury',
'Region' => '#VALUE!', 'Region' => '',
'Rep' => '#VALUE!', 'Rep' => '',
'Retention' => '#VALUE!', 'Retention' => '',
'Sales' => 'Odbyt', 'Sales' => 'Odbyt',
'Segment' => 'Segment', 'Segment' => 'Segment',
'Segments' => 'Segmenty', 'Segments' => 'Segmenty',
'Subtype' => 'Podtyp', 'Subtype' => 'Podtyp',
'Support' => 'Podpěra, podpora', 'Support' => 'Podpěra, podpora',
'Tags' => 'Tagy', 'Tags' => 'Tagy',
'Title' => '#VALUE!', 'Title' => '',
'Total' => '#VALUE!', 'Total' => '',
'TotalPrice' => '#VALUE!', 'TotalPrice' => '',
'Type' => 'Typ', 'Type' => 'Typ',
'UnitPrice' => '#VALUE!', 'UnitPrice' => '',
'Value' => '#VALUE!', 'Value' => '',
'Website' => 'webová stránka', 'Website' => 'webová stránka',
'Wire' => 'Drát', 'Wire' => 'Drát',
'YTDSales' => 'Prodej YTD.', 'YTDSales' => 'Prodej YTD.',

View File

@ -17,48 +17,48 @@ return ['ClientManagement' => [
'Addition' => 'Tilsætning', 'Addition' => 'Tilsætning',
'Address' => 'Adresse', 'Address' => 'Adresse',
'Addresses' => 'Adresser', 'Addresses' => 'Adresser',
'Africa' => '#VALUE!', 'Africa' => '',
'AllCustomers' => '#VALUE!', 'AllCustomers' => '',
'America' => '#VALUE!', 'America' => '',
'Analyse' => '#VALUE!', 'Analyse' => '',
'AreaManager' => 'Områdechef', 'AreaManager' => 'Områdechef',
'Articlegroup' => 'ArticleGroup.', 'Articlegroup' => 'ArticleGroup.',
'Articles' => 'Artikler', 'Articles' => 'Artikler',
'Asia' => '#VALUE!', 'Asia' => '',
'Attribute' => '#VALUE!', 'Attribute' => '',
'AttributeTypes' => '', 'AttributeTypes' => '',
'Attributes' => '#VALUE!', 'Attributes' => '',
'Balance' => 'Balance', 'Balance' => 'Balance',
'BaseTime' => '#VALUE!', 'BaseTime' => '',
'Bills' => '#VALUE!', 'Bills' => '',
'Bonus' => 'Bonus', 'Bonus' => 'Bonus',
'Business' => 'Forretning', 'Business' => 'Forretning',
'CIS' => '#VALUE!', 'CIS' => '',
'CLV' => 'CLV.', 'CLV' => 'CLV.',
'Calendar' => 'Kalender', 'Calendar' => 'Kalender',
'City' => 'City.', 'City' => 'City.',
'Client' => 'Klient', 'Client' => 'Klient',
'ClientID' => '#VALUE!', 'ClientID' => '',
'Clients' => 'Klienter.', 'Clients' => 'Klienter.',
'ComparisonTime' => '#VALUE!', 'ComparisonTime' => '',
'Contact' => 'Kontakt', 'Contact' => 'Kontakt',
'Country' => 'Land', 'Country' => 'Land',
'Created' => 'Oprettet', 'Created' => 'Oprettet',
'CreatedAt' => '#VALUE!', 'CreatedAt' => '',
'CreditRating' => 'Kreditvurdering', 'CreditRating' => 'Kreditvurdering',
'Creditcard' => 'Kreditkort', 'Creditcard' => 'Kreditkort',
'Customers' => '#VALUE!', 'Customers' => '',
'DSO' => 'DSO.', 'DSO' => 'DSO.',
'Date' => 'Dato', 'Date' => 'Dato',
'Default' => 'Standard', 'Default' => 'Standard',
'Delivery' => 'Levering', 'Delivery' => 'Levering',
'Discount' => 'Rabat', 'Discount' => 'Rabat',
'DiscountBonus' => '#VALUE!', 'DiscountBonus' => '',
'DiscountP' => 'Rabat%', 'DiscountP' => 'Rabat%',
'Documents' => 'Dokumenter', 'Documents' => 'Dokumenter',
'Due' => 'På grund', 'Due' => 'På grund',
'Email' => 'Email.', 'Email' => 'Email.',
'Europe' => '#VALUE!', 'Europe' => '',
'Fax' => 'Fax', 'Fax' => 'Fax',
'Files' => 'Filer.', 'Files' => 'Filer.',
'Filter' => 'Filter', 'Filter' => 'Filter',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => 'Faktura', 'Invoice' => 'Faktura',
'Invoices' => 'Fakturaer.', 'Invoices' => 'Fakturaer.',
'IsDefault' => 'Er standard?', 'IsDefault' => 'Er standard?',
'Items' => '#VALUE!', 'Items' => '',
'LastContact' => 'Sidste kontakt', 'LastContact' => 'Sidste kontakt',
'LastOrder' => 'Sidste ordre', 'LastOrder' => 'Sidste ordre',
'Log' => 'Log', 'Log' => 'Log',
'Logs' => 'Logs.', 'Logs' => 'Logs.',
'LostCustomers' => '#VALUE!', 'LostCustomers' => '',
'MRR' => 'MRR.', 'MRR' => 'MRR.',
'MTDSales' => 'MTD Sales.', 'MTDSales' => 'MTD Sales.',
'Map' => '', 'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => 'NAME2.', 'Name2' => 'NAME2.',
'Name3' => 'NAME3.', 'Name3' => 'NAME3.',
'Net' => 'Net', 'Net' => 'Net',
'NewCustomers' => '#VALUE!', 'NewCustomers' => '',
'Notes' => 'Noter.', 'Notes' => 'Noter.',
'Number' => 'Nummer', 'Number' => 'Nummer',
'Office' => 'Kontor', 'Office' => 'Kontor',
'Other' => '#VALUE!', 'Other' => '',
'Payment' => 'Betaling', 'Payment' => 'Betaling',
'PaymentTerm' => 'Betalingsbetingelser', 'PaymentTerm' => 'Betalingsbetingelser',
'Permission' => 'Tilladelse', 'Permission' => 'Tilladelse',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => 'Privat', 'Private' => 'Privat',
'Productgroup' => 'Produktgruppe', 'Productgroup' => 'Produktgruppe',
'Profile' => 'Profil', 'Profile' => 'Profil',
'Profit' => '#VALUE!', 'Profit' => '',
'Purchase' => 'Køb', 'Purchase' => 'Køb',
'Quantity' => 'Antal', 'Quantity' => 'Antal',
'RecentInvoices' => 'Nylige fakturaer.', 'RecentInvoices' => 'Nylige fakturaer.',
'Region' => '#VALUE!', 'Region' => '',
'Rep' => '#VALUE!', 'Rep' => '',
'Retention' => '#VALUE!', 'Retention' => '',
'Sales' => 'SALG', 'Sales' => 'SALG',
'Segment' => 'Segment', 'Segment' => 'Segment',
'Segments' => 'Segmenter.', 'Segments' => 'Segmenter.',
'Subtype' => 'Subtype.', 'Subtype' => 'Subtype.',
'Support' => 'Support', 'Support' => 'Support',
'Tags' => 'Tags.', 'Tags' => 'Tags.',
'Title' => '#VALUE!', 'Title' => '',
'Total' => '#VALUE!', 'Total' => '',
'TotalPrice' => '#VALUE!', 'TotalPrice' => '',
'Type' => 'Type', 'Type' => 'Type',
'UnitPrice' => '#VALUE!', 'UnitPrice' => '',
'Value' => '#VALUE!', 'Value' => '',
'Website' => 'Internet side', 'Website' => 'Internet side',
'Wire' => 'Tråd', 'Wire' => 'Tråd',
'YTDSales' => 'YTD SALG', 'YTDSales' => 'YTD SALG',

View File

@ -17,48 +17,48 @@ return ['ClientManagement' => [
'Addition' => 'Πρόσθεση', 'Addition' => 'Πρόσθεση',
'Address' => 'Διεύθυνση', 'Address' => 'Διεύθυνση',
'Addresses' => 'Διευθύνσεις', 'Addresses' => 'Διευθύνσεις',
'Africa' => '#VALUE!', 'Africa' => '',
'AllCustomers' => '#VALUE!', 'AllCustomers' => '',
'America' => '#VALUE!', 'America' => '',
'Analyse' => '#VALUE!', 'Analyse' => '',
'AreaManager' => 'Διευθυντής περιοχής', 'AreaManager' => 'Διευθυντής περιοχής',
'Articlegroup' => 'Ομιλία', 'Articlegroup' => 'Ομιλία',
'Articles' => 'Είδη', 'Articles' => 'Είδη',
'Asia' => '#VALUE!', 'Asia' => '',
'Attribute' => '#VALUE!', 'Attribute' => '',
'AttributeTypes' => '', 'AttributeTypes' => '',
'Attributes' => '#VALUE!', 'Attributes' => '',
'Balance' => 'Ισορροπία', 'Balance' => 'Ισορροπία',
'BaseTime' => '#VALUE!', 'BaseTime' => '',
'Bills' => '#VALUE!', 'Bills' => '',
'Bonus' => 'Δώρο', 'Bonus' => 'Δώρο',
'Business' => 'Επιχείρηση', 'Business' => 'Επιχείρηση',
'CIS' => '#VALUE!', 'CIS' => '',
'CLV' => 'Σολλίζω', 'CLV' => 'Σολλίζω',
'Calendar' => 'Ημερολόγιο', 'Calendar' => 'Ημερολόγιο',
'City' => 'Πόλη', 'City' => 'Πόλη',
'Client' => 'Πελάτης', 'Client' => 'Πελάτης',
'ClientID' => '#VALUE!', 'ClientID' => '',
'Clients' => 'Πελάτες', 'Clients' => 'Πελάτες',
'ComparisonTime' => '#VALUE!', 'ComparisonTime' => '',
'Contact' => 'Επικοινωνία', 'Contact' => 'Επικοινωνία',
'Country' => 'Χώρα', 'Country' => 'Χώρα',
'Created' => 'Δημιουργήθηκε', 'Created' => 'Δημιουργήθηκε',
'CreatedAt' => '#VALUE!', 'CreatedAt' => '',
'CreditRating' => 'Αξιολόγησης της πιστοληπτικής ικανότητας', 'CreditRating' => 'Αξιολόγησης της πιστοληπτικής ικανότητας',
'Creditcard' => 'Πιστωτική κάρτα', 'Creditcard' => 'Πιστωτική κάρτα',
'Customers' => '#VALUE!', 'Customers' => '',
'DSO' => 'ΔΣΟ', 'DSO' => 'ΔΣΟ',
'Date' => 'Ημερομηνία', 'Date' => 'Ημερομηνία',
'Default' => 'Προκαθορισμένο', 'Default' => 'Προκαθορισμένο',
'Delivery' => 'Διανομή', 'Delivery' => 'Διανομή',
'Discount' => 'Εκπτωση', 'Discount' => 'Εκπτωση',
'DiscountBonus' => '#VALUE!', 'DiscountBonus' => '',
'DiscountP' => 'Έκπτωση%', 'DiscountP' => 'Έκπτωση%',
'Documents' => 'Εγγραφα', 'Documents' => 'Εγγραφα',
'Due' => 'Λόγω', 'Due' => 'Λόγω',
'Email' => 'ΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗ', 'Email' => 'ΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗ',
'Europe' => '#VALUE!', 'Europe' => '',
'Fax' => 'Φαξ', 'Fax' => 'Φαξ',
'Files' => 'Αρχεία', 'Files' => 'Αρχεία',
'Filter' => 'Φίλτρο', 'Filter' => 'Φίλτρο',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => 'Τιμολόγιο', 'Invoice' => 'Τιμολόγιο',
'Invoices' => 'Τιμολόγια', 'Invoices' => 'Τιμολόγια',
'IsDefault' => 'Είναι προεπιλογή;', 'IsDefault' => 'Είναι προεπιλογή;',
'Items' => '#VALUE!', 'Items' => '',
'LastContact' => 'Τελευταία επαφή', 'LastContact' => 'Τελευταία επαφή',
'LastOrder' => 'Τελευταία παραγγελία', 'LastOrder' => 'Τελευταία παραγγελία',
'Log' => 'Κούτσουρο', 'Log' => 'Κούτσουρο',
'Logs' => 'Κούτσουρα', 'Logs' => 'Κούτσουρα',
'LostCustomers' => '#VALUE!', 'LostCustomers' => '',
'MRR' => 'MRR', 'MRR' => 'MRR',
'MTDSales' => 'Πωλήσεις MTD', 'MTDSales' => 'Πωλήσεις MTD',
'Map' => '', 'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => νομα2', 'Name2' => νομα2',
'Name3' => 'Όνομα', 'Name3' => 'Όνομα',
'Net' => 'Καθαρά', 'Net' => 'Καθαρά',
'NewCustomers' => '#VALUE!', 'NewCustomers' => '',
'Notes' => 'Σημειώνει', 'Notes' => 'Σημειώνει',
'Number' => 'Αριθμός', 'Number' => 'Αριθμός',
'Office' => 'Γραφείο', 'Office' => 'Γραφείο',
'Other' => '#VALUE!', 'Other' => '',
'Payment' => 'Πληρωμή', 'Payment' => 'Πληρωμή',
'PaymentTerm' => 'Ορος πληρωμής', 'PaymentTerm' => 'Ορος πληρωμής',
'Permission' => 'Αδεια', 'Permission' => 'Αδεια',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => 'Ιδιωτικός', 'Private' => 'Ιδιωτικός',
'Productgroup' => 'Ομοιόμορφη ομάδα', 'Productgroup' => 'Ομοιόμορφη ομάδα',
'Profile' => 'Προφίλ', 'Profile' => 'Προφίλ',
'Profit' => '#VALUE!', 'Profit' => '',
'Purchase' => 'Αγορά', 'Purchase' => 'Αγορά',
'Quantity' => 'Ποσότητα', 'Quantity' => 'Ποσότητα',
'RecentInvoices' => 'Πρόσφατα τιμολόγια', 'RecentInvoices' => 'Πρόσφατα τιμολόγια',
'Region' => '#VALUE!', 'Region' => '',
'Rep' => '#VALUE!', 'Rep' => '',
'Retention' => '#VALUE!', 'Retention' => '',
'Sales' => 'Εκπτώσεις', 'Sales' => 'Εκπτώσεις',
'Segment' => 'Τμήμα', 'Segment' => 'Τμήμα',
'Segments' => 'Τμήματα', 'Segments' => 'Τμήματα',
'Subtype' => 'Υποτύπωμα', 'Subtype' => 'Υποτύπωμα',
'Support' => 'Υποστήριξη', 'Support' => 'Υποστήριξη',
'Tags' => 'Ετικέτες', 'Tags' => 'Ετικέτες',
'Title' => '#VALUE!', 'Title' => '',
'Total' => '#VALUE!', 'Total' => '',
'TotalPrice' => '#VALUE!', 'TotalPrice' => '',
'Type' => 'Τύπος', 'Type' => 'Τύπος',
'UnitPrice' => '#VALUE!', 'UnitPrice' => '',
'Value' => '#VALUE!', 'Value' => '',
'Website' => 'Δικτυακός τόπος', 'Website' => 'Δικτυακός τόπος',
'Wire' => 'Σύρμα', 'Wire' => 'Σύρμα',
'YTDSales' => 'Ytd πωλήσεις', 'YTDSales' => 'Ytd πωλήσεις',

View File

@ -17,48 +17,48 @@ return ['ClientManagement' => [
'Addition' => 'Adición', 'Addition' => 'Adición',
'Address' => 'Habla a', 'Address' => 'Habla a',
'Addresses' => 'Direcciones', 'Addresses' => 'Direcciones',
'Africa' => '#VALUE!', 'Africa' => '',
'AllCustomers' => '#VALUE!', 'AllCustomers' => '',
'America' => '#VALUE!', 'America' => '',
'Analyse' => '#VALUE!', 'Analyse' => '',
'AreaManager' => 'Gerente de área', 'AreaManager' => 'Gerente de área',
'Articlegroup' => 'Grupo articulo', 'Articlegroup' => 'Grupo articulo',
'Articles' => 'Artículos', 'Articles' => 'Artículos',
'Asia' => '#VALUE!', 'Asia' => '',
'Attribute' => '#VALUE!', 'Attribute' => '',
'AttributeTypes' => '', 'AttributeTypes' => '',
'Attributes' => '#VALUE!', 'Attributes' => '',
'Balance' => 'Equilibrio', 'Balance' => 'Equilibrio',
'BaseTime' => '#VALUE!', 'BaseTime' => '',
'Bills' => '#VALUE!', 'Bills' => '',
'Bonus' => 'Prima', 'Bonus' => 'Prima',
'Business' => 'Negocio', 'Business' => 'Negocio',
'CIS' => '#VALUE!', 'CIS' => '',
'CLV' => 'Clv', 'CLV' => 'Clv',
'Calendar' => 'Calendario', 'Calendar' => 'Calendario',
'City' => 'Ciudad', 'City' => 'Ciudad',
'Client' => 'Cliente', 'Client' => 'Cliente',
'ClientID' => '#VALUE!', 'ClientID' => '',
'Clients' => 'Clientela', 'Clients' => 'Clientela',
'ComparisonTime' => '#VALUE!', 'ComparisonTime' => '',
'Contact' => 'Contacto', 'Contact' => 'Contacto',
'Country' => 'País', 'Country' => 'País',
'Created' => 'Creado', 'Created' => 'Creado',
'CreatedAt' => '#VALUE!', 'CreatedAt' => '',
'CreditRating' => 'Calificación crediticia', 'CreditRating' => 'Calificación crediticia',
'Creditcard' => 'Tarjeta de crédito', 'Creditcard' => 'Tarjeta de crédito',
'Customers' => '#VALUE!', 'Customers' => '',
'DSO' => 'DSO', 'DSO' => 'DSO',
'Date' => 'Fecha', 'Date' => 'Fecha',
'Default' => 'Defecto', 'Default' => 'Defecto',
'Delivery' => 'Entrega', 'Delivery' => 'Entrega',
'Discount' => 'Descuento', 'Discount' => 'Descuento',
'DiscountBonus' => '#VALUE!', 'DiscountBonus' => '',
'DiscountP' => 'Descuento%', 'DiscountP' => 'Descuento%',
'Documents' => 'Documentos', 'Documents' => 'Documentos',
'Due' => 'Vencer', 'Due' => 'Vencer',
'Email' => 'Correo electrónico', 'Email' => 'Correo electrónico',
'Europe' => '#VALUE!', 'Europe' => '',
'Fax' => 'Fax', 'Fax' => 'Fax',
'Files' => 'Archivos', 'Files' => 'Archivos',
'Filter' => 'Filtrar', 'Filter' => 'Filtrar',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => 'Factura', 'Invoice' => 'Factura',
'Invoices' => 'Facturas', 'Invoices' => 'Facturas',
'IsDefault' => 'Es por defecto?', 'IsDefault' => 'Es por defecto?',
'Items' => '#VALUE!', 'Items' => '',
'LastContact' => 'Último contacto', 'LastContact' => 'Último contacto',
'LastOrder' => 'Último pedido', 'LastOrder' => 'Último pedido',
'Log' => 'Tronco', 'Log' => 'Tronco',
'Logs' => 'Registros', 'Logs' => 'Registros',
'LostCustomers' => '#VALUE!', 'LostCustomers' => '',
'MRR' => 'Mrr', 'MRR' => 'Mrr',
'MTDSales' => 'Ventas MTD', 'MTDSales' => 'Ventas MTD',
'Map' => '', 'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => 'Nombre2', 'Name2' => 'Nombre2',
'Name3' => 'Nombre3', 'Name3' => 'Nombre3',
'Net' => 'Red', 'Net' => 'Red',
'NewCustomers' => '#VALUE!', 'NewCustomers' => '',
'Notes' => 'Notas', 'Notes' => 'Notas',
'Number' => 'Número', 'Number' => 'Número',
'Office' => 'Oficina', 'Office' => 'Oficina',
'Other' => '#VALUE!', 'Other' => '',
'Payment' => 'Pago', 'Payment' => 'Pago',
'PaymentTerm' => 'Plazo de pago', 'PaymentTerm' => 'Plazo de pago',
'Permission' => 'Permiso', 'Permission' => 'Permiso',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => 'Privado', 'Private' => 'Privado',
'Productgroup' => 'Grupo de productos', 'Productgroup' => 'Grupo de productos',
'Profile' => 'Perfil', 'Profile' => 'Perfil',
'Profit' => '#VALUE!', 'Profit' => '',
'Purchase' => 'Compra', 'Purchase' => 'Compra',
'Quantity' => 'Cantidad', 'Quantity' => 'Cantidad',
'RecentInvoices' => 'Facturas recientes', 'RecentInvoices' => 'Facturas recientes',
'Region' => '#VALUE!', 'Region' => '',
'Rep' => '#VALUE!', 'Rep' => '',
'Retention' => '#VALUE!', 'Retention' => '',
'Sales' => 'Ventas', 'Sales' => 'Ventas',
'Segment' => 'Segmento', 'Segment' => 'Segmento',
'Segments' => 'Segmentos', 'Segments' => 'Segmentos',
'Subtype' => 'Subtipo', 'Subtype' => 'Subtipo',
'Support' => 'Apoyo', 'Support' => 'Apoyo',
'Tags' => 'Etiquetas', 'Tags' => 'Etiquetas',
'Title' => '#VALUE!', 'Title' => '',
'Total' => '#VALUE!', 'Total' => '',
'TotalPrice' => '#VALUE!', 'TotalPrice' => '',
'Type' => 'Escribe', 'Type' => 'Escribe',
'UnitPrice' => '#VALUE!', 'UnitPrice' => '',
'Value' => '#VALUE!', 'Value' => '',
'Website' => 'Sitio web', 'Website' => 'Sitio web',
'Wire' => 'Cable', 'Wire' => 'Cable',
'YTDSales' => 'Ytd ventas', 'YTDSales' => 'Ytd ventas',

View File

@ -17,48 +17,48 @@ return ['ClientManagement' => [
'Addition' => 'Lisäys', 'Addition' => 'Lisäys',
'Address' => 'Osoite', 'Address' => 'Osoite',
'Addresses' => 'Osoitteet', 'Addresses' => 'Osoitteet',
'Africa' => '#VALUE!', 'Africa' => '',
'AllCustomers' => '#VALUE!', 'AllCustomers' => '',
'America' => '#VALUE!', 'America' => '',
'Analyse' => '#VALUE!', 'Analyse' => '',
'AreaManager' => 'Aluejohtaja', 'AreaManager' => 'Aluejohtaja',
'Articlegroup' => 'ArticleGroup', 'Articlegroup' => 'ArticleGroup',
'Articles' => 'Artikkelit', 'Articles' => 'Artikkelit',
'Asia' => '#VALUE!', 'Asia' => '',
'Attribute' => '#VALUE!', 'Attribute' => '',
'AttributeTypes' => '', 'AttributeTypes' => '',
'Attributes' => '#VALUE!', 'Attributes' => '',
'Balance' => 'Saldo', 'Balance' => 'Saldo',
'BaseTime' => '#VALUE!', 'BaseTime' => '',
'Bills' => '#VALUE!', 'Bills' => '',
'Bonus' => 'Bonus', 'Bonus' => 'Bonus',
'Business' => 'Liiketoiminta', 'Business' => 'Liiketoiminta',
'CIS' => '#VALUE!', 'CIS' => '',
'CLV' => 'Clv', 'CLV' => 'Clv',
'Calendar' => 'Kalenteri', 'Calendar' => 'Kalenteri',
'City' => 'Kaupunki', 'City' => 'Kaupunki',
'Client' => 'Asiakas', 'Client' => 'Asiakas',
'ClientID' => '#VALUE!', 'ClientID' => '',
'Clients' => 'Asiakkaat', 'Clients' => 'Asiakkaat',
'ComparisonTime' => '#VALUE!', 'ComparisonTime' => '',
'Contact' => 'Ottaa yhteyttä', 'Contact' => 'Ottaa yhteyttä',
'Country' => 'Maa', 'Country' => 'Maa',
'Created' => 'Luotu', 'Created' => 'Luotu',
'CreatedAt' => '#VALUE!', 'CreatedAt' => '',
'CreditRating' => 'Luottoluokitus', 'CreditRating' => 'Luottoluokitus',
'Creditcard' => 'Luottokortti', 'Creditcard' => 'Luottokortti',
'Customers' => '#VALUE!', 'Customers' => '',
'DSO' => 'Dso', 'DSO' => 'Dso',
'Date' => 'Päivämäärä', 'Date' => 'Päivämäärä',
'Default' => 'Oletusarvo', 'Default' => 'Oletusarvo',
'Delivery' => 'Toimitus', 'Delivery' => 'Toimitus',
'Discount' => 'Alennus', 'Discount' => 'Alennus',
'DiscountBonus' => '#VALUE!', 'DiscountBonus' => '',
'DiscountP' => 'Alennus %', 'DiscountP' => 'Alennus %',
'Documents' => 'Asiakirjat', 'Documents' => 'Asiakirjat',
'Due' => 'Takia', 'Due' => 'Takia',
'Email' => 'Sähköposti', 'Email' => 'Sähköposti',
'Europe' => '#VALUE!', 'Europe' => '',
'Fax' => 'Faksi', 'Fax' => 'Faksi',
'Files' => 'Tiedostot', 'Files' => 'Tiedostot',
'Filter' => 'Suodattaa', 'Filter' => 'Suodattaa',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => 'Lasku', 'Invoice' => 'Lasku',
'Invoices' => 'Laskut', 'Invoices' => 'Laskut',
'IsDefault' => 'On oletusarvo?', 'IsDefault' => 'On oletusarvo?',
'Items' => '#VALUE!', 'Items' => '',
'LastContact' => 'Viimeinen yhteystieto', 'LastContact' => 'Viimeinen yhteystieto',
'LastOrder' => 'Viimeinen tilaus', 'LastOrder' => 'Viimeinen tilaus',
'Log' => 'Hirsi', 'Log' => 'Hirsi',
'Logs' => 'Lokit', 'Logs' => 'Lokit',
'LostCustomers' => '#VALUE!', 'LostCustomers' => '',
'MRR' => 'Mrr', 'MRR' => 'Mrr',
'MTDSales' => 'MTD-myynti', 'MTDSales' => 'MTD-myynti',
'Map' => '', 'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => 'Nimi2', 'Name2' => 'Nimi2',
'Name3' => 'Nimi33', 'Name3' => 'Nimi33',
'Net' => 'Netto', 'Net' => 'Netto',
'NewCustomers' => '#VALUE!', 'NewCustomers' => '',
'Notes' => 'Toteaa', 'Notes' => 'Toteaa',
'Number' => 'Määrä', 'Number' => 'Määrä',
'Office' => 'Toimisto', 'Office' => 'Toimisto',
'Other' => '#VALUE!', 'Other' => '',
'Payment' => 'Maksu', 'Payment' => 'Maksu',
'PaymentTerm' => 'Maksuehto', 'PaymentTerm' => 'Maksuehto',
'Permission' => 'Lupa', 'Permission' => 'Lupa',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => 'Yksityinen', 'Private' => 'Yksityinen',
'Productgroup' => 'Tuoteryhmä', 'Productgroup' => 'Tuoteryhmä',
'Profile' => 'Profiili', 'Profile' => 'Profiili',
'Profit' => '#VALUE!', 'Profit' => '',
'Purchase' => 'Ostaa', 'Purchase' => 'Ostaa',
'Quantity' => 'Määrä', 'Quantity' => 'Määrä',
'RecentInvoices' => 'Viimeaikaiset laskut', 'RecentInvoices' => 'Viimeaikaiset laskut',
'Region' => '#VALUE!', 'Region' => '',
'Rep' => '#VALUE!', 'Rep' => '',
'Retention' => '#VALUE!', 'Retention' => '',
'Sales' => 'Myynti', 'Sales' => 'Myynti',
'Segment' => 'Segmentti', 'Segment' => 'Segmentti',
'Segments' => 'Segmentit', 'Segments' => 'Segmentit',
'Subtype' => 'Alatyyppi', 'Subtype' => 'Alatyyppi',
'Support' => 'Tuki', 'Support' => 'Tuki',
'Tags' => 'Tunnisteet', 'Tags' => 'Tunnisteet',
'Title' => '#VALUE!', 'Title' => '',
'Total' => '#VALUE!', 'Total' => '',
'TotalPrice' => '#VALUE!', 'TotalPrice' => '',
'Type' => 'Tyyppi', 'Type' => 'Tyyppi',
'UnitPrice' => '#VALUE!', 'UnitPrice' => '',
'Value' => '#VALUE!', 'Value' => '',
'Website' => 'Verkkosivusto', 'Website' => 'Verkkosivusto',
'Wire' => 'Lanka', 'Wire' => 'Lanka',
'YTDSales' => 'YTD-myynti', 'YTDSales' => 'YTD-myynti',

View File

@ -17,48 +17,48 @@ return ['ClientManagement' => [
'Addition' => 'Une addition', 'Addition' => 'Une addition',
'Address' => 'Adresse', 'Address' => 'Adresse',
'Addresses' => 'Adresses', 'Addresses' => 'Adresses',
'Africa' => '#VALUE!', 'Africa' => '',
'AllCustomers' => '#VALUE!', 'AllCustomers' => '',
'America' => '#VALUE!', 'America' => '',
'Analyse' => '#VALUE!', 'Analyse' => '',
'AreaManager' => 'Chef de secteur', 'AreaManager' => 'Chef de secteur',
'Articlegroup' => 'Articlegroup', 'Articlegroup' => 'Articlegroup',
'Articles' => 'Des articles', 'Articles' => 'Des articles',
'Asia' => '#VALUE!', 'Asia' => '',
'Attribute' => '#VALUE!', 'Attribute' => '',
'AttributeTypes' => '', 'AttributeTypes' => '',
'Attributes' => '#VALUE!', 'Attributes' => '',
'Balance' => 'Équilibre', 'Balance' => 'Équilibre',
'BaseTime' => '#VALUE!', 'BaseTime' => '',
'Bills' => '#VALUE!', 'Bills' => '',
'Bonus' => 'Prime', 'Bonus' => 'Prime',
'Business' => 'Entreprise', 'Business' => 'Entreprise',
'CIS' => '#VALUE!', 'CIS' => '',
'CLV' => 'Clv', 'CLV' => 'Clv',
'Calendar' => 'Calendrier', 'Calendar' => 'Calendrier',
'City' => 'Ville', 'City' => 'Ville',
'Client' => 'Client', 'Client' => 'Client',
'ClientID' => '#VALUE!', 'ClientID' => '',
'Clients' => 'Clients', 'Clients' => 'Clients',
'ComparisonTime' => '#VALUE!', 'ComparisonTime' => '',
'Contact' => 'Contact', 'Contact' => 'Contact',
'Country' => 'Pays', 'Country' => 'Pays',
'Created' => 'Établi', 'Created' => 'Établi',
'CreatedAt' => '#VALUE!', 'CreatedAt' => '',
'CreditRating' => 'Cote de crédit', 'CreditRating' => 'Cote de crédit',
'Creditcard' => 'Carte de crédit', 'Creditcard' => 'Carte de crédit',
'Customers' => '#VALUE!', 'Customers' => '',
'DSO' => 'Dso', 'DSO' => 'Dso',
'Date' => 'Date', 'Date' => 'Date',
'Default' => 'Défaut', 'Default' => 'Défaut',
'Delivery' => 'Livraison', 'Delivery' => 'Livraison',
'Discount' => 'Remise', 'Discount' => 'Remise',
'DiscountBonus' => '#VALUE!', 'DiscountBonus' => '',
'DiscountP' => 'Remise %', 'DiscountP' => 'Remise %',
'Documents' => 'Documents', 'Documents' => 'Documents',
'Due' => 'Dû', 'Due' => 'Dû',
'Email' => 'E-mail', 'Email' => 'E-mail',
'Europe' => '#VALUE!', 'Europe' => '',
'Fax' => 'Fax', 'Fax' => 'Fax',
'Files' => 'Des dossiers', 'Files' => 'Des dossiers',
'Filter' => 'Filtre', 'Filter' => 'Filtre',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => 'Facture d\'achat', 'Invoice' => 'Facture d\'achat',
'Invoices' => 'Factures', 'Invoices' => 'Factures',
'IsDefault' => 'Est par défaut?', 'IsDefault' => 'Est par défaut?',
'Items' => '#VALUE!', 'Items' => '',
'LastContact' => 'Dernier contact', 'LastContact' => 'Dernier contact',
'LastOrder' => 'Dernière commande', 'LastOrder' => 'Dernière commande',
'Log' => 'Enregistrer', 'Log' => 'Enregistrer',
'Logs' => 'Journaux', 'Logs' => 'Journaux',
'LostCustomers' => '#VALUE!', 'LostCustomers' => '',
'MRR' => 'Mrr', 'MRR' => 'Mrr',
'MTDSales' => 'Ventes MTD', 'MTDSales' => 'Ventes MTD',
'Map' => '', 'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => 'Nom2', 'Name2' => 'Nom2',
'Name3' => 'Nom3', 'Name3' => 'Nom3',
'Net' => 'Rapporter', 'Net' => 'Rapporter',
'NewCustomers' => '#VALUE!', 'NewCustomers' => '',
'Notes' => 'Remarques', 'Notes' => 'Remarques',
'Number' => 'Nombre', 'Number' => 'Nombre',
'Office' => 'Bureau', 'Office' => 'Bureau',
'Other' => '#VALUE!', 'Other' => '',
'Payment' => 'Paiement', 'Payment' => 'Paiement',
'PaymentTerm' => 'Terme de paiement', 'PaymentTerm' => 'Terme de paiement',
'Permission' => 'Autorisation', 'Permission' => 'Autorisation',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => 'Privé', 'Private' => 'Privé',
'Productgroup' => 'Groupe de produits', 'Productgroup' => 'Groupe de produits',
'Profile' => 'Profil', 'Profile' => 'Profil',
'Profit' => '#VALUE!', 'Profit' => '',
'Purchase' => 'Acheter', 'Purchase' => 'Acheter',
'Quantity' => 'Quantité', 'Quantity' => 'Quantité',
'RecentInvoices' => 'Factures récentes', 'RecentInvoices' => 'Factures récentes',
'Region' => '#VALUE!', 'Region' => '',
'Rep' => '#VALUE!', 'Rep' => '',
'Retention' => '#VALUE!', 'Retention' => '',
'Sales' => 'Ventes', 'Sales' => 'Ventes',
'Segment' => 'Segment', 'Segment' => 'Segment',
'Segments' => 'Segments', 'Segments' => 'Segments',
'Subtype' => 'Sous-type', 'Subtype' => 'Sous-type',
'Support' => 'Soutien', 'Support' => 'Soutien',
'Tags' => 'Mots clés', 'Tags' => 'Mots clés',
'Title' => '#VALUE!', 'Title' => '',
'Total' => '#VALUE!', 'Total' => '',
'TotalPrice' => '#VALUE!', 'TotalPrice' => '',
'Type' => 'Taper', 'Type' => 'Taper',
'UnitPrice' => '#VALUE!', 'UnitPrice' => '',
'Value' => '#VALUE!', 'Value' => '',
'Website' => 'Site Internet', 'Website' => 'Site Internet',
'Wire' => 'Fil', 'Wire' => 'Fil',
'YTDSales' => 'Ventes YTD', 'YTDSales' => 'Ventes YTD',

View File

@ -17,48 +17,48 @@ return ['ClientManagement' => [
'Addition' => 'Kiegészítés', 'Addition' => 'Kiegészítés',
'Address' => 'Cím', 'Address' => 'Cím',
'Addresses' => 'Címek', 'Addresses' => 'Címek',
'Africa' => '#VALUE!', 'Africa' => '',
'AllCustomers' => '#VALUE!', 'AllCustomers' => '',
'America' => '#VALUE!', 'America' => '',
'Analyse' => '#VALUE!', 'Analyse' => '',
'AreaManager' => 'Területi menedzser', 'AreaManager' => 'Területi menedzser',
'Articlegroup' => 'Gyerekcsoport', 'Articlegroup' => 'Gyerekcsoport',
'Articles' => 'Árucikkek', 'Articles' => 'Árucikkek',
'Asia' => '#VALUE!', 'Asia' => '',
'Attribute' => '#VALUE!', 'Attribute' => '',
'AttributeTypes' => '', 'AttributeTypes' => '',
'Attributes' => '#VALUE!', 'Attributes' => '',
'Balance' => 'Egyensúly', 'Balance' => 'Egyensúly',
'BaseTime' => '#VALUE!', 'BaseTime' => '',
'Bills' => '#VALUE!', 'Bills' => '',
'Bonus' => 'Bónusz', 'Bonus' => 'Bónusz',
'Business' => 'Üzleti', 'Business' => 'Üzleti',
'CIS' => '#VALUE!', 'CIS' => '',
'CLV' => 'Clv', 'CLV' => 'Clv',
'Calendar' => 'Naptár', 'Calendar' => 'Naptár',
'City' => 'Város', 'City' => 'Város',
'Client' => 'Ügyfél', 'Client' => 'Ügyfél',
'ClientID' => '#VALUE!', 'ClientID' => '',
'Clients' => 'Kliensek', 'Clients' => 'Kliensek',
'ComparisonTime' => '#VALUE!', 'ComparisonTime' => '',
'Contact' => 'Kapcsolatba lépni', 'Contact' => 'Kapcsolatba lépni',
'Country' => 'Ország', 'Country' => 'Ország',
'Created' => 'Létrehozott', 'Created' => 'Létrehozott',
'CreatedAt' => '#VALUE!', 'CreatedAt' => '',
'CreditRating' => 'Hitelminősítő', 'CreditRating' => 'Hitelminősítő',
'Creditcard' => 'Hitelkártya', 'Creditcard' => 'Hitelkártya',
'Customers' => '#VALUE!', 'Customers' => '',
'DSO' => 'DSO', 'DSO' => 'DSO',
'Date' => 'Dátum', 'Date' => 'Dátum',
'Default' => 'Alapértelmezett', 'Default' => 'Alapértelmezett',
'Delivery' => 'Szállítás', 'Delivery' => 'Szállítás',
'Discount' => 'Kedvezmény', 'Discount' => 'Kedvezmény',
'DiscountBonus' => '#VALUE!', 'DiscountBonus' => '',
'DiscountP' => 'Árengedmény%', 'DiscountP' => 'Árengedmény%',
'Documents' => 'Dokumentumok', 'Documents' => 'Dokumentumok',
'Due' => 'Esedékes', 'Due' => 'Esedékes',
'Email' => 'Email', 'Email' => 'Email',
'Europe' => '#VALUE!', 'Europe' => '',
'Fax' => 'Fax', 'Fax' => 'Fax',
'Files' => 'Fájlok', 'Files' => 'Fájlok',
'Filter' => 'Szűrő', 'Filter' => 'Szűrő',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => 'Számla', 'Invoice' => 'Számla',
'Invoices' => 'Számlák', 'Invoices' => 'Számlák',
'IsDefault' => 'Alapértelmezett?', 'IsDefault' => 'Alapértelmezett?',
'Items' => '#VALUE!', 'Items' => '',
'LastContact' => 'Utolsó kapcsolat', 'LastContact' => 'Utolsó kapcsolat',
'LastOrder' => 'Utolsó rendelés', 'LastOrder' => 'Utolsó rendelés',
'Log' => 'Napló', 'Log' => 'Napló',
'Logs' => 'Naplók', 'Logs' => 'Naplók',
'LostCustomers' => '#VALUE!', 'LostCustomers' => '',
'MRR' => 'Mrr', 'MRR' => 'Mrr',
'MTDSales' => 'MTD értékesítés', 'MTDSales' => 'MTD értékesítés',
'Map' => '', 'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => 'NAME2', 'Name2' => 'NAME2',
'Name3' => 'Név3', 'Name3' => 'Név3',
'Net' => 'Háló', 'Net' => 'Háló',
'NewCustomers' => '#VALUE!', 'NewCustomers' => '',
'Notes' => 'Jegyzetek', 'Notes' => 'Jegyzetek',
'Number' => 'Szám', 'Number' => 'Szám',
'Office' => 'Hivatal', 'Office' => 'Hivatal',
'Other' => '#VALUE!', 'Other' => '',
'Payment' => 'Fizetés', 'Payment' => 'Fizetés',
'PaymentTerm' => 'Fizetési határidő', 'PaymentTerm' => 'Fizetési határidő',
'Permission' => 'Engedély', 'Permission' => 'Engedély',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => 'Magán', 'Private' => 'Magán',
'Productgroup' => 'Termékcsoport', 'Productgroup' => 'Termékcsoport',
'Profile' => 'Profil', 'Profile' => 'Profil',
'Profit' => '#VALUE!', 'Profit' => '',
'Purchase' => 'Vásárlás', 'Purchase' => 'Vásárlás',
'Quantity' => 'Mennyiség', 'Quantity' => 'Mennyiség',
'RecentInvoices' => 'Legutóbbi számlák', 'RecentInvoices' => 'Legutóbbi számlák',
'Region' => '#VALUE!', 'Region' => '',
'Rep' => '#VALUE!', 'Rep' => '',
'Retention' => '#VALUE!', 'Retention' => '',
'Sales' => 'Értékesítés', 'Sales' => 'Értékesítés',
'Segment' => 'Szegmens', 'Segment' => 'Szegmens',
'Segments' => 'Szegmensek', 'Segments' => 'Szegmensek',
'Subtype' => 'Altípus', 'Subtype' => 'Altípus',
'Support' => 'Támogatás', 'Support' => 'Támogatás',
'Tags' => 'Címkék', 'Tags' => 'Címkék',
'Title' => '#VALUE!', 'Title' => '',
'Total' => '#VALUE!', 'Total' => '',
'TotalPrice' => '#VALUE!', 'TotalPrice' => '',
'Type' => 'típus', 'Type' => 'típus',
'UnitPrice' => '#VALUE!', 'UnitPrice' => '',
'Value' => '#VALUE!', 'Value' => '',
'Website' => 'Weboldal', 'Website' => 'Weboldal',
'Wire' => 'Huzal', 'Wire' => 'Huzal',
'YTDSales' => 'YTD értékesítés', 'YTDSales' => 'YTD értékesítés',

View File

@ -17,48 +17,48 @@ return ['ClientManagement' => [
'Addition' => 'Aggiunta', 'Addition' => 'Aggiunta',
'Address' => 'Indirizzo', 'Address' => 'Indirizzo',
'Addresses' => 'Indirizzi', 'Addresses' => 'Indirizzi',
'Africa' => '#VALUE!', 'Africa' => '',
'AllCustomers' => '#VALUE!', 'AllCustomers' => '',
'America' => '#VALUE!', 'America' => '',
'Analyse' => '#VALUE!', 'Analyse' => '',
'AreaManager' => 'Area Manager', 'AreaManager' => 'Area Manager',
'Articlegroup' => 'Art.group.', 'Articlegroup' => 'Art.group.',
'Articles' => 'Artificio', 'Articles' => 'Artificio',
'Asia' => '#VALUE!', 'Asia' => '',
'Attribute' => '#VALUE!', 'Attribute' => '',
'AttributeTypes' => '', 'AttributeTypes' => '',
'Attributes' => '#VALUE!', 'Attributes' => '',
'Balance' => 'Bilancia', 'Balance' => 'Bilancia',
'BaseTime' => '#VALUE!', 'BaseTime' => '',
'Bills' => '#VALUE!', 'Bills' => '',
'Bonus' => 'Bonus.', 'Bonus' => 'Bonus.',
'Business' => 'Affare', 'Business' => 'Affare',
'CIS' => '#VALUE!', 'CIS' => '',
'CLV' => 'Clv.', 'CLV' => 'Clv.',
'Calendar' => 'Calendario', 'Calendar' => 'Calendario',
'City' => 'Città', 'City' => 'Città',
'Client' => 'Cliente', 'Client' => 'Cliente',
'ClientID' => '#VALUE!', 'ClientID' => '',
'Clients' => 'Clienti', 'Clients' => 'Clienti',
'ComparisonTime' => '#VALUE!', 'ComparisonTime' => '',
'Contact' => 'Contatto', 'Contact' => 'Contatto',
'Country' => 'Nazione', 'Country' => 'Nazione',
'Created' => 'Creato', 'Created' => 'Creato',
'CreatedAt' => '#VALUE!', 'CreatedAt' => '',
'CreditRating' => 'Rating del credito', 'CreditRating' => 'Rating del credito',
'Creditcard' => 'Carta di credito', 'Creditcard' => 'Carta di credito',
'Customers' => '#VALUE!', 'Customers' => '',
'DSO' => 'DSO.', 'DSO' => 'DSO.',
'Date' => 'Data', 'Date' => 'Data',
'Default' => 'Predefinito', 'Default' => 'Predefinito',
'Delivery' => 'Consegna', 'Delivery' => 'Consegna',
'Discount' => 'Sconto', 'Discount' => 'Sconto',
'DiscountBonus' => '#VALUE!', 'DiscountBonus' => '',
'DiscountP' => 'Sconto%', 'DiscountP' => 'Sconto%',
'Documents' => 'Documenti', 'Documents' => 'Documenti',
'Due' => 'Dovuto', 'Due' => 'Dovuto',
'Email' => 'E-mail', 'Email' => 'E-mail',
'Europe' => '#VALUE!', 'Europe' => '',
'Fax' => 'Fax', 'Fax' => 'Fax',
'Files' => 'File', 'Files' => 'File',
'Filter' => 'Filtro', 'Filter' => 'Filtro',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => 'Fattura', 'Invoice' => 'Fattura',
'Invoices' => 'Fatture', 'Invoices' => 'Fatture',
'IsDefault' => 'È predefinito?', 'IsDefault' => 'È predefinito?',
'Items' => '#VALUE!', 'Items' => '',
'LastContact' => 'Ultimo contatto', 'LastContact' => 'Ultimo contatto',
'LastOrder' => 'Ultimo ordine', 'LastOrder' => 'Ultimo ordine',
'Log' => 'Tronco d\'albero', 'Log' => 'Tronco d\'albero',
'Logs' => 'Logs.', 'Logs' => 'Logs.',
'LostCustomers' => '#VALUE!', 'LostCustomers' => '',
'MRR' => 'Mrr.', 'MRR' => 'Mrr.',
'MTDSales' => 'Vendite di mtd.', 'MTDSales' => 'Vendite di mtd.',
'Map' => '', 'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => 'Nome2.', 'Name2' => 'Nome2.',
'Name3' => 'Nome3.', 'Name3' => 'Nome3.',
'Net' => 'Rete', 'Net' => 'Rete',
'NewCustomers' => '#VALUE!', 'NewCustomers' => '',
'Notes' => 'Appunti', 'Notes' => 'Appunti',
'Number' => 'Numero', 'Number' => 'Numero',
'Office' => 'Ufficio', 'Office' => 'Ufficio',
'Other' => '#VALUE!', 'Other' => '',
'Payment' => 'Pagamento', 'Payment' => 'Pagamento',
'PaymentTerm' => 'Termine di pagamento', 'PaymentTerm' => 'Termine di pagamento',
'Permission' => 'Autorizzazione', 'Permission' => 'Autorizzazione',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => 'Privato', 'Private' => 'Privato',
'Productgroup' => 'Gruppo di prodotti', 'Productgroup' => 'Gruppo di prodotti',
'Profile' => 'Profilo', 'Profile' => 'Profilo',
'Profit' => '#VALUE!', 'Profit' => '',
'Purchase' => 'Acquistare', 'Purchase' => 'Acquistare',
'Quantity' => 'Quantità', 'Quantity' => 'Quantità',
'RecentInvoices' => 'Recenti fatture', 'RecentInvoices' => 'Recenti fatture',
'Region' => '#VALUE!', 'Region' => '',
'Rep' => '#VALUE!', 'Rep' => '',
'Retention' => '#VALUE!', 'Retention' => '',
'Sales' => 'Saldi', 'Sales' => 'Saldi',
'Segment' => 'Segmento', 'Segment' => 'Segmento',
'Segments' => 'Segmenti', 'Segments' => 'Segmenti',
'Subtype' => 'Sottotipo', 'Subtype' => 'Sottotipo',
'Support' => 'Supporto', 'Support' => 'Supporto',
'Tags' => 'Tags.', 'Tags' => 'Tags.',
'Title' => '#VALUE!', 'Title' => '',
'Total' => '#VALUE!', 'Total' => '',
'TotalPrice' => '#VALUE!', 'TotalPrice' => '',
'Type' => 'Tipo', 'Type' => 'Tipo',
'UnitPrice' => '#VALUE!', 'UnitPrice' => '',
'Value' => '#VALUE!', 'Value' => '',
'Website' => 'Sito web', 'Website' => 'Sito web',
'Wire' => 'Filo', 'Wire' => 'Filo',
'YTDSales' => 'Vendite di ytd.', 'YTDSales' => 'Vendite di ytd.',

View File

@ -17,48 +17,48 @@ return ['ClientManagement' => [
'Addition' => '添加', 'Addition' => '添加',
'Address' => '住所', 'Address' => '住所',
'Addresses' => 'アドレス', 'Addresses' => 'アドレス',
'Africa' => '#VALUE!', 'Africa' => '',
'AllCustomers' => '#VALUE!', 'AllCustomers' => '',
'America' => '#VALUE!', 'America' => '',
'Analyse' => '#VALUE!', 'Analyse' => '',
'AreaManager' => 'エリアマネージャー', 'AreaManager' => 'エリアマネージャー',
'Articlegroup' => '記事グループ', 'Articlegroup' => '記事グループ',
'Articles' => 'articles', 'Articles' => 'articles',
'Asia' => '#VALUE!', 'Asia' => '',
'Attribute' => '#VALUE!', 'Attribute' => '',
'AttributeTypes' => '', 'AttributeTypes' => '',
'Attributes' => '#VALUE!', 'Attributes' => '',
'Balance' => 'バランス', 'Balance' => 'バランス',
'BaseTime' => '#VALUE!', 'BaseTime' => '',
'Bills' => '#VALUE!', 'Bills' => '',
'Bonus' => 'ボーナス', 'Bonus' => 'ボーナス',
'Business' => '仕事', 'Business' => '仕事',
'CIS' => '#VALUE!', 'CIS' => '',
'CLV' => 'cl cl', 'CLV' => 'cl cl',
'Calendar' => 'カレンダー', 'Calendar' => 'カレンダー',
'City' => '市', 'City' => '市',
'Client' => 'クライアント', 'Client' => 'クライアント',
'ClientID' => '#VALUE!', 'ClientID' => '',
'Clients' => 'クライアント', 'Clients' => 'クライアント',
'ComparisonTime' => '#VALUE!', 'ComparisonTime' => '',
'Contact' => 'コンタクト', 'Contact' => 'コンタクト',
'Country' => '国', 'Country' => '国',
'Created' => '作成した', 'Created' => '作成した',
'CreatedAt' => '#VALUE!', 'CreatedAt' => '',
'CreditRating' => '信用格付け', 'CreditRating' => '信用格付け',
'Creditcard' => 'クレジットカード', 'Creditcard' => 'クレジットカード',
'Customers' => '#VALUE!', 'Customers' => '',
'DSO' => 'DSO', 'DSO' => 'DSO',
'Date' => '日にち', 'Date' => '日にち',
'Default' => 'ディフォルト', 'Default' => 'ディフォルト',
'Delivery' => '配達', 'Delivery' => '配達',
'Discount' => '割引', 'Discount' => '割引',
'DiscountBonus' => '#VALUE!', 'DiscountBonus' => '',
'DiscountP' => '割引 ', 'DiscountP' => '割引 ',
'Documents' => '文書', 'Documents' => '文書',
'Due' => '期限', 'Due' => '期限',
'Email' => 'Eメール', 'Email' => 'Eメール',
'Europe' => '#VALUE!', 'Europe' => '',
'Fax' => 'ファックス', 'Fax' => 'ファックス',
'Files' => 'ファイル', 'Files' => 'ファイル',
'Filter' => 'フィルター', 'Filter' => 'フィルター',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => '請求書', 'Invoice' => '請求書',
'Invoices' => '請求書', 'Invoices' => '請求書',
'IsDefault' => 'デフォルトですか?', 'IsDefault' => 'デフォルトですか?',
'Items' => '#VALUE!', 'Items' => '',
'LastContact' => '最後の連絡先', 'LastContact' => '最後の連絡先',
'LastOrder' => '最後の順序', 'LastOrder' => '最後の順序',
'Log' => 'ログ', 'Log' => 'ログ',
'Logs' => 'ログ', 'Logs' => 'ログ',
'LostCustomers' => '#VALUE!', 'LostCustomers' => '',
'MRR' => 'MRR.', 'MRR' => 'MRR.',
'MTDSales' => 'MTDセールス', 'MTDSales' => 'MTDセールス',
'Map' => '', 'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => '名前2', 'Name2' => '名前2',
'Name3' => '名前3', 'Name3' => '名前3',
'Net' => 'ネット', 'Net' => 'ネット',
'NewCustomers' => '#VALUE!', 'NewCustomers' => '',
'Notes' => 'ノート', 'Notes' => 'ノート',
'Number' => '番号', 'Number' => '番号',
'Office' => 'オフィス', 'Office' => 'オフィス',
'Other' => '#VALUE!', 'Other' => '',
'Payment' => '支払い', 'Payment' => '支払い',
'PaymentTerm' => '支払条件', 'PaymentTerm' => '支払条件',
'Permission' => '許可', 'Permission' => '許可',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => '民間', 'Private' => '民間',
'Productgroup' => '製品グループ', 'Productgroup' => '製品グループ',
'Profile' => 'プロフィール', 'Profile' => 'プロフィール',
'Profit' => '#VALUE!', 'Profit' => '',
'Purchase' => '購入', 'Purchase' => '購入',
'Quantity' => '量', 'Quantity' => '量',
'RecentInvoices' => '最近の請求書', 'RecentInvoices' => '最近の請求書',
'Region' => '#VALUE!', 'Region' => '',
'Rep' => '#VALUE!', 'Rep' => '',
'Retention' => '#VALUE!', 'Retention' => '',
'Sales' => '売り返り', 'Sales' => '売り返り',
'Segment' => 'セグメント', 'Segment' => 'セグメント',
'Segments' => 'セグメント', 'Segments' => 'セグメント',
'Subtype' => 'サブタイプ', 'Subtype' => 'サブタイプ',
'Support' => 'サポート', 'Support' => 'サポート',
'Tags' => 'タグ', 'Tags' => 'タグ',
'Title' => '#VALUE!', 'Title' => '',
'Total' => '#VALUE!', 'Total' => '',
'TotalPrice' => '#VALUE!', 'TotalPrice' => '',
'Type' => 'タイプ', 'Type' => 'タイプ',
'UnitPrice' => '#VALUE!', 'UnitPrice' => '',
'Value' => '#VALUE!', 'Value' => '',
'Website' => 'Webサイト', 'Website' => 'Webサイト',
'Wire' => 'ワイヤー', 'Wire' => 'ワイヤー',
'YTDSales' => 'ytd売上高', 'YTDSales' => 'ytd売上高',

View File

@ -17,48 +17,48 @@ return ['ClientManagement' => [
'Addition' => '덧셈', 'Addition' => '덧셈',
'Address' => '주소', 'Address' => '주소',
'Addresses' => '구애', 'Addresses' => '구애',
'Africa' => '#VALUE!', 'Africa' => '',
'AllCustomers' => '#VALUE!', 'AllCustomers' => '',
'America' => '#VALUE!', 'America' => '',
'Analyse' => '#VALUE!', 'Analyse' => '',
'AreaManager' => '구역 책임자', 'AreaManager' => '구역 책임자',
'Articlegroup' => '기사 그룹', 'Articlegroup' => '기사 그룹',
'Articles' => '조항', 'Articles' => '조항',
'Asia' => '#VALUE!', 'Asia' => '',
'Attribute' => '#VALUE!', 'Attribute' => '',
'AttributeTypes' => '', 'AttributeTypes' => '',
'Attributes' => '#VALUE!', 'Attributes' => '',
'Balance' => '균형', 'Balance' => '균형',
'BaseTime' => '#VALUE!', 'BaseTime' => '',
'Bills' => '#VALUE!', 'Bills' => '',
'Bonus' => '보너스', 'Bonus' => '보너스',
'Business' => '사업', 'Business' => '사업',
'CIS' => '#VALUE!', 'CIS' => '',
'CLV' => 'CLV.', 'CLV' => 'CLV.',
'Calendar' => '달력', 'Calendar' => '달력',
'City' => '도시', 'City' => '도시',
'Client' => '고객', 'Client' => '고객',
'ClientID' => '#VALUE!', 'ClientID' => '',
'Clients' => '클라이언트', 'Clients' => '클라이언트',
'ComparisonTime' => '#VALUE!', 'ComparisonTime' => '',
'Contact' => '연락하다', 'Contact' => '연락하다',
'Country' => '국가', 'Country' => '국가',
'Created' => '만들어진', 'Created' => '만들어진',
'CreatedAt' => '#VALUE!', 'CreatedAt' => '',
'CreditRating' => '신용 등급', 'CreditRating' => '신용 등급',
'Creditcard' => '신용 카드', 'Creditcard' => '신용 카드',
'Customers' => '#VALUE!', 'Customers' => '',
'DSO' => 'DSO.', 'DSO' => 'DSO.',
'Date' => '날짜', 'Date' => '날짜',
'Default' => '기본', 'Default' => '기본',
'Delivery' => '배달', 'Delivery' => '배달',
'Discount' => '할인', 'Discount' => '할인',
'DiscountBonus' => '#VALUE!', 'DiscountBonus' => '',
'DiscountP' => '할인 %', 'DiscountP' => '할인 %',
'Documents' => '서류', 'Documents' => '서류',
'Due' => '로 인한', 'Due' => '로 인한',
'Email' => '이메일', 'Email' => '이메일',
'Europe' => '#VALUE!', 'Europe' => '',
'Fax' => '팩스', 'Fax' => '팩스',
'Files' => '파일', 'Files' => '파일',
'Filter' => '필터', 'Filter' => '필터',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => '송장', 'Invoice' => '송장',
'Invoices' => '송장', 'Invoices' => '송장',
'IsDefault' => '기본값은 무엇입니까?', 'IsDefault' => '기본값은 무엇입니까?',
'Items' => '#VALUE!', 'Items' => '',
'LastContact' => '마지막 연락처', 'LastContact' => '마지막 연락처',
'LastOrder' => '마지막 주문', 'LastOrder' => '마지막 주문',
'Log' => '통나무', 'Log' => '통나무',
'Logs' => '로그인', 'Logs' => '로그인',
'LostCustomers' => '#VALUE!', 'LostCustomers' => '',
'MRR' => '부서', 'MRR' => '부서',
'MTDSales' => 'MTD 판매', 'MTDSales' => 'MTD 판매',
'Map' => '', 'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => 'name2.', 'Name2' => 'name2.',
'Name3' => 'Name3.', 'Name3' => 'Name3.',
'Net' => '그물', 'Net' => '그물',
'NewCustomers' => '#VALUE!', 'NewCustomers' => '',
'Notes' => '노트', 'Notes' => '노트',
'Number' => '숫자', 'Number' => '숫자',
'Office' => '사무실', 'Office' => '사무실',
'Other' => '#VALUE!', 'Other' => '',
'Payment' => '지불', 'Payment' => '지불',
'PaymentTerm' => '지불 기간', 'PaymentTerm' => '지불 기간',
'Permission' => '허가', 'Permission' => '허가',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => '사적인', 'Private' => '사적인',
'Productgroup' => '제품 그룹', 'Productgroup' => '제품 그룹',
'Profile' => '프로필', 'Profile' => '프로필',
'Profit' => '#VALUE!', 'Profit' => '',
'Purchase' => '구입', 'Purchase' => '구입',
'Quantity' => '수량', 'Quantity' => '수량',
'RecentInvoices' => '최근 송장', 'RecentInvoices' => '최근 송장',
'Region' => '#VALUE!', 'Region' => '',
'Rep' => '#VALUE!', 'Rep' => '',
'Retention' => '#VALUE!', 'Retention' => '',
'Sales' => '매상', 'Sales' => '매상',
'Segment' => '분절', 'Segment' => '분절',
'Segments' => '세그먼트', 'Segments' => '세그먼트',
'Subtype' => '하위 유형', 'Subtype' => '하위 유형',
'Support' => '지원하다', 'Support' => '지원하다',
'Tags' => '태그', 'Tags' => '태그',
'Title' => '#VALUE!', 'Title' => '',
'Total' => '#VALUE!', 'Total' => '',
'TotalPrice' => '#VALUE!', 'TotalPrice' => '',
'Type' => '유형', 'Type' => '유형',
'UnitPrice' => '#VALUE!', 'UnitPrice' => '',
'Value' => '#VALUE!', 'Value' => '',
'Website' => '웹 사이트', 'Website' => '웹 사이트',
'Wire' => '철사', 'Wire' => '철사',
'YTDSales' => 'YTD 판매', 'YTDSales' => 'YTD 판매',

View File

@ -17,48 +17,48 @@ return ['ClientManagement' => [
'Addition' => 'Addisjon', 'Addition' => 'Addisjon',
'Address' => 'Adresse', 'Address' => 'Adresse',
'Addresses' => 'Adresser', 'Addresses' => 'Adresser',
'Africa' => '#VALUE!', 'Africa' => '',
'AllCustomers' => '#VALUE!', 'AllCustomers' => '',
'America' => '#VALUE!', 'America' => '',
'Analyse' => '#VALUE!', 'Analyse' => '',
'AreaManager' => 'Områdeansvarlig', 'AreaManager' => 'Områdeansvarlig',
'Articlegroup' => 'Articregroup.', 'Articlegroup' => 'Articregroup.',
'Articles' => 'Artikler', 'Articles' => 'Artikler',
'Asia' => '#VALUE!', 'Asia' => '',
'Attribute' => '#VALUE!', 'Attribute' => '',
'AttributeTypes' => '', 'AttributeTypes' => '',
'Attributes' => '#VALUE!', 'Attributes' => '',
'Balance' => 'Balansere', 'Balance' => 'Balansere',
'BaseTime' => '#VALUE!', 'BaseTime' => '',
'Bills' => '#VALUE!', 'Bills' => '',
'Bonus' => 'Bonus', 'Bonus' => 'Bonus',
'Business' => 'Virksomhet', 'Business' => 'Virksomhet',
'CIS' => '#VALUE!', 'CIS' => '',
'CLV' => 'CLV.', 'CLV' => 'CLV.',
'Calendar' => 'Kalender', 'Calendar' => 'Kalender',
'City' => 'By', 'City' => 'By',
'Client' => 'Klient', 'Client' => 'Klient',
'ClientID' => '#VALUE!', 'ClientID' => '',
'Clients' => 'Klienter', 'Clients' => 'Klienter',
'ComparisonTime' => '#VALUE!', 'ComparisonTime' => '',
'Contact' => 'Kontakt', 'Contact' => 'Kontakt',
'Country' => 'Land', 'Country' => 'Land',
'Created' => 'Opprettet', 'Created' => 'Opprettet',
'CreatedAt' => '#VALUE!', 'CreatedAt' => '',
'CreditRating' => 'Kredittvurdering', 'CreditRating' => 'Kredittvurdering',
'Creditcard' => 'Kredittkort', 'Creditcard' => 'Kredittkort',
'Customers' => '#VALUE!', 'Customers' => '',
'DSO' => 'DSO', 'DSO' => 'DSO',
'Date' => 'Dato', 'Date' => 'Dato',
'Default' => 'Misligholde', 'Default' => 'Misligholde',
'Delivery' => 'Leveranse', 'Delivery' => 'Leveranse',
'Discount' => 'Rabatt', 'Discount' => 'Rabatt',
'DiscountBonus' => '#VALUE!', 'DiscountBonus' => '',
'DiscountP' => 'Rabatt%', 'DiscountP' => 'Rabatt%',
'Documents' => 'Dokumenter', 'Documents' => 'Dokumenter',
'Due' => 'På grunn av det', 'Due' => 'På grunn av det',
'Email' => 'E-post', 'Email' => 'E-post',
'Europe' => '#VALUE!', 'Europe' => '',
'Fax' => 'Faks', 'Fax' => 'Faks',
'Files' => 'Filer', 'Files' => 'Filer',
'Filter' => 'Filter', 'Filter' => 'Filter',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => 'Faktura', 'Invoice' => 'Faktura',
'Invoices' => 'Fakturaer', 'Invoices' => 'Fakturaer',
'IsDefault' => 'Er standard?', 'IsDefault' => 'Er standard?',
'Items' => '#VALUE!', 'Items' => '',
'LastContact' => 'Siste kontakt', 'LastContact' => 'Siste kontakt',
'LastOrder' => 'Siste bestilling', 'LastOrder' => 'Siste bestilling',
'Log' => 'Logg', 'Log' => 'Logg',
'Logs' => 'Tømmerstokker', 'Logs' => 'Tømmerstokker',
'LostCustomers' => '#VALUE!', 'LostCustomers' => '',
'MRR' => 'MRR.', 'MRR' => 'MRR.',
'MTDSales' => 'MTD-salg', 'MTDSales' => 'MTD-salg',
'Map' => '', 'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => 'NAME2.', 'Name2' => 'NAME2.',
'Name3' => 'Navn3.', 'Name3' => 'Navn3.',
'Net' => 'Nett', 'Net' => 'Nett',
'NewCustomers' => '#VALUE!', 'NewCustomers' => '',
'Notes' => 'Notater', 'Notes' => 'Notater',
'Number' => 'Nummer', 'Number' => 'Nummer',
'Office' => 'Kontor', 'Office' => 'Kontor',
'Other' => '#VALUE!', 'Other' => '',
'Payment' => 'innbetaling', 'Payment' => 'innbetaling',
'PaymentTerm' => 'Betalingsperiode', 'PaymentTerm' => 'Betalingsperiode',
'Permission' => 'Tillatelse', 'Permission' => 'Tillatelse',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => 'Privat', 'Private' => 'Privat',
'Productgroup' => 'Produktgruppe', 'Productgroup' => 'Produktgruppe',
'Profile' => 'Profil', 'Profile' => 'Profil',
'Profit' => '#VALUE!', 'Profit' => '',
'Purchase' => 'Kjøp', 'Purchase' => 'Kjøp',
'Quantity' => 'Mengde', 'Quantity' => 'Mengde',
'RecentInvoices' => 'Nylige fakturaer', 'RecentInvoices' => 'Nylige fakturaer',
'Region' => '#VALUE!', 'Region' => '',
'Rep' => '#VALUE!', 'Rep' => '',
'Retention' => '#VALUE!', 'Retention' => '',
'Sales' => 'Salg', 'Sales' => 'Salg',
'Segment' => 'Segmentet', 'Segment' => 'Segmentet',
'Segments' => 'Segmenter', 'Segments' => 'Segmenter',
'Subtype' => 'Subtype.', 'Subtype' => 'Subtype.',
'Support' => 'Brukerstøtte', 'Support' => 'Brukerstøtte',
'Tags' => 'Tags.', 'Tags' => 'Tags.',
'Title' => '#VALUE!', 'Title' => '',
'Total' => '#VALUE!', 'Total' => '',
'TotalPrice' => '#VALUE!', 'TotalPrice' => '',
'Type' => 'Type', 'Type' => 'Type',
'UnitPrice' => '#VALUE!', 'UnitPrice' => '',
'Value' => '#VALUE!', 'Value' => '',
'Website' => 'Nettside', 'Website' => 'Nettside',
'Wire' => 'Metalltråd', 'Wire' => 'Metalltråd',
'YTDSales' => 'YTD-salg', 'YTDSales' => 'YTD-salg',

View File

@ -17,48 +17,48 @@ return ['ClientManagement' => [
'Addition' => 'Dodatek', 'Addition' => 'Dodatek',
'Address' => 'Adres', 'Address' => 'Adres',
'Addresses' => 'Adresy', 'Addresses' => 'Adresy',
'Africa' => '#VALUE!', 'Africa' => '',
'AllCustomers' => '#VALUE!', 'AllCustomers' => '',
'America' => '#VALUE!', 'America' => '',
'Analyse' => '#VALUE!', 'Analyse' => '',
'AreaManager' => 'Dyrektor Regionalny', 'AreaManager' => 'Dyrektor Regionalny',
'Articlegroup' => 'Artykuł', 'Articlegroup' => 'Artykuł',
'Articles' => 'Artykuły', 'Articles' => 'Artykuły',
'Asia' => '#VALUE!', 'Asia' => '',
'Attribute' => '#VALUE!', 'Attribute' => '',
'AttributeTypes' => '', 'AttributeTypes' => '',
'Attributes' => '#VALUE!', 'Attributes' => '',
'Balance' => 'Balansować', 'Balance' => 'Balansować',
'BaseTime' => '#VALUE!', 'BaseTime' => '',
'Bills' => '#VALUE!', 'Bills' => '',
'Bonus' => 'Premia', 'Bonus' => 'Premia',
'Business' => 'Biznes', 'Business' => 'Biznes',
'CIS' => '#VALUE!', 'CIS' => '',
'CLV' => 'CLV.', 'CLV' => 'CLV.',
'Calendar' => 'Kalendarz', 'Calendar' => 'Kalendarz',
'City' => 'Miasto', 'City' => 'Miasto',
'Client' => 'Klient', 'Client' => 'Klient',
'ClientID' => '#VALUE!', 'ClientID' => '',
'Clients' => 'Klienci.', 'Clients' => 'Klienci.',
'ComparisonTime' => '#VALUE!', 'ComparisonTime' => '',
'Contact' => 'Kontakt', 'Contact' => 'Kontakt',
'Country' => 'Kraj', 'Country' => 'Kraj',
'Created' => 'Utworzony', 'Created' => 'Utworzony',
'CreatedAt' => '#VALUE!', 'CreatedAt' => '',
'CreditRating' => 'Rating kredytowy', 'CreditRating' => 'Rating kredytowy',
'Creditcard' => 'Karta kredytowa', 'Creditcard' => 'Karta kredytowa',
'Customers' => '#VALUE!', 'Customers' => '',
'DSO' => 'DSO.', 'DSO' => 'DSO.',
'Date' => 'Data', 'Date' => 'Data',
'Default' => 'Domyślna', 'Default' => 'Domyślna',
'Delivery' => 'Dostawa', 'Delivery' => 'Dostawa',
'Discount' => 'Zniżka', 'Discount' => 'Zniżka',
'DiscountBonus' => '#VALUE!', 'DiscountBonus' => '',
'DiscountP' => 'Zniżka %', 'DiscountP' => 'Zniżka %',
'Documents' => 'Dokumenty', 'Documents' => 'Dokumenty',
'Due' => 'Z powodu', 'Due' => 'Z powodu',
'Email' => 'E-mail', 'Email' => 'E-mail',
'Europe' => '#VALUE!', 'Europe' => '',
'Fax' => 'Faks', 'Fax' => 'Faks',
'Files' => 'Pliki', 'Files' => 'Pliki',
'Filter' => 'Filtr', 'Filter' => 'Filtr',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => 'Faktura', 'Invoice' => 'Faktura',
'Invoices' => 'Faktury', 'Invoices' => 'Faktury',
'IsDefault' => 'Jest domyślnie?', 'IsDefault' => 'Jest domyślnie?',
'Items' => '#VALUE!', 'Items' => '',
'LastContact' => 'Ostatni kontakt', 'LastContact' => 'Ostatni kontakt',
'LastOrder' => 'Ostatnie zamówienie', 'LastOrder' => 'Ostatnie zamówienie',
'Log' => 'Dziennik', 'Log' => 'Dziennik',
'Logs' => 'Kłody', 'Logs' => 'Kłody',
'LostCustomers' => '#VALUE!', 'LostCustomers' => '',
'MRR' => 'MRR.', 'MRR' => 'MRR.',
'MTDSales' => 'Sprzedaż MTD.', 'MTDSales' => 'Sprzedaż MTD.',
'Map' => '', 'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => 'Nazwa2.', 'Name2' => 'Nazwa2.',
'Name3' => 'Nazwa3.', 'Name3' => 'Nazwa3.',
'Net' => 'Internet', 'Net' => 'Internet',
'NewCustomers' => '#VALUE!', 'NewCustomers' => '',
'Notes' => 'Notatki', 'Notes' => 'Notatki',
'Number' => 'Numer', 'Number' => 'Numer',
'Office' => 'Gabinet', 'Office' => 'Gabinet',
'Other' => '#VALUE!', 'Other' => '',
'Payment' => 'Zapłata', 'Payment' => 'Zapłata',
'PaymentTerm' => 'Termin płatności', 'PaymentTerm' => 'Termin płatności',
'Permission' => 'Pozwolenie', 'Permission' => 'Pozwolenie',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => 'Prywatny', 'Private' => 'Prywatny',
'Productgroup' => 'Grupa produktów', 'Productgroup' => 'Grupa produktów',
'Profile' => 'Profil', 'Profile' => 'Profil',
'Profit' => '#VALUE!', 'Profit' => '',
'Purchase' => 'Zakup', 'Purchase' => 'Zakup',
'Quantity' => 'Ilość', 'Quantity' => 'Ilość',
'RecentInvoices' => 'Ostatnie faktury.', 'RecentInvoices' => 'Ostatnie faktury.',
'Region' => '#VALUE!', 'Region' => '',
'Rep' => '#VALUE!', 'Rep' => '',
'Retention' => '#VALUE!', 'Retention' => '',
'Sales' => 'Obroty', 'Sales' => 'Obroty',
'Segment' => 'Człon', 'Segment' => 'Człon',
'Segments' => 'Segmenty', 'Segments' => 'Segmenty',
'Subtype' => 'Podtyp', 'Subtype' => 'Podtyp',
'Support' => 'Wsparcie', 'Support' => 'Wsparcie',
'Tags' => 'Tagi.', 'Tags' => 'Tagi.',
'Title' => '#VALUE!', 'Title' => '',
'Total' => '#VALUE!', 'Total' => '',
'TotalPrice' => '#VALUE!', 'TotalPrice' => '',
'Type' => 'Rodzaj', 'Type' => 'Rodzaj',
'UnitPrice' => '#VALUE!', 'UnitPrice' => '',
'Value' => '#VALUE!', 'Value' => '',
'Website' => 'Stronie internetowej', 'Website' => 'Stronie internetowej',
'Wire' => 'Drut', 'Wire' => 'Drut',
'YTDSales' => 'Sprzedaż Ytd.', 'YTDSales' => 'Sprzedaż Ytd.',

View File

@ -17,48 +17,48 @@ return ['ClientManagement' => [
'Addition' => 'Adição', 'Addition' => 'Adição',
'Address' => 'Endereço', 'Address' => 'Endereço',
'Addresses' => 'Endereços', 'Addresses' => 'Endereços',
'Africa' => '#VALUE!', 'Africa' => '',
'AllCustomers' => '#VALUE!', 'AllCustomers' => '',
'America' => '#VALUE!', 'America' => '',
'Analyse' => '#VALUE!', 'Analyse' => '',
'AreaManager' => 'Gerente da área', 'AreaManager' => 'Gerente da área',
'Articlegroup' => 'ArticleGroup', 'Articlegroup' => 'ArticleGroup',
'Articles' => 'Artigos', 'Articles' => 'Artigos',
'Asia' => '#VALUE!', 'Asia' => '',
'Attribute' => '#VALUE!', 'Attribute' => '',
'AttributeTypes' => '', 'AttributeTypes' => '',
'Attributes' => '#VALUE!', 'Attributes' => '',
'Balance' => 'Equilíbrio', 'Balance' => 'Equilíbrio',
'BaseTime' => '#VALUE!', 'BaseTime' => '',
'Bills' => '#VALUE!', 'Bills' => '',
'Bonus' => 'Bônus', 'Bonus' => 'Bônus',
'Business' => 'O negócio', 'Business' => 'O negócio',
'CIS' => '#VALUE!', 'CIS' => '',
'CLV' => 'Clv.', 'CLV' => 'Clv.',
'Calendar' => 'Calendário', 'Calendar' => 'Calendário',
'City' => 'Cidade', 'City' => 'Cidade',
'Client' => 'Cliente', 'Client' => 'Cliente',
'ClientID' => '#VALUE!', 'ClientID' => '',
'Clients' => 'Clientes', 'Clients' => 'Clientes',
'ComparisonTime' => '#VALUE!', 'ComparisonTime' => '',
'Contact' => 'Contato', 'Contact' => 'Contato',
'Country' => 'País', 'Country' => 'País',
'Created' => 'Criado', 'Created' => 'Criado',
'CreatedAt' => '#VALUE!', 'CreatedAt' => '',
'CreditRating' => 'Rating de crédito', 'CreditRating' => 'Rating de crédito',
'Creditcard' => 'Cartão de crédito', 'Creditcard' => 'Cartão de crédito',
'Customers' => '#VALUE!', 'Customers' => '',
'DSO' => 'Dso.', 'DSO' => 'Dso.',
'Date' => 'Encontro', 'Date' => 'Encontro',
'Default' => 'Padrão', 'Default' => 'Padrão',
'Delivery' => 'Entrega', 'Delivery' => 'Entrega',
'Discount' => 'Desconto', 'Discount' => 'Desconto',
'DiscountBonus' => '#VALUE!', 'DiscountBonus' => '',
'DiscountP' => 'Desconto%', 'DiscountP' => 'Desconto%',
'Documents' => 'Documentos', 'Documents' => 'Documentos',
'Due' => 'Vencimento', 'Due' => 'Vencimento',
'Email' => 'E-mail', 'Email' => 'E-mail',
'Europe' => '#VALUE!', 'Europe' => '',
'Fax' => 'Fax', 'Fax' => 'Fax',
'Files' => 'arquivos', 'Files' => 'arquivos',
'Filter' => 'Filtro', 'Filter' => 'Filtro',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => 'Fatura', 'Invoice' => 'Fatura',
'Invoices' => 'Faturas', 'Invoices' => 'Faturas',
'IsDefault' => 'É padrão?', 'IsDefault' => 'É padrão?',
'Items' => '#VALUE!', 'Items' => '',
'LastContact' => 'Último contato.', 'LastContact' => 'Último contato.',
'LastOrder' => 'Último pedido', 'LastOrder' => 'Último pedido',
'Log' => 'Registro', 'Log' => 'Registro',
'Logs' => 'Histórico', 'Logs' => 'Histórico',
'LostCustomers' => '#VALUE!', 'LostCustomers' => '',
'MRR' => 'MRR.', 'MRR' => 'MRR.',
'MTDSales' => 'Sales Mtd.', 'MTDSales' => 'Sales Mtd.',
'Map' => '', 'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => 'Nome2.', 'Name2' => 'Nome2.',
'Name3' => 'Nome3.', 'Name3' => 'Nome3.',
'Net' => 'Internet', 'Net' => 'Internet',
'NewCustomers' => '#VALUE!', 'NewCustomers' => '',
'Notes' => 'Notas', 'Notes' => 'Notas',
'Number' => 'Número', 'Number' => 'Número',
'Office' => 'Escritório', 'Office' => 'Escritório',
'Other' => '#VALUE!', 'Other' => '',
'Payment' => 'Pagamento', 'Payment' => 'Pagamento',
'PaymentTerm' => 'Termo de pagamento', 'PaymentTerm' => 'Termo de pagamento',
'Permission' => 'Permissão', 'Permission' => 'Permissão',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => 'Privado', 'Private' => 'Privado',
'Productgroup' => 'Grupo de produtos', 'Productgroup' => 'Grupo de produtos',
'Profile' => 'Perfil', 'Profile' => 'Perfil',
'Profit' => '#VALUE!', 'Profit' => '',
'Purchase' => 'Comprar', 'Purchase' => 'Comprar',
'Quantity' => 'Quantidade', 'Quantity' => 'Quantidade',
'RecentInvoices' => 'Faturas recentes', 'RecentInvoices' => 'Faturas recentes',
'Region' => '#VALUE!', 'Region' => '',
'Rep' => '#VALUE!', 'Rep' => '',
'Retention' => '#VALUE!', 'Retention' => '',
'Sales' => 'Vendas', 'Sales' => 'Vendas',
'Segment' => 'Segmento', 'Segment' => 'Segmento',
'Segments' => 'Segmentos', 'Segments' => 'Segmentos',
'Subtype' => 'Subtipo', 'Subtype' => 'Subtipo',
'Support' => 'Apoio, suporte', 'Support' => 'Apoio, suporte',
'Tags' => 'Tag', 'Tags' => 'Tag',
'Title' => '#VALUE!', 'Title' => '',
'Total' => '#VALUE!', 'Total' => '',
'TotalPrice' => '#VALUE!', 'TotalPrice' => '',
'Type' => 'Modelo', 'Type' => 'Modelo',
'UnitPrice' => '#VALUE!', 'UnitPrice' => '',
'Value' => '#VALUE!', 'Value' => '',
'Website' => 'Local na rede Internet', 'Website' => 'Local na rede Internet',
'Wire' => 'Fio', 'Wire' => 'Fio',
'YTDSales' => 'Vendas do ano', 'YTDSales' => 'Vendas do ano',

View File

@ -17,48 +17,48 @@ return ['ClientManagement' => [
'Addition' => 'Добавление', 'Addition' => 'Добавление',
'Address' => 'Адрес', 'Address' => 'Адрес',
'Addresses' => 'Адреса', 'Addresses' => 'Адреса',
'Africa' => '#VALUE!', 'Africa' => '',
'AllCustomers' => '#VALUE!', 'AllCustomers' => '',
'America' => '#VALUE!', 'America' => '',
'Analyse' => '#VALUE!', 'Analyse' => '',
'AreaManager' => 'Региональный менеджер', 'AreaManager' => 'Региональный менеджер',
'Articlegroup' => 'Staregroup.', 'Articlegroup' => 'Staregroup.',
'Articles' => 'Статьи', 'Articles' => 'Статьи',
'Asia' => '#VALUE!', 'Asia' => '',
'Attribute' => '#VALUE!', 'Attribute' => '',
'AttributeTypes' => '', 'AttributeTypes' => '',
'Attributes' => '#VALUE!', 'Attributes' => '',
'Balance' => 'Остаток средств', 'Balance' => 'Остаток средств',
'BaseTime' => '#VALUE!', 'BaseTime' => '',
'Bills' => '#VALUE!', 'Bills' => '',
'Bonus' => 'Бонус', 'Bonus' => 'Бонус',
'Business' => 'Бизнес', 'Business' => 'Бизнес',
'CIS' => '#VALUE!', 'CIS' => '',
'CLV' => 'Каблук', 'CLV' => 'Каблук',
'Calendar' => 'Календарь', 'Calendar' => 'Календарь',
'City' => 'Город', 'City' => 'Город',
'Client' => 'Клиент', 'Client' => 'Клиент',
'ClientID' => '#VALUE!', 'ClientID' => '',
'Clients' => 'Клиенты', 'Clients' => 'Клиенты',
'ComparisonTime' => '#VALUE!', 'ComparisonTime' => '',
'Contact' => 'Контакт', 'Contact' => 'Контакт',
'Country' => 'Страна', 'Country' => 'Страна',
'Created' => 'Созданный', 'Created' => 'Созданный',
'CreatedAt' => '#VALUE!', 'CreatedAt' => '',
'CreditRating' => 'Кредитный рейтинг', 'CreditRating' => 'Кредитный рейтинг',
'Creditcard' => 'Кредитная карта', 'Creditcard' => 'Кредитная карта',
'Customers' => '#VALUE!', 'Customers' => '',
'DSO' => 'DSO', 'DSO' => 'DSO',
'Date' => 'Дата', 'Date' => 'Дата',
'Default' => 'Дефолт', 'Default' => 'Дефолт',
'Delivery' => 'Доставка', 'Delivery' => 'Доставка',
'Discount' => 'Скидка', 'Discount' => 'Скидка',
'DiscountBonus' => '#VALUE!', 'DiscountBonus' => '',
'DiscountP' => 'Скидка %', 'DiscountP' => 'Скидка %',
'Documents' => 'Документы', 'Documents' => 'Документы',
'Due' => 'Должное', 'Due' => 'Должное',
'Email' => 'Электронное письмо', 'Email' => 'Электронное письмо',
'Europe' => '#VALUE!', 'Europe' => '',
'Fax' => 'Факс', 'Fax' => 'Факс',
'Files' => 'Файлы', 'Files' => 'Файлы',
'Filter' => 'Фильтр', 'Filter' => 'Фильтр',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => 'Счет', 'Invoice' => 'Счет',
'Invoices' => 'Счета', 'Invoices' => 'Счета',
'IsDefault' => 'По умолчанию?', 'IsDefault' => 'По умолчанию?',
'Items' => '#VALUE!', 'Items' => '',
'LastContact' => 'Последний контакт', 'LastContact' => 'Последний контакт',
'LastOrder' => 'Последний заказ', 'LastOrder' => 'Последний заказ',
'Log' => 'Бревно', 'Log' => 'Бревно',
'Logs' => 'Журналы', 'Logs' => 'Журналы',
'LostCustomers' => '#VALUE!', 'LostCustomers' => '',
'MRR' => 'MRR', 'MRR' => 'MRR',
'MTDSales' => 'MTD Sales.', 'MTDSales' => 'MTD Sales.',
'Map' => '', 'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => 'Имя2.', 'Name2' => 'Имя2.',
'Name3' => 'Имя3.', 'Name3' => 'Имя3.',
'Net' => 'Сеть', 'Net' => 'Сеть',
'NewCustomers' => '#VALUE!', 'NewCustomers' => '',
'Notes' => 'Примечания', 'Notes' => 'Примечания',
'Number' => 'Число', 'Number' => 'Число',
'Office' => 'Офис', 'Office' => 'Офис',
'Other' => '#VALUE!', 'Other' => '',
'Payment' => 'Оплата', 'Payment' => 'Оплата',
'PaymentTerm' => 'Условия оплаты', 'PaymentTerm' => 'Условия оплаты',
'Permission' => 'Разрешение', 'Permission' => 'Разрешение',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => 'Частный', 'Private' => 'Частный',
'Productgroup' => 'Группа товаров', 'Productgroup' => 'Группа товаров',
'Profile' => 'Профиль', 'Profile' => 'Профиль',
'Profit' => '#VALUE!', 'Profit' => '',
'Purchase' => 'Покупка', 'Purchase' => 'Покупка',
'Quantity' => 'Количество', 'Quantity' => 'Количество',
'RecentInvoices' => 'Недавние счета', 'RecentInvoices' => 'Недавние счета',
'Region' => '#VALUE!', 'Region' => '',
'Rep' => '#VALUE!', 'Rep' => '',
'Retention' => '#VALUE!', 'Retention' => '',
'Sales' => 'Продажи', 'Sales' => 'Продажи',
'Segment' => 'Сегмент', 'Segment' => 'Сегмент',
'Segments' => 'Сегменты', 'Segments' => 'Сегменты',
'Subtype' => 'Подтип', 'Subtype' => 'Подтип',
'Support' => 'Служба поддержки', 'Support' => 'Служба поддержки',
'Tags' => 'Теги', 'Tags' => 'Теги',
'Title' => '#VALUE!', 'Title' => '',
'Total' => '#VALUE!', 'Total' => '',
'TotalPrice' => '#VALUE!', 'TotalPrice' => '',
'Type' => 'Тип', 'Type' => 'Тип',
'UnitPrice' => '#VALUE!', 'UnitPrice' => '',
'Value' => '#VALUE!', 'Value' => '',
'Website' => 'Веб-сайт', 'Website' => 'Веб-сайт',
'Wire' => 'Проволока', 'Wire' => 'Проволока',
'YTDSales' => 'YTD Sales.', 'YTDSales' => 'YTD Sales.',

View File

@ -17,48 +17,48 @@ return ['ClientManagement' => [
'Addition' => 'Tillägg', 'Addition' => 'Tillägg',
'Address' => 'Adress', 'Address' => 'Adress',
'Addresses' => 'Adresser', 'Addresses' => 'Adresser',
'Africa' => '#VALUE!', 'Africa' => '',
'AllCustomers' => '#VALUE!', 'AllCustomers' => '',
'America' => '#VALUE!', 'America' => '',
'Analyse' => '#VALUE!', 'Analyse' => '',
'AreaManager' => 'Områdeschef', 'AreaManager' => 'Områdeschef',
'Articlegroup' => 'Artikelgrupp', 'Articlegroup' => 'Artikelgrupp',
'Articles' => 'Artiklar', 'Articles' => 'Artiklar',
'Asia' => '#VALUE!', 'Asia' => '',
'Attribute' => '#VALUE!', 'Attribute' => '',
'AttributeTypes' => '', 'AttributeTypes' => '',
'Attributes' => '#VALUE!', 'Attributes' => '',
'Balance' => 'Balans', 'Balance' => 'Balans',
'BaseTime' => '#VALUE!', 'BaseTime' => '',
'Bills' => '#VALUE!', 'Bills' => '',
'Bonus' => 'Bonus', 'Bonus' => 'Bonus',
'Business' => 'Företag', 'Business' => 'Företag',
'CIS' => '#VALUE!', 'CIS' => '',
'CLV' => 'Clv', 'CLV' => 'Clv',
'Calendar' => 'Kalender', 'Calendar' => 'Kalender',
'City' => 'Stad', 'City' => 'Stad',
'Client' => 'Klient', 'Client' => 'Klient',
'ClientID' => '#VALUE!', 'ClientID' => '',
'Clients' => 'Klienter', 'Clients' => 'Klienter',
'ComparisonTime' => '#VALUE!', 'ComparisonTime' => '',
'Contact' => 'Kontakt', 'Contact' => 'Kontakt',
'Country' => 'Land', 'Country' => 'Land',
'Created' => 'Skapad', 'Created' => 'Skapad',
'CreatedAt' => '#VALUE!', 'CreatedAt' => '',
'CreditRating' => 'Kreditvärdighet', 'CreditRating' => 'Kreditvärdighet',
'Creditcard' => 'Kreditkort', 'Creditcard' => 'Kreditkort',
'Customers' => '#VALUE!', 'Customers' => '',
'DSO' => 'Do', 'DSO' => 'Do',
'Date' => 'Datum', 'Date' => 'Datum',
'Default' => 'Standard', 'Default' => 'Standard',
'Delivery' => 'Leverans', 'Delivery' => 'Leverans',
'Discount' => 'Rabatt', 'Discount' => 'Rabatt',
'DiscountBonus' => '#VALUE!', 'DiscountBonus' => '',
'DiscountP' => 'Rabatt%', 'DiscountP' => 'Rabatt%',
'Documents' => 'Dokument', 'Documents' => 'Dokument',
'Due' => 'På grund av', 'Due' => 'På grund av',
'Email' => 'E-post', 'Email' => 'E-post',
'Europe' => '#VALUE!', 'Europe' => '',
'Fax' => 'Fax', 'Fax' => 'Fax',
'Files' => 'Filer', 'Files' => 'Filer',
'Filter' => 'Filtrera', 'Filter' => 'Filtrera',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => 'Faktura', 'Invoice' => 'Faktura',
'Invoices' => 'Fakturor', 'Invoices' => 'Fakturor',
'IsDefault' => 'Är standard?', 'IsDefault' => 'Är standard?',
'Items' => '#VALUE!', 'Items' => '',
'LastContact' => 'Senaste kontakten', 'LastContact' => 'Senaste kontakten',
'LastOrder' => 'Sista beställningen', 'LastOrder' => 'Sista beställningen',
'Log' => 'Logga', 'Log' => 'Logga',
'Logs' => 'Loggar', 'Logs' => 'Loggar',
'LostCustomers' => '#VALUE!', 'LostCustomers' => '',
'MRR' => 'Mrr', 'MRR' => 'Mrr',
'MTDSales' => 'MTD-försäljning', 'MTDSales' => 'MTD-försäljning',
'Map' => '', 'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => 'Namn2', 'Name2' => 'Namn2',
'Name3' => 'Namn3', 'Name3' => 'Namn3',
'Net' => 'Netto', 'Net' => 'Netto',
'NewCustomers' => '#VALUE!', 'NewCustomers' => '',
'Notes' => 'Anteckningar', 'Notes' => 'Anteckningar',
'Number' => 'siffra', 'Number' => 'siffra',
'Office' => 'Kontor', 'Office' => 'Kontor',
'Other' => '#VALUE!', 'Other' => '',
'Payment' => 'Betalning', 'Payment' => 'Betalning',
'PaymentTerm' => 'Betalningsvillkor', 'PaymentTerm' => 'Betalningsvillkor',
'Permission' => 'Tillstånd', 'Permission' => 'Tillstånd',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => 'Privat', 'Private' => 'Privat',
'Productgroup' => 'Produktgrupp', 'Productgroup' => 'Produktgrupp',
'Profile' => 'Profil', 'Profile' => 'Profil',
'Profit' => '#VALUE!', 'Profit' => '',
'Purchase' => 'Inköp', 'Purchase' => 'Inköp',
'Quantity' => 'Kvantitet', 'Quantity' => 'Kvantitet',
'RecentInvoices' => 'Nya fakturor', 'RecentInvoices' => 'Nya fakturor',
'Region' => '#VALUE!', 'Region' => '',
'Rep' => '#VALUE!', 'Rep' => '',
'Retention' => '#VALUE!', 'Retention' => '',
'Sales' => 'Försäljning', 'Sales' => 'Försäljning',
'Segment' => 'Segmentet', 'Segment' => 'Segmentet',
'Segments' => 'Segment', 'Segments' => 'Segment',
'Subtype' => 'Subtyp', 'Subtype' => 'Subtyp',
'Support' => 'Stöd', 'Support' => 'Stöd',
'Tags' => 'Tagg', 'Tags' => 'Tagg',
'Title' => '#VALUE!', 'Title' => '',
'Total' => '#VALUE!', 'Total' => '',
'TotalPrice' => '#VALUE!', 'TotalPrice' => '',
'Type' => 'Typ', 'Type' => 'Typ',
'UnitPrice' => '#VALUE!', 'UnitPrice' => '',
'Value' => '#VALUE!', 'Value' => '',
'Website' => 'Hemsida', 'Website' => 'Hemsida',
'Wire' => 'Tråd', 'Wire' => 'Tråd',
'YTDSales' => 'YTD-försäljning', 'YTDSales' => 'YTD-försäljning',

View File

@ -17,48 +17,48 @@ return ['ClientManagement' => [
'Addition' => 'ส่วนที่เพิ่มเข้าไป', 'Addition' => 'ส่วนที่เพิ่มเข้าไป',
'Address' => 'ที่อยู่', 'Address' => 'ที่อยู่',
'Addresses' => 'ที่อยู่', 'Addresses' => 'ที่อยู่',
'Africa' => '#VALUE!', 'Africa' => '',
'AllCustomers' => '#VALUE!', 'AllCustomers' => '',
'America' => '#VALUE!', 'America' => '',
'Analyse' => '#VALUE!', 'Analyse' => '',
'AreaManager' => 'ผู้จัดการพื้นที่', 'AreaManager' => 'ผู้จัดการพื้นที่',
'Articlegroup' => 'ArticleGroup', 'Articlegroup' => 'ArticleGroup',
'Articles' => 'บทความ', 'Articles' => 'บทความ',
'Asia' => '#VALUE!', 'Asia' => '',
'Attribute' => '#VALUE!', 'Attribute' => '',
'AttributeTypes' => '', 'AttributeTypes' => '',
'Attributes' => '#VALUE!', 'Attributes' => '',
'Balance' => 'สมดุล', 'Balance' => 'สมดุล',
'BaseTime' => '#VALUE!', 'BaseTime' => '',
'Bills' => '#VALUE!', 'Bills' => '',
'Bonus' => 'โบนัส', 'Bonus' => 'โบนัส',
'Business' => 'ธุรกิจ', 'Business' => 'ธุรกิจ',
'CIS' => '#VALUE!', 'CIS' => '',
'CLV' => 'clv', 'CLV' => 'clv',
'Calendar' => 'ปฏิทิน', 'Calendar' => 'ปฏิทิน',
'City' => 'เมือง', 'City' => 'เมือง',
'Client' => 'ลูกค้า', 'Client' => 'ลูกค้า',
'ClientID' => '#VALUE!', 'ClientID' => '',
'Clients' => 'ลูกค้า', 'Clients' => 'ลูกค้า',
'ComparisonTime' => '#VALUE!', 'ComparisonTime' => '',
'Contact' => 'ติดต่อ', 'Contact' => 'ติดต่อ',
'Country' => 'ประเทศ', 'Country' => 'ประเทศ',
'Created' => 'สร้าง', 'Created' => 'สร้าง',
'CreatedAt' => '#VALUE!', 'CreatedAt' => '',
'CreditRating' => 'การจัดอันดับเครดิต', 'CreditRating' => 'การจัดอันดับเครดิต',
'Creditcard' => 'บัตรเครดิต', 'Creditcard' => 'บัตรเครดิต',
'Customers' => '#VALUE!', 'Customers' => '',
'DSO' => 'DSO', 'DSO' => 'DSO',
'Date' => 'วันที่', 'Date' => 'วันที่',
'Default' => 'ค่าเริ่มต้น', 'Default' => 'ค่าเริ่มต้น',
'Delivery' => 'จัดส่ง', 'Delivery' => 'จัดส่ง',
'Discount' => 'การลดราคา', 'Discount' => 'การลดราคา',
'DiscountBonus' => '#VALUE!', 'DiscountBonus' => '',
'DiscountP' => 'การลดราคา %', 'DiscountP' => 'การลดราคา %',
'Documents' => 'เอกสาร', 'Documents' => 'เอกสาร',
'Due' => 'เนื่องจาก', 'Due' => 'เนื่องจาก',
'Email' => 'อีเมล', 'Email' => 'อีเมล',
'Europe' => '#VALUE!', 'Europe' => '',
'Fax' => 'แฟกซ์', 'Fax' => 'แฟกซ์',
'Files' => 'ไฟล์', 'Files' => 'ไฟล์',
'Filter' => 'กรอง', 'Filter' => 'กรอง',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => 'ใบแจ้งหนี้', 'Invoice' => 'ใบแจ้งหนี้',
'Invoices' => 'ใบแจ้งหนี้', 'Invoices' => 'ใบแจ้งหนี้',
'IsDefault' => 'เป็นค่าเริ่มต้น?', 'IsDefault' => 'เป็นค่าเริ่มต้น?',
'Items' => '#VALUE!', 'Items' => '',
'LastContact' => 'ติดต่อล่าสุด', 'LastContact' => 'ติดต่อล่าสุด',
'LastOrder' => 'คำสั่งสุดท้าย', 'LastOrder' => 'คำสั่งสุดท้าย',
'Log' => 'บันทึก', 'Log' => 'บันทึก',
'Logs' => 'การบันทึก', 'Logs' => 'การบันทึก',
'LostCustomers' => '#VALUE!', 'LostCustomers' => '',
'MRR' => 'MRR', 'MRR' => 'MRR',
'MTDSales' => 'ขาย MTD', 'MTDSales' => 'ขาย MTD',
'Map' => '', 'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => 'ชื่อ 2', 'Name2' => 'ชื่อ 2',
'Name3' => 'ชื่อ 3', 'Name3' => 'ชื่อ 3',
'Net' => 'สุทธิ', 'Net' => 'สุทธิ',
'NewCustomers' => '#VALUE!', 'NewCustomers' => '',
'Notes' => 'หมายเหตุ', 'Notes' => 'หมายเหตุ',
'Number' => 'ตัวเลข', 'Number' => 'ตัวเลข',
'Office' => 'สำนักงาน', 'Office' => 'สำนักงาน',
'Other' => '#VALUE!', 'Other' => '',
'Payment' => 'การชำระเงิน', 'Payment' => 'การชำระเงิน',
'PaymentTerm' => 'เงื่อนไขการชำระเงิน', 'PaymentTerm' => 'เงื่อนไขการชำระเงิน',
'Permission' => 'การอนุญาต', 'Permission' => 'การอนุญาต',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => 'ส่วนตัว', 'Private' => 'ส่วนตัว',
'Productgroup' => 'กลุ่มผลิตภัณฑ์', 'Productgroup' => 'กลุ่มผลิตภัณฑ์',
'Profile' => 'ประวัติโดยย่อ', 'Profile' => 'ประวัติโดยย่อ',
'Profit' => '#VALUE!', 'Profit' => '',
'Purchase' => 'ซื้อ', 'Purchase' => 'ซื้อ',
'Quantity' => 'ปริมาณ', 'Quantity' => 'ปริมาณ',
'RecentInvoices' => 'ใบแจ้งหนี้ล่าสุด', 'RecentInvoices' => 'ใบแจ้งหนี้ล่าสุด',
'Region' => '#VALUE!', 'Region' => '',
'Rep' => '#VALUE!', 'Rep' => '',
'Retention' => '#VALUE!', 'Retention' => '',
'Sales' => 'ฝ่ายขาย', 'Sales' => 'ฝ่ายขาย',
'Segment' => 'ส่วน', 'Segment' => 'ส่วน',
'Segments' => 'กลุ่ม', 'Segments' => 'กลุ่ม',
'Subtype' => 'ประเภทย่อย', 'Subtype' => 'ประเภทย่อย',
'Support' => 'สนับสนุน', 'Support' => 'สนับสนุน',
'Tags' => 'แท็ก', 'Tags' => 'แท็ก',
'Title' => '#VALUE!', 'Title' => '',
'Total' => '#VALUE!', 'Total' => '',
'TotalPrice' => '#VALUE!', 'TotalPrice' => '',
'Type' => 'พิมพ์', 'Type' => 'พิมพ์',
'UnitPrice' => '#VALUE!', 'UnitPrice' => '',
'Value' => '#VALUE!', 'Value' => '',
'Website' => 'เว็บไซต์', 'Website' => 'เว็บไซต์',
'Wire' => 'ลวด', 'Wire' => 'ลวด',
'YTDSales' => 'ขาย YTD', 'YTDSales' => 'ขาย YTD',

View File

@ -17,48 +17,48 @@ return ['ClientManagement' => [
'Addition' => 'İlave', 'Addition' => 'İlave',
'Address' => 'Adres', 'Address' => 'Adres',
'Addresses' => 'Adresler', 'Addresses' => 'Adresler',
'Africa' => '#VALUE!', 'Africa' => '',
'AllCustomers' => '#VALUE!', 'AllCustomers' => '',
'America' => '#VALUE!', 'America' => '',
'Analyse' => '#VALUE!', 'Analyse' => '',
'AreaManager' => 'Alan müdürü', 'AreaManager' => 'Alan müdürü',
'Articlegroup' => 'Makale grubu', 'Articlegroup' => 'Makale grubu',
'Articles' => 'Nesne', 'Articles' => 'Nesne',
'Asia' => '#VALUE!', 'Asia' => '',
'Attribute' => '#VALUE!', 'Attribute' => '',
'AttributeTypes' => '', 'AttributeTypes' => '',
'Attributes' => '#VALUE!', 'Attributes' => '',
'Balance' => 'Denge', 'Balance' => 'Denge',
'BaseTime' => '#VALUE!', 'BaseTime' => '',
'Bills' => '#VALUE!', 'Bills' => '',
'Bonus' => 'Bonus', 'Bonus' => 'Bonus',
'Business' => 'İşletme', 'Business' => 'İşletme',
'CIS' => '#VALUE!', 'CIS' => '',
'CLV' => 'Clv', 'CLV' => 'Clv',
'Calendar' => 'Takvim', 'Calendar' => 'Takvim',
'City' => 'Şehir', 'City' => 'Şehir',
'Client' => 'Müşteri', 'Client' => 'Müşteri',
'ClientID' => '#VALUE!', 'ClientID' => '',
'Clients' => 'Müşteriler', 'Clients' => 'Müşteriler',
'ComparisonTime' => '#VALUE!', 'ComparisonTime' => '',
'Contact' => 'Temas', 'Contact' => 'Temas',
'Country' => 'Ülke', 'Country' => 'Ülke',
'Created' => 'Yaratılmış', 'Created' => 'Yaratılmış',
'CreatedAt' => '#VALUE!', 'CreatedAt' => '',
'CreditRating' => 'Kredi notu', 'CreditRating' => 'Kredi notu',
'Creditcard' => 'Kredi kartı', 'Creditcard' => 'Kredi kartı',
'Customers' => '#VALUE!', 'Customers' => '',
'DSO' => 'Dso', 'DSO' => 'Dso',
'Date' => 'Tarih', 'Date' => 'Tarih',
'Default' => 'Varsayılan', 'Default' => 'Varsayılan',
'Delivery' => 'Teslimat', 'Delivery' => 'Teslimat',
'Discount' => 'İndirim', 'Discount' => 'İndirim',
'DiscountBonus' => '#VALUE!', 'DiscountBonus' => '',
'DiscountP' => 'İndirim %', 'DiscountP' => 'İndirim %',
'Documents' => 'Belgeler', 'Documents' => 'Belgeler',
'Due' => 'Vadesi dolmuş', 'Due' => 'Vadesi dolmuş',
'Email' => 'E-posta', 'Email' => 'E-posta',
'Europe' => '#VALUE!', 'Europe' => '',
'Fax' => 'Faks', 'Fax' => 'Faks',
'Files' => 'Dosyalar', 'Files' => 'Dosyalar',
'Filter' => 'Filtrelemek', 'Filter' => 'Filtrelemek',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => 'Fatura', 'Invoice' => 'Fatura',
'Invoices' => 'Faturalar', 'Invoices' => 'Faturalar',
'IsDefault' => 'Varsayılan mı?', 'IsDefault' => 'Varsayılan mı?',
'Items' => '#VALUE!', 'Items' => '',
'LastContact' => 'Son iletişim', 'LastContact' => 'Son iletişim',
'LastOrder' => 'Son sipariş', 'LastOrder' => 'Son sipariş',
'Log' => 'Kayıt', 'Log' => 'Kayıt',
'Logs' => 'Kütükler', 'Logs' => 'Kütükler',
'LostCustomers' => '#VALUE!', 'LostCustomers' => '',
'MRR' => 'Mrr', 'MRR' => 'Mrr',
'MTDSales' => 'Mtd satışları', 'MTDSales' => 'Mtd satışları',
'Map' => '', 'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => 'İsim2', 'Name2' => 'İsim2',
'Name3' => 'İsim3', 'Name3' => 'İsim3',
'Net' => 'Ağ', 'Net' => 'Ağ',
'NewCustomers' => '#VALUE!', 'NewCustomers' => '',
'Notes' => 'Notalar', 'Notes' => 'Notalar',
'Number' => 'Numara', 'Number' => 'Numara',
'Office' => 'Ofis', 'Office' => 'Ofis',
'Other' => '#VALUE!', 'Other' => '',
'Payment' => 'Ödeme', 'Payment' => 'Ödeme',
'PaymentTerm' => 'Ödeme koşulu', 'PaymentTerm' => 'Ödeme koşulu',
'Permission' => 'İzin', 'Permission' => 'İzin',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => 'Özel', 'Private' => 'Özel',
'Productgroup' => 'Ürün grubu', 'Productgroup' => 'Ürün grubu',
'Profile' => 'Profil', 'Profile' => 'Profil',
'Profit' => '#VALUE!', 'Profit' => '',
'Purchase' => 'Satın alma', 'Purchase' => 'Satın alma',
'Quantity' => 'Miktar', 'Quantity' => 'Miktar',
'RecentInvoices' => 'Son Faturalar', 'RecentInvoices' => 'Son Faturalar',
'Region' => '#VALUE!', 'Region' => '',
'Rep' => '#VALUE!', 'Rep' => '',
'Retention' => '#VALUE!', 'Retention' => '',
'Sales' => 'Satış', 'Sales' => 'Satış',
'Segment' => 'Segment', 'Segment' => 'Segment',
'Segments' => 'Segmentler', 'Segments' => 'Segmentler',
'Subtype' => 'Alt tip', 'Subtype' => 'Alt tip',
'Support' => 'Destek', 'Support' => 'Destek',
'Tags' => 'Etiketler', 'Tags' => 'Etiketler',
'Title' => '#VALUE!', 'Title' => '',
'Total' => '#VALUE!', 'Total' => '',
'TotalPrice' => '#VALUE!', 'TotalPrice' => '',
'Type' => 'Tip', 'Type' => 'Tip',
'UnitPrice' => '#VALUE!', 'UnitPrice' => '',
'Value' => '#VALUE!', 'Value' => '',
'Website' => 'İnternet sitesi', 'Website' => 'İnternet sitesi',
'Wire' => 'Tel', 'Wire' => 'Tel',
'YTDSales' => 'YTD satışları', 'YTDSales' => 'YTD satışları',

View File

@ -17,48 +17,48 @@ return ['ClientManagement' => [
'Addition' => 'Додавання', 'Addition' => 'Додавання',
'Address' => 'Адреса', 'Address' => 'Адреса',
'Addresses' => 'Адреси', 'Addresses' => 'Адреси',
'Africa' => '#VALUE!', 'Africa' => '',
'AllCustomers' => '#VALUE!', 'AllCustomers' => '',
'America' => '#VALUE!', 'America' => '',
'Analyse' => '#VALUE!', 'Analyse' => '',
'AreaManager' => 'Менеджер області', 'AreaManager' => 'Менеджер області',
'Articlegroup' => 'Статтюгрупи', 'Articlegroup' => 'Статтюгрупи',
'Articles' => 'Статті', 'Articles' => 'Статті',
'Asia' => '#VALUE!', 'Asia' => '',
'Attribute' => '#VALUE!', 'Attribute' => '',
'AttributeTypes' => '', 'AttributeTypes' => '',
'Attributes' => '#VALUE!', 'Attributes' => '',
'Balance' => 'Баланс', 'Balance' => 'Баланс',
'BaseTime' => '#VALUE!', 'BaseTime' => '',
'Bills' => '#VALUE!', 'Bills' => '',
'Bonus' => 'Бонус', 'Bonus' => 'Бонус',
'Business' => 'Бізнес', 'Business' => 'Бізнес',
'CIS' => '#VALUE!', 'CIS' => '',
'CLV' => 'Клоп', 'CLV' => 'Клоп',
'Calendar' => 'Календар', 'Calendar' => 'Календар',
'City' => 'Місто', 'City' => 'Місто',
'Client' => 'Клієнт', 'Client' => 'Клієнт',
'ClientID' => '#VALUE!', 'ClientID' => '',
'Clients' => 'Клієнти', 'Clients' => 'Клієнти',
'ComparisonTime' => '#VALUE!', 'ComparisonTime' => '',
'Contact' => 'Контакт', 'Contact' => 'Контакт',
'Country' => 'Країна', 'Country' => 'Країна',
'Created' => 'Створений', 'Created' => 'Створений',
'CreatedAt' => '#VALUE!', 'CreatedAt' => '',
'CreditRating' => 'Кредитний рейтинг', 'CreditRating' => 'Кредитний рейтинг',
'Creditcard' => 'Кредитна карта', 'Creditcard' => 'Кредитна карта',
'Customers' => '#VALUE!', 'Customers' => '',
'DSO' => 'Дз', 'DSO' => 'Дз',
'Date' => 'Дата', 'Date' => 'Дата',
'Default' => 'За замовчуванням', 'Default' => 'За замовчуванням',
'Delivery' => 'Доставка', 'Delivery' => 'Доставка',
'Discount' => 'Знижка', 'Discount' => 'Знижка',
'DiscountBonus' => '#VALUE!', 'DiscountBonus' => '',
'DiscountP' => 'Знижка%', 'DiscountP' => 'Знижка%',
'Documents' => 'Документи', 'Documents' => 'Документи',
'Due' => 'Заборгованість', 'Due' => 'Заборгованість',
'Email' => 'Електронна пошта', 'Email' => 'Електронна пошта',
'Europe' => '#VALUE!', 'Europe' => '',
'Fax' => 'Факс', 'Fax' => 'Факс',
'Files' => 'Файли', 'Files' => 'Файли',
'Filter' => 'Фільтрувати', 'Filter' => 'Фільтрувати',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => 'Рахунок-фактура', 'Invoice' => 'Рахунок-фактура',
'Invoices' => 'Рахунки-фактури', 'Invoices' => 'Рахунки-фактури',
'IsDefault' => 'Чи є за замовчуванням?', 'IsDefault' => 'Чи є за замовчуванням?',
'Items' => '#VALUE!', 'Items' => '',
'LastContact' => 'Останній контакт', 'LastContact' => 'Останній контакт',
'LastOrder' => 'Остання замовлення', 'LastOrder' => 'Остання замовлення',
'Log' => 'Журнал', 'Log' => 'Журнал',
'Logs' => 'Журнали', 'Logs' => 'Журнали',
'LostCustomers' => '#VALUE!', 'LostCustomers' => '',
'MRR' => 'Пан', 'MRR' => 'Пан',
'MTDSales' => 'Продажі MTD', 'MTDSales' => 'Продажі MTD',
'Map' => '', 'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => 'Name2', 'Name2' => 'Name2',
'Name3' => 'Name3', 'Name3' => 'Name3',
'Net' => 'Сітка', 'Net' => 'Сітка',
'NewCustomers' => '#VALUE!', 'NewCustomers' => '',
'Notes' => 'Ноти', 'Notes' => 'Ноти',
'Number' => 'Число', 'Number' => 'Число',
'Office' => 'Офіс', 'Office' => 'Офіс',
'Other' => '#VALUE!', 'Other' => '',
'Payment' => 'Платіж', 'Payment' => 'Платіж',
'PaymentTerm' => 'Термін оплати', 'PaymentTerm' => 'Термін оплати',
'Permission' => 'Дозвіл', 'Permission' => 'Дозвіл',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => 'Приватний', 'Private' => 'Приватний',
'Productgroup' => 'Група продуктів', 'Productgroup' => 'Група продуктів',
'Profile' => 'Профіль', 'Profile' => 'Профіль',
'Profit' => '#VALUE!', 'Profit' => '',
'Purchase' => 'Придбання', 'Purchase' => 'Придбання',
'Quantity' => 'Кількість', 'Quantity' => 'Кількість',
'RecentInvoices' => 'Останні рахунки-фактури', 'RecentInvoices' => 'Останні рахунки-фактури',
'Region' => '#VALUE!', 'Region' => '',
'Rep' => '#VALUE!', 'Rep' => '',
'Retention' => '#VALUE!', 'Retention' => '',
'Sales' => 'Продаж', 'Sales' => 'Продаж',
'Segment' => 'Сегмент', 'Segment' => 'Сегмент',
'Segments' => 'Сегменти', 'Segments' => 'Сегменти',
'Subtype' => 'Підтип', 'Subtype' => 'Підтип',
'Support' => 'Підтримка', 'Support' => 'Підтримка',
'Tags' => 'Теги', 'Tags' => 'Теги',
'Title' => '#VALUE!', 'Title' => '',
'Total' => '#VALUE!', 'Total' => '',
'TotalPrice' => '#VALUE!', 'TotalPrice' => '',
'Type' => 'Тип', 'Type' => 'Тип',
'UnitPrice' => '#VALUE!', 'UnitPrice' => '',
'Value' => '#VALUE!', 'Value' => '',
'Website' => 'Веб-сайт', 'Website' => 'Веб-сайт',
'Wire' => 'Дріт', 'Wire' => 'Дріт',
'YTDSales' => 'Ytd продажі', 'YTDSales' => 'Ytd продажі',

View File

@ -17,48 +17,48 @@ return ['ClientManagement' => [
'Addition' => '添加', 'Addition' => '添加',
'Address' => '地址', 'Address' => '地址',
'Addresses' => '地址', 'Addresses' => '地址',
'Africa' => '#VALUE!', 'Africa' => '',
'AllCustomers' => '#VALUE!', 'AllCustomers' => '',
'America' => '#VALUE!', 'America' => '',
'Analyse' => '#VALUE!', 'Analyse' => '',
'AreaManager' => '区域经理', 'AreaManager' => '区域经理',
'Articlegroup' => '商品组', 'Articlegroup' => '商品组',
'Articles' => '文章', 'Articles' => '文章',
'Asia' => '#VALUE!', 'Asia' => '',
'Attribute' => '#VALUE!', 'Attribute' => '',
'AttributeTypes' => '', 'AttributeTypes' => '',
'Attributes' => '#VALUE!', 'Attributes' => '',
'Balance' => '平衡', 'Balance' => '平衡',
'BaseTime' => '#VALUE!', 'BaseTime' => '',
'Bills' => '#VALUE!', 'Bills' => '',
'Bonus' => '奖金', 'Bonus' => '奖金',
'Business' => '商业', 'Business' => '商业',
'CIS' => '#VALUE!', 'CIS' => '',
'CLV' => 'CLV.', 'CLV' => 'CLV.',
'Calendar' => '日历', 'Calendar' => '日历',
'City' => '城市', 'City' => '城市',
'Client' => '客户', 'Client' => '客户',
'ClientID' => '#VALUE!', 'ClientID' => '',
'Clients' => '客户', 'Clients' => '客户',
'ComparisonTime' => '#VALUE!', 'ComparisonTime' => '',
'Contact' => '接触', 'Contact' => '接触',
'Country' => '国家', 'Country' => '国家',
'Created' => '创造了', 'Created' => '创造了',
'CreatedAt' => '#VALUE!', 'CreatedAt' => '',
'CreditRating' => '信用评级', 'CreditRating' => '信用评级',
'Creditcard' => '信用卡', 'Creditcard' => '信用卡',
'Customers' => '#VALUE!', 'Customers' => '',
'DSO' => 'DSO', 'DSO' => 'DSO',
'Date' => '日期', 'Date' => '日期',
'Default' => '默认', 'Default' => '默认',
'Delivery' => '交货', 'Delivery' => '交货',
'Discount' => '折扣', 'Discount' => '折扣',
'DiscountBonus' => '#VALUE!', 'DiscountBonus' => '',
'DiscountP' => '折扣 ', 'DiscountP' => '折扣 ',
'Documents' => '文件', 'Documents' => '文件',
'Due' => '到期的', 'Due' => '到期的',
'Email' => '电子邮件', 'Email' => '电子邮件',
'Europe' => '#VALUE!', 'Europe' => '',
'Fax' => '传真', 'Fax' => '传真',
'Files' => '文件', 'Files' => '文件',
'Filter' => '筛选', 'Filter' => '筛选',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => '发票', 'Invoice' => '发票',
'Invoices' => '发票', 'Invoices' => '发票',
'IsDefault' => '默认为默认情况下?', 'IsDefault' => '默认为默认情况下?',
'Items' => '#VALUE!', 'Items' => '',
'LastContact' => '最后联系人', 'LastContact' => '最后联系人',
'LastOrder' => '最后的订单', 'LastOrder' => '最后的订单',
'Log' => '日志', 'Log' => '日志',
'Logs' => '日志', 'Logs' => '日志',
'LostCustomers' => '#VALUE!', 'LostCustomers' => '',
'MRR' => 'MRR.', 'MRR' => 'MRR.',
'MTDSales' => 'MTD销售', 'MTDSales' => 'MTD销售',
'Map' => '', 'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => '名称2.', 'Name2' => '名称2.',
'Name3' => '名称3.', 'Name3' => '名称3.',
'Net' => '网', 'Net' => '网',
'NewCustomers' => '#VALUE!', 'NewCustomers' => '',
'Notes' => '笔记', 'Notes' => '笔记',
'Number' => '数字', 'Number' => '数字',
'Office' => '办公室', 'Office' => '办公室',
'Other' => '#VALUE!', 'Other' => '',
'Payment' => '支付', 'Payment' => '支付',
'PaymentTerm' => '付款期限', 'PaymentTerm' => '付款期限',
'Permission' => '允许', 'Permission' => '允许',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => '私人的', 'Private' => '私人的',
'Productgroup' => '产品组', 'Productgroup' => '产品组',
'Profile' => '轮廓', 'Profile' => '轮廓',
'Profit' => '#VALUE!', 'Profit' => '',
'Purchase' => '购买', 'Purchase' => '购买',
'Quantity' => '数量', 'Quantity' => '数量',
'RecentInvoices' => '最近的发票', 'RecentInvoices' => '最近的发票',
'Region' => '#VALUE!', 'Region' => '',
'Rep' => '#VALUE!', 'Rep' => '',
'Retention' => '#VALUE!', 'Retention' => '',
'Sales' => '销售量', 'Sales' => '销售量',
'Segment' => '分割', 'Segment' => '分割',
'Segments' => '段', 'Segments' => '段',
'Subtype' => '亚型', 'Subtype' => '亚型',
'Support' => '支持', 'Support' => '支持',
'Tags' => '标签', 'Tags' => '标签',
'Title' => '#VALUE!', 'Title' => '',
'Total' => '#VALUE!', 'Total' => '',
'TotalPrice' => '#VALUE!', 'TotalPrice' => '',
'Type' => '类型', 'Type' => '类型',
'UnitPrice' => '#VALUE!', 'UnitPrice' => '',
'Value' => '#VALUE!', 'Value' => '',
'Website' => '网站', 'Website' => '网站',
'Wire' => '金属丝', 'Wire' => '金属丝',
'YTDSales' => 'ytd销售', 'YTDSales' => 'ytd销售',

File diff suppressed because it is too large Load Diff

View File

@ -38,7 +38,7 @@ trait ApiControllerAttributeTrait
$request->setData('language', ISO639x1Enum::_EN); $request->setData('language', ISO639x1Enum::_EN);
$this->attrModule->apiClientAttributeTypeCreate($request, $response); $this->attrModule->apiClientAttributeTypeCreate($request, $response);
self::assertGreaterThan(0, $response->get('')['response']->id); self::assertGreaterThan(0, $response->getDataArray('')['response']->id);
} }
/** /**
@ -56,7 +56,7 @@ trait ApiControllerAttributeTrait
$request->setData('language', ISO639x1Enum::_DE); $request->setData('language', ISO639x1Enum::_DE);
$this->attrModule->apiClientAttributeTypeL11nCreate($request, $response); $this->attrModule->apiClientAttributeTypeL11nCreate($request, $response);
self::assertGreaterThan(0, $response->get('')['response']->id); self::assertGreaterThan(0, $response->getDataArray('')['response']->id);
} }
/** /**
@ -76,7 +76,7 @@ trait ApiControllerAttributeTrait
$request->setData('country', ISO3166TwoEnum::_DEU); $request->setData('country', ISO3166TwoEnum::_DEU);
$this->attrModule->apiClientAttributeValueCreate($request, $response); $this->attrModule->apiClientAttributeValueCreate($request, $response);
self::assertGreaterThan(0, $response->get('')['response']->id); self::assertGreaterThan(0, $response->getDataArray('')['response']->id);
} }
/** /**
@ -95,7 +95,7 @@ trait ApiControllerAttributeTrait
$request->setData('country', ISO3166TwoEnum::_DEU); $request->setData('country', ISO3166TwoEnum::_DEU);
$this->attrModule->apiClientAttributeValueCreate($request, $response); $this->attrModule->apiClientAttributeValueCreate($request, $response);
self::assertGreaterThan(0, $response->get('')['response']->id); self::assertGreaterThan(0, $response->getDataArray('')['response']->id);
} }
/** /**
@ -114,7 +114,7 @@ trait ApiControllerAttributeTrait
$request->setData('country', ISO3166TwoEnum::_DEU); $request->setData('country', ISO3166TwoEnum::_DEU);
$this->attrModule->apiClientAttributeValueCreate($request, $response); $this->attrModule->apiClientAttributeValueCreate($request, $response);
self::assertGreaterThan(0, $response->get('')['response']->id); self::assertGreaterThan(0, $response->getDataArray('')['response']->id);
} }
/** /**
@ -133,7 +133,7 @@ trait ApiControllerAttributeTrait
$request->setData('country', ISO3166TwoEnum::_DEU); $request->setData('country', ISO3166TwoEnum::_DEU);
$this->attrModule->apiClientAttributeValueCreate($request, $response); $this->attrModule->apiClientAttributeValueCreate($request, $response);
self::assertGreaterThan(0, $response->get('')['response']->id); self::assertGreaterThan(0, $response->getDataArray('')['response']->id);
} }
/** /**
@ -151,7 +151,7 @@ trait ApiControllerAttributeTrait
$request->setData('type', '1'); $request->setData('type', '1');
$this->attrModule->apiClientAttributeCreate($request, $response); $this->attrModule->apiClientAttributeCreate($request, $response);
self::assertGreaterThan(0, $response->get('')['response']->id); self::assertGreaterThan(0, $response->getDataArray('')['response']->id);
} }
/** /**

View File

@ -55,7 +55,7 @@ trait ApiControllerClientTrait
$request->setData('country', ISO3166TwoEnum::_USA); $request->setData('country', ISO3166TwoEnum::_USA);
$this->module->apiClientCreate($request, $response); $this->module->apiClientCreate($request, $response);
self::assertGreaterThan(0, $response->get('')['response']->id); self::assertGreaterThan(0, $response->getDataArray('')['response']->id);
} }
/** /**
@ -101,7 +101,7 @@ trait ApiControllerClientTrait
]); ]);
$this->module->apiFileCreate($request, $response); $this->module->apiFileCreate($request, $response);
$file = $response->get('')['response']; $file = $response->getDataArray('')['response'];
self::assertGreaterThan(0, \reset($file)->id); self::assertGreaterThan(0, \reset($file)->id);
} }
@ -131,7 +131,7 @@ trait ApiControllerClientTrait
]); ]);
$this->module->apiFileCreate($request, $response); $this->module->apiFileCreate($request, $response);
$file = $response->get('')['response']; $file = $response->getDataArray('')['response'];
self::assertGreaterThan(0, \reset($file)->id); self::assertGreaterThan(0, \reset($file)->id);
} }
@ -153,7 +153,7 @@ trait ApiControllerClientTrait
$request->setData('plain', \preg_replace('/^.+\n/', '', $MARKDOWN)); $request->setData('plain', \preg_replace('/^.+\n/', '', $MARKDOWN));
$this->module->apiNoteCreate($request, $response); $this->module->apiNoteCreate($request, $response);
self::assertGreaterThan(0, $response->get('')['response']->id); self::assertGreaterThan(0, $response->getDataArray('')['response']->id);
} }
/** /**