QuickEdit Module en-us

From MODx Wiki

Jump to: navigation, search
  1. <?php
  2.  
  3. /*
  4. * Written by: Adam Crownoble
  5. * Contact: adam@obledesign.com
  6. * Created: 11/18/2005
  7. * For: MODx cms (modxcms.com)
  8. * Description: Class for the QuickEditor
  9. */
  10.  
  11. /*
  12. License
  13.  
  14. QuickEdit - A MODx module which allows the editing of content via
  15. the frontent of the site
  16. Copyright (C) 2005 Adam Crownoble
  17.  
  18. This program is free software; you can redistribute it and/or modify
  19. it under the terms of the GNU General Public License as published by
  20. the Free Software Foundation; either version 2 of the License, or
  21. (at your option) any later version.
  22.  
  23. This program is distributed in the hope that it will be useful,
  24. but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  26. GNU General Public License for more details.
  27.  
  28. You should have received a copy of the GNU General Public License
  29. along with this program; if not, write to the Free Software
  30. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  31.  
  32. */
  33.  
  34. $QE_lang['QE_lang'] = 'en';
  35. $QE_lang['QE_xml_lang'] = 'en';
  36. $QE_lang['QE_charset'] = 'iso-8859-1';
  37. $QE_lang['QE_title'] = 'QuickEdit'; // please change only if it violates local trademarks
  38. $QE_lang['QE_show_links'] = 'Show links';
  39. $QE_lang['QE_hide_links'] = 'Hide links';
  40. $QE_lang['QE_someone_editing'] = 'Someone else is editing this document';
  41. $QE_lang['QE_cant_find_content'] = 'Could not find content to edit';
  42. $QE_lang['QE_description'] = 'Edit pages from the frontend of the site';
  43. $QE_lang['revert'] = 'Revert';
  44. $QE_lang['apply'] = 'Apply';
  45. $QE_lang['revert_prompt'] = 'Undo ALL of your edits?';
  46. $QE_lang['QE_no_edit_rights'] = 'No edit rights';
  47. $QE_lang['ok'] = 'OK';
  48. $QE_lang['content'] = 'Content';
  49. $QE_lang['setting'] = 'Settings';
  50. $QE_lang['go'] = 'Go';
  51. $QE_lang['manager'] = 'Manager';
  52. $QE_lang['help'] = 'Help';
  53. $QE_lang['edit'] = 'Edit';
  54. $QE_lang['logout'] = 'Logout';
  55. $QE_lang['close'] = 'Close';
  56. $QE_lang['document_title'] = 'Title';
  57. $QE_lang['document_title_help'] = 'Type the name/ title of the document here. Try to avoid using backslashes in the name!';
  58. $QE_lang['long_title'] = 'Long title';
  59. $QE_lang['document_long_title_help'] = 'Here you can enter a longer title for your document. This is handy for search engines, and might be more descriptive for your document.';
  60. $QE_lang['document_description'] = 'Description';
  61. $QE_lang['document_description_help'] = 'You can enter an optional description of the document here.';
  62. $QE_lang['document_content'] = 'Document content';
  63. $QE_lang['template'] = 'Template';
  64. $QE_lang['page_data_template_help'] = 'Here you can select which template the document uses.';
  65. $QE_lang['document_alias'] = 'Document\'s alias';
  66. $QE_lang['document_alias_help'] = 'Here you can select an alias for this document. This will make the document accessible using:\n\nhttp://yourserver/alias\n\nThis only works if you\'re using friendly URLs.';
  67. $QE_lang['document_opt_published'] = 'Published?';
  68. $QE_lang['document_opt_published_help'] = 'Check this field to have the document published immediately after saving it.';
  69. $QE_lang['document_summary'] = 'Summary (introtext)';
  70. $QE_lang['document_summary_help'] = 'Type a brief summary of the document';
  71. $QE_lang['document_opt_menu_index'] = 'Menu index';
  72. $QE_lang['document_opt_menu_index_help'] = 'Menu Index is a field you can use for sorting document in your menu snippet(s). You can also use it for any other purpose in your snippets.';
  73. $QE_lang['document_opt_menu_title'] = 'Menu title';
  74. $QE_lang['document_opt_menu_title_help'] = 'Menu title is a field you can use to display a short title for the document inside your menu snippet(s) or modules.';
  75. $QE_lang['document_opt_show_menu'] = 'Show in menu';
  76. $QE_lang['document_opt_show_menu_help'] = 'Select this option to show document inside a web menu. Please note that some Menu Builders might choose to ignore this option.';
  77. $QE_lang['page_data_searchable'] = 'Searchable';
  78. $QE_lang['page_data_searchable_help'] = 'Checking this field will allow the document to be searched. You can also use this field for other purposes in your snippets.';
  79. $QE_lang['page_data_cacheable'] = 'Cacheable';
  80. $QE_lang['page_data_cacheable_help'] = 'Leaving this field checked will allow the document to be saved to cache. If your document contains snippets, make sure this field is unchecked.';
  81. ?>
Personal tools