diff --git a/packages/Webkul/Admin/src/DataGrids/CustomerDataGrid.php b/packages/Webkul/Admin/src/DataGrids/CustomerDataGrid.php index 44873e557..6ffaaa713 100755 --- a/packages/Webkul/Admin/src/DataGrids/CustomerDataGrid.php +++ b/packages/Webkul/Admin/src/DataGrids/CustomerDataGrid.php @@ -115,9 +115,9 @@ class CustomerDataGrid extends DataGrid 'closure' => true, 'wrapper' => function ($row) { if ($row->status == 1) { - return 'Activated'; + return ''. trans('admin::app.customers.customers.active') .''; } else { - return 'Blocked'; + return ''. trans('admin::app.customers.customers.inactive') .''; } } ]); diff --git a/packages/Webkul/Admin/src/DataGrids/OrderDataGrid.php b/packages/Webkul/Admin/src/DataGrids/OrderDataGrid.php index 3e8255453..ac834d913 100755 --- a/packages/Webkul/Admin/src/DataGrids/OrderDataGrid.php +++ b/packages/Webkul/Admin/src/DataGrids/OrderDataGrid.php @@ -97,19 +97,19 @@ class OrderDataGrid extends DataGrid 'filterable' => true, 'wrapper' => function ($value) { if ($value->status == 'processing') - return 'Processing'; + return ''. trans('admin::app.sales.orders.order-status-processing') .''; else if ($value->status == 'completed') - return 'Completed'; + return ''. trans('admin::app.sales.orders.order-status-completed') .''; else if ($value->status == "canceled") - return 'Canceled'; + return ''. trans('admin::app.sales.orders.order-status-canceled') .''; else if ($value->status == "closed") - return 'Closed'; + return ''. trans('admin::app.sales.orders.order-status-closed') .''; else if ($value->status == "pending") - return 'Pending'; + return ''. trans('admin::app.sales.orders.order-status-pending') .''; else if ($value->status == "pending_payment") - return 'Pending Payment'; + return ''. trans('admin::app.sales.orders.order-status-pending-payment') .''; else if ($value->status == "fraud") - return 'Fraud'; + return ''. trans('admin::app.sales.orders.order-status-fraud') . ''; } ]); diff --git a/packages/Webkul/Admin/src/Resources/lang/en/app.php b/packages/Webkul/Admin/src/Resources/lang/en/app.php index 5097621a5..e9a4a18d9 100755 --- a/packages/Webkul/Admin/src/Resources/lang/en/app.php +++ b/packages/Webkul/Admin/src/Resources/lang/en/app.php @@ -315,6 +315,13 @@ return [ 'order-info' => 'Order Information', 'order-date' => 'Order Date', 'order-status' => 'Order Status', + 'order-status-canceled' => 'Canceled', + 'order-status-closed' => 'Closed', + 'order-status-fraud' => 'Fraud', + 'order-status-pending' => 'Pending', + 'order-status-pending-payment' => 'Pending Payment', + 'order-status-processing' => 'Processing', + 'order-status-success' => 'Completed', 'channel' => 'Channel', 'customer-name' => 'Customer Name', 'email' => 'Email', diff --git a/packages/Webkul/Admin/src/Resources/lang/nl/app.php b/packages/Webkul/Admin/src/Resources/lang/nl/app.php new file mode 100644 index 000000000..8bf18e59b --- /dev/null +++ b/packages/Webkul/Admin/src/Resources/lang/nl/app.php @@ -0,0 +1,1297 @@ + 'Opslaan', + 'create' => 'Creëren', + 'update' => 'Bijwerken', + 'delete' => 'Verwijder', + 'failed' => 'Mislukt', + 'store' => 'Winkel', + 'image' => 'Afbeelding', + 'no result' => 'Geen resultaat', + 'product' => 'Product', + 'attribute' => 'Attribuut', + 'actions' => 'Acties', + 'id' => 'ID', + 'action' => 'Actie', + 'yes' => 'Ja', + 'no' => 'Nee', + 'true' => 'Waar', + 'false' => 'Niet waar', + 'apply' => 'Toepassen', + 'action' => 'Actie', + 'label' => 'Label', + 'name' => 'Naam', + 'title' => 'Titel', + 'code' => 'Code', + 'type' => 'Type', + 'required' => 'Verplicht', + 'unique' => 'Uniek', + 'locale-based' => 'Lokaal gebaseerd', + 'channel-based' => 'Kanaal gebaseerd', + 'status' => 'Status', + 'select-option' => 'Selecteer een optie', + 'category' => 'Categorie', + + 'common' => [ + 'no-result-found' => 'We konden geen gegevens vinden.', + 'country' => 'Land', + 'state' => 'Staat/Provincie', + 'true' => 'True', + 'false' => 'False' + ], + + 'layouts' => [ + 'my-account' => 'Mijn Profiel', + 'logout' => 'Afmelden', + 'visit-shop' => 'Winkel Bezoeken', + 'dashboard' => 'Dashboard', + 'sales' => 'Verkopen', + 'orders' => 'Bestellingen', + 'shipments' => 'Verzendingen', + 'invoices' => 'Facturen', + 'refunds' => 'Terugbetalingen', + 'catalog' => 'Catalogus', + 'products' => 'Producten', + 'categories' => 'Categorieën', + 'attributes' => 'Attributen', + 'attribute-families' => 'Attribute Families', + 'customers' => 'Klanten', + 'groups' => 'Groepen', + 'reviews' => 'Reviews', + 'newsletter-subscriptions' => 'Nieuwsbrief', + 'configure' => 'Configuratie', + 'settings' => 'Instellingen', + 'locales' => 'Landinstellingen', + 'currencies' => 'Valuta instellingen', + 'exchange-rates' => 'Wisselkoers', + 'inventory-sources' => 'Voorraadbronnen', + 'channels' => 'Kanalen', + 'users' => 'Gebruikers', + 'roles' => 'Rechten', + 'sliders' => 'Sliders', + 'taxes' => 'BTW', + 'tax-categories' => 'BTW-groepen', + 'tax-rates' => 'BTW-tarieven', + 'promotions' => 'Promoties', + 'discount' => 'Korting', + 'cms' => 'CMS' + ], + + 'acl' => [ + 'dashboard' => 'Dashboard', + 'sales' => 'Verkopen', + 'orders' => 'Bestellingen', + 'shipments' => 'Verzendingen', + 'invoices' => 'Facturen', + 'catalog' => 'Catalogus', + 'products' => 'Producten', + 'categories' => 'Categorieën', + 'attributes' => 'Attributes', + 'attribute-families' => 'Attribute Families', + 'customers' => 'Klanten', + 'groups' => 'Groepen', + 'reviews' => 'Reviews', + 'newsletter-subscriptions' => 'Newsletter Subscriptions', + 'configure' => 'Configureren', + 'settings' => 'Instellingen', + 'locales' => 'Landinstellingen', + 'currencies' => 'Currencies', + 'exchange-rates' => 'Exchange Rates', + 'inventory-sources' => 'Inventory Sources', + 'channels' => 'Kanalen', + 'users' => 'Gebruikers', + 'roles' => 'Rechten', + 'sliders' => 'Sliders', + 'taxes' => 'Belastingen', + 'tax-categories' => 'Belasting categorieën', + 'tax-rates' => 'BTW-tarieven', + 'edit' => 'Edit', + 'create' => 'Add', + 'delete' => 'Verwijder', + 'promotions' => 'Promoties', + 'cart-rules' => 'Cart Rules', + 'catalog-rules' => 'Catalog Rules', + ], + + 'dashboard' => [ + 'title' => 'Dashboard', + 'from' => 'Vanaf', + 'to' => 'Tot', + 'total-customers' => 'Totaal aantal klanten', + 'total-orders' => 'Totaal aantal bestellingen', + 'total-sale' => 'Verkooptotaal', + 'average-sale' => 'Gemiddelde orderwaarde', + 'increased' => ':progress%', + 'decreased' => ':progress%', + 'sales' => 'Verkopen', + 'top-performing-categories' => 'Best presterende categorieën', + 'product-count' => ':count Producten', + 'top-selling-products' => 'Best verkopende producten', + 'sale-count' => ':count Verkopen', + 'customer-with-most-sales' => 'Klanten met de meeste verkopen', + 'order-count' => ':count Bestellingen', + 'revenue' => 'Omzet :total', + 'stock-threshold' => 'Voorraad drempel', + 'qty-left' => ':qty beschikbaar' + ], + + 'datagrid' => [ + 'mass-ops' => [ + 'method-error' => 'Error! Wrong method detected, please check mass action configuration', + 'delete-success' => 'Selected :resource were successfully deleted', + 'partial-action' => 'Some actions were not performed due restricted system constraints on :resource', + 'update-success' => 'Selected :resource were successfully updated', + 'no-resource' => 'The resource provided for insufficient for the action' + ], + + 'id' => 'ID', + 'status' => 'Status', + 'code' => 'Code', + 'admin-name' => 'Naam', + 'name' => 'Naam', + 'direction' => 'Richting', + 'fullname' => 'Volledige naam', + 'type' => 'Type', + 'required' => 'Verplicht', + 'unique' => 'Uniek', + 'per-locale' => 'Lokaal gebaseerd', + 'per-channel' => 'Kanaal gebaseerd', + 'position' => 'Position', + 'locale' => 'Locale', + 'hostname' => 'Hostnaam', + 'email' => 'Email', + 'group' => 'Groep', + 'phone' => 'Telefoon', + 'gender' => 'Geslacht', + 'title' => 'Titel', + 'layout' => 'Layout', + 'url-key' => 'URL Sleutel', + 'comment' => 'Opmerking', + 'product-name' => 'Product', + 'currency-name' => 'Valuta', + 'exch-rate' => 'Wisselkoers', + 'priority' => 'Prioriteit', + 'subscribed' => 'Ingeschreven', + 'base-total' => 'Base Total', + 'grand-total' => 'Eindtotaal incl', + 'order-date' => 'Besteldatum', + 'channel-name' => 'Kanaal', + 'billed-to' => 'Gefactureerd aan', + 'shipped-to' => 'Verzonden naar', + 'order-id' => 'Order Id', + 'invoice-date' => 'Factuur datum', + 'total-qty' => 'Totale hoeveelheid', + 'inventory-source' => 'Voorraad bron', + 'shipment-date' => 'Verzenddatum', + 'shipment-to' => 'Shipping To', + 'sku' => 'SKU', + 'price' => 'Prijs', + 'qty' => 'Aantal', + 'permission-type' => 'Permission Type', + 'identifier' => 'Identifier', + 'state' => 'Staat/Provincie', + 'country' => 'Land', + 'tax-rate' => 'Rate', + 'role' => 'Role', + 'sub-total' => 'Subtotaal', + 'no-of-products' => 'Aantal producten', + 'attribute-family' => 'Attribute Family', + 'starts-from' => 'Van', + 'ends-till' => 'Tot', + 'per-cust' => 'Per klant', + 'usage-throttle' => 'Usage Times', + 'for-guest' => 'Voor gast', + 'order_number' => 'Bestelnummer ', + 'refund-date' => 'Refund Date', + 'refunded' => 'Teruggestort', + 'start' => 'Start', + 'end' => 'Einde', + 'active' => 'Actief', + 'inactive' => 'Inactief', + 'coupon-code' => 'Coupon Code', + 'times-used' => 'Keer gebruikt', + 'created-date' => 'Created Date', + 'expiration-date' => 'Vervaldatum', + 'delete' => 'Verwijder', + 'rtl' => 'RTL', + 'ltr' => 'LTR', + 'update-status' => 'Status bijwerken' + ], + + 'account' => [ + 'title' => 'Mijn Profiel', + 'save-btn-title' => 'Opslaan', + 'general' => 'Algemeen', + 'name' => 'Naam', + 'email' => 'Email', + 'password' => 'Wachtwoord', + 'confirm-password' => 'Wachtwoord bevestigen', + 'change-password' => 'Wachtwoord wijzigen', + 'current-password' => 'Huidig wachtwoord' + ], + + 'users' => [ + 'forget-password' => [ + 'title' => 'Wachtwoord vergeten', + 'header-title' => 'Herstel wachtwoord', + 'email' => 'Registered Email', + 'password' => 'Wachtwoord', + 'confirm-password' => 'Bevestig wachtwoord', + 'back-link-title' => 'Terug naar inloggen', + 'submit-btn-title' => 'Wachtwoord herstellen' + ], + + 'reset-password' => [ + 'title' => 'Reset Password', + 'email' => 'Registered Email', + 'password' => 'Wachtwoord', + 'confirm-password' => 'Bevestig wachtwoord', + 'back-link-title' => 'Terug naar inloggen', + 'submit-btn-title' => 'Reset wachtwoord' + ], + + 'roles' => [ + 'title' => 'Rechten', + 'add-role-title' => 'Rol toevoegen', + 'edit-role-title' => 'Rol wijzigen', + 'save-btn-title' => 'Rol opslaan', + 'general' => 'Algemeen', + 'name' => 'Naam', + 'description' => 'Omschrijving', + 'access-control' => 'Toegangscontrole', + 'permissions' => 'Rechten', + 'custom' => 'Aangepast', + 'all' => 'Alles' + ], + + 'users' => [ + 'title' => 'Gebruikers', + 'add-user-title' => 'Gebruiker toevoegen', + 'edit-user-title' => 'Gebruiker wijzigen', + 'save-btn-title' => 'Gebruiker opslaan', + 'general' => 'Algemeen', + 'email' => 'Email', + 'name' => 'Naam', + 'password' => 'Wachtwoord', + 'confirm-password' => 'Wachtwoord bevestigen', + 'status-and-role' => 'Status en rol', + 'role' => 'Role', + 'status' => 'Status', + 'account-is-active' => 'Account is actief', + 'current-password' => 'Vul huidig wachtwoord in', + 'confirm-delete' => 'Bevestig om dit account te verwijderen', + 'confirm-delete-title' => 'Bevestig met uw wachtwoord voordat u het verwijdert', + 'delete-last' => 'Er is minimaal één beheerder vereist.', + 'delete-success' => 'Succes! Gebruiker verwijderd', + 'incorrect-password' => 'Het ingevoerde wachtwoord is onjuist', + 'password-match' => 'Het huidig wachtwoord komt niet overeen.', + 'account-save' => 'Accountwijzigingen succesvol opgeslagen.', + 'login-error' => 'Controleer uw gegevens en probeer het opnieuw.', + 'activate-warning' => 'Uw account moet nog worden geactiveerd, neem contact op met de beheerder.' + ], + + 'sessions' => [ + 'title' => 'Inloggen', + 'email' => 'Email', + 'password' => 'Wachtwoord', + 'forget-password-link-title' => 'Wachtwoord vergeten ?', + 'remember-me' => 'Onthoud me', + 'submit-btn-title' => 'Inloggen' + ] + ], + + 'sales' => [ + 'orders' => [ + 'title' => 'Bestellingen', + 'view-title' => 'Order #:order_id', + 'cancel-btn-title' => 'Annuleren', + 'shipment-btn-title' => 'Verzend', + 'invoice-btn-title' => 'Factuur', + 'info' => 'Informatie', + 'invoices' => 'Facturen', + 'shipments' => 'Verzendingen', + 'order-and-account' => 'Order and Account', + 'order-info' => 'Order Information', + 'order-date' => 'Besteldatum', + 'order-status' => 'Order Status', + 'order-status-canceled' => 'Geannuleerd', + 'order-status-closed' => 'Gesloten', + 'order-status-fraud' => 'Verdacht van fraude', + 'order-status-pending' => 'In afwachting', + 'order-status-pending-payment' => 'In afwachting van de betaling', + 'order-status-processing' => 'Bezig met verwerken', + 'order-status-success' => 'Voltooid', + 'channel' => 'Kanaal', + 'customer-name' => 'Klant', + 'email' => 'Email', + 'contact-number' => 'Contact nummer', + 'account-info' => 'Account informatie', + 'address' => 'Adres', + 'shipping-address' => 'Bezorgadres', + 'billing-address' => 'Factuuradres', + 'payment-and-shipping' => 'Betaling en verzending', + 'payment-info' => 'Betaalgegevens', + 'payment-method' => 'Betaalmethode', + 'currency' => 'Valuta', + 'shipping-info' => 'Verzend informatie', + 'shipping-method' => 'Verzendmethode', + 'shipping-price' => 'Verzendkosten', + 'products-ordered' => 'Bestelde producten', + 'SKU' => 'SKU', + 'product-name' => 'Product naam', + 'qty' => 'Aantal', + 'item-status' => 'Item Status', + 'item-ordered' => 'Besteld (:qty_ordered)', + 'item-invoice' => 'Gefactureerd (:qty_invoiced)', + 'item-shipped' => 'Verzeonden (:qty_shipped)', + 'item-canceled' => 'Geannuleerd (:qty_canceled)', + 'item-refunded' => 'Teruggestort (:qty_refunded)', + 'price' => 'Prijs', + 'total' => 'Totaal', + 'subtotal' => 'Subtotaal', + 'shipping-handling' => 'Verzending & Verwerking', + 'discount' => 'Korting', + 'tax' => 'BTW', + 'tax-percent' => 'BTW Percentage', + 'tax-amount' => 'BTW-bedrag', + 'discount-amount' => 'Korting', + 'discount-amount' => 'Korting', + 'grand-total' => 'Eindtotaal incl', + 'total-paid' => 'Totaal betaald', + 'total-refunded' => 'Totaal terugbetaald', + 'total-due' => 'Total Due', + 'cancel-confirm-msg' => 'Weet u zeker dat u deze bestelling wilt annuleren ?', + 'refund-btn-title' => 'Terugbetaling', + 'refunds' => 'Terugbetalingen' + ], + + 'invoices' => [ + 'title' => 'Facturen', + 'id' => 'Id', + 'invoice-id' => 'Factuurnummer', + 'date' => 'Factuur datum', + 'order-id' => 'Bestelnummer', + 'customer-name' => 'Klantnaam', + 'status' => 'Status', + 'amount' => 'Bedrag', + 'action' => 'Actie', + 'add-title' => 'Factuur aanmaken', + 'save-btn-title' => 'Bewaar factuur', + 'qty' => 'Aantal', + 'qty-ordered' => 'Besteld aantal', + 'qty-to-invoice' => 'Aantal te factureren', + 'view-title' => 'Factuur #:invoice_id', + 'bill-to' => 'Bill to', + 'ship-to' => 'Verzenden naar', + 'print' => 'Print', + 'order-date' => 'Besteldatum', + 'creation-error' => 'De bestelling staat niet toe dat er een factuur wordt aangemaakt.', + 'product-error' => 'Zonder producten kan er geen factuur worden aangemaakt.' + ], + + 'shipments' => [ + 'title' => 'Verzendingen', + 'id' => 'Id', + 'date' => 'Verzenddatum', + 'order-id' => 'Order Id', + 'order-date' => 'Besteldatum', + 'customer-name' => 'Klantnaam', + 'total-qty' => 'Totaal aantal', + 'action' => 'Actie', + 'add-title' => 'Zending maken', + 'save-btn-title' => 'Zending opslaan', + 'qty-ordered' => 'Besteld aantal', + 'qty-to-ship' => 'Te verzenden', + 'available-sources' => 'Beschikbare bronnen', + 'source' => 'Bron', + 'select-source' => 'Selecteer een bron', + 'qty-available' => 'Voorraad beschikbaar', + 'inventory-source' => 'Voorraad bron', + 'carrier-title' => 'Vervoerder', + 'tracking-number' => 'Trackingnummer', + 'view-title' => 'Verzending #:shipment_id', + 'creation-error' => 'Er kan geen verzending worden aangemaakt voor deze bestelling.', + 'order-error' => 'Het aanmaken van een verzending is niet toegestaan.', + 'quantity-invalid' => 'Requested quantity is invalid or not available.', + ], + + 'refunds' => [ + 'title' => 'Terugbetalingen', + 'id' => 'Id', + 'add-title' => 'Create Refund', + 'save-btn-title' => 'Opslaan', + 'order-id' => 'Order Id', + 'qty-ordered' => 'Qty Ordered', + 'qty-to-refund' => 'Qty To Refund', + 'refund-shipping' => 'Refund Shipping', + 'adjustment-refund' => 'Adjustment Refund', + 'adjustment-fee' => 'Adjustment Fee', + 'update-qty' => 'Update Quantities', + 'invalid-qty' => 'We found an invalid quantity to refund items.', + 'refund-limit-error' => 'The most money available to refund is :amount.', + 'refunded' => 'Teruggestort', + 'date' => 'Refund Date', + 'customer-name' => 'Customer Name', + 'status' => 'Status', + 'action' => 'Actie', + 'view-title' => 'Refund #:refund_id', + 'invalid-refund-amount-error' => 'Refund amount should be non zero.' + + ] + ], + + 'catalog' => [ + 'products' => [ + 'title' => 'Producten', + 'add-product-btn-title' => 'Product toevoegen', + 'add-title' => 'Product toevoegen', + 'edit-title' => 'Wijzig Product', + 'save-btn-title' => 'Product opslaan', + 'general' => 'Algemeen', + 'product-type' => 'Product Type', + 'simple' => 'Simpel', + 'configurable' => 'Configureerbaar', + 'familiy' => 'Attribute Family', + 'sku' => 'SKU', + 'configurable-attributes' => 'Configurable Attributes', + 'attribute-header' => 'Attribute(s)', + 'attribute-option-header' => 'Attribute Option(s)', + 'no' => 'Nee', + 'yes' => 'Ja', + 'disabled' => 'Uitgeschakeld', + 'enabled' => 'Ingeschakeld', + 'add-variant-btn-title' => 'Variatie toevoegen', + 'name' => 'Naam', + 'qty' => 'Aantal', + 'price' => 'Prijs', + 'weight' => 'Gewicht', + 'status' => 'Status', + 'enabled' => 'Ingeschakeld', + 'disabled' => 'Uitgeschakeld', + 'add-variant-title' => 'Variant toevoegen', + 'variant-already-exist-message' => 'Variatie met dezelfde attribuut opties bestaat al.', + 'add-image-btn-title' => 'Afbeelding toevoegen', + 'mass-delete-success' => 'Alle geselecteerde producten zijn verwijderd.', + 'mass-update-success' => 'Alle geselecteerde producten zijn gewijzigd.', + 'configurable-error' => 'Please select at least one configurable attribute.', + 'categories' => 'Categorieën', + 'images' => 'Afbeeldingen', + 'inventories' => 'Voorraden', + 'variations' => 'Variaties', + 'downloadable' => 'Downloadbare informatie', + 'links' => 'Links', + 'add-link-btn-title' => 'Add Link', + 'samples' => 'Voorbeelden', + 'add-sample-btn-title' => 'Voorbeeld toevoegen', + 'downloads' => 'Downloaden toegestaan', + 'file' => 'Bestand', + 'sample' => 'Voorbeeld', + 'upload-file' => 'Bestand uploaden', + 'url' => 'Url', + 'sort-order' => 'Sort Order', + 'browse-file' => 'Browse File', + 'product-link' => 'Linked Products', + 'cross-selling' => 'Cross Selling', + 'up-selling' => 'Up Selling', + 'related-products' => 'Gerelateerde producten', + 'product-search-hint' => 'Start typing product name', + 'no-result-found' => 'Er zijn geen producten gevonden met dezelfde naam.', + 'searching' => 'Searching ...', + 'grouped-products' => 'Gegroepeerde producten', + 'search-products' => 'Zoek producten', + 'no-result-found' => 'Er zijn geen producten gevonden met dezelfde naam.', + 'channel' => 'Kanalen', + 'bundle-items' => 'Items bundelen', + 'add-option-btn-title' => 'Optie toevoegen', + 'option-title' => 'Optie Titel', + 'input-type' => 'Invoertype', + 'is-required' => 'is verplicht', + 'select' => 'Select', + 'radio' => 'Radio', + 'checkbox' => 'Checkbox', + 'multiselect' => 'Multiselect', + 'new-option' => 'Nieuwe optie', + 'is-default' => 'is standaard', + ], + + 'attributes' => [ + 'title' => 'Attributen', + 'add-title' => 'Attribuut toevoegen', + 'edit-title' => 'Wijzig attribuut', + 'save-btn-title' => 'Save Attribute', + 'general' => 'Algemeen', + 'code' => 'Attribute Code', + 'type' => 'Attribute Type', + 'text' => 'Text', + 'textarea' => 'Textarea', + 'price' => 'Prijs', + 'boolean' => 'Boolean', + 'select' => 'Select', + 'multiselect' => 'Multiselect', + 'datetime' => 'Datum / tijd', + 'date' => 'Datum', + 'label' => 'Label', + 'admin' => 'Admin', + 'options' => 'Opties', + 'position' => 'Positie', + 'add-option-btn-title' => 'Optie toevoegen', + 'validations' => 'Validations', + 'input_validation' => 'Input Validation', + 'is_required' => 'is verplicht', + 'is_unique' => 'Is uniek', + 'number' => 'Nummer', + 'decimal' => 'Decimaal', + 'email' => 'Email', + 'url' => 'URL', + 'configuration' => 'Configuratie', + 'status' => 'Status', + 'yes' => 'Ja', + 'no' => 'Nee', + 'value_per_locale' => 'Waarde per landinstelling', + 'value_per_channel' => 'Waarde per kanaal', + 'value_per_channel' => 'Waarde per kanaal', + 'is_filterable' => 'Use in Layered Navigation', + 'is_configurable' => 'Use To Create Configurable Product', + 'admin_name' => 'Admin Name', + 'is_visible_on_front' => 'Visible on Product View Page on Front-end', + 'swatch_type' => 'Swatch Type', + 'dropdown' => 'Dropdown', + 'color-swatch' => 'Color Swatch', + 'image-swatch' => 'Image Swatch', + 'text-swatch' => 'Text Swatch', + 'swatch' => 'Swatch', + 'image' => 'Afbeelding', + 'file' => 'Bestand', + 'checkbox' => 'Checkbox', + 'use_in_flat' => "Create in Product Flat Table", + 'default_null_option' => 'Create default empty option', + ], + 'families' => [ + 'title' => 'Families', + 'add-family-btn-title' => 'Add Family', + 'add-title' => 'Add Family', + 'edit-title' => 'Edit Family', + 'save-btn-title' => 'Save Family', + 'general' => 'Algemeen', + 'code' => 'Family Code', + 'name' => 'Naam', + 'groups' => 'Groepen', + 'add-group-title' => 'Add Group', + 'position' => 'Position', + 'attribute-code' => 'Code', + 'type' => 'Type', + 'add-attribute-title' => 'Add Attributes', + 'search' => 'Search', + 'group-exist-error' => 'Group with same name already exists.' + ], + 'categories' => [ + 'title' => 'Categorieën', + 'add-title' => 'Categorie toevoegen', + 'edit-title' => 'Edit Category', + 'save-btn-title' => 'Save Category', + 'general' => 'Algemeen', + 'name' => 'Naam', + 'visible-in-menu' => 'Visible In Menu', + 'yes' => 'Ja', + 'no' => 'Nee', + 'position' => 'Position', + 'display-mode' => 'Display Mode', + 'products-and-description' => 'Products and Description', + 'products-only' => 'Products Only', + 'description-only' => 'Description Only', + 'description-and-images' => 'Description and Images', + 'description' => 'Description', + 'parent-category' => 'Parent Category', + 'seo' => 'Search Engine Optimization', + 'slug' => 'Slug', + 'meta_title' => 'Meta Title', + 'meta_description' => 'Meta Description', + 'meta_keywords' => 'Meta trefwoorden', + 'image' => 'Afbeelding', + 'filterable-attributes' => 'Filterable Attributes', + 'attributes' => 'Attributes', + ] + ], + + 'configuration' => [ + 'title' => 'Configuratie', + 'save-btn-title' => 'Opslaan', + 'save-message' => 'Configuratie succesvol opgeslagen', + 'yes' => 'Ja', + 'no' => 'Nee', + 'delete' => 'Verwijder', + + 'tax-categories' => [ + 'title' => 'BTW categorieën', + 'add-title' => 'Categorie toevoegen', + 'edit-title' => 'Edit Tax Category', + 'save-btn-title' => 'Save Tax Category', + 'general' => 'BTW categorie', + 'select-channel' => 'Selecteer een kanaal', + 'name' => 'Naam', + 'code' => 'Code', + 'description' => 'Omschrijving', + 'select-taxrates' => 'Selecteer belastingtarieven', + 'edit' => [ + 'title' => 'Categorie wijzigen', + 'edit-button-title' => 'Wijzig categorie' + ] + ], + + 'tax-rates' => [ + 'title' => 'BTW-tarieven', + 'add-title' => 'BTW toevoegen', + 'edit-title' => 'Edit Tax Rate', + 'save-btn-title' => 'Save Tax Rate', + 'general' => 'Tax Rate', + 'identifier' => 'Identifier', + 'is_zip' => 'Enable Zip Range', + 'zip_from' => 'Zip From', + 'zip_to' => 'Zip To', + 'state' => 'Staat/Provincie', + 'select-state' => 'Select a region, state or province.', + 'country' => 'Land', + 'tax_rate' => 'Rate', + 'edit' => [ + 'title' => 'Edit Tax Rate', + 'edit-button-title' => 'Edit Rate' + ], + 'zip_code' => 'Zip Code', + 'is_zip' => 'Enable Zip Range', + ], + + 'sales' => [ + 'shipping-method' => [ + 'title' => 'Shipping Methods', + 'save-btn-title' => 'Opslaan', + 'description' => 'Description', + 'active' => 'Actief', + 'status' => 'Status' + ] + ] + ], + + 'settings' => [ + 'locales' => [ + 'title' => 'Landinstellingen', + 'add-title' => 'Landinstelling toevoegen', + 'edit-title' => 'Landinstelling wijzigen', + 'save-btn-title' => 'Landinstelling opslaan', + 'general' => 'Algemeen', + 'code' => 'Code', + 'name' => 'Naam', + 'direction' => 'Richting', + 'create-success' => 'De landinstelling is succesvol toegevoegd.', + 'update-success' => 'De landinstelling is succesvol gewijzigd.', + 'delete-success' => 'De landinstelling is succesvol verwijderd.', + 'last-delete-error' => 'Ten minste één landinstelling is vereist.', + ], + 'countries' => [ + 'title' => 'Landen', + 'add-title' => 'Land toevoegen', + 'save-btn-title' => 'Land opslaan', + 'general' => 'Algemeen', + 'code' => 'Code', + 'name' => 'Naam' + ], + 'currencies' => [ + 'title' => 'Valuta instellingen', + 'add-title' => 'Valuta toevoegen', + 'edit-title' => 'Valuta wijzigen', + 'save-btn-title' => 'Valuta opslaan', + 'general' => 'Algemeen', + 'code' => 'Code', + 'name' => 'Naam', + 'symbol' => 'Symbool', + 'create-success' => 'Het valuta is toegevoegd.', + 'update-success' => 'Het valuta is gewijzigd.', + 'delete-success' => 'Het valuta is verwijderd.', + 'last-delete-error' => 'Minimaal één valuta is vereist.', + ], + 'exchange_rates' => [ + 'title' => 'Wisselkoersen', + 'add-title' => 'Wisselkoers toevoegen', + 'edit-title' => 'Wisselkoers wijzigen', + 'save-btn-title' => 'Wisselkoers opslaan', + 'general' => 'Algemeen', + 'source_currency' => 'Valuta bron', + 'target_currency' => 'Valuta doel', + 'rate' => 'Tarief', + 'exchange-class-not-found' => ':service exchange rate class not found', + 'update-rates' => 'Update rates using :service', + 'create-success' => 'Wisselkoers succesvol aangemaakt.', + 'update-success' => 'Wisselkoers succesvol bijgewerkt.', + 'delete-success' => 'Wisselkoers succesvol verwijderd.', + 'last-delete-error' => 'Ten minste één wisselkoers is vereist.', + ], + 'inventory_sources' => [ + 'title' => 'Voorraadbronnen', + 'add-title' => 'Voorraadbron toevoegen', + 'edit-title' => 'Edit Inventory Source', + 'save-btn-title' => 'Opslaan', + 'general' => 'Algemeen', + 'code' => 'Code', + 'name' => 'Naam', + 'description' => 'Omschrijving', + 'source-is-active' => 'Source is Active', + 'contact-info' => 'Contact Information', + 'contact_name' => 'Naam', + 'contact_email' => 'Email', + 'contact_number' => 'Contact nummer', + 'contact_fax' => 'Fax', + 'address' => 'Source Address', + 'country' => 'Land', + 'state' => 'Staat/Provincie', + 'city' => 'Woonplaats', + 'street' => 'Adres', + 'postcode' => 'Postcode', + 'priority' => 'Prioriteit', + 'latitude' => 'Latitude', + 'longitude' => 'Longitude', + 'status' => 'Status', + 'create-success' => 'Inventory source created successfully.', + 'update-success' => 'Inventory source updated successfully.', + 'delete-success' => 'Inventory source deleted successfully.', + 'last-delete-error' => 'At least one Inventory source is required.', + ], + 'channels' => [ + 'title' => 'Kanalen', + 'add-title' => 'Kanaal toevoegen', + 'edit-title' => 'Kanaal wijzigen', + 'save-btn-title' => 'Kanaal opslaan', + 'general' => 'Algemeen', + 'code' => 'Code', + 'name' => 'Naam', + 'description' => 'Omschrijving', + 'hostname' => 'Hostnaam', + 'currencies-and-locales' => 'Currencies and Locales', + 'locales' => 'Landinstellingen', + 'default-locale' => 'Default Locale', + 'currencies' => 'Valuta\'s', + 'base-currency' => 'Standaard valuta', + 'root-category' => 'Hoofdcategorie', + 'inventory_sources' => 'Standaard bron', + 'design' => 'Design', + 'theme' => 'Thema', + 'home_page_content' => 'Home Page Content', + 'footer_content' => 'Onderschrift inhoud', + 'logo' => 'Logo', + 'favicon' => 'Favicon', + 'create-success' => 'Het kanaal is succesvol toegevoegd.', + 'update-success' => 'Het kanaal is succesvol gewijzigd.', + 'delete-success' => 'Het kanaal is succesvol verwijderd.', + 'last-delete-error' => 'Er is minimaal één kanaal vereist.', + 'seo' => 'Startpagina SEO', + 'seo-title' => 'Meta titel', + 'seo-description' => 'Meta omschrijving', + 'seo-keywords' => 'Meta trefwoorden', + + ], + + 'sliders' => [ + 'title' => 'Sliders', + 'name' => 'Naam', + 'add-title' => 'Slider toevoegen', + 'edit-title' => 'Slider wijzigen', + 'save-btn-title' => 'Slider opslaan', + 'general' => 'Algemeen', + 'image' => 'Afbeelding', + 'content' => 'Inhoud', + 'channels' => 'Kanaal', + 'created-success' => 'Slider item created successfully', + 'created-fault' => 'Error in creating slider item', + 'update-success' => 'Slider item successfully updated', + 'update-fail' => 'Slider cannot be updated', + 'delete-success' => 'Cannot delete last llider item', + 'delete-fail' => 'Slider item successfully deleted' + ], + + 'tax-categories' => [ + 'title' => 'BTW categorieën', + 'add-title' => 'Categorie toevoegen', + 'edit-title' => 'Categorie wijzigen', + 'save-btn-title' => 'Categorie bewaren', + 'general' => 'BTW categorie', + 'select-channel' => 'Selecteer een kanaal', + 'name' => 'Naam', + 'code' => 'Code', + 'description' => 'Omschrijving', + 'select-taxrates' => 'Select Tax Rates', + 'edit' => [ + 'title' => 'Edit Tax Category', + 'edit-button-title' => 'Edit Tax Category' + ], + 'create-success' => 'New Tax Category Created', + 'create-error' => 'Error, While Creating Tax Category', + 'update-success' => 'Successfully Updated Tax Category', + 'update-error' => 'Error While Updating Tax Category', + 'atleast-one' => 'Cannot Delete The Last Tax Category', + 'delete' => 'Tax Category Successfully Deleted' + ], + + 'tax-rates' => [ + 'title' => 'BTW-tarieven', + 'add-title' => 'Create Tax Rate', + 'edit-title' => 'Edit Tax Rate', + 'save-btn-title' => 'Save Tax Rate', + 'general' => 'Tax Rate', + 'identifier' => 'Identifier', + 'is_zip' => 'Enable Zip Range', + 'zip_from' => 'Zip From', + 'zip_to' => 'Zip To', + 'state' => 'Staat/Provincie', + 'select-state' => 'Select a region, state or province.', + 'country' => 'Land', + 'tax_rate' => 'Rate', + 'edit' => [ + 'title' => 'Edit Tax Rate', + 'edit-button-title' => 'Edit Rate' + ], + 'zip_code' => 'Postcode', + 'is_zip' => 'Enable Zip Range', + 'create-success' => 'Belastingtarief succesvol aangemaakt', + 'create-error' => 'Cannot Create Tax Rate', + 'update-success' => 'Tax Rate Updated Successfully', + 'update-error' => 'Error! Tax Rate Cannot Be Updated', + 'delete' => 'Het BTW-tarief is verwijderd', + 'atleast-one' => 'Cannot Delete Last Tax Rate' + ], + 'development' => [ + 'title' => 'Ontwikkeling', + ] + ], + + 'customers' => [ + 'groups' =>[ + 'add-title' => 'Groep toevoegen', + 'edit-title' => 'Groep wijzigen', + 'save-btn-title' => 'Save Group', + 'title' => 'Groepen', + 'save-btn-title' => 'Save Group', + 'code' => 'Code', + 'name' => 'Naam', + 'is_user_defined' => 'Door de gebruiker gedefinieerd', + 'yes' => 'Ja' + ], + + 'addresses' => [ + 'title' => ':customer_name\'s Addresses List', + 'vat_id' => 'BTW nummer', + 'create-title' => 'Create Customer\'s Address', + 'edit-title' => 'Update Customer\'s Address', + 'title-orders' => ':customer_name\'s Orders List', + 'address-list' => 'Address\'s List', + 'order-list' => 'Order\'s List', + 'address-id' => 'Address ID', + 'address-1' => 'Address 1', + 'city' => 'Woonplaats', + 'state-name' => 'Staat', + 'country-name' => 'Land', + 'postcode' => 'Postcode', + 'default-address' => 'Standaard Address', + 'yes' => 'Ja', + 'not-approved' => 'Niet akkoord', + 'no' => 'Nee', + 'dash' => '-', + 'delete' => 'Verwijder', + 'create-btn-title' => 'Adres toevoegen', + 'save-btn-title' => 'Bewaar adres', + 'general' => 'Algemeen', + 'success-create' => 'Success: Customer address created successfully.', + 'success-update' => 'Success: Customer address updated successfully.', + 'success-delete' => 'Success: Customer address deleted successfully.', + 'success-mass-delete' => 'Success: selected addresses deleted successfully.', + 'error-create' => 'Error: Customer address not created.', + ], + + 'note' => [ + 'title' => 'Add Note', + 'save-note' => 'Save Note', + 'enter-note' => 'Enter Note', + 'help-title' => 'Add Note On This Customer' + ], + + 'customers' => [ + 'add-title' => 'Klant toevoegen', + 'edit-title' => 'Wijzig klant', + 'title' => 'Klanten', + 'first_name' => 'Voornaam', + 'last_name' => 'Naam', + 'gender' => 'Geslacht', + 'email' => 'Email', + 'date_of_birth' => 'Geboortedatum', + 'phone' => 'Telefoon', + 'customer_group' => 'Klantengroep', + 'save-btn-title' => 'Klant opslaan', + 'channel_name' => 'Kanaal', + 'state' => 'Staat/Provincie', + 'select-state' => 'Selecteer een regio, staat of provincie.', + 'country' => 'Land', + 'other' => 'Anders', + 'male' => 'Man', + 'female' => 'Vrouw', + 'group-default' => 'Cannot delete the default group.', + 'edit-help-title' => 'Wijzig klant', + 'delete-help-title' => 'Klant verwijderen', + 'addresses' => 'Addresses', + 'mass-destroy-success' => 'Customers deleted successfully', + 'mass-update-success' => 'Customers updated successfully', + 'status' => 'Status', + 'active' => 'Actief', + 'in-active' => 'Niet geactiveerd' + ], + + 'reviews' => [ + 'title' => 'Reviews', + 'edit-title' => 'Edit Review', + 'rating' => 'Rating', + 'status' => 'Status', + 'comment' => 'Comment', + 'pending' => 'Pending', + 'approved' => 'Approve', + 'disapproved' => 'Disapprove' + ], + + 'subscribers' => [ + 'title' => 'Nieuwsbrief abonnees', + 'title-edit' => 'Abonnement bewerken', + 'email' => 'Email', + 'is_subscribed' => 'Geabonneerd', + 'edit-btn-title' => 'Abonnee bijwerken', + 'update-success' => 'Abonnee is succesvol bijgewerkt', + 'update-failed' => 'Error! U kan deze abonnee niet afmelden', + 'delete' => 'Abonnee is succesvol verwijderd', + 'delete-failed' => 'Error! Abonnee kan niet worden verwijderd' + ] + ], + + 'promotions' => [ + 'cart-rules' => [ + 'title' => 'Cart Rules', + 'add-title' => 'Add Cart Rule', + 'edit-title' => 'Edit Cart Rule', + 'save-btn-title' => 'Save Cart Rule', + 'rule-information' => 'Rule Information', + 'name' => 'Naam', + 'description' => 'Description', + 'status' => 'Status', + 'is-active' => 'Cart Rule is Active', + 'channels' => 'Kanalen', + 'customer-groups' => 'Customer Groups', + 'coupon-type' => 'Coupon Type', + 'no-coupon' => 'No Coupon', + 'specific-coupon' => 'Specific Coupon', + 'auto-generate-coupon' => 'Auto Generate Coupon', + 'no' => 'Nee', + 'yes' => 'Ja', + 'coupon-code' => 'Coupon Code', + 'uses-per-coupon' => 'Uses Per Coupon', + 'uses-per-customer' => 'Uses Per Customer', + 'uses-per-customer-control-info' => 'Will be used for logged in customers only.', + 'from' => 'From', + 'to' => 'To', + 'priority' => 'Priority', + 'conditions' => 'Conditions', + 'condition-type' => 'Condition Type', + 'all-conditions-true' => 'All Conditions are True', + 'any-condition-true' => 'Any Condition is True', + 'add-condition' => 'Add Condition', + 'choose-condition-to-add' => 'Choose a condition to add', + 'cart-attribute' => 'Cart Attribute', + 'subtotal' => 'Subtotaal', + 'total-items-qty' => 'Total Items Qty', + 'total-weight' => 'Total Weight', + 'payment-method' => 'Betaalmethode', + 'shipping-method' => 'Shipping Method', + 'shipping-postcode' => 'Shipping Zip/Postcode', + 'shipping-state' => 'Shipping State', + 'shipping-country' => 'Shipping Country', + 'cart-item-attribute' => 'Cart Item Attribute', + 'price-in-cart' => 'Price in Cart', + 'qty-in-cart' => 'Qty in Cart', + 'product-attribute' => 'Product Attribute', + 'attribute-name-children-only' => ':attribute_name (Children Only)', + 'attribute-name-parent-only' => ':attribute_name (Parent Only)', + 'is-equal-to' => 'Is equal to', + 'is-not-equal-to' => 'Is not equal to', + 'equals-or-greater-than' => 'Equals or greater than', + 'equals-or-less-than' => 'Equals or less than', + 'greater-than' => 'Greater than', + 'less-than' => 'Less than', + 'contain' => 'Contain', + 'contains' => 'Contains', + 'does-not-contain' => 'Does not contain', + 'actions' => 'Acties', + 'action-type' => 'Action Type', + 'percentage-product-price' => 'Percentage of Product Price', + 'fixed-amount' => 'Fixed Amount', + 'fixed-amount-whole-cart' => 'Fixed Amount to Whole Cart', + 'buy-x-get-y-free' => 'Buy X Get Y Free', + 'discount-amount' => 'Discount Amount', + 'discount-quantity' => 'Maximum Quantity Allowed to be Discounted', + 'discount-step' => 'Buy X Quantity', + 'free-shipping' => 'Free Shipping', + 'apply-to-shipping' => 'Apply to Shipping', + 'coupon-codes' => 'Coupon Codes', + 'coupon-qty' => 'Coupon Qty', + 'code-length' => 'Code Length', + 'code-format' => 'Code Format', + 'alphanumeric' => 'Alphanumeric', + 'alphabetical' => 'Alphabetical', + 'numeric' => 'Numeric', + 'code-prefix' => 'Code Prefix', + 'code-suffix' => 'Code Suffix', + 'generate' => 'Generate', + 'cart-rule-not-defind-error' => 'Cart rule is not defined', + 'mass-delete-success' => 'All the selected coupons have been deleted successfully.', + 'end-other-rules' => 'End Other Rules', + 'children-categories' => 'Categories (Children Only)', + 'parent-categories' => 'Categories (Parent Only)', + 'categories' => 'Categorieën', + 'attribute_family' => 'Attribute Family' + ], + + 'catalog-rules' => [ + 'title' => 'Catalog Rules', + 'add-title' => 'Add Catalog Rule', + 'edit-title' => 'Edit Catalog Rule', + 'save-btn-title' => 'Save Catalog Rule', + 'rule-information' => 'Rule Information', + 'name' => 'Naam', + 'description' => 'Description', + 'status' => 'Status', + 'is-active' => 'Catalog Rule is Active', + 'channels' => 'Kanalen', + 'customer-groups' => 'Customer Groups', + 'no' => 'Nee', + 'yes' => 'Ja', + 'from' => 'From', + 'to' => 'To', + 'priority' => 'Priority', + 'conditions' => 'Conditions', + 'condition-type' => 'Condition Type', + 'all-conditions-true' => 'All Conditions are True', + 'any-condition-true' => 'Any Condition is True', + 'add-condition' => 'Add Condition', + 'choose-condition-to-add' => 'Choose a condition to add', + 'product-attribute' => 'Product Attribute', + 'attribute-name-children-only' => ':attribute_name (Children Only)', + 'attribute-name-parent-only' => ':attribute_name (Parent Only)', + 'is-equal-to' => 'Is equal to', + 'is-not-equal-to' => 'Is not equal to', + 'equals-or-greater-than' => 'Equals or greater than', + 'equals-or-less-than' => 'Equals or less than', + 'greater-than' => 'Greater than', + 'less-than' => 'Less than', + 'contain' => 'Contain', + 'contains' => 'Contains', + 'does-not-contain' => 'Does not contain', + 'actions' => 'Acties', + 'action-type' => 'Action Type', + 'percentage-product-price' => 'Percentage of Product Price', + 'fixed-amount' => 'Fixed Amount', + 'fixed-amount-whole-cart' => 'Fixed Amount to Whole Catalog', + 'buy-x-get-y-free' => 'Buy X Get Y Free', + 'discount-amount' => 'Discount Amount', + 'mass-delete-success' => 'All the selected index of coupons have been deleted successfully.', + 'end-other-rules' => 'End Other Rules', + 'categories' => 'Categorieën', + 'attribute_family' => 'Attribute Family' + ] + ], + + 'error' => [ + 'go-to-home' => 'GO TO HOME', + 'in-maitainace' => 'In Maintenance', + 'right-back' => 'Be Right Back', + + '404' => [ + 'page-title' => '404 Page not found', + 'name' => '404', + 'title' => 'Page Not found', + 'message' => 'The Page you are looking for does not exist or have been moved. Navigate using sidemenu.' + ], + '403' => [ + 'page-title' => '403 forbidden Error', + 'name' => '403', + 'title' => 'Forbidden error', + 'message' => 'You do not have permission to access this page' + ], + '500' => [ + 'page-title' => '500 Internal Server Error', + 'name' => '500', + 'title' => 'Internal Server Error', + 'message' => 'The Server Encountered an internal error.' + ], + '401' => [ + 'page-title' => '401 Unauthorized Error', + 'name' => '401', + 'title' => 'Unauthorized Error', + 'message' => 'The request has not been applied because it lacks valid authentication credentials for the target resource.' + ], + ], + + 'export' => [ + 'export' => 'Exporteren', + 'import' => 'Importeren', + 'format' => 'Selecteer het formaat', + 'download' => 'Download', + 'upload' => 'Upload', + 'csv' => 'CSV', + 'xls' => 'XLS', + 'file' => 'File', + 'upload-error' => 'The file must be a file of type: xls, xlsx, csv.', + 'duplicate-error' => 'Identifier must be unique, duplicate identifier :identifier at row :position.', + 'enough-row-error' => 'file has not enough rows', + 'allowed-type' => 'Allowed Type :', + 'file-type' => 'csv, xls, xlsx.', + 'no-records' => 'Nothing to export', + 'illegal-format' => 'Error! This type of format is either not supported or its illegal format' + ], + + 'cms' => [ + 'pages' => [ + 'general' => 'Algemeen', + 'seo' => 'SEO', + 'pages' => 'Pages', + 'title' => 'Pages', + 'add-title' => 'Pagina toevoegen', + 'content' => 'Content', + 'url-key' => 'URL Key', + 'channel' => 'Kanalen', + 'locale' => 'Landinstelling', + 'create-btn-title' => 'Pagina opslaan', + 'edit-title' => 'Pagina aanpassen', + 'edit-btn-title' => 'Save Page', + 'create-success' => 'Pagina succesvol aangemaakt.', + 'create-partial' => 'Some of the pages requested already exists.', + 'create-failure' => 'All pages requested already exists.', + 'update-success' => 'Pagina succesvol bijgewerkt.', + 'update-failure' => 'Pagina kan niet worden bijgewerkt.', + 'page-title' => 'Pagina titel', + 'layout' => 'Layout', + 'meta_keywords' => 'Meta trefwoorden', + 'meta_description' => 'Meta omschrijving', + 'meta_title' => 'Meta Titel', + 'delete-success' => 'CMS page deleted successfully', + 'delete-failure' => 'CMS page cannot be deleted', + 'preview' => 'Voorbeeld', + 'one-col' => '