diff --git a/Admin/Installer.php b/Admin/Installer.php index b329158..413cc1c 100755 --- a/Admin/Installer.php +++ b/Admin/Installer.php @@ -129,7 +129,7 @@ final class Installer extends InstallerAbstract $module->apiFuelTypeCreate($request, $response); - $responseData = $response->get(''); + $responseData = $response->getData(''); if (!\is_array($responseData)) { continue; } @@ -190,7 +190,7 @@ final class Installer extends InstallerAbstract $module->apiVehicleTypeCreate($request, $response); - $responseData = $response->get(''); + $responseData = $response->getData(''); if (!\is_array($responseData)) { continue; } @@ -251,7 +251,7 @@ final class Installer extends InstallerAbstract $module->apiInspectionTypeCreate($request, $response); - $responseData = $response->get(''); + $responseData = $response->getData(''); if (!\is_array($responseData)) { continue; } @@ -312,7 +312,7 @@ final class Installer extends InstallerAbstract $module->apiDriverInspectionTypeCreate($request, $response); - $responseData = $response->get(''); + $responseData = $response->getData(''); if (!\is_array($responseData)) { continue; } @@ -377,7 +377,7 @@ final class Installer extends InstallerAbstract $module->apiVehicleAttributeTypeCreate($request, $response); - $responseData = $response->get(''); + $responseData = $response->getData(''); if (!\is_array($responseData)) { continue; } @@ -448,7 +448,7 @@ final class Installer extends InstallerAbstract $module->apiVehicleAttributeValueCreate($request, $response); - $responseData = $response->get(''); + $responseData = $response->getData(''); if (!\is_array($responseData)) { continue; } diff --git a/Controller/ApiDriverAttributeController.php b/Controller/ApiDriverAttributeController.php index fcd869f..9a1f7b8 100644 --- a/Controller/ApiDriverAttributeController.php +++ b/Controller/ApiDriverAttributeController.php @@ -61,7 +61,8 @@ final class ApiDriverAttributeController extends Controller return; } - $attribute = $this->createAttributeFromRequest($request); + $type = DriverAttributeTypeMapper::get()->where('id', (int) $request->getData('type'))->execute(); + $attribute = $this->createAttributeFromRequest($request, $type); $this->createModel($request->header->account, $attribute, DriverAttributeMapper::class, 'attribute', $request->getOrigin()); $this->createStandardCreateResponse($request, $response, $attribute); } diff --git a/Controller/ApiDriverController.php b/Controller/ApiDriverController.php index a02bc67..d640053 100644 --- a/Controller/ApiDriverController.php +++ b/Controller/ApiDriverController.php @@ -615,7 +615,7 @@ final class ApiDriverController extends Controller return; } - $responseData = $response->get($request->uri->__toString()); + $responseData = $response->getDataArray($request->uri->__toString()); if (!\is_array($responseData)) { return; } @@ -665,7 +665,7 @@ final class ApiDriverController extends Controller return; } - $responseData = $response->get($request->uri->__toString()); + $responseData = $response->getDataArray($request->uri->__toString()); if (!\is_array($responseData)) { return; } diff --git a/Controller/ApiVehicleAttributeController.php b/Controller/ApiVehicleAttributeController.php index fb55865..08979d2 100644 --- a/Controller/ApiVehicleAttributeController.php +++ b/Controller/ApiVehicleAttributeController.php @@ -61,7 +61,8 @@ final class ApiVehicleAttributeController extends Controller return; } - $attribute = $this->createAttributeFromRequest($request); + $type = VehicleAttributeTypeMapper::get()->where('id', (int) $request->getData('type'))->execute(); + $attribute = $this->createAttributeFromRequest($request, $type); $this->createModel($request->header->account, $attribute, VehicleAttributeMapper::class, 'attribute', $request->getOrigin()); $this->createStandardCreateResponse($request, $response, $attribute); } diff --git a/Controller/ApiVehicleController.php b/Controller/ApiVehicleController.php index ade5276..290b845 100755 --- a/Controller/ApiVehicleController.php +++ b/Controller/ApiVehicleController.php @@ -989,7 +989,7 @@ final class ApiVehicleController extends Controller return; } - $responseData = $response->get($request->uri->__toString()); + $responseData = $response->getDataArray($request->uri->__toString()); if (!\is_array($responseData)) { return; } diff --git a/Theme/Backend/Lang/Navigation.da.lang.php b/Theme/Backend/Lang/Navigation.da.lang.php index a94b956..64dce9f 100755 --- a/Theme/Backend/Lang/Navigation.da.lang.php +++ b/Theme/Backend/Lang/Navigation.da.lang.php @@ -13,14 +13,11 @@ declare(strict_types=1); return ['Navigation' => [ - 'Client' => 'Klient', 'DriverAttributes' => '', 'DriverInspectionTypes' => '', 'Drivers' => '', 'FleetManagement' => '', 'Inspections' => '', - 'Region' => 'Område', - 'SalesRep' => 'Salgsrepræsentant', 'VehicleAttributes' => '', 'VehicleInspectionTypes' => '', 'Vehicles' => '', diff --git a/Theme/Backend/Lang/Navigation.de.lang.php b/Theme/Backend/Lang/Navigation.de.lang.php index ce0694c..64dce9f 100755 --- a/Theme/Backend/Lang/Navigation.de.lang.php +++ b/Theme/Backend/Lang/Navigation.de.lang.php @@ -13,14 +13,11 @@ declare(strict_types=1); return ['Navigation' => [ - 'Client' => 'Klient', 'DriverAttributes' => '', 'DriverInspectionTypes' => '', 'Drivers' => '', 'FleetManagement' => '', 'Inspections' => '', - 'Region' => 'Region', - 'SalesRep' => 'VerkäufeRep', 'VehicleAttributes' => '', 'VehicleInspectionTypes' => '', 'Vehicles' => '', diff --git a/Theme/Backend/Lang/Navigation.el.lang.php b/Theme/Backend/Lang/Navigation.el.lang.php index bea8d38..64dce9f 100755 --- a/Theme/Backend/Lang/Navigation.el.lang.php +++ b/Theme/Backend/Lang/Navigation.el.lang.php @@ -13,14 +13,11 @@ declare(strict_types=1); return ['Navigation' => [ - 'Client' => 'Πελάτης', 'DriverAttributes' => '', 'DriverInspectionTypes' => '', 'Drivers' => '', 'FleetManagement' => '', 'Inspections' => '', - 'Region' => 'Περιοχή', - 'SalesRep' => 'Αντιπρόσωπος Πωλήσεων', 'VehicleAttributes' => '', 'VehicleInspectionTypes' => '', 'Vehicles' => '', diff --git a/Theme/Backend/Lang/Navigation.en.lang.php b/Theme/Backend/Lang/Navigation.en.lang.php index 4997c05..5102dbd 100755 --- a/Theme/Backend/Lang/Navigation.en.lang.php +++ b/Theme/Backend/Lang/Navigation.en.lang.php @@ -13,14 +13,11 @@ declare(strict_types=1); return ['Navigation' => [ - 'Client' => '', 'DriverAttributes' => 'Driver Attributes', 'DriverInspectionTypes' => 'Driver Inspection Types', 'Drivers' => 'Drivers', 'FleetManagement' => 'Fleet Management', 'Inspections' => 'Inspections', - 'Region' => '', - 'SalesRep' => '', 'VehicleAttributes' => 'Vehicle Attributes', 'VehicleInspectionTypes' => 'Vehicle Inspection Types', 'Vehicles' => 'Vehicles', diff --git a/Theme/Backend/Lang/Navigation.es.lang.php b/Theme/Backend/Lang/Navigation.es.lang.php index 878f53b..64dce9f 100755 --- a/Theme/Backend/Lang/Navigation.es.lang.php +++ b/Theme/Backend/Lang/Navigation.es.lang.php @@ -13,14 +13,11 @@ declare(strict_types=1); return ['Navigation' => [ - 'Client' => 'Cliente', 'DriverAttributes' => '', 'DriverInspectionTypes' => '', 'Drivers' => '', 'FleetManagement' => '', 'Inspections' => '', - 'Region' => 'Región', - 'SalesRep' => 'Vendedores', 'VehicleAttributes' => '', 'VehicleInspectionTypes' => '', 'Vehicles' => '', diff --git a/Theme/Backend/Lang/Navigation.fi.lang.php b/Theme/Backend/Lang/Navigation.fi.lang.php index 09cb774..64dce9f 100755 --- a/Theme/Backend/Lang/Navigation.fi.lang.php +++ b/Theme/Backend/Lang/Navigation.fi.lang.php @@ -13,14 +13,11 @@ declare(strict_types=1); return ['Navigation' => [ - 'Client' => 'Asiakas', 'DriverAttributes' => '', 'DriverInspectionTypes' => '', 'Drivers' => '', 'FleetManagement' => '', 'Inspections' => '', - 'Region' => 'Alue', - 'SalesRep' => 'Myyntiedustaja', 'VehicleAttributes' => '', 'VehicleInspectionTypes' => '', 'Vehicles' => '', diff --git a/Theme/Backend/Lang/Navigation.fr.lang.php b/Theme/Backend/Lang/Navigation.fr.lang.php index 2fd5b82..64dce9f 100755 --- a/Theme/Backend/Lang/Navigation.fr.lang.php +++ b/Theme/Backend/Lang/Navigation.fr.lang.php @@ -13,14 +13,11 @@ declare(strict_types=1); return ['Navigation' => [ - 'Client' => 'Client', 'DriverAttributes' => '', 'DriverInspectionTypes' => '', 'Drivers' => '', 'FleetManagement' => '', 'Inspections' => '', - 'Region' => 'Région', - 'SalesRep' => 'Représentant commercial', 'VehicleAttributes' => '', 'VehicleInspectionTypes' => '', 'Vehicles' => '', diff --git a/Theme/Backend/Lang/Navigation.hu.lang.php b/Theme/Backend/Lang/Navigation.hu.lang.php index c7e7202..64dce9f 100755 --- a/Theme/Backend/Lang/Navigation.hu.lang.php +++ b/Theme/Backend/Lang/Navigation.hu.lang.php @@ -13,14 +13,11 @@ declare(strict_types=1); return ['Navigation' => [ - 'Client' => 'Ügyfél', 'DriverAttributes' => '', 'DriverInspectionTypes' => '', 'Drivers' => '', 'FleetManagement' => '', 'Inspections' => '', - 'Region' => 'Vidék', - 'SalesRep' => 'Értékesítés', 'VehicleAttributes' => '', 'VehicleInspectionTypes' => '', 'Vehicles' => '', diff --git a/Theme/Backend/Lang/Navigation.it.lang.php b/Theme/Backend/Lang/Navigation.it.lang.php index e26a884..64dce9f 100755 --- a/Theme/Backend/Lang/Navigation.it.lang.php +++ b/Theme/Backend/Lang/Navigation.it.lang.php @@ -13,14 +13,11 @@ declare(strict_types=1); return ['Navigation' => [ - 'Client' => 'Cliente', 'DriverAttributes' => '', 'DriverInspectionTypes' => '', 'Drivers' => '', 'FleetManagement' => '', 'Inspections' => '', - 'Region' => 'Regione', - 'SalesRep' => 'Rappresentante delle vendite', 'VehicleAttributes' => '', 'VehicleInspectionTypes' => '', 'Vehicles' => '', diff --git a/Theme/Backend/Lang/Navigation.ja.lang.php b/Theme/Backend/Lang/Navigation.ja.lang.php index ca5ca08..64dce9f 100755 --- a/Theme/Backend/Lang/Navigation.ja.lang.php +++ b/Theme/Backend/Lang/Navigation.ja.lang.php @@ -13,14 +13,11 @@ declare(strict_types=1); return ['Navigation' => [ - 'Client' => 'クライアント', 'DriverAttributes' => '', 'DriverInspectionTypes' => '', 'Drivers' => '', 'FleetManagement' => '', 'Inspections' => '', - 'Region' => '領域', - 'SalesRep' => 'セールスレート', 'VehicleAttributes' => '', 'VehicleInspectionTypes' => '', 'Vehicles' => '', diff --git a/Theme/Backend/Lang/Navigation.ko.lang.php b/Theme/Backend/Lang/Navigation.ko.lang.php index 0c9b4e6..64dce9f 100755 --- a/Theme/Backend/Lang/Navigation.ko.lang.php +++ b/Theme/Backend/Lang/Navigation.ko.lang.php @@ -13,14 +13,11 @@ declare(strict_types=1); return ['Navigation' => [ - 'Client' => '고객', 'DriverAttributes' => '', 'DriverInspectionTypes' => '', 'Drivers' => '', 'FleetManagement' => '', 'Inspections' => '', - 'Region' => '지역', - 'SalesRep' => '매출액', 'VehicleAttributes' => '', 'VehicleInspectionTypes' => '', 'Vehicles' => '', diff --git a/Theme/Backend/Lang/Navigation.no.lang.php b/Theme/Backend/Lang/Navigation.no.lang.php index e7e0b71..64dce9f 100755 --- a/Theme/Backend/Lang/Navigation.no.lang.php +++ b/Theme/Backend/Lang/Navigation.no.lang.php @@ -13,14 +13,11 @@ declare(strict_types=1); return ['Navigation' => [ - 'Client' => 'Klient', 'DriverAttributes' => '', 'DriverInspectionTypes' => '', 'Drivers' => '', 'FleetManagement' => '', 'Inspections' => '', - 'Region' => 'Region', - 'SalesRep' => 'SalesRep.', 'VehicleAttributes' => '', 'VehicleInspectionTypes' => '', 'Vehicles' => '', diff --git a/Theme/Backend/Lang/Navigation.pl.lang.php b/Theme/Backend/Lang/Navigation.pl.lang.php index 4cb69a7..64dce9f 100755 --- a/Theme/Backend/Lang/Navigation.pl.lang.php +++ b/Theme/Backend/Lang/Navigation.pl.lang.php @@ -13,14 +13,11 @@ declare(strict_types=1); return ['Navigation' => [ - 'Client' => 'Klient', 'DriverAttributes' => '', 'DriverInspectionTypes' => '', 'Drivers' => '', 'FleetManagement' => '', 'Inspections' => '', - 'Region' => 'Region', - 'SalesRep' => 'Przedstawiciel handlowy', 'VehicleAttributes' => '', 'VehicleInspectionTypes' => '', 'Vehicles' => '', diff --git a/Theme/Backend/Lang/Navigation.pt.lang.php b/Theme/Backend/Lang/Navigation.pt.lang.php index a77a9ae..64dce9f 100755 --- a/Theme/Backend/Lang/Navigation.pt.lang.php +++ b/Theme/Backend/Lang/Navigation.pt.lang.php @@ -13,14 +13,11 @@ declare(strict_types=1); return ['Navigation' => [ - 'Client' => 'Cliente', 'DriverAttributes' => '', 'DriverInspectionTypes' => '', 'Drivers' => '', 'FleetManagement' => '', 'Inspections' => '', - 'Region' => 'Região', - 'SalesRep' => 'Representante de vendas', 'VehicleAttributes' => '', 'VehicleInspectionTypes' => '', 'Vehicles' => '', diff --git a/Theme/Backend/Lang/Navigation.ru.lang.php b/Theme/Backend/Lang/Navigation.ru.lang.php index f48386f..64dce9f 100755 --- a/Theme/Backend/Lang/Navigation.ru.lang.php +++ b/Theme/Backend/Lang/Navigation.ru.lang.php @@ -13,14 +13,11 @@ declare(strict_types=1); return ['Navigation' => [ - 'Client' => 'Клиент', 'DriverAttributes' => '', 'DriverInspectionTypes' => '', 'Drivers' => '', 'FleetManagement' => '', 'Inspections' => '', - 'Region' => 'Область', - 'SalesRep' => 'Торговый представитель', 'VehicleAttributes' => '', 'VehicleInspectionTypes' => '', 'Vehicles' => '', diff --git a/Theme/Backend/Lang/Navigation.sv.lang.php b/Theme/Backend/Lang/Navigation.sv.lang.php index 0852be9..64dce9f 100755 --- a/Theme/Backend/Lang/Navigation.sv.lang.php +++ b/Theme/Backend/Lang/Navigation.sv.lang.php @@ -13,14 +13,11 @@ declare(strict_types=1); return ['Navigation' => [ - 'Client' => 'Klient', 'DriverAttributes' => '', 'DriverInspectionTypes' => '', 'Drivers' => '', 'FleetManagement' => '', 'Inspections' => '', - 'Region' => 'Område', - 'SalesRep' => 'Säljare', 'VehicleAttributes' => '', 'VehicleInspectionTypes' => '', 'Vehicles' => '', diff --git a/Theme/Backend/Lang/Navigation.th.lang.php b/Theme/Backend/Lang/Navigation.th.lang.php index 9586a16..64dce9f 100755 --- a/Theme/Backend/Lang/Navigation.th.lang.php +++ b/Theme/Backend/Lang/Navigation.th.lang.php @@ -13,14 +13,11 @@ declare(strict_types=1); return ['Navigation' => [ - 'Client' => 'ลูกค้า', 'DriverAttributes' => '', 'DriverInspectionTypes' => '', 'Drivers' => '', 'FleetManagement' => '', 'Inspections' => '', - 'Region' => 'ภูมิภาค', - 'SalesRep' => 'ตัวแทนฝ่ายขาย', 'VehicleAttributes' => '', 'VehicleInspectionTypes' => '', 'Vehicles' => '', diff --git a/Theme/Backend/Lang/Navigation.tr.lang.php b/Theme/Backend/Lang/Navigation.tr.lang.php index b07419c..64dce9f 100755 --- a/Theme/Backend/Lang/Navigation.tr.lang.php +++ b/Theme/Backend/Lang/Navigation.tr.lang.php @@ -13,14 +13,11 @@ declare(strict_types=1); return ['Navigation' => [ - 'Client' => 'Müşteri', 'DriverAttributes' => '', 'DriverInspectionTypes' => '', 'Drivers' => '', 'FleetManagement' => '', 'Inspections' => '', - 'Region' => 'Bölge', - 'SalesRep' => 'Satıcı', 'VehicleAttributes' => '', 'VehicleInspectionTypes' => '', 'Vehicles' => '', diff --git a/Theme/Backend/Lang/Navigation.uk.lang.php b/Theme/Backend/Lang/Navigation.uk.lang.php index cfb55b1..64dce9f 100755 --- a/Theme/Backend/Lang/Navigation.uk.lang.php +++ b/Theme/Backend/Lang/Navigation.uk.lang.php @@ -13,14 +13,11 @@ declare(strict_types=1); return ['Navigation' => [ - 'Client' => 'Клієнт', 'DriverAttributes' => '', 'DriverInspectionTypes' => '', 'Drivers' => '', 'FleetManagement' => '', 'Inspections' => '', - 'Region' => 'Регіон', - 'SalesRep' => 'Торговий представник', 'VehicleAttributes' => '', 'VehicleInspectionTypes' => '', 'Vehicles' => '', diff --git a/Theme/Backend/Lang/Navigation.zh.lang.php b/Theme/Backend/Lang/Navigation.zh.lang.php index e36b980..64dce9f 100755 --- a/Theme/Backend/Lang/Navigation.zh.lang.php +++ b/Theme/Backend/Lang/Navigation.zh.lang.php @@ -13,14 +13,11 @@ declare(strict_types=1); return ['Navigation' => [ - 'Client' => '客户', 'DriverAttributes' => '', 'DriverInspectionTypes' => '', 'Drivers' => '', 'FleetManagement' => '', 'Inspections' => '', - 'Region' => '地区', - 'SalesRep' => '销售代表', 'VehicleAttributes' => '', 'VehicleInspectionTypes' => '', 'Vehicles' => '', diff --git a/Theme/Backend/Lang/ar.lang.php b/Theme/Backend/Lang/ar.lang.php index c6543d0..552e897 100755 --- a/Theme/Backend/Lang/ar.lang.php +++ b/Theme/Backend/Lang/ar.lang.php @@ -21,44 +21,44 @@ return ['FleetManagement' => [ 'Addition' => 'إضافة', 'Address' => 'تبوك', 'Addresses' => 'عناوين', - 'Africa' => '#VALUE!', - 'AllCustomers' => '#VALUE!', - 'America' => '#VALUE!', - 'Analyse' => '#VALUE!', + 'Africa' => '', + 'AllCustomers' => '', + 'America' => '', + 'Analyse' => '', 'AreaManager' => 'مدير المنطقة', 'Articlegroup' => 'articlegroup.', 'Articles' => 'مقالات', - 'Asia' => '#VALUE!', - 'Attribute' => '#VALUE!', - 'Attributes' => '#VALUE!', + 'Asia' => '', + 'Attribute' => '', + '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' => 'اتصل', 'Costs' => '', 'Country' => 'دولة', 'Created' => 'خلقت', - 'CreatedAt' => '#VALUE!', + 'CreatedAt' => '', 'CreditRating' => 'التصنيف الائتماني', 'Creditcard' => 'بطاقة إئتمان', - 'Customers' => '#VALUE!', + 'Customers' => '', 'DSO' => 'DSO.', 'Date' => 'تاريخ', 'Default' => 'تقصير', 'Delivery' => 'توصيل', 'Description' => '', 'Discount' => 'خصم', - 'DiscountBonus' => '#VALUE!', + 'DiscountBonus' => '', 'DiscountP' => 'خصم ٪', 'Documents' => 'وثائق', 'Driver' => '', @@ -66,7 +66,7 @@ return ['FleetManagement' => [ 'Due' => 'بسبب', 'Email' => 'بريد الالكتروني', 'End' => '', - 'Europe' => '#VALUE!', + 'Europe' => '', 'Fax' => 'فاكس', 'Files' => 'الملفات', 'Filter' => 'منقي', @@ -80,13 +80,13 @@ return ['FleetManagement' => [ 'Invoice' => 'فاتورة', 'Invoices' => 'الفواتير', 'IsDefault' => 'افتراضي؟', - 'Items' => '#VALUE!', + 'Items' => '', 'LastContact' => 'آخر اتصال', 'LastOrder' => 'آخر طلب', 'LeasingFee' => '', 'Log' => 'سجل', 'Logs' => 'السجلات', - 'LostCustomers' => '#VALUE!', + 'LostCustomers' => '', 'MRR' => 'مرر', 'MTDSales' => 'مبيعات MTD', 'Make' => '', @@ -101,11 +101,11 @@ return ['FleetManagement' => [ 'Name2' => 'اسم 2.', 'Name3' => 'اسم 3.', 'Net' => 'شبكة', - 'NewCustomers' => '#VALUE!', + 'NewCustomers' => '', 'Notes' => 'ملحوظات', 'Number' => 'عدد', 'Office' => 'مكتب. مقر. مركز', - 'Other' => '#VALUE!', + 'Other' => '', 'Payment' => 'دفع', 'PaymentTerm' => 'مصطلح الدفع', 'Permission' => 'إذن', @@ -116,15 +116,15 @@ return ['FleetManagement' => [ 'Private' => 'نشر', 'Productgroup' => 'productgroup.', 'Profile' => 'الملف الشخصي', - 'Profit' => '#VALUE!', + 'Profit' => '', 'Purchase' => 'شراء', 'PurchasePrice' => '', 'Quantity' => 'كمية', 'RecentInvoices' => 'الفواتير الأخيرة', - 'Region' => '#VALUE!', - 'Rep' => '#VALUE!', + 'Region' => '', + 'Rep' => '', 'Responsible' => '', - 'Retention' => '#VALUE!', + 'Retention' => '', 'Sales' => 'مبيعات', 'Segment' => 'قطعة', 'Segments' => 'شرائح', @@ -133,15 +133,15 @@ return ['FleetManagement' => [ 'Subtype' => 'النوع الفرعي', 'Support' => 'يدعم', 'Tags' => 'كذا', - 'Title' => '#VALUE!', + 'Title' => '', 'To' => '', - 'Total' => '#VALUE!', - 'TotalPrice' => '#VALUE!', + 'Total' => '', + 'TotalPrice' => '', 'Type' => 'نوع', - 'UnitPrice' => '#VALUE!', + 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '#VALUE!', + 'Value' => '', 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', diff --git a/Theme/Backend/Lang/cs.lang.php b/Theme/Backend/Lang/cs.lang.php index 1459f6a..2db25a4 100755 --- a/Theme/Backend/Lang/cs.lang.php +++ b/Theme/Backend/Lang/cs.lang.php @@ -21,44 +21,44 @@ return ['FleetManagement' => [ '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!', - 'Attributes' => '#VALUE!', + 'Asia' => '', + 'Attribute' => '', + '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', 'Costs' => '', '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', 'Description' => '', 'Discount' => 'Sleva', - 'DiscountBonus' => '#VALUE!', + 'DiscountBonus' => '', 'DiscountP' => 'Sleva%', 'Documents' => 'Dokumenty', 'Driver' => '', @@ -66,7 +66,7 @@ return ['FleetManagement' => [ 'Due' => 'Způsoben', 'Email' => 'E-mailem', 'End' => '', - 'Europe' => '#VALUE!', + 'Europe' => '', 'Fax' => 'Fax', 'Files' => 'Soubory', 'Filter' => 'Filtr', @@ -80,13 +80,13 @@ return ['FleetManagement' => [ 'Invoice' => 'Faktura', 'Invoices' => 'Faktury', 'IsDefault' => 'Je výchozí?', - 'Items' => '#VALUE!', + 'Items' => '', 'LastContact' => 'Poslední kontakt', 'LastOrder' => 'Poslední objednávka', 'LeasingFee' => '', 'Log' => 'Log', 'Logs' => 'Protokoly', - 'LostCustomers' => '#VALUE!', + 'LostCustomers' => '', 'MRR' => 'Mrr.', 'MTDSales' => 'Prodej MTD.', 'Make' => '', @@ -101,11 +101,11 @@ return ['FleetManagement' => [ '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í', @@ -116,15 +116,15 @@ return ['FleetManagement' => [ 'Private' => 'Soukromý', 'Productgroup' => 'ProductSgroup.', 'Profile' => 'Profil', - 'Profit' => '#VALUE!', + 'Profit' => '', 'Purchase' => 'Nákup', 'PurchasePrice' => '', 'Quantity' => 'Množství', 'RecentInvoices' => 'Nedávné faktury', - 'Region' => '#VALUE!', - 'Rep' => '#VALUE!', + 'Region' => '', + 'Rep' => '', 'Responsible' => '', - 'Retention' => '#VALUE!', + 'Retention' => '', 'Sales' => 'Odbyt', 'Segment' => 'Segment', 'Segments' => 'Segmenty', @@ -133,15 +133,15 @@ return ['FleetManagement' => [ 'Subtype' => 'Podtyp', 'Support' => 'Podpěra, podpora', 'Tags' => 'Tagy', - 'Title' => '#VALUE!', + 'Title' => '', 'To' => '', - 'Total' => '#VALUE!', - 'TotalPrice' => '#VALUE!', + 'Total' => '', + 'TotalPrice' => '', 'Type' => 'Typ', - 'UnitPrice' => '#VALUE!', + 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '#VALUE!', + 'Value' => '', 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', diff --git a/Theme/Backend/Lang/da.lang.php b/Theme/Backend/Lang/da.lang.php index de2249f..6b4da93 100755 --- a/Theme/Backend/Lang/da.lang.php +++ b/Theme/Backend/Lang/da.lang.php @@ -21,44 +21,44 @@ return ['FleetManagement' => [ '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!', - 'Attributes' => '#VALUE!', + 'Asia' => '', + 'Attribute' => '', + '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', 'Costs' => '', 'Country' => 'Land', 'Created' => 'Oprettet', - 'CreatedAt' => '#VALUE!', + 'CreatedAt' => '', 'CreditRating' => 'Kreditvurdering', 'Creditcard' => 'Kreditkort', - 'Customers' => '#VALUE!', + 'Customers' => '', 'DSO' => 'DSO.', 'Date' => 'Dato', 'Default' => 'Standard', 'Delivery' => 'Levering', 'Description' => '', 'Discount' => 'Rabat', - 'DiscountBonus' => '#VALUE!', + 'DiscountBonus' => '', 'DiscountP' => 'Rabat%', 'Documents' => 'Dokumenter', 'Driver' => '', @@ -66,7 +66,7 @@ return ['FleetManagement' => [ 'Due' => 'På grund', 'Email' => 'Email.', 'End' => '', - 'Europe' => '#VALUE!', + 'Europe' => '', 'Fax' => 'Fax', 'Files' => 'Filer.', 'Filter' => 'Filter', @@ -80,13 +80,13 @@ return ['FleetManagement' => [ 'Invoice' => 'Faktura', 'Invoices' => 'Fakturaer.', 'IsDefault' => 'Er standard?', - 'Items' => '#VALUE!', + 'Items' => '', 'LastContact' => 'Sidste kontakt', 'LastOrder' => 'Sidste ordre', 'LeasingFee' => '', 'Log' => 'Log', 'Logs' => 'Logs.', - 'LostCustomers' => '#VALUE!', + 'LostCustomers' => '', 'MRR' => 'MRR.', 'MTDSales' => 'MTD Sales.', 'Make' => '', @@ -101,11 +101,11 @@ return ['FleetManagement' => [ 'Name2' => 'NAME2.', 'Name3' => 'NAME3.', 'Net' => 'Net', - 'NewCustomers' => '#VALUE!', + 'NewCustomers' => '', 'Notes' => 'Noter.', 'Number' => 'Nummer', 'Office' => 'Kontor', - 'Other' => '#VALUE!', + 'Other' => '', 'Payment' => 'Betaling', 'PaymentTerm' => 'Betalingsbetingelser', 'Permission' => 'Tilladelse', @@ -116,15 +116,15 @@ return ['FleetManagement' => [ 'Private' => 'Privat', 'Productgroup' => 'Produktgruppe', 'Profile' => 'Profil', - 'Profit' => '#VALUE!', + 'Profit' => '', 'Purchase' => 'Køb', 'PurchasePrice' => '', 'Quantity' => 'Antal', 'RecentInvoices' => 'Nylige fakturaer.', - 'Region' => '#VALUE!', - 'Rep' => '#VALUE!', + 'Region' => '', + 'Rep' => '', 'Responsible' => '', - 'Retention' => '#VALUE!', + 'Retention' => '', 'Sales' => 'SALG', 'Segment' => 'Segment', 'Segments' => 'Segmenter.', @@ -133,15 +133,15 @@ return ['FleetManagement' => [ 'Subtype' => 'Subtype.', 'Support' => 'Support', 'Tags' => 'Tags.', - 'Title' => '#VALUE!', + 'Title' => '', 'To' => '', - 'Total' => '#VALUE!', - 'TotalPrice' => '#VALUE!', + 'Total' => '', + 'TotalPrice' => '', 'Type' => 'Type', - 'UnitPrice' => '#VALUE!', + 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '#VALUE!', + 'Value' => '', 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', diff --git a/Theme/Backend/Lang/el.lang.php b/Theme/Backend/Lang/el.lang.php index 61d52ec..f216201 100755 --- a/Theme/Backend/Lang/el.lang.php +++ b/Theme/Backend/Lang/el.lang.php @@ -21,44 +21,44 @@ return ['FleetManagement' => [ 'Addition' => 'Πρόσθεση', 'Address' => 'Διεύθυνση', 'Addresses' => 'Διευθύνσεις', - 'Africa' => '#VALUE!', - 'AllCustomers' => '#VALUE!', - 'America' => '#VALUE!', - 'Analyse' => '#VALUE!', + 'Africa' => '', + 'AllCustomers' => '', + 'America' => '', + 'Analyse' => '', 'AreaManager' => 'Διευθυντής περιοχής', 'Articlegroup' => 'Ομιλία', 'Articles' => 'Είδη', - 'Asia' => '#VALUE!', - 'Attribute' => '#VALUE!', - 'Attributes' => '#VALUE!', + 'Asia' => '', + 'Attribute' => '', + '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' => 'Επικοινωνία', 'Costs' => '', 'Country' => 'Χώρα', 'Created' => 'Δημιουργήθηκε', - 'CreatedAt' => '#VALUE!', + 'CreatedAt' => '', 'CreditRating' => 'Αξιολόγησης της πιστοληπτικής ικανότητας', 'Creditcard' => 'Πιστωτική κάρτα', - 'Customers' => '#VALUE!', + 'Customers' => '', 'DSO' => 'ΔΣΟ', 'Date' => 'Ημερομηνία', 'Default' => 'Προκαθορισμένο', 'Delivery' => 'Διανομή', 'Description' => '', 'Discount' => 'Εκπτωση', - 'DiscountBonus' => '#VALUE!', + 'DiscountBonus' => '', 'DiscountP' => 'Έκπτωση%', 'Documents' => 'Εγγραφα', 'Driver' => '', @@ -66,7 +66,7 @@ return ['FleetManagement' => [ 'Due' => 'Λόγω', 'Email' => 'ΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗ', 'End' => '', - 'Europe' => '#VALUE!', + 'Europe' => '', 'Fax' => 'Φαξ', 'Files' => 'Αρχεία', 'Filter' => 'Φίλτρο', @@ -80,13 +80,13 @@ return ['FleetManagement' => [ 'Invoice' => 'Τιμολόγιο', 'Invoices' => 'Τιμολόγια', 'IsDefault' => 'Είναι προεπιλογή;', - 'Items' => '#VALUE!', + 'Items' => '', 'LastContact' => 'Τελευταία επαφή', 'LastOrder' => 'Τελευταία παραγγελία', 'LeasingFee' => '', 'Log' => 'Κούτσουρο', 'Logs' => 'Κούτσουρα', - 'LostCustomers' => '#VALUE!', + 'LostCustomers' => '', 'MRR' => 'MRR', 'MTDSales' => 'Πωλήσεις MTD', 'Make' => '', @@ -101,11 +101,11 @@ return ['FleetManagement' => [ 'Name2' => 'Όνομα2', 'Name3' => 'Όνομα', 'Net' => 'Καθαρά', - 'NewCustomers' => '#VALUE!', + 'NewCustomers' => '', 'Notes' => 'Σημειώνει', 'Number' => 'Αριθμός', 'Office' => 'Γραφείο', - 'Other' => '#VALUE!', + 'Other' => '', 'Payment' => 'Πληρωμή', 'PaymentTerm' => 'Ορος πληρωμής', 'Permission' => 'Αδεια', @@ -116,15 +116,15 @@ return ['FleetManagement' => [ 'Private' => 'Ιδιωτικός', 'Productgroup' => 'Ομοιόμορφη ομάδα', 'Profile' => 'Προφίλ', - 'Profit' => '#VALUE!', + 'Profit' => '', 'Purchase' => 'Αγορά', 'PurchasePrice' => '', 'Quantity' => 'Ποσότητα', 'RecentInvoices' => 'Πρόσφατα τιμολόγια', - 'Region' => '#VALUE!', - 'Rep' => '#VALUE!', + 'Region' => '', + 'Rep' => '', 'Responsible' => '', - 'Retention' => '#VALUE!', + 'Retention' => '', 'Sales' => 'Εκπτώσεις', 'Segment' => 'Τμήμα', 'Segments' => 'Τμήματα', @@ -133,15 +133,15 @@ return ['FleetManagement' => [ 'Subtype' => 'Υποτύπωμα', 'Support' => 'Υποστήριξη', 'Tags' => 'Ετικέτες', - 'Title' => '#VALUE!', + 'Title' => '', 'To' => '', - 'Total' => '#VALUE!', - 'TotalPrice' => '#VALUE!', + 'Total' => '', + 'TotalPrice' => '', 'Type' => 'Τύπος', - 'UnitPrice' => '#VALUE!', + 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '#VALUE!', + 'Value' => '', 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', diff --git a/Theme/Backend/Lang/en.lang.php b/Theme/Backend/Lang/en.lang.php index 0e838b0..741b237 100755 --- a/Theme/Backend/Lang/en.lang.php +++ b/Theme/Backend/Lang/en.lang.php @@ -40,7 +40,7 @@ return ['FleetManagement' => [ 'CLV' => '', 'Calendar' => '', 'City' => '', - 'Client' => '', + 'Client' => 'Client', 'ClientID' => '', 'Clients' => '', 'ComparisonTime' => '', diff --git a/Theme/Backend/Lang/es.lang.php b/Theme/Backend/Lang/es.lang.php index f842008..2afc312 100755 --- a/Theme/Backend/Lang/es.lang.php +++ b/Theme/Backend/Lang/es.lang.php @@ -21,44 +21,44 @@ return ['FleetManagement' => [ '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!', - 'Attributes' => '#VALUE!', + 'Asia' => '', + 'Attribute' => '', + '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', 'Costs' => '', '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', 'Description' => '', 'Discount' => 'Descuento', - 'DiscountBonus' => '#VALUE!', + 'DiscountBonus' => '', 'DiscountP' => 'Descuento%', 'Documents' => 'Documentos', 'Driver' => '', @@ -66,7 +66,7 @@ return ['FleetManagement' => [ 'Due' => 'Vencer', 'Email' => 'Correo electrónico', 'End' => '', - 'Europe' => '#VALUE!', + 'Europe' => '', 'Fax' => 'Fax', 'Files' => 'Archivos', 'Filter' => 'Filtrar', @@ -80,13 +80,13 @@ return ['FleetManagement' => [ 'Invoice' => 'Factura', 'Invoices' => 'Facturas', 'IsDefault' => 'Es por defecto?', - 'Items' => '#VALUE!', + 'Items' => '', 'LastContact' => 'Último contacto', 'LastOrder' => 'Último pedido', 'LeasingFee' => '', 'Log' => 'Tronco', 'Logs' => 'Registros', - 'LostCustomers' => '#VALUE!', + 'LostCustomers' => '', 'MRR' => 'Mrr', 'MTDSales' => 'Ventas MTD', 'Make' => '', @@ -101,11 +101,11 @@ return ['FleetManagement' => [ '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', @@ -116,15 +116,15 @@ return ['FleetManagement' => [ 'Private' => 'Privado', 'Productgroup' => 'Grupo de productos', 'Profile' => 'Perfil', - 'Profit' => '#VALUE!', + 'Profit' => '', 'Purchase' => 'Compra', 'PurchasePrice' => '', 'Quantity' => 'Cantidad', 'RecentInvoices' => 'Facturas recientes', - 'Region' => '#VALUE!', - 'Rep' => '#VALUE!', + 'Region' => '', + 'Rep' => '', 'Responsible' => '', - 'Retention' => '#VALUE!', + 'Retention' => '', 'Sales' => 'Ventas', 'Segment' => 'Segmento', 'Segments' => 'Segmentos', @@ -133,15 +133,15 @@ return ['FleetManagement' => [ 'Subtype' => 'Subtipo', 'Support' => 'Apoyo', 'Tags' => 'Etiquetas', - 'Title' => '#VALUE!', + 'Title' => '', 'To' => '', - 'Total' => '#VALUE!', - 'TotalPrice' => '#VALUE!', + 'Total' => '', + 'TotalPrice' => '', 'Type' => 'Escribe', - 'UnitPrice' => '#VALUE!', + 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '#VALUE!', + 'Value' => '', 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', diff --git a/Theme/Backend/Lang/fi.lang.php b/Theme/Backend/Lang/fi.lang.php index 48a170e..993f95f 100755 --- a/Theme/Backend/Lang/fi.lang.php +++ b/Theme/Backend/Lang/fi.lang.php @@ -21,44 +21,44 @@ return ['FleetManagement' => [ '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!', - 'Attributes' => '#VALUE!', + 'Asia' => '', + 'Attribute' => '', + '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ä', 'Costs' => '', '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', 'Description' => '', 'Discount' => 'Alennus', - 'DiscountBonus' => '#VALUE!', + 'DiscountBonus' => '', 'DiscountP' => 'Alennus %', 'Documents' => 'Asiakirjat', 'Driver' => '', @@ -66,7 +66,7 @@ return ['FleetManagement' => [ 'Due' => 'Takia', 'Email' => 'Sähköposti', 'End' => '', - 'Europe' => '#VALUE!', + 'Europe' => '', 'Fax' => 'Faksi', 'Files' => 'Tiedostot', 'Filter' => 'Suodattaa', @@ -80,13 +80,13 @@ return ['FleetManagement' => [ 'Invoice' => 'Lasku', 'Invoices' => 'Laskut', 'IsDefault' => 'On oletusarvo?', - 'Items' => '#VALUE!', + 'Items' => '', 'LastContact' => 'Viimeinen yhteystieto', 'LastOrder' => 'Viimeinen tilaus', 'LeasingFee' => '', 'Log' => 'Hirsi', 'Logs' => 'Lokit', - 'LostCustomers' => '#VALUE!', + 'LostCustomers' => '', 'MRR' => 'Mrr', 'MTDSales' => 'MTD-myynti', 'Make' => '', @@ -101,11 +101,11 @@ return ['FleetManagement' => [ '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', @@ -116,15 +116,15 @@ return ['FleetManagement' => [ 'Private' => 'Yksityinen', 'Productgroup' => 'Tuoteryhmä', 'Profile' => 'Profiili', - 'Profit' => '#VALUE!', + 'Profit' => '', 'Purchase' => 'Ostaa', 'PurchasePrice' => '', 'Quantity' => 'Määrä', 'RecentInvoices' => 'Viimeaikaiset laskut', - 'Region' => '#VALUE!', - 'Rep' => '#VALUE!', + 'Region' => '', + 'Rep' => '', 'Responsible' => '', - 'Retention' => '#VALUE!', + 'Retention' => '', 'Sales' => 'Myynti', 'Segment' => 'Segmentti', 'Segments' => 'Segmentit', @@ -133,15 +133,15 @@ return ['FleetManagement' => [ 'Subtype' => 'Alatyyppi', 'Support' => 'Tuki', 'Tags' => 'Tunnisteet', - 'Title' => '#VALUE!', + 'Title' => '', 'To' => '', - 'Total' => '#VALUE!', - 'TotalPrice' => '#VALUE!', + 'Total' => '', + 'TotalPrice' => '', 'Type' => 'Tyyppi', - 'UnitPrice' => '#VALUE!', + 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '#VALUE!', + 'Value' => '', 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', diff --git a/Theme/Backend/Lang/fr.lang.php b/Theme/Backend/Lang/fr.lang.php index 01b1209..32670b4 100755 --- a/Theme/Backend/Lang/fr.lang.php +++ b/Theme/Backend/Lang/fr.lang.php @@ -21,44 +21,44 @@ return ['FleetManagement' => [ '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!', - 'Attributes' => '#VALUE!', + 'Asia' => '', + 'Attribute' => '', + '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', 'Costs' => '', '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', 'Description' => '', 'Discount' => 'Remise', - 'DiscountBonus' => '#VALUE!', + 'DiscountBonus' => '', 'DiscountP' => 'Remise %', 'Documents' => 'Documents', 'Driver' => '', @@ -66,7 +66,7 @@ return ['FleetManagement' => [ 'Due' => 'Dû', 'Email' => 'E-mail', 'End' => '', - 'Europe' => '#VALUE!', + 'Europe' => '', 'Fax' => 'Fax', 'Files' => 'Des dossiers', 'Filter' => 'Filtre', @@ -80,13 +80,13 @@ return ['FleetManagement' => [ 'Invoice' => 'Facture d\'achat', 'Invoices' => 'Factures', 'IsDefault' => 'Est par défaut?', - 'Items' => '#VALUE!', + 'Items' => '', 'LastContact' => 'Dernier contact', 'LastOrder' => 'Dernière commande', 'LeasingFee' => '', 'Log' => 'Enregistrer', 'Logs' => 'Journaux', - 'LostCustomers' => '#VALUE!', + 'LostCustomers' => '', 'MRR' => 'Mrr', 'MTDSales' => 'Ventes MTD', 'Make' => '', @@ -101,11 +101,11 @@ return ['FleetManagement' => [ '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', @@ -116,15 +116,15 @@ return ['FleetManagement' => [ 'Private' => 'Privé', 'Productgroup' => 'Groupe de produits', 'Profile' => 'Profil', - 'Profit' => '#VALUE!', + 'Profit' => '', 'Purchase' => 'Acheter', 'PurchasePrice' => '', 'Quantity' => 'Quantité', 'RecentInvoices' => 'Factures récentes', - 'Region' => '#VALUE!', - 'Rep' => '#VALUE!', + 'Region' => '', + 'Rep' => '', 'Responsible' => '', - 'Retention' => '#VALUE!', + 'Retention' => '', 'Sales' => 'Ventes', 'Segment' => 'Segment', 'Segments' => 'Segments', @@ -133,15 +133,15 @@ return ['FleetManagement' => [ 'Subtype' => 'Sous-type', 'Support' => 'Soutien', 'Tags' => 'Mots clés', - 'Title' => '#VALUE!', + 'Title' => '', 'To' => '', - 'Total' => '#VALUE!', - 'TotalPrice' => '#VALUE!', + 'Total' => '', + 'TotalPrice' => '', 'Type' => 'Taper', - 'UnitPrice' => '#VALUE!', + 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '#VALUE!', + 'Value' => '', 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', diff --git a/Theme/Backend/Lang/hu.lang.php b/Theme/Backend/Lang/hu.lang.php index 4c78940..4aadf53 100755 --- a/Theme/Backend/Lang/hu.lang.php +++ b/Theme/Backend/Lang/hu.lang.php @@ -21,44 +21,44 @@ return ['FleetManagement' => [ '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!', - 'Attributes' => '#VALUE!', + 'Asia' => '', + 'Attribute' => '', + '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', 'Costs' => '', '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', 'Description' => '', 'Discount' => 'Kedvezmény', - 'DiscountBonus' => '#VALUE!', + 'DiscountBonus' => '', 'DiscountP' => 'Árengedmény%', 'Documents' => 'Dokumentumok', 'Driver' => '', @@ -66,7 +66,7 @@ return ['FleetManagement' => [ 'Due' => 'Esedékes', 'Email' => 'Email', 'End' => '', - 'Europe' => '#VALUE!', + 'Europe' => '', 'Fax' => 'Fax', 'Files' => 'Fájlok', 'Filter' => 'Szűrő', @@ -80,13 +80,13 @@ return ['FleetManagement' => [ 'Invoice' => 'Számla', 'Invoices' => 'Számlák', 'IsDefault' => 'Alapértelmezett?', - 'Items' => '#VALUE!', + 'Items' => '', 'LastContact' => 'Utolsó kapcsolat', 'LastOrder' => 'Utolsó rendelés', 'LeasingFee' => '', 'Log' => 'Napló', 'Logs' => 'Naplók', - 'LostCustomers' => '#VALUE!', + 'LostCustomers' => '', 'MRR' => 'Mrr', 'MTDSales' => 'MTD értékesítés', 'Make' => '', @@ -101,11 +101,11 @@ return ['FleetManagement' => [ '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', @@ -116,15 +116,15 @@ return ['FleetManagement' => [ 'Private' => 'Magán', 'Productgroup' => 'Termékcsoport', 'Profile' => 'Profil', - 'Profit' => '#VALUE!', + 'Profit' => '', 'Purchase' => 'Vásárlás', 'PurchasePrice' => '', 'Quantity' => 'Mennyiség', 'RecentInvoices' => 'Legutóbbi számlák', - 'Region' => '#VALUE!', - 'Rep' => '#VALUE!', + 'Region' => '', + 'Rep' => '', 'Responsible' => '', - 'Retention' => '#VALUE!', + 'Retention' => '', 'Sales' => 'Értékesítés', 'Segment' => 'Szegmens', 'Segments' => 'Szegmensek', @@ -133,15 +133,15 @@ return ['FleetManagement' => [ 'Subtype' => 'Altípus', 'Support' => 'Támogatás', 'Tags' => 'Címkék', - 'Title' => '#VALUE!', + 'Title' => '', 'To' => '', - 'Total' => '#VALUE!', - 'TotalPrice' => '#VALUE!', + 'Total' => '', + 'TotalPrice' => '', 'Type' => 'típus', - 'UnitPrice' => '#VALUE!', + 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '#VALUE!', + 'Value' => '', 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', diff --git a/Theme/Backend/Lang/it.lang.php b/Theme/Backend/Lang/it.lang.php index 6eb9b3c..2889c1b 100755 --- a/Theme/Backend/Lang/it.lang.php +++ b/Theme/Backend/Lang/it.lang.php @@ -21,44 +21,44 @@ return ['FleetManagement' => [ '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!', - 'Attributes' => '#VALUE!', + 'Asia' => '', + 'Attribute' => '', + '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', 'Costs' => '', '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', 'Description' => '', 'Discount' => 'Sconto', - 'DiscountBonus' => '#VALUE!', + 'DiscountBonus' => '', 'DiscountP' => 'Sconto%', 'Documents' => 'Documenti', 'Driver' => '', @@ -66,7 +66,7 @@ return ['FleetManagement' => [ 'Due' => 'Dovuto', 'Email' => 'E-mail', 'End' => '', - 'Europe' => '#VALUE!', + 'Europe' => '', 'Fax' => 'Fax', 'Files' => 'File', 'Filter' => 'Filtro', @@ -80,13 +80,13 @@ return ['FleetManagement' => [ 'Invoice' => 'Fattura', 'Invoices' => 'Fatture', 'IsDefault' => 'È predefinito?', - 'Items' => '#VALUE!', + 'Items' => '', 'LastContact' => 'Ultimo contatto', 'LastOrder' => 'Ultimo ordine', 'LeasingFee' => '', 'Log' => 'Tronco d\'albero', 'Logs' => 'Logs.', - 'LostCustomers' => '#VALUE!', + 'LostCustomers' => '', 'MRR' => 'Mrr.', 'MTDSales' => 'Vendite di mtd.', 'Make' => '', @@ -101,11 +101,11 @@ return ['FleetManagement' => [ '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', @@ -116,15 +116,15 @@ return ['FleetManagement' => [ 'Private' => 'Privato', 'Productgroup' => 'Gruppo di prodotti', 'Profile' => 'Profilo', - 'Profit' => '#VALUE!', + 'Profit' => '', 'Purchase' => 'Acquistare', 'PurchasePrice' => '', 'Quantity' => 'Quantità', 'RecentInvoices' => 'Recenti fatture', - 'Region' => '#VALUE!', - 'Rep' => '#VALUE!', + 'Region' => '', + 'Rep' => '', 'Responsible' => '', - 'Retention' => '#VALUE!', + 'Retention' => '', 'Sales' => 'Saldi', 'Segment' => 'Segmento', 'Segments' => 'Segmenti', @@ -133,15 +133,15 @@ return ['FleetManagement' => [ 'Subtype' => 'Sottotipo', 'Support' => 'Supporto', 'Tags' => 'Tags.', - 'Title' => '#VALUE!', + 'Title' => '', 'To' => '', - 'Total' => '#VALUE!', - 'TotalPrice' => '#VALUE!', + 'Total' => '', + 'TotalPrice' => '', 'Type' => 'Tipo', - 'UnitPrice' => '#VALUE!', + 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '#VALUE!', + 'Value' => '', 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', diff --git a/Theme/Backend/Lang/ja.lang.php b/Theme/Backend/Lang/ja.lang.php index 0eaa6c9..93c40bf 100755 --- a/Theme/Backend/Lang/ja.lang.php +++ b/Theme/Backend/Lang/ja.lang.php @@ -21,44 +21,44 @@ return ['FleetManagement' => [ 'Addition' => '添加', 'Address' => '住所', 'Addresses' => 'アドレス', - 'Africa' => '#VALUE!', - 'AllCustomers' => '#VALUE!', - 'America' => '#VALUE!', - 'Analyse' => '#VALUE!', + 'Africa' => '', + 'AllCustomers' => '', + 'America' => '', + 'Analyse' => '', 'AreaManager' => 'エリアマネージャー', 'Articlegroup' => '記事グループ', 'Articles' => 'articles', - 'Asia' => '#VALUE!', - 'Attribute' => '#VALUE!', - 'Attributes' => '#VALUE!', + 'Asia' => '', + 'Attribute' => '', + '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' => 'コンタクト', 'Costs' => '', 'Country' => '国', 'Created' => '作成した', - 'CreatedAt' => '#VALUE!', + 'CreatedAt' => '', 'CreditRating' => '信用格付け', 'Creditcard' => 'クレジットカード', - 'Customers' => '#VALUE!', + 'Customers' => '', 'DSO' => 'DSO', 'Date' => '日にち', 'Default' => 'ディフォルト', 'Delivery' => '配達', 'Description' => '', 'Discount' => '割引', - 'DiscountBonus' => '#VALUE!', + 'DiscountBonus' => '', 'DiscountP' => '割引 %', 'Documents' => '文書', 'Driver' => '', @@ -66,7 +66,7 @@ return ['FleetManagement' => [ 'Due' => '期限', 'Email' => 'Eメール', 'End' => '', - 'Europe' => '#VALUE!', + 'Europe' => '', 'Fax' => 'ファックス', 'Files' => 'ファイル', 'Filter' => 'フィルター', @@ -80,13 +80,13 @@ return ['FleetManagement' => [ 'Invoice' => '請求書', 'Invoices' => '請求書', 'IsDefault' => 'デフォルトですか?', - 'Items' => '#VALUE!', + 'Items' => '', 'LastContact' => '最後の連絡先', 'LastOrder' => '最後の順序', 'LeasingFee' => '', 'Log' => 'ログ', 'Logs' => 'ログ', - 'LostCustomers' => '#VALUE!', + 'LostCustomers' => '', 'MRR' => 'MRR.', 'MTDSales' => 'MTDセールス', 'Make' => '', @@ -101,11 +101,11 @@ return ['FleetManagement' => [ 'Name2' => '名前2', 'Name3' => '名前3', 'Net' => 'ネット', - 'NewCustomers' => '#VALUE!', + 'NewCustomers' => '', 'Notes' => 'ノート', 'Number' => '番号', 'Office' => 'オフィス', - 'Other' => '#VALUE!', + 'Other' => '', 'Payment' => '支払い', 'PaymentTerm' => '支払条件', 'Permission' => '許可', @@ -116,15 +116,15 @@ return ['FleetManagement' => [ 'Private' => '民間', 'Productgroup' => '製品グループ', 'Profile' => 'プロフィール', - 'Profit' => '#VALUE!', + 'Profit' => '', 'Purchase' => '購入', 'PurchasePrice' => '', 'Quantity' => '量', 'RecentInvoices' => '最近の請求書', - 'Region' => '#VALUE!', - 'Rep' => '#VALUE!', + 'Region' => '', + 'Rep' => '', 'Responsible' => '', - 'Retention' => '#VALUE!', + 'Retention' => '', 'Sales' => '売り返り', 'Segment' => 'セグメント', 'Segments' => 'セグメント', @@ -133,15 +133,15 @@ return ['FleetManagement' => [ 'Subtype' => 'サブタイプ', 'Support' => 'サポート', 'Tags' => 'タグ', - 'Title' => '#VALUE!', + 'Title' => '', 'To' => '', - 'Total' => '#VALUE!', - 'TotalPrice' => '#VALUE!', + 'Total' => '', + 'TotalPrice' => '', 'Type' => 'タイプ', - 'UnitPrice' => '#VALUE!', + 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '#VALUE!', + 'Value' => '', 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', diff --git a/Theme/Backend/Lang/ko.lang.php b/Theme/Backend/Lang/ko.lang.php index 46ca9ee..7e35e7c 100755 --- a/Theme/Backend/Lang/ko.lang.php +++ b/Theme/Backend/Lang/ko.lang.php @@ -21,44 +21,44 @@ return ['FleetManagement' => [ 'Addition' => '덧셈', 'Address' => '주소', 'Addresses' => '구애', - 'Africa' => '#VALUE!', - 'AllCustomers' => '#VALUE!', - 'America' => '#VALUE!', - 'Analyse' => '#VALUE!', + 'Africa' => '', + 'AllCustomers' => '', + 'America' => '', + 'Analyse' => '', 'AreaManager' => '구역 책임자', 'Articlegroup' => '기사 그룹', 'Articles' => '조항', - 'Asia' => '#VALUE!', - 'Attribute' => '#VALUE!', - 'Attributes' => '#VALUE!', + 'Asia' => '', + 'Attribute' => '', + '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' => '연락하다', 'Costs' => '', 'Country' => '국가', 'Created' => '만들어진', - 'CreatedAt' => '#VALUE!', + 'CreatedAt' => '', 'CreditRating' => '신용 등급', 'Creditcard' => '신용 카드', - 'Customers' => '#VALUE!', + 'Customers' => '', 'DSO' => 'DSO.', 'Date' => '날짜', 'Default' => '기본', 'Delivery' => '배달', 'Description' => '', 'Discount' => '할인', - 'DiscountBonus' => '#VALUE!', + 'DiscountBonus' => '', 'DiscountP' => '할인 %', 'Documents' => '서류', 'Driver' => '', @@ -66,7 +66,7 @@ return ['FleetManagement' => [ 'Due' => '로 인한', 'Email' => '이메일', 'End' => '', - 'Europe' => '#VALUE!', + 'Europe' => '', 'Fax' => '팩스', 'Files' => '파일', 'Filter' => '필터', @@ -80,13 +80,13 @@ return ['FleetManagement' => [ 'Invoice' => '송장', 'Invoices' => '송장', 'IsDefault' => '기본값은 무엇입니까?', - 'Items' => '#VALUE!', + 'Items' => '', 'LastContact' => '마지막 연락처', 'LastOrder' => '마지막 주문', 'LeasingFee' => '', 'Log' => '통나무', 'Logs' => '로그인', - 'LostCustomers' => '#VALUE!', + 'LostCustomers' => '', 'MRR' => '부서', 'MTDSales' => 'MTD 판매', 'Make' => '', @@ -101,11 +101,11 @@ return ['FleetManagement' => [ 'Name2' => 'name2.', 'Name3' => 'Name3.', 'Net' => '그물', - 'NewCustomers' => '#VALUE!', + 'NewCustomers' => '', 'Notes' => '노트', 'Number' => '숫자', 'Office' => '사무실', - 'Other' => '#VALUE!', + 'Other' => '', 'Payment' => '지불', 'PaymentTerm' => '지불 기간', 'Permission' => '허가', @@ -116,15 +116,15 @@ return ['FleetManagement' => [ 'Private' => '사적인', 'Productgroup' => '제품 그룹', 'Profile' => '프로필', - 'Profit' => '#VALUE!', + 'Profit' => '', 'Purchase' => '구입', 'PurchasePrice' => '', 'Quantity' => '수량', 'RecentInvoices' => '최근 송장', - 'Region' => '#VALUE!', - 'Rep' => '#VALUE!', + 'Region' => '', + 'Rep' => '', 'Responsible' => '', - 'Retention' => '#VALUE!', + 'Retention' => '', 'Sales' => '매상', 'Segment' => '분절', 'Segments' => '세그먼트', @@ -133,15 +133,15 @@ return ['FleetManagement' => [ 'Subtype' => '하위 유형', 'Support' => '지원하다', 'Tags' => '태그', - 'Title' => '#VALUE!', + 'Title' => '', 'To' => '', - 'Total' => '#VALUE!', - 'TotalPrice' => '#VALUE!', + 'Total' => '', + 'TotalPrice' => '', 'Type' => '유형', - 'UnitPrice' => '#VALUE!', + 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '#VALUE!', + 'Value' => '', 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', diff --git a/Theme/Backend/Lang/no.lang.php b/Theme/Backend/Lang/no.lang.php index ebacbd6..8646c46 100755 --- a/Theme/Backend/Lang/no.lang.php +++ b/Theme/Backend/Lang/no.lang.php @@ -21,44 +21,44 @@ return ['FleetManagement' => [ '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!', - 'Attributes' => '#VALUE!', + 'Asia' => '', + 'Attribute' => '', + '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', 'Costs' => '', 'Country' => 'Land', 'Created' => 'Opprettet', - 'CreatedAt' => '#VALUE!', + 'CreatedAt' => '', 'CreditRating' => 'Kredittvurdering', 'Creditcard' => 'Kredittkort', - 'Customers' => '#VALUE!', + 'Customers' => '', 'DSO' => 'DSO', 'Date' => 'Dato', 'Default' => 'Misligholde', 'Delivery' => 'Leveranse', 'Description' => '', 'Discount' => 'Rabatt', - 'DiscountBonus' => '#VALUE!', + 'DiscountBonus' => '', 'DiscountP' => 'Rabatt%', 'Documents' => 'Dokumenter', 'Driver' => '', @@ -66,7 +66,7 @@ return ['FleetManagement' => [ 'Due' => 'På grunn av det', 'Email' => 'E-post', 'End' => '', - 'Europe' => '#VALUE!', + 'Europe' => '', 'Fax' => 'Faks', 'Files' => 'Filer', 'Filter' => 'Filter', @@ -80,13 +80,13 @@ return ['FleetManagement' => [ 'Invoice' => 'Faktura', 'Invoices' => 'Fakturaer', 'IsDefault' => 'Er standard?', - 'Items' => '#VALUE!', + 'Items' => '', 'LastContact' => 'Siste kontakt', 'LastOrder' => 'Siste bestilling', 'LeasingFee' => '', 'Log' => 'Logg', 'Logs' => 'Tømmerstokker', - 'LostCustomers' => '#VALUE!', + 'LostCustomers' => '', 'MRR' => 'MRR.', 'MTDSales' => 'MTD-salg', 'Make' => '', @@ -101,11 +101,11 @@ return ['FleetManagement' => [ 'Name2' => 'NAME2.', 'Name3' => 'Navn3.', 'Net' => 'Nett', - 'NewCustomers' => '#VALUE!', + 'NewCustomers' => '', 'Notes' => 'Notater', 'Number' => 'Nummer', 'Office' => 'Kontor', - 'Other' => '#VALUE!', + 'Other' => '', 'Payment' => 'innbetaling', 'PaymentTerm' => 'Betalingsperiode', 'Permission' => 'Tillatelse', @@ -116,15 +116,15 @@ return ['FleetManagement' => [ 'Private' => 'Privat', 'Productgroup' => 'Produktgruppe', 'Profile' => 'Profil', - 'Profit' => '#VALUE!', + 'Profit' => '', 'Purchase' => 'Kjøp', 'PurchasePrice' => '', 'Quantity' => 'Mengde', 'RecentInvoices' => 'Nylige fakturaer', - 'Region' => '#VALUE!', - 'Rep' => '#VALUE!', + 'Region' => '', + 'Rep' => '', 'Responsible' => '', - 'Retention' => '#VALUE!', + 'Retention' => '', 'Sales' => 'Salg', 'Segment' => 'Segmentet', 'Segments' => 'Segmenter', @@ -133,15 +133,15 @@ return ['FleetManagement' => [ 'Subtype' => 'Subtype.', 'Support' => 'Brukerstøtte', 'Tags' => 'Tags.', - 'Title' => '#VALUE!', + 'Title' => '', 'To' => '', - 'Total' => '#VALUE!', - 'TotalPrice' => '#VALUE!', + 'Total' => '', + 'TotalPrice' => '', 'Type' => 'Type', - 'UnitPrice' => '#VALUE!', + 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '#VALUE!', + 'Value' => '', 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', diff --git a/Theme/Backend/Lang/pl.lang.php b/Theme/Backend/Lang/pl.lang.php index 7e0d63a..a24eb99 100755 --- a/Theme/Backend/Lang/pl.lang.php +++ b/Theme/Backend/Lang/pl.lang.php @@ -21,44 +21,44 @@ return ['FleetManagement' => [ '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!', - 'Attributes' => '#VALUE!', + 'Asia' => '', + 'Attribute' => '', + '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', 'Costs' => '', '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', 'Description' => '', 'Discount' => 'Zniżka', - 'DiscountBonus' => '#VALUE!', + 'DiscountBonus' => '', 'DiscountP' => 'Zniżka %', 'Documents' => 'Dokumenty', 'Driver' => '', @@ -66,7 +66,7 @@ return ['FleetManagement' => [ 'Due' => 'Z powodu', 'Email' => 'E-mail', 'End' => '', - 'Europe' => '#VALUE!', + 'Europe' => '', 'Fax' => 'Faks', 'Files' => 'Pliki', 'Filter' => 'Filtr', @@ -80,13 +80,13 @@ return ['FleetManagement' => [ 'Invoice' => 'Faktura', 'Invoices' => 'Faktury', 'IsDefault' => 'Jest domyślnie?', - 'Items' => '#VALUE!', + 'Items' => '', 'LastContact' => 'Ostatni kontakt', 'LastOrder' => 'Ostatnie zamówienie', 'LeasingFee' => '', 'Log' => 'Dziennik', 'Logs' => 'Kłody', - 'LostCustomers' => '#VALUE!', + 'LostCustomers' => '', 'MRR' => 'MRR.', 'MTDSales' => 'Sprzedaż MTD.', 'Make' => '', @@ -101,11 +101,11 @@ return ['FleetManagement' => [ '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', @@ -116,15 +116,15 @@ return ['FleetManagement' => [ 'Private' => 'Prywatny', 'Productgroup' => 'Grupa produktów', 'Profile' => 'Profil', - 'Profit' => '#VALUE!', + 'Profit' => '', 'Purchase' => 'Zakup', 'PurchasePrice' => '', 'Quantity' => 'Ilość', 'RecentInvoices' => 'Ostatnie faktury.', - 'Region' => '#VALUE!', - 'Rep' => '#VALUE!', + 'Region' => '', + 'Rep' => '', 'Responsible' => '', - 'Retention' => '#VALUE!', + 'Retention' => '', 'Sales' => 'Obroty', 'Segment' => 'Człon', 'Segments' => 'Segmenty', @@ -133,15 +133,15 @@ return ['FleetManagement' => [ 'Subtype' => 'Podtyp', 'Support' => 'Wsparcie', 'Tags' => 'Tagi.', - 'Title' => '#VALUE!', + 'Title' => '', 'To' => '', - 'Total' => '#VALUE!', - 'TotalPrice' => '#VALUE!', + 'Total' => '', + 'TotalPrice' => '', 'Type' => 'Rodzaj', - 'UnitPrice' => '#VALUE!', + 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '#VALUE!', + 'Value' => '', 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', diff --git a/Theme/Backend/Lang/pt.lang.php b/Theme/Backend/Lang/pt.lang.php index 21b4391..a970f54 100755 --- a/Theme/Backend/Lang/pt.lang.php +++ b/Theme/Backend/Lang/pt.lang.php @@ -21,44 +21,44 @@ return ['FleetManagement' => [ '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!', - 'Attributes' => '#VALUE!', + 'Asia' => '', + 'Attribute' => '', + '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', 'Costs' => '', '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', 'Description' => '', 'Discount' => 'Desconto', - 'DiscountBonus' => '#VALUE!', + 'DiscountBonus' => '', 'DiscountP' => 'Desconto%', 'Documents' => 'Documentos', 'Driver' => '', @@ -66,7 +66,7 @@ return ['FleetManagement' => [ 'Due' => 'Vencimento', 'Email' => 'E-mail', 'End' => '', - 'Europe' => '#VALUE!', + 'Europe' => '', 'Fax' => 'Fax', 'Files' => 'arquivos', 'Filter' => 'Filtro', @@ -80,13 +80,13 @@ return ['FleetManagement' => [ 'Invoice' => 'Fatura', 'Invoices' => 'Faturas', 'IsDefault' => 'É padrão?', - 'Items' => '#VALUE!', + 'Items' => '', 'LastContact' => 'Último contato.', 'LastOrder' => 'Último pedido', 'LeasingFee' => '', 'Log' => 'Registro', 'Logs' => 'Histórico', - 'LostCustomers' => '#VALUE!', + 'LostCustomers' => '', 'MRR' => 'MRR.', 'MTDSales' => 'Sales Mtd.', 'Make' => '', @@ -101,11 +101,11 @@ return ['FleetManagement' => [ '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', @@ -116,15 +116,15 @@ return ['FleetManagement' => [ 'Private' => 'Privado', 'Productgroup' => 'Grupo de produtos', 'Profile' => 'Perfil', - 'Profit' => '#VALUE!', + 'Profit' => '', 'Purchase' => 'Comprar', 'PurchasePrice' => '', 'Quantity' => 'Quantidade', 'RecentInvoices' => 'Faturas recentes', - 'Region' => '#VALUE!', - 'Rep' => '#VALUE!', + 'Region' => '', + 'Rep' => '', 'Responsible' => '', - 'Retention' => '#VALUE!', + 'Retention' => '', 'Sales' => 'Vendas', 'Segment' => 'Segmento', 'Segments' => 'Segmentos', @@ -133,15 +133,15 @@ return ['FleetManagement' => [ 'Subtype' => 'Subtipo', 'Support' => 'Apoio, suporte', 'Tags' => 'Tag', - 'Title' => '#VALUE!', + 'Title' => '', 'To' => '', - 'Total' => '#VALUE!', - 'TotalPrice' => '#VALUE!', + 'Total' => '', + 'TotalPrice' => '', 'Type' => 'Modelo', - 'UnitPrice' => '#VALUE!', + 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '#VALUE!', + 'Value' => '', 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', diff --git a/Theme/Backend/Lang/ru.lang.php b/Theme/Backend/Lang/ru.lang.php index 4ec258f..5d82237 100755 --- a/Theme/Backend/Lang/ru.lang.php +++ b/Theme/Backend/Lang/ru.lang.php @@ -21,44 +21,44 @@ return ['FleetManagement' => [ 'Addition' => 'Добавление', 'Address' => 'Адрес', 'Addresses' => 'Адреса', - 'Africa' => '#VALUE!', - 'AllCustomers' => '#VALUE!', - 'America' => '#VALUE!', - 'Analyse' => '#VALUE!', + 'Africa' => '', + 'AllCustomers' => '', + 'America' => '', + 'Analyse' => '', 'AreaManager' => 'Региональный менеджер', 'Articlegroup' => 'Staregroup.', 'Articles' => 'Статьи', - 'Asia' => '#VALUE!', - 'Attribute' => '#VALUE!', - 'Attributes' => '#VALUE!', + 'Asia' => '', + 'Attribute' => '', + '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' => 'Контакт', 'Costs' => '', 'Country' => 'Страна', 'Created' => 'Созданный', - 'CreatedAt' => '#VALUE!', + 'CreatedAt' => '', 'CreditRating' => 'Кредитный рейтинг', 'Creditcard' => 'Кредитная карта', - 'Customers' => '#VALUE!', + 'Customers' => '', 'DSO' => 'DSO', 'Date' => 'Дата', 'Default' => 'Дефолт', 'Delivery' => 'Доставка', 'Description' => '', 'Discount' => 'Скидка', - 'DiscountBonus' => '#VALUE!', + 'DiscountBonus' => '', 'DiscountP' => 'Скидка %', 'Documents' => 'Документы', 'Driver' => '', @@ -66,7 +66,7 @@ return ['FleetManagement' => [ 'Due' => 'Должное', 'Email' => 'Электронное письмо', 'End' => '', - 'Europe' => '#VALUE!', + 'Europe' => '', 'Fax' => 'Факс', 'Files' => 'Файлы', 'Filter' => 'Фильтр', @@ -80,13 +80,13 @@ return ['FleetManagement' => [ 'Invoice' => 'Счет', 'Invoices' => 'Счета', 'IsDefault' => 'По умолчанию?', - 'Items' => '#VALUE!', + 'Items' => '', 'LastContact' => 'Последний контакт', 'LastOrder' => 'Последний заказ', 'LeasingFee' => '', 'Log' => 'Бревно', 'Logs' => 'Журналы', - 'LostCustomers' => '#VALUE!', + 'LostCustomers' => '', 'MRR' => 'MRR', 'MTDSales' => 'MTD Sales.', 'Make' => '', @@ -101,11 +101,11 @@ return ['FleetManagement' => [ 'Name2' => 'Имя2.', 'Name3' => 'Имя3.', 'Net' => 'Сеть', - 'NewCustomers' => '#VALUE!', + 'NewCustomers' => '', 'Notes' => 'Примечания', 'Number' => 'Число', 'Office' => 'Офис', - 'Other' => '#VALUE!', + 'Other' => '', 'Payment' => 'Оплата', 'PaymentTerm' => 'Условия оплаты', 'Permission' => 'Разрешение', @@ -116,15 +116,15 @@ return ['FleetManagement' => [ 'Private' => 'Частный', 'Productgroup' => 'Группа товаров', 'Profile' => 'Профиль', - 'Profit' => '#VALUE!', + 'Profit' => '', 'Purchase' => 'Покупка', 'PurchasePrice' => '', 'Quantity' => 'Количество', 'RecentInvoices' => 'Недавние счета', - 'Region' => '#VALUE!', - 'Rep' => '#VALUE!', + 'Region' => '', + 'Rep' => '', 'Responsible' => '', - 'Retention' => '#VALUE!', + 'Retention' => '', 'Sales' => 'Продажи', 'Segment' => 'Сегмент', 'Segments' => 'Сегменты', @@ -133,15 +133,15 @@ return ['FleetManagement' => [ 'Subtype' => 'Подтип', 'Support' => 'Служба поддержки', 'Tags' => 'Теги', - 'Title' => '#VALUE!', + 'Title' => '', 'To' => '', - 'Total' => '#VALUE!', - 'TotalPrice' => '#VALUE!', + 'Total' => '', + 'TotalPrice' => '', 'Type' => 'Тип', - 'UnitPrice' => '#VALUE!', + 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '#VALUE!', + 'Value' => '', 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', diff --git a/Theme/Backend/Lang/sv.lang.php b/Theme/Backend/Lang/sv.lang.php index eca57dc..3d07767 100755 --- a/Theme/Backend/Lang/sv.lang.php +++ b/Theme/Backend/Lang/sv.lang.php @@ -21,44 +21,44 @@ return ['FleetManagement' => [ '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!', - 'Attributes' => '#VALUE!', + 'Asia' => '', + 'Attribute' => '', + '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', 'Costs' => '', 'Country' => 'Land', 'Created' => 'Skapad', - 'CreatedAt' => '#VALUE!', + 'CreatedAt' => '', 'CreditRating' => 'Kreditvärdighet', 'Creditcard' => 'Kreditkort', - 'Customers' => '#VALUE!', + 'Customers' => '', 'DSO' => 'Do', 'Date' => 'Datum', 'Default' => 'Standard', 'Delivery' => 'Leverans', 'Description' => '', 'Discount' => 'Rabatt', - 'DiscountBonus' => '#VALUE!', + 'DiscountBonus' => '', 'DiscountP' => 'Rabatt%', 'Documents' => 'Dokument', 'Driver' => '', @@ -66,7 +66,7 @@ return ['FleetManagement' => [ 'Due' => 'På grund av', 'Email' => 'E-post', 'End' => '', - 'Europe' => '#VALUE!', + 'Europe' => '', 'Fax' => 'Fax', 'Files' => 'Filer', 'Filter' => 'Filtrera', @@ -80,13 +80,13 @@ return ['FleetManagement' => [ 'Invoice' => 'Faktura', 'Invoices' => 'Fakturor', 'IsDefault' => 'Är standard?', - 'Items' => '#VALUE!', + 'Items' => '', 'LastContact' => 'Senaste kontakten', 'LastOrder' => 'Sista beställningen', 'LeasingFee' => '', 'Log' => 'Logga', 'Logs' => 'Loggar', - 'LostCustomers' => '#VALUE!', + 'LostCustomers' => '', 'MRR' => 'Mrr', 'MTDSales' => 'MTD-försäljning', 'Make' => '', @@ -101,11 +101,11 @@ return ['FleetManagement' => [ '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', @@ -116,15 +116,15 @@ return ['FleetManagement' => [ 'Private' => 'Privat', 'Productgroup' => 'Produktgrupp', 'Profile' => 'Profil', - 'Profit' => '#VALUE!', + 'Profit' => '', 'Purchase' => 'Inköp', 'PurchasePrice' => '', 'Quantity' => 'Kvantitet', 'RecentInvoices' => 'Nya fakturor', - 'Region' => '#VALUE!', - 'Rep' => '#VALUE!', + 'Region' => '', + 'Rep' => '', 'Responsible' => '', - 'Retention' => '#VALUE!', + 'Retention' => '', 'Sales' => 'Försäljning', 'Segment' => 'Segmentet', 'Segments' => 'Segment', @@ -133,15 +133,15 @@ return ['FleetManagement' => [ 'Subtype' => 'Subtyp', 'Support' => 'Stöd', 'Tags' => 'Tagg', - 'Title' => '#VALUE!', + 'Title' => '', 'To' => '', - 'Total' => '#VALUE!', - 'TotalPrice' => '#VALUE!', + 'Total' => '', + 'TotalPrice' => '', 'Type' => 'Typ', - 'UnitPrice' => '#VALUE!', + 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '#VALUE!', + 'Value' => '', 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', diff --git a/Theme/Backend/Lang/th.lang.php b/Theme/Backend/Lang/th.lang.php index 52faf86..6b6a16e 100755 --- a/Theme/Backend/Lang/th.lang.php +++ b/Theme/Backend/Lang/th.lang.php @@ -21,44 +21,44 @@ return ['FleetManagement' => [ 'Addition' => 'ส่วนที่เพิ่มเข้าไป', 'Address' => 'ที่อยู่', 'Addresses' => 'ที่อยู่', - 'Africa' => '#VALUE!', - 'AllCustomers' => '#VALUE!', - 'America' => '#VALUE!', - 'Analyse' => '#VALUE!', + 'Africa' => '', + 'AllCustomers' => '', + 'America' => '', + 'Analyse' => '', 'AreaManager' => 'ผู้จัดการพื้นที่', 'Articlegroup' => 'ArticleGroup', 'Articles' => 'บทความ', - 'Asia' => '#VALUE!', - 'Attribute' => '#VALUE!', - 'Attributes' => '#VALUE!', + 'Asia' => '', + 'Attribute' => '', + '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' => 'ติดต่อ', 'Costs' => '', 'Country' => 'ประเทศ', 'Created' => 'สร้าง', - 'CreatedAt' => '#VALUE!', + 'CreatedAt' => '', 'CreditRating' => 'การจัดอันดับเครดิต', 'Creditcard' => 'บัตรเครดิต', - 'Customers' => '#VALUE!', + 'Customers' => '', 'DSO' => 'DSO', 'Date' => 'วันที่', 'Default' => 'ค่าเริ่มต้น', 'Delivery' => 'จัดส่ง', 'Description' => '', 'Discount' => 'การลดราคา', - 'DiscountBonus' => '#VALUE!', + 'DiscountBonus' => '', 'DiscountP' => 'การลดราคา %', 'Documents' => 'เอกสาร', 'Driver' => '', @@ -66,7 +66,7 @@ return ['FleetManagement' => [ 'Due' => 'เนื่องจาก', 'Email' => 'อีเมล', 'End' => '', - 'Europe' => '#VALUE!', + 'Europe' => '', 'Fax' => 'แฟกซ์', 'Files' => 'ไฟล์', 'Filter' => 'กรอง', @@ -80,13 +80,13 @@ return ['FleetManagement' => [ 'Invoice' => 'ใบแจ้งหนี้', 'Invoices' => 'ใบแจ้งหนี้', 'IsDefault' => 'เป็นค่าเริ่มต้น?', - 'Items' => '#VALUE!', + 'Items' => '', 'LastContact' => 'ติดต่อล่าสุด', 'LastOrder' => 'คำสั่งสุดท้าย', 'LeasingFee' => '', 'Log' => 'บันทึก', 'Logs' => 'การบันทึก', - 'LostCustomers' => '#VALUE!', + 'LostCustomers' => '', 'MRR' => 'MRR', 'MTDSales' => 'ขาย MTD', 'Make' => '', @@ -101,11 +101,11 @@ return ['FleetManagement' => [ 'Name2' => 'ชื่อ 2', 'Name3' => 'ชื่อ 3', 'Net' => 'สุทธิ', - 'NewCustomers' => '#VALUE!', + 'NewCustomers' => '', 'Notes' => 'หมายเหตุ', 'Number' => 'ตัวเลข', 'Office' => 'สำนักงาน', - 'Other' => '#VALUE!', + 'Other' => '', 'Payment' => 'การชำระเงิน', 'PaymentTerm' => 'เงื่อนไขการชำระเงิน', 'Permission' => 'การอนุญาต', @@ -116,15 +116,15 @@ return ['FleetManagement' => [ 'Private' => 'ส่วนตัว', 'Productgroup' => 'กลุ่มผลิตภัณฑ์', 'Profile' => 'ประวัติโดยย่อ', - 'Profit' => '#VALUE!', + 'Profit' => '', 'Purchase' => 'ซื้อ', 'PurchasePrice' => '', 'Quantity' => 'ปริมาณ', 'RecentInvoices' => 'ใบแจ้งหนี้ล่าสุด', - 'Region' => '#VALUE!', - 'Rep' => '#VALUE!', + 'Region' => '', + 'Rep' => '', 'Responsible' => '', - 'Retention' => '#VALUE!', + 'Retention' => '', 'Sales' => 'ฝ่ายขาย', 'Segment' => 'ส่วน', 'Segments' => 'กลุ่ม', @@ -133,15 +133,15 @@ return ['FleetManagement' => [ 'Subtype' => 'ประเภทย่อย', 'Support' => 'สนับสนุน', 'Tags' => 'แท็ก', - 'Title' => '#VALUE!', + 'Title' => '', 'To' => '', - 'Total' => '#VALUE!', - 'TotalPrice' => '#VALUE!', + 'Total' => '', + 'TotalPrice' => '', 'Type' => 'พิมพ์', - 'UnitPrice' => '#VALUE!', + 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '#VALUE!', + 'Value' => '', 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', diff --git a/Theme/Backend/Lang/tr.lang.php b/Theme/Backend/Lang/tr.lang.php index a0e6ff3..52266f9 100755 --- a/Theme/Backend/Lang/tr.lang.php +++ b/Theme/Backend/Lang/tr.lang.php @@ -21,44 +21,44 @@ return ['FleetManagement' => [ '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!', - 'Attributes' => '#VALUE!', + 'Asia' => '', + 'Attribute' => '', + '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', 'Costs' => '', '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', 'Description' => '', 'Discount' => 'İndirim', - 'DiscountBonus' => '#VALUE!', + 'DiscountBonus' => '', 'DiscountP' => 'İndirim %', 'Documents' => 'Belgeler', 'Driver' => '', @@ -66,7 +66,7 @@ return ['FleetManagement' => [ 'Due' => 'Vadesi dolmuş', 'Email' => 'E-posta', 'End' => '', - 'Europe' => '#VALUE!', + 'Europe' => '', 'Fax' => 'Faks', 'Files' => 'Dosyalar', 'Filter' => 'Filtrelemek', @@ -80,13 +80,13 @@ return ['FleetManagement' => [ 'Invoice' => 'Fatura', 'Invoices' => 'Faturalar', 'IsDefault' => 'Varsayılan mı?', - 'Items' => '#VALUE!', + 'Items' => '', 'LastContact' => 'Son iletişim', 'LastOrder' => 'Son sipariş', 'LeasingFee' => '', 'Log' => 'Kayıt', 'Logs' => 'Kütükler', - 'LostCustomers' => '#VALUE!', + 'LostCustomers' => '', 'MRR' => 'Mrr', 'MTDSales' => 'Mtd satışları', 'Make' => '', @@ -101,11 +101,11 @@ return ['FleetManagement' => [ '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', @@ -116,15 +116,15 @@ return ['FleetManagement' => [ 'Private' => 'Özel', 'Productgroup' => 'Ürün grubu', 'Profile' => 'Profil', - 'Profit' => '#VALUE!', + 'Profit' => '', 'Purchase' => 'Satın alma', 'PurchasePrice' => '', 'Quantity' => 'Miktar', 'RecentInvoices' => 'Son Faturalar', - 'Region' => '#VALUE!', - 'Rep' => '#VALUE!', + 'Region' => '', + 'Rep' => '', 'Responsible' => '', - 'Retention' => '#VALUE!', + 'Retention' => '', 'Sales' => 'Satış', 'Segment' => 'Segment', 'Segments' => 'Segmentler', @@ -133,15 +133,15 @@ return ['FleetManagement' => [ 'Subtype' => 'Alt tip', 'Support' => 'Destek', 'Tags' => 'Etiketler', - 'Title' => '#VALUE!', + 'Title' => '', 'To' => '', - 'Total' => '#VALUE!', - 'TotalPrice' => '#VALUE!', + 'Total' => '', + 'TotalPrice' => '', 'Type' => 'Tip', - 'UnitPrice' => '#VALUE!', + 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '#VALUE!', + 'Value' => '', 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', diff --git a/Theme/Backend/Lang/uk.lang.php b/Theme/Backend/Lang/uk.lang.php index 880c089..a9e5aa5 100755 --- a/Theme/Backend/Lang/uk.lang.php +++ b/Theme/Backend/Lang/uk.lang.php @@ -21,44 +21,44 @@ return ['FleetManagement' => [ 'Addition' => 'Додавання', 'Address' => 'Адреса', 'Addresses' => 'Адреси', - 'Africa' => '#VALUE!', - 'AllCustomers' => '#VALUE!', - 'America' => '#VALUE!', - 'Analyse' => '#VALUE!', + 'Africa' => '', + 'AllCustomers' => '', + 'America' => '', + 'Analyse' => '', 'AreaManager' => 'Менеджер області', 'Articlegroup' => 'Статтюгрупи', 'Articles' => 'Статті', - 'Asia' => '#VALUE!', - 'Attribute' => '#VALUE!', - 'Attributes' => '#VALUE!', + 'Asia' => '', + 'Attribute' => '', + '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' => 'Контакт', 'Costs' => '', 'Country' => 'Країна', 'Created' => 'Створений', - 'CreatedAt' => '#VALUE!', + 'CreatedAt' => '', 'CreditRating' => 'Кредитний рейтинг', 'Creditcard' => 'Кредитна карта', - 'Customers' => '#VALUE!', + 'Customers' => '', 'DSO' => 'Дз', 'Date' => 'Дата', 'Default' => 'За замовчуванням', 'Delivery' => 'Доставка', 'Description' => '', 'Discount' => 'Знижка', - 'DiscountBonus' => '#VALUE!', + 'DiscountBonus' => '', 'DiscountP' => 'Знижка%', 'Documents' => 'Документи', 'Driver' => '', @@ -66,7 +66,7 @@ return ['FleetManagement' => [ 'Due' => 'Заборгованість', 'Email' => 'Електронна пошта', 'End' => '', - 'Europe' => '#VALUE!', + 'Europe' => '', 'Fax' => 'Факс', 'Files' => 'Файли', 'Filter' => 'Фільтрувати', @@ -80,13 +80,13 @@ return ['FleetManagement' => [ 'Invoice' => 'Рахунок-фактура', 'Invoices' => 'Рахунки-фактури', 'IsDefault' => 'Чи є за замовчуванням?', - 'Items' => '#VALUE!', + 'Items' => '', 'LastContact' => 'Останній контакт', 'LastOrder' => 'Остання замовлення', 'LeasingFee' => '', 'Log' => 'Журнал', 'Logs' => 'Журнали', - 'LostCustomers' => '#VALUE!', + 'LostCustomers' => '', 'MRR' => 'Пан', 'MTDSales' => 'Продажі MTD', 'Make' => '', @@ -101,11 +101,11 @@ return ['FleetManagement' => [ 'Name2' => 'Name2', 'Name3' => 'Name3', 'Net' => 'Сітка', - 'NewCustomers' => '#VALUE!', + 'NewCustomers' => '', 'Notes' => 'Ноти', 'Number' => 'Число', 'Office' => 'Офіс', - 'Other' => '#VALUE!', + 'Other' => '', 'Payment' => 'Платіж', 'PaymentTerm' => 'Термін оплати', 'Permission' => 'Дозвіл', @@ -116,15 +116,15 @@ return ['FleetManagement' => [ 'Private' => 'Приватний', 'Productgroup' => 'Група продуктів', 'Profile' => 'Профіль', - 'Profit' => '#VALUE!', + 'Profit' => '', 'Purchase' => 'Придбання', 'PurchasePrice' => '', 'Quantity' => 'Кількість', 'RecentInvoices' => 'Останні рахунки-фактури', - 'Region' => '#VALUE!', - 'Rep' => '#VALUE!', + 'Region' => '', + 'Rep' => '', 'Responsible' => '', - 'Retention' => '#VALUE!', + 'Retention' => '', 'Sales' => 'Продаж', 'Segment' => 'Сегмент', 'Segments' => 'Сегменти', @@ -133,15 +133,15 @@ return ['FleetManagement' => [ 'Subtype' => 'Підтип', 'Support' => 'Підтримка', 'Tags' => 'Теги', - 'Title' => '#VALUE!', + 'Title' => '', 'To' => '', - 'Total' => '#VALUE!', - 'TotalPrice' => '#VALUE!', + 'Total' => '', + 'TotalPrice' => '', 'Type' => 'Тип', - 'UnitPrice' => '#VALUE!', + 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '#VALUE!', + 'Value' => '', 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', diff --git a/Theme/Backend/Lang/zh.lang.php b/Theme/Backend/Lang/zh.lang.php index 4392416..1c5ef79 100755 --- a/Theme/Backend/Lang/zh.lang.php +++ b/Theme/Backend/Lang/zh.lang.php @@ -21,44 +21,44 @@ return ['FleetManagement' => [ 'Addition' => '添加', 'Address' => '地址', 'Addresses' => '地址', - 'Africa' => '#VALUE!', - 'AllCustomers' => '#VALUE!', - 'America' => '#VALUE!', - 'Analyse' => '#VALUE!', + 'Africa' => '', + 'AllCustomers' => '', + 'America' => '', + 'Analyse' => '', 'AreaManager' => '区域经理', 'Articlegroup' => '商品组', 'Articles' => '文章', - 'Asia' => '#VALUE!', - 'Attribute' => '#VALUE!', - 'Attributes' => '#VALUE!', + 'Asia' => '', + 'Attribute' => '', + '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' => '接触', 'Costs' => '', 'Country' => '国家', 'Created' => '创造了', - 'CreatedAt' => '#VALUE!', + 'CreatedAt' => '', 'CreditRating' => '信用评级', 'Creditcard' => '信用卡', - 'Customers' => '#VALUE!', + 'Customers' => '', 'DSO' => 'DSO', 'Date' => '日期', 'Default' => '默认', 'Delivery' => '交货', 'Description' => '', 'Discount' => '折扣', - 'DiscountBonus' => '#VALUE!', + 'DiscountBonus' => '', 'DiscountP' => '折扣 %', 'Documents' => '文件', 'Driver' => '', @@ -66,7 +66,7 @@ return ['FleetManagement' => [ 'Due' => '到期的', 'Email' => '电子邮件', 'End' => '', - 'Europe' => '#VALUE!', + 'Europe' => '', 'Fax' => '传真', 'Files' => '文件', 'Filter' => '筛选', @@ -80,13 +80,13 @@ return ['FleetManagement' => [ 'Invoice' => '发票', 'Invoices' => '发票', 'IsDefault' => '默认为默认情况下?', - 'Items' => '#VALUE!', + 'Items' => '', 'LastContact' => '最后联系人', 'LastOrder' => '最后的订单', 'LeasingFee' => '', 'Log' => '日志', 'Logs' => '日志', - 'LostCustomers' => '#VALUE!', + 'LostCustomers' => '', 'MRR' => 'MRR.', 'MTDSales' => 'MTD销售', 'Make' => '', @@ -101,11 +101,11 @@ return ['FleetManagement' => [ 'Name2' => '名称2.', 'Name3' => '名称3.', 'Net' => '网', - 'NewCustomers' => '#VALUE!', + 'NewCustomers' => '', 'Notes' => '笔记', 'Number' => '数字', 'Office' => '办公室', - 'Other' => '#VALUE!', + 'Other' => '', 'Payment' => '支付', 'PaymentTerm' => '付款期限', 'Permission' => '允许', @@ -116,15 +116,15 @@ return ['FleetManagement' => [ 'Private' => '私人的', 'Productgroup' => '产品组', 'Profile' => '轮廓', - 'Profit' => '#VALUE!', + 'Profit' => '', 'Purchase' => '购买', 'PurchasePrice' => '', 'Quantity' => '数量', 'RecentInvoices' => '最近的发票', - 'Region' => '#VALUE!', - 'Rep' => '#VALUE!', + 'Region' => '', + 'Rep' => '', 'Responsible' => '', - 'Retention' => '#VALUE!', + 'Retention' => '', 'Sales' => '销售量', 'Segment' => '分割', 'Segments' => '段', @@ -133,15 +133,15 @@ return ['FleetManagement' => [ 'Subtype' => '亚型', 'Support' => '支持', 'Tags' => '标签', - 'Title' => '#VALUE!', + 'Title' => '', 'To' => '', - 'Total' => '#VALUE!', - 'TotalPrice' => '#VALUE!', + 'Total' => '', + 'TotalPrice' => '', 'Type' => '类型', - 'UnitPrice' => '#VALUE!', + 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '#VALUE!', + 'Value' => '', 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', diff --git a/tests/Controller/Api/ApiControllerAttributeTrait.php b/tests/Controller/Api/ApiControllerAttributeTrait.php index 0091863..4d5d8ff 100644 --- a/tests/Controller/Api/ApiControllerAttributeTrait.php +++ b/tests/Controller/Api/ApiControllerAttributeTrait.php @@ -40,7 +40,7 @@ trait ApiControllerAttributeTrait $request->setData('language', ISO639x1Enum::_EN); $this->attrModule->apiVehicleAttributeTypeCreate($request, $response); - self::assertGreaterThan(0, $response->get('')['response']->id); + self::assertGreaterThan(0, $response->getDataArray('')['response']->id); } /** @@ -58,7 +58,7 @@ trait ApiControllerAttributeTrait $request->setData('language', ISO639x1Enum::_DE); $this->attrModule->apiVehicleAttributeTypeL11nCreate($request, $response); - self::assertGreaterThan(0, $response->get('')['response']->id); + self::assertGreaterThan(0, $response->getDataArray('')['response']->id); } /** @@ -78,7 +78,7 @@ trait ApiControllerAttributeTrait $request->setData('country', ISO3166TwoEnum::_DEU); $this->attrModule->apiVehicleAttributeValueCreate($request, $response); - self::assertGreaterThan(0, $response->get('')['response']->id); + self::assertGreaterThan(0, $response->getDataArray('')['response']->id); } /** @@ -97,7 +97,7 @@ trait ApiControllerAttributeTrait $request->setData('country', ISO3166TwoEnum::_DEU); $this->attrModule->apiVehicleAttributeValueCreate($request, $response); - self::assertGreaterThan(0, $response->get('')['response']->id); + self::assertGreaterThan(0, $response->getDataArray('')['response']->id); } /** @@ -116,7 +116,7 @@ trait ApiControllerAttributeTrait $request->setData('country', ISO3166TwoEnum::_DEU); $this->attrModule->apiVehicleAttributeValueCreate($request, $response); - self::assertGreaterThan(0, $response->get('')['response']->id); + self::assertGreaterThan(0, $response->getDataArray('')['response']->id); } /** @@ -135,7 +135,7 @@ trait ApiControllerAttributeTrait $request->setData('country', ISO3166TwoEnum::_DEU); $this->attrModule->apiVehicleAttributeValueCreate($request, $response); - self::assertGreaterThan(0, $response->get('')['response']->id); + self::assertGreaterThan(0, $response->getDataArray('')['response']->id); } /** @@ -153,7 +153,7 @@ trait ApiControllerAttributeTrait $request->setData('type', '1'); $this->attrModule->apiVehicleAttributeCreate($request, $response); - self::assertGreaterThan(0, $response->get('')['response']->id); + self::assertGreaterThan(0, $response->getDataArray('')['response']->id); } /** diff --git a/tests/Controller/Api/ApiControllerVehicleTrait.php b/tests/Controller/Api/ApiControllerVehicleTrait.php index 8c62084..d8a0f0f 100644 --- a/tests/Controller/Api/ApiControllerVehicleTrait.php +++ b/tests/Controller/Api/ApiControllerVehicleTrait.php @@ -48,6 +48,6 @@ trait ApiControllerVehicleTrait $request->setData('status', 1); $this->module->apiVehicleCreate($request, $response); - self::assertGreaterThan(0, $response->get('')['response']->id); + self::assertGreaterThan(0, $response->getDataArray('')['response']->id); } }