1
0

Added default language pack (en-gb)

This commit is contained in:
Christer Waren
2020-02-12 23:25:39 +02:00
parent 27b4234c0f
commit 704d608ff8
465 changed files with 15946 additions and 0 deletions

View File

@ -0,0 +1,36 @@
<?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';
// 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';
// 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 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_affiliate'] = 'Warning: This country cannot be deleted as it is currently assigned to %s affiliates!';
$_['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,38 @@
<?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_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'] = 'Set to 1.00000 if this is your default currency.';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify currencies!';
$_['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,37 @@
<?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_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 added before the language!';
$_['error_name'] = 'Language Name must be between 3 and 32 characters!';
$_['error_code'] = 'Language Code must at least 2 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'] = 'Set to 1.00000 if this is 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,38 @@
<?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_default'] = 'Default';
$_['text_time'] = 'Opening Times';
$_['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_fax'] = 'Fax';
$_['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,24 @@
<?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_store'] = 'Warning: This order status cannot be deleted as it is currently assigned to %s stores!';
$_['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,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'] = 'Set to 1.00000 if this is 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';
// 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_affiliate'] = 'Warning: This zone cannot be deleted as it is currently assigned to %s affiliates!';
$_['error_zone_to_geo_zone'] = 'Warning: This zone cannot be deleted as it is currently assigned to %s zones to geo zones!';