Skip to content

Commit

Permalink
Copied files from EN
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahrjen committed Sep 18, 2024
1 parent 4aad66d commit 3c8cf40
Show file tree
Hide file tree
Showing 31 changed files with 2,540 additions and 0 deletions.
46 changes: 46 additions & 0 deletions packages/admin/resources/lang/nl/actions.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?php

return [
'collections' => [
'create_root' => [
'label' => 'Create Root Collection',
],
'create_child' => [
'label' => 'Create Child Collection',
],
'move' => [
'label' => 'Move Collection',
],
'delete' => [
'label' => 'Delete',
],
],
'orders' => [
'update_status' => [
'label' => 'Update Status',
'wizard' => [
'step_one' => [
'label' => 'Status',
],
'step_two' => [
'label' => 'Mailers & Notifications',
'no_mailers' => 'There are no mailers available for this status.',
],
'step_three' => [
'label' => 'Preview & Save',
'no_mailers' => 'No mailers have been chosen for preview.',
],
],
'notification' => [
'label' => 'Order status updated',
],
'billing_email' => [
'label' => 'Billing Email',
],
'shipping_email' => [
'label' => 'Shipping Email',
],
],

],
];
29 changes: 29 additions & 0 deletions packages/admin/resources/lang/nl/activity.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

return [

'label' => 'Activity',

'plural_label' => 'Activities',

'table' => [
'subject' => 'Subject',
'description' => 'Description',
'log' => 'Log',
'logged_at' => 'Logged At',
'event' => 'Event',
'logged_from' => 'Logged From',
'logged_until' => 'Logged Until',
],

'form' => [
'causer_type' => 'Causer Type',
'causer_id' => 'Causer Id',
'subject_type' => 'Subject type',
'subject_id' => 'Subject Id',
'description' => 'Description',
'attributes' => 'Attributes',
'old' => 'Old',
],

];
93 changes: 93 additions & 0 deletions packages/admin/resources/lang/nl/address.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
<?php

return [

'label' => 'Address',

'plural_label' => 'Addresses',

'table' => [
'title' => [
'label' => 'Title',
],
'first_name' => [
'label' => 'First Name',
],
'last_name' => [
'label' => 'Last Name',
],
'company_name' => [
'label' => 'Company Name',
],
'line_one' => [
'label' => 'Address',
],
'line_two' => [
'label' => 'Line Two',
],
'line_three' => [
'label' => 'Line Three',
],
'city' => [
'label' => 'City',
],
'country_id' => [
'label' => 'Country',
],
'state' => [
'label' => 'State',
],
'postcode' => [
'label' => 'Postcode',
],
'contact_email' => [
'label' => 'Contact Email',
],
'contact_phone' => [
'label' => 'Contact Phone',
],
],

'form' => [
'title' => [
'label' => 'Title',
],
'first_name' => [
'label' => 'First Name',
],
'last_name' => [
'label' => 'Last Name',
],
'company_name' => [
'label' => 'Company Name',
],
'line_one' => [
'label' => 'Line One',
],
'line_two' => [
'label' => 'Line Two',
],
'line_three' => [
'label' => 'Line Three',
],
'city' => [
'label' => 'City',
],
'country_id' => [
'label' => 'Country',
],
'state' => [
'label' => 'State',
],
'postcode' => [
'label' => 'Postcode',
],
'contact_email' => [
'label' => 'Contact Email',
],
'contact_phone' => [
'label' => 'Contact Phone',
],
],

];
55 changes: 55 additions & 0 deletions packages/admin/resources/lang/nl/attribute.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<?php

return [

'label' => 'Attribute',

'plural_label' => 'Attributes',

'table' => [
'name' => [
'label' => 'Name',
],
'description' => [
'label' => 'Description',
],
'handle' => [
'label' => 'Handle',
],
'type' => [
'label' => 'Type',
],
],

'form' => [
'attributable_type' => [
'label' => 'Type',
],
'name' => [
'label' => 'Name',
],
'description' => [
'label' => 'Description',
'helper' => 'Use to display the helper text below the entry',
],
'handle' => [
'label' => 'Handle',
],
'searchable' => [
'label' => 'Searchable',
],
'filterable' => [
'label' => 'Filterable',
],
'required' => [
'label' => 'Required',
],
'type' => [
'label' => 'Type',
],
'validation_rules' => [
'label' => 'Validation Rules',
'helper' => 'Rules for attribute field, example: min:1|max:10|...',
],
],
];
46 changes: 46 additions & 0 deletions packages/admin/resources/lang/nl/attributegroup.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?php

return [

'label' => 'Attribute Group',

'plural_label' => 'Attribute Groups',

'table' => [
'attributable_type' => [
'label' => 'Type',
],
'name' => [
'label' => 'Name',
],
'handle' => [
'label' => 'Handle',
],
'position' => [
'label' => 'Position',
],
],

'form' => [
'attributable_type' => [
'label' => 'Type',
],
'name' => [
'label' => 'Name',
],
'handle' => [
'label' => 'Handle',
],
'position' => [
'label' => 'Position',
],
],

'action' => [
'delete' => [
'notification' => [
'error_protected' => 'This attribute group can not be deleted as there are attributes associated.',
],
],
],
];
32 changes: 32 additions & 0 deletions packages/admin/resources/lang/nl/auth.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?php

return [
/**
* Roles
*/
'roles.admin.label' => 'Admin',
'roles.admin.description' => 'Admin with full access',
'roles.staff.label' => 'Staff',
'roles.staff.description' => 'Staff with fundamental access',
/**
* Permissions.
*/
'permissions.settings.label' => 'Settings',
'permissions.settings.description' => 'Gives access to the settings area of the hub',
'permissions.settings:core.label' => 'Core Settings',
'permissions.settings:core.description' => 'Access fundamental store settings, such as channels, languages, currencies, etc',
'permissions.settings:manage-staff.label' => 'Manage Staff',
'permissions.settings:manage-staff.description' => 'Allow the staff member to edit other staff',
'permissions.settings:manage-attributes.label' => 'Manage Attributes',
'permissions.settings:manage-attributes.description' => 'Allow the staff member to edit and create additional attributes',
'permissions.catalog:manage-products.label' => 'Manage Products',
'permissions.catalog:manage-products.description' => 'Allow the staff member to edit products, product types and brands',
'permissions.catalog:manage-collections.label' => 'Manage Collections',
'permissions.catalog:manage-collections.description' => 'Allow the staff member to edit collections and their groups',
'permissions.sales:manage-orders.label' => 'Manage Orders',
'permissions.sales:manage-orders.description' => 'Allow the staff member to manage orders',
'permissions.sales:manage-customers.label' => 'Manage Customers',
'permissions.sales:manage-customers.description' => 'Allow the staff member to manage customers',
'permissions.sales:manage-discounts.label' => 'Manage Discounts',
'permissions.sales:manage-discounts.description' => 'Allow the staff member to manage discounts',
];
72 changes: 72 additions & 0 deletions packages/admin/resources/lang/nl/brand.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
<?php

return [

'label' => 'Brand',

'plural_label' => 'Brands',

'table' => [
'name' => [
'label' => 'Name',
],
'products_count' => [
'label' => 'No. Products',
],
],

'form' => [
'name' => [
'label' => 'Name',
],
],

'action' => [
'delete' => [
'notification' => [
'error_protected' => 'This brand can not be deleted as there are products associated.',
],
],
],
'pages' => [
'products' => [
'label' => 'Products',
'actions' => [
'attach' => [
'label' => 'Associate a product',
'form' => [
'record_id' => [
'label' => 'Product',
],
],
'notification' => [
'success' => 'Product attached to brand',
],
],
'detach' => [
'notification' => [
'success' => 'Product detached.',
],
],
],
],
'collections' => [
'label' => 'Collections',
'table' => [
'header_actions' => [
'attach' => [
'record_select' => [
'placeholder' => 'Select a collection',
],
],
],
],
'actions' => [
'attach' => [
'label' => 'Associate a collection',
],
],
],
],

];
Loading

0 comments on commit 3c8cf40

Please sign in to comment.