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

28
admin/design/banner.php Normal file
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!';

36
admin/design/layout.php Normal file
View File

@ -0,0 +1,36 @@
<?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_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_information'] = 'Warning: This layout cannot be deleted as it is currently assigned to %s information pages!';

30
admin/design/seo_url.php Normal file
View File

@ -0,0 +1,30 @@
<?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_query'] = 'Query';
$_['column_keyword'] = 'Keyword';
$_['column_store'] = 'Store';
$_['column_language'] = 'Language';
$_['column_action'] = 'Action';
// Entry
$_['entry_query'] = 'Query';
$_['entry_keyword'] = 'Keyword';
$_['entry_store'] = 'Store';
$_['entry_language'] = 'Language';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify SEO URL!';
$_['error_query'] = 'Query must be between 3 and 64 characters!';
$_['error_keyword'] = 'Keyword must be between 3 and 64 characters!';
$_['error_exists'] = 'Keyword already in use!';

23
admin/design/theme.php Normal file
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_history'] = 'Theme History';
$_['text_twig'] = 'The theme editor uses the template language Twig. You can read about <a href="http://twig.sensiolabs.org/documentation" target="_blank" class="alert-link">Twig syntax here</a>.';
// Column
$_['column_store'] = 'Store';
$_['column_route'] = 'Route';
$_['column_theme'] = 'Theme';
$_['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_edit'] = 'Edit Translation';
$_['text_add'] = 'Add 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!';