diff --git a/Admin/Install/db.json b/Admin/Install/db.json index bdcc636..d5e4075 100755 --- a/Admin/Install/db.json +++ b/Admin/Install/db.json @@ -453,6 +453,11 @@ "type": "TINYINT(1)", "null": false }, + "fleetmgmt_vehicle_attr_type_repeatable": { + "name": "fleetmgmt_vehicle_attr_type_repeatable", + "type": "TINYINT(1)", + "null": false + }, "fleetmgmt_vehicle_attr_type_required": { "description": "Every vehicle must have this attribute type if set to true.", "name": "fleetmgmt_vehicle_attr_type_required", @@ -734,6 +739,11 @@ "type": "TINYINT(1)", "null": false }, + "fleetmgmt_driver_attr_type_repeatable": { + "name": "fleetmgmt_driver_attr_type_repeatable", + "type": "TINYINT(1)", + "null": false + }, "fleetmgmt_driver_attr_type_required": { "description": "Every driver must have this attribute type if set to true.", "name": "fleetmgmt_driver_attr_type_required", diff --git a/Controller/ApiDriverAttributeController.php b/Controller/ApiDriverAttributeController.php index 66914ba..f03190d 100644 --- a/Controller/ApiDriverAttributeController.php +++ b/Controller/ApiDriverAttributeController.php @@ -61,7 +61,23 @@ final class ApiDriverAttributeController extends Controller return; } - $type = DriverAttributeTypeMapper::get()->with('defaults')->where('id', (int) $request->getData('type'))->execute(); + $type = DriverAttributeTypeMapper::get()->with('defaults')->where('id', (int) $request->getData('type'))->execute(); + + if (!$type->repeatable) { + $attr = DriverAttributeMapper::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); $this->createModel($request->header->account, $attribute, DriverAttributeMapper::class, 'attribute', $request->getOrigin()); $this->createStandardCreateResponse($request, $response, $attribute); diff --git a/Controller/ApiVehicleAttributeController.php b/Controller/ApiVehicleAttributeController.php index 22fa25a..47c4ad0 100644 --- a/Controller/ApiVehicleAttributeController.php +++ b/Controller/ApiVehicleAttributeController.php @@ -61,7 +61,23 @@ final class ApiVehicleAttributeController extends Controller return; } - $type = VehicleAttributeTypeMapper::get()->with('defaults')->where('id', (int) $request->getData('type'))->execute(); + $type = VehicleAttributeTypeMapper::get()->with('defaults')->where('id', (int) $request->getData('type'))->execute(); + + if (!$type->repeatable) { + $attr = VehicleAttributeMapper::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); $this->createModel($request->header->account, $attribute, VehicleAttributeMapper::class, 'attribute', $request->getOrigin()); $this->createStandardCreateResponse($request, $response, $attribute); diff --git a/Controller/BackendController.php b/Controller/BackendController.php index 76ea42a..e1e34cf 100755 --- a/Controller/BackendController.php +++ b/Controller/BackendController.php @@ -336,12 +336,10 @@ final class BackendController extends Controller $view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1003502001, $request, $response); /** @var \Model\Setting $settings */ - $settings = $this->app->appSettings->get(null, [ - SettingsEnum::DEFAULT_LOCALIZATION, - ]); + $settings = $this->app->appSettings->get(null, SettingsEnum::DEFAULT_LOCALIZATION); $view->data['attributeView'] = new \Modules\Attribute\Theme\Backend\Components\AttributeView($this->app->l11nManager, $request, $response); - $view->data['attributeView']->data['defaultlocalization'] = LocalizationMapper::get()->where('id', (int) $settings->id)->execute(); + $view->data['attributeView']->data['default_localization'] = LocalizationMapper::get()->where('id', (int) $settings->id)->execute(); $view->data['media-upload'] = new \Modules\Media\Theme\Backend\Components\Upload\BaseView($this->app->l11nManager, $request, $response); $view->data['vehicle-notes'] = new \Modules\Editor\Theme\Backend\Components\Compound\BaseView($this->app->l11nManager, $request, $response); @@ -369,12 +367,10 @@ final class BackendController extends Controller $view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1003502001, $request, $response); /** @var \Model\Setting $settings */ - $settings = $this->app->appSettings->get(null, [ - SettingsEnum::DEFAULT_LOCALIZATION, - ]); + $settings = $this->app->appSettings->get(null, SettingsEnum::DEFAULT_LOCALIZATION); $view->data['attributeView'] = new \Modules\Attribute\Theme\Backend\Components\AttributeView($this->app->l11nManager, $request, $response); - $view->data['attributeView']->data['defaultlocalization'] = LocalizationMapper::get()->where('id', (int) $settings->id)->execute(); + $view->data['attributeView']->data['default_localization'] = LocalizationMapper::get()->where('id', (int) $settings->id)->execute(); $view->data['media-upload'] = new \Modules\Media\Theme\Backend\Components\Upload\BaseView($this->app->l11nManager, $request, $response); $view->data['vehicle-notes'] = new \Modules\Editor\Theme\Backend\Components\Compound\BaseView($this->app->l11nManager, $request, $response); @@ -487,12 +483,10 @@ final class BackendController extends Controller $view->data['units'] = $units; /** @var \Model\Setting $settings */ - $settings = $this->app->appSettings->get(null, [ - SettingsEnum::DEFAULT_LOCALIZATION, - ]); + $settings = $this->app->appSettings->get(null, SettingsEnum::DEFAULT_LOCALIZATION); $view->data['attributeView'] = new \Modules\Attribute\Theme\Backend\Components\AttributeView($this->app->l11nManager, $request, $response); - $view->data['attributeView']->data['defaultlocalization'] = LocalizationMapper::get()->where('id', (int) $settings->id)->execute(); + $view->data['attributeView']->data['default_localization'] = LocalizationMapper::get()->where('id', (int) $settings->id)->execute(); $view->data['media-upload'] = new \Modules\Media\Theme\Backend\Components\Upload\BaseView($this->app->l11nManager, $request, $response); $view->data['vehicle-notes'] = new \Modules\Editor\Theme\Backend\Components\Compound\BaseView($this->app->l11nManager, $request, $response); @@ -565,12 +559,10 @@ final class BackendController extends Controller $view->data['driverImage'] = $driverImage; /** @var \Model\Setting $settings */ - $settings = $this->app->appSettings->get(null, [ - SettingsEnum::DEFAULT_LOCALIZATION, - ]); + $settings = $this->app->appSettings->get(null, SettingsEnum::DEFAULT_LOCALIZATION); $view->data['attributeView'] = new \Modules\Attribute\Theme\Backend\Components\AttributeView($this->app->l11nManager, $request, $response); - $view->data['attributeView']->data['defaultlocalization'] = LocalizationMapper::get()->where('id', (int) $settings->id)->execute(); + $view->data['attributeView']->data['default_localization'] = LocalizationMapper::get()->where('id', (int) $settings->id)->execute(); $view->data['media-upload'] = new \Modules\Media\Theme\Backend\Components\Upload\BaseView($this->app->l11nManager, $request, $response); $view->data['driver-notes'] = new \Modules\Editor\Theme\Backend\Components\Compound\BaseView($this->app->l11nManager, $request, $response); diff --git a/Models/Attribute/DriverAttributeTypeMapper.php b/Models/Attribute/DriverAttributeTypeMapper.php index 92fd7c5..0d6f619 100644 --- a/Models/Attribute/DriverAttributeTypeMapper.php +++ b/Models/Attribute/DriverAttributeTypeMapper.php @@ -42,6 +42,7 @@ final class DriverAttributeTypeMapper extends DataMapperFactory 'fleetmgmt_driver_attr_type_datatype' => ['name' => 'fleetmgmt_driver_attr_type_datatype', 'type' => 'int', 'internal' => 'datatype'], 'fleetmgmt_driver_attr_type_fields' => ['name' => 'fleetmgmt_driver_attr_type_fields', 'type' => 'int', 'internal' => 'fields'], 'fleetmgmt_driver_attr_type_custom' => ['name' => 'fleetmgmt_driver_attr_type_custom', 'type' => 'bool', 'internal' => 'custom'], + 'fleetmgmt_driver_attr_type_repeatable' => ['name' => 'fleetmgmt_driver_attr_type_repeatable', 'type' => 'bool', 'internal' => 'repeatable'], 'fleetmgmt_driver_attr_type_pattern' => ['name' => 'fleetmgmt_driver_attr_type_pattern', 'type' => 'string', 'internal' => 'validationPattern'], 'fleetmgmt_driver_attr_type_required' => ['name' => 'fleetmgmt_driver_attr_type_required', 'type' => 'bool', 'internal' => 'isRequired'], ]; diff --git a/Models/Attribute/DriverAttributeValueMapper.php b/Models/Attribute/DriverAttributeValueMapper.php index 7f0b898..ce86166 100644 --- a/Models/Attribute/DriverAttributeValueMapper.php +++ b/Models/Attribute/DriverAttributeValueMapper.php @@ -59,6 +59,7 @@ final class DriverAttributeValueMapper extends DataMapperFactory 'mapper' => DriverAttributeValueL11nMapper::class, 'table' => 'fleetmgmt_driver_attr_value_l11n', 'self' => 'fleetmgmt_driver_attr_value_l11n_value', + 'column' => 'content', 'external' => null, ], ]; diff --git a/Models/Attribute/VehicleAttributeTypeMapper.php b/Models/Attribute/VehicleAttributeTypeMapper.php index 870ffed..f636c2f 100644 --- a/Models/Attribute/VehicleAttributeTypeMapper.php +++ b/Models/Attribute/VehicleAttributeTypeMapper.php @@ -42,6 +42,7 @@ final class VehicleAttributeTypeMapper extends DataMapperFactory 'fleetmgmt_vehicle_attr_type_datatype' => ['name' => 'fleetmgmt_vehicle_attr_type_datatype', 'type' => 'int', 'internal' => 'datatype'], 'fleetmgmt_vehicle_attr_type_fields' => ['name' => 'fleetmgmt_vehicle_attr_type_fields', 'type' => 'int', 'internal' => 'fields'], 'fleetmgmt_vehicle_attr_type_custom' => ['name' => 'fleetmgmt_vehicle_attr_type_custom', 'type' => 'bool', 'internal' => 'custom'], + 'fleetmgmt_vehicle_attr_type_repeatable' => ['name' => 'fleetmgmt_vehicle_attr_type_repeatable', 'type' => 'bool', 'internal' => 'repeatable'], 'fleetmgmt_vehicle_attr_type_pattern' => ['name' => 'fleetmgmt_vehicle_attr_type_pattern', 'type' => 'string', 'internal' => 'validationPattern'], 'fleetmgmt_vehicle_attr_type_required' => ['name' => 'fleetmgmt_vehicle_attr_type_required', 'type' => 'bool', 'internal' => 'isRequired'], ]; diff --git a/Models/Attribute/VehicleAttributeValueMapper.php b/Models/Attribute/VehicleAttributeValueMapper.php index 105b37a..8a5201a 100644 --- a/Models/Attribute/VehicleAttributeValueMapper.php +++ b/Models/Attribute/VehicleAttributeValueMapper.php @@ -59,6 +59,7 @@ final class VehicleAttributeValueMapper extends DataMapperFactory 'mapper' => VehicleAttributeValueL11nMapper::class, 'table' => 'fleetmgmt_vehicle_attr_value_l11n', 'self' => 'fleetmgmt_vehicle_attr_value_l11n_value', + 'column' => 'content', 'external' => null, ], ]; diff --git a/Theme/Backend/Lang/de.lang.php b/Theme/Backend/Lang/de.lang.php index 478b721..e9f0405 100755 --- a/Theme/Backend/Lang/de.lang.php +++ b/Theme/Backend/Lang/de.lang.php @@ -20,23 +20,13 @@ return ['FleetManagement' => [ ':status-d1' => 'Aktiv', ':status-d2' => 'Inaktiv', ':status-d3' => 'Fahrunfähig', - 'Accounting' => 'Buchhaltung', - 'Addition' => 'Zhd.', - 'Address' => 'Adresse', - 'Addresses' => 'Adressen', 'Attributes' => 'Attribute', - 'Client' => 'Kunde', - 'ClientID' => 'Kunden ID', - 'Clients' => 'Kunden', 'Costs' => 'Kosten', - 'Created' => 'Erstellt', - 'CreatedAt' => 'Erstellt', 'Date' => 'Datum', 'Driver' => 'Fahrer', 'Drivers' => 'Fahrer', 'End' => 'Ende', 'Files' => 'Dateien', - 'Freightage' => 'Fracht', 'History' => 'Historie', 'Inspections' => 'Inspektionen', 'LeasingFee' => 'Leasingkosten', @@ -44,20 +34,14 @@ return ['FleetManagement' => [ 'Milage' => 'Tacho', 'Model' => 'Modell', 'Name' => 'Name', - 'Name1' => 'Name 1', - 'Name2' => 'Name 2', - 'Name3' => 'Name 3', 'Notes' => 'Notizen', 'Profile' => 'Profile', 'PurchasePrice' => 'Kaufpreis', 'Responsible' => 'Verantwortlich', 'Start' => 'Start', 'Status' => 'Status', - 'Tags' => 'Stichworte', 'Type' => 'Typ', 'Upcoming' => 'Upcoming', - 'Vehicle' => 'Fahrzeug', 'Vehicles' => 'Fahrzeuge', 'Vin' => 'Vin', - 'Zip' => 'Postleitzahl', ]]; diff --git a/Theme/Backend/Lang/en.lang.php b/Theme/Backend/Lang/en.lang.php index a5c0c0b..d9fe396 100755 --- a/Theme/Backend/Lang/en.lang.php +++ b/Theme/Backend/Lang/en.lang.php @@ -21,16 +21,12 @@ return ['FleetManagement' => [ ':status-d2' => 'Inactive', ':status-d3' => 'Suspended', 'Attributes' => 'Attributes', - 'Client' => 'Client', 'Costs' => 'Costs', - 'Created' => 'Created', - 'CreatedAt' => 'Created At', 'Date' => 'Date', 'Driver' => 'Driver', 'Drivers' => 'Drivers', 'End' => 'End', 'Files' => 'Files', - 'Freightage' => 'Freightage', 'History' => 'History', 'Inspections' => 'Inspections', 'LeasingFee' => 'Leasing Fee', @@ -38,20 +34,14 @@ return ['FleetManagement' => [ 'Milage' => 'Milage', 'Model' => 'Model', 'Name' => 'Name', - 'Name1' => 'Name 1', - 'Name2' => 'Name 2', - 'Name3' => 'Name 3', 'Notes' => 'Notes', 'Profile' => 'Profile', 'PurchasePrice' => 'Purchase Price', - 'Region' => 'Region', 'Responsible' => 'Responsible', 'Start' => 'Start', 'Status' => 'Status', - 'Tags' => 'Tags', 'Type' => 'Type', 'Upcoming' => 'Upcoming', - 'Vehicle' => 'Vehicle', 'Vehicles' => 'Vehicles', 'Vin' => 'Vin', ]]; diff --git a/Theme/Backend/Lang/no.lang.php b/Theme/Backend/Lang/no.lang.php index 8646c46..b85bffb 100755 --- a/Theme/Backend/Lang/no.lang.php +++ b/Theme/Backend/Lang/no.lang.php @@ -13,140 +13,32 @@ declare(strict_types=1); return ['FleetManagement' => [ - ':status1' => '', - ':status2' => '', - ':status3' => '', - ':status4' => '', - 'Accounting' => 'Regnskap', - 'Addition' => 'Addisjon', - 'Address' => 'Adresse', - 'Addresses' => 'Adresser', - 'Africa' => '', - 'AllCustomers' => '', - 'America' => '', - 'Analyse' => '', - 'AreaManager' => 'Områdeansvarlig', - 'Articlegroup' => 'Articregroup.', - 'Articles' => 'Artikler', - 'Asia' => '', - 'Attribute' => '', 'Attributes' => '', - 'Balance' => 'Balansere', - 'BaseTime' => '', - 'Bills' => '', - 'Bonus' => 'Bonus', - 'Business' => 'Virksomhet', - 'CIS' => '', - 'CLV' => 'CLV.', - 'Calendar' => 'Kalender', - 'City' => 'By', - 'Client' => 'Klient', - 'ClientID' => '', - 'Clients' => 'Klienter', - 'ComparisonTime' => '', - 'Contact' => 'Kontakt', 'Costs' => '', - 'Country' => 'Land', - 'Created' => 'Opprettet', - 'CreatedAt' => '', - 'CreditRating' => 'Kredittvurdering', - 'Creditcard' => 'Kredittkort', - 'Customers' => '', - 'DSO' => 'DSO', 'Date' => 'Dato', - 'Default' => 'Misligholde', - 'Delivery' => 'Leveranse', 'Description' => '', - 'Discount' => 'Rabatt', - 'DiscountBonus' => '', - 'DiscountP' => 'Rabatt%', - 'Documents' => 'Dokumenter', 'Driver' => '', 'Drivers' => '', - 'Due' => 'På grunn av det', - 'Email' => 'E-post', 'End' => '', - 'Europe' => '', - 'Fax' => 'Faks', 'Files' => 'Filer', - 'Filter' => 'Filter', - 'Freightage' => 'Frakt', 'From' => '', - 'Group' => 'Gruppe', 'History' => '', - 'ID' => 'Id.', - 'Info' => 'Info.', 'Inspections' => '', - 'Invoice' => 'Faktura', - 'Invoices' => 'Fakturaer', - 'IsDefault' => 'Er standard?', - 'Items' => '', - 'LastContact' => 'Siste kontakt', - 'LastOrder' => 'Siste bestilling', 'LeasingFee' => '', - 'Log' => 'Logg', - 'Logs' => 'Tømmerstokker', - 'LostCustomers' => '', - 'MRR' => 'MRR.', - 'MTDSales' => 'MTD-salg', 'Make' => '', - 'Margin' => 'Margin', - 'Messages' => 'Meldinger', 'Milage' => '', 'Model' => '', - 'Modified' => 'Endret', - 'Modules' => 'Moduler', 'Name' => 'Navn', - 'Name1' => 'Navn1.', - 'Name2' => 'NAME2.', - 'Name3' => 'Navn3.', - 'Net' => 'Nett', - 'NewCustomers' => '', 'Notes' => 'Notater', - 'Number' => 'Nummer', - 'Office' => 'Kontor', - 'Other' => '', - 'Payment' => 'innbetaling', - 'PaymentTerm' => 'Betalingsperiode', - 'Permission' => 'Tillatelse', - 'Phone' => 'Telefonen', - 'Postal' => 'Postal.', - 'Price' => 'Pris', - 'Prices' => 'Prisene', - 'Private' => 'Privat', - 'Productgroup' => 'Produktgruppe', 'Profile' => 'Profil', - 'Profit' => '', - 'Purchase' => 'Kjøp', 'PurchasePrice' => '', - 'Quantity' => 'Mengde', - 'RecentInvoices' => 'Nylige fakturaer', - 'Region' => '', - 'Rep' => '', 'Responsible' => '', - 'Retention' => '', - 'Sales' => 'Salg', - 'Segment' => 'Segmentet', - 'Segments' => 'Segmenter', 'Start' => '', 'Status' => '', - 'Subtype' => 'Subtype.', - 'Support' => 'Brukerstøtte', - 'Tags' => 'Tags.', - 'Title' => '', 'To' => '', - 'Total' => '', - 'TotalPrice' => '', 'Type' => 'Type', - 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '', - 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', - 'Website' => 'Nettside', - 'Wire' => 'Metalltråd', - 'YTDSales' => 'YTD-salg', - 'Zip' => 'Glidelås', ]]; diff --git a/Theme/Backend/Lang/pl.lang.php b/Theme/Backend/Lang/pl.lang.php index a24eb99..e8a7e03 100755 --- a/Theme/Backend/Lang/pl.lang.php +++ b/Theme/Backend/Lang/pl.lang.php @@ -13,140 +13,32 @@ declare(strict_types=1); return ['FleetManagement' => [ - ':status1' => '', - ':status2' => '', - ':status3' => '', - ':status4' => '', - 'Accounting' => 'Rachunkowość', - 'Addition' => 'Dodatek', - 'Address' => 'Adres', - 'Addresses' => 'Adresy', - 'Africa' => '', - 'AllCustomers' => '', - 'America' => '', - 'Analyse' => '', - 'AreaManager' => 'Dyrektor Regionalny', - 'Articlegroup' => 'Artykuł', - 'Articles' => 'Artykuły', - 'Asia' => '', - 'Attribute' => '', 'Attributes' => '', - 'Balance' => 'Balansować', - 'BaseTime' => '', - 'Bills' => '', - 'Bonus' => 'Premia', - 'Business' => 'Biznes', - 'CIS' => '', - 'CLV' => 'CLV.', - 'Calendar' => 'Kalendarz', - 'City' => 'Miasto', - 'Client' => 'Klient', - 'ClientID' => '', - 'Clients' => 'Klienci.', - 'ComparisonTime' => '', - 'Contact' => 'Kontakt', 'Costs' => '', - 'Country' => 'Kraj', - 'Created' => 'Utworzony', - 'CreatedAt' => '', - 'CreditRating' => 'Rating kredytowy', - 'Creditcard' => 'Karta kredytowa', - 'Customers' => '', - 'DSO' => 'DSO.', 'Date' => 'Data', - 'Default' => 'Domyślna', - 'Delivery' => 'Dostawa', 'Description' => '', - 'Discount' => 'Zniżka', - 'DiscountBonus' => '', - 'DiscountP' => 'Zniżka %', - 'Documents' => 'Dokumenty', 'Driver' => '', 'Drivers' => '', - 'Due' => 'Z powodu', - 'Email' => 'E-mail', 'End' => '', - 'Europe' => '', - 'Fax' => 'Faks', 'Files' => 'Pliki', - 'Filter' => 'Filtr', - 'Freightage' => 'Frachtowanie', 'From' => '', - 'Group' => 'Grupa', 'History' => '', - 'ID' => 'ID', - 'Info' => 'Info', 'Inspections' => '', - 'Invoice' => 'Faktura', - 'Invoices' => 'Faktury', - 'IsDefault' => 'Jest domyślnie?', - 'Items' => '', - 'LastContact' => 'Ostatni kontakt', - 'LastOrder' => 'Ostatnie zamówienie', 'LeasingFee' => '', - 'Log' => 'Dziennik', - 'Logs' => 'Kłody', - 'LostCustomers' => '', - 'MRR' => 'MRR.', - 'MTDSales' => 'Sprzedaż MTD.', 'Make' => '', - 'Margin' => 'Margines', - 'Messages' => 'Wiadomości', 'Milage' => '', 'Model' => '', - 'Modified' => 'Modyfikowany', - 'Modules' => 'Moduły', 'Name' => 'Nazwa', - 'Name1' => 'Nazwa1.', - 'Name2' => 'Nazwa2.', - 'Name3' => 'Nazwa3.', - 'Net' => 'Internet', - 'NewCustomers' => '', 'Notes' => 'Notatki', - 'Number' => 'Numer', - 'Office' => 'Gabinet', - 'Other' => '', - 'Payment' => 'Zapłata', - 'PaymentTerm' => 'Termin płatności', - 'Permission' => 'Pozwolenie', - 'Phone' => 'Telefon', - 'Postal' => 'Pocztowy', - 'Price' => 'Cena £', - 'Prices' => 'Ceny', - 'Private' => 'Prywatny', - 'Productgroup' => 'Grupa produktów', 'Profile' => 'Profil', - 'Profit' => '', - 'Purchase' => 'Zakup', 'PurchasePrice' => '', - 'Quantity' => 'Ilość', - 'RecentInvoices' => 'Ostatnie faktury.', - 'Region' => '', - 'Rep' => '', 'Responsible' => '', - 'Retention' => '', - 'Sales' => 'Obroty', - 'Segment' => 'Człon', - 'Segments' => 'Segmenty', 'Start' => '', 'Status' => '', - 'Subtype' => 'Podtyp', - 'Support' => 'Wsparcie', - 'Tags' => 'Tagi.', - 'Title' => '', 'To' => '', - 'Total' => '', - 'TotalPrice' => '', 'Type' => 'Rodzaj', - 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '', - 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', - 'Website' => 'Stronie internetowej', - 'Wire' => 'Drut', - 'YTDSales' => 'Sprzedaż Ytd.', - 'Zip' => 'Zamek błyskawiczny', ]]; diff --git a/Theme/Backend/Lang/pt.lang.php b/Theme/Backend/Lang/pt.lang.php index a970f54..0bd5a85 100755 --- a/Theme/Backend/Lang/pt.lang.php +++ b/Theme/Backend/Lang/pt.lang.php @@ -13,140 +13,32 @@ declare(strict_types=1); return ['FleetManagement' => [ - ':status1' => '', - ':status2' => '', - ':status3' => '', - ':status4' => '', - 'Accounting' => 'Contabilidade', - 'Addition' => 'Adição', - 'Address' => 'Endereço', - 'Addresses' => 'Endereços', - 'Africa' => '', - 'AllCustomers' => '', - 'America' => '', - 'Analyse' => '', - 'AreaManager' => 'Gerente da área', - 'Articlegroup' => 'ArticleGroup', - 'Articles' => 'Artigos', - 'Asia' => '', - 'Attribute' => '', 'Attributes' => '', - 'Balance' => 'Equilíbrio', - 'BaseTime' => '', - 'Bills' => '', - 'Bonus' => 'Bônus', - 'Business' => 'O negócio', - 'CIS' => '', - 'CLV' => 'Clv.', - 'Calendar' => 'Calendário', - 'City' => 'Cidade', - 'Client' => 'Cliente', - 'ClientID' => '', - 'Clients' => 'Clientes', - 'ComparisonTime' => '', - 'Contact' => 'Contato', 'Costs' => '', - 'Country' => 'País', - 'Created' => 'Criado', - 'CreatedAt' => '', - 'CreditRating' => 'Rating de crédito', - 'Creditcard' => 'Cartão de crédito', - 'Customers' => '', - 'DSO' => 'Dso.', 'Date' => 'Encontro', - 'Default' => 'Padrão', - 'Delivery' => 'Entrega', 'Description' => '', - 'Discount' => 'Desconto', - 'DiscountBonus' => '', - 'DiscountP' => 'Desconto%', - 'Documents' => 'Documentos', 'Driver' => '', 'Drivers' => '', - 'Due' => 'Vencimento', - 'Email' => 'E-mail', 'End' => '', - 'Europe' => '', - 'Fax' => 'Fax', 'Files' => 'arquivos', - 'Filter' => 'Filtro', - 'Freightage' => 'Freightage', 'From' => '', - 'Group' => 'Grupo', 'History' => '', - 'ID' => 'identificação', - 'Info' => 'Info', 'Inspections' => '', - 'Invoice' => 'Fatura', - 'Invoices' => 'Faturas', - 'IsDefault' => 'É padrão?', - 'Items' => '', - 'LastContact' => 'Último contato.', - 'LastOrder' => 'Último pedido', 'LeasingFee' => '', - 'Log' => 'Registro', - 'Logs' => 'Histórico', - 'LostCustomers' => '', - 'MRR' => 'MRR.', - 'MTDSales' => 'Sales Mtd.', 'Make' => '', - 'Margin' => 'Margem', - 'Messages' => 'Mensagens', 'Milage' => '', 'Model' => '', - 'Modified' => 'Modificado', - 'Modules' => 'Módulos.', 'Name' => 'Nome', - 'Name1' => 'Nome1.', - 'Name2' => 'Nome2.', - 'Name3' => 'Nome3.', - 'Net' => 'Internet', - 'NewCustomers' => '', 'Notes' => 'Notas', - 'Number' => 'Número', - 'Office' => 'Escritório', - 'Other' => '', - 'Payment' => 'Pagamento', - 'PaymentTerm' => 'Termo de pagamento', - 'Permission' => 'Permissão', - 'Phone' => 'Telefone', - 'Postal' => 'Postal', - 'Price' => 'Preço', - 'Prices' => 'Preços', - 'Private' => 'Privado', - 'Productgroup' => 'Grupo de produtos', 'Profile' => 'Perfil', - 'Profit' => '', - 'Purchase' => 'Comprar', 'PurchasePrice' => '', - 'Quantity' => 'Quantidade', - 'RecentInvoices' => 'Faturas recentes', - 'Region' => '', - 'Rep' => '', 'Responsible' => '', - 'Retention' => '', - 'Sales' => 'Vendas', - 'Segment' => 'Segmento', - 'Segments' => 'Segmentos', 'Start' => '', 'Status' => '', - 'Subtype' => 'Subtipo', - 'Support' => 'Apoio, suporte', - 'Tags' => 'Tag', - 'Title' => '', 'To' => '', - 'Total' => '', - 'TotalPrice' => '', 'Type' => 'Modelo', - 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '', - 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', - 'Website' => 'Local na rede Internet', - 'Wire' => 'Fio', - 'YTDSales' => 'Vendas do ano', - 'Zip' => 'Fecho eclair', ]]; diff --git a/Theme/Backend/Lang/ru.lang.php b/Theme/Backend/Lang/ru.lang.php index 5d82237..4ab150a 100755 --- a/Theme/Backend/Lang/ru.lang.php +++ b/Theme/Backend/Lang/ru.lang.php @@ -13,140 +13,32 @@ declare(strict_types=1); return ['FleetManagement' => [ - ':status1' => '', - ':status2' => '', - ':status3' => '', - ':status4' => '', - 'Accounting' => 'Учет', - 'Addition' => 'Добавление', - 'Address' => 'Адрес', - 'Addresses' => 'Адреса', - 'Africa' => '', - 'AllCustomers' => '', - 'America' => '', - 'Analyse' => '', - 'AreaManager' => 'Региональный менеджер', - 'Articlegroup' => 'Staregroup.', - 'Articles' => 'Статьи', - 'Asia' => '', - 'Attribute' => '', 'Attributes' => '', - 'Balance' => 'Остаток средств', - 'BaseTime' => '', - 'Bills' => '', - 'Bonus' => 'Бонус', - 'Business' => 'Бизнес', - 'CIS' => '', - 'CLV' => 'Каблук', - 'Calendar' => 'Календарь', - 'City' => 'Город', - 'Client' => 'Клиент', - 'ClientID' => '', - 'Clients' => 'Клиенты', - 'ComparisonTime' => '', - 'Contact' => 'Контакт', 'Costs' => '', - 'Country' => 'Страна', - 'Created' => 'Созданный', - 'CreatedAt' => '', - 'CreditRating' => 'Кредитный рейтинг', - 'Creditcard' => 'Кредитная карта', - 'Customers' => '', - 'DSO' => 'DSO', 'Date' => 'Дата', - 'Default' => 'Дефолт', - 'Delivery' => 'Доставка', 'Description' => '', - 'Discount' => 'Скидка', - 'DiscountBonus' => '', - 'DiscountP' => 'Скидка %', - 'Documents' => 'Документы', 'Driver' => '', 'Drivers' => '', - 'Due' => 'Должное', - 'Email' => 'Электронное письмо', 'End' => '', - 'Europe' => '', - 'Fax' => 'Факс', 'Files' => 'Файлы', - 'Filter' => 'Фильтр', - 'Freightage' => 'Фрахты', 'From' => '', - 'Group' => 'Группа', 'History' => '', - 'ID' => 'Я БЫ', - 'Info' => 'Информация', 'Inspections' => '', - 'Invoice' => 'Счет', - 'Invoices' => 'Счета', - 'IsDefault' => 'По умолчанию?', - 'Items' => '', - 'LastContact' => 'Последний контакт', - 'LastOrder' => 'Последний заказ', 'LeasingFee' => '', - 'Log' => 'Бревно', - 'Logs' => 'Журналы', - 'LostCustomers' => '', - 'MRR' => 'MRR', - 'MTDSales' => 'MTD Sales.', 'Make' => '', - 'Margin' => 'Допуск', - 'Messages' => 'Сообщения', 'Milage' => '', 'Model' => '', - 'Modified' => 'Модифицированный', - 'Modules' => 'Модули', 'Name' => 'Имя', - 'Name1' => 'Имя1.', - 'Name2' => 'Имя2.', - 'Name3' => 'Имя3.', - 'Net' => 'Сеть', - 'NewCustomers' => '', 'Notes' => 'Примечания', - 'Number' => 'Число', - 'Office' => 'Офис', - 'Other' => '', - 'Payment' => 'Оплата', - 'PaymentTerm' => 'Условия оплаты', - 'Permission' => 'Разрешение', - 'Phone' => 'Телефон', - 'Postal' => 'Почтовый', - 'Price' => 'Цена', - 'Prices' => 'Цены', - 'Private' => 'Частный', - 'Productgroup' => 'Группа товаров', 'Profile' => 'Профиль', - 'Profit' => '', - 'Purchase' => 'Покупка', 'PurchasePrice' => '', - 'Quantity' => 'Количество', - 'RecentInvoices' => 'Недавние счета', - 'Region' => '', - 'Rep' => '', 'Responsible' => '', - 'Retention' => '', - 'Sales' => 'Продажи', - 'Segment' => 'Сегмент', - 'Segments' => 'Сегменты', 'Start' => '', 'Status' => '', - 'Subtype' => 'Подтип', - 'Support' => 'Служба поддержки', - 'Tags' => 'Теги', - 'Title' => '', 'To' => '', - 'Total' => '', - 'TotalPrice' => '', 'Type' => 'Тип', - 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '', - 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', - 'Website' => 'Веб-сайт', - 'Wire' => 'Проволока', - 'YTDSales' => 'YTD Sales.', - 'Zip' => 'Zip.', ]]; diff --git a/Theme/Backend/Lang/sv.lang.php b/Theme/Backend/Lang/sv.lang.php index 3d07767..69b4855 100755 --- a/Theme/Backend/Lang/sv.lang.php +++ b/Theme/Backend/Lang/sv.lang.php @@ -13,140 +13,32 @@ declare(strict_types=1); return ['FleetManagement' => [ - ':status1' => '', - ':status2' => '', - ':status3' => '', - ':status4' => '', - 'Accounting' => 'Bokföring', - 'Addition' => 'Tillägg', - 'Address' => 'Adress', - 'Addresses' => 'Adresser', - 'Africa' => '', - 'AllCustomers' => '', - 'America' => '', - 'Analyse' => '', - 'AreaManager' => 'Områdeschef', - 'Articlegroup' => 'Artikelgrupp', - 'Articles' => 'Artiklar', - 'Asia' => '', - 'Attribute' => '', 'Attributes' => '', - 'Balance' => 'Balans', - 'BaseTime' => '', - 'Bills' => '', - 'Bonus' => 'Bonus', - 'Business' => 'Företag', - 'CIS' => '', - 'CLV' => 'Clv', - 'Calendar' => 'Kalender', - 'City' => 'Stad', - 'Client' => 'Klient', - 'ClientID' => '', - 'Clients' => 'Klienter', - 'ComparisonTime' => '', - 'Contact' => 'Kontakt', 'Costs' => '', - 'Country' => 'Land', - 'Created' => 'Skapad', - 'CreatedAt' => '', - 'CreditRating' => 'Kreditvärdighet', - 'Creditcard' => 'Kreditkort', - 'Customers' => '', - 'DSO' => 'Do', 'Date' => 'Datum', - 'Default' => 'Standard', - 'Delivery' => 'Leverans', 'Description' => '', - 'Discount' => 'Rabatt', - 'DiscountBonus' => '', - 'DiscountP' => 'Rabatt%', - 'Documents' => 'Dokument', 'Driver' => '', 'Drivers' => '', - 'Due' => 'På grund av', - 'Email' => 'E-post', 'End' => '', - 'Europe' => '', - 'Fax' => 'Fax', 'Files' => 'Filer', - 'Filter' => 'Filtrera', - 'Freightage' => 'Frakt', 'From' => '', - 'Group' => 'Grupp', 'History' => '', - 'ID' => 'Id', - 'Info' => 'Info', 'Inspections' => '', - 'Invoice' => 'Faktura', - 'Invoices' => 'Fakturor', - 'IsDefault' => 'Är standard?', - 'Items' => '', - 'LastContact' => 'Senaste kontakten', - 'LastOrder' => 'Sista beställningen', 'LeasingFee' => '', - 'Log' => 'Logga', - 'Logs' => 'Loggar', - 'LostCustomers' => '', - 'MRR' => 'Mrr', - 'MTDSales' => 'MTD-försäljning', 'Make' => '', - 'Margin' => 'Marginal', - 'Messages' => 'Budskap', 'Milage' => '', 'Model' => '', - 'Modified' => 'Ändrad', - 'Modules' => 'Moduler', 'Name' => 'namn', - 'Name1' => 'Namn1', - 'Name2' => 'Namn2', - 'Name3' => 'Namn3', - 'Net' => 'Netto', - 'NewCustomers' => '', 'Notes' => 'Anteckningar', - 'Number' => 'siffra', - 'Office' => 'Kontor', - 'Other' => '', - 'Payment' => 'Betalning', - 'PaymentTerm' => 'Betalningsvillkor', - 'Permission' => 'Tillstånd', - 'Phone' => 'Telefon', - 'Postal' => 'Post', - 'Price' => 'Pris', - 'Prices' => 'Priser', - 'Private' => 'Privat', - 'Productgroup' => 'Produktgrupp', 'Profile' => 'Profil', - 'Profit' => '', - 'Purchase' => 'Inköp', 'PurchasePrice' => '', - 'Quantity' => 'Kvantitet', - 'RecentInvoices' => 'Nya fakturor', - 'Region' => '', - 'Rep' => '', 'Responsible' => '', - 'Retention' => '', - 'Sales' => 'Försäljning', - 'Segment' => 'Segmentet', - 'Segments' => 'Segment', 'Start' => '', 'Status' => '', - 'Subtype' => 'Subtyp', - 'Support' => 'Stöd', - 'Tags' => 'Tagg', - 'Title' => '', 'To' => '', - 'Total' => '', - 'TotalPrice' => '', 'Type' => 'Typ', - 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '', - 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', - 'Website' => 'Hemsida', - 'Wire' => 'Tråd', - 'YTDSales' => 'YTD-försäljning', - 'Zip' => 'Blixtlås', ]]; diff --git a/Theme/Backend/Lang/th.lang.php b/Theme/Backend/Lang/th.lang.php index 6b6a16e..4c80620 100755 --- a/Theme/Backend/Lang/th.lang.php +++ b/Theme/Backend/Lang/th.lang.php @@ -13,140 +13,32 @@ declare(strict_types=1); return ['FleetManagement' => [ - ':status1' => '', - ':status2' => '', - ':status3' => '', - ':status4' => '', - 'Accounting' => 'การบัญชี', - 'Addition' => 'ส่วนที่เพิ่มเข้าไป', - 'Address' => 'ที่อยู่', - 'Addresses' => 'ที่อยู่', - 'Africa' => '', - 'AllCustomers' => '', - 'America' => '', - 'Analyse' => '', - 'AreaManager' => 'ผู้จัดการพื้นที่', - 'Articlegroup' => 'ArticleGroup', - 'Articles' => 'บทความ', - 'Asia' => '', - 'Attribute' => '', 'Attributes' => '', - 'Balance' => 'สมดุล', - 'BaseTime' => '', - 'Bills' => '', - 'Bonus' => 'โบนัส', - 'Business' => 'ธุรกิจ', - 'CIS' => '', - 'CLV' => 'clv', - 'Calendar' => 'ปฏิทิน', - 'City' => 'เมือง', - 'Client' => 'ลูกค้า', - 'ClientID' => '', - 'Clients' => 'ลูกค้า', - 'ComparisonTime' => '', - 'Contact' => 'ติดต่อ', 'Costs' => '', - 'Country' => 'ประเทศ', - 'Created' => 'สร้าง', - 'CreatedAt' => '', - 'CreditRating' => 'การจัดอันดับเครดิต', - 'Creditcard' => 'บัตรเครดิต', - 'Customers' => '', - 'DSO' => 'DSO', 'Date' => 'วันที่', - 'Default' => 'ค่าเริ่มต้น', - 'Delivery' => 'จัดส่ง', 'Description' => '', - 'Discount' => 'การลดราคา', - 'DiscountBonus' => '', - 'DiscountP' => 'การลดราคา %', - 'Documents' => 'เอกสาร', 'Driver' => '', 'Drivers' => '', - 'Due' => 'เนื่องจาก', - 'Email' => 'อีเมล', 'End' => '', - 'Europe' => '', - 'Fax' => 'แฟกซ์', 'Files' => 'ไฟล์', - 'Filter' => 'กรอง', - 'Freightage' => 'การขนส่งสินค้า', 'From' => '', - 'Group' => 'กลุ่ม', 'History' => '', - 'ID' => 'id', - 'Info' => 'ข้อมูล', 'Inspections' => '', - 'Invoice' => 'ใบแจ้งหนี้', - 'Invoices' => 'ใบแจ้งหนี้', - 'IsDefault' => 'เป็นค่าเริ่มต้น?', - 'Items' => '', - 'LastContact' => 'ติดต่อล่าสุด', - 'LastOrder' => 'คำสั่งสุดท้าย', 'LeasingFee' => '', - 'Log' => 'บันทึก', - 'Logs' => 'การบันทึก', - 'LostCustomers' => '', - 'MRR' => 'MRR', - 'MTDSales' => 'ขาย MTD', 'Make' => '', - 'Margin' => 'ระยะขอบ', - 'Messages' => 'ข้อความ', 'Milage' => '', 'Model' => '', - 'Modified' => 'ที่ได้รับการแก้ไข', - 'Modules' => 'โมดูล', 'Name' => 'ชื่อ', - 'Name1' => 'ชื่อ 1', - 'Name2' => 'ชื่อ 2', - 'Name3' => 'ชื่อ 3', - 'Net' => 'สุทธิ', - 'NewCustomers' => '', 'Notes' => 'หมายเหตุ', - 'Number' => 'ตัวเลข', - 'Office' => 'สำนักงาน', - 'Other' => '', - 'Payment' => 'การชำระเงิน', - 'PaymentTerm' => 'เงื่อนไขการชำระเงิน', - 'Permission' => 'การอนุญาต', - 'Phone' => 'โทรศัพท์', - 'Postal' => 'เกี่ยวกับการไปรษณีย์', - 'Price' => 'ราคา', - 'Prices' => 'ราคา', - 'Private' => 'ส่วนตัว', - 'Productgroup' => 'กลุ่มผลิตภัณฑ์', 'Profile' => 'ประวัติโดยย่อ', - 'Profit' => '', - 'Purchase' => 'ซื้อ', 'PurchasePrice' => '', - 'Quantity' => 'ปริมาณ', - 'RecentInvoices' => 'ใบแจ้งหนี้ล่าสุด', - 'Region' => '', - 'Rep' => '', 'Responsible' => '', - 'Retention' => '', - 'Sales' => 'ฝ่ายขาย', - 'Segment' => 'ส่วน', - 'Segments' => 'กลุ่ม', 'Start' => '', 'Status' => '', - 'Subtype' => 'ประเภทย่อย', - 'Support' => 'สนับสนุน', - 'Tags' => 'แท็ก', - 'Title' => '', 'To' => '', - 'Total' => '', - 'TotalPrice' => '', 'Type' => 'พิมพ์', - 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '', - 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', - 'Website' => 'เว็บไซต์', - 'Wire' => 'ลวด', - 'YTDSales' => 'ขาย YTD', - 'Zip' => 'ซิป', ]]; diff --git a/Theme/Backend/Lang/tr.lang.php b/Theme/Backend/Lang/tr.lang.php index 52266f9..2522938 100755 --- a/Theme/Backend/Lang/tr.lang.php +++ b/Theme/Backend/Lang/tr.lang.php @@ -13,140 +13,32 @@ declare(strict_types=1); return ['FleetManagement' => [ - ':status1' => '', - ':status2' => '', - ':status3' => '', - ':status4' => '', - 'Accounting' => 'Muhasebe', - 'Addition' => 'İlave', - 'Address' => 'Adres', - 'Addresses' => 'Adresler', - 'Africa' => '', - 'AllCustomers' => '', - 'America' => '', - 'Analyse' => '', - 'AreaManager' => 'Alan müdürü', - 'Articlegroup' => 'Makale grubu', - 'Articles' => 'Nesne', - 'Asia' => '', - 'Attribute' => '', 'Attributes' => '', - 'Balance' => 'Denge', - 'BaseTime' => '', - 'Bills' => '', - 'Bonus' => 'Bonus', - 'Business' => 'İşletme', - 'CIS' => '', - 'CLV' => 'Clv', - 'Calendar' => 'Takvim', - 'City' => 'Şehir', - 'Client' => 'Müşteri', - 'ClientID' => '', - 'Clients' => 'Müşteriler', - 'ComparisonTime' => '', - 'Contact' => 'Temas', 'Costs' => '', - 'Country' => 'Ülke', - 'Created' => 'Yaratılmış', - 'CreatedAt' => '', - 'CreditRating' => 'Kredi notu', - 'Creditcard' => 'Kredi kartı', - 'Customers' => '', - 'DSO' => 'Dso', 'Date' => 'Tarih', - 'Default' => 'Varsayılan', - 'Delivery' => 'Teslimat', 'Description' => '', - 'Discount' => 'İndirim', - 'DiscountBonus' => '', - 'DiscountP' => 'İndirim %', - 'Documents' => 'Belgeler', 'Driver' => '', 'Drivers' => '', - 'Due' => 'Vadesi dolmuş', - 'Email' => 'E-posta', 'End' => '', - 'Europe' => '', - 'Fax' => 'Faks', 'Files' => 'Dosyalar', - 'Filter' => 'Filtrelemek', - 'Freightage' => 'Yük', 'From' => '', - 'Group' => 'Grup', 'History' => '', - 'ID' => 'İD', - 'Info' => 'Bilgi', 'Inspections' => '', - 'Invoice' => 'Fatura', - 'Invoices' => 'Faturalar', - 'IsDefault' => 'Varsayılan mı?', - 'Items' => '', - 'LastContact' => 'Son iletişim', - 'LastOrder' => 'Son sipariş', 'LeasingFee' => '', - 'Log' => 'Kayıt', - 'Logs' => 'Kütükler', - 'LostCustomers' => '', - 'MRR' => 'Mrr', - 'MTDSales' => 'Mtd satışları', 'Make' => '', - 'Margin' => 'Marj', - 'Messages' => 'Mesaj', 'Milage' => '', 'Model' => '', - 'Modified' => 'Değiştirilmiş', - 'Modules' => 'Modüller', 'Name' => 'İsim', - 'Name1' => 'İsim1', - 'Name2' => 'İsim2', - 'Name3' => 'İsim3', - 'Net' => 'Ağ', - 'NewCustomers' => '', 'Notes' => 'Notalar', - 'Number' => 'Numara', - 'Office' => 'Ofis', - 'Other' => '', - 'Payment' => 'Ödeme', - 'PaymentTerm' => 'Ödeme koşulu', - 'Permission' => 'İzin', - 'Phone' => 'Telefon', - 'Postal' => 'Posta', - 'Price' => 'Fiyat', - 'Prices' => 'Fiyat:% s', - 'Private' => 'Özel', - 'Productgroup' => 'Ürün grubu', 'Profile' => 'Profil', - 'Profit' => '', - 'Purchase' => 'Satın alma', 'PurchasePrice' => '', - 'Quantity' => 'Miktar', - 'RecentInvoices' => 'Son Faturalar', - 'Region' => '', - 'Rep' => '', 'Responsible' => '', - 'Retention' => '', - 'Sales' => 'Satış', - 'Segment' => 'Segment', - 'Segments' => 'Segmentler', 'Start' => '', 'Status' => '', - 'Subtype' => 'Alt tip', - 'Support' => 'Destek', - 'Tags' => 'Etiketler', - 'Title' => '', 'To' => '', - 'Total' => '', - 'TotalPrice' => '', 'Type' => 'Tip', - 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '', - 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', - 'Website' => 'İnternet sitesi', - 'Wire' => 'Tel', - 'YTDSales' => 'YTD satışları', - 'Zip' => 'Zip', ]]; diff --git a/Theme/Backend/Lang/uk.lang.php b/Theme/Backend/Lang/uk.lang.php index a9e5aa5..9ca4241 100755 --- a/Theme/Backend/Lang/uk.lang.php +++ b/Theme/Backend/Lang/uk.lang.php @@ -13,140 +13,32 @@ declare(strict_types=1); return ['FleetManagement' => [ - ':status1' => '', - ':status2' => '', - ':status3' => '', - ':status4' => '', - 'Accounting' => 'Бухгалтерський облік', - 'Addition' => 'Додавання', - 'Address' => 'Адреса', - 'Addresses' => 'Адреси', - 'Africa' => '', - 'AllCustomers' => '', - 'America' => '', - 'Analyse' => '', - 'AreaManager' => 'Менеджер області', - 'Articlegroup' => 'Статтюгрупи', - 'Articles' => 'Статті', - 'Asia' => '', - 'Attribute' => '', 'Attributes' => '', - 'Balance' => 'Баланс', - 'BaseTime' => '', - 'Bills' => '', - 'Bonus' => 'Бонус', - 'Business' => 'Бізнес', - 'CIS' => '', - 'CLV' => 'Клоп', - 'Calendar' => 'Календар', - 'City' => 'Місто', - 'Client' => 'Клієнт', - 'ClientID' => '', - 'Clients' => 'Клієнти', - 'ComparisonTime' => '', - 'Contact' => 'Контакт', 'Costs' => '', - 'Country' => 'Країна', - 'Created' => 'Створений', - 'CreatedAt' => '', - 'CreditRating' => 'Кредитний рейтинг', - 'Creditcard' => 'Кредитна карта', - 'Customers' => '', - 'DSO' => 'Дз', 'Date' => 'Дата', - 'Default' => 'За замовчуванням', - 'Delivery' => 'Доставка', 'Description' => '', - 'Discount' => 'Знижка', - 'DiscountBonus' => '', - 'DiscountP' => 'Знижка%', - 'Documents' => 'Документи', 'Driver' => '', 'Drivers' => '', - 'Due' => 'Заборгованість', - 'Email' => 'Електронна пошта', 'End' => '', - 'Europe' => '', - 'Fax' => 'Факс', 'Files' => 'Файли', - 'Filter' => 'Фільтрувати', - 'Freightage' => 'Фрахт', 'From' => '', - 'Group' => 'Група', 'History' => '', - 'ID' => 'Ідентифікатор', - 'Info' => 'Інформація', 'Inspections' => '', - 'Invoice' => 'Рахунок-фактура', - 'Invoices' => 'Рахунки-фактури', - 'IsDefault' => 'Чи є за замовчуванням?', - 'Items' => '', - 'LastContact' => 'Останній контакт', - 'LastOrder' => 'Остання замовлення', 'LeasingFee' => '', - 'Log' => 'Журнал', - 'Logs' => 'Журнали', - 'LostCustomers' => '', - 'MRR' => 'Пан', - 'MTDSales' => 'Продажі MTD', 'Make' => '', - 'Margin' => 'Маржа', - 'Messages' => 'Повідомлень', 'Milage' => '', 'Model' => '', - 'Modified' => 'Модифікований', - 'Modules' => 'Модулі', 'Name' => 'Назва', - 'Name1' => 'Name1', - 'Name2' => 'Name2', - 'Name3' => 'Name3', - 'Net' => 'Сітка', - 'NewCustomers' => '', 'Notes' => 'Ноти', - 'Number' => 'Число', - 'Office' => 'Офіс', - 'Other' => '', - 'Payment' => 'Платіж', - 'PaymentTerm' => 'Термін оплати', - 'Permission' => 'Дозвіл', - 'Phone' => 'Телефон', - 'Postal' => 'Поштовий', - 'Price' => 'Ціна', - 'Prices' => 'Ціни', - 'Private' => 'Приватний', - 'Productgroup' => 'Група продуктів', 'Profile' => 'Профіль', - 'Profit' => '', - 'Purchase' => 'Придбання', 'PurchasePrice' => '', - 'Quantity' => 'Кількість', - 'RecentInvoices' => 'Останні рахунки-фактури', - 'Region' => '', - 'Rep' => '', 'Responsible' => '', - 'Retention' => '', - 'Sales' => 'Продаж', - 'Segment' => 'Сегмент', - 'Segments' => 'Сегменти', 'Start' => '', 'Status' => '', - 'Subtype' => 'Підтип', - 'Support' => 'Підтримка', - 'Tags' => 'Теги', - 'Title' => '', 'To' => '', - 'Total' => '', - 'TotalPrice' => '', 'Type' => 'Тип', - 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '', - 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', - 'Website' => 'Веб-сайт', - 'Wire' => 'Дріт', - 'YTDSales' => 'Ytd продажі', - 'Zip' => 'Блиск', ]]; diff --git a/Theme/Backend/Lang/zh.lang.php b/Theme/Backend/Lang/zh.lang.php index 1c5ef79..6935c38 100755 --- a/Theme/Backend/Lang/zh.lang.php +++ b/Theme/Backend/Lang/zh.lang.php @@ -13,140 +13,32 @@ declare(strict_types=1); return ['FleetManagement' => [ - ':status1' => '', - ':status2' => '', - ':status3' => '', - ':status4' => '', - 'Accounting' => '会计', - 'Addition' => '添加', - 'Address' => '地址', - 'Addresses' => '地址', - 'Africa' => '', - 'AllCustomers' => '', - 'America' => '', - 'Analyse' => '', - 'AreaManager' => '区域经理', - 'Articlegroup' => '商品组', - 'Articles' => '文章', - 'Asia' => '', - 'Attribute' => '', 'Attributes' => '', - 'Balance' => '平衡', - 'BaseTime' => '', - 'Bills' => '', - 'Bonus' => '奖金', - 'Business' => '商业', - 'CIS' => '', - 'CLV' => 'CLV.', - 'Calendar' => '日历', - 'City' => '城市', - 'Client' => '客户', - 'ClientID' => '', - 'Clients' => '客户', - 'ComparisonTime' => '', - 'Contact' => '接触', 'Costs' => '', - 'Country' => '国家', - 'Created' => '创造了', - 'CreatedAt' => '', - 'CreditRating' => '信用评级', - 'Creditcard' => '信用卡', - 'Customers' => '', - 'DSO' => 'DSO', 'Date' => '日期', - 'Default' => '默认', - 'Delivery' => '交货', 'Description' => '', - 'Discount' => '折扣', - 'DiscountBonus' => '', - 'DiscountP' => '折扣 %', - 'Documents' => '文件', 'Driver' => '', 'Drivers' => '', - 'Due' => '到期的', - 'Email' => '电子邮件', 'End' => '', - 'Europe' => '', - 'Fax' => '传真', 'Files' => '文件', - 'Filter' => '筛选', - 'Freightage' => 'FRIGUTAGE.', 'From' => '', - 'Group' => '团体', 'History' => '', - 'ID' => 'ID', - 'Info' => '信息', 'Inspections' => '', - 'Invoice' => '发票', - 'Invoices' => '发票', - 'IsDefault' => '默认为默认情况下?', - 'Items' => '', - 'LastContact' => '最后联系人', - 'LastOrder' => '最后的订单', 'LeasingFee' => '', - 'Log' => '日志', - 'Logs' => '日志', - 'LostCustomers' => '', - 'MRR' => 'MRR.', - 'MTDSales' => 'MTD销售', 'Make' => '', - 'Margin' => '利润', - 'Messages' => '消息', 'Milage' => '', 'Model' => '', - 'Modified' => '修改的', - 'Modules' => '模块', 'Name' => '名称', - 'Name1' => '名称1', - 'Name2' => '名称2.', - 'Name3' => '名称3.', - 'Net' => '网', - 'NewCustomers' => '', 'Notes' => '笔记', - 'Number' => '数字', - 'Office' => '办公室', - 'Other' => '', - 'Payment' => '支付', - 'PaymentTerm' => '付款期限', - 'Permission' => '允许', - 'Phone' => '电话', - 'Postal' => '邮政', - 'Price' => '价格', - 'Prices' => '价格', - 'Private' => '私人的', - 'Productgroup' => '产品组', 'Profile' => '轮廓', - 'Profit' => '', - 'Purchase' => '购买', 'PurchasePrice' => '', - 'Quantity' => '数量', - 'RecentInvoices' => '最近的发票', - 'Region' => '', - 'Rep' => '', 'Responsible' => '', - 'Retention' => '', - 'Sales' => '销售量', - 'Segment' => '分割', - 'Segments' => '段', 'Start' => '', 'Status' => '', - 'Subtype' => '亚型', - 'Support' => '支持', - 'Tags' => '标签', - 'Title' => '', 'To' => '', - 'Total' => '', - 'TotalPrice' => '', 'Type' => '类型', - 'UnitPrice' => '', 'Upcoming' => '', 'VIN' => '', - 'Value' => '', - 'Vehicle' => '', 'Vehicles' => '', 'Vin' => '', - 'Website' => '网站', - 'Wire' => '金属丝', - 'YTDSales' => 'ytd销售', - 'Zip' => '压缩', ]];