PageRenderTime 238ms CodeModel.GetById 142ms RepoModel.GetById 0ms app.codeStats 1ms

/language/admin_english_utf-8.php

https://github.com/wuts/earthquake
PHP | 1984 lines | 1684 code | 141 blank | 159 comment | 2 complexity | 95db340509e83635060d6f38bbaa5a16 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1
  1. <?php
  2. /**
  3. * @version $Id: admin_english_utf-8.php,v 1.9 2008/04/21 11:27:52 lang3 Exp $
  4. * @package Mambors
  5. * @copyright (C) 2004 - 2007 Mambochina.net
  6. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
  7. * Mambors is Free Software based on Mambo
  8. * Powered By mambochina.net & mambors.org
  9. */
  10. /** ensure this file is being included by a parent file */
  11. defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
  12. // Language and Encode of admin language
  13. DEFINE('_A_LANGUAGE','en');
  14. DEFINE('_A_ISO','charset=UTF-8');
  15. // needed for $alt text in toolbar item
  16. DEFINE('_A_CANCEL','Cancel');
  17. DEFINE('_A_SAVE','Save');
  18. DEFINE('_A_APPLY','Apply');
  19. DEFINE('_A_CLOSE','Close');
  20. DEFINE('_A_COPY','Copy');
  21. DEFINE('_A_MOVE','Move');
  22. DEFINE('_A_DELETE','Delete');
  23. DEFINE('_A_NEXT','Next');
  24. DEFINE('_A_BACK','Back');
  25. DEFINE('_A_DEFAULT','Default');
  26. DEFINE('_A_RESTORE','Restore');
  27. /**
  28. * @location /../includes/mambo.php
  29. * @desc Includes translations of several droplists and non-translated stuff
  30. */
  31. //Droplist
  32. DEFINE('_A_TOP','Top');
  33. DEFINE('_A_ALL','All');
  34. DEFINE('_A_NONE','None');
  35. DEFINE('_A_SELECT_IMAGE','Select Image');
  36. DEFINE('_A_NO_USER','No User');
  37. DEFINE('_A_CREATE_CAT','You must create a category first');
  38. DEFINE('_A_PARENT_BROWSER_NAV','Parent Window With Browser Navigation');
  39. DEFINE('_A_NEW_BROWSER_NAV','New Window With Browser Navigation');
  40. DEFINE('_A_NEW_W_BROWSER_NAV','New Window Without Browser Navigation');
  41. //Alt Hover
  42. DEFINE('_A_PENDING','Pending');
  43. DEFINE('_A_VISIBLE','Visible');
  44. DEFINE('_A_FINISHED','Finished');
  45. DEFINE('_A_MOVE_UP','Move Up');
  46. DEFINE('_A_MOVE_DOWN','Move Down');
  47. /**
  48. * @desc Includes the main adminLanguage class which refers to var's for translations
  49. */
  50. class adminLanguage {
  51. var $RTLsupport = false;
  52. var $A_MAIL = 'Mailbox';
  53. //templates/mambo_admin_blue/login.php
  54. var $A_USERNAME = 'Username';
  55. var $A_PASSWORD = 'Password';
  56. var $A_WELCOME_MAMBO = '<p>Welcome to Mambo!</p><p>Use a valid username and password to gain access to the administration console.</p>';
  57. var $A_WARNING_JAVASCRIPT = '!Warning! Javascript must be enabled for proper operation of the Administrator';
  58. //templates/mambo_admin_blue/index.php
  59. var $A_LOGIN = 'Login';
  60. var $A_GENERATE_TIME = 'Page was generated in %f seconds';
  61. var $A_LOGOUT = 'Logout';
  62. //popups/contentwindow.php
  63. var $A_TITLE_CPRE = 'Content Preview';
  64. var $A_CLOSE = 'Close';
  65. var $A_PRINT = 'Print';
  66. //popups/modulewindow.php
  67. var $A_TITLE_MPRE = 'Module Preview';
  68. //popups/pollwindow.php
  69. var $A_TITLE_PPRE = 'Poll Preview';
  70. var $A_VOTE = 'Vote';
  71. var $A_RESULTS = 'Results';
  72. //popups/uploadimage.php
  73. var $A_TITLE_UPLOAD = 'Upload a file';
  74. var $A_FILE_UPLOAD = 'File Upload';
  75. var $A_UPLOAD = 'Upload';
  76. var $A_FILE_MAX_SIZE = 'Max Size'; //Ken ADDED
  77. //modules/mod_components.php
  78. var $A_ERROR = 'Error!';
  79. //modules/mod_fullmenu.php
  80. var $A_MENU_HOME = 'Home';
  81. var $A_MENU_HOME_PAGE = 'Home Page';
  82. var $A_MENU_CTRL_PANEL = 'Control Panel'; //KEN ADDED
  83. var $A_MENU_SITE = 'Site';
  84. var $A_MENU_SITE_MENU = 'Site Menu';
  85. var $A_MENU_SITE_MANAGEMENT = 'Site Management'; //KEN ADDED
  86. var $A_MENU_CONFIGURATION = 'Configuration';
  87. var $A_MENU_LANGUAGES = 'Languages';
  88. var $A_MENU_MANAGE_LANG = 'Manage Languages';
  89. var $A_MENU_LANG_MANAGE = 'Language Manager';
  90. var $A_MENU_INSTALL = 'Install';
  91. var $A_MENU_INSTALL_LANG = 'Install Languages';
  92. var $A_MENU_MEDIA_MANAGE = 'Media Manager';
  93. var $A_MENU_MANAGE_MEDIA = 'Manage Media Files';
  94. var $A_MENU_PREVIEW = 'Preview';
  95. var $A_MENU_NEW_WINDOW = 'In New Window';
  96. var $A_MENU_INLINE = 'Inline';
  97. var $A_MENU_INLINE_POS = 'Inline with Positions';
  98. var $A_MENU_STATISTICS = 'Statistics';
  99. var $A_MENU_STATISTICS_SITE = 'Site Statistics';
  100. var $A_MENU_BROWSER = 'Browser, OS, Domain';
  101. var $A_MENU_PAGE_IMP = 'Page Impressions';
  102. var $A_MENU_SEARCH_TEXT = 'Search Text';
  103. var $A_MENU_TEMP_MANAGE = 'Template Manager';
  104. var $A_MENU_TEMP_CHANGE = 'Change site template';
  105. var $A_MENU_INSTALL_TEMPLATES = 'Install Site Templates';//KEN ADDED
  106. var $A_MENU_SITE_TEMP = 'Site Templates';
  107. var $A_MENU_ADMIN_TEMP = 'Administrator Templates';
  108. var $A_MENU_ADMIN_CHANGE_TEMP = 'Change admin template';
  109. var $A_MENU_INSTALL_ADMIN_TEMPLATES = 'Install Administrator Templates';//KEN ADDED
  110. var $A_MENU_MODUL_POS = 'Module Positions';
  111. var $A_MENU_TEMP_POS = 'Template Positions';
  112. var $A_MENU_USER_MANAGE = 'User Manager';
  113. var $A_MENU_MANAGE_USER = 'Manage users';
  114. var $A_MENU_ADD_EDIT = 'Add/Edit Users';
  115. var $A_MENU_MASS_MAIL = 'Mass Mail';
  116. var $A_MENU_MAIL_USERS = 'Send an e-mail to a register user group';
  117. var $A_MENU_MANAGE_STR = 'Manage Site Structure';
  118. var $A_MENU_MANAGEMENT = 'Menu Management';//KEN ADDED
  119. var $A_MENU_CONTENT = 'Content';
  120. var $A_MENU_CONTENT_MANAGE = 'Content Management';
  121. var $A_MENU_CONTENT_MANAGERS = 'Content Managers';
  122. var $A_MENU_CONTENT_BY_SECTION = 'Content by Section'; //KEN ADDED
  123. var $A_MENU_MANAGE_CONTENT = 'Manage Content Items';
  124. var $A_MENU_ITEMS = 'Items';
  125. var $A_MENU_ADDNEDIT = 'Add/Edit';
  126. var $A_MENU_OTHER_MANAGE = 'Other Managers';
  127. var $A_MENU_ITEMS_FRONT = 'Manage Frontpage Items';
  128. var $A_MENU_ITEMS_CONTENT = 'Manage Typed Content Items';
  129. var $A_MENU_CONTENT_SEC = 'Manage Content Sections';
  130. var $A_MENU_CONTENT_CAT = 'Manage Content Categories';
  131. var $A_MENU_CATEGORIES = 'Categories';
  132. var $A_MENU_COMPONENTS = 'Components';
  133. var $A_MENU_COMPONENTS_MANAGEMENT = 'Component Management';
  134. var $A_MENU_INST_UNST = 'Install/Uninstall';
  135. var $A_MENU_INST_UNST_COMPONENTS = 'Install/Uninstall components';
  136. var $A_MENU_MORE_COMP = 'More Components';
  137. var $A_MENU_MORE_COMP2 = 'More Components...';//KEN ADDED
  138. var $A_MENU_MODULES = 'Modules';
  139. var $A_MENU_INST_UNST_MODULES = 'Install/Uninstall Modules';//KEN ADDED
  140. var $A_MENU_MODULES_MANAGEMENT = 'Module Management'; //KEN ADDED
  141. var $A_MENU_INSTALL_CUST = 'Install custom modules';
  142. var $A_MENU_SITE_MOD = 'Site Modules';
  143. var $A_MENU_SITE_MOD_MANAGE = 'Manage Site modules';
  144. var $A_MENU_ADMIN_MOD = 'Administrator Modules';
  145. var $A_MENU_ADMIN_MOD_MANAGE = 'Manage Administrator modules';
  146. var $A_MENU_MAMBOTS = 'Mambots';
  147. var $A_MENU_INST_UNST_MAMBOTS = 'Install/Uninstall Mambots';//KEN ADDED
  148. var $A_MENU_MAMBOTS_MANAGE = 'Mambots Management'; //KEN ADDED
  149. var $A_MENU_CUSTOM_MAMBOT = 'Install custom mambot';
  150. var $A_MENU_SITE_MAMBOT = 'Site Mambot';
  151. var $A_MENU_SITE_MAMBOTS = 'Site Mambots';
  152. var $A_MENU_MAMBOT_MANAGE = 'Manage Site Mambots';
  153. var $A_MENU_INSTALLERS = 'Installers';//KEN ADDED
  154. var $A_MENU_INSTALLERS_LIST = 'Installers List';//KEN ADDED
  155. var $A_MENU_TEMPLATES_SITE = 'Templates - Site';//KEN ADDED
  156. var $A_MENU_TEMPLATES_SITE_INST = 'Install Site Templates';//KEN ADDED
  157. var $A_MENU_TEMPLATES_ADMIN = 'Templates - Admin';//KEN ADDED
  158. var $A_MENU_TEMPLATES_ADMIN_INST = 'Install Admin Templates';//KEN ADDED
  159. var $A_MENU_MESSAGES = 'Messages';
  160. var $A_MENU_MESSAGES_MANAGEMENT = 'Messaging Management';//KEN ADDED
  161. var $A_MENU_INBOX = 'Inbox';
  162. var $A_MENU_PRIV_MSG = 'Private Messages';
  163. var $A_MENU_GLOBAL_CHECK = 'Global Checkin';
  164. var $A_MENU_CHECK_INOUT = 'Check-in all checked-out items';
  165. var $A_MENU_SYSTEM_INFO = 'System Info';
  166. var $A_MENU_CLEAN_CACHE = 'Clean Cache';
  167. var $A_MENU_CLEAN_CACHE_ITEMS = 'Clean the content items cache';
  168. var $A_MENU_BIG_THANKS = 'A big thanks to those involved';
  169. var $A_MENU_SUPPORT = 'Support';
  170. var $A_MENU_SYSTEM = 'System';
  171. var $A_MENU_SYSTEM_MNG = 'System Management';
  172. //modules/mod_latest.php
  173. var $A_LATEST_ADDED = 'Most Recently Added Content';
  174. //modules/mod_logged.php
  175. var $A_USER_LOGGED = 'Currently Logged in Users';
  176. var $A_USER_FORCE_LOGOUT = 'Force Logout User';
  177. //modules/mod_online.php
  178. var $A_ONLINE_USERS = 'Users Online';
  179. //modules/mod_popular.php
  180. var $A_POPULAR_MOST = 'Most Popular Items';
  181. var $A_CREATED = 'Created';
  182. var $A_HITS = 'Hits';
  183. //modules/mod_quickicon.php
  184. var $A_MENU_MANAGER = 'Menu Manager';
  185. var $A_FRONTPAGE_MANAGER = 'Frontpage Manager';
  186. var $A_STATIC_MANAGER = 'Static Content Manager';
  187. var $A_SECTION_MANAGER = 'Section Manager';
  188. var $A_CATEGORY_MANAGER = 'Category Manager';
  189. var $A_ALL_MANAGER = 'All Content Items';
  190. var $A_GLOBAL_CONF = 'Global Configuration';
  191. var $A_HELP = 'Help';
  192. //includes/menubar.html.php
  193. var $A_NEW = 'New';
  194. var $A_PUBLISH = 'Publish';
  195. var $A_DEFAULT = 'Default';
  196. var $A_ASSIGN = 'Assign';
  197. var $A_UNPUBLISH = 'Unpublish';
  198. var $A_EDIT = 'Edit';
  199. var $A_DELETE = 'Delete';
  200. var $A_SAVE = 'Save';
  201. var $A_BACK = 'Back';
  202. var $A_CANCEL = 'Cancel';
  203. //Alerts
  204. var $A_ALERT_SELECT_TO = 'Please make a selection from the list to';
  205. var $A_ALERT_SELECT_PUB = 'Please make a selection from the list to publish';
  206. var $A_ALERT_SELECT_PUB_LIST = 'Please select an item to make default';
  207. var $A_ALERT_ITEM_ASSIGN = 'Please select an item to assign';
  208. var $A_ALERT_SELECT_UNPUBLISH = 'Please make a selection from the list to unpublish';
  209. var $A_ALERT_SELECT_EDIT = 'Please select an item from the list to edit';
  210. var $A_ALERT_SELECT_DELETE = 'Please make a selection from the list to delete';
  211. var $A_ALERT_CONFIRM_DELETE = 'Are you sure you want to delete selected items?';
  212. //Alerts
  213. var $A_ALERT_ENTER_PASSWORD = 'Please enter a password';
  214. var $A_ALERT_INCORRECT = 'Incorrect Username, Password, or Access Level. Please try again';
  215. var $A_ALERT_INCORRECT_TRY = 'Incorrect Username and Password, please try again';
  216. var $A_ALERT_ALPHA = 'File must only contain alphanumeric characters and no spaces please.';
  217. var $A_ALERT_IMAGE_UPLOAD = 'Please select an image to upload';
  218. var $A_ALERT_IMAGE_EXISTS = "Image %s already exists.";
  219. var $A_ALERT_IMAGE_FILENAME = 'The file must be gif, png, jpg, bmp, swf, doc, xls or ppt';
  220. var $A_ALERT_UPLOAD_FAILED = "Upload of %s failed";
  221. var $A_ALERT_UPLOAD_SUC = "Upload of %s to %s successful";
  222. var $A_ALERT_UPLOAD_SUC2 = "Upload of %s to %s successful";
  223. //includes/pageNavigation.php
  224. var $A_OF = 'of';
  225. var $A_NO_RECORD_FOUND = 'No records found';
  226. var $A_FIRST_PAGE = 'first page';
  227. var $A_PREVIOUS_PAGE = 'previous page';
  228. var $A_NEXT_PAGE = 'next page';
  229. var $A_END_PAGE = 'end page';
  230. var $A_PREVIOUS = 'Previous';
  231. var $A_NEXT = 'Next';
  232. var $A_END = 'End';
  233. var $A_DISPLAY = 'Display';
  234. var $A_MOVE_UP = 'Move Up';
  235. var $A_MOVE_DOWN = 'Move Down';
  236. //DIRECTORY COMPONENTS ALL FILES
  237. var $A_COMP_CHECKED_OUT = 'Checked Out';
  238. var $A_COMP_TITLE = 'Title';
  239. var $A_COMP_IMAGE = 'Image';
  240. var $A_COMP_FRONT_PAGE = 'Front Page';
  241. var $A_COMP_IMAGE_POSITION = 'Image Position';
  242. var $A_COMP_FILTER = 'Filter';
  243. var $A_COMP_ORDERING = 'Ordering';
  244. var $A_COMP_ACCESS_LEVEL = 'Access Level';
  245. var $A_COMP_PUBLISHED = 'Published';
  246. var $A_COMP_PUBLISH = 'Publish';
  247. var $A_COMP_UNPUBLISHED = 'UnPublished';
  248. var $A_COMP_UNPUBLISH = 'UnPublish';
  249. var $A_COMP_REORDER = 'Reorder';
  250. var $A_COMP_ORDER = 'Order';
  251. var $A_COMP_SAVE_ORDER = 'Save Order';
  252. var $A_COMP_ACCESS = 'Access';
  253. var $A_COMP_SECTION = 'Section';
  254. var $A_COMP_NB = '#';
  255. var $A_COMP_ACTIVE = '# Active';
  256. var $A_COMP_DESCRIPTION = 'Description';
  257. var $A_COMP_SELECT_MENU_TYPE = 'Please select a menu type';
  258. var $A_COMP_ENTER_MENU_NAME = 'Please enter a Name for this menu item';
  259. var $A_COMP_CREATE_MENU_LINK = 'Are you sure you want to create a menu link? \nAny unsaved changes to this content will be lost.';
  260. var $A_COMP_LINK_TO_MENU = 'Link to Menu';
  261. var $A_COMP_CREATE_MENU = 'This will create a new menu item in the menu you select';
  262. var $A_COMP_SELECT_MENU = 'Select a Menu';
  263. var $A_COMP_MENU_TYPE_SELECT = 'Select Menu Type';
  264. var $A_COMP_MENU_NAME_ITEM = 'Menu Item Name';
  265. var $A_COMP_MENU_LINKS = 'Existing Menu Links';
  266. var $A_COMP_MENU_LINKS_AVAIL = 'Menu links available when saved';
  267. var $A_COMP_NONE = 'None';
  268. var $A_COMP_MENU = 'Menu';
  269. var $A_COMP_TYPE = 'Type';
  270. var $A_COMP_EDIT = 'Edit';
  271. var $A_COMP_NEW = 'New';
  272. var $A_COMP_ADD = 'Add';
  273. var $A_COMP_ITEM_NAME = 'Item Name';
  274. var $A_COMP_STATE = 'State';
  275. var $A_COMP_NAME = 'Name';
  276. var $A_COMP_DEFAULT = 'Default';
  277. var $A_COMP_CATEG = 'Category';
  278. var $A_COMP_LINK_USER = 'Linked to User';
  279. var $A_COMP_CONTACT = 'Contact';
  280. var $A_COMP_EMAIL = 'E-mail';
  281. var $A_COMP_PREVIEW = 'Preview';
  282. var $A_COMP_ITEMS = 'items';
  283. var $A_COMP_ITEM = 'item';
  284. var $A_COMP_ID = 'ID';
  285. var $A_COMP_EXPIRED = 'Expired';
  286. var $A_COMP_YES = 'Yes';
  287. var $A_COMP_NO = 'No';
  288. var $A_COMP_EDITING = 'Editing';
  289. var $A_COMP_ADDING = 'Adding';
  290. var $A_COMP_HITS = 'Hits';
  291. var $A_COMP_SOURCE = 'Source';
  292. var $A_COMP_SEL_ITEM = 'Select an item to';
  293. var $A_COMP_DATE = 'Date';
  294. var $A_COMP_AUTHOR = 'Author';
  295. var $A_COMP_ANOTHER_ADMIN = 'is currently being edited by another administrator';
  296. var $A_COMP_SAVE_UNWRT = 'Make unwriteable after saving';
  297. var $A_COMP_OVERRIDE_SAVE = 'Override write protection while saving';
  298. var $A_COMP_ORDER_SAVED = 'New ordering saved';
  299. var $A_COMP_NO_PARAMETERS = 'No Parameters';
  300. var $A_COMP_POSITION = 'Position';
  301. var $A_COMP_SHOW_ADV_DETAILS = 'Show Advanced Details';
  302. var $A_COMP_HIDE_ADV_DETAILS = 'Hide Advanced Details';
  303. //components/com_admin/admin.admin.html.php
  304. var $A_COMP_ADMIN_HOME = 'Home';
  305. var $A_COMP_ADMIN_SIMP_MODE = 'Simple Mode';
  306. var $A_COMP_ADMIN_SIMP_MODE_SELECTED = 'Simple Mode (selected)';
  307. var $A_COMP_ADMIN_SIMP_MODE_UNSELECTED = 'Simple Mode (unselected)';
  308. var $A_COMP_ADMIN_ADV_MODE = 'Advanced Mode';
  309. var $A_COMP_ADMIN_ADV_MODE_SELECTED = 'Advanced Mode (selected)';
  310. var $A_COMP_ADMIN_ADV_MODE_UNSELECTED = 'Advanced Mode (unselected)';
  311. //var $A_COMP_ADMIN_TITLE = 'Control Panel';
  312. var $A_COMP_ADMIN_INFO = 'Information';
  313. var $A_COMP_ADMIN_SYSTEM = 'System Information';
  314. var $A_COMP_ADMIN_PHP_BUILT_ON = 'PHP built On:';
  315. var $A_COMP_ADMIN_DB = 'Database Version:';
  316. var $A_COMP_ADMIN_PHP_VERSION = 'PHP Version:';
  317. var $A_COMP_ADMIN_SERVER = 'Web Server:';
  318. var $A_COMP_ADMIN_SERVER_TO_PHP = 'WebServer to PHP interface:';
  319. var $A_COMP_ADMIN_MAMBO_VERSION = 'Mambo Version:';
  320. var $A_COMP_ADMIN_AGENT = 'User Agent:';
  321. var $A_COMP_ADMIN_SETTINGS = 'Relevant PHP Settings:';
  322. var $A_COMP_ADMIN_MODE = 'Safe Mode:';
  323. var $A_COMP_ADMIN_BASEDIR = 'Open basedir:';
  324. var $A_COMP_ADMIN_ERRORS = 'Display Errors:';
  325. var $A_COMP_ADMIN_OPEN_TAGS = 'Short Open Tags:';
  326. var $A_COMP_ADMIN_FILE_UPLOADS = 'File Uploads:';
  327. var $A_COMP_ADMIN_QUOTES = 'Magic Quotes:';
  328. var $A_COMP_ADMIN_REG_GLOBALS = 'Register Globals:';
  329. var $A_COMP_ADMIN_OUTPUT_BUFF = 'Output Buffering:';
  330. var $A_COMP_ADMIN_S_SAVE_PATH = 'Session save path:';
  331. var $A_COMP_ADMIN_S_AUTO_START = 'Session auto start:';
  332. var $A_COMP_ADMIN_XML = 'XML enabled:';
  333. var $A_COMP_ADMIN_ZLIB = 'Zlib enabled:';
  334. var $A_COMP_ADMIN_DISABLED = 'Disabled Functions:';
  335. var $A_COMP_ADMIN_WYSIWYG = 'WYSIWYG Editor:';
  336. var $A_COMP_ADMIN_CONF_FILE = 'Configuration File:';
  337. var $A_COMP_ADMIN_PHP_INFO2 = 'PHP Info';
  338. var $A_COMP_ADMIN_PHP_INFO = 'PHP Information';
  339. var $A_COMP_ADMIN_PERMISSIONS='Permissions';
  340. var $A_COMP_ADMIN_DIR_PERM = 'Directory Permissions';
  341. var $A_COMP_ADMIN_FOR_ALL = 'For all Mambo functions and features to work ALL of the following directories should be writeable:';
  342. var $A_COMP_ADMIN_CREDITS = 'Credits';
  343. var $A_COMP_ADMIN_APP = 'Application';
  344. var $A_COMP_ADMIN_URL = 'URL';
  345. var $A_COMP_ADMIN_VERSION = 'Version';
  346. var $A_COMP_ADMIN_LICENSE = 'License';
  347. var $A_COMP_ADMIN_CALENDAR = 'Calendar';
  348. var $A_COMP_ADMIN_PUB_DOMAIN = 'Public Domain';
  349. var $A_COMP_ADMIN_ICONS = 'Icons';
  350. var $A_COMP_ADMIN_INDEX = 'Index';
  351. var $A_COMP_ADMIN_SITE_PREVIEW = 'Site Preview';
  352. var $A_COMP_ADMIN_OPEN_NEW_WIN = 'Open in new window';
  353. //components/com_admin/admin.admin.php
  354. var $A_COMP_ALERT_NO_LINK = 'There is no link associated with this item';
  355. //components/com_banners/admin.banners.html.php
  356. var $A_COMP_BANNERS_MANAGER = 'Banner Manager';
  357. var $A_COMP_BANNERS_NAME = 'Banner Name';
  358. var $A_COMP_BANNERS_IMPRESS_MADE = 'Impressions Made';
  359. var $A_COMP_BANNERS_IMPRESS_LEFT = 'Impressions Left';
  360. var $A_COMP_BANNERS_CLICKS = 'Clicks';
  361. var $A_COMP_BANNERS_CLICKS2 = '% Clicks';
  362. var $A_COMP_BANNERS_PUBLISHED = 'Published';
  363. var $A_COMP_BANNERS_LOCK = 'Checked Out';
  364. var $A_COMP_BANNERS_PROVIDE = 'You must provide a banner name.';
  365. var $A_COMP_BANNERS_SELECT_IMAGE = 'Please select an image.';
  366. var $A_COMP_BANNERS_FILL_URL = 'Please fill in the URL for the banner.';
  367. var $A_COMP_BANNERS_BANNER = 'Banner';
  368. var $A_COMP_BANNERS_DETAILS = 'Details';
  369. var $A_COMP_BANNERS_CLIENT = 'Client Name';
  370. var $A_COMP_BANNERS_PURCHASED = 'Impressions Purchased';
  371. var $A_COMP_BANNERS_UNLIMITED = 'Unlimited';
  372. var $A_COMP_BANNERS_URL = 'Banner URL';
  373. var $A_COMP_BANNERS_SHOW = 'Show Banner';
  374. var $A_COMP_BANNERS_CLICK_URL = 'Click URL';
  375. var $A_COMP_BANNERS_CUSTOM = 'Custom banner code';
  376. var $A_COMP_BANNERS_RESET_CLICKS = 'Reset Clicks';
  377. var $A_COMP_BANNERS_IMAGE = 'Banner Image';
  378. var $A_COMP_BANNERS_CLIENT_MANAGER = 'Banner Client Manager';
  379. var $A_COMP_BANNERS_NO_ACTIVE = 'No. of Active Banners';
  380. var $A_COMP_BANNERS_FILL_CL_NAME = 'Please fill in the Client Name.';
  381. var $A_COMP_BANNERS_FILL_CO_NAME = 'Please fill in the Contact Name.';
  382. var $A_COMP_BANNERS_FILL_CO_EMAIL = 'Please fill in the Contact Email.';
  383. var $A_COMP_BANNERS_TITLE_CLIENT = 'Banner Client';
  384. var $A_COMP_BANNERS_CONTACT_NAME = 'Contact Name';
  385. var $A_COMP_BANNERS_CONTACT_EMAIL = 'Contact Email';
  386. var $A_COMP_BANNERS_EXTRA = 'Extra Info';
  387. //components/com_banners/admin.banners.php
  388. var $A_COMP_BANNERS_SELECT_CLIENT = 'Select Client';
  389. var $A_COMP_BANNERS_THE_CLIENT = 'The client [ ';
  390. var $A_COMP_BANNERS_EDITED = ' ] is currently being edited by another administrator.';
  391. var $A_COMP_BANNERS_DEL_CLIENT = 'Cannot delete client at this time as they have a banner still running';
  392. //components/com_categories/admin.categories.html.php
  393. var $A_COMP_CATEG_MANAGER = 'Category Manager <small><small>[ Content: All ]</small></small>';
  394. var $A_COMP_CATEG_CATEGS = 'Category Manager <small><small>[ %s ]</small></small>';
  395. var $A_COMP_CATEG_NAME = 'Category Name';
  396. var $A_COMP_CATEG_ID = 'Category ID';
  397. var $A_COMP_CATEG_MUST_NAME = 'Category must have a name';
  398. var $A_COMP_CATEG_DETAILS = 'Category Details';
  399. var $A_COMP_CATEG_TITLE = 'Category Title';
  400. var $A_COMP_CATEG_TABLE = 'Category Table';
  401. var $A_COMP_CATEG_BLOG = 'Category Blog';
  402. var $A_COMP_CATEG_MESSAGE = 'The category';
  403. var $A_COMP_CATEG_MESSAGE2 = 'is currently being edited by another administrator';
  404. var $A_COMP_CATEG_MOVE = 'Move Category';
  405. var $A_COMP_CATEG_MOVE_TO_SECTION = 'Move to Section';
  406. var $A_COMP_CATEG_BEING_MOVED = 'Categories being moved';
  407. var $A_COMP_CATEG_CONTENT = 'Content Items being moved';
  408. var $A_COMP_CATEG_MOVE_CATEG = 'This will move the Categories listed';
  409. var $A_COMP_CATEG_ALL_ITEMS = 'and all the items within the category (also listed)';
  410. var $A_COMP_CATEG_TO_SECTION = 'to the selected Section.';
  411. var $A_COMP_CATEG_COPY = 'Copy Category';
  412. var $A_COMP_CATEG_COPY_TO_SECTION = 'Copy to Section';
  413. var $A_COMP_CATEG_BEING_COPIED = 'Categories being copied';
  414. var $A_COMP_CATEG_ITEMS_COPIED = 'Content Items being copied';
  415. var $A_COMP_CATEG_COPY_CATEGS = 'This will copy the Categories listed';
  416. //components/com_categories/admin.categories.php
  417. var $A_COMP_CATEG_DELETE = 'Select a category to delete';
  418. var $A_COMP_CATEG_CATEG_S = 'Category(s)';
  419. var $A_COMP_CATEG_CANNOT_REMOVE = 'cannot be removed as they contain records';
  420. var $A_COMP_CATEG_SELECT = 'Select a category to';
  421. var $A_COMP_CATEG_ITEM_MOVE = 'Select an item to move';
  422. var $A_COMP_CATEG_MOVED_TO = 'Categories moved to';
  423. var $A_COMP_CATEG_COPY_OF = 'Copy of';
  424. var $A_COMP_CATEG_COPIED_TO = 'Categories copied to';
  425. var $A_COMP_CATEG_SELECT_TYPE = 'Select Type';
  426. var $A_COMP_CATEG_CONTACT_CATEG_TABLE = 'Contact Category Table';
  427. var $A_COMP_CATEG_NEWSFEED_CATEG_TABLE = 'Newsfeed Category Table';
  428. var $A_COMP_CATEG_WEBLINK_CATEG_TABLE = 'Weblink Category Table';
  429. var $A_COMP_CATEG_CONTENT_CATEG_TABLE = 'Content Category Table';
  430. var $A_COMP_CATEG_CONTENT_CATEG_BLOG = 'Content Category Blog';
  431. //components/com_checkin/admin.checkin.php
  432. var $A_COMP_CHECK_TITLE = 'Global Check-in';
  433. var $A_COMP_CHECK_DB_T = 'Database Table';
  434. var $A_COMP_CHECK_NB_ITEMS = '# of Items';
  435. var $A_COMP_CHECK_IN = 'Checked-In';
  436. var $A_COMP_CHECK_TABLE = 'Checking table';
  437. var $A_COMP_CHECK_DONE = 'Checked out items have now been all checked in';
  438. //components/com_config/admin.config.html.php
  439. var $A_COMP_CONF_GC = 'Global Configuration';
  440. var $A_COMP_CONF_IS = 'is';
  441. var $A_COMP_CONF_WRT = 'Writeable';
  442. var $A_COMP_CONF_UNWRT = 'Unwriteable';
  443. //var $A_COMP_CONF_SITE_PAGE = 'site-page';
  444. var $A_COMP_CONF_OFFLINE = 'Site Offline';
  445. var $A_COMP_CONF_OFFMESSAGE = 'Offline Message';
  446. var $A_COMP_CONF_OFFMESSAGE_TIP = 'A message that displays if your site is offline';
  447. var $A_COMP_CONF_ERR_MESSAGE = 'System Error Message';
  448. var $A_COMP_CONF_ERR_MESSAGE_TIP = 'A message that displays if Mambo could not connect to the database';
  449. var $A_COMP_CONF_SITE_NAME = 'Site Name';
  450. var $A_COMP_CONF_UN_LINKS = 'Show UnAuthorized Links';
  451. var $A_COMP_CONF_UN_LINKS_TIP = 'If yes, will show links to content to registered content even if you are not logged in. The user will need to login to see the item in full.';
  452. var $A_COMP_CONF_USER_REG = 'Allow User Registration';
  453. var $A_COMP_CONF_USER_REG_TIP = 'If yes, allows users to self-register';
  454. var $A_COMP_CONF_AC_ACT = 'Use New Account Activation';
  455. var $A_COMP_CONF_AC_ACT_TIP = 'If yes, the user will be mailed a link to activate their account before they can log in.';
  456. var $A_COMP_CONF_REQ_EMAIL = 'Require Unique Email';
  457. var $A_COMP_CONF_REQ_EMAIL_TIP = 'If yes, users cannot share the smae email address';
  458. var $A_COMP_CONF_REG_SUBMIT = 'Allow Registered Submit Content';
  459. var $A_COMP_CONF_REG_SUBMIT_TIP = 'If yes, allows Registered users to submit content in frontend';
  460. var $A_COMP_CONF_DEBUG = 'Debug Site';
  461. var $A_COMP_CONF_DEBUG_TIP = 'If yes, displays diagnostic information and SQL errors if present';
  462. var $A_COMP_CONF_EDITOR = 'WYSIWYG Editor';
  463. var $A_COMP_CONF_LENGTH = 'List Length';
  464. var $A_COMP_CONF_LENGTH_TIP = 'Sets the default length of lists in the administrator for all users';
  465. var $A_COMP_CONF_SITE_ICON = 'Favorites Site Icon';
  466. var $A_COMP_CONF_SITE_ICON_TIP = 'If left blank or the file cannot be found, the default favicon.ico will be used.';
  467. //var $A_COMP_CONF_LOCAL_PG = 'Locale-page';
  468. var $A_COMP_CONF_LOCALE = 'Locale';
  469. var $A_COMP_CONF_LANG = 'Frontend Language';
  470. var $A_COMP_CONF_ALANG = 'Backend Language';
  471. var $A_COMP_CONF_TIME_SET = 'Time Offset';
  472. var $A_COMP_CONF_DATE = 'Current date/time configured to display';
  473. var $A_COMP_CONF_LOCAL = 'Country Locale';
  474. //var $A_COMP_CONF_CONT_PAGE = 'content-page';
  475. var $A_COMP_CONF_CONTROL = '* These Parameters control Output elments *';
  476. var $A_COMP_CONF_LINK_TITLES = 'Linked Titles';
  477. var $A_COMP_CONF_MORE_LINK = 'Read More Link';
  478. var $A_COMP_CONF_MORE_LINK_TIP = 'If set to show, the read-more link will show if main-text has been provided for the item';
  479. var $A_COMP_CONF_RATE_VOTE = 'Item Rating/Voting';
  480. var $A_COMP_CONF_RATE_VOTE_TIP = 'If set to show, a voting system will be enabled for content items';
  481. var $A_COMP_CONF_AUTHOR = 'Author Names';
  482. var $A_COMP_CONF_AUTHOR_TIP = 'If set to show, the name of the author will be displayed. This a global setting but can be changed at menu and item levels.';
  483. var $A_COMP_CONF_CREATED = 'Created Date and Time';
  484. var $A_COMP_CONF_CREATED_TIP = 'If set to show, the date and time an item was created will be displayed. This a global setting but can be changed at menu and item levels.';
  485. var $A_COMP_CONF_MOD_DATE = 'Modified Date and Time';
  486. var $A_COMP_CONF_MOD_DATE_TIP = 'If set to show, the date and time an item was last modified will be displayed. This a global setting but can be changed at menu and item levels.';
  487. var $A_COMP_CONF_HITS = 'Hits';
  488. var $A_COMP_CONF_HITS_TIP = 'If set to show, the hits for a particular item will be displayed. This a global setting but can be changed at menu and item levels.';
  489. var $A_COMP_CONF_PDF = 'PDF Icon';
  490. var $A_COMP_CONF_OPT_MEDIA = 'Option not available as /media directory not writable';
  491. var $A_COMP_CONF_PRINT_ICON = 'Print Icon';
  492. var $A_COMP_CONF_EMAIL_ICON = 'Email Icon';
  493. var $A_COMP_CONF_ICONS = 'Icons';
  494. var $A_COMP_CONF_USE_OR_TEXT = 'Print, PDF & Email will utilise Icons or Text';
  495. var $A_COMP_CONF_TBL_CONTENTS = 'Table of Contents on multi-page items';
  496. var $A_COMP_CONF_BACK_BUTTON = 'Back Button';
  497. var $A_COMP_CONF_CONTENT_NAV = 'Content Item Navigation';
  498. var $A_COMP_CONF_HYPER = 'Use hyperlinked titles';
  499. //var $A_COMP_CONF_DB_PAGE = 'db-page';
  500. var $A_COMP_CONF_HOSTNAME = 'Hostname';
  501. var $A_COMP_CONF_DB_USERNAME = 'Username';
  502. var $A_COMP_CONF_DB_PW = 'Password';
  503. var $A_COMP_CONF_DB_NAME = 'Database';
  504. var $A_COMP_CONF_DB_PREFIX = 'Database Prefix';
  505. //Svar $A_COMP_CONF_S_PAGE = 'server-page';
  506. var $A_COMP_CONF_ABS_PATH = 'Absolute Path';
  507. var $A_COMP_CONF_LIVE = 'Live Site';
  508. var $A_COMP_CONF_SECRET = 'Secret Word';
  509. var $A_COMP_CONF_GZIP = 'GZIP Page Compression';
  510. var $A_COMP_CONF_CP_BUFFER = 'Compress buffered output if supported';
  511. var $A_COMP_CONF_SESSION_TIME = 'Login Session Lifetime';
  512. var $A_COMP_CONF_SEC = 'seconds';
  513. var $A_COMP_CONF_AUTO_LOGOUT = 'Auto logout after this time of inactivity';
  514. var $A_COMP_CONF_ERR_REPORT = 'Error Reporting';
  515. var $A_COMP_CONF_REG_GLOBALS_EMU = 'Register Globals Emulation:';
  516. var $A_COMP_CONF_REG_GLOBALS_EMU_DESC = 'Register globals emulation. Some components may stop working if this option is set to Off.';
  517. var $A_COMP_CONF_HELP_SERVER = 'Help Server';
  518. var $A_COMP_CONF_FILE_CREATION = 'File Creation';
  519. var $A_COMP_CONF_FILE_PERM = 'File Permissions';
  520. var $A_COMP_CONF_FILE_DONT_CHMOD = 'Dont CHMOD new files (use server defaults)';
  521. var $A_COMP_CONF_FILE_CHMOD = 'CHMOD new files';
  522. var $A_COMP_CONF_FILE_CHMOD_TIP = 'Select this option to define permission flags for new created files';
  523. var $A_COMP_CONF_APPLY_FILE = 'Apply to existing files';
  524. var $A_COMP_CONF_APPLY_FILE_TIP = 'Checking here will apply the permission flags to <em>all existing files</em> of the site.<br/><b>INAPPROPRIATE USAGE OF THIS OPTION MAY RENDER THE SITE INOPERATIVE!</b>';
  525. var $A_COMP_CONF_DIR_CREATION = 'Directory Creation';
  526. var $A_COMP_CONF_DIR_PERM = 'Directory Permissions';
  527. var $A_COMP_CONF_DIR_DONT_CHMOD = 'Dont CHMOD new directories (use server defaults)';
  528. var $A_COMP_CONF_DIR_CHMOD = 'CHMOD new directories';
  529. var $A_COMP_CONF_DIR_CHMOD_TIP = 'Select this option to define permission flags for new created directories';
  530. var $A_COMP_CONF_APPLY_DIR = 'Apply to existing directories';
  531. var $A_COMP_CONF_APPLY_DIR_TIP = 'Checking here will apply the permission flags to <em>all existing directories</em> of the site.<br/><b>INAPPROPRIATE USAGE OF THIS OPTION MAY RENDER THE SITE INOPERATIVE!</b>';
  532. var $A_COMP_CONF_USER = 'User';
  533. var $A_COMP_CONF_GROUP = 'Group';
  534. var $A_COMP_CONF_WORLD = 'World';
  535. var $A_COMP_CONF_READ = 'read';
  536. var $A_COMP_CONF_WRITE = 'write';
  537. var $A_COMP_CONF_EXECUTE = 'execute';
  538. var $A_COMP_CONF_SEARCH = 'search';
  539. //var $A_COMP_CONF_META_PAGE = 'metadata-page';
  540. var $A_COMP_CONF_META_DESC = 'Global Site Meta Description';
  541. var $A_COMP_CONF_META_KEY = 'Global Site Meta Keywords';
  542. var $A_COMP_CONF_META_TITLE = 'Show Title Meta Tag';
  543. var $A_COMP_CONF_META_ITEMS = 'Show the title meta tag when viewing content items';
  544. var $A_COMP_CONF_META_AUTHOR = 'Show Author Meta Tag';
  545. var $A_COMP_CONF_META_AUTHOR_TIP = 'Show the author meta tag when viewing content items';
  546. //var $A_COMP_CONF_MAIL_PAGE = 'mail-page';
  547. var $A_COMP_CONF_MAIL = 'Mailer';
  548. var $A_COMP_CONF_MAIL_FROM = 'Mail From';
  549. var $A_COMP_CONF_MAIL_FROM_NAME = 'From Name';
  550. var $A_COMP_CONF_MAIL_SENDMAIL_PATH = 'Sendmail Path';
  551. var $A_COMP_CONF_MAIL_SMTP_AUTH = 'SMTP Auth';
  552. var $A_COMP_CONF_MAIL_SMTP_USER = 'SMTP User';
  553. var $A_COMP_CONF_MAIL_SMTP_PASS = 'SMTP Pass';
  554. var $A_COMP_CONF_MAIL_SMTP_HOST = 'SMTP Host';
  555. //var $A_COMP_CONF_CACHE_PAGE = 'cache-page';
  556. var $A_COMP_CONF_CACHE = 'Caching';
  557. var $A_COMP_CONF_CACHE_FOLDER = 'Cache Folder';
  558. var $A_COMP_CONF_CACHE_DIR = 'Current cache is directory is';
  559. var $A_COMP_CONF_CACHE_DIR_UNWRT = 'The cache directory is UNWRITEABLE - please set this directory to CHMOD755 before turning on the cache';
  560. var $A_COMP_CONF_CACHE_TIME = 'Cache Time';
  561. //var $A_COMP_CONF_STATS_PAGE = 'stats-page';
  562. var $A_COMP_CONF_STATS = 'Statistics';
  563. var $A_COMP_CONF_STATS_ENABLE = 'Enable/disable collection of site statistics';
  564. var $A_COMP_CONF_STATS_LOG_HITS = 'Log Content Hits by Date';
  565. var $A_COMP_CONF_STATS_WARN_DATA = 'WARNING : Large amounts of data will be collected';
  566. var $A_COMP_CONF_STATS_LOG_SEARCH = 'Log Search Strings';
  567. //var $A_COMP_CONF_SEO_PAGE = 'seo-page';
  568. var $A_COMP_CONF_SEO_LBL = 'SEO';
  569. var $A_COMP_CONF_SEO = 'Search Engine Optimization';
  570. var $A_COMP_CONF_SEO_SEFU = 'Search Engine Friendly URLs';
  571. var $A_COMP_CONF_SEO_APACHE = 'Apache only! Rename htaccess.txt to .htaccess before activating';
  572. var $A_COMP_CONF_SEO_DYN = 'Dynamic Page Titles';
  573. var $A_COMP_CONF_SEO_DYN_TITLE = 'Dynamically changes the page title to reflect current content viewed';
  574. var $A_COMP_CONF_SERVER = 'Server';
  575. var $A_COMP_CONF_METADATA = 'Metadata';
  576. var $A_COMP_CONF_EMAIL = 'Mail';
  577. var $A_COMP_CONF_CACHE_TAB = 'Cache';
  578. //components/com_config/admin.config.php
  579. var $A_COMP_CONF_HIDE = 'Hide';
  580. var $A_COMP_CONF_SHOW = 'Show';
  581. var $A_COMP_CONF_DEFAULT = 'System Default';
  582. var $A_COMP_CONF_NONE = 'None';
  583. var $A_COMP_CONF_SIMPLE = 'Simple';
  584. var $A_COMP_CONF_MAX = 'Maximum';
  585. var $A_COMP_CONF_MAIL_FC = 'PHP mail function';
  586. var $A_COMP_CONF_SEND = 'Sendmail';
  587. var $A_COMP_CONF_SMTP = 'SMTP Server';
  588. var $A_COMP_CONF_UPDATED = 'The Configuration Details have been updated!';
  589. var $A_COMP_CONF_ERR_OCC = 'An Error Has Occurred! Unable to open config file to write!';
  590. //components/com_contact/admin.contact.html.php
  591. var $A_COMP_CONT_MANAGER = 'Contact Manager';
  592. var $A_COMP_CONT_FILTER = 'Filter';
  593. var $A_COMP_CONT_YOUR_NAME = 'You must provide a name.';
  594. var $A_COMP_CONT_CATEG = 'Please select a Category.';
  595. var $A_COMP_CONT_DETAILS = 'Contact Details';
  596. var $A_COMP_CONT_POSITION = 'Contact\'s Position';
  597. var $A_COMP_CONT_ADDRESS = 'Street Address';
  598. var $A_COMP_CONT_TOWN = 'Town/Suburb';
  599. var $A_COMP_CONT_STATE = 'State/County';
  600. var $A_COMP_CONT_COUNTRY = 'Country';
  601. var $A_COMP_CONT_POSTAL_CODE = 'Postal Code/ZIP';
  602. var $A_COMP_CONT_TEL = 'Telephone';
  603. var $A_COMP_CONT_FAX = 'Fax';
  604. var $A_COMP_CONT_INFO = 'Miscellaneous Info';
  605. //var $A_COMP_CONT_PUBLISH = 'publish-page';
  606. var $A_COMP_CONT_PUBLISHING = 'Publishing Info';
  607. var $A_COMP_CONT_SITE_DEFAULT = 'Site Default';
  608. //var $A_COMP_CONT_IMG_PAGE = 'images-page';
  609. var $A_COMP_CONT_IMG_INFO = 'Image Info';
  610. var $A_COMP_CONT_PARAMS = 'params-page';
  611. var $A_COMP_CONT_PARAMETERS = 'Parameters';
  612. var $A_COMP_CONT_PARAM_MESS = '* These Parameters only control what you see when you click to view a Contact item *';
  613. var $A_COMP_CONT_PUB_TAB = 'Publishing';
  614. var $A_COMP_CONT_IMG_TAB = 'Images';
  615. //components/com_contact/admin.contact.php
  616. var $A_COMP_CONT_SELECT_REC = 'Select a record to';
  617. //components/com_content/admin.content.html.php
  618. var $A_COMP_CONTENT_ITEMS_MNG = 'Content Items Manager';
  619. var $A_COMP_CONTENT_ALL_ITEMS = 'All Content Items';
  620. var $A_COMP_CONTENT_START_ALWAYS = 'Start: Always';
  621. var $A_COMP_CONTENT_START = 'Start';
  622. var $A_COMP_CONTENT_FIN_NOEXP = 'Finish: No Expiry';
  623. var $A_COMP_CONTENT_FINISH = 'Finish';
  624. var $A_COMP_CONTENT_PUBLISH_INFO = 'Publish Information';
  625. var $A_COMP_CONTENT_MANAGER = 'Manager';
  626. var $A_COMP_CONTENT_ZERO = 'Are you sure you want to reset the Hits to Zero? \nAny unsaved changes to this content will be lost.';
  627. var $A_COMP_CONTENT_MUST_TITLE = 'Content item must have a title';
  628. var $A_COMP_CONTENT_MUST_NAME = 'Content item must have a name';
  629. var $A_COMP_CONTENT_MUST_SECTION = 'You must select a Section.';
  630. var $A_COMP_CONTENT_MUST_CATEG = 'You must select a Category.';
  631. var $A_COMP_CONTENT_ITEMS = 'Content Items';
  632. var $A_COMP_CONTENT_IN = 'content in';
  633. var $A_COMP_CONTENT_TITLE_ALIAS = 'Title Alias';
  634. var $A_COMP_CONTENT_ITEM_DETAILS = 'Item Details';
  635. var $A_COMP_CONTENT_INTRO = 'Intro Text: (required)';
  636. var $A_COMP_CONTENT_MAIN = 'Main Text: (optional)';
  637. var $A_COMP_CONTENT_PUB_INFO = 'Publishing Info';
  638. var $A_COMP_CONTENT_FRONTPAGE = 'Show on Frontpage';
  639. var $A_COMP_CONTENT_AUTHOR = 'Author Alias';
  640. var $A_COMP_CONTENT_CREATOR = 'Change Creator';
  641. var $A_COMP_CONTENT_OVERRIDE = 'Override Created Date';
  642. var $A_COMP_CONTENT_START_PUB = 'Start Publishing';
  643. var $A_COMP_CONTENT_FINISH_PUB = 'Finish Publishing';
  644. var $A_COMP_CONTENT_ID = 'Content ID';
  645. var $A_COMP_CONTENT_DRAFT_UNPUB = 'Draft Unpublished';
  646. var $A_COMP_CONTENT_RESET_HIT = 'Reset Hit Count';
  647. var $A_COMP_CONTENT_REVISED = 'Revised';
  648. var $A_COMP_CONTENT_TIMES = 'times';
  649. var $A_COMP_CONTENT_CREATED = 'Created';
  650. var $A_COMP_CONTENT_BY = 'By';
  651. var $A_COMP_CONTENT_NEW_DOC = 'New document';
  652. var $A_COMP_CONTENT_LAST_MOD = 'Last Modified';
  653. var $A_COMP_CONTENT_NOT_MOD = 'Not modified';
  654. var $A_COMP_CONTENT_MOSIMAGE = 'MOSImage Control';
  655. var $A_COMP_CONTENT_SUB_FOLDER = 'Sub-folder';
  656. var $A_COMP_CONTENT_GALLERY = 'Gallery Images';
  657. var $A_COMP_CONTENT_IMAGES = 'Content Images';
  658. var $A_COMP_CONTENT_UP = 'up';
  659. var $A_COMP_CONTENT_DOWN = 'down';
  660. var $A_COMP_CONTENT_REMOVE = 'remove';
  661. var $A_COMP_CONTENT_EDIT_IMAGE = 'Edit the image selected';
  662. var $A_COMP_CONTENT_IMG_ALIGN = 'Image Align';
  663. var $A_COMP_CONTENT_ALIGN = 'Align';
  664. var $A_COMP_CONTENT_ALT = 'Alt Text';
  665. var $A_COMP_CONTENT_BORDER = 'Border';
  666. var $A_COMP_CONTENT_IMG_CAPTION = 'Caption';
  667. var $A_COMP_CONTENT_IMG_CAPTION_POS = 'Caption Position';
  668. var $A_COMP_CONTENT_IMG_CAPTION_ALIGN = 'Caption Align';
  669. var $A_COMP_CONTENT_IMG_WIDTH = 'Width';
  670. var $A_COMP_CONTENT_APPLY = 'Apply';
  671. var $A_COMP_CONTENT_PARAM = 'Parameter Control';
  672. var $A_COMP_CONTENT_PARAM_MESS = '* These Parameters only control what you see when you click to view an item fully *';
  673. var $A_COMP_CONTENT_META_DATA = 'Meta Data';
  674. var $A_COMP_CONTENT_KEYWORDS = 'Keywords';
  675. //var $A_COMP_CONTENT_LINK_PAGE = 'link-page';
  676. var $A_COMP_CONTENT_LINK_CI = 'This will create a \'Link - Content Item\' in the menu you select';
  677. var $A_COMP_CONTENT_LINK_NAME = 'Link Name';
  678. var $A_COMP_CONTENT_SOMETHING = 'Please select something';
  679. var $A_COMP_CONTENT_MOVE_ITEMS = 'Move Items';
  680. var $A_COMP_CONTENT_MOVE_SECCAT = 'Move to Section/Category';
  681. var $A_COMP_CONTENT_ITEMS_MOVED = 'Items being Moved';
  682. var $A_COMP_CONTENT_SECCAT = 'Please select a Section/Category to copy the items to';
  683. var $A_COMP_CONTENT_COPY_ITEMS = 'Copy Content Items';
  684. var $A_COMP_CONTENT_COPY_SECCAT = 'Copy to Section/Category';
  685. var $A_COMP_CONTENT_ITEMS_COPIED = 'Items being copied';
  686. var $A_COMP_CONTENT_PUBLISHING = 'Publishing';
  687. var $A_COMP_CONTENT_IMAGES2 = 'Images';
  688. var $A_COMP_CONTENT_META_INFO = 'Meta Info';
  689. var $A_COMP_CONTENT_ADD_ETC = 'Add Sect/Cat/Title';
  690. var $A_COMP_CONTENT_LINK_TO_MENU = 'Link to Menu';
  691. var $A_COMP_CONTENT_EDIT_CONTENT = 'Edit Content';
  692. var $A_COMP_CONTENT_EDIT_STATIC = 'Edit Static Content';
  693. var $A_COMP_CONTENT_EDIT_SECTION = 'Edit Section';
  694. var $A_COMP_CONTENT_EDIT_CATEGORY = 'Edit Category';
  695. var $A_COMP_CONTENT_EDIT_USER = 'Edit User';
  696. //components/com_content/admin.content.php
  697. var $A_COMP_CONTENT_CACHE = 'Cache cleaned';
  698. var $A_COMP_CONTENT_MODULE = 'The module';
  699. var $A_COMP_CONTENT_ANOTHER = 'is currently being edited by another administrator';
  700. var $A_COMP_CONTENT_PUBLISHED = 'Item(s) successfully Published';
  701. var $A_COMP_CONTENT_UNPUBLISHED = 'Item(s) successfully Unpublished';
  702. var $A_COMP_CONTENT_SEL_TOG = 'Select an item to toggle';
  703. var $A_COMP_CONTENT_SEL_DEL = 'Select an item to delete';
  704. var $A_COMP_CONTENT_SUCCESS_DEL = 'Item(s) successfully deleted';
  705. var $A_COMP_CONTENT_SEL_MOVE = 'Select an item to move';
  706. var $A_COMP_CONTENT_MOVED = 'Item(s) successfully moved to Section';
  707. var $A_COMP_CONTENT_ERR_OCCURRED = 'An error has occurred';
  708. var $A_COMP_CONTENT_COPIED = 'Item(s) successfully copied to Section';
  709. var $A_COMP_CONTENT_RESET_HIT_COUNT = 'Successfully Reset Hit count for';
  710. var $A_COMP_CONTENT_IN_MENU = '(Link - Static Content) in menu';
  711. var $A_COMP_CONTENT_SUCCESS = 'successfully created';
  712. var $A_COMP_CONTENT_SELECT_CAT = 'Select Category';
  713. var $A_COMP_CONTENT_SELECT_SEC = 'Select Section';
  714. //components/com_content/toolbar.content.html.php
  715. var $A_COMP_CONTENT_BAR_MOVE = 'Move';
  716. var $A_COMP_CONTENT_BAR_COPY = 'Copy';
  717. var $A_COMP_CONTENT_BAR_SAVE = 'Save';
  718. //components/com_frontpage/admin.frontpage.html.php
  719. var $A_COMP_FRONT_PAGE_MNG = 'Front Page Manager';
  720. //var $A_COMP_FRONT_PAGE_ITEMS = 'Front Page Items';
  721. var $A_COMP_FRONT_ORDER = 'Order';
  722. //components/com_frontpage/admin.frontpage.php
  723. var $A_COMP_FRONT_COUNT_NUM = 'Parameter count must be a number';
  724. var $A_COMP_FRONT_INTRO_NUM = 'Parameter intro must be a number';
  725. var $A_COMP_FRONT_WELCOME = 'Welcome to the Frontpage';
  726. var $A_COMP_FRONT_IDONOT = 'I do not have anything to display';
  727. //components/com_frontpage/toolbar.frontpage.html.php
  728. var $A_COMP_FRONT_REMOVE = 'Remove';
  729. //components/com_languages/admin.languages.html.php
  730. var $A_COMP_LANG_INSTALL = 'Language Manager <small><small>[ Site ]</small></small>';
  731. var $A_COMP_LANG_LANG = 'Language';
  732. var $A_COMP_LANG_EMAIL = 'Author Email';
  733. var $A_COMP_LANG_EDITOR = 'Language Editor';
  734. var $A_COMP_LANG_FILE = 'File language';
  735. //components/com_languages/admin.languages.php
  736. var $A_COMP_LANG_UPDATED = 'Configuration succesfully updated!';
  737. var $A_COMP_LANG_M_SURE = 'Error! Make sure that configuration.php is writeable.';
  738. var $A_COMP_LANG_CANNOT = 'You can not delete language in use.';
  739. var $A_COMP_LANG_FAILED_OPEN = 'Operation Failed: Could not open';
  740. var $A_COMP_LANG_FAILED_SPEC = 'Operation failed: No language specified.';
  741. var $A_COMP_LANG_FAILED_EMPTY = 'Operation failed: Content empty.';
  742. var $A_COMP_LANG_FAILED_UNWRT = 'Operation failed: The file is not writable.';
  743. var $A_COMP_LANG_FAILED_FILE = 'Operation failed: Failed to open file for writing.';
  744. //components/com_mambots/admin.mambots.html.php
  745. var $A_COMP_MAMB_ADMIN = 'Administrator';
  746. var $A_COMP_MAMB_SITE = 'Site';
  747. var $A_COMP_MAMB_MANAGER = 'Mambot Manager';
  748. var $A_COMP_MAMB_NAME = 'Mambot Name';
  749. var $A_COMP_MAMB_FILE = 'File';
  750. var $A_COMP_MAMB_MUST_NAME = 'Mambot must have a name';
  751. var $A_COMP_MAMB_MUST_FNAME = 'Mambot must have a filename';
  752. var $A_COMP_MAMB_DETAILS = 'Mambot Details';
  753. var $A_COMP_MAMB_FOLDER = 'Folder';
  754. var $A_COMP_MAMB_MFILE = 'Mambot file';
  755. var $A_COMP_MAMB_ORDER = 'Mambot Order';
  756. //components/com_mambots/admin.mambots.php
  757. var $A_COMP_MAMB_EDIT = 'is currently being edited by another administrator';
  758. var $A_COMP_MAMB_DEL = 'Select a module to delete';
  759. var $A_COMP_MAMB_TO = 'Select a mambot to';
  760. var $A_COMP_MAMB_PUB = 'publish';
  761. var $A_COMP_MAMB_UNPUB = 'unpublish';
  762. var $A_COMP_MAMB_SAVED_CHANGES = 'Successfully Saved changes to Mambot: '; //KEN ADDED
  763. var $A_COMP_MAMB_SAVED = 'Successfully Saved Mambot: '; //KEN ADDED
  764. var $A_COMP_MAMB_ORDERING = 'New items default to the last place. Ordering can be changed after this item is saved.'; //KEN ADDED
  765. var $A_COMP_MAMB_ORDERING_SAVED = 'Successfully Saved Mambot: '; //KEN ADDED
  766. //components/com_massmail/admin.massmail.html.php
  767. var $A_COMP_MASS_SUBJECT = 'Please fill in the subject';
  768. var $A_COMP_MASS_SELECT_GROUP = 'Please select a group';
  769. var $A_COMP_MASS_MESSAGE = 'Please fillin the message';
  770. var $A_COMP_MASS_MAIL = 'Mass Mail';
  771. var $A_COMP_MASS_GROUP = 'Group';
  772. var $A_COMP_MASS_DETAILS = 'Details'; //KEN ADDED
  773. var $A_COMP_MASS_CHILD = 'Mail to Child Groups';
  774. var $A_COMP_MASS_HTML = 'Send in HTML mode'; //KEN ADDED
  775. var $A_COMP_MASS_SUB = 'Subject';
  776. var $A_COMP_MASS_MESS = 'Message';
  777. //components/com_massmail/toolbar.massmail.html.php
  778. var $A_COMP_MASS_SEND = 'Send Mail';
  779. //components/com_massmail/admin.massmail.php
  780. var $A_COMP_MASS_ALL = '- All User Groups -';
  781. var $A_COMP_MASS_FILL = 'Please fill in the form correctly';
  782. var $A_COMP_MASS_SENT = 'E-mail sent to';
  783. var $A_COMP_MASS_USERS = 'users';
  784. //components/com_media/admin.media.html.php
  785. var $A_COMP_MEDIA_MG = 'Media Manager';
  786. var $A_COMP_MEDIA_DIR = 'Directory';
  787. var $A_COMP_MEDIA_UP = 'Up';
  788. var $A_COMP_MEDIA_UPLOAD = 'Upload';
  789. var $A_COMP_MEDIA_UPLOAD_MAX = 'Max size';
  790. var $A_COMP_MEDIA_CODE = 'Code';
  791. var $A_COMP_MEDIA_CDIR = 'Create Directory';
  792. var $A_COMP_MEDIA_PROBLEM = 'Configuration Problem';
  793. var $A_COMP_MEDIA_EXIST = 'does not exist.';
  794. var $A_COMP_MEDIA_DEL = 'Delete';
  795. var $A_COMP_MEDIA_INSERT = 'Insert your text here';
  796. var $A_COMP_MEDIA_DEL_FILE = "Delete file \"+file+\"?";
  797. var $A_COMP_MEDIA_DEL_ALL = "There are \"+numFiles+\" files/folders in \"+folder+\". Please delete all files/folder in \"+folder+\" first.";
  798. var $A_COMP_MEDIA_DEL_FOLD = "Delete folder \"+folder+\"?";
  799. var $A_COMP_MEDIA_NO_IMG = 'No Images Found';
  800. //components/com_media/admin.media.php
  801. var $A_COMP_MEDIA_NO_HACK = 'NO HACKING PLEASE';
  802. var $A_COMP_MEDIA_DIR_SAFEMODE = 'Directory creation not allowed while running in SAFE MODE as this can cause problems.';
  803. var $A_COMP_MEDIA_ALPHA = 'Directory name must only contain alphanumeric characters and no spaces please.';
  804. var $A_COMP_MEDIA_FAILED = 'Upload FAILED.File allready exists';
  805. var $A_COMP_MEDIA_ONLY = 'Only files of type gif, png, jpg, bmp, pdf, swf, doc, xls or ppt can be uploaded';
  806. var $A_COMP_MEDIA_UP_FAILED = 'Upload FAILED';
  807. var $A_COMP_MEDIA_UP_COMP = 'Upload complete';
  808. var $A_COMP_MEDIA_NOT_EMPTY = '<font color="red">Unable to delete: not empty!</font>';//KEN ADDED
  809. //components/com_media/toolbar.media.html.php
  810. var $A_COMP_MEDIA_CREATE = 'Create';
  811. //components/com_menumanager/admin.menumanager.html.php
  812. var $A_COMP_MENU_NAME = 'Menu Name';
  813. var $A_COMP_MENU_TYPE = 'Menu Type';
  814. var $A_COMP_MENU_TITLE = 'Module Title';
  815. var $A_COMP_MENU_ITEMS = 'Menu Items';//KEN ADDED
  816. var $A_COMP_MENU_PUB = '# Published';//KEN ADDED
  817. var $A_COMP_MENU_UNPUB = '# UnPublished';//KEN ADDED
  818. var $A_COMP_MENU_MODULES = '# Modules';//KEN ADDED
  819. var $A_COMP_MENU_EDIT_NAME = 'Edit Menu Name';//KEN ADDED
  820. var $A_COMP_MENU_EDIT_ITEM = 'Edit Menu Items';//KEN ADDED
  821. var $A_COMP_MENU_ID = 'Module ID';
  822. var $A_COMP_MENU_TIPS = 'This is the identification name used by mambo to identify this menu within the code - it must be unique. Recommend that you do not have any spaces in your Menu Name';//KEN ADDED
  823. var $A_COMP_MENU_TIPS2 = 'Title of the mod_mainmenu module required to show this Menu';//KEN ADDED
  824. var $A_COMP_MENU_TIPS3 = '* A new mod_mainmenu module, with the Title you have entered above will automatically be created when you save this menu. *<br/><br/>Parameters for the module created are to be edited through the "Modules Manager [site]": Modules -> Site Modules';//KEN ADDED
  825. var $A_COMP_MENU_ASSIGN = 'No module assigned to menu';
  826. var $A_COMP_MENU_ENTER = 'Please enter a name for your menu';
  827. var $A_COMP_MENU_ENTER_TYPE = 'Please enter a menu type for your menu';
  828. var $A_COMP_MENU_ENTER_TITLE = 'Please enter a module name for your menu';
  829. var $A_COMP_MENU_DETAILS = 'Menu Details';
  830. var $A_COMP_MENU_MAINMENU = 'A mod_mainmenu module, with the same name will automatically be created/modified when you save this menu.';
  831. var $A_COMP_MENU_DEL = 'Delete Menu';
  832. var $A_COMP_MENU_MODULE_DEL = 'Menu/Module being Deleted';
  833. var $A_COMP_MENU_ITEMS_DEL = 'Menu Items being Deleted';
  834. var $A_COMP_MENU_WILL = '* This will';
  835. var $A_COMP_MENU_WILL2 = 'this Menu, <br />ALL its Menu Items and the Module associated with it *';
  836. var $A_COMP_MENU_YOU_SURE = 'Are you sure you want to Deleted this menu? \nThis will Delete the Menu, its Items and the Module.';
  837. var $A_COMP_MENU_NAME_MENU = 'Please enter a name for the copy of the Menu';
  838. var $A_COMP_MENU_NAME_MOD = 'Please enter a name for the new Module';
  839. var $A_COMP_MENU_COPY = 'Copy Menu';
  840. var $A_COMP_MENU_NEW = 'New Menu Name';
  841. var $A_COMP_MENU_NEW_MOD = 'New Module Name';//KEN ADDED
  842. var $A_COMP_MENU_COPIED = 'Menu being copied';
  843. var $A_COMP_MENU_ITEMS_COPIED = 'Menu Items being copied';
  844. var $A_COMP_MENU_MOD_MENU = 'A mod_mainmenu module, with the same name<br />will automatically be created when you save this menu.';
  845. //components/com_menumanager/admin.menumanager.php
  846. var $A_COMP_MENU_CREATED = 'New Menu created';
  847. var $A_COMP_MENU_UPDATED = 'Menu Items & Modules updated';
  848. var $A_COMP_MENU_DETECTED = 'Menu Deleted';
  849. var $A_COMP_MENU_COPY_OF = 'Copy of Menu';
  850. var $A_COMP_MENU_CONSIST = 'created, consisting of';
  851. var $A_COMP_MENU_RENAME_WARNING = 'You cannot rename the mainmenu Menu as this will disrupt the proper operation of Mambo';
  852. var $A_COMP_MENU_EXISTS_WARNING = 'A menu already exists with that name - you must enter a unique Menu Name';
  853. //components/com_menumanager/toolbar.menumanager.html.php
  854. var $A_COMP_MENU_BAR_DEL = 'Delete';
  855. //components/com_modules/admin.modules.html.php
  856. var $A_COMP_MOD_MANAGER = 'Module Manager';
  857. var $A_COMP_MOD_NAME = 'Module Name';
  858. var $A_COMP_MOD_POSITION = 'Position';
  859. var $A_COMP_MOD_PAGES = 'Pages';
  860. var $A_COMP_MOD_VARIES = 'Varies';
  861. var $A_COMP_MOD_ALL = 'All';
  862. var $A_COMP_MOD_USER = 'User';
  863. var $A_COMP_MOD_MUST_TITLE = 'Module must have a title';
  864. var $A_COMP_MOD_MODULE = 'Module';
  865. var $A_COMP_MOD_DETAILS = 'Module Details';
  866. var $A_COMP_MOD_SHOW_TITLE = 'Show title';
  867. var $A_COMP_MOD_ORDER = 'Module Order';
  868. var $A_COMP_MOD_CONTENT = 'Content';
  869. var $A_COMP_MOD_PAGES_ITEMS = 'Pages / Items';
  870. var $A_COMP_MOD_CUSTOM_OUTPUT = 'Custom Output';
  871. var $A_COMP_MOD_MOD_POSITION = 'Module Positions';
  872. var $A_COMP_MOD_ITEM_LINK = 'Menu Item Link(s)';
  873. var $A_COMP_MOD_TAB_LBL = 'Location(s)';
  874. //components/com_modules/admin.modules.php
  875. var $A_COMP_MOD_MODULES = 'Module(s)';
  876. var $A_COMP_MOD_MOD_COPIED = 'Module Copied';//KEN ADDED
  877. var $A_COMP_MOD_SAVED_CHANGES = 'Successfully Saved changes to Module: ';//KEN ADDED
  878. var $A_COMP_MOD_SAVED_MOD = 'Successfully Saved Module: ';//KEN ADDED
  879. var $A_COMP_MOD_CANNOT = 'cannot be deleted they can only be un-installed as they are Mambo modules.';
  880. var $A_COMP_MOD_SELECT_TO = 'Select a module to';
  881. //components/com_modules/toolbar.modules.html.php
  882. var $A_COMP_MOD_PREVIEW = 'Preview';
  883. var $A_COMP_MOD_PREVIEW_TIP = 'You can only preview typed modules.';
  884. //components/com_newsfeeds/admin.newsfeeds.html.php
  885. var $A_COMP_FEED_TITLE = 'Newsfeed Manager';
  886. var $A_COMP_FEED_NEWS = 'News Feed';
  887. var $A_COMP_FEED_ARTICLES = '# Articles';
  888. var $A_COMP_FEED_CACHE = 'Cache time(sec)';
  889. var $A_COMP_FEED_EDIT_FEED = 'Edit Newsfeed';//KEN ADDED
  890. var $A_COMP_FEED_FILL_NAME = 'Please fill in the newsfeed name.';
  891. var $A_COMP_FEED_SEL_CATEG = 'Please select a Category.';
  892. var $A_COMP_FEED_FILL_LINK = 'Please fill in the newsfeed link.';
  893. var $A_COMP_FEED_FILL_NB = 'Please fill in the number of articles to display.';
  894. var $A_COMP_FEED_FILL_REFRESH = 'Please fill in the cache refresh time.';
  895. var $A_COMP_FEED_LINK = 'Link';
  896. var $A_COMP_FEED_NB_ARTICLE = 'Number of Articles';
  897. var $A_COMP_FEED_IN_SEC = 'Cache time (in seconds)';
  898. //components/com_poll/admin.poll.html.php
  899. var $A_COMP_POLL_MANAGER = 'Poll Manager';
  900. var $A_COMP_POLL_TITLE = 'Poll Title';
  901. var $A_COMP_POLL_OPTIONS = 'Options';
  902. var $A_COMP_POLL_MUST_TITLE = 'Poll must have a title';
  903. var $A_COMP_POLL_NON_ZERO = 'Poll must have a non-zero lag time';
  904. var $A_COMP_POLL_POLL = 'Poll';
  905. var $A_COMP_POLL_SHOW = 'Show on menu items';
  906. var $A_COMP_POLL_LAG = 'Lag';
  907. var $A_COMP_POLL_EDIT = 'Edit poll';//KEN ADDED
  908. var $A_COMP_POLL_BETWEEN = '(seconds between votes)';
  909. //components/com_poll/admin.poll.php
  910. var $A_COMP_POLL_THE = 'The poll';
  911. var $A_COMP_POLL_BEING = 'is currently being edited by another administrator.';
  912. //components/com_poll/poll.class.php
  913. var $A_COMP_POLL_TRY_AGAIN = 'There is a module already with that name, please try again.';
  914. //components/com_sections/admin.sections.html.php
  915. var $A_COMP_SECT_MANAGER = 'Section Manager';
  916. var $A_COMP_SECT_NAME = 'Section Name';
  917. var $A_COMP_SECT_ID = 'Section ID';
  918. var $A_COMP_SECT_NB_CATEG = '# Categories';
  919. var $A_COMP_SECT_NEW = 'New Section';
  920. var $A_COMP_SECT_SEL_MENU = 'Please select a Menu';
  921. var $A_COMP_SECT_MUST_NAME = 'Section must have a name';
  922. var $A_COMP_SECT_MUST_TITLE = 'Section must have a title';
  923. var $A_COMP_SECT_DETAILS = 'Section Details';
  924. var $A_COMP_SECT_SCOPE = 'Scope';
  925. var $A_COMP_SECT_SHORT_NAME = 'A short name to appear in menus';
  926. var $A_COMP_SECT_LONG_NAME = 'A long name to be displayed in headings';
  927. var $A_COMP_SECT_COPY = 'Copy Section';
  928. var $A_COMP_SECT_COPY_TO = 'Copy to Section';
  929. var $A_COMP_SECT_NEW_NAME = 'The new Section name';
  930. var $A_COMP_SECT_WILL_COPY = 'This will copy the Categories listed<br />and all the items within the category (also listed)<br />to the new Section created.';
  931. var $A_COMP_SECT_MENU_LINK = 'Menu links available when saved';//KEN ADDED
  932. //components/com_sections/admin.sections.php
  933. var $A_COMP_SECT_THE = 'The section';
  934. var $A_COMP_SECT_LIST = 'Section List';
  935. var $A_COMP_SECT_BLOG = 'Section Blog';
  936. var $A_COMP_SECT_DELETE = 'Select a section to delete';
  937. var $A_COMP_SECT_SEC = 'Sections(s)';
  938. var $A_COMP_SECT_CANNOT = 'cannot be removed as they contain categories';
  939. var $A_COMP_SECT_SUCCESS_DEL = 'successfully deleted';
  940. var $A_COMP_SECT_TO = 'Select a section to';
  941. var $A_COMP_SECT_CANNOT_PUB = 'Cannot Publish an Empty Section';
  942. var $A_COMP_SECT_AND_ALL = 'and all its Categories and Items have been copied as';
  943. var $A_COMP_SECT_IN_MENU = 'in menu';
  944. var $A_COMP_SECT_CHANGES_SAVED = 'Changes to Section saved';//KEN ADDED
  945. var $A_COMP_SECT_SECTION_SAVED = 'Section saved';//KEN ADDED
  946. //components/com_statistics/admin.statistics.html.php
  947. var $A_COMP_STAT_OS = 'Browser, OS, Domain Statistics';
  948. var $A_COMP_STAT_BR_PAGE = 'Browsers';
  949. var $A_COMP_STAT_BROWSER = 'Browser';
  950. var $A_COMP_STAT_OS_PAGE = 'OS Stats';
  951. var $A_COMP_STAT_OP_SYST = 'Operating System';
  952. var $A_COMP_STAT_URL_PAGE = 'Domain Stats';
  953. var $A_COMP_STAT_URL = 'Domain';
  954. var $A_COMP_STAT_IMPR = 'Page Impression Statistics';
  955. var $A_COMP_STAT_PG_IMPR = 'Page Impressions';
  956. var $A_COMP_STAT_SCH_ENG = 'Search Engine Text';
  957. var $A_COMP_STAT_LOG_IS = 'logging is';
  958. var $A_COMP_STAT_ENABLED = 'Enabled';
  959. var $A_COMP_STAT_DISABLED = 'Disabled';
  960. var $A_COMP_STAT_SCH_TEXT = 'Search Text';
  961. var $A_COMP_STAT_T_REQ = 'Times Requested';
  962. var $A_COMP_STAT_R_RETURN = 'Results Returned';
  963. //components/com_syndicate/admin.syndicate.html.php
  964. var $A_COMP_SYND_SET = 'Syndication Settings';
  965. //components/com_syndicate/admin.syndicate.php
  966. var $A_COMP_SYND_SAVED = 'Settings successfully Saved';
  967. //components/com_templates/admin.templates.html.php
  968. var $A_COMP_TEMP_NO_PREVIEW = 'No preview available';
  969. var $A_COMP_TEMP_INSTALL = 'Installed';
  970. var $A_COMP_TEMP_TP = 'Templates';
  971. var $A_COMP_TEMP_PREVIEW = 'Preview Template';
  972. var $A_COMP_TEMP_ASSIGN = 'Assigned';
  973. var $A_COMP_TEMP_AUTHOR_URL = 'Author URL';
  974. var $A_COMP_TEMP_EDITOR = 'Template Editor';
  975. var $A_COMP_TEMP_PATH = 'Path: templates';
  976. var $A_COMP_TEMP_WRT = ' - Writeable';
  977. var $A_COMP_TEMP_UNWRT = ' - Unwriteable';
  978. var $A_COMP_TEMP_ST_EDITOR = 'Template Stylesheet Editor';
  979. var $A_COMP_TEMP_NAME = 'Path';
  980. var $A_COMP_TEMP_ASSIGN_TP = 'Assign template';
  981. var $A_COMP_TEMP_TO_MENU = 'to menu items';
  982. var $A_COMP_TEMP_PAGES = 'Page(s)';
  983. var $A_COMP_TEMP_ = 'Position';
  984. //components/com_templates/admin.templates.php
  985. var $A_COMP_TEMP_CANNOT = 'You can not delete template in use.';
  986. var $A_COMP_TEMP_NOT_OPEN = 'Operation Failed: Could not open';
  987. var $A_COMP_TEMP_FLD_SPEC = 'Operation failed: No template specified.';
  988. var $A_COMP_TEMP_FLD_EMPTY = 'Operation failed: Content empty.';
  989. var $A_COMP_TEMP_FLD_WRT = 'Operation failed: Failed to open file for writing.';
  990. var $A_COMP_TEMP_FLD_NOT = 'Operation failed: The file is not writable.';
  991. var $A_COMP_TEMP_SAVED = 'Positions saved';
  992. //components/com_typedcontent/admin.typedcontent.html.php
  993. var $A_COMP_TYPED_STATIC = 'Static Content Manager';
  994. var $A_COMP_TYPED_LINKS = 'Links';
  995. var $A_COMP_TYPED_ARE_YOU = 'Are you sure you want to create a menu link to this Static Content item? \nAny unsaved changes to this content will be lost.';
  996. var $A_COMP_TYPED_CONTENT = 'Typed Content';
  997. var $A_COMP_TYPED_TEXT = 'Text: (required)';
  998. var $A_COMP_TYPED_EXPIRES = 'Expires';
  999. var $A_COMP_TYPED_WILL = 'This will create a \'Link - Static Content\' in the menu you select';
  1000. var $A_COMP_TYPED_ITEM = 'Static Content Item';
  1001. //components/com_typedcontent/admin.typedcontent.php
  1002. var $A_COMP_TYPED_SAVED = 'Typed Content Item saved';
  1003. var $A_COMP_TYPED_CHG_SAVED = 'Changes to Typed Content Item saved';
  1004. //components/com_users/admin.users.html.php
  1005. var $A_COMP_USERS_ID = 'UserID';
  1006. var $A_COMP_USERS_LOG_IN = 'Logged In';
  1007. var $A_COMP_USERS_LAST = 'Last Visit';
  1008. var $A_COMP_USERS_BLOCKED = 'Blocked';
  1009. var $A_COMP_USERS_YOU_MUST = 'You must provide a user login name.';
  1010. var $A_COMP_USERS_YOU_LOGIN = 'You login name contains invalid characters or is too short.';
  1011. var $A_COMP_USERS_MUST_EMAIL = 'You must provide an email address.';
  1012. var $A_COMP_USERS_ASSIGN = 'You must assign user to a group.';
  1013. var $A_COMP_USERS_NO_MATCH = 'Password do not match.';
  1014. var $A_COMP_USERS_NO_FRONTEND = 'Please Select another group as `Public Frontend` is not a selectable option';
  1015. var $A_COMP_USERS_NO_BACKEND = 'Please Select another group as `Public Backend` is not a selectable option';
  1016. var $A_COMP_USERS_DETAILS = 'User Details';
  1017. var $A_COMP_USERS_EMAIL = 'Email';
  1018. var $A_COMP_USERS_PASS = 'New Password';
  1019. var $A_COMP_USERS_VERIFY = 'Verify Password';
  1020. var $A_COMP_USERS_BLOCK = 'Block User';
  1021. var $A_COMP_USERS_SUBMI = 'Receive Submission Emails';
  1022. var $A_COMP_USERS_REG_DATE = 'Register Date';
  1023. var $A_COMP_USERS_VISIT_DATE = 'Last Visit Date';
  1024. var $A_COMP_USERS_CONTACT = 'Contact Information';
  1025. var $A_COMP_USERS_NO_DETAIL = 'No Contact details linked to this User:<br />See \'Components -> Contact -> Manage Contacts\' for details.';
  1026. var $A_COMP_USERS_CHANGE_CONTACT = 'change Contact Details';
  1027. var $A_COMP_USERS_CONTACT_INFO = 'Components -> Contact -> Manage Contacts';
  1028. //components/com_users/admin.users.php
  1029. var $A_COMP_USERS_SUPER_ADMIN = 'Super Administrator';
  1030. var $A_COMP_USERS_CANNOT = 'You cannot delete a Super Administrator';
  1031. var $A_COMP_USERS_NOT_DEL_SELF = 'You cannot delete Yourself!';
  1032. var $A_COMP_USERS_NOT_DEL_ADMIN = 'You cannot delete another `Administrator` only `Super Administrators` have this power';
  1033. //components/com_users/toolbar.users.html.php
  1034. var $A_COMP_USERS_LOGOUT = 'Force Logout';
  1035. //components/com_weblinks/admin.weblinks.html.php
  1036. var $A_COMP_WEBL_MANAGER = 'Weblink Manager';
  1037. var $A_COMP_WEBL_APPROVED = 'Approved';
  1038. var $A_COMP_WEBL_MUST_TITLE = 'Weblink item must have a title';
  1039. var $A_COMP_WEBL_MUST_CATEG = 'You must select a category.';
  1040. var $A_COMP_WEBL_MUST_URL = 'You must have a url.';
  1041. var $A_COMP_WEBL_WL = 'Weblink';
  1042. //components/com_installer/admin.installer.php
  1043. var $A_INSTALL_NOT_FOUND = "Installer not found for element ";
  1044. var $A_INSTALL_NOT_AVAIL = "Installer not available for element";
  1045. var $A_INSTALL_ENABLE_MSG = "The installer can't continue before file uploads are enabled. Please use the install from directory method.";
  1046. var $A_INSTALL_ERROR_MSG_TITLE = 'Installer - Error';
  1047. var $A_INSTALL_ZLIB_MSG = "The installer can't continue before zlib is installed";
  1048. var $A_INSTALL_NOFILE_MSG = 'No file selected';
  1049. var $A_INSTALL_NEWMODULE_ERROR_MSG_TITLE = 'Upload new module - error';
  1050. var $A_INSTALL_UPLOAD_PRE = 'Upload ';
  1051. var $A_INSTALL_UPLOAD_POST = ' - Upload Failed';
  1052. var $A_INSTALL_UPLOAD_POST2 = ' - Upload Error';
  1053. var $A_INSTALL_SUCCESS = 'Success';
  1054. var $A_INSTALL_ERROR = 'Error';
  1055. var $A_INSTALL_FAILED = 'Failed';
  1056. var $A_INSTALL_SELECT_DIR = 'Please select a directory';
  1057. var $A_INSTALL_UPLOAD_NEW = 'Upload new ';
  1058. var $A_INSTALL_FAIL_PERMISSION = 'Failed to change the permissions of the uploaded file.';
  1059. var $A_INSTALL_FAIL_MOVE = 'Failed to move uploaded file to <code>/media</code> directory.';
  1060. var $A_INSTALL_FAIL_WRITE = 'Upload failed as <code>/media</code> directory is not writable.';
  1061. var $A_INSTALL_FAIL_EXIST = 'Upload failed as <code>/media</code> directory does not exist.';
  1062. //components/com_installer/admin.installer.html.php
  1063. var $A_INSTALL_WRITABLE = 'Writeable';
  1064. var $A_INSTALL_UNWRITABLE = 'Unwriteable';
  1065. var $A_INSTALL_CONTINUE = 'Continue ...';
  1066. var $A_INSTALL_UPLOAD_PACK_FILE = 'Upload Package File';
  1067. var $A_INSTALL_PACK_FILE = 'Package File:';
  1068. var $A_INSTALL_UPL_INSTALL = "Upload File &amp; Install";
  1069. var $A_INSTALL_FROM_DIR = 'Install from directory';
  1070. var $A_INSTALL_DIR = 'Install directory:';
  1071. var $A_INSTALL_DO_INSTALL = 'Install';
  1072. //components/com_installer/component/component.html.php
  1073. var $A_INSTALL_COMP_INSTALLED = 'Installed Components';
  1074. var $A_INSTALL_COMP_CURRENT = 'Currently Installed';
  1075. var $A_INSTALL_COMP_MENU = 'Component Menu Link';
  1076. var $A_INSTALL_COMP_AUTHOR = 'Author';
  1077. var $A_INSTALL_COMP_VERSION = 'Version';
  1078. var $A_INSTALL_COMP_DATE = 'Date';
  1079. var $A_INSTALL_COMP_AUTH_MAIL = 'Author Email';
  1080. var $A_INSTALL_COMP_AUTH_URL = 'Author URL';
  1081. var $A_INSTALL_COMP_NONE = 'There are no custom components installed';
  1082. //components/com_installer/component/component.php
  1083. var $A_INSTALL_COMP_UPL_NEW = 'Upload new component';
  1084. //components/com_installer/language/language.php
  1085. var $A_INSTALL_LANG = 'Upload new language';
  1086. var $A_INSTALL_BACK_LANG_MGR = 'Back to Language Manager';
  1087. //components/com_installer/language/language.class.php
  1088. var $A_INSTALL_LANG_NOREMOVE = 'Language id empty, cannot remove files';
  1089. var $A_INSTALL_LANG_UN_ERR = 'Uninstall - error';
  1090. var $A_INSTALL_LANG_DELETING = 'Deleting';
  1091. //components/com_installer/mambot/mambot.html.php
  1092. var $A_INSTALL_MAMB_MAMBOTS = 'Mambots';
  1093. var $A_INSTALL_MAMB_CORE = 'Only those Mambots that can be uninstalled are displayed - some Core Mambots cannot be removed.';
  1094. var $A_INSTALL_MAMB_MAMBOT = 'Mambot';
  1095. var $A_INSTALL_MAMB_TYPE = 'Type';
  1096. var $A_INSTALL_MAMB_AUTHOR = 'Author';
  1097. var $A_INSTALL_MAMB_VERSION = 'Version';
  1098. var $A_INSTALL_MAMB_DATE = 'Date';
  1099. var $A_INSTALL_MAMB_AUTH_MAIL = 'Author Email';
  1100. var $A_INSTALL_MAMB_AUTH_URL = 'Author URL';
  1101. var $A_INSTALL_MOD_NO_MAMBOTS = 'There are no non-core, custom mambots installed.';
  1102. //components/com_installer/mambot/mambot.php
  1103. var $A_INSTALL_MAMB_INSTALL_MAMBOT = 'Install Mambot';
  1104. //components/com_installer/module/module.html.php
  1105. var $A_INSTALL_MOD_MODS = 'Modules';
  1106. var $A_INSTALL_MOD_FILTER = 'Filter:';
  1107. var $A_INSTALL_MOD_CORE = 'Only those Modules that can be uninstalled are displayed - some Core Modules cannot be removed.';
  1108. var $A_INSTALL_MOD_MOD = 'Module File';
  1109. var $A_INSTALL_MOD_CLIENT = 'Client';
  1110. var $A_INSTALL_MOD_AUTHOR = 'Author';
  1111. var $A_INSTALL_MOD_VERSION = 'Version';
  1112. var $A_INSTALL_MOD_DATE = 'Date';
  1113. var $A_INSTALL_MOD_AUTH_MAIL = 'Author Email';
  1114. var $A_INSTALL_MOD_AUTH_URL = 'Author URL';
  1115. var $A_INSTALL_MOD_NO_CUSTOM = 'No custom modules installed';
  1116. //components/com_installer/module/module.php
  1117. var $A_INSTALL_MOD_INSTALL_MOD = 'Install Module';
  1118. var $A_INSTALL_MOD_ADMIN_MOD = 'Admin Modules';
  1119. //components/com_install/template/template.php
  1120. var $A_INSTALL_TEMPL_INSTALL = 'Install new Template';
  1121. var $A_INSTALL_TEMPL_SITE_TEMPL = 'Site';
  1122. var $A_INSTALL_TEMPL_ADMIN_TEMPL = 'Administrator';
  1123. var $A_INSTALL_TEMPL_BACKTTO_TEMPL = 'Back to Templates';
  1124. //components/com_menus/admin.menus.html.php
  1125. var $A_COMP_MENUS_MAX_LVLS = 'Max Levels';
  1126. var $A_COMP_MENUS_MENU_ITEM = 'Menu Item';
  1127. var $A_COMP_MENUS_MENU_ORDER = 'Order';//KEN ADDED
  1128. var $A_COMP_MENUS_MENU_SAVE_ORDER = 'Save Order';//KEN ADDED
  1129. var $A_COMP_MENUS_MENU_ITEMID = 'Itemid';//KEN ADDED
  1130. var $A_COMP_MENUS_MENU_CID = 'CID';//KEN ADDED
  1131. var $A_COMP_MENUS_MENU_CONTENT = 'Contents';//KEN ADDED
  1132. var $A_COMP_MENUS_MENU_MISC = 'Miscellaneous';//KEN ADDED
  1133. var $A_COMP_MENUS_MENU_NOTE = '* Note that some menu types appear in more that one grouping, but they are still the same menu type.';//KEN ADDED
  1134. var $A_COMP_MENUS_MENU_COM = 'Components';//KEN ADDED
  1135. var $A_COMP_MENUS_MENU_LINKS = 'Links';//KEN ADDED
  1136. var $A_COMP_MENUS_MENU_ITEM_TYPE = 'Menu Item Type';//KEN ADDED
  1137. var $A_COMP_MENUS_MENU_HELP = 'Help';//KEN ADDED
  1138. var $A_COMP_MENUS_MENU_BLOGVIEW = 'What is a "Blog" view';//KEN ADDED
  1139. var $A_COMP_MENUS_MENU_TABLEVIEW = 'What is a "Table" view';//KEN ADDED
  1140. var $A_COMP_MENUS_MENU_LISTVIEW = 'What is a "List" view';//KEN ADDED
  1141. var $A_COMP_MENUS_ADD_ITEM = 'Add Menu Item';
  1142. var $A_COMP_MENUS_SELECT_ADD = 'Select a Component to Add';
  1143. var $A_COMP_MENUS_MOVE_ITEMS = 'Move Menu Items';
  1144. var $A_COMP_MENUS_MOVE_MENU = 'Move to Menu';
  1145. var $A_COMP_MENUS_BEING_MOVED = 'Menu Items being moved';
  1146. var $A_COMP_MENUS_COPY_ITEMS = 'Copy Menu Items';
  1147. var $A_COMP_MENUS_NEXT = 'Next';
  1148. var $A_COMP_MENUS_COPY_MENU = 'Copy to Menu';
  1149. var $A_COMP_MENUS_BEING_COPIED = 'Menu Items being copied';
  1150. var $A_COMP_MENUS_SELECT_TO = 'Select an item to ';
  1151. var $A_COMP_MENUS_SEFPATH = 'SEF Path';
  1152. var $A_COMP_MENUS_SEFPATH_TIP = 'Set up the Path of Search Engine Friendly Link';
  1153. //components/com_menus/admin.menus.php
  1154. var $A_COMP_MENUS_ITEM_SAVED = 'Menu item Saved';//KEN ADDED
  1155. var $A_COMP_MENUS_MOVED_TO = ' Menu Items moved to ';
  1156. var $A_COMP_MENUS_COPIED_TO = ' Menu Items Copied to ';
  1157. var $A_COMP_MENUS_WRAPPER = 'Wrapper';
  1158. var $A_COMP_MENUS_SEPERATOR = 'Separator / Placeholder';
  1159. var $A_COMP_MENUS_LINK = 'Link - ';
  1160. var $A_COMP_MENUS_STATIC = 'Static Content';
  1161. var $A_COMP_MENUS_URL = 'Url';
  1162. var $A_COMP_MENUS_CONTENT_ITEM = 'Content Item';
  1163. var $A_COMP_MENUS_COMP_ITEM = 'Component Item';
  1164. var $A_COMP_MENUS_CONT_ITEM = 'Contact Item';
  1165. var $A_COMP_MENUS_NEWSFEED = 'Newsfeed';
  1166. var $A_COMP_MENUS_COMP = 'Component';
  1167. var $A_COMP_MENUS_LIST = 'List';
  1168. var $A_COMP_MENUS_TABLE = 'Table';
  1169. var $A_COMP_MENUS_BLOG = 'Blog';
  1170. var $A_COMP_MENUS_CONT_SEC = 'Content Section';
  1171. var $A_COMP_MENUS_CONT_CAT = 'Content Category';
  1172. var $A_COMP_MENUS_CONTACT_CAT = 'Contact Category';
  1173. var $A_COMP_MENUS_WEBLINK_CAT = 'Weblink Category';
  1174. var $A_COMP_MENUS_NEWS_CAT = 'Newsfeed Category';
  1175. var $A_COMP_MENUS_NEW_ORDER_SAVED = 'New ordering saved';//KEN ADDED
  1176. var $A_COMP_MENUS_EDIT_NEWSFEED_TIP = 'Edit this Newsfeed';
  1177. var $A_COMP_MENUS_EDIT_CONTACT_TIP = 'Edit this Contact';
  1178. var $A_COMP_MENUS_EDIT_CONTENT_TIP = 'Edit this Content';
  1179. var $A_COMP_MENUS_EDIT_STATIC_TIP = 'Edit this Static Content';
  1180. //components/com_menus/component_item_link/component_item_link.menu.html.php
  1181. var $A_COMP_MENUS_CIL_LINK_NAME = 'Link must have a name';
  1182. var $A_COMP_MENUS_CIL_SELECT_COMP = 'You must select a Component to link to';
  1183. var $A_COMP_MENUS_CIL_LINK_COMP = 'Component to Link';
  1184. var $A_COMP_MENUS_CIL_ON_CLICK = 'On Click, Open in';
  1185. var $A_COMP_MENUS_CIL_PARENT = 'Parent Item';
  1186. var $A_DETAILS = 'Details';
  1187. //components/com_menus/components/components.menu.html.php
  1188. var $A_COMP_MENUS_CMP_ITEM_NAME = 'Item must have a name';
  1189. var $A_COMP_MENUS_CMP_SELECT_CMP = 'Please select a Component';
  1190. var $A_COMP_MENUS_PARAMETERS_AVAILABLE = 'Parameter list will be available once you save this New menu item';
  1191. var $A_COMP_MENUS_CMP_ITEM_COMP = 'Menu Item :: Component';
  1192. //components/com_menus/contact_category_table/contact_category_table.menu.html.php
  1193. var $A_COMP_MENUS_CMP_CCT_CATEG = 'You must select a category';
  1194. var $A_COMP_MENUS_CMP_CCT_TITLE = 'This Menu item must have a title';
  1195. var $A_COMP_MENUS_CMP_CCT_BLANK = 'If you leave this blank the Category name will be automatically used';
  1196. var $A_COMP_MENUS_CMP_CCT_THETITLE = 'Title:';
  1197. var $A_COMP_MENUS_CMP_CCT_THECAT = 'Category:';
  1198. //components/com_menus/contact_item_link/contact_item_link.menu.html.php
  1199. var $A_COMP_MENUS_CMP_CIL_LINK_NAME = 'Link must have a name';
  1200. var $A_COMP_MENUS_CMP_CIL_SEL_CONT = 'You must select a Contact to link to';
  1201. var $A_COMP_MENUS_CMP_CIL_CONTACT = 'Contact to Link:';
  1202. var $A_COMP_MENUS_CMP_CIL_ONCLICK = 'On Click, Open in:';
  1203. var $A_COMP_MENUS_CMP_CIL_HDR = 'Menu Item :: Link - Contact Item';
  1204. //components\com_menus\content_archive_section\content_archive_section.menu.html.php
  1205. var $A_COMP_MENUS_CMP_CAS_BLANK = 'If you leave this blank the Section name will be automatically used';
  1206. //components\com_menus\content_blog_category\content_blog_category.menu.html.php
  1207. var $A_COMP_MENUS_CMP_CBC_CATEG = 'You can select multiple Categories';
  1208. //components\com_menus\content_blog_section\content_blog_section.menu.html.php
  1209. var $A_COMP_MENUS_CMP_CBS_SECTION = 'You can select multiple Sections';
  1210. //components\com_menus\content_item_link\content_item_link.menu.html.php
  1211. var $A_COMP_MENUS_CMP_CIL_SEL_LINK = 'You must select a Content to link to';
  1212. //components/com_menus/wrapper/wrapper.menu.html.php
  1213. var $A_COMP_MENUS_WRAPPER_LINK = 'Wrapper Link';
  1214. //components/com_menus/separator/separator.menu.html.php
  1215. var $A_COMP_MENUS_SEPARATOR_PATTERN = 'Pattern/Name';
  1216. //components/com_menus/content_typed/content_typed.menu.html.php
  1217. var $A_COMP_MENUS_TYPED_CONTENT_TO_LINK = 'Typed Content to Link';
  1218. //components/com_menus/content_item_link/content_item_link.menu.html.php
  1219. var $A_COMP_MENUS_CONTENT_TO_LINK = 'Content to Link';
  1220. //components/com_menus/newsfeed_link/newsfeed_link.menu.html.php
  1221. var $A_COMP_MENUS_NEWSFEED_TO_LINK = 'Newsfeed to Link';
  1222. var $A_COMP_MENUS_NEWSFEED_SELECT_LINK = 'You must select a Newsfeed to link to';
  1223. //components\com_menus\url\url.menu.html.php
  1224. var $A_COMP_MENUS_URL_MUST = 'You must provide a url.';
  1225. var $A_COMP_MENUS_URL_LINK = 'Link';
  1226. function adminLanguage()
  1227. {
  1228. global $TR_STRS;
  1229. //Menu Caption Translation for initial mambo menutype
  1230. $TR_STRS[strtolower('mainmenu')] = 'mainmenu';
  1231. $TR_STRS[strtolower('othermenu')] = 'othermenu';
  1232. $TR_STRS[strtolower('topmenu')] = 'topmenu';
  1233. $TR_STRS[strtolower('usermenu')] = 'usermenu';
  1234. //Components menu caption
  1235. //Banners
  1236. $TR_STRS[strtolower('Banners')] = 'Banners';
  1237. $TR_STRS[strtolower('Manage Banners')] = 'Manage Banners';
  1238. $TR_STRS[strtolower('Manage Clients')] = 'Manage Clients';
  1239. //Web Links
  1240. $TR_STRS[strtolower('Web Links')] = 'Web Links';
  1241. $TR_STRS[strtolower('Weblink Items')] = 'Weblink Items';
  1242. $TR_STRS[strtolower('Weblink Categories')] = 'Weblink Categories';
  1243. //Contacts
  1244. $TR_STRS[strtolower('Contacts')] = 'Contacts';
  1245. $TR_STRS[strtolower('Manage Contacts')] = 'Manage Contacts';
  1246. $TR_STRS[strtolower('Contact Categories')] = 'Contact Categories';
  1247. //Polls
  1248. $TR_STRS[strtolower('Polls')] = 'Polls';
  1249. //News Feeds
  1250. $TR_STRS[strtolower('News Feeds')] = 'News Feeds';
  1251. $TR_STRS[strtolower('Manage News Feeds')] = 'Manage News Feeds';
  1252. $TR_STRS[strtolower('Manage Categories')] = 'Manage Categories';
  1253. //Syndicate
  1254. $TR_STRS[strtolower('Syndicate')] = 'Syndicate';
  1255. //Mass Mail
  1256. $TR_STRS[strtolower('Mass Mail')] = 'Mass Mail';
  1257. //modules XML file
  1258. $TR_STRS[strtolower('Count')] = 'Count';
  1259. $TR_STRS[strtolower('The number of items to display (default is 5)')] = 'The number of items to display (default is 5)';
  1260. $TR_STRS[strtolower('The number of items to display (default is 10)')] = 'The number of items to display (default is 10)';
  1261. $TR_STRS[strtolower('Enable Cache')] = 'Enable Cache';
  1262. $TR_STRS[strtolower('Select whether to cache the content of this module')] = 'Select whether to cache the content of this module';
  1263. $TR_STRS[strtolower('No')] = 'No';
  1264. $TR_STRS[strtolower('Yes')] = 'Yes';
  1265. $TR_STRS[strtolower('Module Class Suffix')] = 'Module Class Suffix';
  1266. $TR_STRS[strtolower('A suffix to be applied to the css class of the module (table.moduletable), this allows individual module styling')] = 'A suffix to be applied to the css class of the module (table.moduletable), this allows individual module styling';
  1267. $TR_STRS[strtolower('Banner')] = 'Banner';
  1268. $TR_STRS[strtolower('Banner client')] = 'Banner client';
  1269. $TR_STRS[strtolower("Reference to banner client id. Enter separated by ','!")] = "Reference to banner client id. Enter separated by ','!";
  1270. $TR_STRS[strtolower('Latest News')] = 'Latest News';
  1271. $TR_STRS[strtolower('This module shows a list of the latest published content items.')] = 'This module shows a list of the latest published content items.';
  1272. $TR_STRS[strtolower('Most Read Content')] = 'Most Read Content';
  1273. $TR_STRS[strtolower('This module shows a list of published content items that have been viewed the most.')] = 'This module shows a list of published content items that have been viewed the most.';
  1274. $TR_STRS[strtolower('Both')] = 'Both';
  1275. $TR_STRS[strtolower('Show')] = 'Show';
  1276. $TR_STRS[strtolower('Hide')] = 'Hide';
  1277. $TR_STRS[strtolower('Frontpage Items')] = 'Frontpage Items';
  1278. $TR_STRS[strtolower('Show/Hide items designated for the Frontpage - only works when in Content Items only mode')] = 'Show/Hide items designated for the Frontpage - only works when in Content Items only mode';
  1279. $TR_STRS[strtolower('Category ID')] = 'Category ID';
  1280. $TR_STRS[strtolower('Selects items from a specific Category or set of Categories (to specify more than one Category, seperate with a comma , ).')] = 'Selects items from a specific Category or set of Categories (to specify more than one Category, seperate with a comma , ).';
  1281. $TR_STRS[strtolower('Section ID')] = 'Section ID';
  1282. $TR_STRS[strtolower('Selects items from a specific Secion or set of Sections (to specify more than one Section, seperate with a comma , ).')] = 'Selects items from a specific Secion or set of Sections (to specify more than one Section, seperate with a comma , ).';
  1283. $TR_STRS[strtolower('Show Headline')] = 'Show Headline';
  1284. $TR_STRS[strtolower('Show/Hide the first content item as headline')] = 'Show/Hide the first content item as headline';
  1285. $TR_STRS[strtolower('Module Title')] = 'Module Title';
  1286. $TR_STRS[strtolower('User defined module title, Only use when headline shown')] = 'User defined module title, Only use when headline shown';
  1287. $TR_STRS[strtolower('Section/Category Style')] = 'Section/Category Style';
  1288. $TR_STRS[strtolower('style of section/category: list or blog')] = 'style of section/category: list or blog';
  1289. $TR_STRS[strtolower('List')] = 'List';
  1290. $TR_STRS[strtolower('Blog')] = 'Blog';
  1291. $TR_STRS[strtolower('Title Length')] = 'Title Length';
  1292. $TR_STRS[strtolower('The max length of content title in chars to display, Default 40')] = 'The max length of item title in chars to display, Default 40';
  1293. $TR_STRS[strtolower('Date Display')] = 'Date Display';
  1294. $TR_STRS[strtolower('The display of item created date')] = 'The display of item created date';
  1295. $TR_STRS[strtolower('Login Form')] = 'Login Form';
  1296. $TR_STRS[strtolower('Module Layout')] = 'Module Layout';
  1297. $TR_STRS[strtolower('The layout of login module')] = 'The layout of login module';
  1298. $TR_STRS[strtolower('Vertical Compact')] = 'Vertical Compact';
  1299. $TR_STRS[strtolower('Login Redirection URL')] = 'Login Redirection URL';
  1300. $TR_STRS[strtolower('What page will the login redirect to after login, if let blank will load front page')] = 'What page will the login redirect to after login, if let blank will load front page';
  1301. $TR_STRS[strtolower('Logout Redirection URL')] = 'Logout Redirection URL';
  1302. $TR_STRS[strtolower('What page will the logout redirect to after logout, if let blank will load front page')] = 'What page will the logout redirect to after logout, if let blank will load front page';
  1303. $TR_STRS[strtolower('Login Message')] = 'Login Message';
  1304. $TR_STRS[strtolower('Show/Hide the javascript Pop-up indicating Login Success')] = 'Show/Hide the javascript Pop-up indicating Login Success';
  1305. $TR_STRS[strtolower('Logout Message')] = 'Logout Message';
  1306. $TR_STRS[strtolower('Show/Hide the javascript Pop-up indicating Logout Success')] = 'Show/Hide the javascript Pop-up indicating Logout Success';
  1307. $TR_STRS[strtolower('Greeting')] = 'Greeting';
  1308. $TR_STRS[strtolower('Show/Hide the simple greeting text')] = 'Show/Hide the simple greeting text';
  1309. $TR_STRS[strtolower('Name/Username')] = 'Name/Username';
  1310. $TR_STRS[strtolower('Username')] = 'Username';
  1311. $TR_STRS[strtolower('Name')] = 'Name';
  1312. $TR_STRS[strtolower('Main Menu')] = 'Main Menu';
  1313. $TR_STRS[strtolower('Menu Class Suffix')] = 'Menu Class Suffix';
  1314. $TR_STRS[strtolower('A suffix to be applied to the css class of the menu items')] = 'A suffix to be applied to the css class of the menu items';
  1315. $TR_STRS[strtolower('Menu Name')] = 'Menu Name';
  1316. $TR_STRS[strtolower("The name of the menu (default is 'mainmenu')")] = "The name of the menu (default is 'mainmenu')";
  1317. $TR_STRS[strtolower('Menu Style')] = 'Menu Style';
  1318. $TR_STRS[strtolower('The menu style')] = 'The menu style';
  1319. $TR_STRS[strtolower('Vertical')] = 'Vertical';
  1320. $TR_STRS[strtolower('Horizontal')] = 'Horizontal';
  1321. $TR_STRS[strtolower('Flat List')] = 'Flat List';
  1322. $TR_STRS[strtolower('Show Menu Icons')] = 'Show Menu Icons';
  1323. $TR_STRS[strtolower('Show the Menu Icons you have selected for your menu items')] = 'Show the Menu Icons you have selected for your menu items';
  1324. $TR_STRS[strtolower('Menu Icon Alignment')] = 'Menu Icon Alignment';
  1325. $TR_STRS[strtolower('Alignment of the Menu Icons')] = 'Alignment of the Menu Icons';
  1326. $TR_STRS[strtolower('Left')] = 'Left';
  1327. $TR_STRS[strtolower('Right')] = 'Right';
  1328. $TR_STRS[strtolower('Expand Menu')] = 'Expand Menu';
  1329. $TR_STRS[strtolower('Expand the menu and make its sub-menus items always visible')] = 'Expand the menu and make its sub-menus items always visible';
  1330. $TR_STRS[strtolower('Indent Image')] = 'Indent Image';
  1331. $TR_STRS[strtolower('Choose which indent image system to utilise')] = 'Choose which indent image system to utilise';
  1332. $TR_STRS[strtolower('Template')] = 'Template';
  1333. $TR_STRS[strtolower('Mambo default images')] = 'Mambo default images';
  1334. $TR_STRS[strtolower('Use params below')] = 'Use params below';
  1335. $TR_STRS[strtolower('None')] = 'None';
  1336. $TR_STRS[strtolower('Indent Image 1')] = 'Indent Image 1';
  1337. $TR_STRS[strtolower('Image for the first sub-level')] = 'Image for the first sub-level';
  1338. $TR_STRS[strtolower('Indent Image 2')] = 'Indent Image 2';
  1339. $TR_STRS[strtolower('Image for the second sub-level')] = 'Image for the second sub-level';
  1340. $TR_STRS[strtolower('Indent Image 3')] = 'Indent Image 3';
  1341. $TR_STRS[strtolower('Image for the third sub-level')] = 'Image for the third sub-level';
  1342. $TR_STRS[strtolower('Indent Image 4')] = 'Indent Image 4';
  1343. $TR_STRS[strtolower('Image for the fourth sub-level')] = 'Image for the fourth sub-level';
  1344. $TR_STRS[strtolower('Indent Image 5')] = 'Indent Image 5';
  1345. $TR_STRS[strtolower('Image for the fifth sub-level')] = 'Image for the fifth sub-level';
  1346. $TR_STRS[strtolower('Indent Image 6')] = 'Indent Image 6';
  1347. $TR_STRS[strtolower('Image for the sixth sub-level')] = 'Image for the sixth sub-level';
  1348. $TR_STRS[strtolower('Spacer')] = 'Spacer';
  1349. $TR_STRS[strtolower('Spacer for Horizontal menu')] = 'Spacer for Horizontal menu';
  1350. $TR_STRS[strtolower('End Spacer')] = 'End Spacer';
  1351. $TR_STRS[strtolower('End Spacer for Horizontal menu')] = 'End Spacer for Horizontal menu';
  1352. $TR_STRS[strtolower('Newsflash')] = 'Newsflash';
  1353. $TR_STRS[strtolower('Category')] = 'Category';
  1354. $TR_STRS[strtolower('A content cateogry')] = 'A content cateogry';
  1355. $TR_STRS[strtolower('Style')] = 'Style';
  1356. $TR_STRS[strtolower('The style to display the category')] = 'The style to display the category';
  1357. $TR_STRS[strtolower('Randomly choose one at a time')] = 'Randomly choose one at a time';
  1358. $TR_STRS[strtolower('Show images')] = 'Show images';
  1359. $TR_STRS[strtolower('Display content item images')] = 'Display content item images';
  1360. $TR_STRS[strtolower('Linked Titles')] = 'Linked Titles';
  1361. $TR_STRS[strtolower('Make the Item titles linkable')] = 'Make the Item titles linkable';
  1362. $TR_STRS[strtolower('Use Global')] = 'Use Global';
  1363. $TR_STRS[strtolower('Read More')] = 'Read More';
  1364. $TR_STRS[strtolower('Show/Hide the Read More button')] = 'Show/Hide the Read More button';
  1365. $TR_STRS[strtolower('Item Title')] = 'Item Title';
  1366. $TR_STRS[strtolower('Show item title')] = 'Show item title';
  1367. $TR_STRS[strtolower('No. of Items')] = 'No. of Items';
  1368. $TR_STRS[strtolower('No of items to display')] = 'No of items to display';
  1369. $TR_STRS[strtolower('Poll')] = 'Poll';
  1370. $TR_STRS[strtolower('Random Image')] = 'Random Image';
  1371. $TR_STRS[strtolower('Image Type')] = 'Image Type';
  1372. $TR_STRS[strtolower('Type of image PNG/GIF/JPG etc. (default is JPG)')] = 'Type of image PNG/GIF/JPG etc. (default is JPG)';
  1373. $TR_STRS[strtolower('Image Folder')] = 'Image Folder';
  1374. $TR_STRS[strtolower('Path to the image folder relative to the site url, eg: images/stories')] = 'Path to the image folder relative to the site url, eg: images/stories';
  1375. $TR_STRS[strtolower('Link')] = 'Link';
  1376. $TR_STRS[strtolower('A URL to redirect to if image is clicked on, eg: http://www.mamboserver.com')] = 'A URL to redirect to if image is clicked on, eg: http://www.mamboserver.com';
  1377. $TR_STRS[strtolower('Width (px)')] = 'Width (px)';
  1378. $TR_STRS[strtolower('Image width (forces all images to be displayed with this width)')] = 'Image width (forces all images to be displayed with this width)';
  1379. $TR_STRS[strtolower('Height (px)')] = 'Height (px)';
  1380. $TR_STRS[strtolower('Image height (forces all images to be displayed with the height)')] = 'Image height (forces all images to be displayed with the height)';
  1381. $TR_STRS[strtolower('Related Items')] = 'Related Items';
  1382. $TR_STRS[strtolower('Text')] = 'Text';
  1383. $TR_STRS[strtolower('Enter the text to be displayed along with the RSS links')] = 'Enter the text to be displayed along with the RSS links';
  1384. $TR_STRS[strtolower('Show/Hide RSS 0.91 Link')] = 'Show/Hide RSS 0.91 Link';
  1385. $TR_STRS[strtolower('Show/Hide RSS 1.0 Link')] = 'Show/Hide RSS 1.0 Link';
  1386. $TR_STRS[strtolower('Show/Hide RSS 2.0 Link')] = 'Show/Hide RSS 2.0 Link';
  1387. $TR_STRS[strtolower('Show/Hide Atom 0.3 Link')] = 'Show/Hide Atom 0.3 Link';
  1388. $TR_STRS[strtolower('Show/Hide OPML Link')] = 'Show/Hide OPML Link';
  1389. $TR_STRS[strtolower('RSS 0.91 Image')] = 'RSS 0.91 Image';
  1390. $TR_STRS[strtolower('Choose the image to be used')] = 'Choose the image to be used';
  1391. $TR_STRS[strtolower('RSS 1.0 Image')] = 'RSS 1.0 Image';
  1392. $TR_STRS[strtolower('RSS 2.0 Image')] = 'RSS 2.0 Image';
  1393. $TR_STRS[strtolower('Atom Image')] = 'Atom Image';
  1394. $TR_STRS[strtolower('OPML Image')] = 'OPML Image';
  1395. $TR_STRS[strtolower('Search Module')] = 'Search Module';
  1396. $TR_STRS[strtolower('Box Width')] = 'Box Width';
  1397. $TR_STRS[strtolower('Size of the search text box')] = 'Size of the search text box';
  1398. $TR_STRS[strtolower('The text that appears in the search text box, if left blank it will load _SEARCH_BOX from your language file')] = 'The text that appears in the search text box, if left blank it will load _SEARCH_BOX from your language file';
  1399. $TR_STRS[strtolower('Search Button')] = 'Search Button';
  1400. $TR_STRS[strtolower('Display a Search Button')] = 'Display a Search Button';
  1401. $TR_STRS[strtolower('Button Position')] = 'Button Position';
  1402. $TR_STRS[strtolower('Position of the button relative to the search box')] = 'Position of the button relative to the search box';
  1403. $TR_STRS[strtolower('Top')] = 'Top';
  1404. $TR_STRS[strtolower('Bottom')] = 'Bottom';
  1405. $TR_STRS[strtolower('Button Text')] = 'Button Text';
  1406. $TR_STRS[strtolower('The text that appears in the search button, if left blank it will load _SEARCH_TITLE from your language file')] = 'The text that appears in the search button, if left blank it will load _SEARCH_TITLE from your language file';
  1407. $TR_STRS[strtolower('Sections')] = 'Sections';
  1408. $TR_STRS[strtolower('Statistics')] = 'Statistics';
  1409. $TR_STRS[strtolower('Server Info')] = 'Server Info';
  1410. $TR_STRS[strtolower('Display server information')] = 'Display server information';
  1411. $TR_STRS[strtolower('Site Info')] = 'Site Info';
  1412. $TR_STRS[strtolower('Display site information')] = 'Display site information';
  1413. $TR_STRS[strtolower('Hit Counter')] = 'Hit Counter';
  1414. $TR_STRS[strtolower('Display hit counter')] = 'Display hit counter';
  1415. $TR_STRS[strtolower('Increase counter')] = 'Increase counter';
  1416. $TR_STRS[strtolower('Enter the amount of hits to increase counter by')] = 'Enter the amount of hits to increase counter by';
  1417. $TR_STRS[strtolower('Template Chooser')] = 'Template Chooser';
  1418. $TR_STRS[strtolower('Max. Name Length')] = 'Max. Name Length';
  1419. $TR_STRS[strtolower('This is the maximum length of the template name to display (default 20)')] = 'This is the maximum length of the template name to display (default 20)';
  1420. $TR_STRS[strtolower('Show Preview')] = 'Show Preview';
  1421. $TR_STRS[strtolower('Template preview is to be shown')] = 'Template preview is to be shown';
  1422. $TR_STRS[strtolower('This is the width of the preview image (default 140)')] = 'This is the width of the preview image (default 140)';
  1423. $TR_STRS[strtolower('This is the height of the preview image (default 90)')] = 'This is the height of the preview image (default 90)';
  1424. $TR_STRS[strtolower("Who's Online")] = "Who's Online";
  1425. $TR_STRS[strtolower('Display')] = 'Display';
  1426. $TR_STRS[strtolower('Select what shall be shown')] = 'Select what shall be shown';
  1427. $TR_STRS[strtolower('# of Guests/Members<br>')] = '# of Guests/Members<br>';
  1428. $TR_STRS[strtolower('Member Names<br>')] = 'Member Names<br>';
  1429. $TR_STRS[strtolower('Wrapper Module')] = 'Wrapper Module';
  1430. $TR_STRS[strtolower('Url')] = 'Url';
  1431. $TR_STRS[strtolower('Url to site/file you wish to display within the Iframe')] = 'Url to site/file you wish to display within the Iframe';
  1432. $TR_STRS[strtolower('Scroll Bars')] = 'Scroll Bars';
  1433. $TR_STRS[strtolower('Show/Hide Horizontal & Vertical scroll bars.')] = 'Show/Hide Horizontal & Vertical scroll bars.';
  1434. $TR_STRS[strtolower('Auto')] = 'Auto';
  1435. $TR_STRS[strtolower('Width of the IFrame Window, you can enter an absolute figure in pixels, or a relative figure by adding a %')] = 'Width of the IFrame Window, you can enter an absolute figure in pixels, or a relative figure by adding a %';
  1436. $TR_STRS[strtolower('Height of the IFrame Window')] = 'Height of the IFrame Window';
  1437. $TR_STRS[strtolower('Auto Height')] = 'Auto Height';
  1438. $TR_STRS[strtolower('The height will automatically be set to the size of the external page. This will only work for pages on your own domain.')] = 'The height will automatically be set to the size of the external page. This will only work for pages on your own domain.';
  1439. $TR_STRS[strtolower('Auto Add')] = 'Auto Add';
  1440. $TR_STRS[strtolower('By default http:// will be added unless it detects http:// or https:// in the url link you provide, this allow you to switch this ability off')] = 'By default http:// will be added unless it detects http:// or https:// in the url link you provide, this allow you to switch this ability off';
  1441. $TR_STRS[strtolower('Search')] = 'Search';
  1442. $TR_STRS[strtolower('User Menu')] = 'User Menu';
  1443. $TR_STRS[strtolower('Top Menu')] = 'Top Menu';
  1444. $TR_STRS[strtolower('Other Menu')] = 'Other Menu';
  1445. $TR_STRS[strtolower('Wrapper')] = 'Wrapper';
  1446. $TR_STRS[strtolower('Popular')] = 'Popular';
  1447. $TR_STRS[strtolower('RSS URL')] = 'RSS URL';
  1448. $TR_STRS[strtolower('Enter the URL of the RSS/RDF feed')] = 'Enter the URL of the RSS/RDF feed';
  1449. $TR_STRS[strtolower('Feed Description')] = 'Feed Description';
  1450. $TR_STRS[strtolower('Show the description text for the whole Feed')] = 'Show the description text for the whole Feed';
  1451. $TR_STRS[strtolower('Feed Image')] = 'Feed Image';
  1452. $TR_STRS[strtolower('Show the image associated with the whole Feed')] = 'Show the image associated with the whole Feed';
  1453. $TR_STRS[strtolower('Items')] = 'Items';
  1454. $TR_STRS[strtolower('Enter number of RSS items to display')] = 'Enter number of RSS items to display';
  1455. $TR_STRS[strtolower('Item Description')] = 'Item Description';
  1456. $TR_STRS[strtolower('Show the description or intro text of individual news items')] = 'Show the description or intro text of individual news items';
  1457. //administrator/modules XML file
  1458. $TR_STRS[strtolower('Logged')] = 'Logged';
  1459. $TR_STRS[strtolower('Logged in Users')] = 'Logged in Users';
  1460. $TR_STRS[strtolower('Components')] = 'Components';
  1461. $TR_STRS[strtolower('Popular Items')] = 'Popular Items';
  1462. $TR_STRS[strtolower('Latest Items')] = 'Latest Items';
  1463. $TR_STRS[strtolower('Menu Stats')] = 'Menu Stats';
  1464. $TR_STRS[strtolower('Unread Messages')] = 'Unread Messages';
  1465. $TR_STRS[strtolower('Online Users')] = 'Online Users';
  1466. $TR_STRS[strtolower('Quick Icons')] = 'Quick Icons';
  1467. $TR_STRS[strtolower('System Message')] = 'System Message';
  1468. $TR_STRS[strtolower('Pathway')] = 'Pathway';
  1469. $TR_STRS[strtolower('Toolbar')] = 'Toolbar';
  1470. $TR_STRS[strtolower('Full Menu')] = 'Full Menu';
  1471. //mambots XML file
  1472. $TR_STRS[strtolower('MOS Image')] = 'MOS Image';
  1473. $TR_STRS[strtolower('Legacy Mambot Includer')] = 'Legacy Mambot Includer';
  1474. $TR_STRS[strtolower('Code support')] = 'Code support';
  1475. $TR_STRS[strtolower('SEF')] = 'SEF';
  1476. $TR_STRS[strtolower('MOS Rating')] = 'MOS Rating';
  1477. $TR_STRS[strtolower('Email Cloaking')] = 'Email Cloaking';
  1478. $TR_STRS[strtolower('GeSHi')] = 'GeSHi';
  1479. $TR_STRS[strtolower('Load Module Positions')] = 'Load Module Positions';
  1480. $TR_STRS[strtolower('MOS Pagination')] = 'MOS Pagination';
  1481. $TR_STRS[strtolower('No WYSIWYG Editor')] = 'No WYSIWYG Editor';
  1482. $TR_STRS[strtolower('TinyMCE WYSIWYG Editor')] = 'TinyMCE WYSIWYG Editor';
  1483. $TR_STRS[strtolower('MOS Image Editor Button')] = 'MOS Image Editor Button';
  1484. $TR_STRS[strtolower('MOS Pagebreak Editor Button')] = 'MOS Pagebreak Editor Button';
  1485. $TR_STRS[strtolower('Search Content')] = 'Search Content';
  1486. $TR_STRS[strtolower('Search Weblinks')] = 'Search Weblinks';
  1487. $TR_STRS[strtolower('Search Contacts')] = 'Search Contacts';
  1488. $TR_STRS[strtolower('Search Categories')] = 'Search Categories';
  1489. $TR_STRS[strtolower('Search Sections')] = 'Search Sections';
  1490. $TR_STRS[strtolower('Search Newsfeeds')] = 'Search Newsfeeds';
  1491. $TR_STRS[strtolower('Mode')] = 'Mode';
  1492. $TR_STRS[strtolower('Select how the emails will be displayed')] = 'Select how the emails will be displayed';
  1493. $TR_STRS[strtolower('Nonlinkable Text')] = 'Nonlinkable Text';
  1494. $TR_STRS[strtolower('As linkable mailto address')] = 'As linkable mailto address';
  1495. $TR_STRS[strtolower('Margin')] = 'Margin';
  1496. $TR_STRS[strtolower('Margin in px, of Div surrounding Image & Caption - only applies if using a Caption')] = 'Margin in px, of Div surrounding Image & Caption - only applies if using a Caption';
  1497. $TR_STRS[strtolower('Padding')] = 'Padding';
  1498. $TR_STRS[strtolower('Padding in px, of Div surrounding Image & Caption - only applies if using a Caption')] = 'Padding in px, of Div surrounding Image & Caption - only applies if using a Caption';
  1499. $TR_STRS[strtolower('Wrapped by Table - Column')] = 'Wrapped by Table - Column';
  1500. $TR_STRS[strtolower('Wrapped by Table - Horizontal')] = 'Wrapped by Table - Horizontal';
  1501. $TR_STRS[strtolower('Wrapped by Divs')] = 'Wrapped by Divs';
  1502. $TR_STRS[strtolower('No wrapping - raw output')] = 'No wrapping - raw output';
  1503. $TR_STRS[strtolower('Site Title')] = 'Site Title';
  1504. $TR_STRS[strtolower('title and heading attibutes from mambot added to Site Title tag')] = 'title and heading attibutes from mambot added to Site Title tag';
  1505. $TR_STRS[strtolower('Functionality')] = 'Functionality';
  1506. $TR_STRS[strtolower('Select functionality')] = 'Select functionality';
  1507. $TR_STRS[strtolower('Basic')] = 'Basic';
  1508. $TR_STRS[strtolower('Advanced')] = 'Advanced';
  1509. $TR_STRS[strtolower('Text Direction')] = 'Text Direction';
  1510. $TR_STRS[strtolower('Ability to change text direction')] = 'Ability to change text direction';
  1511. $TR_STRS[strtolower('Left to Right')] = 'Left to Right';
  1512. $TR_STRS[strtolower('Right to Left')] = 'Right to Left';
  1513. $TR_STRS[strtolower('Prohibited Elements')] = 'Prohibited Elements';
  1514. $TR_STRS[strtolower('Elements that will be cleaned from the text')] = 'Elements that will be cleaned from the text';
  1515. $TR_STRS[strtolower('Template CSS classes')] = 'Template CSS classes';
  1516. $TR_STRS[strtolower('Load CSS classes from template_css.css')] = 'Load CSS classes from template_css.css';
  1517. $TR_STRS[strtolower('Custom CSS Classes')] = 'Custom CSS Classes';
  1518. $TR_STRS[strtolower('You can specify the loading of a custom CSS file - simply enter the FULL path to the css file you want loaded')] = 'You can specify the loading of a custom CSS file - simply enter the FULL path to the css file you want loaded';
  1519. $TR_STRS[strtolower('Newlines')] = 'Newlines';
  1520. $TR_STRS[strtolower('Newlines will be made into the selected option')] = 'Newlines will be made into the selected option';
  1521. $TR_STRS[strtolower('BR Elements')] = 'BR Elements';
  1522. $TR_STRS[strtolower('P Elements')] = 'P Elements';
  1523. $TR_STRS[strtolower('Position of the toolbar')] = 'Position of the toolbar';
  1524. $TR_STRS[strtolower('Popup Height')] = 'Popup Height';
  1525. $TR_STRS[strtolower('Height of HTML mode pop-up window - only in Advanced Mode')] = 'Height of HTML mode pop-up window - only in Advanced Mode';
  1526. $TR_STRS[strtolower('Popup Width')] = 'Popup Width';
  1527. $TR_STRS[strtolower('Width of HTML mode pop-up window - only in Advanced Mode')] = 'Width of HTML mode pop-up window - only in Advanced Mode';
  1528. //administrator/components/com_contact/contact.xml
  1529. $TR_STRS[strtolower('Contact')] = 'Contact';
  1530. $TR_STRS[strtolower('This component shows a listing of Contact Information')] = 'This component shows a listing of Contact Information';
  1531. $TR_STRS[strtolower('Page Title')] = 'Page Title';
  1532. $TR_STRS[strtolower('Show/Hide the pages Title')] = 'Show/Hide the pages Title';
  1533. $TR_STRS[strtolower('Text to display at the top of the page. If left blank, the Menu name will be used instead')] = 'Text to display at the top of the page. If left blank, the Menu name will be used instead';
  1534. $TR_STRS[strtolower('Category List - Category')] = 'Category List - Category';
  1535. $TR_STRS[strtolower('Show/Hide the List of Categories in Table view page')] = 'Show/Hide the List of Categories in Table view page';
  1536. $TR_STRS[strtolower('Category Description')] = 'Category Description';
  1537. $TR_STRS[strtolower('Show/Hide the Description for the list of other catgeories')] = 'Show/Hide the Description for the list of other catgeories';
  1538. $TR_STRS[strtolower('# Category Items')] = '# Category Items';
  1539. $TR_STRS[strtolower('Show/Hide the number of items in each category')] = 'Show/Hide the number of items in each category';
  1540. $TR_STRS[strtolower('Show/Hide the Description below')] = 'Show/Hide the Description below';
  1541. $TR_STRS[strtolower('Description for page, if left blank it will load _WEBLINKS_DESC from your language file')] = 'Description for page, if left blank it will load _WEBLINKS_DESC from your language file';
  1542. $TR_STRS[strtolower('Image for page, must be located in the /images/stories folder. Default will load web_links.jpg, No image will mean an image is not loaded')] = 'Image for page, must be located in the /images/stories folder. Default will load web_links.jpg, No image will mean an image is not loaded';
  1543. $TR_STRS[strtolower('Image Align')] = 'Image Align';
  1544. $TR_STRS[strtolower('Alignment of the image')] = 'Alignment of the image';
  1545. $TR_STRS[strtolower('Table Headings')] = 'Table Headings';
  1546. $TR_STRS[strtolower('Show/Hide the Table Headings')] = 'Show/Hide the Table Headings';
  1547. $TR_STRS[strtolower('Position Column')] = 'Position Column';
  1548. $TR_STRS[strtolower('Show/Hide the Position column')] = 'Show/Hide the Position column';
  1549. $TR_STRS[strtolower('Email Column')] = 'Email Column';
  1550. $TR_STRS[strtolower('Show/Hide the Email column')] = 'Show/Hide the Email column';
  1551. $TR_STRS[strtolower('Telephone Column')] = 'Telephone Column';
  1552. $TR_STRS[strtolower('Show/Hide the Telephone column')] = 'Show/Hide the Telephone column';
  1553. $TR_STRS[strtolower('Fax Column')] = 'Fax Column';
  1554. $TR_STRS[strtolower('Show/Hide the Fax column')] = 'Show/Hide the Fax column';
  1555. //administrator/components/com_contact/contact_items.xml
  1556. $TR_STRS[strtolower('Contact Items')] = 'Contact Items';
  1557. $TR_STRS[strtolower('Parameters for individual Contact Items')] = 'Parameters for individual Contact Items';
  1558. $TR_STRS[strtolower('Menu Image')] = 'Menu Image';
  1559. $TR_STRS[strtolower('A small image to be placed to the left or right of your menu item, images must be in images/stories/')] = 'A small image to be placed to the left or right of your menu item, images must be in images/stories/';
  1560. $TR_STRS[strtolower('Page Class Suffix')] = 'Page Class Suffix';
  1561. $TR_STRS[strtolower('A suffix to be applied to the css classes of the page, this allows individual page styling')] = 'A suffix to be applied to the css classes of the page, this allows individual page styling';
  1562. $TR_STRS[strtolower('Print Icon')] = 'Print Icon';
  1563. $TR_STRS[strtolower('Show/Hide the item print button - only affects this page')] = 'Show/Hide the item print button - only affects this page';
  1564. $TR_STRS[strtolower('Back Button')] = 'Back Button';
  1565. $TR_STRS[strtolower('Show/Hide a Back Button, that returns you to the previously view page')] = 'Show/Hide a Back Button, that returns you to the previously view page';
  1566. $TR_STRS[strtolower('Name')] = 'Name';
  1567. $TR_STRS[strtolower('Show/Hide the name info')] = 'Show/Hide the name info';
  1568. $TR_STRS[strtolower('Position')] = 'Position';
  1569. $TR_STRS[strtolower('Show/Hide the position info')] = 'Show/Hide the position info';
  1570. $TR_STRS[strtolower('Email')] = 'Email';
  1571. $TR_STRS[strtolower('Show/Hide the email info, if you set to show the address will be protected from spambots by javascript cloaking')] = 'Show/Hide the email info, if you set to show the address will be protected from spambots by javascript cloaking';
  1572. $TR_STRS[strtolower('Street Address')] = 'Street Address';
  1573. $TR_STRS[strtolower('Show/Hide the street address info')] = 'Show/Hide the street address info';
  1574. $TR_STRS[strtolower('Town/Suburb')] = 'Town/Suburb';
  1575. $TR_STRS[strtolower('Show/Hide the suburb info')] = 'Show/Hide the suburb info';
  1576. $TR_STRS[strtolower('State')] = 'State';
  1577. $TR_STRS[strtolower('Show/Hide the state info')] = 'Show/Hide the state info';
  1578. $TR_STRS[strtolower('Country')] = 'Country';
  1579. $TR_STRS[strtolower('Show/Hide the country info')] = 'Show/Hide the country info';
  1580. $TR_STRS[strtolower('Post/Zip Code')] = 'Post/Zip Code';
  1581. $TR_STRS[strtolower('Show/Hide the post code info')] = 'Show/Hide the post code info';
  1582. $TR_STRS[strtolower('Telephone')] = 'Telephone';
  1583. $TR_STRS[strtolower('Show/Hide the telephone info')] = 'Show/Hide the telephone info';
  1584. $TR_STRS[strtolower('Fax')] = 'Fax';
  1585. $TR_STRS[strtolower('Show/Hide the fax info')] = 'Show/Hide the fax info';
  1586. $TR_STRS[strtolower('Misc Info')] = 'Misc Info';
  1587. $TR_STRS[strtolower('Show/Hide the misc info')] = 'Show/Hide the misc info';
  1588. $TR_STRS[strtolower('Vcard')] = 'Vcard';
  1589. $TR_STRS[strtolower('Show/Hide the Vcard')] = 'Show/Hide the Vcard';
  1590. $TR_STRS[strtolower('Image')] = 'Image';
  1591. $TR_STRS[strtolower('Show/Hide the image')] = 'Show/Hide the image';
  1592. $TR_STRS[strtolower('Email description')] = 'Email description';
  1593. $TR_STRS[strtolower('Show/Hide the Description Text below')] = 'Show/Hide the Description Text below';
  1594. $TR_STRS[strtolower('Description text')] = 'Description text';
  1595. $TR_STRS[strtolower('The Description text for the Email form, if left blank it will use the _EMAIL_DESCRIPTION language definition')] = 'The Description text for the Email form, if left blank it will use the _EMAIL_DESCRIPTION language definition';
  1596. $TR_STRS[strtolower('Email Form')] = 'Email Form';
  1597. $TR_STRS[strtolower('Show/Hide the email to form')] = 'Show/Hide the email to form';
  1598. $TR_STRS[strtolower('Email Copy')] = 'Email Copy';
  1599. $TR_STRS[strtolower('Show/Hide the checkbox to email a copy to the senders address')] = 'Show/Hide the checkbox to email a copy to the senders address';
  1600. $TR_STRS[strtolower('Drop Down')] = 'Drop Down';
  1601. $TR_STRS[strtolower('Show/Hide the Drop Down select list in Contact view')] = 'Show/Hide the Drop Down select list in Contact view';
  1602. $TR_STRS[strtolower('Icons/text')] = 'Icons/text';
  1603. $TR_STRS[strtolower('Use Icons, text or nothing next to the contact information displayed')] = 'Use Icons, text or nothing next to the contact information displayed';
  1604. $TR_STRS[strtolower('Icons')] = 'Icons';
  1605. $TR_STRS[strtolower('Address Icon')] = 'Address Icon';
  1606. $TR_STRS[strtolower('Icon for the Address info')] = 'Icon for the Address info';
  1607. $TR_STRS[strtolower('Email Icon')] = 'Email Icon';
  1608. $TR_STRS[strtolower('Icon for the Email info')] = 'Icon for the Email info';
  1609. $TR_STRS[strtolower('Telephone Icon')] = 'Telephone Icon';
  1610. $TR_STRS[strtolower('Icon for the Telephone info')] = 'Icon for the Telephone info';
  1611. $TR_STRS[strtolower('Fax Icon')] = 'Fax Icon';
  1612. $TR_STRS[strtolower('Icon for the Fax info')] = 'Icon for the Fax info';
  1613. $TR_STRS[strtolower('Misc Icon')] = 'Misc Icon';
  1614. $TR_STRS[strtolower('Icon for the Misc info')] = 'Icon for the Misc info';
  1615. //administrator/components/com_content XML files
  1616. $TR_STRS[strtolower('Content Page')] = 'Content Page';
  1617. $TR_STRS[strtolower('This shows a single content page')] = 'This shows a single content page';
  1618. $TR_STRS[strtolower('Item Title')] = 'Item Title';
  1619. $TR_STRS[strtolower('Show/Hide the items title')] = 'Show/Hide the items title';
  1620. $TR_STRS[strtolower('Make your Item titles linkable')] = 'Make your Item titles linkable';
  1621. $TR_STRS[strtolower('Intro Text')] = 'Intro Text';
  1622. $TR_STRS[strtolower('Show/Hide the intro text')] = 'Show/Hide the intro text';
  1623. $TR_STRS[strtolower('Section Name')] = 'Section Name';
  1624. $TR_STRS[strtolower('Show/Hide the Section the item belongs to')] = 'Show/Hide the Section the item belongs to';
  1625. $TR_STRS[strtolower('Section Name Linkable')] = 'Section Name Linkable';
  1626. $TR_STRS[strtolower('Make the Section text a link to the actual section page')] = 'Make the Section text a link to the actual section page';
  1627. $TR_STRS[strtolower('Category Name')] = 'Category Name';
  1628. $TR_STRS[strtolower('Show/Hide the Category the item belongs to')] = 'Show/Hide the Category the item belongs to';
  1629. $TR_STRS[strtolower('Category Name Linkable')] = 'Category Name Linkable';
  1630. $TR_STRS[strtolower('Make the Category text a link to the actual Category page')] = 'Make the Category text a link to the actual Category page';
  1631. $TR_STRS[strtolower('Item Rating')] = 'Item Rating';
  1632. $TR_STRS[strtolower('Show/Hide the item rating - only affects this page')] = 'Show/Hide the item rating - only affects this page';
  1633. $TR_STRS[strtolower('Author Names')] = 'Author Names';
  1634. $TR_STRS[strtolower('Show/Hide the item author - only affects this page')] = 'Show/Hide the item author - only affects this page';
  1635. $TR_STRS[strtolower('Created Date and Time')] = 'Created Date and Time';
  1636. $TR_STRS[strtolower('Show/Hide the item creation date - only affects this page')] = 'Show/Hide the item creation date - only affects this page';
  1637. $TR_STRS[strtolower('Modified Date and Time')] = 'Modified Date and Time';
  1638. $TR_STRS[strtolower('Show/Hide the item modification date - only affects this page')] = 'Show/Hide the item modification date - only affects this page';
  1639. $TR_STRS[strtolower('Show/Hide the item pdf button - only affects this page')] = 'Show/Hide the item pdf button - only affects this page';
  1640. $TR_STRS[strtolower('Show/Hide the item email button - only affects this page')] = 'Show/Hide the item email button - only affects this page';
  1641. $TR_STRS[strtolower('Key Reference')] = 'Key Reference';
  1642. $TR_STRS[strtolower('A text key that an item may be referenced by (like a help reference)')] = 'A text key that an item may be referenced by (like a help reference)';
  1643. //administrator/components/com_frontpage/frontpage.xml
  1644. $TR_STRS[strtolower('Frontpage')] = 'Frontpage';
  1645. $TR_STRS[strtolower('This component shows all the published content items from your site marked Show on Frontpage.')] = 'This component shows all the published content items from your site marked Show on Frontpage.';
  1646. $TR_STRS[strtolower('Text to display at the top of the page')] = 'Text to display at the top of the page';
  1647. $TR_STRS[strtolower('Show/Hide the Page title')] = 'Show/Hide the Page title';
  1648. $TR_STRS[strtolower('# Leading')] = '# Leading';
  1649. $TR_STRS[strtolower('Number of Items to display as a leading (full width) item. 0 will mean that no items will be displayed as leading.')] = 'Number of Items to display as a leading (full width) item. 0 will mean that no items will be displayed as leading.';
  1650. $TR_STRS[strtolower('# Intro')] = '# Intro';
  1651. $TR_STRS[strtolower('Number of Items to display with the introduction text shown.')] = 'Number of Items to display with the introduction text shown.';
  1652. $TR_STRS[strtolower('Columns')] = 'Columns';
  1653. $TR_STRS[strtolower('When displaying the intro text, how many columns to use per row')] = 'When displaying the intro text, how many columns to use per row';
  1654. $TR_STRS[strtolower('# Links')] = '# Links';
  1655. $TR_STRS[strtolower('Number of Items to display as Links.')] = 'Number of Items to display as Links.';
  1656. $TR_STRS[strtolower('Items Order')] = 'Items Order';
  1657. $TR_STRS[strtolower('Order that the items will be displayed in.')] = 'Order that the items will be displayed in.';
  1658. $TR_STRS[strtolower('Pagination')] = 'Pagination';
  1659. $TR_STRS[strtolower('Show/Hide Pagination support')] = 'Show/Hide Pagination support';
  1660. $TR_STRS[strtolower('Pagination Results')] = 'Pagination Results';
  1661. $TR_STRS[strtolower('Show/Hide Pagination Results info ( e.g 1-4 of 4 )')] = 'Show/Hide Pagination Results info ( e.g 1-4 of 4 )';
  1662. $TR_STRS[strtolower('Item Titles')] = 'Item Titles';
  1663. $TR_STRS[strtolower('Show/Hide the Read More link')] = 'Show/Hide the Read More link';
  1664. $TR_STRS[strtolower('PDF Icon')] = 'PDF Icon';
  1665. //administrator/components/com_login/login.xml
  1666. $TR_STRS[strtolower('Login Page Title')] = 'Login Page Title';
  1667. $TR_STRS[strtolower('Login JS Message')] = 'Login JS Message';
  1668. $TR_STRS[strtolower('Login Description')] = 'Login Description';
  1669. $TR_STRS[strtolower('Show/Hide the Login Description below')] = 'Show/Hide the Login Description below';
  1670. $TR_STRS[strtolower('Login Description Text')] = 'Login Description Text';
  1671. $TR_STRS[strtolower('Text to display on the login Page, if left blank _LOGIN_DESCRIPTION will be used')] = 'Text to display on the login Page, if left blank _LOGIN_DESCRIPTION will be used';
  1672. $TR_STRS[strtolower('Login Image')] = 'Login Image';
  1673. $TR_STRS[strtolower('Image for the Login Page')] = 'Image for the Login Page';
  1674. $TR_STRS[strtolower('Login Image Align')] = 'Login Image Align';
  1675. $TR_STRS[strtolower('Alignment for Login Image')] = 'Alignment for Login Image';
  1676. $TR_STRS[strtolower('Logout Page Title')] = 'Logout Page Title';
  1677. $TR_STRS[strtolower('What page will be redirected to after logout, if let blank will load front page')] = 'What page will be redirected to after logout, if let blank will load front page';
  1678. $TR_STRS[strtolower('Logout JS Message')] = 'Logout JS Message';
  1679. $TR_STRS[strtolower('Logout Description')] = 'Logout Description';
  1680. $TR_STRS[strtolower('Show/Hide the Logout Description below')] = 'Show/Hide the Logout Description below';
  1681. $TR_STRS[strtolower('Logout Description Text')] = 'Logout Description Text';
  1682. $TR_STRS[strtolower('Text to display on the logout Page, if left blank _LOGOUT_DESCRIPTION will be used')] = 'Text to display on the logout Page, if left blank _LOGOUT_DESCRIPTION will be used';
  1683. $TR_STRS[strtolower('Logout Image')] = 'Logout Image';
  1684. $TR_STRS[strtolower('Image for the Logout Page')] = 'Image for the Logout Page';
  1685. $TR_STRS[strtolower('Logout Image Align')] = 'Logout Image Align';
  1686. $TR_STRS[strtolower('Alignment for Logout Image')] = 'Alignment for Logout Image';
  1687. //administrator/components/com_newsfeeds/newsfeeds.xml
  1688. $TR_STRS[strtolower('Newsfeeds')] = 'Newsfeeds';
  1689. $TR_STRS[strtolower('This component manages RSS/RDF newsfeeds')] = 'This component manages RSS/RDF newsfeeds';
  1690. $TR_STRS[strtolower('Name Column')] = 'Name Column';
  1691. $TR_STRS[strtolower('Show/Hide the Feed Name column')] = 'Show/Hide the Feed Name column';
  1692. $TR_STRS[strtolower('# Articles Column')] = '# Articles Column';
  1693. $TR_STRS[strtolower('Show/Hide the # of articles in the feed')] = 'Show/Hide the # of articles in the feed';
  1694. $TR_STRS[strtolower('Link Column')] = 'Link Column';
  1695. $TR_STRS[strtolower('Show/Hide the Feed Link column')] = 'Show/Hide the Feed Link column';
  1696. $TR_STRS[strtolower('Show/Hide the image of the feed')] = 'Show/Hide the image of the feed';
  1697. $TR_STRS[strtolower('Show/Hide the description text of the feed')] = 'Show/Hide the description text of the feed';
  1698. $TR_STRS[strtolower('Show/Hide the description or intro text of an item')] = 'Show/Hide the description or intro text of an item';
  1699. //administrator/components/com_syndicate XML files
  1700. $TR_STRS[strtolower('Syndicate')] = 'Syndicate';
  1701. $TR_STRS[strtolower('This component controls the Syndication settings')] = 'This component controls the Syndication settings';
  1702. $TR_STRS[strtolower('Cache')] = 'Cache';
  1703. $TR_STRS[strtolower('Cache the feed files')] = 'Cache the feed files';
  1704. $TR_STRS[strtolower('Cache Time')] = 'Cache Time';
  1705. $TR_STRS[strtolower('Cache file will refresh every x seconds')] = 'Cache file will refresh every x seconds';
  1706. $TR_STRS[strtolower('# Items')] = '# Items';
  1707. $TR_STRS[strtolower('Number of Items to syndicate')] = 'Number of Items to syndicate';
  1708. $TR_STRS[strtolower('Title')] = 'Title';
  1709. $TR_STRS[strtolower('Syndication Title')] = 'Syndication Title';
  1710. $TR_STRS[strtolower('Description')] = 'Description';
  1711. $TR_STRS[strtolower('Syndication Description')] = 'Syndication Description';
  1712. $TR_STRS[strtolower('Image to be included in feed')] = 'Image to be included in feed';
  1713. $TR_STRS[strtolower('Image Alt')] = 'Image Alt';
  1714. $TR_STRS[strtolower('Alt text for image')] = 'Alt text for image';
  1715. $TR_STRS[strtolower('Limit Text')] = 'Limit Text';
  1716. $TR_STRS[strtolower('Limit the article text to the value indicated below')] = 'Limit the article text to the value indicated below';
  1717. $TR_STRS[strtolower('Text Length')] = 'Text Length';
  1718. $TR_STRS[strtolower('The word length of the article text - 0 will show no text')] = 'The word length of the article text - 0 will show no text';
  1719. $TR_STRS[strtolower('Order')] = 'Order';
  1720. $TR_STRS[strtolower('Order that the items will be displayed')] = 'Order that the items will be displayed';
  1721. $TR_STRS[strtolower('Default')] = 'Default';
  1722. $TR_STRS[strtolower('Frontpage Ordering')] = 'Frontpage Ordering';
  1723. $TR_STRS[strtolower('Oldest first')] = 'Oldest first';
  1724. $TR_STRS[strtolower('Most recent first')] = 'Most recent first';
  1725. $TR_STRS[strtolower('Title Alphabetical')] = 'Title Alphabetical';
  1726. $TR_STRS[strtolower('Title Reverse-Alphabetical')] = 'Title Reverse-Alphabetical';
  1727. $TR_STRS[strtolower('Author Alphabetical')] = 'Author Alphabetical';
  1728. $TR_STRS[strtolower('Author Reverse-Alphabetical')] = 'Author Reverse-Alphabetical';
  1729. $TR_STRS[strtolower('Most Hits')] = 'Most Hits';
  1730. $TR_STRS[strtolower('Least Hits')] = 'Least Hits';
  1731. $TR_STRS[strtolower('Ordering')] = 'Ordering';
  1732. $TR_STRS[strtolower('Live Bookmarks')] = 'Live Bookmarks';
  1733. $TR_STRS[strtolower('Activate support for Firefox Live Bookmarks functionality')] = 'Activate support for Firefox Live Bookmarks functionality';
  1734. $TR_STRS[strtolower('Off')] = 'Off';
  1735. $TR_STRS[strtolower('RSS 0.91')] = 'RSS 0.91';
  1736. $TR_STRS[strtolower('RSS 1.0')] = 'RSS 1.0';
  1737. $TR_STRS[strtolower('RSS 2.0')] = 'RSS 2.0';
  1738. $TR_STRS[strtolower('ATOM 0.3')] = 'ATOM 0.3';
  1739. $TR_STRS[strtolower('Bookmark file')] = 'Bookmark file';
  1740. $TR_STRS[strtolower('Special file name, if empty the default will be used.')] = 'Special file name, if empty the default will be used.';
  1741. //administrator/components/com_weblinks/weblinks.xml
  1742. $TR_STRS[strtolower('Hits')] = 'Hits';
  1743. $TR_STRS[strtolower('Show/Hide the Hits column')] = 'Show/Hide the Hits column';
  1744. $TR_STRS[strtolower('Link Descriptions')] = 'Link Descriptions';
  1745. $TR_STRS[strtolower('Show/Hide the Description text of the Links')] = 'Show/Hide the Description text of the Links';
  1746. $TR_STRS[strtolower('Icon')] = 'Icon';
  1747. $TR_STRS[strtolower('Icon to be used to the left of the url links in Table view')] = 'Icon to be used to the left of the url links in Table view';
  1748. //administrator/components/com_weblinks/weblinks_item.xml
  1749. $TR_STRS[strtolower('This component shows a listing of Weblinks')] = 'This component shows a listing of Weblinks';
  1750. $TR_STRS[strtolower('Target')] = 'Target';
  1751. $TR_STRS[strtolower('Target window when the link is clicked')] = 'Target window when the link is clicked';
  1752. $TR_STRS[strtolower('Parent Window With Browser Navigation')] = 'Parent Window With Browser Navigation';
  1753. $TR_STRS[strtolower('New Window With Browser Navigation')] = 'New Window With Browser Navigation';
  1754. $TR_STRS[strtolower('New Window Without Browser Navigation')] = 'New Window Without Browser Navigation';
  1755. //administrator/components/com_menus/contact_category_table/contact_category_table.xml
  1756. $TR_STRS[strtolower('Other Categories')] = 'Other Categories';
  1757. $TR_STRS[strtolower('When viewing a Category, Show/Hide the list of other Categories')] = 'When viewing a Category, Show/Hide the list of other Categories';
  1758. //administrator/components/com_menus/content_blog_category/content_blog_category.xml
  1759. $TR_STRS[strtolower('Show/Hide the Category Description')] = 'Show/Hide the Category Description';
  1760. $TR_STRS[strtolower('Description Image')] = 'Dscription Image';
  1761. $TR_STRS[strtolower('Show/Hide image of the Category Description')] = 'Show/Hide image of the Category Description';
  1762. //administrator/components/com_menus/content_blog_section/content_blog_section.xml
  1763. $TR_STRS[strtolower('Show/Hide the Section Description')] = 'Show/Hide the Section Description';
  1764. $TR_STRS[strtolower('Show/Hide image of the Section Description')] = 'Show/Hide image of the Section Description';
  1765. $TR_STRS[strtolower('Category List')] = 'Category List';
  1766. $TR_STRS[strtolower('Show/Hide the category list of section')] = 'Show/Hide the category list of section';
  1767. $TR_STRS[strtolower('Category Item Count')] = 'Category Item Count';
  1768. $TR_STRS[strtolower('Show/Hide the item count of category')] = 'Show/Hide the item count of category';
  1769. $TR_STRS[strtolower('Categories per Row')] = 'Categories per Row';
  1770. $TR_STRS[strtolower('Number of categories to display per row')] = 'Number of categories to display per row';
  1771. //administrator/components/com_menus/content_category/content_category.xml
  1772. $TR_STRS[strtolower('Table - Content Category')] = 'Table - Content Category';
  1773. $TR_STRS[strtolower('Shows a Table view of Content items for a particular Category')] = 'Shows a Table view of Content items for a particular Category';
  1774. $TR_STRS[strtolower('Date Format')] = 'Date Format';
  1775. $TR_STRS[strtolower('The format of the date displayed, using PHPs strftime Command Format - if left blank it will load the format from your language file')] = 'The format of the date displayed, using PHPs strftime Command Format - if left blank it will load the format from your language file';
  1776. $TR_STRS[strtolower('Date Column')] = 'Date Column';
  1777. $TR_STRS[strtolower('Show/Hide the Date column')] = 'Show/Hide the Date column';
  1778. $TR_STRS[strtolower('Author Column')] = 'Author Column';
  1779. $TR_STRS[strtolower('Show/Hide the Author column')] = 'Show/Hide the Author column';
  1780. $TR_STRS[strtolower('Hits Column')] = 'Hits Column';
  1781. $TR_STRS[strtolower('Show/Hide the Hits column')] = 'Show/Hide the Hits column';
  1782. $TR_STRS[strtolower('Navigation Bar')] = 'Navigation Bar';
  1783. $TR_STRS[strtolower('Show/Hide the Navigation bar')] = 'Show/Hide the Navigation bar';
  1784. $TR_STRS[strtolower('Display Number')] = 'Display Number';
  1785. $TR_STRS[strtolower('Number of items to be displayed by default')] = 'Number of items to be displayed by default';
  1786. $TR_STRS[strtolower('Author')] = 'Author';
  1787. //administrator/components/com_menus/content_section/content_section.xml
  1788. $TR_STRS[strtolower('Table - Content Section')] = 'Table - Content Section';
  1789. $TR_STRS[strtolower('Creates a listing of Content categories for a particular section')] = 'Creates a listing of Content categories for a particular section';
  1790. $TR_STRS[strtolower('Item List of Category')] = 'Item List of Category';
  1791. $TR_STRS[strtolower('Show/Hide the item list of category')] = 'Show/Hide the item list of category';
  1792. $TR_STRS[strtolower('Item Count')] = 'Item Count';
  1793. $TR_STRS[strtolower('The number of items to display in the item list of category(default is 5)')] = 'The number of items to display in the item list of category(default is 5)';
  1794. $TR_STRS[strtolower('Item List of Section')] = 'Item List of Section';
  1795. $TR_STRS[strtolower('Show/Hide the item list of section')] = 'Show/Hide the item list of section';
  1796. //administrator/components/com_menus/newsfeed_category_table/newsfeed_category_table.xml
  1797. $TR_STRS[strtolower('A small image to be placed to the left or right of your menu item, images must be in /images')] = 'A small image to be placed to the left or right of your menu item, images must be in /images';
  1798. $TR_STRS[strtolower('Articles Column')] = 'Articles Column';
  1799. $TR_STRS[strtolower('Show/Hide the Articles column')] = 'Show/Hide the Articles column';
  1800. //administrator/components/com_menus/wrapper/wrapper.xml
  1801. $TR_STRS[strtolower('Width')] = 'Width';
  1802. $TR_STRS[strtolower('Height')] = 'Height';
  1803. //administrator/components/com_menus all XML files' name and description
  1804. $TR_STRS[strtolower('Link - Component Item')] = 'Link - Component Item';
  1805. $TR_STRS[strtolower('Creates a link to an existing Mambo Component')] = 'Creates a link to an existing Mambo Component';
  1806. $TR_STRS[strtolower('Component')] = 'Component';
  1807. $TR_STRS[strtolower('Displays the frontend interface for a Component')] = 'Displays the frontend interface for a Component';
  1808. $TR_STRS[strtolower('Table - Contact Category')] = 'Table - Contact Category';
  1809. $TR_STRS[strtolower('Shows a Table view of Contact items for a particular Category')] = 'Shows a Table view of Contact items for a particular Category';
  1810. $TR_STRS[strtolower('Link - Contact Item')] = 'Link - Contact Item';
  1811. $TR_STRS[strtolower('Creates a link to a Published Contact Item')] = 'Creates a link to a Published Contact Item';
  1812. $TR_STRS[strtolower('Blog - Content Category')] = 'Blog - Content Category';
  1813. $TR_STRS[strtolower('Displays a page of content items from multiple categories in a blog format')] = 'Displays a page of content items from multiple categories in a blog format';
  1814. $TR_STRS[strtolower('Blog - Content Section')] = 'Blog - Content Section';
  1815. $TR_STRS[strtolower('Displays a page of content items from multiple sections in a blog format')] = 'Displays a page of content items from multiple sections in a blog format';
  1816. $TR_STRS[strtolower('Table - Content Category')] = 'Table - Content Category';
  1817. $TR_STRS[strtolower('Shows a Table view of Content items for a particular Category')] = 'Shows a Table view of Content items for a particular Category';
  1818. $TR_STRS[strtolower('Link - Content Item')] = 'Link - Content Item';
  1819. $TR_STRS[strtolower('Creates a link to a published Content Item in full view')] = 'Creates a link to a published Content Item in full view';
  1820. $TR_STRS[strtolower('Table - Content Section')] = 'Table - Content Section';
  1821. $TR_STRS[strtolower('Creates a listing of Content categories for a particular section')] = 'Creates a listing of Content categories for a particular section';
  1822. $TR_STRS[strtolower('Link - Static Content')] = 'Link - Static Content';
  1823. $TR_STRS[strtolower('Creates a link to Static Content Item')] = 'Creates a link to Static Content Item';
  1824. $TR_STRS[strtolower('Table - Newsfeed Category')] = 'Table - Newsfeed Category';
  1825. $TR_STRS[strtolower('Shows a Table view of Newsfeed items for a particular Category')] = 'Shows a Table view of Newsfeed items for a particular Category';
  1826. $TR_STRS[strtolower('Link - Newsfeed')] = 'Link - Newsfeed';
  1827. $TR_STRS[strtolower('Creates a link to an individual Published Newsfeed')] = 'Creates a link to an individual Published Newsfeed';
  1828. $TR_STRS[strtolower('Separator / Placeholder')] = 'Separator / Placeholder';
  1829. $TR_STRS[strtolower('Creates a menu placeholder or separator')] = 'Creates a menu placeholder or separator';
  1830. $TR_STRS[strtolower('Link - Url')] = 'Link - Url';
  1831. $TR_STRS[strtolower('Creates url link')] = 'Creates url link';
  1832. $TR_STRS[strtolower('Table - Weblink Category')] = 'Table - Weblink Category';
  1833. $TR_STRS[strtolower('Shows a Table view of Weblink items for a particular Weblink Category')] = 'Shows a Table view of Weblink items for a particular Weblink Category';
  1834. $TR_STRS[strtolower('Wrapper')] = 'Wrapper';
  1835. $TR_STRS[strtolower('Creates an IFrame that will wrap an external page/site into Mambo')] = 'Creates an IFrame that will wrap an external page/site into Mambo';
  1836. $TR_STRS[strtolower('Mamhoo')] = 'Mamhoo';
  1837. $TR_STRS[strtolower('Mamhoo User Manager')] = 'Mamhoo User Manager';
  1838. $TR_STRS[strtolower('Mamhoo User Extended Config')] = 'Mamhoo User Extended Config';
  1839. $TR_STRS[strtolower('Install/Uninstall Mamhooks')] = 'Install/Uninstall Mamhooks';
  1840. $TR_STRS[strtolower('About Mamhoo')] = 'About Mamhoo';
  1841. }
  1842. }
  1843. ?>