Added default language pack (en-gb)
This commit is contained in:
26
admin/catalog/attribute.php
Normal file
26
admin/catalog/attribute.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?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_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!';
|
24
admin/catalog/attribute_group.php
Normal file
24
admin/catalog/attribute_group.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?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_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!';
|
47
admin/catalog/category.php
Normal file
47
admin/catalog/category.php
Normal file
@@ -0,0 +1,47 @@
|
||||
<?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_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_keyword'] = 'SEO URL already in use!';
|
||||
$_['error_unique'] = 'SEO URL must be unique!';
|
||||
$_['error_parent'] = 'The parent category you have chosen is a child of the current one!';
|
34
admin/catalog/download.php
Normal file
34
admin/catalog/download.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<?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!';
|
||||
|
||||
// Column
|
||||
$_['column_name'] = 'Download Name';
|
||||
$_['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_permission'] = 'Warning: You do not have permission to modify downloads!';
|
||||
$_['error_name'] = 'Download Name must be between 3 and 64 characters!';
|
||||
$_['error_upload'] = 'Upload required!';
|
||||
$_['error_filename'] = 'Filename must be between 3 and 128 characters!';
|
||||
$_['error_exists'] = 'File does not exist!';
|
||||
$_['error_mask'] = 'Mask must be between 3 and 128 characters!';
|
||||
$_['error_filetype'] = 'Invalid file type!';
|
||||
$_['error_product'] = 'Warning: This download cannot be deleted as it is currently assigned to %s products!';
|
26
admin/catalog/filter.php
Normal file
26
admin/catalog/filter.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?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_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!';
|
46
admin/catalog/information.php
Normal file
46
admin/catalog/information.php
Normal file
@@ -0,0 +1,46 @@
|
||||
<?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 already in use!';
|
||||
$_['error_unique'] = 'SEO URL must be unique!';
|
||||
$_['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!';
|
33
admin/catalog/manufacturer.php
Normal file
33
admin/catalog/manufacturer.php
Normal 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_percent'] = 'Percentage';
|
||||
$_['text_amount'] = 'Fixed Amount';
|
||||
$_['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_type'] = 'Type';
|
||||
|
||||
// Error
|
||||
$_['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 already in use!';
|
||||
$_['error_unique'] = 'SEO URL must be unique!';
|
||||
$_['error_product'] = 'Warning: This manufacturer cannot be deleted as it is currently assigned to %s products!';
|
41
admin/catalog/option.php
Normal file
41
admin/catalog/option.php
Normal file
@@ -0,0 +1,41 @@
|
||||
<?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 & 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_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_product'] = 'Warning: This option cannot be deleted as it is currently assigned to %s products!';
|
110
admin/catalog/product.php
Normal file
110
admin/catalog/product.php
Normal file
@@ -0,0 +1,110 @@
|
||||
<?php
|
||||
// Heading
|
||||
$_['heading_title'] = 'Products';
|
||||
|
||||
// Text
|
||||
$_['text_success'] = 'Success: You have modified products!';
|
||||
$_['text_list'] = 'Product List';
|
||||
$_['text_add'] = 'Add Product';
|
||||
$_['text_edit'] = 'Edit Product';
|
||||
$_['text_filter'] = 'Filter';
|
||||
$_['text_plus'] = '+';
|
||||
$_['text_minus'] = '-';
|
||||
$_['text_default'] = 'Default';
|
||||
$_['text_option'] = 'Option';
|
||||
$_['text_option_value'] = 'Option Value';
|
||||
$_['text_percent'] = 'Percentage';
|
||||
$_['text_amount'] = 'Fixed Amount';
|
||||
$_['text_keyword'] = 'Do not use spaces, instead replace spaces with - and make sure the SEO URL is globally unique.';
|
||||
|
||||
// Column
|
||||
$_['column_name'] = 'Product Name';
|
||||
$_['column_model'] = 'Model';
|
||||
$_['column_image'] = 'Image';
|
||||
$_['column_price'] = 'Price';
|
||||
$_['column_quantity'] = 'Quantity';
|
||||
$_['column_status'] = 'Status';
|
||||
$_['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_tax_class'] = 'Tax Class';
|
||||
$_['entry_points'] = 'Points';
|
||||
$_['entry_option_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_image'] = 'Image';
|
||||
$_['entry_additional_image'] = 'Additional Images';
|
||||
$_['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_text'] = 'Text';
|
||||
$_['entry_option'] = 'Option';
|
||||
$_['entry_option_value'] = 'Option Value';
|
||||
$_['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_recurring'] = 'Recurring Profile';
|
||||
|
||||
// Help
|
||||
$_['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_manufacturer'] = '(Autocomplete)';
|
||||
$_['help_minimum'] = 'Force a minimum ordered amount';
|
||||
$_['help_stock_status'] = 'Status shown when a product is out of stock';
|
||||
$_['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.';
|
||||
$_['help_category'] = '(Autocomplete)';
|
||||
$_['help_filter'] = '(Autocomplete)';
|
||||
$_['help_download'] = '(Autocomplete)';
|
||||
$_['help_related'] = '(Autocomplete)';
|
||||
$_['help_tag'] = 'Comma separated';
|
||||
|
||||
// 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 already in use!';
|
||||
$_['error_unique'] = 'SEO URL must be unique!';
|
42
admin/catalog/recurring.php
Normal file
42
admin/catalog/recurring.php
Normal file
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
// Heading
|
||||
$_['heading_title'] = 'Recurring Profiles';
|
||||
|
||||
// Text
|
||||
$_['text_success'] = 'Success: You have modified recurring profiles!';
|
||||
$_['text_list'] = 'Recurring Profile List';
|
||||
$_['text_add'] = 'Add Recurring Profile';
|
||||
$_['text_edit'] = 'Edit Recurring Profile';
|
||||
$_['text_day'] = 'Day';
|
||||
$_['text_week'] = 'Week';
|
||||
$_['text_semi_month'] = 'Semi Month';
|
||||
$_['text_month'] = 'Month';
|
||||
$_['text_year'] = 'Year';
|
||||
$_['text_recurring'] = '<p><i class="fa fa-info-circle"></i> Recurring amounts are calculated by the frequency and cycles.</p><p>For example if you use a frequency of "week" and a cycle of "2", then the user will be billed every 2 weeks.</p><p>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.</p>';
|
||||
$_['text_profile'] = 'Recurring Profile';
|
||||
$_['text_trial'] = 'Trial Profile';
|
||||
|
||||
// Entry
|
||||
$_['entry_name'] = 'Name';
|
||||
$_['entry_price'] = 'Price';
|
||||
$_['entry_duration'] = 'Duration';
|
||||
$_['entry_cycle'] = 'Cycle';
|
||||
$_['entry_frequency'] = 'Frequency';
|
||||
$_['entry_trial_price'] = 'Trial price';
|
||||
$_['entry_trial_duration'] = 'Trial duration';
|
||||
$_['entry_trial_status'] = 'Trial status';
|
||||
$_['entry_trial_cycle'] = 'Trial cycle';
|
||||
$_['entry_trial_frequency'] = 'Trial frequency';
|
||||
$_['entry_status'] = 'Status';
|
||||
$_['entry_sort_order'] = 'Sort Order';
|
||||
|
||||
// Column
|
||||
$_['column_name'] = 'Name';
|
||||
$_['column_sort_order'] = 'Sort Order';
|
||||
$_['column_action'] = 'Action';
|
||||
|
||||
// Error
|
||||
$_['error_warning'] = 'Warning: Please check the form carefully for errors!';
|
||||
$_['error_permission'] = 'Warning: You do not have permission to modify recurring profiles!';
|
||||
$_['error_name'] = 'Profile Name must be greater than 3 and less than 255 characters!';
|
||||
$_['error_product'] = 'Warning: This recurring profile cannot be deleted as it is currently assigned to %s products!';
|
36
admin/catalog/review.php
Normal file
36
admin/catalog/review.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
// Heading
|
||||
$_['heading_title'] = 'Reviews';
|
||||
|
||||
// Text
|
||||
$_['text_success'] = 'Success: You have modified reviews!';
|
||||
$_['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_added'] = 'Date Added';
|
||||
|
||||
// Help
|
||||
$_['help_product'] = '(Autocomplete)';
|
||||
|
||||
// Error
|
||||
$_['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!';
|
Reference in New Issue
Block a user