first commit

This commit is contained in:
sujan
2024-08-06 18:06:00 +05:45
commit a2fa49071a
2745 changed files with 391199 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?php
// Heading
$_['heading_title'] = 'Attributes';
// Text
$_['text_success'] = 'Success: You have modified attributes!';
$_['text_list'] = 'Attribute List';
$_['text_add'] = 'Add Attribute';
$_['text_edit'] = 'Edit Attribute';
// Column
$_['column_name'] = 'Attribute Name';
$_['column_attribute_group'] = 'Attribute Group';
$_['column_sort_order'] = 'Sort Order';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Attribute Name';
$_['entry_attribute_group'] = 'Attribute Group';
$_['entry_sort_order'] = 'Sort Order';
// Error
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
$_['error_permission'] = 'Warning: You do not have permission to modify attributes!';
$_['error_attribute_group'] = 'Attribute Group required!';
$_['error_name'] = 'Attribute Name must be between 1 and 64 characters!';
$_['error_product'] = 'Warning: This attribute cannot be deleted as it is currently assigned to %s products!';

View File

@@ -0,0 +1,25 @@
<?php
// Heading
$_['heading_title'] = 'Attribute Groups';
// Text
$_['text_success'] = 'Success: You have modified attribute groups!';
$_['text_list'] = 'Attribute Group List';
$_['text_add'] = 'Add Attribute Group';
$_['text_edit'] = 'Edit Attribute Group';
// Column
$_['column_name'] = 'Attribute Group Name';
$_['column_sort_order'] = 'Sort Order';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Attribute Group Name';
$_['entry_sort_order'] = 'Sort Order';
// Error
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
$_['error_permission'] = 'Warning: You do not have permission to modify attribute groups!';
$_['error_name'] = 'Attribute Group Name must be between 1 and 64 characters!';
$_['error_attribute'] = 'Warning: This attribute group cannot be deleted as it is currently assigned to %s attributes!';
$_['error_product'] = 'Warning: This attribute group cannot be deleted as it is currently assigned to %s products!';

View File

@@ -0,0 +1,49 @@
<?php
// Heading
$_['heading_title'] = 'Categories';
// Text
$_['text_success'] = 'Success: You have modified categories!';
$_['text_list'] = 'Category List';
$_['text_add'] = 'Add Category';
$_['text_edit'] = 'Edit Category';
$_['text_default'] = 'Default';
$_['text_keyword'] = 'Do not use spaces, instead replace spaces with - and make sure the SEO URL is globally unique.';
// Column
$_['column_name'] = 'Category Name';
$_['column_sort_order'] = 'Sort Order';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Category Name';
$_['entry_description'] = 'Description';
$_['entry_meta_title'] = 'Meta Tag Title';
$_['entry_meta_keyword'] = 'Meta Tag Keywords';
$_['entry_meta_description'] = 'Meta Tag Description';
$_['entry_store'] = 'Stores';
$_['entry_keyword'] = 'Keyword';
$_['entry_parent'] = 'Parent';
$_['entry_filter'] = 'Filters';
$_['entry_image'] = 'Image';
$_['entry_top'] = 'Top';
$_['entry_column'] = 'Columns';
$_['entry_sort_order'] = 'Sort Order';
$_['entry_status'] = 'Status';
$_['entry_layout'] = 'Layout Override';
// Help
$_['help_parent'] = '(Autocomplete)';
$_['help_filter'] = '(Autocomplete)';
$_['help_top'] = 'Display in the top menu bar. Only works for the top parent categories.';
$_['help_column'] = 'Number of columns to use for the bottom 3 categories. Only works for the top parent categories.';
// Error
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
$_['error_permission'] = 'Warning: You do not have permission to modify categories!';
$_['error_name'] = 'Category Name must be between 1 and 255 characters!';
$_['error_meta_title'] = 'Meta Title must be greater than 1 and less than 255 characters!';
$_['error_parent'] = 'The parent category you have chosen is a child of the current one!';
$_['error_keyword'] = 'SEO URL must be between 1 and 64 characters!';
$_['error_keyword_exists'] = 'SEO URL must be unique!';
$_['error_keyword_character'] = 'Keyword can only use characters a-z, 0-9, - and _!';

View File

@@ -0,0 +1,42 @@
<?php
// Heading
$_['heading_title'] = 'Downloads';
// Text
$_['text_success'] = 'Success: You have modified downloads!';
$_['text_list'] = 'Download List';
$_['text_add'] = 'Add Download';
$_['text_edit'] = 'Edit Download';
$_['text_upload'] = 'Your file was successfully uploaded!';
$_['text_report'] = 'Reports';
// Column
$_['column_name'] = 'Download Name';
$_['column_ip'] = 'IP';
$_['column_account'] = 'Accounts';
$_['column_store'] = 'Store';
$_['column_country'] = 'Country';
$_['column_date_added'] = 'Date Added';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Download Name';
$_['entry_filename'] = 'Filename';
$_['entry_mask'] = 'Mask';
// Help
$_['help_filename'] = 'You can upload via the upload button or use FTP to upload to the download directory and enter the details below.';
$_['help_mask'] = 'It is recommended that the filename and the mask are different to stop people trying to directly link to your downloads.';
// Error
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
$_['error_permission'] = 'Warning: You do not have permission to modify downloads!';
$_['error_name'] = 'Download Name must be between 3 and 64 characters!';
$_['error_filename'] = 'Filename must be between 3 and 128 characters!';
$_['error_filename_character'] = 'Filename can only use characters a-z, 0-9, - and _!';
$_['error_directory'] = 'Downloads need to be within the storage/download directory!';
$_['error_exists'] = 'File does not exist!';
$_['error_mask'] = 'Mask must be between 3 and 128 characters!';
$_['error_mask_character'] = 'Mask can only use characters a-z, 0-9, - and _!';
$_['error_file_type'] = 'Invalid file type!';
$_['error_product'] = 'Warning: This download cannot be deleted as it is currently assigned to %s products!';

View File

@@ -0,0 +1,28 @@
<?php
// Heading
$_['heading_title'] = 'Filters';
// Text
$_['text_success'] = 'Success: You have modified filters!';
$_['text_list'] = 'Filter List';
$_['text_add'] = 'Add Filter';
$_['text_edit'] = 'Edit Filter';
$_['text_group'] = 'Filter Group';
$_['text_value'] = 'Filter Values';
// Column
$_['column_group'] = 'Filter Group';
$_['column_sort_order'] = 'Sort Order';
$_['column_action'] = 'Action';
// Entry
$_['entry_group'] = 'Filter Group Name';
$_['entry_name'] = 'Filter Name';
$_['entry_sort_order'] = 'Sort Order';
// Error
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
$_['error_permission'] = 'Warning: You do not have permission to modify filters!';
$_['error_group'] = 'Filter Group Name must be between 1 and 64 characters!';
$_['error_name'] = 'Filter Name must be between 1 and 64 characters!';
$_['error_values'] = 'Warning: Filter Values required!';

View File

@@ -0,0 +1,47 @@
<?php
// Heading
$_['heading_title'] = 'Information';
// Text
$_['text_success'] = 'Success: You have modified information!';
$_['text_list'] = 'Information List';
$_['text_add'] = 'Add Information';
$_['text_edit'] = 'Edit Information';
$_['text_default'] = 'Default';
$_['text_keyword'] = 'Do not use spaces, instead replace spaces with - and make sure the SEO URL is globally unique.';
// Column
$_['column_title'] = 'Information Title';
$_['column_sort_order'] = 'Sort Order';
$_['column_action'] = 'Action';
// Entry
$_['entry_title'] = 'Information Title';
$_['entry_description'] = 'Description';
$_['entry_meta_title'] = 'Meta Tag Title';
$_['entry_meta_keyword'] = 'Meta Tag Keywords';
$_['entry_meta_description'] = 'Meta Tag Description';
$_['entry_store'] = 'Stores';
$_['entry_keyword'] = 'Keyword';
$_['entry_bottom'] = 'Bottom';
$_['entry_status'] = 'Status';
$_['entry_sort_order'] = 'Sort Order';
$_['entry_layout'] = 'Layout Override';
// Help
$_['help_bottom'] = 'Display in the bottom footer.';
// Error
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
$_['error_permission'] = 'Warning: You do not have permission to modify information!';
$_['error_title'] = 'Information Title must be between 1 and 64 characters!';
$_['error_description'] = 'Description must be more than 3 characters!';
$_['error_meta_title'] = 'Meta Title must be greater than 1 and less than 255 characters!';
$_['error_keyword'] = 'SEO URL must be between 1 and 64 characters!';
$_['error_keyword_exists'] = 'SEO URL must be unique!';
$_['error_keyword_character'] = 'Keyword can only use characters a-z, 0-9, - and _!';
$_['error_account'] = 'Warning: This information page cannot be deleted as it is currently assigned as the store account terms!';
$_['error_checkout'] = 'Warning: This information page cannot be deleted as it is currently assigned as the store checkout terms!';
$_['error_affiliate'] = 'Warning: This information page cannot be deleted as it is currently assigned as the store affiliate terms!';
$_['error_return'] = 'Warning: This information page cannot be deleted as it is currently assigned as the store return terms!';
$_['error_store'] = 'Warning: This information page cannot be deleted as it is currently used by %s stores!';

View File

@@ -0,0 +1,33 @@
<?php
// Heading
$_['heading_title'] = 'Manufacturers';
// Text
$_['text_success'] = 'Success: You have modified manufacturers!';
$_['text_list'] = 'Manufacturer List';
$_['text_add'] = 'Add Manufacturer';
$_['text_edit'] = 'Edit Manufacturer';
$_['text_default'] = 'Default';
$_['text_keyword'] = 'Do not use spaces, instead replace spaces with - and make sure the SEO URL is globally unique.';
// Column
$_['column_name'] = 'Manufacturer Name';
$_['column_sort_order'] = 'Sort Order';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Manufacturer Name';
$_['entry_store'] = 'Stores';
$_['entry_keyword'] = 'Keyword';
$_['entry_image'] = 'Image';
$_['entry_sort_order'] = 'Sort Order';
$_['entry_layout'] = 'Layout Override';
// Error
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
$_['error_permission'] = 'Warning: You do not have permission to modify manufacturers!';
$_['error_name'] = 'Manufacturer Name must be between 1 and 64 characters!';
$_['error_keyword'] = 'SEO URL must be between 1 and 64 characters!';
$_['error_keyword_exists'] = 'SEO URL must be unique!';
$_['error_keyword_character'] = 'Keyword can only use characters a-z, 0-9, - and _!';
$_['error_product'] = 'Warning: This manufacturer cannot be deleted as it is currently assigned to %s products!';

View File

@@ -0,0 +1,43 @@
<?php
// Heading
$_['heading_title'] = 'Options';
// Text
$_['text_success'] = 'Success: You have modified options!';
$_['text_list'] = 'Option List';
$_['text_add'] = 'Add Option';
$_['text_edit'] = 'Edit Option';
$_['text_choose'] = 'Choose';
$_['text_select'] = 'Select';
$_['text_radio'] = 'Radio';
$_['text_checkbox'] = 'Checkbox';
$_['text_input'] = 'Input';
$_['text_text'] = 'Text';
$_['text_textarea'] = 'Textarea';
$_['text_file'] = 'File';
$_['text_date'] = 'Date';
$_['text_datetime'] = 'Date &amp; Time';
$_['text_time'] = 'Time';
$_['text_option'] = 'Option';
$_['text_value'] = 'Option Values';
// Column
$_['column_name'] = 'Option Name';
$_['column_sort_order'] = 'Sort Order';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Option Name';
$_['entry_type'] = 'Type';
$_['entry_option_value'] = 'Option Value Name';
$_['entry_image'] = 'Image';
$_['entry_sort_order'] = 'Sort Order';
// Error
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
$_['error_permission'] = 'Warning: You do not have permission to modify options!';
$_['error_name'] = 'Option Name must be between 1 and 128 characters!';
$_['error_type'] = 'Warning: Option Values required!';
$_['error_option_value'] = 'Option Value Name must be between 1 and 128 characters!';
$_['error_value'] = 'Warning: This option value cannot be deleted as it is currently assigned to %s products!';
$_['error_product'] = 'Warning: This option cannot be deleted as it is currently assigned to %s products!';

View File

@@ -0,0 +1,133 @@
<?php
// Heading
$_['heading_title'] = 'Products';
// Text
$_['text_success'] = 'Success: You have modified products!';
$_['text_variant'] = 'Please note because this is a variant product you must override the <a href="%s" target="_blank" class="alert-link">master product</a> data. Otherwise the data will get replaced with the <a href="%s" target="_blank" class="alert-link">master product</a> data when saved.';
$_['text_list'] = 'Product List';
$_['text_add'] = 'Add Product';
$_['text_edit'] = 'Edit Product';
$_['text_variant_add'] = 'Add Variant';
$_['text_model'] = 'Model';
$_['text_price'] = 'Price';
$_['text_stock'] = 'Stock';
$_['text_specification'] = 'Specification';
$_['text_filter'] = 'Filter';
$_['text_default'] = 'Default';
$_['text_keyword'] = 'Do not use spaces, instead replace spaces with - and make sure the SEO URL is globally unique.';
$_['text_option_add'] = 'Add Option';
$_['text_option_value'] = 'Option Value';
$_['text_select'] = 'Select';
$_['text_radio'] = 'Radio';
$_['text_checkbox'] = 'Checkbox';
$_['text_input'] = 'Input';
$_['text_text'] = 'Text';
$_['text_textarea'] = 'Textarea';
$_['text_file'] = 'File';
$_['text_date'] = 'Date';
$_['text_datetime'] = 'Date &amp; Time';
$_['text_time'] = 'Time';
$_['text_image'] = 'Image';
$_['text_image_additional'] = 'Additional Images';
$_['text_reward'] = 'Buy Points';
$_['text_points'] = 'Reward Points';
$_['text_report'] = 'Reports';
// Column
$_['column_name'] = 'Product Name';
$_['column_model'] = 'Model';
$_['column_image'] = 'Image';
$_['column_price'] = 'Price';
$_['column_quantity'] = 'Quantity';
$_['column_status'] = 'Status';
$_['column_ip'] = 'IP';
$_['column_store'] = 'Store';
$_['column_country'] = 'Country';
$_['column_date_added'] = 'Date Added';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Product Name';
$_['entry_description'] = 'Description';
$_['entry_meta_title'] = 'Meta Tag Title';
$_['entry_meta_keyword'] = 'Meta Tag Keywords';
$_['entry_meta_description'] = 'Meta Tag Description';
$_['entry_store'] = 'Stores';
$_['entry_keyword'] = 'Keyword';
$_['entry_model'] = 'Model';
$_['entry_sku'] = 'SKU';
$_['entry_upc'] = 'UPC';
$_['entry_ean'] = 'EAN';
$_['entry_jan'] = 'JAN';
$_['entry_isbn'] = 'ISBN';
$_['entry_mpn'] = 'MPN';
$_['entry_location'] = 'Location';
$_['entry_shipping'] = 'Requires Shipping';
$_['entry_manufacturer'] = 'Manufacturer';
$_['entry_date_available'] = 'Date Available';
$_['entry_quantity'] = 'Quantity';
$_['entry_minimum'] = 'Minimum Quantity';
$_['entry_stock_status'] = 'Out Of Stock Status';
$_['entry_price'] = 'Price';
$_['entry_trial_price'] = 'Trial Price';
$_['entry_tax_class'] = 'Tax Class';
$_['entry_points'] = 'Points';
$_['entry_subtract'] = 'Subtract Stock';
$_['entry_weight_class'] = 'Weight Class';
$_['entry_weight'] = 'Weight';
$_['entry_dimension'] = 'Dimensions (L x W x H)';
$_['entry_length_class'] = 'Length Class';
$_['entry_length'] = 'Length';
$_['entry_width'] = 'Width';
$_['entry_height'] = 'Height';
$_['entry_option'] = 'Option';
$_['entry_option_value'] = 'Option Value';
$_['entry_customer_group'] = 'Customer Group';
$_['entry_date_start'] = 'Date Start';
$_['entry_date_end'] = 'Date End';
$_['entry_priority'] = 'Priority';
$_['entry_attribute'] = 'Attribute';
$_['entry_attribute_group'] = 'Attribute Group';
$_['entry_image'] = 'Image';
$_['entry_text'] = 'Text';
$_['entry_required'] = 'Required';
$_['entry_status'] = 'Status';
$_['entry_sort_order'] = 'Sort Order';
$_['entry_category'] = 'Categories';
$_['entry_filter'] = 'Filters';
$_['entry_download'] = 'Downloads';
$_['entry_related'] = 'Related Products';
$_['entry_tag'] = 'Product Tags';
$_['entry_reward'] = 'Reward Points';
$_['entry_layout'] = 'Layout Override';
$_['entry_subscription'] = 'Subscription Plan';
// Help
$_['help_tag'] = 'Comma separated';
$_['help_sku'] = 'Stock Keeping Unit';
$_['help_upc'] = 'Universal Product Code';
$_['help_ean'] = 'European Article Number';
$_['help_jan'] = 'Japanese Article Number';
$_['help_isbn'] = 'International Standard Book Number';
$_['help_mpn'] = 'Manufacturer Part Number';
$_['help_minimum'] = 'Force a minimum ordered amount';
$_['help_stock_status'] = 'Status shown when a product is out of stock';
$_['help_manufacturer'] = '(Autocomplete)';
$_['help_category'] = '(Autocomplete)';
$_['help_filter'] = '(Autocomplete)';
$_['help_download'] = '(Autocomplete)';
$_['help_related'] = '(Autocomplete)';
$_['help_option'] = '(Autocomplete)';
$_['help_points'] = 'Number of points needed to buy this item. If you don\'t want this product to be purchased with points leave as 0.';
// Error
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
$_['error_permission'] = 'Warning: You do not have permission to modify products!';
$_['error_name'] = 'Product Name must be greater than 1 and less than 255 characters!';
$_['error_meta_title'] = 'Meta Title must be greater than 1 and less than 255 characters!';
$_['error_model'] = 'Product Model must be greater than 1 and less than 64 characters!';
$_['error_keyword'] = 'SEO URL must be between 1 and 64 characters!';
$_['error_keyword_exists'] = 'SEO URL must be unique!';
$_['error_keyword_character'] = 'Keyword can only use characters a-z, 0-9, - and _!';
$_['error_required'] = '%s required!';

View File

@@ -0,0 +1,42 @@
<?php
// Heading
$_['heading_title'] = 'Reviews';
// Text
$_['text_success'] = 'Success: You have modified reviews!';
$_['text_next'] = 'Success: You have modified %s product ratings out of %s!';
$_['text_list'] = 'Review List';
$_['text_add'] = 'Add Review';
$_['text_edit'] = 'Edit Review';
$_['text_filter'] = 'Filter';
// Column
$_['column_product'] = 'Product';
$_['column_author'] = 'Author';
$_['column_rating'] = 'Rating';
$_['column_status'] = 'Status';
$_['column_date_added'] = 'Date Added';
$_['column_action'] = 'Action';
// Entry
$_['entry_product'] = 'Product';
$_['entry_author'] = 'Author';
$_['entry_rating'] = 'Rating';
$_['entry_status'] = 'Status';
$_['entry_text'] = 'Text';
$_['entry_date_from'] = 'Date From';
$_['entry_date_to'] = 'Date To';
// Help
$_['help_product'] = '(Autocomplete)';
// Button
$_['button_rating'] = 'Sync Product Ratings';
// Error
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
$_['error_permission'] = 'Warning: You do not have permission to modify reviews!';
$_['error_product'] = 'Product required!';
$_['error_author'] = 'Author must be between 3 and 64 characters!';
$_['error_text'] = 'Review Text must be at least 1 character!';
$_['error_rating'] = 'Review rating required!';

View File

@@ -0,0 +1,48 @@
<?php
// Heading
$_['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_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_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';
// Help
$_['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_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!';

View File

@@ -0,0 +1,22 @@
<?php
// Heading
$_['heading_title'] = 'Anti-Spam';
// Text
$_['text_success'] = 'Success: You have modified anti-spam!';
$_['text_list'] = 'Anti-Spam List';
$_['text_add'] = 'Add Anti-Spam';
$_['text_edit'] = 'Edit Anti-Spam';
// Column
$_['column_keyword'] = 'Keyword';
$_['column_action'] = 'Action';
// Entry
$_['entry_keyword'] = 'Keyword';
// Error
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
$_['error_permission'] = 'Warning: You do not have permission to modify anti-spam!';
$_['error_keyword'] = 'Keyword must be between 1 and 64 characters!';
$_['error_keyword_exists'] = 'Keyword must be unique!';

View File

@@ -0,0 +1,43 @@
<?php
// Heading
$_['heading_title'] = 'Articles';
// Text
$_['text_success'] = 'Success: You have modified articles!';
$_['text_list'] = 'Article List';
$_['text_add'] = 'Add Article';
$_['text_edit'] = 'Edit Article';
$_['text_default'] = 'Default';
$_['text_keyword'] = 'Do not use spaces, instead replace spaces with - and make sure the SEO URL is globally unique.';
// Column
$_['column_name'] = 'Article Name';
$_['column_author'] = 'Author';
$_['column_date_added'] = 'Date Added';
$_['column_action'] = 'Action';
// Entry
$_['entry_image'] = 'Image';
$_['entry_name'] = 'Article Name';
$_['entry_description'] = 'Description';
$_['entry_tag'] = 'Tags';
$_['entry_meta_title'] = 'Meta Tag Title';
$_['entry_meta_keyword'] = 'Meta Tag Keywords';
$_['entry_meta_description'] = 'Meta Tag Description';
$_['entry_topic'] = 'Topic';
$_['entry_author'] = 'Author';
$_['entry_store'] = 'Stores';
$_['entry_sort_order'] = 'Sort Order';
$_['entry_status'] = 'Status';
$_['entry_keyword'] = 'Keyword';
$_['entry_layout'] = 'Layout Override';
// Error
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
$_['error_permission'] = 'Warning: You do not have permission to modify articles!';
$_['error_name'] = 'Article Name must be between 1 and 255 characters!';
$_['error_meta_title'] = 'Meta Title must be greater than 1 and less than 255 characters!';
$_['error_keyword'] = 'SEO URL must be between 1 and 64 characters!';
$_['error_keyword_exists'] = 'SEO URL must be unique!';
$_['error_keyword_character'] = 'Keyword can only use characters a-z, 0-9, - and _!';
$_['error_author'] = 'Author must be between 3 and 64 characters!';

View File

@@ -0,0 +1,27 @@
<?php
// Heading
$_['heading_title'] = 'Article Comments';
// Text
$_['text_success'] = 'Success: You have modified article comments!';
$_['text_list'] = 'Article Comments List';
$_['text_filter'] = 'Filter';
// Column
$_['column_comment'] = 'Comment';
$_['column_article'] = 'Article';
$_['column_status'] = 'Status';
$_['column_date_added'] = 'Date Added';
$_['column_action'] = 'Action';
// Entry
$_['entry_keyword'] = 'Keyword';
$_['entry_article'] = 'Article';
$_['entry_customer'] = 'Customer';
$_['entry_status'] = 'Status';
$_['entry_date_added'] = 'Date Added';
// Error
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
$_['error_permission'] = 'Warning: You do not have permission to modify article comments!';
$_['error_keyword'] = 'Keyword must be between 1 and 64 characters!';

View File

@@ -0,0 +1,37 @@
<?php
// Heading
$_['heading_title'] = 'Topics';
// Text
$_['text_success'] = 'Success: You have modified topics!';
$_['text_list'] = 'Topic List';
$_['text_add'] = 'Add Topic';
$_['text_edit'] = 'Edit Topic';
$_['text_default'] = 'Default';
$_['text_keyword'] = 'Do not use spaces, instead replace spaces with - and make sure the SEO URL is globally unique.';
// Column
$_['column_name'] = 'Topic Name';
$_['column_sort_order'] = 'Sort Order';
$_['column_action'] = 'Action';
// Entry
$_['entry_image'] = 'Image';
$_['entry_name'] = 'Topic Name';
$_['entry_description'] = 'Description';
$_['entry_meta_title'] = 'Meta Tag Title';
$_['entry_meta_keyword'] = 'Meta Tag Keywords';
$_['entry_meta_description'] = 'Meta Tag Description';
$_['entry_store'] = 'Stores';
$_['entry_sort_order'] = 'Sort Order';
$_['entry_status'] = 'Status';
$_['entry_keyword'] = 'Keyword';
// Error
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
$_['error_permission'] = 'Warning: You do not have permission to modify topics!';
$_['error_name'] = 'Topic Name must be between 1 and 255 characters!';
$_['error_meta_title'] = 'Meta Title must be greater than 1 and less than 255 characters!';
$_['error_keyword'] = 'SEO URL must be between 1 and 64 characters!';
$_['error_keyword_exists'] = 'SEO URL must be unique!';
$_['error_keyword_character'] = 'Keyword can only use characters a-z, 0-9, - and _!';

View File

@@ -0,0 +1,20 @@
<?php
// Heading
$_['heading_title'] = 'Protect your account';
// Text
$_['text_security'] = 'You must answer security question whenever you login from an unknown device or computer.';
$_['text_code'] = 'An email has been sent to your email account with a security code. Enter the code below to continue.';
$_['text_locked'] = 'Your account has been locked!';
$_['text_unlock'] = 'Your account has been locked because of to many incorrect attempts at entering the security code. Click the reset button to receive a reset link via your email account.';
$_['text_unlocked'] = 'Success: Your account has been unlocked!';
$_['text_link'] = 'Success: An email with a reset link has been sent your email address!';
$_['text_resend'] = 'Success: An email has been sent to your email account with a security code!';
// Entry
$_['entry_code'] = 'Security Code';
// Error
$_['error_warning'] = 'You have exceeded the allowed number of security code attempts!';
$_['error_code'] = 'Security code does not match!';
$_['error_reset'] = 'Warning: Could not reset your security code!';

View File

@@ -0,0 +1,87 @@
<?php
// Text
$_['text_address_format'] = 'Address Format';
$_['text_affiliate'] = 'Affiliate';
$_['text_api'] = 'API';
$_['text_attribute'] = 'Attributes';
$_['text_attribute_group'] = 'Attribute Groups';
$_['text_antispam'] = 'Anti-Spam';
$_['text_article'] = 'Articles';
$_['text_topic'] = 'Topics';
$_['text_comment'] = 'Comments';
$_['text_backup'] = 'Backup / Restore';
$_['text_banner'] = 'Banners';
$_['text_catalog'] = 'Catalog';
$_['text_category'] = 'Categories';
$_['text_cms'] = 'CMS';
$_['text_contact'] = 'Mail';
$_['text_country'] = 'Countries';
$_['text_coupon'] = 'Coupons';
$_['text_cron'] = 'Cron Jobs';
$_['text_currency'] = 'Currencies';
$_['text_customer'] = 'Customers';
$_['text_customer_approval'] = 'Customer Approvals';
$_['text_customer_group'] = 'Customer Groups';
$_['text_customer_online'] = 'Customer Online';
$_['text_custom_field'] = 'Custom Fields';
$_['text_dashboard'] = 'Dashboard';
$_['text_design'] = 'Design';
$_['text_download'] = 'Downloads';
$_['text_log'] = 'Error Logs';
$_['text_event'] = 'Events';
$_['text_extension'] = 'Extensions';
$_['text_filter'] = 'Filters';
$_['text_geo_zone'] = 'Geo Zones';
$_['text_gdpr'] = 'GDPR';
$_['text_information'] = 'Information';
$_['text_installer'] = 'Installer';
$_['text_language'] = 'Languages';
$_['text_language_editor'] = 'Language Editor';
$_['text_layout'] = 'Layouts';
$_['text_length_class'] = 'Length Classes';
$_['text_localisation'] = 'Localisation';
$_['text_location'] = 'Store Location';
$_['text_maintenance'] = 'Maintenance';
$_['text_manufacturer'] = 'Manufacturers';
$_['text_marketing'] = 'Marketing';
$_['text_marketplace'] = 'Marketplace';
$_['text_menu'] = 'Menu Manager';
$_['text_navigation'] = 'Navigation';
$_['text_online'] = 'Who\'s Online';
$_['text_option'] = 'Options';
$_['text_order'] = 'Orders';
$_['text_order_status'] = 'Order Statuses';
$_['text_product'] = 'Products';
$_['text_product_option'] = 'Product Options';
$_['text_reports'] = 'Reports';
$_['text_review'] = 'Reviews';
$_['text_return'] = 'Returns';
$_['text_return_action'] = 'Return Actions';
$_['text_return_reason'] = 'Return Reasons';
$_['text_return_status'] = 'Return Statuses';
$_['text_sale'] = 'Sales';
$_['text_setting'] = 'Settings';
$_['text_seo_url'] = 'SEO URL';
$_['text_startup'] = 'Startup';
$_['text_statistics'] = 'Statistics';
$_['text_stock_status'] = 'Stock Statuses';
$_['text_system'] = 'System';
$_['text_subscription_plan'] = 'Subscription Plans';
$_['text_subscription'] = 'Subscriptions';
$_['text_subscription_status'] = 'Subscription Statuses';
$_['text_tax'] = 'Taxes';
$_['text_tax_class'] = 'Tax Classes';
$_['text_tax_rate'] = 'Tax Rates';
$_['text_theme'] = 'Theme Editor';
$_['text_translation'] = 'Translations';
$_['text_upgrade'] = 'Upgrade';
$_['text_upload'] = 'Uploads';
$_['text_users'] = 'Users';
$_['text_user_group'] = 'User Groups';
$_['text_voucher'] = 'Gift Vouchers';
$_['text_voucher_theme'] = 'Voucher Themes';
$_['text_weight_class'] = 'Weight Classes';
$_['text_zone'] = 'Zones';
$_['text_complete_status'] = 'Orders Completed';
$_['text_processing_status'] = 'Orders Processing';
$_['text_other_status'] = 'Other Statuses';

View File

@@ -0,0 +1,3 @@
<?php
// Heading
$_['heading_title'] = 'Dashboard';

View File

@@ -0,0 +1,25 @@
<?php
// Heading
$_['heading_title'] = 'Developer Settings';
// Text
$_['text_success'] = 'Success: You have modified developer settings!';
$_['text_theme'] = 'Theme';
$_['text_sass'] = 'SASS';
$_['text_cache'] = 'Success: You have cleared the %s cache!';
// Column
$_['column_component'] = 'Component';
$_['column_action'] = 'Action';
// Entry
$_['entry_theme'] = 'Theme';
$_['entry_sass'] = 'SASS';
$_['entry_cache'] = 'Cache';
// Button
$_['button_on'] = 'On';
$_['button_off'] = 'Off';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify developer settings!';

View File

@@ -0,0 +1,23 @@
<?php
// Heading
$_['heading_title'] = 'Image Manager';
// Text
$_['text_uploaded'] = 'Success: Your file has been uploaded!';
$_['text_directory'] = 'Success: Directory created!';
$_['text_delete'] = 'Success: Your file or directory has been deleted!';
// Entry
$_['entry_search'] = 'Search..';
$_['entry_folder'] = 'Folder Name';
// Error
$_['error_permission'] = 'Warning: Permission Denied!';
$_['error_filename'] = 'Warning: Filename must be between 3 and 255!';
$_['error_folder'] = 'Warning: Folder name must be between 3 and 255!';
$_['error_exists'] = 'Warning: A file or directory with the same name already exists!';
$_['error_directory'] = 'Warning: Directory does not exist!';
$_['error_filesize'] = 'Warning: Incorrect file size!';
$_['error_file_type'] = 'Warning: Incorrect file type!';
$_['error_upload'] = 'Warning: File could not be uploaded for an unknown reason!';
$_['error_delete'] = 'Warning: You cannot delete this directory!';

View File

@@ -0,0 +1,4 @@
<?php
// Text
$_['text_footer'] = '<a href="https://www.opencart.com">OpenCart</a> &copy; 2009-' . date('Y') . ' All Rights Reserved.';
$_['text_version'] = 'Version %s';

View File

@@ -0,0 +1,22 @@
<?php
// Heading
$_['heading_title'] = 'Forgot Your Password?';
$_['heading_reset'] = 'Reset your password';
// Text
$_['text_email'] = 'Enter the e-mail address associated with your account. Click submit to have a password reset link e-mailed to you.';
$_['text_success'] = 'An email with a confirmation link has been sent your admin email address.';
$_['text_password'] = 'Enter the new password you wish to use.';
$_['text_reset'] = 'Success: Your password has been successfully updated.';
// Entry
$_['entry_password'] = 'Password';
$_['entry_confirm'] = 'Confirm';
$_['entry_email'] = 'E-Mail Address';
// Error
$_['error_email'] = 'Warning: The E-Mail Address was not found in our records!';
$_['error_code'] = 'Reset code does not match!';
$_['error_disabled'] = 'Password reset has been disabled!';
$_['error_password'] = 'Password must be between 4 and 20 characters!';
$_['error_confirm'] = 'Password and password confirmation do not match!';

View File

@@ -0,0 +1,15 @@
<?php
// Heading
$_['heading_title'] = 'OpenCart';
// Text
$_['text_notification'] = 'Notifications';
$_['text_notification_all'] = 'Show All';
$_['text_notification_none'] = 'There are no notifications';
$_['text_profile'] = 'Your Profile';
$_['text_store'] = 'Stores';
$_['text_help'] = 'Help';
$_['text_homepage'] = 'OpenCart Homepage';
$_['text_support'] = 'Support Forum';
$_['text_documentation'] = 'Documentation';
$_['text_logout'] = 'Logout';

View File

@@ -0,0 +1,2 @@
<?php
$_['error_language'] = 'Warning: Language could not be found!';

View File

@@ -0,0 +1,19 @@
<?php
// Heading
$_['heading_title'] = 'Administration';
// Text
$_['text_heading'] = 'Administration';
$_['text_login'] = 'Please enter your login details.';
$_['text_forgotten'] = 'Forgotten Password';
// Entry
$_['entry_username'] = 'Username';
$_['entry_password'] = 'Password';
// Button
$_['button_login'] = 'Login';
// Error
$_['error_login'] = 'No match for Username and/or Password.';
$_['error_token'] = 'Invalid token session. Please login again.';

View File

@@ -0,0 +1,35 @@
<?php
// Heading
$_['heading_title'] = 'Important Security Notification!';
// Text
$_['text_install'] = 'Installation directory';
$_['text_install_description'] = 'Your installation directory needs deleting!';
$_['text_install_success'] = 'Success: Install directory has been deleted!';
$_['text_storage'] = 'Storage path';
$_['text_storage_description'] = 'It is very important that you move the storage directory outside of the web directory (e.g. public_html, www or htdocs).';
$_['text_storage_success'] = 'Success: Storage directory has been moved!';
$_['text_admin'] = 'Rename admin directory';
$_['text_admin_description'] = 'Please type in a new admin directory name in the field below.';
$_['text_admin_success'] = 'Success: Admin directory has been renamed!';
$_['text_path'] = 'Path';
// Entry
$_['entry_path'] = 'Path';
$_['entry_path_current'] = 'Current Path';
$_['entry_path_new'] = 'New Path';
$_['entry_name'] = 'Directory Name';
// Button
$_['button_move'] = 'Move';
$_['button_rename'] = 'Rename';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify security!';
$_['error_install'] = 'Warning: Install directory does not exist!';
$_['error_storage'] = 'Warning: Storage directory does not exist!';
$_['error_storage_exists'] = 'Warning: Storage folder name already exists!';
$_['error_admin'] = 'Warning: Admin directory does not exist!';
$_['error_admin_exists'] = 'Warning: Admin folder name already exists!';
$_['error_admin_name'] = 'Warning: Admin name cannot be `admin` as it is available to the public!';
$_['error_writable'] = 'Warning: config.php and admin/config.php need to be made writable!';

View File

@@ -0,0 +1,56 @@
<?php
// Heading
$_['heading_title'] = 'Custom Fields';
// Text
$_['text_success'] = 'Success: You have modified custom fields!';
$_['text_list'] = 'Custom Field List';
$_['text_add'] = 'Add Custom Field';
$_['text_edit'] = 'Edit Custom Field';
$_['text_choose'] = 'Choose';
$_['text_select'] = 'Select';
$_['text_radio'] = 'Radio';
$_['text_checkbox'] = 'Checkbox';
$_['text_input'] = 'Input';
$_['text_text'] = 'Text';
$_['text_textarea'] = 'Textarea';
$_['text_file'] = 'File';
$_['text_date'] = 'Date';
$_['text_datetime'] = 'Date &amp; Time';
$_['text_time'] = 'Time';
$_['text_account'] = 'Account';
$_['text_address'] = 'Address';
$_['text_affiliate'] = 'Affiliate';
$_['text_regex'] = 'Regex';
$_['text_custom_field'] = 'Custom Field';
$_['text_value'] = 'Custom Field Values';
// Column
$_['column_name'] = 'Custom Field Name';
$_['column_location'] = 'Location';
$_['column_type'] = 'Type';
$_['column_status'] = 'Status';
$_['column_sort_order'] = 'Sort Order';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Custom Field Name';
$_['entry_location'] = 'Location';
$_['entry_type'] = 'Type';
$_['entry_value'] = 'Value';
$_['entry_validation'] = 'Validation';
$_['entry_custom_value'] = 'Custom Field Value Name';
$_['entry_customer_group'] = 'Customer Group';
$_['entry_required'] = 'Required';
$_['entry_status'] = 'Status';
$_['entry_sort_order'] = 'Sort Order';
// Help
$_['help_regex'] = 'Use regex. E.g: [^a-zA-Z0-9_-]';
$_['help_sort_order'] = 'Use minus to count backwards from the last field in the set.';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify custom fields!';
$_['error_name'] = 'Custom Field Name must be between 1 and 128 characters!';
$_['error_type'] = 'Warning: Custom Field Values required!';
$_['error_custom_value'] = 'Custom Value Name must be between 1 and 128 characters!';

View File

@@ -0,0 +1,104 @@
<?php
// Heading
$_['heading_title'] = 'Customers';
// Text
$_['text_success'] = 'Success: You have modified customers!';
$_['text_list'] = 'Customer List';
$_['text_add'] = 'Add Customer';
$_['text_edit'] = 'Edit Customer';
$_['text_default'] = 'Default';
$_['text_store'] = 'Store';
$_['text_customer'] = 'Customer Details';
$_['text_password'] = 'Password';
$_['text_other'] = 'Other';
$_['text_balance'] = 'Balance';
$_['text_address'] = 'Address';
$_['text_payment_method'] = 'Payment Methods';
$_['text_history'] = 'History';
$_['text_history_add'] = 'Add History';
$_['text_transaction'] = 'Transactions';
$_['text_transaction_add'] = 'Add Transaction';
$_['text_reward'] = 'Reward Points';
$_['text_reward_add'] = 'Add Reward Points';
$_['text_ip'] = 'IP';
$_['text_option'] = 'Options';
$_['text_login'] = 'Login into Store';
$_['text_unlock'] = 'Unlock Account';
$_['text_filter'] = 'Filter';
// Column
$_['column_name'] = 'Customer Name';
$_['column_email'] = 'E-Mail';
$_['column_customer_group'] = 'Customer Group';
$_['column_status'] = 'Status';
$_['column_date_added'] = 'Date Added';
$_['column_comment'] = 'Comment';
$_['column_description'] = 'Description';
$_['column_amount'] = 'Amount';
$_['column_points'] = 'Points';
$_['column_ip'] = 'IP';
$_['column_account'] = 'Accounts';
$_['column_store'] = 'Store';
$_['column_country'] = 'Country';
$_['column_payment_method'] = 'Payment Name';
$_['column_image'] = 'Image';
$_['column_type'] = 'Type';
$_['column_date_expire'] = 'Date Expires';
$_['column_action'] = 'Action';
// Entry
$_['entry_store'] = 'Store';
$_['entry_customer_group'] = 'Customer Group';
$_['entry_firstname'] = 'First Name';
$_['entry_lastname'] = 'Last Name';
$_['entry_email'] = 'E-Mail';
$_['entry_telephone'] = 'Telephone';
$_['entry_newsletter'] = 'Newsletter';
$_['entry_status'] = 'Status';
$_['entry_safe'] = 'Safe';
$_['entry_password'] = 'Password';
$_['entry_confirm'] = 'Confirm';
$_['entry_company'] = 'Company';
$_['entry_address_1'] = 'Address 1';
$_['entry_address_2'] = 'Address 2';
$_['entry_city'] = 'City';
$_['entry_postcode'] = 'Postcode';
$_['entry_country'] = 'Country';
$_['entry_zone'] = 'Region / State';
$_['entry_default'] = 'Default';
$_['entry_comment'] = 'Comment';
$_['entry_description'] = 'Description';
$_['entry_amount'] = 'Amount';
$_['entry_points'] = 'Points';
$_['entry_name'] = 'Customer Name';
$_['entry_ip'] = 'IP';
$_['entry_date_from'] = 'Date From';
$_['entry_date_to'] = 'Date To';
// Button
$_['button_order'] = 'Orders';
// Help
$_['help_safe'] = 'Set to true to avoid this customer from being caught by the anti-fraud system';
$_['help_points'] = 'Use minus to remove points';
// Error
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
$_['error_permission'] = 'Warning: You do not have permission to modify customers!';
$_['error_customer'] = 'Warning: Customer does not exist!';
$_['error_exists'] = 'Warning: E-Mail Address is already registered!';
$_['error_address'] = 'Warning: Address does not exist!';
$_['error_firstname'] = 'First Name must be between 1 and 32 characters!';
$_['error_lastname'] = 'Last Name must be between 1 and 32 characters!';
$_['error_email'] = 'E-Mail Address does not appear to be valid!';
$_['error_telephone'] = 'Telephone must be between 3 and 32 characters!';
$_['error_password'] = 'Password must be between 4 and 20 characters!';
$_['error_confirm'] = 'Password and password confirmation do not match!';
$_['error_address_1'] = 'Address 1 must be between 3 and 128 characters!';
$_['error_city'] = 'City must be between 2 and 128 characters!';
$_['error_postcode'] = 'Postcode must be between 2 and 10 characters for this country!';
$_['error_country'] = 'Please select a country!';
$_['error_zone'] = 'Please select a region / state!';
$_['error_custom_field'] = '%s required!';
$_['error_regex'] = '%s is not a valid input!';

View File

@@ -0,0 +1,32 @@
<?php
// Heading
$_['heading_title'] = 'Customer Approvals';
// Text
$_['text_success'] = 'Success: You have modified customer approvals!';
$_['text_list'] = 'Customer Approval List';
$_['text_default'] = 'Default';
$_['text_customer'] = 'Customer';
$_['text_affiliate'] = 'Affiliate';
$_['text_filter'] = 'Filter';
$_['text_approve'] = 'Approve';
$_['text_deny'] = 'Deny';
// Column
$_['column_customer'] = 'Customer';
$_['column_email'] = 'E-Mail';
$_['column_customer_group'] = 'Customer Group';
$_['column_type'] = 'Type';
$_['column_date_added'] = 'Date Added';
$_['column_action'] = 'Action';
// Entry
$_['entry_customer'] = 'Customer';
$_['entry_email'] = 'E-Mail';
$_['entry_customer_group'] = 'Customer Group';
$_['entry_type'] = 'Type';
$_['entry_date_from'] = 'Date From';
$_['entry_date_to'] = 'Date To';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify customer approvals!';

View File

@@ -0,0 +1,30 @@
<?php
// Heading
$_['heading_title'] = 'Customer Groups';
// Text
$_['text_success'] = 'Success: You have modified customer groups!';
$_['text_list'] = 'Customer Group List';
$_['text_add'] = 'Add Customer Group';
$_['text_edit'] = 'Edit Customer Group';
// Column
$_['column_name'] = 'Customer Group Name';
$_['column_sort_order'] = 'Sort Order';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Customer Group Name';
$_['entry_description'] = 'Description';
$_['entry_approval'] = 'Approve New Customers';
$_['entry_sort_order'] = 'Sort Order';
// Help
$_['help_approval'] = 'Customers must be approved by an administrator before they can login.';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify customer groups!';
$_['error_name'] = 'Customer Group Name must be between 3 and 32 characters!';
$_['error_default'] = 'Warning: This customer group cannot be deleted as it is currently assigned as the default store customer group!';
$_['error_store'] = 'Warning: This customer group cannot be deleted as it is currently assigned to %s stores!';
$_['error_customer'] = 'Warning: This customer group cannot be deleted as it is currently assigned to %s customers!';

View File

@@ -0,0 +1,36 @@
<?php
// Heading
$_['heading_title'] = 'GDPR Approvals';
// Text
$_['text_success'] = 'Success: You have modified GDPR approvals!';
$_['text_list'] = 'GDPR Approval List';
$_['text_info'] = '<strong>GDPR</strong> account deletion requests will process after <strong>%s days</strong> so any fraud detection, chargebacks or refunds can be processed.';
$_['text_approve'] = 'Approve';
$_['text_deny'] = 'Deny';
$_['text_delete'] = 'Delete';
$_['text_unverified'] = 'Unverified';
$_['text_pending'] = 'Pending';
$_['text_processing'] = 'Processing';
$_['text_complete'] = 'Complete';
$_['text_denied'] = 'Denied';
$_['text_export'] = 'Export';
$_['text_remove'] = 'Remove';
$_['text_filter'] = 'Filter';
// Column
$_['column_email'] = 'E-Mail';
$_['column_request'] = 'Request';
$_['column_status'] = 'Status';
$_['column_date_added'] = 'Date Added';
$_['column_action'] = 'Action';
// Entry
$_['entry_email'] = 'E-Mail';
$_['entry_action'] = 'Action';
$_['entry_status'] = 'Status';
$_['entry_date_from'] = 'Date From';
$_['entry_date_to'] = 'Date To';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify GDPR approvals!';

View File

@@ -0,0 +1,367 @@
<?php
// Locale
$_['code'] = 'en';
$_['direction'] = 'ltr';
$_['date_format_short'] = 'd/m/Y';
$_['date_format_long'] = 'l jS F Y';
$_['time_format'] = 'h:i:s A';
$_['datetime_format'] = 'd/m/Y H:i:s';
$_['decimal_point'] = '.';
$_['thousand_point'] = ',';
// Text
$_['text_yes'] = 'Yes';
$_['text_no'] = 'No';
$_['text_on'] = 'On';
$_['text_off'] = 'Off';
$_['text_enabled'] = 'Enabled';
$_['text_disabled'] = 'Disabled';
$_['text_none'] = ' --- None --- ';
$_['text_select'] = ' --- Please Select --- ';
$_['text_select_all'] = 'Select All';
$_['text_all'] = 'All';
$_['text_unselect_all'] = 'Unselect All';
$_['text_all_zones'] = 'All Zones';
$_['text_default'] = ' <b>(Default)</b>';
$_['text_close'] = 'Close';
$_['text_pagination'] = 'Showing %d to %d of %d (%d Pages)';
$_['text_loading'] = 'Loading...';
$_['text_no_results'] = 'No results!';
$_['text_confirm'] = 'Are you sure?';
$_['text_home'] = 'Home';
$_['text_second_ago'] = 'just now';
$_['text_seconds_ago'] = '%s seconds ago';
$_['text_minute_ago'] = '%s minute ago';
$_['text_minutes_ago'] = '%s minutes ago';
$_['text_hour_ago'] = '%s hour ago';
$_['text_hours_ago'] = '%s hours ago';
$_['text_day_ago'] = '%s day ago';
$_['text_days_ago'] = '%s days ago';
$_['text_week_ago'] = '%s week ago';
$_['text_weeks_ago'] = '%s weeks ago';
$_['text_month_ago'] = '%s month ago';
$_['text_months_ago'] = '%s months ago';
$_['text_year_ago'] = '%s year ago';
$_['text_years_ago'] = '%s years ago';
// Button
$_['button_add'] = 'Add New';
$_['button_delete'] = 'Delete';
$_['button_save'] = 'Save';
$_['button_cancel'] = 'Cancel';
$_['button_subscription_cancel'] = 'Cancel Subscription';
$_['button_continue'] = 'Continue';
$_['button_confirm'] = 'Confirm';
$_['button_clear'] = 'Clear';
$_['button_close'] = 'Close';
$_['button_enable'] = 'Enable';
$_['button_disable'] = 'Disable';
$_['button_filter'] = 'Filter';
$_['button_send'] = 'Send';
$_['button_edit'] = 'Edit';
$_['button_copy'] = 'Copy';
$_['button_back'] = 'Back';
$_['button_remove'] = 'Remove';
$_['button_refresh'] = 'Refresh';
$_['button_export'] = 'Export';
$_['button_import'] = 'Import';
$_['button_download'] = 'Download';
$_['button_rebuild'] = 'Rebuild';
$_['button_upload'] = 'Upload';
$_['button_submit'] = 'Submit';
$_['button_invoice_print'] = 'Print Invoice';
$_['button_shipping_print'] = 'Print Shipping List';
$_['button_address_add'] = 'Add Address';
$_['button_attribute_add'] = 'Add Attribute';
$_['button_banner_add'] = 'Add Banner';
$_['button_custom_field_value_add'] = 'Add Custom Field';
$_['button_product_add'] = 'Add Product';
$_['button_filter_add'] = 'Add Filter';
$_['button_option_add'] = 'Add Option';
$_['button_option_value_add'] = 'Add Option Value';
$_['button_subscription_add'] = 'Add Subscription';
$_['button_discount_add'] = 'Add Discount';
$_['button_special_add'] = 'Add Special';
$_['button_image_add'] = 'Add Image';
$_['button_geo_zone_add'] = 'Add Geo Zone';
$_['button_history_add'] = 'Add History';
$_['button_transaction_add'] = 'Add Transaction';
$_['button_route_add'] = 'Add Route';
$_['button_rule_add'] = 'Add Rule';
$_['button_module_add'] = 'Add Module';
$_['button_link_add'] = 'Add Link';
$_['button_customer_add'] = 'Add Customer';
$_['button_approve'] = 'Approve';
$_['button_deny'] = 'Deny';
$_['button_reset'] = 'Reset';
$_['button_generate'] = 'Generate';
$_['button_voucher_add'] = 'Add Voucher';
$_['button_view'] = 'View';
$_['button_reward_add'] = 'Add Reward Points';
$_['button_reward_remove'] = 'Remove Reward Points';
$_['button_commission_add'] = 'Add Commission';
$_['button_commission_remove'] = 'Remove Commission';
$_['button_credit_add'] = 'Add Credit';
$_['button_credit_remove'] = 'Remove Credit';
$_['button_ip_add'] = 'Add IP';
$_['button_parent'] = 'Parent';
$_['button_folder'] = 'New Folder';
$_['button_search'] = 'Search';
$_['button_install'] = 'Install';
$_['button_uninstall'] = 'Uninstall';
$_['button_link'] = 'Link';
$_['button_currency'] = 'Refresh Currency Values';
$_['button_apply'] = 'Apply';
$_['button_category_add'] = 'Add Category';
$_['button_order'] = 'View Order';
$_['button_subscription'] = 'View Subscription';
$_['button_buy'] = 'Buy';
$_['button_restore'] = 'Restore';
$_['button_run'] = 'Run Cron Job';
$_['button_backup'] = 'Backup';
$_['button_developer'] = 'Developer Setting';
$_['button_master'] = 'Master Product';
$_['button_resend'] = 'Resend';
$_['button_calculate'] = 'Calculate Payments';
$_['button_csv'] = 'Download CSV';
$_['button_complete'] = 'Complete Payments';
// Tab
$_['tab_address'] = 'Addresses';
$_['tab_additional'] = 'Additional';
$_['tab_attribute'] = 'Attribute';
$_['tab_comment'] = 'Comment';
$_['tab_data'] = 'Data';
$_['tab_description'] = 'Description';
$_['tab_design'] = 'Design';
$_['tab_discount'] = 'Discount';
$_['tab_documentation'] = 'Documentation';
$_['tab_general'] = 'General';
$_['tab_history'] = 'History';
$_['tab_ip'] = 'IP Addresses';
$_['tab_links'] = 'Links';
$_['tab_log'] = 'Log';
$_['tab_image'] = 'Image';
$_['tab_option'] = 'Option';
$_['tab_server'] = 'Server';
$_['tab_seo'] = 'SEO';
$_['tab_store'] = 'Store';
$_['tab_special'] = 'Special';
$_['tab_session'] = 'Session';
$_['tab_local'] = 'Local';
$_['tab_mail'] = 'Mail';
$_['tab_payment_method'] = 'Payment Methods';
$_['tab_product'] = 'Products';
$_['tab_reward'] = 'Reward Points';
$_['tab_transaction'] = 'Transactions';
$_['tab_voucher'] = 'Vouchers';
$_['tab_subscription'] = 'Subscription';
$_['tab_report'] = 'Report';
// Error
$_['error_exception'] = 'Error Code(%s): %s in %s on line %s';
$_['error_upload_1'] = 'Warning: The uploaded file exceeds the upload_max_filesize directive in php.ini!';
$_['error_upload_2'] = 'Warning: The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form!';
$_['error_upload_3'] = 'Warning: The uploaded file was only partially uploaded!';
$_['error_upload_4'] = 'Warning: No file was uploaded!';
$_['error_upload_6'] = 'Warning: Missing a temporary folder!';
$_['error_upload_7'] = 'Warning: Failed to write file to disk!';
$_['error_upload_8'] = 'Warning: File upload stopped by extension!';
$_['error_upload_999'] = 'Warning: No error code available!';
$_['error_upload_size'] = 'Warning: The uploaded file exceeds the %smb max file size!';
$_['error_curl'] = 'CURL: Error Code(%s): %s';
$_['error_format_b'] = 'Warning: The uploaded file exceeds the max file size: %s bytes!';
$_['error_format_kb'] = 'Warning: The uploaded file exceeds the max file size: %s kilobytes!';
$_['error_format_mb'] = 'Warning: The uploaded file exceeds the max file size: %s megabytes!';
$_['error_format_gb'] = 'Warning: The uploaded file exceeds the max file size: %s gigabytes!';
/* When doing translations only include the matching language code */
// CKEditor
//$_['ckeditor'] = 'af';
//$_['ckeditor'] = 'ar';
//$_['ckeditor'] = 'az';
//$_['ckeditor'] = 'bg';
//$_['ckeditor'] = 'bn';
//$_['ckeditor'] = 'bs';
//$_['ckeditor'] = 'ca';
//$_['ckeditor'] = 'cs';
//$_['ckeditor'] = 'cy';
//$_['ckeditor'] = 'da';
//$_['ckeditor'] = 'de';
//$_['ckeditor'] = 'de-ch';
//$_['ckeditor'] = 'el';
$_['ckeditor'] = 'en';
//$_['ckeditor'] = 'en-au';
//$_['ckeditor'] = 'en-ca';
//$_['ckeditor'] = 'en-gb';
//$_['ckeditor'] = 'eo';
//$_['ckeditor'] = 'es';
//$_['ckeditor'] = 'es-mx';
//$_['ckeditor'] = 'et';
//$_['ckeditor'] = 'eu';
//$_['ckeditor'] = 'fa';
//$_['ckeditor'] = 'fi';
//$_['ckeditor'] = 'fo';
//$_['ckeditor'] = 'fr';
//$_['ckeditor'] = 'gl';
//$_['ckeditor'] = 'gu';
//$_['ckeditor'] = 'he';
//$_['ckeditor'] = 'hi';
//$_['ckeditor'] = 'hr';
//$_['ckeditor'] = 'hu';
//$_['ckeditor'] = 'id';
//$_['ckeditor'] = 'is';
//$_['ckeditor'] = 'it';
//$_['ckeditor'] = 'ja';
//$_['ckeditor'] = 'ka';
//$_['ckeditor'] = 'km';
//$_['ckeditor'] = 'ko';
//$_['ckeditor'] = 'ku';
//$_['ckeditor'] = 'lt';
//$_['ckeditor'] = 'lv';
//$_['ckeditor'] = 'mk';
//$_['ckeditor'] = 'mn';
//$_['ckeditor'] = 'ms';
//$_['ckeditor'] = 'nb';
//$_['ckeditor'] = 'nl';
//$_['ckeditor'] = 'no';
//$_['ckeditor'] = 'oc';
//$_['ckeditor'] = 'pl';
//$_['ckeditor'] = 'pt';
//$_['ckeditor'] = 'pt-br';
//$_['ckeditor'] = 'ro';
//$_['ckeditor'] = 'ru';
//$_['ckeditor'] = 'si';
//$_['ckeditor'] = 'sk';
//$_['ckeditor'] = 'sl';
//$_['ckeditor'] = 'sq';
//$_['ckeditor'] = 'sr';
//$_['ckeditor'] = 'sr-latn';
//$_['ckeditor'] = 'sv';
//$_['ckeditor'] = 'th';
//$_['ckeditor'] = 'tr';
//$_['ckeditor'] = 'tt';
//$_['ckeditor'] = 'ug';
//$_['ckeditor'] = 'uk';
//$_['ckeditor'] = 'vi';
//$_['ckeditor'] = 'zh';
//$_['ckeditor'] = 'zh-cn';
// Datepicker
$_['datepicker'] = 'en-gb';
//$_['datepicker'] = 'af';
//$_['datepicker'] = 'ar-dz';
//$_['datepicker'] = 'ar-kw';
//$_['datepicker'] = 'ar-ly';
//$_['datepicker'] = 'ar-ma';
//$_['datepicker'] = 'ar-sa';
//$_['datepicker'] = 'ar-tn';
//$_['datepicker'] = 'ar';
//$_['datepicker'] = 'az';
//$_['datepicker'] = 'be';
//$_['datepicker'] = 'bg';
//$_['datepicker'] = 'bn';
//$_['datepicker'] = 'bo';
//$_['datepicker'] = 'br';
//$_['datepicker'] = 'bs';
//$_['datepicker'] = 'ca';
//$_['datepicker'] = 'cs';
//$_['datepicker'] = 'cv';
//$_['datepicker'] = 'cy';
//$_['datepicker'] = 'da';
//$_['datepicker'] = 'de-at';
//$_['datepicker'] = 'de-ch';
//$_['datepicker'] = 'de';
//$_['datepicker'] = 'dv';
//$_['datepicker'] = 'el';
//$_['datepicker'] = 'en-au';
//$_['datepicker'] = 'en-ca';
//$_['datepicker'] = 'en-gb';
//$_['datepicker'] = 'en-ie';
//$_['datepicker'] = 'en-nz';
//$_['datepicker'] = 'eo';
//$_['datepicker'] = 'es-do';
//$_['datepicker'] = 'es';
//$_['datepicker'] = 'et';
//$_['datepicker'] = 'eu';
//$_['datepicker'] = 'fa';
//$_['datepicker'] = 'fi';
//$_['datepicker'] = 'fo';
//$_['datepicker'] = 'fr-ca';
//$_['datepicker'] = 'fr-ch';
//$_['datepicker'] = 'fr';
//$_['datepicker'] = 'fy';
//$_['datepicker'] = 'gd';
//$_['datepicker'] = 'gl';
//$_['datepicker'] = 'gom-latn';
//$_['datepicker'] = 'he';
//$_['datepicker'] = 'hi';
//$_['datepicker'] = 'hr';
//$_['datepicker'] = 'hu';
//$_['datepicker'] = 'hy-am';
//$_['datepicker'] = 'id';
//$_['datepicker'] = 'is';
//$_['datepicker'] = 'it';
//$_['datepicker'] = 'ja';
//$_['datepicker'] = 'jv';
//$_['datepicker'] = 'ka';
//$_['datepicker'] = 'kk';
//$_['datepicker'] = 'km';
//$_['datepicker'] = 'kn';
//$_['datepicker'] = 'ko';
//$_['datepicker'] = 'ky';
//$_['datepicker'] = 'lb';
//$_['datepicker'] = 'lo';
//$_['datepicker'] = 'lt';
//$_['datepicker'] = 'lv';
//$_['datepicker'] = 'me';
//$_['datepicker'] = 'mi';
//$_['datepicker'] = 'mk';
//$_['datepicker'] = 'ml';
//$_['datepicker'] = 'mr';
//$_['datepicker'] = 'ms-my';
//$_['datepicker'] = 'ms';
//$_['datepicker'] = 'my';
//$_['datepicker'] = 'nb';
//$_['datepicker'] = 'ne';
//$_['datepicker'] = 'nl-be';
//$_['datepicker'] = 'nl';
//$_['datepicker'] = 'nn';
//$_['datepicker'] = 'pa-in';
//$_['datepicker'] = 'pl';
//$_['datepicker'] = 'pt-br';
//$_['datepicker'] = 'pt';
//$_['datepicker'] = 'ro';
//$_['datepicker'] = 'ru';
//$_['datepicker'] = 'sd';
//$_['datepicker'] = 'se';
//$_['datepicker'] = 'si';
//$_['datepicker'] = 'sk';
//$_['datepicker'] = 'sl';
//$_['datepicker'] = 'sq';
//$_['datepicker'] = 'sr-cyrl';
//$_['datepicker'] = 'sr';
//$_['datepicker'] = 'ss';
//$_['datepicker'] = 'sv';
//$_['datepicker'] = 'sw';
//$_['datepicker'] = 'ta';
//$_['datepicker'] = 'te';
//$_['datepicker'] = 'tet';
//$_['datepicker'] = 'th';
//$_['datepicker'] = 'tl-ph';
//$_['datepicker'] = 'tlh';
//$_['datepicker'] = 'tr';
//$_['datepicker'] = 'tzl';
//$_['datepicker'] = 'tzm-latn';
//$_['datepicker'] = 'tzm';
//$_['datepicker'] = 'uk';
//$_['datepicker'] = 'ur';
//$_['datepicker'] = 'uz-latn';
//$_['datepicker'] = 'uz';
//$_['datepicker'] = 'vi';
//$_['datepicker'] = 'x-pseudo';
//$_['datepicker'] = 'yo';
//$_['datepicker'] = 'zh-cn';
//$_['datepicker'] = 'zh-hk';
//$_['datepicker'] = 'zh-tw';

View File

@@ -0,0 +1,28 @@
<?php
// Heading
$_['heading_title'] = 'Banners';
// Text
$_['text_success'] = 'Success: You have modified banners!';
$_['text_list'] = 'Banner List';
$_['text_add'] = 'Add Banner';
$_['text_edit'] = 'Edit Banner';
$_['text_default'] = 'Default';
// Column
$_['column_name'] = 'Banner Name';
$_['column_status'] = 'Status';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Banner Name';
$_['entry_title'] = 'Title';
$_['entry_link'] = 'Link';
$_['entry_image'] = 'Image';
$_['entry_status'] = 'Status';
$_['entry_sort_order'] = 'Sort Order';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify banners!';
$_['error_name'] = 'Banner Name must be between 3 and 64 characters!';
$_['error_title'] = 'Banner Title must be between 2 and 64 characters!';

View File

@@ -0,0 +1,38 @@
<?php
// Heading
$_['heading_title'] = 'Layouts';
// Text
$_['text_success'] = 'Success: You have modified layouts!';
$_['text_list'] = 'Layout List';
$_['text_add'] = 'Add Layout';
$_['text_edit'] = 'Edit Layout';
$_['text_remove'] = 'Remove';
$_['text_route'] = 'Choose the store and routes to be used with this layout';
$_['text_module'] = 'Choose the position of the modules';
$_['text_default'] = 'Default';
$_['text_content_top'] = 'Content Top';
$_['text_content_bottom'] = 'Content Bottom';
$_['text_column_left'] = 'Column Left';
$_['text_column_right'] = 'Column Right';
// Column
$_['column_name'] = 'Layout Name';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Layout Name';
$_['entry_store'] = 'Store';
$_['entry_route'] = 'Route';
$_['entry_module'] = 'Module';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify layouts!';
$_['error_name'] = 'Layout Name must be between 3 and 64 characters!';
$_['error_module'] = 'Module required!';
$_['error_default'] = 'Warning: This layout cannot be deleted as it is currently assigned as the default store layout!';
$_['error_store'] = 'Warning: This layout cannot be deleted as it is currently assigned to %s stores!';
$_['error_product'] = 'Warning: This layout cannot be deleted as it is currently assigned to %s products!';
$_['error_category'] = 'Warning: This layout cannot be deleted as it is currently assigned to %s categories!';
$_['error_manufacturer'] = 'Warning: This layout cannot be deleted as it is currently assigned to %s manufacturers!';
$_['error_information'] = 'Warning: This layout cannot be deleted as it is currently assigned to %s information pages!';

View File

@@ -0,0 +1,42 @@
<?php
// Heading
$_['heading_title'] = 'SEO URL';
// Text
$_['text_success'] = 'Success: You have modified SEO URL!';
$_['text_list'] = 'SEO URL List';
$_['text_add'] = 'Add SEO URL';
$_['text_edit'] = 'Edit SEO URL';
$_['text_filter'] = 'Filter';
$_['text_default'] = 'Default';
// Column
$_['column_key'] = 'Key';
$_['column_value'] = 'Value';
$_['column_keyword'] = 'Keyword';
$_['column_sort_order'] = 'Sort Order';
$_['column_store'] = 'Store';
$_['column_language'] = 'Language';
$_['column_action'] = 'Action';
// Entry
$_['entry_store'] = 'Store';
$_['entry_language'] = 'Language';
$_['entry_key'] = 'Key';
$_['entry_value'] = 'Value';
$_['entry_keyword'] = 'Keyword';
$_['entry_sort_order'] = 'Sort Order';
// Help
$_['help_keyword'] = 'Make sure you only use characters in the a-z or 0-9 use and - or _ for spaces. Use / for categories.';
$_['help_sort_order'] = 'The sort order of the keywords in the URL.';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify SEO URL!';
$_['error_exists'] = 'Warning: Combination of store, language key, value, keyword already exists!';
$_['error_key'] = 'Key must be between 1 and 64 characters!';
$_['error_value'] = 'Value must be between 1 and 255 characters!';
$_['error_value_exists'] = 'Value is already in use!';
$_['error_keyword'] = 'Keyword must be between 1 and 64 characters!';
$_['error_keyword_exists'] = 'Keyword is already in use!';
$_['error_keyword_character'] = 'Keyword can only use characters a-z, 0-9, - and _!';

View File

@@ -0,0 +1,23 @@
<?php
// Heading
$_['heading_title'] = 'Theme Editor';
// Text
$_['text_success'] = 'Success: You have modified themes!';
$_['text_edit'] = 'Edit Theme';
$_['text_store'] = 'Choose your store';
$_['text_template'] = 'Choose a template';
$_['text_default'] = 'Default';
$_['text_extension'] = 'Extension';
$_['text_history'] = 'Theme History';
$_['text_twig'] = 'The theme editor uses the template language Twig. You can read about <a href="https://twig.symfony.com/doc/" target="_blank" class="alert-link">Twig syntax here</a>.';
// Column
$_['column_store'] = 'Store';
$_['column_route'] = 'Route';
$_['column_date_added'] = 'Date Added';
$_['column_action'] = 'Action';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify the theme editor!';
$_['error_twig'] = 'Warning: You can only save .twig files!';

View File

@@ -0,0 +1,32 @@
<?php
// Heading
$_['heading_title'] = 'Language Editor';
// Text
$_['text_success'] = 'Success: You have modified language editor!';
$_['text_list'] = 'Translation List';
$_['text_add'] = 'Add Translation';
$_['text_edit'] = 'Edit Translation';
$_['text_default'] = 'Default';
$_['text_store'] = 'Store';
$_['text_language'] = 'Language';
// Column
$_['column_store'] = 'Store';
$_['column_language'] = 'Language';
$_['column_route'] = 'Route';
$_['column_key'] = 'Key';
$_['column_value'] = 'Value';
$_['column_action'] = 'Action';
// Entry
$_['entry_store'] = 'Store';
$_['entry_language'] = 'Language';
$_['entry_route'] = 'Route';
$_['entry_key'] = 'Key';
$_['entry_default'] = 'Default';
$_['entry_value'] = 'Value';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify language editor!';
$_['error_key'] = 'Key must be between 3 and 64 characters!';

Binary file not shown.

After

Width:  |  Height:  |  Size: 699 B

View File

@@ -0,0 +1,6 @@
<?php
// Heading
$_['heading_title'] = 'Page Not Found!';
// Text
$_['text_not_found'] = 'The page you are looking for could not be found! Please contact your administrator if the problem persists.';

View File

@@ -0,0 +1,6 @@
<?php
// Heading
$_['heading_title'] = 'Permission Denied!';
// Text
$_['text_permission'] = 'You do not have permission to access this page, please refer to your system administrator.';

View File

@@ -0,0 +1,16 @@
<?php
// Heading
$_['heading_title'] = 'Analytics';
// Text
$_['text_success'] = 'Success: You have modified analytics!';
$_['text_list'] = 'Analytics List';
// Column
$_['column_name'] = 'Analytics Name';
$_['column_status'] = 'Status';
$_['column_action'] = 'Action';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify analytics!';
$_['error_extension'] = 'Warning: Extension does not exist!';

View File

@@ -0,0 +1,16 @@
<?php
// Heading
$_['heading_title'] = 'Captchas';
// Text
$_['text_success'] = 'Success: You have modified captchas!';
$_['text_list'] = 'Captcha List';
// Column
$_['column_name'] = 'Captcha Name';
$_['column_status'] = 'Status';
$_['column_action'] = 'Action';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify captchas!';
$_['error_extension'] = 'Warning: Extension does not exist!';

View File

@@ -0,0 +1,16 @@
<?php
// Heading
$_['heading_title'] = 'Currency Rates';
// Text
$_['text_success'] = 'Success: You have modified currencies rates!';
$_['text_list'] = 'Currency Rate List';
// Column
$_['column_name'] = 'Currency Rate Name';
$_['column_status'] = 'Status';
$_['column_action'] = 'Action';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify currencies rates!';
$_['error_extension'] = 'Warning: Extension does not exist!';

View File

@@ -0,0 +1,18 @@
<?php
// Heading
$_['heading_title'] = 'Dashboard';
// Text
$_['text_success'] = 'Success: You have modified dashboards!';
$_['text_list'] = 'Dashboard List';
// Column
$_['column_name'] = 'Dashboard Name';
$_['column_width'] = 'Width';
$_['column_status'] = 'Status';
$_['column_sort_order'] = 'Sort Order';
$_['column_action'] = 'Action';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify dashboards!';
$_['error_extension'] = 'Warning: Extension does not exist!';

View File

@@ -0,0 +1,16 @@
<?php
// Heading
$_['heading_title'] = 'Feeds';
// Text
$_['text_success'] = 'Success: You have modified feeds!';
$_['text_list'] = 'Feed List';
// Column
$_['column_name'] = 'Product Feed Name';
$_['column_status'] = 'Status';
$_['column_action'] = 'Action';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify feeds!';
$_['error_extension'] = 'Warning: Extension does not exist!';

View File

@@ -0,0 +1,16 @@
<?php
// Heading
$_['heading_title'] = 'Anti-Fraud';
// Text
$_['text_success'] = 'Success: You have modified anti-fraud!';
$_['text_list'] = 'Anti-Fraud List';
// Column
$_['column_name'] = 'Anti-Fraud Name';
$_['column_status'] = 'Status';
$_['column_action'] = 'Action';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify anti-fraud!';
$_['error_extension'] = 'Warning: Extension does not exist!';

View File

@@ -0,0 +1,16 @@
<?php
// Heading
$_['heading_title'] = 'Languages';
// Text
$_['text_success'] = 'Success: You have modified languages!';
$_['text_list'] = 'Language List';
// Column
$_['column_name'] = 'Language Name';
$_['column_status'] = 'Status';
$_['column_action'] = 'Action';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify languages!';
$_['error_extension'] = 'Warning: Extension does not exist!';

View File

@@ -0,0 +1,16 @@
<?php
// Heading
$_['heading_title'] = 'Marketplaces';
// Text
$_['text_success'] = 'Success: You have modified marketplaces!';
$_['text_list'] = 'Marketplace List';
// Column
$_['column_name'] = 'Marketplace Name';
$_['column_status'] = 'Status';
$_['column_action'] = 'Action';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify marketplaces!';
$_['error_extension'] = 'Warning: Extension does not exist!';

View File

@@ -0,0 +1,24 @@
<?php
// Heading
$_['heading_title'] = 'Modules';
// Text
$_['text_success'] = 'Success: You have modified modules!';
$_['text_layout'] = 'After you have installed and configured a module you can add it to a layout <a href="%s" class="alert-link">here</a>!';
$_['text_add'] = 'Add Module';
$_['text_list'] = 'Module List';
// Column
$_['column_name'] = 'Module Name';
$_['column_status'] = 'Status';
$_['column_action'] = 'Action';
// Entry
$_['entry_code'] = 'Module';
$_['entry_name'] = 'Module Name';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify modules!';
$_['error_extension'] = 'Warning: Extension does not exist!';
$_['error_name'] = 'Module Name must be between 3 and 64 characters!';
$_['error_code'] = 'Extension required!';

View File

@@ -0,0 +1,16 @@
<?php
// Heading
$_['heading_title'] = 'Other';
// Text
$_['text_success'] = 'Success: You have modified other extension!';
$_['text_list'] = 'Other List';
// Column
$_['column_name'] = 'Other Name';
$_['column_status'] = 'Status';
$_['column_action'] = 'Action';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify other extension!';
$_['error_extension'] = 'Warning: Extension does not exist!';

View File

@@ -0,0 +1,18 @@
<?php
// Heading
$_['heading_title'] = 'Payments';
// Text
$_['text_success'] = 'Success: You have modified payments!';
$_['text_list'] = 'Payment List';
// Column
$_['column_name'] = 'Payment Method';
$_['column_vendor'] = 'Vendor';
$_['column_status'] = 'Status';
$_['column_sort_order'] = 'Sort Order';
$_['column_action'] = 'Action';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify payments!';
$_['error_extension'] = 'Warning: Extension does not exist!';

View File

@@ -0,0 +1,3 @@
<?php
// Heading Title
$_['heading_title'] = 'Promotion';

View File

@@ -0,0 +1,17 @@
<?php
// Heading
$_['heading_title'] = 'Reports';
// Text
$_['text_success'] = 'Success: You have modified reports!';
$_['text_list'] = 'Reports List';
// Column
$_['column_name'] = 'Report Name';
$_['column_status'] = 'Status';
$_['column_sort_order'] = 'Sort Order';
$_['column_action'] = 'Action';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify reports!';
$_['error_extension'] = 'Warning: Extension does not exist!';

View File

@@ -0,0 +1,17 @@
<?php
// Heading
$_['heading_title'] = 'Shipping';
// Text
$_['text_success'] = 'Success: You have modified shipping!';
$_['text_list'] = 'Shipping List';
// Column
$_['column_name'] = 'Shipping Method';
$_['column_status'] = 'Status';
$_['column_sort_order'] = 'Sort Order';
$_['column_action'] = 'Action';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify shipping!';
$_['error_extension'] = 'Warning: Extension does not exist!';

View File

@@ -0,0 +1,15 @@
<?php
// Heading
$_['heading_title'] = 'Themes';
// Text
$_['text_success'] = 'Success: You have modified themes!';
// Column
$_['column_name'] = 'Theme Name';
$_['column_status'] = 'Status';
$_['column_action'] = 'Action';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify themes!';
$_['error_extension'] = 'Warning: Extension does not exist!';

View File

@@ -0,0 +1,16 @@
<?php
// Heading
$_['heading_title'] = 'Order Totals';
// Text
$_['text_success'] = 'Success: You have modified totals!';
// Column
$_['column_name'] = 'Order Totals';
$_['column_status'] = 'Status';
$_['column_sort_order'] = 'Sort Order';
$_['column_action'] = 'Action';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify totals!';
$_['error_extension'] = 'Warning: Extension does not exist!';

View File

@@ -0,0 +1,27 @@
<?php
// Heading
$_['heading_title'] = 'Address Format';
// Text
$_['text_success'] = 'Success: You have modified address formats!';
$_['text_list'] = 'Address Format List';
$_['text_add'] = 'Add Address Format';
$_['text_edit'] = 'Edit Address Format';
// Column
$_['column_name'] = 'Address Format Name';
$_['column_address_format'] = 'Address Format';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Address Format Name';
$_['entry_address_format'] = 'Address Format';
// Help
$_['help_address_format'] = 'First Name = {firstname}<br/>Last Name = {lastname}<br/>Company = {company}<br/>Address 1 = {address_1}<br/>Address 2 = {address_2}<br/>City = {city}<br/>Postcode = {postcode}<br/>Zone = {zone}<br/>Zone Code = {zone_code}<br/>Country = {country}';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify address formats!';
$_['error_name'] = 'Address Format Name must be between 1 and 128 characters!';
$_['error_default'] = 'Warning: This address format cannot be deleted as it is currently assigned as the default address format!';
$_['error_country'] = 'Warning: This address format cannot be deleted as it is currently assigned to %s countries!';

View File

@@ -0,0 +1,33 @@
<?php
// Heading
$_['heading_title'] = 'Countries';
// Text
$_['text_success'] = 'Success: You have modified countries!';
$_['text_list'] = 'Country List';
$_['text_add'] = 'Add Country';
$_['text_edit'] = 'Edit Country';
$_['text_filter'] = 'Filter';
// Column
$_['column_name'] = 'Country Name';
$_['column_iso_code_2'] = 'ISO Code (2)';
$_['column_iso_code_3'] = 'ISO Code (3)';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Country Name';
$_['entry_iso_code_2'] = 'ISO Code (2)';
$_['entry_iso_code_3'] = 'ISO Code (3)';
$_['entry_address_format'] = 'Address Format';
$_['entry_postcode_required'] = 'Postcode Required';
$_['entry_status'] = 'Status';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify countries!';
$_['error_name'] = 'Country Name must be between 1 and 128 characters!';
$_['error_default'] = 'Warning: This country cannot be deleted as it is currently assigned as the default store country!';
$_['error_store'] = 'Warning: This country cannot be deleted as it is currently assigned to %s stores!';
$_['error_address'] = 'Warning: This country cannot be deleted as it is currently assigned to %s address book entries!';
$_['error_zone'] = 'Warning: This country cannot be deleted as it is currently assigned to %s zones!';
$_['error_zone_to_geo_zone'] = 'Warning: This country cannot be deleted as it is currently assigned to %s zones to geo zones!';

View File

@@ -0,0 +1,40 @@
<?php
// Heading
$_['heading_title'] = 'Currencies';
// Text
$_['text_success'] = 'Success: You have modified currencies!';
$_['text_list'] = 'Currency List';
$_['text_add'] = 'Add Currency';
$_['text_edit'] = 'Edit Currency';
$_['text_iso'] = 'You can find a full list of ISO currency codes and settings <a href="http://www.xe.com/iso4217.php" target="_blank" class="alert-link">here</a>.';
// Column
$_['column_title'] = 'Currency Title';
$_['column_code'] = 'Code';
$_['column_value'] = 'Value';
$_['column_status'] = 'Status';
$_['column_date_modified'] = 'Last Updated';
$_['column_action'] = 'Action';
// Entry
$_['entry_title'] = 'Currency Title';
$_['entry_code'] = 'Code';
$_['entry_value'] = 'Value';
$_['entry_symbol_left'] = 'Symbol Left';
$_['entry_symbol_right'] = 'Symbol Right';
$_['entry_decimal_place'] = 'Decimal Places';
$_['entry_status'] = 'Status';
// Help
$_['help_code'] = 'Do not change if this is your default currency.';
$_['help_value'] = 'The value of your default currency in the current currency unit. Set to 1 for your default currency.';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify currencies!';
$_['error_extension'] = 'Warning: The currency extension could not be found!';
$_['error_title'] = 'Currency Title must be between 3 and 32 characters!';
$_['error_code'] = 'Currency Code must contain 3 characters!';
$_['error_default'] = 'Warning: This currency cannot be deleted as it is currently assigned as the default store currency!';
$_['error_store'] = 'Warning: This currency cannot be deleted as it is currently assigned to %s stores!';
$_['error_order'] = 'Warning: This currency cannot be deleted as it is currently assigned to %s orders!';

View File

@@ -0,0 +1,27 @@
<?php
// Heading
$_['heading_title'] = 'Geo Zones';
// Text
$_['text_success'] = 'Success: You have modified geo zones!';
$_['text_list'] = 'Geo Zone List';
$_['text_add'] = 'Add Geo Zone';
$_['text_edit'] = 'Edit Geo Zone';
$_['text_geo_zone'] = 'Geo Zones';
// Column
$_['column_name'] = 'Geo Zone Name';
$_['column_description'] = 'Description';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Geo Zone Name';
$_['entry_description'] = 'Description';
$_['entry_country'] = 'Country';
$_['entry_zone'] = 'Zone';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify geo zones!';
$_['error_name'] = 'Geo Zone Name must be between 3 and 32 characters!';
$_['error_description'] = 'Description Name must be between 3 and 255 characters!';
$_['error_tax_rate'] = 'Warning: This geo zone cannot be deleted as it is currently assigned to one or more tax rates!';

View File

@@ -0,0 +1,38 @@
<?php
// Heading
$_['heading_title'] = 'Languages';
// Text
$_['text_success'] = 'Success: You have modified languages!';
$_['text_list'] = 'Language List';
$_['text_add'] = 'Add Language';
$_['text_edit'] = 'Edit Language';
// Column
$_['column_name'] = 'Language Name';
$_['column_code'] = 'Code';
$_['column_sort_order'] = 'Sort Order';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Language Name';
$_['entry_code'] = 'Code';
$_['entry_extension'] = 'Extension';
$_['entry_locale'] = 'Locale';
$_['entry_status'] = 'Status';
$_['entry_sort_order'] = 'Sort Order';
// Help
$_['help_locale'] = 'Example: en_US.UTF-8,en_US,en-gb,en_gb,english';
$_['help_status'] = 'Hide/Show it in language dropdown';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify languages!';
$_['error_exists'] = 'Warning: You have already added this language!';
$_['error_name'] = 'Language Name must be between 1 and 32 characters!';
$_['error_code'] = 'Language Code must be between 2 and 5 characters!';
$_['error_locale'] = 'Locale required!';
$_['error_default'] = 'Warning: This language cannot be deleted as it is currently assigned as the default store language!';
$_['error_admin'] = 'Warning: This Language cannot be deleted as it is currently assigned as the administration language!';
$_['error_store'] = 'Warning: This language cannot be deleted as it is currently assigned to %s stores!';
$_['error_order'] = 'Warning: This language cannot be deleted as it is currently assigned to %s orders!';

View File

@@ -0,0 +1,30 @@
<?php
// Heading
$_['heading_title'] = 'Length Classes';
// Text
$_['text_success'] = 'Success: You have modified length classes!';
$_['text_list'] = 'Length Class List';
$_['text_add'] = 'Add Length Class';
$_['text_edit'] = 'Edit Length Class';
// Column
$_['column_title'] = 'Length Title';
$_['column_unit'] = 'Length Unit';
$_['column_value'] = 'Value';
$_['column_action'] = 'Action';
// Entry
$_['entry_title'] = 'Length Title';
$_['entry_unit'] = 'Length Unit';
$_['entry_value'] = 'Value';
// Help
$_['help_value'] = 'The value of your default length in the current length unit. Set to 1 for your default length.';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify length classes!';
$_['error_title'] = 'Length Title must be between 3 and 32 characters!';
$_['error_unit'] = 'Length Unit must be between 1 and 4 characters!';
$_['error_default'] = 'Warning: This length class cannot be deleted as it is currently assigned as the default store length class!';
$_['error_product'] = 'Warning: This length class cannot be deleted as it is currently assigned to %s products!';

View File

@@ -0,0 +1,35 @@
<?php
// Heading
$_['heading_title'] = 'Store Locations';
// Text
$_['text_success'] = 'Success: You have modified store locations!';
$_['text_list'] = 'Store Location List';
$_['text_add'] = 'Add Store Location';
$_['text_edit'] = 'Edit Store Location';
$_['text_geocode'] = 'Geocode was not successful for the following reason:';
// Column
$_['column_name'] = 'Store Name';
$_['column_address'] = 'Address';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Store Name';
$_['entry_address'] = 'Address';
$_['entry_geocode'] = 'Geocode';
$_['entry_telephone'] = 'Telephone';
$_['entry_image'] = 'Image';
$_['entry_open'] = 'Opening Times';
$_['entry_comment'] = 'Comment';
// Help
$_['help_geocode'] = 'Please enter your store location geocode manually.';
$_['help_open'] = 'Fill in your stores opening times.';
$_['help_comment'] = 'This field is for any special notes you would like to tell the customer i.e. Store does not accept cheques.';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify store locations!';
$_['error_name'] = 'Store name must be between 3 and 32 characters!';
$_['error_address'] = 'Address must be between 3 and 128 characters!';
$_['error_telephone'] = 'Telephone must be between 3 and 32 characters!';

View File

@@ -0,0 +1,23 @@
<?php
// Heading
$_['heading_title'] = 'Order Statuses';
// Text
$_['text_success'] = 'Success: You have modified order statuses!';
$_['text_list'] = 'Order Status List';
$_['text_add'] = 'Add Order Status';
$_['text_edit'] = 'Edit Order Status';
// Column
$_['column_name'] = 'Order Status Name';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Order Status Name';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify order statuses!';
$_['error_name'] = 'Order Status Name must be between 3 and 32 characters!';
$_['error_default'] = 'Warning: This order status cannot be deleted as it is currently assigned as the default store order status!';
$_['error_download'] = 'Warning: This order status cannot be deleted as it is currently assigned as the default download status!';
$_['error_order'] = 'Warning: This order status cannot be deleted as it is currently assigned to %s orders!';

View File

@@ -0,0 +1,21 @@
<?php
// Heading
$_['heading_title'] = 'Return Actions';
// Text
$_['text_success'] = 'Success: You have modified return actions!';
$_['text_list'] = 'Return Action List';
$_['text_add'] = 'Add Return Action';
$_['text_edit'] = 'Edit Return Action';
// Column
$_['column_name'] = 'Return Action Name';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Return Action Name';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify return actions!';
$_['error_name'] = 'Return Action Name must be between 3 and 64 characters!';
$_['error_return'] = 'Warning: This return action cannot be deleted as it is currently assigned to %s returned products!';

View File

@@ -0,0 +1,21 @@
<?php
// Heading
$_['heading_title'] = 'Return Reasons';
// Text
$_['text_success'] = 'Success: You have modified return reasons!';
$_['text_list'] = 'Return Reason List';
$_['text_add'] = 'Add Return Reason';
$_['text_edit'] = 'Edit Return Reason';
// Column
$_['column_name'] = 'Return Reason Name';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Return Reason Name';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify return reasons!';
$_['error_name'] = 'Return Reason Name must be between 3 and 128 characters!';
$_['error_return'] = 'Warning: This return reason cannot be deleted as it is currently assigned to %s returned products!';

View File

@@ -0,0 +1,22 @@
<?php
// Heading
$_['heading_title'] = 'Return Statuses';
// Text
$_['text_success'] = 'Success: You have modified return statuses!';
$_['text_list'] = 'Return Status List';
$_['text_add'] = 'Add Return Status';
$_['text_edit'] = 'Edit Return Status';
// Column
$_['column_name'] = 'Return Status Name';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Return Status Name';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify return statuses!';
$_['error_name'] = 'Return Status Name must be between 3 and 32 characters!';
$_['error_default'] = 'Warning: This return status cannot be deleted as it is currently assigned as the default return status!';
$_['error_return'] = 'Warning: This return status cannot be deleted as it is currently assigned to %s returns!';

View File

@@ -0,0 +1,21 @@
<?php
// Heading
$_['heading_title'] = 'Stock Statuses';
// Text
$_['text_success'] = 'Success: You have modified stock statuses!';
$_['text_list'] = 'Stock Status List';
$_['text_add'] = 'Add Stock Status';
$_['text_edit'] = 'Edit Stock Status';
// Column
$_['column_name'] = 'Stock Status Name';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Stock Status Name';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify stock statuses!';
$_['error_name'] = 'Stock Status Name must be between 3 and 32 characters!';
$_['error_product'] = 'Warning: This stock status cannot be deleted as it is currently assigned to %s products!';

View File

@@ -0,0 +1,22 @@
<?php
// Heading
$_['heading_title'] = 'Subscription Statuses';
// Text
$_['text_success'] = 'Success: You have modified subscription statuses!';
$_['text_list'] = 'Subscription Status List';
$_['text_add'] = 'Add Subscription Status';
$_['text_edit'] = 'Edit Subscription Status';
// Column
$_['column_name'] = 'Subscription Status Name';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Subscription Status Name';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify subscription statuses!';
$_['error_name'] = 'Subscription Status Name must be between 3 and 32 characters!';
$_['error_default'] = 'Warning: This subscription status cannot be deleted as it is currently assigned as the default store subscription status!';
$_['error_subscription'] = 'Warning: This subscription status cannot be deleted as it is currently assigned to %s subscriptions!';

View File

@@ -0,0 +1,32 @@
<?php
// Heading
$_['heading_title'] = 'Tax Classes';
// Text
$_['text_success'] = 'Success: You have modified tax classes!';
$_['text_list'] = 'Tax Class List';
$_['text_add'] = 'Add Tax Class';
$_['text_edit'] = 'Edit Tax Class';
$_['text_tax_class'] = 'Tax Class';
$_['text_tax_rate'] = 'Tax Rates';
$_['text_shipping'] = 'Shipping Address';
$_['text_payment'] = 'Payment Address';
$_['text_store'] = 'Store Address';
// Column
$_['column_title'] = 'Tax Class Title';
$_['column_action'] = 'Action';
// Entry
$_['entry_title'] = 'Tax Class Title';
$_['entry_description'] = 'Description';
$_['entry_rate'] = 'Tax Rate';
$_['entry_based'] = 'Based On';
$_['entry_geo_zone'] = 'Geo Zone';
$_['entry_priority'] = 'Priority';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify tax classes!';
$_['error_title'] = 'Tax Class Title must be between 3 and 32 characters!';
$_['error_description'] = 'Description must be between 3 and 255 characters!';
$_['error_product'] = 'Warning: This tax class cannot be deleted as it is currently assigned to %s products!';

View File

@@ -0,0 +1,33 @@
<?php
// Heading
$_['heading_title'] = 'Tax Rates';
// Text
$_['text_success'] = 'Success: You have modified tax rates!';
$_['text_list'] = 'Tax Rate List';
$_['text_add'] = 'Add Tax Rate';
$_['text_edit'] = 'Edit Tax Rate';
$_['text_percent'] = 'Percentage';
$_['text_amount'] = 'Fixed Amount';
// Column
$_['column_name'] = 'Tax Name';
$_['column_rate'] = 'Tax Rate';
$_['column_type'] = 'Type';
$_['column_geo_zone'] = 'Geo Zone';
$_['column_date_added'] = 'Date Added';
$_['column_date_modified'] = 'Date Modified';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Tax Name';
$_['entry_rate'] = 'Tax Rate';
$_['entry_type'] = 'Type';
$_['entry_customer_group'] = 'Customer Group';
$_['entry_geo_zone'] = 'Geo Zone';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify tax rates!';
$_['error_tax_rule'] = 'Warning: This tax rate cannot be deleted as it is currently assigned to %s tax classes!';
$_['error_name'] = 'Tax Name must be between 3 and 32 characters!';
$_['error_rate'] = 'Tax Rate required!';

View File

@@ -0,0 +1,30 @@
<?php
// Heading
$_['heading_title'] = 'Weight Classes';
// Text
$_['text_success'] = 'Success: You have modified weight classes!';
$_['text_list'] = 'Weight Class List';
$_['text_add'] = 'Add Weight Class';
$_['text_edit'] = 'Edit Weight Class';
// Column
$_['column_title'] = 'Weight Title';
$_['column_unit'] = 'Weight Unit';
$_['column_value'] = 'Value';
$_['column_action'] = 'Action';
// Entry
$_['entry_title'] = 'Weight Title';
$_['entry_unit'] = 'Weight Unit';
$_['entry_value'] = 'Value';
// Help
$_['help_value'] = 'The value of your default weight in the current weight unit. Set to 1 for your default weight.';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify weight classes!';
$_['error_title'] = 'Weight Title must be between 3 and 32 characters!';
$_['error_unit'] = 'Weight Unit must be between 1 and 4 characters!';
$_['error_default'] = 'Warning: This weight class cannot be deleted as it is currently assigned as the default store weight class!';
$_['error_product'] = 'Warning: This weight class cannot be deleted as it is currently assigned to %s products!';

View File

@@ -0,0 +1,30 @@
<?php
// Heading
$_['heading_title'] = 'Zones';
// Text
$_['text_success'] = 'Success: You have modified zones!';
$_['text_list'] = 'Zone List';
$_['text_add'] = 'Add Zone';
$_['text_edit'] = 'Edit Zone';
$_['text_filter'] = 'Filter';
// Column
$_['column_name'] = 'Zone Name';
$_['column_code'] = 'Zone Code';
$_['column_country'] = 'Country';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Zone Name';
$_['entry_code'] = 'Zone Code';
$_['entry_country'] = 'Country';
$_['entry_status'] = 'Status';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify zones!';
$_['error_name'] = 'Zone Name must be between 1 and 128 characters!';
$_['error_default'] = 'Warning: This zone cannot be deleted as it is currently assigned as the default store zone!';
$_['error_store'] = 'Warning: This zone cannot be deleted as it is currently assigned to %s stores!';
$_['error_address'] = 'Warning: This zone cannot be deleted as it is currently assigned to %s address book entries!';
$_['error_zone_to_geo_zone'] = 'Warning: This zone cannot be deleted as it is currently assigned to %s zones to geo zones!';

View File

@@ -0,0 +1,7 @@
<?php
// Text
$_['text_subject'] = '%s - Your affiliate account has been activated!';
$_['text_welcome'] = 'Welcome and thank you for registering at %s!';
$_['text_login'] = 'Your account has now been approved and you can log in by using your email address and password by visiting our website or at the following URL:';
$_['text_service'] = 'Upon logging in, you will be able to generate tracking codes, track commission payments and edit your account information.';
$_['text_thanks'] = 'Thanks,';

View File

@@ -0,0 +1,6 @@
<?php
// Text
$_['text_subject'] = '%s - Your affiliate account has been denied!';
$_['text_welcome'] = 'Welcome and thank you for registering at %s!';
$_['text_denied'] = 'Unfortunately your request has been denied. For more information you can contact the store owner here:';
$_['text_thanks'] = 'Thanks,';

View File

@@ -0,0 +1,6 @@
<?php
// Text
$_['text_subject'] = 'Security';
$_['text_code'] = 'You must enter the security code in the admin security check.';
$_['text_ip'] = 'IP:';
$_['text_regards'] = 'Best Regards';

View File

@@ -0,0 +1,7 @@
<?php
// Text
$_['text_subject'] = 'Reset security code attempts';
$_['text_reset'] = 'Some one entered the security code wrongly more than 3 times.';
$_['text_link'] = 'Click on the link below to reset account security:';
$_['text_ip'] = 'IP:';
$_['text_regards'] = 'Best Regards';

View File

@@ -0,0 +1,10 @@
<?php
// Text
$_['text_subject'] = '%s - Your Account has been activated!';
$_['text_welcome'] = 'Welcome and thank you for registering at %s!';
$_['text_login'] = 'Your account has now been created and you can log in by using your email address and password by visiting our website or at the following URL:';
$_['text_service'] = 'Upon logging in, you will be able to access other services including reviewing past orders, printing invoices and editing your account information.';
$_['text_thanks'] = 'Thanks,';
// Button
$_['button_login'] = 'Login';

View File

@@ -0,0 +1,9 @@
<?php
// Text
$_['text_subject'] = '%s - Your Account has been denied!';
$_['text_welcome'] = 'Welcome and thank you for registering at %s!';
$_['text_denied'] = 'Unfortunately your request has been denied. For more information you can contact the store owner here:';
$_['text_thanks'] = 'Thanks,';
// Button
$_['button_contact'] = 'Contact Us';

View File

@@ -0,0 +1,6 @@
<?php
// Text
$_['text_subject'] = '%s - Password reset request';
$_['text_greeting'] = 'A new password was requested for %s administration.';
$_['text_change'] = 'To reset your password click on the link below:';
$_['text_ip'] = 'The IP used to make this request was:';

View File

@@ -0,0 +1,11 @@
<?php
// Text
$_['text_subject'] = '%s - GDPR request approved!';
$_['text_request'] = 'Account Deletion Request';
$_['text_hello'] = 'Hello <strong>%s</strong>,';
$_['text_user'] = 'User';
$_['text_gdpr'] = 'Your GDPR data deletion request has been approved and will be deleted in <strong>%s Days</strong>.';
$_['text_q'] = 'Q. Why do we not delete your data straight away?';
$_['text_a'] = 'A. Account deletion requests will process after <strong>%s days</strong> so any refunds, chargebacks or fraud detection can be processed.';
$_['text_delete'] = 'You will receive a email informing you when your account has been deleted.';
$_['text_thanks'] = 'Thanks,';

View File

@@ -0,0 +1,12 @@
<?php
// Text
$_['text_subject'] = '%s - GDPR request has been processed!';
$_['text_request'] = 'Account Deletion Request';
$_['text_hello'] = 'Hello <strong>%s</strong>,';
$_['text_user'] = 'User';
$_['text_delete'] = 'Your GDPR data deletion request has now been completed.';
$_['text_contact'] = 'For more information you can contact the store owner here:';
$_['text_thanks'] = 'Thanks,';
// Button
$_['button_contact'] = 'Contact Us';

View File

@@ -0,0 +1,12 @@
<?php
// Text
$_['text_subject'] = '%s - GDPR request denied!';
$_['text_export'] = 'Account Export Data Request';
$_['text_remove'] = 'Account Deletion Request';
$_['text_hello'] = 'Hello <strong>%s</strong>,';
$_['text_user'] = 'User';
$_['text_contact'] = 'Unfortunately your request has been denied. For more information you can contact the store here:';
$_['text_thanks'] = 'Thanks,';
// Button
$_['button_contact'] = 'Contact Us';

View File

@@ -0,0 +1,26 @@
<?php
// Text
$_['text_subject'] = '%s - GDPR export request completed!';
$_['text_request'] = 'Export Personal Data';
$_['text_hello'] = 'Hello <strong>%s</strong>,';
$_['text_user'] = 'User';
$_['text_gdpr'] = 'Your GDPR data request has now been complete. Below you will find your GDPR data.';
$_['text_account'] = 'Account';
$_['text_customer'] = 'Personal Information';
$_['text_address'] = 'Address';
$_['text_addresses'] = 'Addresses';
$_['text_name'] = 'Customer Name';
$_['text_recipient'] = 'Recipient';
$_['text_email'] = 'E-Mail';
$_['text_telephone'] = 'Telephone';
$_['text_company'] = 'Company';
$_['text_address_1'] = 'Address 1';
$_['text_address_2'] = 'Address 2';
$_['text_postcode'] = 'Post Code';
$_['text_city'] = 'City';
$_['text_country'] = 'Country';
$_['text_zone'] = 'Region / State';
$_['text_history'] = 'Login History';
$_['text_ip'] = 'IP';
$_['text_date_added'] = 'Date Added';
$_['text_thanks'] = 'Thanks,';

View File

@@ -0,0 +1,8 @@
<?php
// Text
$_['text_subject'] = '%s - Return Update %s';
$_['text_return_id'] = 'Return ID:';
$_['text_date_added'] = 'Return Date:';
$_['text_return_status'] = 'Your return has been updated to the following status:';
$_['text_comment'] = 'The comments for your return are:';
$_['text_footer'] = 'Please reply to this email if you have any questions.';

View File

@@ -0,0 +1,5 @@
<?php
// Text
$_['text_subject'] = '%s - Reward Points';
$_['text_received'] = 'You have received %s Reward Points!';
$_['text_total'] = 'Your total number of reward points is now %s.';

View File

@@ -0,0 +1,10 @@
<?php
// Text
$_['text_subject'] = '%s - Subscription';
$_['text_subscription_id'] = 'Subscription ID';
$_['text_date_added'] = 'Subscription Date:';
$_['text_subscription_status'] = 'Your subscription has been added to the following status:';
$_['text_comment'] = 'The comments for your subscription are:';
$_['text_payment_method'] = 'Payment Method';
$_['text_payment_code'] = 'Payment Code';
$_['text_footer'] = 'Please reply to this email if you have any questions.';

View File

@@ -0,0 +1,6 @@
<?php
// Text
$_['text_subject'] = '%s - Affiliate Credit';
$_['text_received'] = 'You have received %s credit!';
$_['text_total'] = 'Your total amount of credit is now %s.';
$_['text_credit'] = 'Your account credit can deducted from your next purchase.';

View File

@@ -0,0 +1,10 @@
<?php
// Text
$_['text_success'] = 'Success: You have modified vouchers!';
$_['text_subject'] = 'You have been sent a gift certificate from %s';
$_['text_greeting'] = 'Congratulations, You have received a Gift Certificate worth %s';
$_['text_from'] = 'This Gift Certificate has been sent to you by %s';
$_['text_message'] = 'With a message saying';
$_['text_redeem'] = 'In the first place, to redeem this Gift Certificate, write down the redemption code which is <b>%s</b>. Then, click on the link below and purchase the product you wish to use this gift certificate. Lastly, you can enter the gift certificate code on the <b>Shopping Cart</b> page before you click: <b>Checkout</b>.';
$_['text_footer'] = 'Please reply to this email if you have any questions.';
$_['text_sent'] = 'Success: Gift Voucher e-mail has been sent!';

View File

@@ -0,0 +1,82 @@
<?php
// Heading
$_['heading_title'] = 'Affiliates';
// Text
$_['text_success'] = 'Success: You have modified affiliates!';
$_['text_list'] = 'Affiliate List';
$_['text_add'] = 'Add Affiliate';
$_['text_edit'] = 'Edit Affiliate';
$_['text_affiliate'] = 'Affiliate Details';
$_['text_payment'] = 'Payment Details';
$_['text_other'] = 'Other';
$_['text_balance'] = 'Balance';
$_['text_cheque'] = 'Cheque';
$_['text_paypal'] = 'PayPal';
$_['text_bank'] = 'Bank Transfer';
$_['text_history'] = 'History';
$_['text_history_add'] = 'Add History';
$_['text_transaction'] = 'Transactions';
$_['text_transaction_add'] = 'Add Transaction';
$_['text_report'] = 'Reports';
$_['text_filter'] = 'Filter';
$_['text_payment_cheque'] = 'Cheque Payment';
$_['text_payment_paypal'] = 'PayPal Payment';
$_['text_payment_bank'] = 'Bank Transfer Payment';
// Column
$_['column_name'] = 'Customer Name';
$_['column_tracking'] = 'Tracking';
$_['column_commission'] = 'Commission';
$_['column_balance'] = 'Balance';
$_['column_status'] = 'Status';
$_['column_ip'] = 'IP';
$_['column_account'] = 'Accounts';
$_['column_store'] = 'Store';
$_['column_country'] = 'Country';
$_['column_date_added'] = 'Date Added';
$_['column_comment'] = 'Comment';
$_['column_description'] = 'Description';
$_['column_amount'] = 'Amount';
$_['column_action'] = 'Action';
// Entry
$_['entry_customer'] = 'Customer';
$_['entry_company'] = 'Company';
$_['entry_tracking'] = 'Tracking Code';
$_['entry_website'] = 'Web Site';
$_['entry_commission'] = 'Commission (%)';
$_['entry_tax'] = 'Tax ID';
$_['entry_payment_method'] = 'Payment Method';
$_['entry_cheque'] = 'Cheque Payee Name';
$_['entry_paypal'] = 'PayPal Email Account';
$_['entry_bank_name'] = 'Bank Name';
$_['entry_bank_branch_number'] = 'ABA/BSB number (Branch Number)';
$_['entry_bank_swift_code'] = 'SWIFT Code';
$_['entry_bank_account_name'] = 'Account Name';
$_['entry_bank_account_number'] = 'Account Number';
$_['entry_comment'] = 'Comment';
$_['entry_description'] = 'Description';
$_['entry_amount'] = 'Amount';
$_['entry_date_from'] = 'Date From';
$_['entry_date_to'] = 'Date To';
$_['entry_status'] = 'Status';
$_['entry_limit'] = 'Limit';
// Help
$_['help_tracking'] = 'The tracking code that will be used to track referrals.';
$_['help_commission'] = 'Percentage the affiliate receives on each order.';
// Error
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
$_['error_permission'] = 'Warning: You do not have permission to modify affiliates!';
$_['error_customer'] = 'Warning: Customer required!';
$_['error_already'] = 'Warning: Customer is already registered as an affiliate!';
$_['error_tracking'] = 'Tracking Code required!';
$_['error_exists'] = 'Tracking code is being used by another affiliate!';
$_['error_payment_method'] = 'Payment method required!';
$_['error_cheque'] = 'Cheque Payee Name required!';
$_['error_paypal'] = 'PayPal Email Address does not appear to be valid!';
$_['error_bank_account_name'] = 'Account Name required!';
$_['error_bank_account_number'] = 'Account Number required!';
$_['error_custom_field'] = '%s required!';

View File

@@ -0,0 +1,37 @@
<?php
// Heading
$_['heading_title'] = 'Mail';
// Text
$_['text_mail'] = 'Send e-mail\'s to customers';
$_['text_success'] = 'Your message has been successfully sent!';
$_['text_sent'] = 'Your message has been successfully sent to %s - %s recipients!';
$_['text_default'] = 'Default';
$_['text_newsletter'] = 'All Newsletter Subscribers';
$_['text_customer_all'] = 'All Customers';
$_['text_customer_group'] = 'Customer Group';
$_['text_customer'] = 'Customers';
$_['text_affiliate_all'] = 'All Affiliates';
$_['text_affiliate'] = 'Affiliates';
$_['text_product'] = 'Products';
// Entry
$_['entry_store'] = 'From';
$_['entry_to'] = 'To';
$_['entry_customer_group'] = 'Customer Group';
$_['entry_customer'] = 'Customer';
$_['entry_affiliate'] = 'Affiliate';
$_['entry_product'] = 'Products';
$_['entry_subject'] = 'Subject';
$_['entry_message'] = 'Message';
// Help
$_['help_customer'] = '(Autocomplete)';
$_['help_affiliate'] = '(Autocomplete)';
$_['help_product'] = 'Send only to customers who have ordered products in the list. (Autocomplete)';
// Error
$_['error_permission'] = 'Warning: You do not have permission to send E-Mails!';
$_['error_subject'] = 'E-Mail Subject required!';
$_['error_message'] = 'E-Mail Message required!';
$_['error_email'] = 'No E-Mail recipients!';

View File

@@ -0,0 +1,57 @@
<?php
// Heading
$_['heading_title'] = 'Coupons';
// Text
$_['text_success'] = 'Success: You have modified coupons!';
$_['text_list'] = 'Coupon List';
$_['text_add'] = 'Add Coupon';
$_['text_edit'] = 'Edit Coupon';
$_['text_percent'] = 'Percentage';
$_['text_amount'] = 'Fixed Amount';
$_['text_coupon'] = 'History';
// Column
$_['column_name'] = 'Coupon Name';
$_['column_code'] = 'Code';
$_['column_discount'] = 'Discount';
$_['column_date_start'] = 'Date Start';
$_['column_date_end'] = 'Date End';
$_['column_status'] = 'Status';
$_['column_order_id'] = 'Order ID';
$_['column_customer'] = 'Customer';
$_['column_amount'] = 'Amount';
$_['column_date_added'] = 'Date Added';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Coupon Name';
$_['entry_code'] = 'Code';
$_['entry_type'] = 'Type';
$_['entry_discount'] = 'Discount';
$_['entry_logged'] = 'Customer Login';
$_['entry_shipping'] = 'Free Shipping';
$_['entry_total'] = 'Total Amount';
$_['entry_category'] = 'Category';
$_['entry_product'] = 'Products';
$_['entry_date_start'] = 'Date Start';
$_['entry_date_end'] = 'Date End';
$_['entry_uses_total'] = 'Uses Per Coupon';
$_['entry_uses_customer'] = 'Uses Per Customer';
$_['entry_status'] = 'Status';
// Help
$_['help_code'] = 'The code the customer enters to get the discount.';
$_['help_type'] = 'Percentage or Fixed Amount.';
$_['help_logged'] = 'Customer must be logged in to use the coupon.';
$_['help_total'] = 'The total amount that must be reached before the coupon is valid.';
$_['help_category'] = 'Choose all products under selected category.';
$_['help_product'] = 'Choose specific products the coupon will apply to. Select no products to apply coupon to entire cart.';
$_['help_uses_total'] = 'The maximum number of times the coupon can be used by any customer. Leave blank for unlimited';
$_['help_uses_customer'] = 'The maximum number of times the coupon can be used by a single customer. Leave blank for unlimited';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify coupons!';
$_['error_exists'] = 'Warning: Coupon code is already in use!';
$_['error_name'] = 'Coupon Name must be between 3 and 128 characters!';
$_['error_code'] = 'Code must be between 3 and 20 characters!';

View File

@@ -0,0 +1,43 @@
<?php
// Heading
$_['heading_title'] = 'Marketing Tracking';
// Text
$_['text_success'] = 'Success: You have modified marketing tracking!';
$_['text_list'] = 'Marketing Tracking List';
$_['text_add'] = 'Add Marketing Tracking';
$_['text_edit'] = 'Edit Marketing Tracking';
$_['text_filter'] = 'Filter';
$_['text_history'] = 'History';
$_['text_history_add'] = 'Add History';
$_['text_report'] = 'Reports';
// Column
$_['column_name'] = 'Campaign Name';
$_['column_code'] = 'Code';
$_['column_clicks'] = 'Clicks';
$_['column_orders'] = 'Orders';
$_['column_ip'] = 'IP';
$_['column_account'] = 'Accounts';
$_['column_store'] = 'Store';
$_['column_country'] = 'Country';
$_['column_date_added'] = 'Date Added';
$_['column_action'] = 'Action';
// Entry
$_['entry_name'] = 'Campaign Name';
$_['entry_description'] = 'Campaign Description';
$_['entry_code'] = 'Tracking Code';
$_['entry_example'] = 'Examples';
$_['entry_date_from'] = 'Date From';
$_['entry_date_to'] = 'Date To';
// Help
$_['help_code'] = 'The tracking code that will be used to track marketing campaigns.';
$_['help_example'] = 'So the system can track referrals you need to add the tracking code to the end of the URL linking to your site.';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify marketing tracking!';
$_['error_name'] = 'Campaign must be between 1 and 32 characters!';
$_['error_code'] = 'Tracking Code required!';
$_['error_exists'] = 'Tracking code is being used by another campaign!';

View File

@@ -0,0 +1,16 @@
<?php
// Heading
$_['heading_title'] = 'OpenCart Marketplace API';
// Text
$_['text_success'] = 'Success: You have modified your API information!';
$_['text_signup'] = 'Please enter your OpenCart API information which you can obtain <a href="https://www.opencart.com/index.php?route=account/store" target="_blank" class="alert-link">here</a>.';
// Entry
$_['entry_username'] = 'Username';
$_['entry_secret'] = 'Secret';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify marketplace API!';
$_['error_username'] = 'Username required!';
$_['error_secret'] = 'Secret required!';

View File

@@ -0,0 +1,28 @@
<?php
// Heading
$_['heading_title'] = 'Cron Jobs';
// Text
$_['text_success'] = 'Success: You have modified cron jobs!';
$_['text_instruction'] = 'CRON Instructions';
$_['text_list'] = 'Cron List';
$_['text_cron_1'] = 'Cron Job\'s are scheduled tasks that are run periodically. To setup your servers to use cron job you can read the <a href="http://docs.opencart.com/extension/cron/" target="_blank" class="alert-link">opencart documentation</a> page.';
$_['text_cron_2'] = 'You need to set your Cron task to run every hour.';
$_['text_info'] = 'CRON Information';
$_['text_hour'] = 'Hour';
$_['text_day'] = 'Day';
$_['text_month'] = 'Month';
// Column
$_['column_code'] = 'Cron Code';
$_['column_cycle'] = 'Cycle';
$_['column_date_added'] = 'Date Added';
$_['column_date_modified'] = 'Date Modified';
$_['column_action'] = 'Action';
// entry
$_['entry_cron'] = 'Cron URL';
$_['entry_description'] = 'Description';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify cron jobs!';

View File

@@ -0,0 +1,22 @@
<?php
// Heading
$_['heading_title'] = 'Events';
// Text
$_['text_success'] = 'Success: You have modified events!';
$_['text_list'] = 'Event List';
$_['text_event'] = 'Events are used by extensions to override the default functionality of your store. If you have issues you can disable or enable the events here.';
$_['text_info'] = 'Event Information';
// Column
$_['column_code'] = 'Event Code';
$_['column_sort_order'] = 'Sort Order';
$_['column_action'] = 'Action';
// Entry
$_['entry_description'] = 'Description';
$_['entry_trigger'] = 'Trigger';
$_['entry_action'] = 'Action';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify the events!';

View File

@@ -0,0 +1,9 @@
<?php
// Heading
$_['heading_title'] = 'Extensions';
// Text
$_['text_success'] = 'Success: You have modified extensions!';
$_['text_list'] = 'Extension List';
$_['text_type'] = 'Choose the extension type';
$_['text_filter'] = 'Filter';

View File

@@ -0,0 +1,39 @@
<?php
// Heading
$_['heading_title'] = 'Extension Installer';
// Text
$_['text_upload'] = 'Success: The extension has been uploaded!';
$_['text_success'] = 'Success: You have modified extensions!';
$_['text_progress'] = 'Install Progress';
$_['text_installed'] = 'Installed Extensions';
// Column
$_['column_image'] = 'Image';
$_['column_name'] = 'Extension Name';
$_['column_version'] = 'Version';
$_['column_date_added'] = 'Date Added';
$_['column_action'] = 'Action';
// Entry
$_['entry_progress'] = 'Progress';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify extensions!';
$_['error_install'] = 'Warning: Could not find install.json!';
$_['error_default'] = 'Default extension could not be uninstalled or deleted!';
$_['error_extension'] = 'Installed extension could not be found!';
$_['error_installed'] = 'Extension already installed!';
$_['error_uninstall'] = 'There are %s extensions that need to be uninstalled before this extension can be safely removed!';
$_['error_name'] = 'Name must be between 3 and 128 characters!';
$_['error_version'] = 'Version must be between 3 and 128 characters!';
$_['error_author'] = 'Author must be between 3 and 128 characters!';
$_['error_link'] = 'Link must be between 3 and 128 characters!';
$_['error_filename'] = 'Filename must be between 3 and 128 characters!';
$_['error_file'] = 'Install file %s could not be found!';
$_['error_file_exists'] = 'File already exist!';
$_['error_file_type'] = 'Invalid file type!';
$_['error_directory'] = 'Install directory %s could not be found!';
$_['error_directory_exists'] = 'Path %s already exists!';
$_['error_unzip'] = 'Zip file could not be opened!';
$_['error_upload'] = 'File could not be uploaded!';

View File

@@ -0,0 +1,78 @@
<?php
// Heading
$_['heading_title'] = 'Extension Marketplace';
// Text
$_['text_success'] = 'Success: You have modified extensions!';
$_['text_list'] = 'Extension List';
$_['text_filter'] = 'Filter';
$_['text_search'] = 'Search for extensions and themes';
$_['text_category'] = 'Categories';
$_['text_all'] = 'All';
$_['text_theme'] = 'Themes';
$_['text_marketplace'] = 'Marketplaces';
$_['text_language'] = 'Languages';
$_['text_payment'] = 'Payment';
$_['text_shipping'] = 'Shipping';
$_['text_module'] = 'Modules';
$_['text_total'] = 'Order Totals';
$_['text_feed'] = 'Feeds';
$_['text_report'] = 'Reports';
$_['text_other'] = 'Other';
$_['text_free'] = 'Free';
$_['text_paid'] = 'Paid';
$_['text_purchased'] = 'Purchased';
$_['text_recommended'] = 'Recommended';
$_['text_date_modified'] = 'Date Modified';
$_['text_date_added'] = 'Date Added';
$_['text_rating'] = 'Rating';
$_['text_reviews'] = 'reviews';
$_['text_compatibility'] = 'Compatibility';
$_['text_downloaded'] = 'Downloaded';
$_['text_member_since'] = 'Member since:';
$_['text_price'] = 'Price';
$_['text_featured'] = 'Featured';
$_['text_partner'] = 'Developed by OpenCart Partner';
$_['text_support'] = '12 Months free support';
$_['text_documentation'] = 'Documentation Included';
$_['text_sales'] = 'Sales';
$_['text_comment'] = 'Comments';
$_['text_download'] = 'Downloading';
$_['text_install'] = 'Installing';
$_['text_comment_add'] = 'Leave your comment';
$_['text_write'] = 'Write your comment here.';
$_['text_purchase'] = 'Please confirm who you are!';
$_['text_pin'] = 'Please enter your 4 digit PIN number. This PIN number is to protect your account.';
$_['text_secure'] = 'Do not give your PIN to anyone (including developers). If you require assistance, please send an email to the extension seller in regards to the specific extension package.';
$_['text_name'] = 'Download Name';
$_['text_available'] = 'Available Installs';
$_['text_action'] = 'Action';
$_['text_install'] = 'Install';
$_['text_uninstall'] = 'Uninstall';
$_['text_delete'] = 'Delete';
$_['text_more'] = 'see more replies...';
$_['text_refresh'] = 'refresh';
// Entry
$_['entry_pin'] = 'PIN';
// Tab
$_['tab_description'] = 'Description';
$_['tab_documentation'] = 'Documentation';
$_['tab_download'] = 'Download';
$_['tab_comment'] = 'Comment';
// Button
$_['button_api'] = 'Marketplace API';
$_['button_purchase'] = 'Purchase';
$_['button_view_all'] = 'View all extensions';
$_['button_support'] = 'Get Support';
$_['button_comment'] = 'Comment';
$_['button_reply'] = 'Reply';
$_['button_forgot_pin'] = 'Forgot PIN?';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify extensions!';
$_['error_api'] = 'Warning: You must enter your OpenCart API information by clicking the <i class="fa-solid fa-triangle-exclamation"></i> before you can download extensions or make any purchases!';
$_['error_purchase'] = 'The extension could not be purchased!';
$_['error_download'] = 'The extension could not be downloaded!';

View File

@@ -0,0 +1,6 @@
<?php
// Text
$_['text_recommended'] = 'Recommended';
$_['text_install'] = 'Install';
$_['text_uninstall'] = 'Uninstall';
$_['text_delete'] = 'Delete';

Some files were not shown because too many files have changed in this diff Show More