mirror of
https://github.com/shadoll/translate.git
synced 2025-12-20 03:27:08 +00:00
34 lines
1.2 KiB
PHP
34 lines
1.2 KiB
PHP
<?php
|
|
// Heading
|
|
$_['heading_title'] = 'Menu';
|
|
|
|
// Text
|
|
$_['text_success'] = 'Success: You have modified layouts!';
|
|
$_['text_list'] = 'Menu List';
|
|
$_['text_add'] = 'Add Menu';
|
|
$_['text_edit'] = 'Edit Menu';
|
|
$_['text_default'] = 'Default';
|
|
$_['text_link'] = 'Link';
|
|
$_['text_module'] = 'Module';
|
|
|
|
// Column
|
|
$_['column_name'] = 'Menu Name';
|
|
$_['column_store'] = 'Store';
|
|
$_['column_type'] = 'Type';
|
|
$_['column_sort_order'] = 'Sort Order';
|
|
$_['column_status'] = 'Status';
|
|
$_['column_action'] = 'Action';
|
|
|
|
// Entry
|
|
$_['entry_name'] = 'Menu Name';
|
|
$_['entry_store'] = 'Store';
|
|
$_['entry_type'] = 'Type';
|
|
$_['entry_sort_order'] = 'Sort Order';
|
|
$_['entry_module'] = 'Module';
|
|
$_['entry_status'] = 'Status';
|
|
|
|
// 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!'; |