menu.inc.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /**
  3. * Menu English lexicon topic
  4. *
  5. * @language en
  6. * @package modx
  7. * @subpackage lexicon
  8. */
  9. $_lang['action'] = 'Action';
  10. $_lang['action_desc'] = 'The controller path to use for this menu item. The path to the controller is built by prefixing the Namespace path, controllers, and manager theme with this value. (Ex: user/update for core Namespace goes to [core_namespace_path]controllers/ [mgr_theme]/user/update.class.php )';
  11. $_lang['description_desc'] = 'The text, or lexicon key, that will be used for rendering the description text of this page in the menu.';
  12. $_lang['handler'] = 'Handler';
  13. $_lang['handler_desc'] = '(Optional) If set, will not use the action field, but instead run this JavaScript instead when the menu item is clicked.';
  14. $_lang['icon'] = 'Εικονίδιο';
  15. $_lang['icon_desc'] = 'An optional icon/markup.';
  16. $_lang['lexicon_key'] = 'Lexicon Key';
  17. $_lang['lexicon_key_desc'] = 'The text, or lexicon key, that will be used for rendering the title text of this page in the menu.';
  18. $_lang['menu_create'] = 'Create Menu';
  19. $_lang['menu_confirm_remove'] = 'Are you sure you want to remove this menu?';
  20. $_lang['menu_err_ae'] = 'A menu already exists with that name. Please specify a different text value.';
  21. $_lang['menu_err_nf'] = 'Menu not found!';
  22. $_lang['menu_err_ns'] = 'No menu specified!';
  23. $_lang['menu_err_remove'] = 'An error occurred while trying to remove the menu.';
  24. $_lang['menu_err_save'] = 'An error occurred while trying to save the menu.';
  25. $_lang['menu_parent'] = 'Parent Menu';
  26. $_lang['menu_parent_err_ns'] = 'Parent menu not specified!';
  27. $_lang['menu_parent_err_nf'] = 'Parent menu not found!';
  28. $_lang['menu_remove'] = 'Delete Menu Item';
  29. $_lang['menu_top'] = 'Top Menu';
  30. $_lang['menu_update'] = 'Update Menu';
  31. $_lang['menus'] = 'Menus';
  32. $_lang['namespace'] = 'Namespace (ονοματόχωρος)';
  33. $_lang['namespace_desc'] = 'The Namespace which this menu item is based on. This will determine the path for the controller that is loaded.';
  34. $_lang['parameters'] = 'Parameters';
  35. $_lang['parameters_desc'] = 'Any request parameters you want appended to the result URL when clicking this menu. (Ex: &expire=1)';
  36. $_lang['permissions'] = 'Permission';
  37. $_lang['permissions_desc'] = 'A permission key required to load this menu item.';
  38. $_lang['topmenu'] = 'Top Menu';
  39. $_lang['topmenu_desc'] = 'This allows you to associate actions with menu items in the top menu bar of the MODX manager. Simply place menus where you would like them in their respective positions.';