forked from opencart/opencart
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https://github.com/opencart/opencart/issues/11458
- Loading branch information
1 parent
88b861d
commit 7f220eb
Showing
24 changed files
with
419 additions
and
206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 36 additions & 26 deletions
62
upload/admin/language/en-gb/catalog/subscription_plan.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,48 @@ | ||
<?php | ||
// Heading | ||
$_['heading_title'] = 'Subscription Plans'; | ||
$_['heading_title'] = 'Subscription Plans'; | ||
|
||
// Text | ||
$_['text_success'] = 'Success: You have modified subscription plans!'; | ||
$_['text_list'] = 'Subscription Plan List'; | ||
$_['text_add'] = 'Add Subscription Plan'; | ||
$_['text_edit'] = 'Edit Subscription Plan'; | ||
$_['text_day'] = 'Day'; | ||
$_['text_week'] = 'Week'; | ||
$_['text_semi_month'] = 'Semi Month'; | ||
$_['text_month'] = 'Month'; | ||
$_['text_year'] = 'Year'; | ||
$_['text_success'] = 'Success: You have modified subscription plans!'; | ||
$_['text_list'] = 'Subscription Plan List'; | ||
$_['text_add'] = 'Add Subscription Plan'; | ||
$_['text_edit'] = 'Edit Subscription Plan'; | ||
$_['text_subscription'] = 'Subscription'; | ||
$_['text_trial'] = 'Trial'; | ||
$_['text_day'] = 'Day'; | ||
$_['text_week'] = 'Week'; | ||
$_['text_semi_month'] = 'Semi Month'; | ||
$_['text_month'] = 'Month'; | ||
$_['text_year'] = 'Year'; | ||
|
||
// Entry | ||
$_['entry_name'] = 'Subscription Plan Name'; | ||
$_['entry_duration'] = 'Duration'; | ||
$_['entry_cycle'] = 'Cycle'; | ||
$_['entry_frequency'] = 'Frequency'; | ||
$_['entry_status'] = 'Status'; | ||
$_['entry_sort_order'] = 'Sort Order'; | ||
$_['entry_name'] = 'Subscription Plan Name'; | ||
$_['entry_trial_duration'] = 'Trial Duration'; | ||
$_['entry_trial_cycle'] = 'Trial Cycle'; | ||
$_['entry_trial_frequency'] = 'Trial Frequency'; | ||
$_['entry_trial_status'] = 'Trial Status'; | ||
$_['entry_duration'] = 'Duration'; | ||
$_['entry_cycle'] = 'Cycle'; | ||
$_['entry_frequency'] = 'Frequency'; | ||
$_['entry_status'] = 'Status'; | ||
$_['entry_sort_order'] = 'Sort Order'; | ||
|
||
// Column | ||
$_['column_name'] = 'Subscription Plan Name'; | ||
$_['column_sort_order'] = 'Sort Order'; | ||
$_['column_action'] = 'Action'; | ||
$_['column_name'] = 'Subscription Plan Name'; | ||
$_['column_sort_order'] = 'Sort Order'; | ||
$_['column_action'] = 'Action'; | ||
|
||
// Help | ||
$_['help_duration'] = 'The duration is the number of times the user will make a payment, set this to 0 if you want payments until they are cancelled.'; | ||
$_['help_cycle'] = 'Subscription amounts are calculated by the frequency and cycles.'; | ||
$_['help_frequency'] = 'If you use a frequency of "week" and a cycle of "2", then the user will be billed every 2 weeks.'; | ||
$_['help_trial_duration'] = 'The duration is the number of times the user will make a payment.'; | ||
$_['help_trial_cycle'] = 'Subscription amounts are calculated by the frequency and cycles.'; | ||
$_['help_trial_frequency'] = 'If you use a frequency of "week" and a cycle of "2", then the user will be billed every 2 weeks.'; | ||
$_['help_duration'] = 'The duration is the number of times the user will make a payment, set this to 0 if you want payments until they are cancelled.'; | ||
$_['help_cycle'] = 'Subscription amounts are calculated by the frequency and cycles.'; | ||
$_['help_frequency'] = 'If you use a frequency of "week" and a cycle of "2", then the user will be billed every 2 weeks.'; | ||
|
||
// Error | ||
$_['error_warning'] = 'Warning: Please check the form carefully for errors!'; | ||
$_['error_permission'] = 'Warning: You do not have permission to modify subscription plans!'; | ||
$_['error_name'] = 'Subscription Plan Name must be greater than 3 and less than 255 characters!'; | ||
$_['error_product'] = 'Warning: This subscription plans cannot be deleted as it is currently assigned to %s products!'; | ||
$_['error_warning'] = 'Warning: Please check the form carefully for errors!'; | ||
$_['error_permission'] = 'Warning: You do not have permission to modify subscription plans!'; | ||
$_['error_name'] = 'Subscription Plan Name must be greater than 3 and less than 255 characters!'; | ||
$_['error_trial_duration'] = 'Trial duration must be greater than 0!'; | ||
$_['error_product'] = 'Warning: This subscription plans cannot be deleted as it is currently assigned to %s products!'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.