Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions packages/admin/resources/lang/fa/actions.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<?php

return [
'collections' => [
'create_root' => [
'label' => 'Create Root Collection',
],
'create_child' => [
'label' => 'Create Child Collection',
],
'move' => [
'label' => 'Move Collection',
],
'delete' => [
'label' => 'Delete',
'notifications' => [
'cannot_delete' => [
'title' => 'Cannot Delete',
'body' => 'This collection has child collections and cannot be deleted.',
],
],
],
],
'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/fa/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',
],

];
99 changes: 99 additions & 0 deletions packages/admin/resources/lang/fa/address.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
<?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',
],
'tax_identifier' => [
'label' => 'Tax Identifier',
],
'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',
],
'tax_identifier' => [
'label' => 'Tax Identifier',
],
'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/fa/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/fa/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/fa/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',
];
75 changes: 75 additions & 0 deletions packages/admin/resources/lang/fa/brand.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<?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' => [
'edit' => [
'title' => 'Basic Information',
],
'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