continue implementations

This commit is contained in:
Dennis Eichhorn 2024-01-12 00:30:21 +00:00
parent 6260cf9d0e
commit afdf729a3d
32 changed files with 39 additions and 169 deletions

View File

@ -3,7 +3,7 @@
"description": "Default supplier segmentation (segment, section, sales group, product group)", "description": "Default supplier segmentation (segment, section, sales group, product group)",
"type": "setting", "type": "setting",
"name": "1003200001", "name": "1003200001",
"content": "[\"segment\":1, \"section\":1, \"supplier_group\":1]", "content": "{\"segment\":1, \"section\":1, \"supplier_group\":1}",
"pattern": "", "pattern": "",
"module": "SupplierManagement" "module": "SupplierManagement"
} }

View File

@ -38,6 +38,6 @@ class Admin
*/ */
public static function install(ApplicationAbstract $app, string $path) : void public static function install(ApplicationAbstract $app, string $path) : void
{ {
\Modules\Admin\Admin\Installer::installExternal($app, ['path' => __DIR__ . '/Admin.install.json']); // \Modules\Admin\Admin\Installer::installExternal($app, ['path' => __DIR__ . '/Admin.install.json']);
} }
} }

View File

@ -181,6 +181,11 @@
"type": "TINYINT(1)", "type": "TINYINT(1)",
"null": false "null": false
}, },
"suppliermgmt_attr_type_repeatable": {
"name": "suppliermgmt_attr_type_repeatable",
"type": "TINYINT(1)",
"null": false
},
"suppliermgmt_attr_type_required": { "suppliermgmt_attr_type_required": {
"description": "Every item must have this attribute type if set to true.", "description": "Every item must have this attribute type if set to true.",
"name": "suppliermgmt_attr_type_required", "name": "suppliermgmt_attr_type_required",

View File

@ -47,6 +47,8 @@ final class Installer extends InstallerAbstract
{ {
parent::install($app, $info, $cfgHandler); parent::install($app, $info, $cfgHandler);
\Modules\Admin\Admin\Installer::installExternal($app, ['path' => __DIR__ . '/Install/Admin.install.json']);
/* Attributes */ /* Attributes */
$fileContent = \file_get_contents(__DIR__ . '/Install/attributes.json'); $fileContent = \file_get_contents(__DIR__ . '/Install/attributes.json');
if ($fileContent === false) { if ($fileContent === false) {
@ -131,8 +133,8 @@ final class Installer extends InstallerAbstract
/** @var array<string, array> $supplierAttrType */ /** @var array<string, array> $supplierAttrType */
$supplierAttrType = []; $supplierAttrType = [];
/** @var \Modules\SupplierManagement\Controller\ApiController $module */ /** @var \Modules\SupplierManagement\Controller\ApiAttributeController $module */
$module = $app->moduleManager->getModuleInstance('SupplierManagement'); $module = $app->moduleManager->getModuleInstance('SupplierManagement', 'ApiAttribute');
/** @var array $attribute */ /** @var array $attribute */
foreach ($attributes as $attribute) { foreach ($attributes as $attribute) {
@ -197,8 +199,8 @@ final class Installer extends InstallerAbstract
/** @var array<string, array> $supplierAttrValue */ /** @var array<string, array> $supplierAttrValue */
$supplierAttrValue = []; $supplierAttrValue = [];
/** @var \Modules\SupplierManagement\Controller\ApiController $module */ /** @var \Modules\SupplierManagement\Controller\ApiAttributeController $module */
$module = $app->moduleManager->getModuleInstance('SupplierManagement'); $module = $app->moduleManager->getModuleInstance('SupplierManagement', 'ApiAttribute');
foreach ($attributes as $attribute) { foreach ($attributes as $attribute) {
$supplierAttrValue[$attribute['name']] = []; $supplierAttrValue[$attribute['name']] = [];

View File

@ -61,7 +61,23 @@ final class ApiAttributeController extends Controller
return; return;
} }
$type = SupplierAttributeTypeMapper::get()->with('defaults')->where('id', (int) $request->getData('type'))->execute(); $type = SupplierAttributeTypeMapper::get()->with('defaults')->where('id', (int) $request->getData('type'))->execute();
if (!$type->repeatable) {
$attr = SupplierAttributeMapper::count()
->with('type')
->where('type/id', (int) $request->getData('type'))
->where('ref', (int) $request->getData('ref'))
->execute();
if ($attr > 0) {
$response->header->status = RequestStatusCode::R_409;
$this->createInvalidCreateResponse($request, $response, $val);
return;
}
}
$attribute = $this->createAttributeFromRequest($request, $type); $attribute = $this->createAttributeFromRequest($request, $type);
$this->createModel($request->header->account, $attribute, SupplierAttributeMapper::class, 'attribute', $request->getOrigin()); $this->createModel($request->header->account, $attribute, SupplierAttributeMapper::class, 'attribute', $request->getOrigin());
$this->createStandardCreateResponse($request, $response, $attribute); $this->createStandardCreateResponse($request, $response, $attribute);

View File

@ -127,12 +127,10 @@ final class ApiController extends Controller
private function createSupplierSegmentation(RequestAbstract $request, ResponseAbstract $response, Supplier $supplier) : void private function createSupplierSegmentation(RequestAbstract $request, ResponseAbstract $response, Supplier $supplier) : void
{ {
/** @var \Model\Setting $settings */ /** @var \Model\Setting $settings */
$settings = $this->app->appSettings->get(null, [ $settings = $this->app->appSettings->get(null, SettingsEnum::DEFAULT_SEGMENTATION);
SettingsEnum::DEFAULT_SEGMENTATION,
]);
$segmentation = \json_decode($settings->content, true); $segmentation = \json_decode($settings->content, true);
if ($segmentation === false) { if ($segmentation === false || $segmentation === null) {
return; return;
} }
@ -149,7 +147,7 @@ final class ApiController extends Controller
$internalRequest->setData('type', $type->id); $internalRequest->setData('type', $type->id);
$internalRequest->setData('value_id', $segmentation[$type->name]); $internalRequest->setData('value_id', $segmentation[$type->name]);
$this->app->moduleManager->get('SupplierManagement', 'ApiAttribute')->apiItemAttributeCreate($internalRequest, $internalResponse); $this->app->moduleManager->get('SupplierManagement', 'ApiAttribute')->apiSupplierAttributeCreate($internalRequest, $internalResponse);
} }
} }

View File

@ -17,9 +17,9 @@ namespace Modules\SupplierManagement\Controller;
use Modules\Billing\Models\PurchaseBillMapper; use Modules\Billing\Models\PurchaseBillMapper;
use Modules\Media\Models\MediaMapper; use Modules\Media\Models\MediaMapper;
use Modules\Media\Models\MediaTypeMapper; use Modules\Media\Models\MediaTypeMapper;
use Modules\SupplierManagement\Models\SupplierAttributeTypeL11nMapper; use Modules\SupplierManagement\Models\Attribute\SupplierAttributeTypeL11nMapper;
use Modules\SupplierManagement\Models\SupplierAttributeTypeMapper; use Modules\SupplierManagement\Models\Attribute\SupplierAttributeTypeMapper;
use Modules\SupplierManagement\Models\SupplierAttributeValueMapper; use Modules\SupplierManagement\Models\Attribute\SupplierAttributeValueMapper;
use Modules\SupplierManagement\Models\SupplierMapper; use Modules\SupplierManagement\Models\SupplierMapper;
use phpOMS\Asset\AssetType; use phpOMS\Asset\AssetType;
use phpOMS\Contract\RenderableInterface; use phpOMS\Contract\RenderableInterface;

View File

@ -42,6 +42,7 @@ final class SupplierAttributeTypeMapper extends DataMapperFactory
'suppliermgmt_attr_type_datatype' => ['name' => 'suppliermgmt_attr_type_datatype', 'type' => 'int', 'internal' => 'datatype'], 'suppliermgmt_attr_type_datatype' => ['name' => 'suppliermgmt_attr_type_datatype', 'type' => 'int', 'internal' => 'datatype'],
'suppliermgmt_attr_type_fields' => ['name' => 'suppliermgmt_attr_type_fields', 'type' => 'int', 'internal' => 'fields'], 'suppliermgmt_attr_type_fields' => ['name' => 'suppliermgmt_attr_type_fields', 'type' => 'int', 'internal' => 'fields'],
'suppliermgmt_attr_type_custom' => ['name' => 'suppliermgmt_attr_type_custom', 'type' => 'bool', 'internal' => 'custom'], 'suppliermgmt_attr_type_custom' => ['name' => 'suppliermgmt_attr_type_custom', 'type' => 'bool', 'internal' => 'custom'],
'suppliermgmt_attr_type_repeatable' => ['name' => 'suppliermgmt_attr_type_repeatable', 'type' => 'bool', 'internal' => 'repeatable'],
'suppliermgmt_attr_type_pattern' => ['name' => 'suppliermgmt_attr_type_pattern', 'type' => 'string', 'internal' => 'validationPattern'], 'suppliermgmt_attr_type_pattern' => ['name' => 'suppliermgmt_attr_type_pattern', 'type' => 'string', 'internal' => 'validationPattern'],
'suppliermgmt_attr_type_required' => ['name' => 'suppliermgmt_attr_type_required', 'type' => 'bool', 'internal' => 'isRequired'], 'suppliermgmt_attr_type_required' => ['name' => 'suppliermgmt_attr_type_required', 'type' => 'bool', 'internal' => 'isRequired'],
]; ];

View File

@ -59,6 +59,7 @@ final class SupplierAttributeValueMapper extends DataMapperFactory
'mapper' => SupplierAttributeValueL11nMapper::class, 'mapper' => SupplierAttributeValueL11nMapper::class,
'table' => 'suppliermgmt_attr_value_l11n', 'table' => 'suppliermgmt_attr_value_l11n',
'self' => 'suppliermgmt_attr_value_l11n_value', 'self' => 'suppliermgmt_attr_value_l11n_value',
'column' => 'content',
'external' => null, 'external' => null,
], ],
]; ];

View File

@ -19,6 +19,7 @@ use Modules\Admin\Models\AddressMapper;
use Modules\Editor\Models\EditorDocMapper; use Modules\Editor\Models\EditorDocMapper;
use Modules\Media\Models\MediaMapper; use Modules\Media\Models\MediaMapper;
use Modules\Profile\Models\ContactElementMapper; use Modules\Profile\Models\ContactElementMapper;
use Modules\SupplierManagement\Models\Attribute\SupplierAttributeMapper;
use phpOMS\DataStorage\Database\Mapper\DataMapperFactory; use phpOMS\DataStorage\Database\Mapper\DataMapperFactory;
/** /**

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => 'محاسبة', 'Accounting' => 'محاسبة',
'Addition' => 'إضافة',
'Address' => 'تبوك', 'Address' => 'تبوك',
'Addresses' => 'عناوين', 'Addresses' => 'عناوين',
'AreaManager' => 'مدير المنطقة', 'AreaManager' => 'مدير المنطقة',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => 'الرصيد', 'Balance' => 'الرصيد',
'Bills' => '', 'Bills' => '',
'Bonus' => 'علاوة', 'Bonus' => 'علاوة',
'Business' => 'اعمال',
'CLV' => 'قذيفة', 'CLV' => 'قذيفة',
'Calendar' => 'تقويم', 'Calendar' => 'تقويم',
'City' => 'مدينة', 'City' => 'مدينة',
'Client' => 'عميل', 'Client' => 'عميل',
'ClientID' => '', 'ClientID' => '',
'Clients' => 'عملاء',
'Contact' => 'اتصل', 'Contact' => 'اتصل',
'Country' => 'دولة', 'Country' => 'دولة',
'Created' => 'خلقت', 'Created' => 'خلقت',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'شحن', 'Freightage' => 'شحن',
'Group' => 'مجموعة', 'Group' => 'مجموعة',
'ID' => 'بطاقة تعريف', 'ID' => 'بطاقة تعريف',
'IMG_alt_map' => '',
'Info' => 'معلومات', 'Info' => 'معلومات',
'Invoice' => 'فاتورة', 'Invoice' => 'فاتورة',
'Invoices' => 'الفواتير', 'Invoices' => 'الفواتير',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => 'السجلات', 'Logs' => 'السجلات',
'MRR' => 'مرر', 'MRR' => 'مرر',
'MTDSales' => 'مبيعات MTD', 'MTDSales' => 'مبيعات MTD',
'Main' => 'الأساسية',
'Map' => '', 'Map' => '',
'Margin' => 'هامش', 'Margin' => 'هامش',
'Master' => 'رئيس', 'Master' => 'رئيس',
'Messages' => 'رسائل', 'Messages' => 'رسائل',
'Modified' => 'تم التعديل', 'Modified' => 'تم التعديل',
'Modules' => 'وحدات',
'Name' => 'اسم', 'Name' => 'اسم',
'Name1' => 'اسم 1.', 'Name1' => 'اسم 1.',
'Name2' => 'اسم 2.', 'Name2' => 'اسم 2.',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => 'بريدي', 'Postal' => 'بريدي',
'Price' => 'السعر', 'Price' => 'السعر',
'Prices' => 'الأسعار.', 'Prices' => 'الأسعار.',
'Private' => 'نشر',
'Productgroup' => 'productgroup.', 'Productgroup' => 'productgroup.',
'Profile' => 'الملف الشخصي', 'Profile' => 'الملف الشخصي',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => 'Účetnictví', 'Accounting' => 'Účetnictví',
'Addition' => 'Přidání',
'Address' => 'Adresa', 'Address' => 'Adresa',
'Addresses' => 'Adresy', 'Addresses' => 'Adresy',
'AreaManager' => 'Oblastní manažer', 'AreaManager' => 'Oblastní manažer',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => 'Zůstatek', 'Balance' => 'Zůstatek',
'Bills' => '', 'Bills' => '',
'Bonus' => 'Bonus', 'Bonus' => 'Bonus',
'Business' => 'Business.',
'CLV' => 'Clv.', 'CLV' => 'Clv.',
'Calendar' => 'Kalendář', 'Calendar' => 'Kalendář',
'City' => 'Město', 'City' => 'Město',
'Client' => 'Klienta', 'Client' => 'Klienta',
'ClientID' => '', 'ClientID' => '',
'Clients' => 'Klienti',
'Contact' => 'Kontakt', 'Contact' => 'Kontakt',
'Country' => 'Země', 'Country' => 'Země',
'Created' => 'Vytvořený', 'Created' => 'Vytvořený',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'Dopravné', 'Freightage' => 'Dopravné',
'Group' => 'Skupina', 'Group' => 'Skupina',
'ID' => 'ID.', 'ID' => 'ID.',
'IMG_alt_map' => '',
'Info' => 'Info.', 'Info' => 'Info.',
'Invoice' => 'Faktura', 'Invoice' => 'Faktura',
'Invoices' => 'Faktury', 'Invoices' => 'Faktury',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => 'Protokoly', 'Logs' => 'Protokoly',
'MRR' => 'Mrr.', 'MRR' => 'Mrr.',
'MTDSales' => 'Prodej MTD.', 'MTDSales' => 'Prodej MTD.',
'Main' => 'Hlavní',
'Map' => '', 'Map' => '',
'Margin' => 'Okraj', 'Margin' => 'Okraj',
'Master' => 'Mistr', 'Master' => 'Mistr',
'Messages' => 'Zprávy', 'Messages' => 'Zprávy',
'Modified' => 'Upravený', 'Modified' => 'Upravený',
'Modules' => 'Moduly',
'Name' => 'název', 'Name' => 'název',
'Name1' => 'Jméno1.', 'Name1' => 'Jméno1.',
'Name2' => 'Jméno2.', 'Name2' => 'Jméno2.',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => 'Poštovní', 'Postal' => 'Poštovní',
'Price' => 'Cena', 'Price' => 'Cena',
'Prices' => 'Ceny', 'Prices' => 'Ceny',
'Private' => 'Soukromý',
'Productgroup' => 'ProductSgroup.', 'Productgroup' => 'ProductSgroup.',
'Profile' => 'Profil', 'Profile' => 'Profil',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => 'Regnskab', 'Accounting' => 'Regnskab',
'Addition' => 'Tilsætning',
'Address' => 'Adresse', 'Address' => 'Adresse',
'Addresses' => 'Adresser', 'Addresses' => 'Adresser',
'AreaManager' => 'Områdechef', 'AreaManager' => 'Områdechef',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => 'Balance', 'Balance' => 'Balance',
'Bills' => '', 'Bills' => '',
'Bonus' => 'Bonus', 'Bonus' => 'Bonus',
'Business' => 'Forretning',
'CLV' => 'CLV.', 'CLV' => 'CLV.',
'Calendar' => 'Kalender', 'Calendar' => 'Kalender',
'City' => 'City.', 'City' => 'City.',
'Client' => 'Klient', 'Client' => 'Klient',
'ClientID' => '', 'ClientID' => '',
'Clients' => 'Klienter.',
'Contact' => 'Kontakt', 'Contact' => 'Kontakt',
'Country' => 'Land', 'Country' => 'Land',
'Created' => 'Oprettet', 'Created' => 'Oprettet',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'Gods', 'Freightage' => 'Gods',
'Group' => 'Gruppe', 'Group' => 'Gruppe',
'ID' => 'ID.', 'ID' => 'ID.',
'IMG_alt_map' => '',
'Info' => 'Info.', 'Info' => 'Info.',
'Invoice' => 'Faktura', 'Invoice' => 'Faktura',
'Invoices' => 'Fakturaer.', 'Invoices' => 'Fakturaer.',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => 'Logs.', 'Logs' => 'Logs.',
'MRR' => 'MRR.', 'MRR' => 'MRR.',
'MTDSales' => 'MTD Sales.', 'MTDSales' => 'MTD Sales.',
'Main' => 'Main.',
'Map' => '', 'Map' => '',
'Margin' => 'Margin.', 'Margin' => 'Margin.',
'Master' => 'Mestre', 'Master' => 'Mestre',
'Messages' => 'Beskeder', 'Messages' => 'Beskeder',
'Modified' => 'Modificeret', 'Modified' => 'Modificeret',
'Modules' => 'Moduler.',
'Name' => 'Navn', 'Name' => 'Navn',
'Name1' => 'NAME1.', 'Name1' => 'NAME1.',
'Name2' => 'NAME2.', 'Name2' => 'NAME2.',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => 'Postal.', 'Postal' => 'Postal.',
'Price' => 'Pris', 'Price' => 'Pris',
'Prices' => 'Priser.', 'Prices' => 'Priser.',
'Private' => 'Privat',
'Productgroup' => 'Produktgruppe', 'Productgroup' => 'Produktgruppe',
'Profile' => 'Profil', 'Profile' => 'Profil',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => 'Buchhaltung', 'Accounting' => 'Buchhaltung',
'Addition' => 'Zusatz',
'Address' => 'Adresse', 'Address' => 'Adresse',
'Addresses' => 'Adressen', 'Addresses' => 'Adressen',
'AreaManager' => 'Bereichsleiter', 'AreaManager' => 'Bereichsleiter',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => 'Gleichgewicht', 'Balance' => 'Gleichgewicht',
'Bills' => '', 'Bills' => '',
'Bonus' => 'Bonus', 'Bonus' => 'Bonus',
'Business' => 'Geschäft',
'CLV' => 'CLV', 'CLV' => 'CLV',
'Calendar' => 'Kalender', 'Calendar' => 'Kalender',
'City' => 'Stadt', 'City' => 'Stadt',
'Client' => 'Kunde', 'Client' => 'Kunde',
'ClientID' => 'Kunden ID', 'ClientID' => 'Kunden ID',
'Clients' => 'Kunden',
'Contact' => 'Kontakt', 'Contact' => 'Kontakt',
'Country' => 'Land', 'Country' => 'Land',
'Created' => 'Erstellt', 'Created' => 'Erstellt',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'Fracht', 'Freightage' => 'Fracht',
'Group' => 'Gruppe', 'Group' => 'Gruppe',
'ID' => 'ICH WÜRDE', 'ID' => 'ICH WÜRDE',
'IMG_alt_map' => 'Karte',
'Info' => 'Die Info', 'Info' => 'Die Info',
'Invoice' => 'Rechnung', 'Invoice' => 'Rechnung',
'Invoices' => 'Rechnungen', 'Invoices' => 'Rechnungen',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => 'Protokoll', 'Logs' => 'Protokoll',
'MRR' => 'Mrr.', 'MRR' => 'Mrr.',
'MTDSales' => 'MTD-Verkäufe.', 'MTDSales' => 'MTD-Verkäufe.',
'Main' => 'Hauptsächlich',
'Map' => '', 'Map' => '',
'Margin' => 'Rand', 'Margin' => 'Rand',
'Master' => 'Meister', 'Master' => 'Meister',
'Messages' => 'Mitteilungen', 'Messages' => 'Mitteilungen',
'Modified' => 'Geändert', 'Modified' => 'Geändert',
'Modules' => 'Module',
'Name' => 'Name', 'Name' => 'Name',
'Name1' => 'Name1', 'Name1' => 'Name1',
'Name2' => 'Name2', 'Name2' => 'Name2',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => 'Post', 'Postal' => 'Post',
'Price' => 'Preis', 'Price' => 'Preis',
'Prices' => 'Preise', 'Prices' => 'Preise',
'Private' => 'Privatgelände',
'Productgroup' => 'Produktgruppe', 'Productgroup' => 'Produktgruppe',
'Profile' => 'Profil', 'Profile' => 'Profil',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => 'Λογιστική', 'Accounting' => 'Λογιστική',
'Addition' => 'Πρόσθεση',
'Address' => 'Διεύθυνση', 'Address' => 'Διεύθυνση',
'Addresses' => 'Διευθύνσεις', 'Addresses' => 'Διευθύνσεις',
'AreaManager' => 'Διευθυντής περιοχής', 'AreaManager' => 'Διευθυντής περιοχής',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => 'Ισορροπία', 'Balance' => 'Ισορροπία',
'Bills' => '', 'Bills' => '',
'Bonus' => 'Δώρο', 'Bonus' => 'Δώρο',
'Business' => 'Επιχείρηση',
'CLV' => 'Σολλίζω', 'CLV' => 'Σολλίζω',
'Calendar' => 'Ημερολόγιο', 'Calendar' => 'Ημερολόγιο',
'City' => 'Πόλη', 'City' => 'Πόλη',
'Client' => 'Πελάτης', 'Client' => 'Πελάτης',
'ClientID' => '', 'ClientID' => '',
'Clients' => 'Πελάτες',
'Contact' => 'Επικοινωνία', 'Contact' => 'Επικοινωνία',
'Country' => 'Χώρα', 'Country' => 'Χώρα',
'Created' => 'Δημιουργήθηκε', 'Created' => 'Δημιουργήθηκε',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'Ναύλος', 'Freightage' => 'Ναύλος',
'Group' => 'Ομάδα', 'Group' => 'Ομάδα',
'ID' => 'ταυτότητα', 'ID' => 'ταυτότητα',
'IMG_alt_map' => '',
'Info' => 'Πληροφορία', 'Info' => 'Πληροφορία',
'Invoice' => 'Τιμολόγιο', 'Invoice' => 'Τιμολόγιο',
'Invoices' => 'Τιμολόγια', 'Invoices' => 'Τιμολόγια',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => 'Κούτσουρα', 'Logs' => 'Κούτσουρα',
'MRR' => 'MRR', 'MRR' => 'MRR',
'MTDSales' => 'Πωλήσεις MTD', 'MTDSales' => 'Πωλήσεις MTD',
'Main' => 'Κύριος',
'Map' => '', 'Map' => '',
'Margin' => 'Περιθώριο', 'Margin' => 'Περιθώριο',
'Master' => 'Κύριος', 'Master' => 'Κύριος',
'Messages' => 'Μηνύματα', 'Messages' => 'Μηνύματα',
'Modified' => 'Τροποποιημένος', 'Modified' => 'Τροποποιημένος',
'Modules' => 'Ενότητες',
'Name' => 'Ονομα', 'Name' => 'Ονομα',
'Name1' => νομα1', 'Name1' => νομα1',
'Name2' => νομα2', 'Name2' => νομα2',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => 'Ταχυδρομικός', 'Postal' => 'Ταχυδρομικός',
'Price' => 'Τιμή', 'Price' => 'Τιμή',
'Prices' => 'Τιμές', 'Prices' => 'Τιμές',
'Private' => 'Ιδιωτικός',
'Productgroup' => 'Ομοιόμορφη ομάδα', 'Productgroup' => 'Ομοιόμορφη ομάδα',
'Profile' => 'Προφίλ', 'Profile' => 'Προφίλ',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => 'Accounting', 'Accounting' => 'Accounting',
'Addition' => 'Addition',
'Address' => 'Address', 'Address' => 'Address',
'Addresses' => 'Addresses', 'Addresses' => 'Addresses',
'AreaManager' => 'Area Manager', 'AreaManager' => 'Area Manager',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => 'Balance', 'Balance' => 'Balance',
'Bills' => '', 'Bills' => '',
'Bonus' => 'Bonus', 'Bonus' => 'Bonus',
'Business' => 'Business',
'CLV' => 'CLV', 'CLV' => 'CLV',
'Calendar' => 'Calendar', 'Calendar' => 'Calendar',
'City' => 'City', 'City' => 'City',
'Client' => 'Client', 'Client' => 'Client',
'ClientID' => '', 'ClientID' => '',
'Clients' => 'Clients',
'Contact' => 'Contact', 'Contact' => 'Contact',
'Country' => 'Country', 'Country' => 'Country',
'Created' => 'Created', 'Created' => 'Created',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'Freightage', 'Freightage' => 'Freightage',
'Group' => 'Group', 'Group' => 'Group',
'ID' => 'ID', 'ID' => 'ID',
'IMG_alt_map' => 'Map',
'Info' => 'Info', 'Info' => 'Info',
'Invoice' => 'Invoice', 'Invoice' => 'Invoice',
'Invoices' => 'Invoices', 'Invoices' => 'Invoices',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => 'Logs', 'Logs' => 'Logs',
'MRR' => 'MRR', 'MRR' => 'MRR',
'MTDSales' => 'MTD Sales', 'MTDSales' => 'MTD Sales',
'Main' => 'Main',
'Map' => '', 'Map' => '',
'Margin' => 'Margin', 'Margin' => 'Margin',
'Master' => 'Master', 'Master' => 'Master',
'Messages' => 'Messages', 'Messages' => 'Messages',
'Modified' => 'Modified', 'Modified' => 'Modified',
'Modules' => 'Modules',
'Name' => 'Name', 'Name' => 'Name',
'Name1' => 'Name1', 'Name1' => 'Name1',
'Name2' => 'Name2', 'Name2' => 'Name2',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => 'Postal', 'Postal' => 'Postal',
'Price' => 'Price', 'Price' => 'Price',
'Prices' => 'Prices', 'Prices' => 'Prices',
'Private' => 'Private',
'Productgroup' => 'Productgroup', 'Productgroup' => 'Productgroup',
'Profile' => 'Profile', 'Profile' => 'Profile',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => 'Contabilidad', 'Accounting' => 'Contabilidad',
'Addition' => 'Adición',
'Address' => 'Habla a', 'Address' => 'Habla a',
'Addresses' => 'Direcciones', 'Addresses' => 'Direcciones',
'AreaManager' => 'Gerente de área', 'AreaManager' => 'Gerente de área',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => 'Equilibrio', 'Balance' => 'Equilibrio',
'Bills' => '', 'Bills' => '',
'Bonus' => 'Prima', 'Bonus' => 'Prima',
'Business' => 'Negocio',
'CLV' => 'Clv', 'CLV' => 'Clv',
'Calendar' => 'Calendario', 'Calendar' => 'Calendario',
'City' => 'Ciudad', 'City' => 'Ciudad',
'Client' => 'Cliente', 'Client' => 'Cliente',
'ClientID' => '', 'ClientID' => '',
'Clients' => 'Clientela',
'Contact' => 'Contacto', 'Contact' => 'Contacto',
'Country' => 'País', 'Country' => 'País',
'Created' => 'Creado', 'Created' => 'Creado',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'Flete', 'Freightage' => 'Flete',
'Group' => 'Grupo', 'Group' => 'Grupo',
'ID' => 'IDENTIFICACIÓN', 'ID' => 'IDENTIFICACIÓN',
'IMG_alt_map' => '',
'Info' => 'Información', 'Info' => 'Información',
'Invoice' => 'Factura', 'Invoice' => 'Factura',
'Invoices' => 'Facturas', 'Invoices' => 'Facturas',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => 'Registros', 'Logs' => 'Registros',
'MRR' => 'Mrr', 'MRR' => 'Mrr',
'MTDSales' => 'Ventas MTD', 'MTDSales' => 'Ventas MTD',
'Main' => 'Principal',
'Map' => '', 'Map' => '',
'Margin' => 'Margen', 'Margin' => 'Margen',
'Master' => 'Maestría', 'Master' => 'Maestría',
'Messages' => 'Mensajes', 'Messages' => 'Mensajes',
'Modified' => 'Modificado', 'Modified' => 'Modificado',
'Modules' => 'Módulos',
'Name' => 'Nombre', 'Name' => 'Nombre',
'Name1' => 'Nombre1', 'Name1' => 'Nombre1',
'Name2' => 'Nombre2', 'Name2' => 'Nombre2',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => 'Postal', 'Postal' => 'Postal',
'Price' => 'Precio', 'Price' => 'Precio',
'Prices' => 'Precios', 'Prices' => 'Precios',
'Private' => 'Privado',
'Productgroup' => 'Grupo de productos', 'Productgroup' => 'Grupo de productos',
'Profile' => 'Perfil', 'Profile' => 'Perfil',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => 'Kirjanpito', 'Accounting' => 'Kirjanpito',
'Addition' => 'Lisäys',
'Address' => 'Osoite', 'Address' => 'Osoite',
'Addresses' => 'Osoitteet', 'Addresses' => 'Osoitteet',
'AreaManager' => 'Aluejohtaja', 'AreaManager' => 'Aluejohtaja',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => 'Saldo', 'Balance' => 'Saldo',
'Bills' => '', 'Bills' => '',
'Bonus' => 'Bonus', 'Bonus' => 'Bonus',
'Business' => 'Liiketoiminta',
'CLV' => 'Clv', 'CLV' => 'Clv',
'Calendar' => 'Kalenteri', 'Calendar' => 'Kalenteri',
'City' => 'Kaupunki', 'City' => 'Kaupunki',
'Client' => 'Asiakas', 'Client' => 'Asiakas',
'ClientID' => '', 'ClientID' => '',
'Clients' => 'Asiakkaat',
'Contact' => 'Ottaa yhteyttä', 'Contact' => 'Ottaa yhteyttä',
'Country' => 'Maa', 'Country' => 'Maa',
'Created' => 'Luotu', 'Created' => 'Luotu',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'Rahti', 'Freightage' => 'Rahti',
'Group' => 'Ryhmä', 'Group' => 'Ryhmä',
'ID' => 'Id', 'ID' => 'Id',
'IMG_alt_map' => '',
'Info' => 'Tiedot', 'Info' => 'Tiedot',
'Invoice' => 'Lasku', 'Invoice' => 'Lasku',
'Invoices' => 'Laskut', 'Invoices' => 'Laskut',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => 'Lokit', 'Logs' => 'Lokit',
'MRR' => 'Mrr', 'MRR' => 'Mrr',
'MTDSales' => 'MTD-myynti', 'MTDSales' => 'MTD-myynti',
'Main' => 'Tärkein',
'Map' => '', 'Map' => '',
'Margin' => 'Marginaali', 'Margin' => 'Marginaali',
'Master' => 'Hallita', 'Master' => 'Hallita',
'Messages' => 'Viestit', 'Messages' => 'Viestit',
'Modified' => 'Muokattu', 'Modified' => 'Muokattu',
'Modules' => 'Moduulit',
'Name' => 'Nimi', 'Name' => 'Nimi',
'Name1' => 'Nimi1', 'Name1' => 'Nimi1',
'Name2' => 'Nimi2', 'Name2' => 'Nimi2',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => 'Posti-', 'Postal' => 'Posti-',
'Price' => 'Hinta', 'Price' => 'Hinta',
'Prices' => 'Hinnat', 'Prices' => 'Hinnat',
'Private' => 'Yksityinen',
'Productgroup' => 'Tuoteryhmä', 'Productgroup' => 'Tuoteryhmä',
'Profile' => 'Profiili', 'Profile' => 'Profiili',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => 'Comptabilité', 'Accounting' => 'Comptabilité',
'Addition' => 'Une addition',
'Address' => 'Adresse', 'Address' => 'Adresse',
'Addresses' => 'Adresses', 'Addresses' => 'Adresses',
'AreaManager' => 'Chef de secteur', 'AreaManager' => 'Chef de secteur',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => 'Équilibre', 'Balance' => 'Équilibre',
'Bills' => '', 'Bills' => '',
'Bonus' => 'Prime', 'Bonus' => 'Prime',
'Business' => 'Entreprise',
'CLV' => 'Clv', 'CLV' => 'Clv',
'Calendar' => 'Calendrier', 'Calendar' => 'Calendrier',
'City' => 'Ville', 'City' => 'Ville',
'Client' => 'Client', 'Client' => 'Client',
'ClientID' => '', 'ClientID' => '',
'Clients' => 'Clients',
'Contact' => 'Contact', 'Contact' => 'Contact',
'Country' => 'Pays', 'Country' => 'Pays',
'Created' => 'Établi', 'Created' => 'Établi',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'Fret', 'Freightage' => 'Fret',
'Group' => 'Grouper', 'Group' => 'Grouper',
'ID' => 'identifiant', 'ID' => 'identifiant',
'IMG_alt_map' => '',
'Info' => 'Info', 'Info' => 'Info',
'Invoice' => 'Facture d\'achat', 'Invoice' => 'Facture d\'achat',
'Invoices' => 'Factures', 'Invoices' => 'Factures',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => 'Journaux', 'Logs' => 'Journaux',
'MRR' => 'Mrr', 'MRR' => 'Mrr',
'MTDSales' => 'Ventes MTD', 'MTDSales' => 'Ventes MTD',
'Main' => 'Principale',
'Map' => '', 'Map' => '',
'Margin' => 'Marge', 'Margin' => 'Marge',
'Master' => 'Maître', 'Master' => 'Maître',
'Messages' => 'messages', 'Messages' => 'messages',
'Modified' => 'Modifié', 'Modified' => 'Modifié',
'Modules' => 'Modules',
'Name' => 'Nom', 'Name' => 'Nom',
'Name1' => 'Nom1', 'Name1' => 'Nom1',
'Name2' => 'Nom2', 'Name2' => 'Nom2',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => 'Postal', 'Postal' => 'Postal',
'Price' => 'Prix', 'Price' => 'Prix',
'Prices' => 'Des prix', 'Prices' => 'Des prix',
'Private' => 'Privé',
'Productgroup' => 'Groupe de produits', 'Productgroup' => 'Groupe de produits',
'Profile' => 'Profil', 'Profile' => 'Profil',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => 'Könyvelés', 'Accounting' => 'Könyvelés',
'Addition' => 'Kiegészítés',
'Address' => 'Cím', 'Address' => 'Cím',
'Addresses' => 'Címek', 'Addresses' => 'Címek',
'AreaManager' => 'Területi menedzser', 'AreaManager' => 'Területi menedzser',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => 'Egyensúly', 'Balance' => 'Egyensúly',
'Bills' => '', 'Bills' => '',
'Bonus' => 'Bónusz', 'Bonus' => 'Bónusz',
'Business' => 'Üzleti',
'CLV' => 'Clv', 'CLV' => 'Clv',
'Calendar' => 'Naptár', 'Calendar' => 'Naptár',
'City' => 'Város', 'City' => 'Város',
'Client' => 'Ügyfél', 'Client' => 'Ügyfél',
'ClientID' => '', 'ClientID' => '',
'Clients' => 'Kliensek',
'Contact' => 'Kapcsolatba lépni', 'Contact' => 'Kapcsolatba lépni',
'Country' => 'Ország', 'Country' => 'Ország',
'Created' => 'Létrehozott', 'Created' => 'Létrehozott',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'Fuvardíj', 'Freightage' => 'Fuvardíj',
'Group' => 'Csoport', 'Group' => 'Csoport',
'ID' => 'Idézés', 'ID' => 'Idézés',
'IMG_alt_map' => '',
'Info' => 'Információ', 'Info' => 'Információ',
'Invoice' => 'Számla', 'Invoice' => 'Számla',
'Invoices' => 'Számlák', 'Invoices' => 'Számlák',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => 'Naplók', 'Logs' => 'Naplók',
'MRR' => 'Mrr', 'MRR' => 'Mrr',
'MTDSales' => 'MTD értékesítés', 'MTDSales' => 'MTD értékesítés',
'Main' => 'Fő',
'Map' => '', 'Map' => '',
'Margin' => 'Árrés', 'Margin' => 'Árrés',
'Master' => 'Fő', 'Master' => 'Fő',
'Messages' => 'üzenetek', 'Messages' => 'üzenetek',
'Modified' => 'Módosított', 'Modified' => 'Módosított',
'Modules' => 'Modulok',
'Name' => 'Név', 'Name' => 'Név',
'Name1' => 'Név1', 'Name1' => 'Név1',
'Name2' => 'NAME2', 'Name2' => 'NAME2',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => 'Postai', 'Postal' => 'Postai',
'Price' => 'Ár', 'Price' => 'Ár',
'Prices' => 'Árak', 'Prices' => 'Árak',
'Private' => 'Magán',
'Productgroup' => 'Termékcsoport', 'Productgroup' => 'Termékcsoport',
'Profile' => 'Profil', 'Profile' => 'Profil',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => 'Contabilità', 'Accounting' => 'Contabilità',
'Addition' => 'Aggiunta',
'Address' => 'Indirizzo', 'Address' => 'Indirizzo',
'Addresses' => 'Indirizzi', 'Addresses' => 'Indirizzi',
'AreaManager' => 'Area Manager', 'AreaManager' => 'Area Manager',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => 'Bilancia', 'Balance' => 'Bilancia',
'Bills' => '', 'Bills' => '',
'Bonus' => 'Bonus.', 'Bonus' => 'Bonus.',
'Business' => 'Affare',
'CLV' => 'Clv.', 'CLV' => 'Clv.',
'Calendar' => 'Calendario', 'Calendar' => 'Calendario',
'City' => 'Città', 'City' => 'Città',
'Client' => 'Cliente', 'Client' => 'Cliente',
'ClientID' => '', 'ClientID' => '',
'Clients' => 'Clienti',
'Contact' => 'Contatto', 'Contact' => 'Contatto',
'Country' => 'Nazione', 'Country' => 'Nazione',
'Created' => 'Creato', 'Created' => 'Creato',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'Liberare', 'Freightage' => 'Liberare',
'Group' => 'Gruppo', 'Group' => 'Gruppo',
'ID' => 'ID', 'ID' => 'ID',
'IMG_alt_map' => '',
'Info' => 'Informazioni', 'Info' => 'Informazioni',
'Invoice' => 'Fattura', 'Invoice' => 'Fattura',
'Invoices' => 'Fatture', 'Invoices' => 'Fatture',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => 'Logs.', 'Logs' => 'Logs.',
'MRR' => 'Mrr.', 'MRR' => 'Mrr.',
'MTDSales' => 'Vendite di mtd.', 'MTDSales' => 'Vendite di mtd.',
'Main' => 'Principale',
'Map' => '', 'Map' => '',
'Margin' => 'Margine', 'Margin' => 'Margine',
'Master' => 'Maestro', 'Master' => 'Maestro',
'Messages' => 'Messaggi', 'Messages' => 'Messaggi',
'Modified' => 'Modificati', 'Modified' => 'Modificati',
'Modules' => 'Moduli',
'Name' => 'Nome', 'Name' => 'Nome',
'Name1' => 'Nome1.', 'Name1' => 'Nome1.',
'Name2' => 'Nome2.', 'Name2' => 'Nome2.',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => 'postale', 'Postal' => 'postale',
'Price' => 'Prezzo', 'Price' => 'Prezzo',
'Prices' => 'Prezzi', 'Prices' => 'Prezzi',
'Private' => 'Privato',
'Productgroup' => 'Gruppo di prodotti', 'Productgroup' => 'Gruppo di prodotti',
'Profile' => 'Profilo', 'Profile' => 'Profilo',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => '会計', 'Accounting' => '会計',
'Addition' => '添加',
'Address' => '住所', 'Address' => '住所',
'Addresses' => 'アドレス', 'Addresses' => 'アドレス',
'AreaManager' => 'エリアマネージャー', 'AreaManager' => 'エリアマネージャー',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => 'バランス', 'Balance' => 'バランス',
'Bills' => '', 'Bills' => '',
'Bonus' => 'ボーナス', 'Bonus' => 'ボーナス',
'Business' => '仕事',
'CLV' => 'cl cl', 'CLV' => 'cl cl',
'Calendar' => 'カレンダー', 'Calendar' => 'カレンダー',
'City' => '市', 'City' => '市',
'Client' => 'クライアント', 'Client' => 'クライアント',
'ClientID' => '', 'ClientID' => '',
'Clients' => 'クライアント',
'Contact' => 'コンタクト', 'Contact' => 'コンタクト',
'Country' => '国', 'Country' => '国',
'Created' => '作成した', 'Created' => '作成した',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'fre fre', 'Freightage' => 'fre fre',
'Group' => 'グループ', 'Group' => 'グループ',
'ID' => 'id', 'ID' => 'id',
'IMG_alt_map' => '',
'Info' => '情報', 'Info' => '情報',
'Invoice' => '請求書', 'Invoice' => '請求書',
'Invoices' => '請求書', 'Invoices' => '請求書',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => 'ログ', 'Logs' => 'ログ',
'MRR' => 'MRR.', 'MRR' => 'MRR.',
'MTDSales' => 'MTDセールス', 'MTDSales' => 'MTDセールス',
'Main' => '主要',
'Map' => '', 'Map' => '',
'Margin' => 'マージン', 'Margin' => 'マージン',
'Master' => 'マスター', 'Master' => 'マスター',
'Messages' => 'メッセージ', 'Messages' => 'メッセージ',
'Modified' => '修正された', 'Modified' => '修正された',
'Modules' => 'モジュール',
'Name' => '名前', 'Name' => '名前',
'Name1' => '名前1', 'Name1' => '名前1',
'Name2' => '名前2', 'Name2' => '名前2',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => '郵便', 'Postal' => '郵便',
'Price' => '価格', 'Price' => '価格',
'Prices' => '価格', 'Prices' => '価格',
'Private' => '民間',
'Productgroup' => '製品グループ', 'Productgroup' => '製品グループ',
'Profile' => 'プロフィール', 'Profile' => 'プロフィール',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => '회계', 'Accounting' => '회계',
'Addition' => '덧셈',
'Address' => '주소', 'Address' => '주소',
'Addresses' => '구애', 'Addresses' => '구애',
'AreaManager' => '구역 책임자', 'AreaManager' => '구역 책임자',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => '균형', 'Balance' => '균형',
'Bills' => '', 'Bills' => '',
'Bonus' => '보너스', 'Bonus' => '보너스',
'Business' => '사업',
'CLV' => 'CLV.', 'CLV' => 'CLV.',
'Calendar' => '달력', 'Calendar' => '달력',
'City' => '도시', 'City' => '도시',
'Client' => '고객', 'Client' => '고객',
'ClientID' => '', 'ClientID' => '',
'Clients' => '클라이언트',
'Contact' => '연락하다', 'Contact' => '연락하다',
'Country' => '국가', 'Country' => '국가',
'Created' => '만들어진', 'Created' => '만들어진',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => '화물', 'Freightage' => '화물',
'Group' => '그룹', 'Group' => '그룹',
'ID' => 'ID', 'ID' => 'ID',
'IMG_alt_map' => '',
'Info' => '정보', 'Info' => '정보',
'Invoice' => '송장', 'Invoice' => '송장',
'Invoices' => '송장', 'Invoices' => '송장',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => '로그인', 'Logs' => '로그인',
'MRR' => '부서', 'MRR' => '부서',
'MTDSales' => 'MTD 판매', 'MTDSales' => 'MTD 판매',
'Main' => '기본',
'Map' => '', 'Map' => '',
'Margin' => '여유', 'Margin' => '여유',
'Master' => '주인', 'Master' => '주인',
'Messages' => '메시지', 'Messages' => '메시지',
'Modified' => '수정', 'Modified' => '수정',
'Modules' => '모듈',
'Name' => '이름', 'Name' => '이름',
'Name1' => 'name1.', 'Name1' => 'name1.',
'Name2' => 'name2.', 'Name2' => 'name2.',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => '우편 엽서', 'Postal' => '우편 엽서',
'Price' => '가격', 'Price' => '가격',
'Prices' => '물가', 'Prices' => '물가',
'Private' => '사적인',
'Productgroup' => '제품 그룹', 'Productgroup' => '제품 그룹',
'Profile' => '프로필', 'Profile' => '프로필',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => 'Regnskap', 'Accounting' => 'Regnskap',
'Addition' => 'Addisjon',
'Address' => 'Adresse', 'Address' => 'Adresse',
'Addresses' => 'Adresser', 'Addresses' => 'Adresser',
'AreaManager' => 'Områdeansvarlig', 'AreaManager' => 'Områdeansvarlig',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => 'Balansere', 'Balance' => 'Balansere',
'Bills' => '', 'Bills' => '',
'Bonus' => 'Bonus', 'Bonus' => 'Bonus',
'Business' => 'Virksomhet',
'CLV' => 'CLV.', 'CLV' => 'CLV.',
'Calendar' => 'Kalender', 'Calendar' => 'Kalender',
'City' => 'By', 'City' => 'By',
'Client' => 'Klient', 'Client' => 'Klient',
'ClientID' => '', 'ClientID' => '',
'Clients' => 'Klienter',
'Contact' => 'Kontakt', 'Contact' => 'Kontakt',
'Country' => 'Land', 'Country' => 'Land',
'Created' => 'Opprettet', 'Created' => 'Opprettet',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'Frakt', 'Freightage' => 'Frakt',
'Group' => 'Gruppe', 'Group' => 'Gruppe',
'ID' => 'Id.', 'ID' => 'Id.',
'IMG_alt_map' => '',
'Info' => 'Info.', 'Info' => 'Info.',
'Invoice' => 'Faktura', 'Invoice' => 'Faktura',
'Invoices' => 'Fakturaer', 'Invoices' => 'Fakturaer',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => 'Tømmerstokker', 'Logs' => 'Tømmerstokker',
'MRR' => 'MRR.', 'MRR' => 'MRR.',
'MTDSales' => 'MTD-salg', 'MTDSales' => 'MTD-salg',
'Main' => 'Hoved',
'Map' => '', 'Map' => '',
'Margin' => 'Margin', 'Margin' => 'Margin',
'Master' => 'Herre', 'Master' => 'Herre',
'Messages' => 'Meldinger', 'Messages' => 'Meldinger',
'Modified' => 'Endret', 'Modified' => 'Endret',
'Modules' => 'Moduler',
'Name' => 'Navn', 'Name' => 'Navn',
'Name1' => 'Navn1.', 'Name1' => 'Navn1.',
'Name2' => 'NAME2.', 'Name2' => 'NAME2.',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => 'Postal.', 'Postal' => 'Postal.',
'Price' => 'Pris', 'Price' => 'Pris',
'Prices' => 'Prisene', 'Prices' => 'Prisene',
'Private' => 'Privat',
'Productgroup' => 'Produktgruppe', 'Productgroup' => 'Produktgruppe',
'Profile' => 'Profil', 'Profile' => 'Profil',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => 'Rachunkowość', 'Accounting' => 'Rachunkowość',
'Addition' => 'Dodatek',
'Address' => 'Adres', 'Address' => 'Adres',
'Addresses' => 'Adresy', 'Addresses' => 'Adresy',
'AreaManager' => 'Dyrektor Regionalny', 'AreaManager' => 'Dyrektor Regionalny',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => 'Balansować', 'Balance' => 'Balansować',
'Bills' => '', 'Bills' => '',
'Bonus' => 'Premia', 'Bonus' => 'Premia',
'Business' => 'Biznes',
'CLV' => 'CLV.', 'CLV' => 'CLV.',
'Calendar' => 'Kalendarz', 'Calendar' => 'Kalendarz',
'City' => 'Miasto', 'City' => 'Miasto',
'Client' => 'Klient', 'Client' => 'Klient',
'ClientID' => '', 'ClientID' => '',
'Clients' => 'Klienci.',
'Contact' => 'Kontakt', 'Contact' => 'Kontakt',
'Country' => 'Kraj', 'Country' => 'Kraj',
'Created' => 'Utworzony', 'Created' => 'Utworzony',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'Frachtowanie', 'Freightage' => 'Frachtowanie',
'Group' => 'Grupa', 'Group' => 'Grupa',
'ID' => 'ID', 'ID' => 'ID',
'IMG_alt_map' => '',
'Info' => 'Info', 'Info' => 'Info',
'Invoice' => 'Faktura', 'Invoice' => 'Faktura',
'Invoices' => 'Faktury', 'Invoices' => 'Faktury',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => 'Kłody', 'Logs' => 'Kłody',
'MRR' => 'MRR.', 'MRR' => 'MRR.',
'MTDSales' => 'Sprzedaż MTD.', 'MTDSales' => 'Sprzedaż MTD.',
'Main' => 'Główny',
'Map' => '', 'Map' => '',
'Margin' => 'Margines', 'Margin' => 'Margines',
'Master' => 'Gospodarz', 'Master' => 'Gospodarz',
'Messages' => 'Wiadomości', 'Messages' => 'Wiadomości',
'Modified' => 'Modyfikowany', 'Modified' => 'Modyfikowany',
'Modules' => 'Moduły',
'Name' => 'Nazwa', 'Name' => 'Nazwa',
'Name1' => 'Nazwa1.', 'Name1' => 'Nazwa1.',
'Name2' => 'Nazwa2.', 'Name2' => 'Nazwa2.',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => 'Pocztowy', 'Postal' => 'Pocztowy',
'Price' => 'Cena £', 'Price' => 'Cena £',
'Prices' => 'Ceny', 'Prices' => 'Ceny',
'Private' => 'Prywatny',
'Productgroup' => 'Grupa produktów', 'Productgroup' => 'Grupa produktów',
'Profile' => 'Profil', 'Profile' => 'Profil',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => 'Contabilidade', 'Accounting' => 'Contabilidade',
'Addition' => 'Adição',
'Address' => 'Endereço', 'Address' => 'Endereço',
'Addresses' => 'Endereços', 'Addresses' => 'Endereços',
'AreaManager' => 'Gerente da área', 'AreaManager' => 'Gerente da área',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => 'Equilíbrio', 'Balance' => 'Equilíbrio',
'Bills' => '', 'Bills' => '',
'Bonus' => 'Bônus', 'Bonus' => 'Bônus',
'Business' => 'O negócio',
'CLV' => 'Clv.', 'CLV' => 'Clv.',
'Calendar' => 'Calendário', 'Calendar' => 'Calendário',
'City' => 'Cidade', 'City' => 'Cidade',
'Client' => 'Cliente', 'Client' => 'Cliente',
'ClientID' => '', 'ClientID' => '',
'Clients' => 'Clientes',
'Contact' => 'Contato', 'Contact' => 'Contato',
'Country' => 'País', 'Country' => 'País',
'Created' => 'Criado', 'Created' => 'Criado',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'Freightage', 'Freightage' => 'Freightage',
'Group' => 'Grupo', 'Group' => 'Grupo',
'ID' => 'identificação', 'ID' => 'identificação',
'IMG_alt_map' => '',
'Info' => 'Info', 'Info' => 'Info',
'Invoice' => 'Fatura', 'Invoice' => 'Fatura',
'Invoices' => 'Faturas', 'Invoices' => 'Faturas',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => 'Histórico', 'Logs' => 'Histórico',
'MRR' => 'MRR.', 'MRR' => 'MRR.',
'MTDSales' => 'Sales Mtd.', 'MTDSales' => 'Sales Mtd.',
'Main' => 'Principal',
'Map' => '', 'Map' => '',
'Margin' => 'Margem', 'Margin' => 'Margem',
'Master' => 'Mestre', 'Master' => 'Mestre',
'Messages' => 'Mensagens', 'Messages' => 'Mensagens',
'Modified' => 'Modificado', 'Modified' => 'Modificado',
'Modules' => 'Módulos.',
'Name' => 'Nome', 'Name' => 'Nome',
'Name1' => 'Nome1.', 'Name1' => 'Nome1.',
'Name2' => 'Nome2.', 'Name2' => 'Nome2.',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => 'Postal', 'Postal' => 'Postal',
'Price' => 'Preço', 'Price' => 'Preço',
'Prices' => 'Preços', 'Prices' => 'Preços',
'Private' => 'Privado',
'Productgroup' => 'Grupo de produtos', 'Productgroup' => 'Grupo de produtos',
'Profile' => 'Perfil', 'Profile' => 'Perfil',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => 'Учет', 'Accounting' => 'Учет',
'Addition' => 'Добавление',
'Address' => 'Адрес', 'Address' => 'Адрес',
'Addresses' => 'Адреса', 'Addresses' => 'Адреса',
'AreaManager' => 'Региональный менеджер', 'AreaManager' => 'Региональный менеджер',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => 'Остаток средств', 'Balance' => 'Остаток средств',
'Bills' => '', 'Bills' => '',
'Bonus' => 'Бонус', 'Bonus' => 'Бонус',
'Business' => 'Бизнес',
'CLV' => 'Каблук', 'CLV' => 'Каблук',
'Calendar' => 'Календарь', 'Calendar' => 'Календарь',
'City' => 'Город', 'City' => 'Город',
'Client' => 'Клиент', 'Client' => 'Клиент',
'ClientID' => '', 'ClientID' => '',
'Clients' => 'Клиенты',
'Contact' => 'Контакт', 'Contact' => 'Контакт',
'Country' => 'Страна', 'Country' => 'Страна',
'Created' => 'Созданный', 'Created' => 'Созданный',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'Фрахты', 'Freightage' => 'Фрахты',
'Group' => 'Группа', 'Group' => 'Группа',
'ID' => 'Я БЫ', 'ID' => 'Я БЫ',
'IMG_alt_map' => '',
'Info' => 'Информация', 'Info' => 'Информация',
'Invoice' => 'Счет', 'Invoice' => 'Счет',
'Invoices' => 'Счета', 'Invoices' => 'Счета',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => 'Журналы', 'Logs' => 'Журналы',
'MRR' => 'MRR', 'MRR' => 'MRR',
'MTDSales' => 'MTD Sales.', 'MTDSales' => 'MTD Sales.',
'Main' => 'Главный',
'Map' => '', 'Map' => '',
'Margin' => 'Допуск', 'Margin' => 'Допуск',
'Master' => 'Владелец', 'Master' => 'Владелец',
'Messages' => 'Сообщения', 'Messages' => 'Сообщения',
'Modified' => 'Модифицированный', 'Modified' => 'Модифицированный',
'Modules' => 'Модули',
'Name' => 'Имя', 'Name' => 'Имя',
'Name1' => 'Имя1.', 'Name1' => 'Имя1.',
'Name2' => 'Имя2.', 'Name2' => 'Имя2.',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => 'Почтовый', 'Postal' => 'Почтовый',
'Price' => 'Цена', 'Price' => 'Цена',
'Prices' => 'Цены', 'Prices' => 'Цены',
'Private' => 'Частный',
'Productgroup' => 'Группа товаров', 'Productgroup' => 'Группа товаров',
'Profile' => 'Профиль', 'Profile' => 'Профиль',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => 'Bokföring', 'Accounting' => 'Bokföring',
'Addition' => 'Tillägg',
'Address' => 'Adress', 'Address' => 'Adress',
'Addresses' => 'Adresser', 'Addresses' => 'Adresser',
'AreaManager' => 'Områdeschef', 'AreaManager' => 'Områdeschef',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => 'Balans', 'Balance' => 'Balans',
'Bills' => '', 'Bills' => '',
'Bonus' => 'Bonus', 'Bonus' => 'Bonus',
'Business' => 'Företag',
'CLV' => 'Clv', 'CLV' => 'Clv',
'Calendar' => 'Kalender', 'Calendar' => 'Kalender',
'City' => 'Stad', 'City' => 'Stad',
'Client' => 'Klient', 'Client' => 'Klient',
'ClientID' => '', 'ClientID' => '',
'Clients' => 'Klienter',
'Contact' => 'Kontakt', 'Contact' => 'Kontakt',
'Country' => 'Land', 'Country' => 'Land',
'Created' => 'Skapad', 'Created' => 'Skapad',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'Frakt', 'Freightage' => 'Frakt',
'Group' => 'Grupp', 'Group' => 'Grupp',
'ID' => 'Id', 'ID' => 'Id',
'IMG_alt_map' => '',
'Info' => 'Info', 'Info' => 'Info',
'Invoice' => 'Faktura', 'Invoice' => 'Faktura',
'Invoices' => 'Fakturor', 'Invoices' => 'Fakturor',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => 'Loggar', 'Logs' => 'Loggar',
'MRR' => 'Mrr', 'MRR' => 'Mrr',
'MTDSales' => 'MTD-försäljning', 'MTDSales' => 'MTD-försäljning',
'Main' => 'Huvudsaklig',
'Map' => '', 'Map' => '',
'Margin' => 'Marginal', 'Margin' => 'Marginal',
'Master' => 'Bemästra', 'Master' => 'Bemästra',
'Messages' => 'Budskap', 'Messages' => 'Budskap',
'Modified' => 'Ändrad', 'Modified' => 'Ändrad',
'Modules' => 'Moduler',
'Name' => 'namn', 'Name' => 'namn',
'Name1' => 'Namn1', 'Name1' => 'Namn1',
'Name2' => 'Namn2', 'Name2' => 'Namn2',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => 'Post', 'Postal' => 'Post',
'Price' => 'Pris', 'Price' => 'Pris',
'Prices' => 'Priser', 'Prices' => 'Priser',
'Private' => 'Privat',
'Productgroup' => 'Produktgrupp', 'Productgroup' => 'Produktgrupp',
'Profile' => 'Profil', 'Profile' => 'Profil',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => 'การบัญชี', 'Accounting' => 'การบัญชี',
'Addition' => 'ส่วนที่เพิ่มเข้าไป',
'Address' => 'ที่อยู่', 'Address' => 'ที่อยู่',
'Addresses' => 'ที่อยู่', 'Addresses' => 'ที่อยู่',
'AreaManager' => 'ผู้จัดการพื้นที่', 'AreaManager' => 'ผู้จัดการพื้นที่',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => 'สมดุล', 'Balance' => 'สมดุล',
'Bills' => '', 'Bills' => '',
'Bonus' => 'โบนัส', 'Bonus' => 'โบนัส',
'Business' => 'ธุรกิจ',
'CLV' => 'clv', 'CLV' => 'clv',
'Calendar' => 'ปฏิทิน', 'Calendar' => 'ปฏิทิน',
'City' => 'เมือง', 'City' => 'เมือง',
'Client' => 'ลูกค้า', 'Client' => 'ลูกค้า',
'ClientID' => '', 'ClientID' => '',
'Clients' => 'ลูกค้า',
'Contact' => 'ติดต่อ', 'Contact' => 'ติดต่อ',
'Country' => 'ประเทศ', 'Country' => 'ประเทศ',
'Created' => 'สร้าง', 'Created' => 'สร้าง',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'การขนส่งสินค้า', 'Freightage' => 'การขนส่งสินค้า',
'Group' => 'กลุ่ม', 'Group' => 'กลุ่ม',
'ID' => 'id', 'ID' => 'id',
'IMG_alt_map' => '',
'Info' => 'ข้อมูล', 'Info' => 'ข้อมูล',
'Invoice' => 'ใบแจ้งหนี้', 'Invoice' => 'ใบแจ้งหนี้',
'Invoices' => 'ใบแจ้งหนี้', 'Invoices' => 'ใบแจ้งหนี้',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => 'การบันทึก', 'Logs' => 'การบันทึก',
'MRR' => 'MRR', 'MRR' => 'MRR',
'MTDSales' => 'ขาย MTD', 'MTDSales' => 'ขาย MTD',
'Main' => 'หลัก',
'Map' => '', 'Map' => '',
'Margin' => 'ระยะขอบ', 'Margin' => 'ระยะขอบ',
'Master' => 'ผู้เชี่ยวชาญ', 'Master' => 'ผู้เชี่ยวชาญ',
'Messages' => 'ข้อความ', 'Messages' => 'ข้อความ',
'Modified' => 'ที่ได้รับการแก้ไข', 'Modified' => 'ที่ได้รับการแก้ไข',
'Modules' => 'โมดูล',
'Name' => 'ชื่อ', 'Name' => 'ชื่อ',
'Name1' => 'ชื่อ 1', 'Name1' => 'ชื่อ 1',
'Name2' => 'ชื่อ 2', 'Name2' => 'ชื่อ 2',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => 'เกี่ยวกับการไปรษณีย์', 'Postal' => 'เกี่ยวกับการไปรษณีย์',
'Price' => 'ราคา', 'Price' => 'ราคา',
'Prices' => 'ราคา', 'Prices' => 'ราคา',
'Private' => 'ส่วนตัว',
'Productgroup' => 'กลุ่มผลิตภัณฑ์', 'Productgroup' => 'กลุ่มผลิตภัณฑ์',
'Profile' => 'ประวัติโดยย่อ', 'Profile' => 'ประวัติโดยย่อ',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => 'Muhasebe', 'Accounting' => 'Muhasebe',
'Addition' => 'İlave',
'Address' => 'Adres', 'Address' => 'Adres',
'Addresses' => 'Adresler', 'Addresses' => 'Adresler',
'AreaManager' => 'Alan müdürü', 'AreaManager' => 'Alan müdürü',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => 'Denge', 'Balance' => 'Denge',
'Bills' => '', 'Bills' => '',
'Bonus' => 'Bonus', 'Bonus' => 'Bonus',
'Business' => 'İşletme',
'CLV' => 'Clv', 'CLV' => 'Clv',
'Calendar' => 'Takvim', 'Calendar' => 'Takvim',
'City' => 'Şehir', 'City' => 'Şehir',
'Client' => 'Müşteri', 'Client' => 'Müşteri',
'ClientID' => '', 'ClientID' => '',
'Clients' => 'Müşteriler',
'Contact' => 'Temas', 'Contact' => 'Temas',
'Country' => 'Ülke', 'Country' => 'Ülke',
'Created' => 'Yaratılmış', 'Created' => 'Yaratılmış',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'Yük', 'Freightage' => 'Yük',
'Group' => 'Grup', 'Group' => 'Grup',
'ID' => 'İD', 'ID' => 'İD',
'IMG_alt_map' => '',
'Info' => 'Bilgi', 'Info' => 'Bilgi',
'Invoice' => 'Fatura', 'Invoice' => 'Fatura',
'Invoices' => 'Faturalar', 'Invoices' => 'Faturalar',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => 'Kütükler', 'Logs' => 'Kütükler',
'MRR' => 'Mrr', 'MRR' => 'Mrr',
'MTDSales' => 'Mtd satışları', 'MTDSales' => 'Mtd satışları',
'Main' => 'Ana',
'Map' => '', 'Map' => '',
'Margin' => 'Marj', 'Margin' => 'Marj',
'Master' => 'Usta', 'Master' => 'Usta',
'Messages' => 'Mesaj', 'Messages' => 'Mesaj',
'Modified' => 'Değiştirilmiş', 'Modified' => 'Değiştirilmiş',
'Modules' => 'Modüller',
'Name' => 'İsim', 'Name' => 'İsim',
'Name1' => 'İsim1', 'Name1' => 'İsim1',
'Name2' => 'İsim2', 'Name2' => 'İsim2',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => 'Posta', 'Postal' => 'Posta',
'Price' => 'Fiyat', 'Price' => 'Fiyat',
'Prices' => 'Fiyat:% s', 'Prices' => 'Fiyat:% s',
'Private' => 'Özel',
'Productgroup' => 'Ürün grubu', 'Productgroup' => 'Ürün grubu',
'Profile' => 'Profil', 'Profile' => 'Profil',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => 'Бухгалтерський облік', 'Accounting' => 'Бухгалтерський облік',
'Addition' => 'Додавання',
'Address' => 'Адреса', 'Address' => 'Адреса',
'Addresses' => 'Адреси', 'Addresses' => 'Адреси',
'AreaManager' => 'Менеджер області', 'AreaManager' => 'Менеджер області',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => 'Баланс', 'Balance' => 'Баланс',
'Bills' => '', 'Bills' => '',
'Bonus' => 'Бонус', 'Bonus' => 'Бонус',
'Business' => 'Бізнес',
'CLV' => 'Клоп', 'CLV' => 'Клоп',
'Calendar' => 'Календар', 'Calendar' => 'Календар',
'City' => 'Місто', 'City' => 'Місто',
'Client' => 'Клієнт', 'Client' => 'Клієнт',
'ClientID' => '', 'ClientID' => '',
'Clients' => 'Клієнти',
'Contact' => 'Контакт', 'Contact' => 'Контакт',
'Country' => 'Країна', 'Country' => 'Країна',
'Created' => 'Створений', 'Created' => 'Створений',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'Фрахт', 'Freightage' => 'Фрахт',
'Group' => 'Група', 'Group' => 'Група',
'ID' => 'Ідентифікатор', 'ID' => 'Ідентифікатор',
'IMG_alt_map' => '',
'Info' => 'Інформація', 'Info' => 'Інформація',
'Invoice' => 'Рахунок-фактура', 'Invoice' => 'Рахунок-фактура',
'Invoices' => 'Рахунки-фактури', 'Invoices' => 'Рахунки-фактури',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => 'Журнали', 'Logs' => 'Журнали',
'MRR' => 'Пан', 'MRR' => 'Пан',
'MTDSales' => 'Продажі MTD', 'MTDSales' => 'Продажі MTD',
'Main' => 'Основний',
'Map' => '', 'Map' => '',
'Margin' => 'Маржа', 'Margin' => 'Маржа',
'Master' => 'Майстер', 'Master' => 'Майстер',
'Messages' => 'Повідомлень', 'Messages' => 'Повідомлень',
'Modified' => 'Модифікований', 'Modified' => 'Модифікований',
'Modules' => 'Модулі',
'Name' => 'Назва', 'Name' => 'Назва',
'Name1' => 'Name1', 'Name1' => 'Name1',
'Name2' => 'Name2', 'Name2' => 'Name2',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => 'Поштовий', 'Postal' => 'Поштовий',
'Price' => 'Ціна', 'Price' => 'Ціна',
'Prices' => 'Ціни', 'Prices' => 'Ціни',
'Private' => 'Приватний',
'Productgroup' => 'Група продуктів', 'Productgroup' => 'Група продуктів',
'Profile' => 'Профіль', 'Profile' => 'Профіль',
'Profit' => '', 'Profit' => '',

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
return ['SupplierManagement' => [ return ['SupplierManagement' => [
'Accounting' => '会计', 'Accounting' => '会计',
'Addition' => '添加',
'Address' => '地址', 'Address' => '地址',
'Addresses' => '地址', 'Addresses' => '地址',
'AreaManager' => '区域经理', 'AreaManager' => '区域经理',
@ -26,13 +25,11 @@ return ['SupplierManagement' => [
'Balance' => '平衡', 'Balance' => '平衡',
'Bills' => '', 'Bills' => '',
'Bonus' => '奖金', 'Bonus' => '奖金',
'Business' => '商业',
'CLV' => 'CLV.', 'CLV' => 'CLV.',
'Calendar' => '日历', 'Calendar' => '日历',
'City' => '城市', 'City' => '城市',
'Client' => '客户', 'Client' => '客户',
'ClientID' => '', 'ClientID' => '',
'Clients' => '客户',
'Contact' => '接触', 'Contact' => '接触',
'Country' => '国家', 'Country' => '国家',
'Created' => '创造了', 'Created' => '创造了',
@ -55,7 +52,6 @@ return ['SupplierManagement' => [
'Freightage' => 'FRIGUTAGE.', 'Freightage' => 'FRIGUTAGE.',
'Group' => '团体', 'Group' => '团体',
'ID' => 'ID', 'ID' => 'ID',
'IMG_alt_map' => '',
'Info' => '信息', 'Info' => '信息',
'Invoice' => '发票', 'Invoice' => '发票',
'Invoices' => '发票', 'Invoices' => '发票',
@ -67,13 +63,11 @@ return ['SupplierManagement' => [
'Logs' => '日志', 'Logs' => '日志',
'MRR' => 'MRR.', 'MRR' => 'MRR.',
'MTDSales' => 'MTD销售', 'MTDSales' => 'MTD销售',
'Main' => '主要的',
'Map' => '', 'Map' => '',
'Margin' => '利润', 'Margin' => '利润',
'Master' => '掌握', 'Master' => '掌握',
'Messages' => '消息', 'Messages' => '消息',
'Modified' => '修改的', 'Modified' => '修改的',
'Modules' => '模块',
'Name' => '名称', 'Name' => '名称',
'Name1' => '名称1', 'Name1' => '名称1',
'Name2' => '名称2.', 'Name2' => '名称2.',
@ -89,7 +83,6 @@ return ['SupplierManagement' => [
'Postal' => '邮政', 'Postal' => '邮政',
'Price' => '价格', 'Price' => '价格',
'Prices' => '价格', 'Prices' => '价格',
'Private' => '私人的',
'Productgroup' => '产品组', 'Productgroup' => '产品组',
'Profile' => '轮廓', 'Profile' => '轮廓',
'Profit' => '', 'Profit' => '',