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": []
}
]
},
{
"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": []
},
{
"name": "group",
"name": "segment",
"l11n": {
"en": "Group",
"de": "Gruppe"
"en": "Segment",
"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,
"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",
"l11n": {

View File

@ -105,7 +105,7 @@ final class Installer extends InstallerAbstract
$module->apiClientL11nTypeCreate($request, $response);
$responseData = $response->get('');
$responseData = $response->getData('');
if (!\is_array($responseData)) {
continue;
}
@ -152,7 +152,7 @@ final class Installer extends InstallerAbstract
$module->apiClientAttributeTypeCreate($request, $response);
$responseData = $response->get('');
$responseData = $response->getData('');
if (!\is_array($responseData)) {
continue;
}
@ -223,7 +223,7 @@ final class Installer extends InstallerAbstract
$module->apiClientAttributeValueCreate($request, $response);
$responseData = $response->get('');
$responseData = $response->getData('');
if (!\is_array($responseData)) {
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';
Autoloader.defineNamespace('jsOMS.Modules');
Autoloader.defineNamespace('omsApp.Modules');
jsOMS.Modules.ClientManagement = class {
omsApp.Modules.ClientManagement = class {
/**
* @constructor
*
@ -48,6 +49,7 @@ jsOMS.Modules.ClientManagement = class {
const data = JSON.parse(chart.getAttribute('data-chart'));
const myChart = new Chart(chart.getContext('2d'), data);
};
bindMap (map)

View File

@ -61,7 +61,8 @@ final class ApiAttributeController extends Controller
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->createStandardCreateResponse($request, $response, $attribute);
}

View File

@ -156,7 +156,7 @@ final class ApiController extends Controller
$internalRequest->header->account = $request->header->account;
$internalRequest->setData('ref', $client->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')
->apiClientAttributeCreate($internalRequest, $internalResponse);
@ -561,16 +561,16 @@ final class ApiController extends Controller
*/
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);
$responseData = $response->get($request->uri->__toString());
$responseData = $response->getDataArray($request->uri->__toString());
if (!\is_array($responseData)) {
return;
}
$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;
$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::CSS, 'Resources/chartjs/chart.css');
$head->addAsset(AssetType::JSLATE, 'Resources/chartjs/chart.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']);
@ -305,178 +305,4 @@ final class BackendController extends Controller
{
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' => 'إضافة',
'Address' => 'تبوك',
'Addresses' => 'عناوين',
'Africa' => '#VALUE!',
'AllCustomers' => '#VALUE!',
'America' => '#VALUE!',
'Analyse' => '#VALUE!',
'Africa' => '',
'AllCustomers' => '',
'America' => '',
'Analyse' => '',
'AreaManager' => 'مدير المنطقة',
'Articlegroup' => 'articlegroup.',
'Articles' => 'مقالات',
'Asia' => '#VALUE!',
'Attribute' => '#VALUE!',
'Asia' => '',
'Attribute' => '',
'AttributeTypes' => '',
'Attributes' => '#VALUE!',
'Attributes' => '',
'Balance' => 'الرصيد',
'BaseTime' => '#VALUE!',
'Bills' => '#VALUE!',
'BaseTime' => '',
'Bills' => '',
'Bonus' => 'علاوة',
'Business' => 'اعمال',
'CIS' => '#VALUE!',
'CIS' => '',
'CLV' => 'قذيفة',
'Calendar' => 'تقويم',
'City' => 'مدينة',
'Client' => 'عميل',
'ClientID' => '#VALUE!',
'ClientID' => '',
'Clients' => 'عملاء',
'ComparisonTime' => '#VALUE!',
'ComparisonTime' => '',
'Contact' => 'اتصل',
'Country' => 'دولة',
'Created' => 'خلقت',
'CreatedAt' => '#VALUE!',
'CreatedAt' => '',
'CreditRating' => 'التصنيف الائتماني',
'Creditcard' => 'بطاقة إئتمان',
'Customers' => '#VALUE!',
'Customers' => '',
'DSO' => 'DSO.',
'Date' => 'تاريخ',
'Default' => 'تقصير',
'Delivery' => 'توصيل',
'Discount' => 'خصم',
'DiscountBonus' => '#VALUE!',
'DiscountBonus' => '',
'DiscountP' => 'خصم ٪',
'Documents' => 'وثائق',
'Due' => 'بسبب',
'Email' => 'بريد الالكتروني',
'Europe' => '#VALUE!',
'Europe' => '',
'Fax' => 'فاكس',
'Files' => 'الملفات',
'Filter' => 'منقي',
@ -70,12 +70,12 @@ return ['ClientManagement' => [
'Invoice' => 'فاتورة',
'Invoices' => 'الفواتير',
'IsDefault' => 'افتراضي؟',
'Items' => '#VALUE!',
'Items' => '',
'LastContact' => 'آخر اتصال',
'LastOrder' => 'آخر طلب',
'Log' => 'سجل',
'Logs' => 'السجلات',
'LostCustomers' => '#VALUE!',
'LostCustomers' => '',
'MRR' => 'مرر',
'MTDSales' => 'مبيعات MTD',
'Map' => '',
@ -88,11 +88,11 @@ return ['ClientManagement' => [
'Name2' => 'اسم 2.',
'Name3' => 'اسم 3.',
'Net' => 'شبكة',
'NewCustomers' => '#VALUE!',
'NewCustomers' => '',
'Notes' => 'ملحوظات',
'Number' => 'عدد',
'Office' => 'مكتب. مقر. مركز',
'Other' => '#VALUE!',
'Other' => '',
'Payment' => 'دفع',
'PaymentTerm' => 'مصطلح الدفع',
'Permission' => 'إذن',
@ -103,25 +103,25 @@ return ['ClientManagement' => [
'Private' => 'نشر',
'Productgroup' => 'productgroup.',
'Profile' => 'الملف الشخصي',
'Profit' => '#VALUE!',
'Profit' => '',
'Purchase' => 'شراء',
'Quantity' => 'كمية',
'RecentInvoices' => 'الفواتير الأخيرة',
'Region' => '#VALUE!',
'Rep' => '#VALUE!',
'Retention' => '#VALUE!',
'Region' => '',
'Rep' => '',
'Retention' => '',
'Sales' => 'مبيعات',
'Segment' => 'قطعة',
'Segments' => 'شرائح',
'Subtype' => 'النوع الفرعي',
'Support' => 'يدعم',
'Tags' => 'كذا',
'Title' => '#VALUE!',
'Total' => '#VALUE!',
'TotalPrice' => '#VALUE!',
'Title' => '',
'Total' => '',
'TotalPrice' => '',
'Type' => 'نوع',
'UnitPrice' => '#VALUE!',
'Value' => '#VALUE!',
'UnitPrice' => '',
'Value' => '',
'Website' => 'موقع إلكتروني',
'Wire' => 'الأسلاك',
'YTDSales' => 'مبيعات YTD',

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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