first upload all files
This commit is contained in:
20
Modules/Coupon/Resources/lang/en/attributes.php
Normal file
20
Modules/Coupon/Resources/lang/en/attributes.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'name' => 'Name',
|
||||
'code' => 'Code',
|
||||
'is_percent' => 'Discount Type',
|
||||
'value' => 'Value',
|
||||
'free_shipping' => 'Free Shipping',
|
||||
'start_date' => 'Start date',
|
||||
'end_date' => 'End date',
|
||||
'is_active' => 'Status',
|
||||
'minimum_spend' => 'Minimum Spend',
|
||||
'maximum_spend' => 'Maximum Spend',
|
||||
'products' => 'Products',
|
||||
'exclude_products' => 'Exclude Products',
|
||||
'categories' => 'Categories',
|
||||
'exclude_categories' => 'Exclude Categories',
|
||||
'usage_limit_per_coupon' => 'Usage Limit Per Coupon',
|
||||
'usage_limit_per_customer' => 'Usage Limit Per Customer',
|
||||
];
|
||||
27
Modules/Coupon/Resources/lang/en/coupons.php
Normal file
27
Modules/Coupon/Resources/lang/en/coupons.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'coupon' => 'Coupon',
|
||||
'coupons' => 'Coupons',
|
||||
'table' => [
|
||||
'name' => 'Name',
|
||||
'code' => 'Code',
|
||||
'discount' => 'Discount',
|
||||
],
|
||||
'tabs' => [
|
||||
'group' => [
|
||||
'coupon_information' => 'Coupon Information',
|
||||
],
|
||||
'general' => 'General',
|
||||
'usage_restrictions' => 'Usage Restrictions',
|
||||
'usage_limits' => 'Usage Limits',
|
||||
],
|
||||
'form' => [
|
||||
'price_types' => [
|
||||
'0' => 'Fixed',
|
||||
'1' => 'Percent',
|
||||
],
|
||||
'allow_free_shipping' => 'Allow free shipping',
|
||||
'enable_the_coupon' => 'Enable the coupon',
|
||||
],
|
||||
];
|
||||
11
Modules/Coupon/Resources/lang/en/messages.php
Normal file
11
Modules/Coupon/Resources/lang/en/messages.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'not_exists' => 'The coupon does not exist.',
|
||||
'already_applied' => 'The coupon has been already applied.',
|
||||
'invalid_coupon' => 'The coupon is not valid.',
|
||||
'minimum_spend' => 'You need to spend at least :amount to apply this coupon.',
|
||||
'maximum_spend' => 'You need to spend less than :amount to apply this coupon.',
|
||||
'inapplicable' => 'This coupon is not applicable to your cart.',
|
||||
'usage_limit_reached' => 'The coupon usage limit has been reached.',
|
||||
];
|
||||
8
Modules/Coupon/Resources/lang/en/permissions.php
Normal file
8
Modules/Coupon/Resources/lang/en/permissions.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'index' => 'Index Coupons',
|
||||
'create' => 'Create Coupons',
|
||||
'edit' => 'Edit Coupons',
|
||||
'destroy' => 'Delete Coupons',
|
||||
];
|
||||
Reference in New Issue
Block a user