PageRenderTime 53ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/phpMyAdmin/libraries/config/messages.inc.php

https://bitbucket.org/izubizarreta/https-bitbucket.org-bityvip
PHP | 527 lines | 514 code | 3 blank | 10 comment | 1 complexity | 5ecaa914a924b1af66ad519d6be31a02 MD5 | raw file
Possible License(s): LGPL-3.0, LGPL-2.0, JSON, GPL-2.0, BSD-3-Clause, LGPL-2.1, MIT
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * Messages for phpMyAdmin.
  5. *
  6. * This file defines variables in a special format suited for the
  7. * configuration subsystem, with $strConfig as a prefix, _desc or _name
  8. * as a suffix, and the directive name in between.
  9. *
  10. * @package PhpMyAdmin
  11. */
  12. if (!function_exists('__')) {
  13. die('Bad invocation!');
  14. }
  15. $strConfigAjaxEnable_desc = __('Improves efficiency of screen refresh');
  16. $strConfigAjaxEnable_name = __('Enable Ajax');
  17. $strConfigAllowArbitraryServer_desc = __('If enabled user can enter any MySQL server in login form for cookie auth');
  18. $strConfigAllowArbitraryServer_name = __('Allow login to any MySQL server');
  19. $strConfigAllowThirdPartyFraming_desc = __('Enabling this allows a page located on a different domain to call phpMyAdmin inside a frame, and is a potential [strong]security hole[/strong] allowing cross-frame scripting attacks');
  20. $strConfigAllowThirdPartyFraming_name = __('Allow third party framing');
  21. $strConfigAllowUserDropDatabase_name = __('Show &quot;Drop database&quot; link to normal users');
  22. $strConfigblowfish_secret_desc = __('Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] authentication');
  23. $strConfigblowfish_secret_name = __('Blowfish secret');
  24. $strConfigBrowseMarkerEnable_desc = __('Highlight selected rows');
  25. $strConfigBrowseMarkerEnable_name = __('Row marker');
  26. $strConfigBrowsePointerEnable_desc = __('Highlight row pointed by the mouse cursor');
  27. $strConfigBrowsePointerEnable_name = __('Highlight pointer');
  28. $strConfigBZipDump_desc = __('Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for import and export operations');
  29. $strConfigBZipDump_name = __('Bzip2');
  30. $strConfigCharEditing_desc = __('Defines which type of editing controls should be used for CHAR and VARCHAR columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/kbd] - allows newlines in columns');
  31. $strConfigCharEditing_name = __('CHAR columns editing');
  32. $strConfigMinSizeForInputField_desc = __('Defines the minimum size for input fields generated for CHAR and VARCHAR columns');
  33. $strConfigMinSizeForInputField_name = __('Minimum size for input field');
  34. $strConfigMaxSizeForInputField_desc = __('Defines the maximum size for input fields generated for CHAR and VARCHAR columns');
  35. $strConfigMaxSizeForInputField_name = __('Maximum size for input field');
  36. $strConfigCharTextareaCols_desc = __('Number of columns for CHAR/VARCHAR textareas');
  37. $strConfigCharTextareaCols_name = __('CHAR textarea columns');
  38. $strConfigCharTextareaRows_desc = __('Number of rows for CHAR/VARCHAR textareas');
  39. $strConfigCharTextareaRows_name = __('CHAR textarea rows');
  40. $strConfigCheckConfigurationPermissions_name = __('Check config file permissions');
  41. $strConfigCompressOnFly_desc = __('Compress gzip/bzip2 exports on the fly without the need for much memory; if you encounter problems with created gzip/bzip2 files disable this feature');
  42. $strConfigCompressOnFly_name = __('Compress on the fly');
  43. $strConfigConfigurationFile = __('Configuration file');
  44. $strConfigConfirm_desc = __('Whether a warning (&quot;Are your really sure...&quot;) should be displayed when you\'re about to lose data');
  45. $strConfigConfirm_name = __('Confirm DROP queries');
  46. $strConfigDBG_sql_name = __('Debug SQL');
  47. $strConfigDefaultDisplay_name = __('Default display direction');
  48. $strConfigDefaultTabDatabase_desc = __('Tab that is displayed when entering a database');
  49. $strConfigDefaultTabDatabase_name = __('Default database tab');
  50. $strConfigDefaultTabServer_desc = __('Tab that is displayed when entering a server');
  51. $strConfigDefaultTabServer_name = __('Default server tab');
  52. $strConfigDefaultTabTable_desc = __('Tab that is displayed when entering a table');
  53. $strConfigDefaultTabTable_name = __('Default table tab');
  54. $strConfigDisplayBinaryAsHex_desc = __('Show binary contents as HEX by default');
  55. $strConfigDisplayBinaryAsHex_name = __('Show binary contents as HEX');
  56. $strConfigDisplayDatabasesList_desc = __('Show database listing as a list instead of a drop down');
  57. $strConfigDisplayDatabasesList_name = __('Display databases as a list');
  58. $strConfigDisplayServersList_desc = __('Show server listing as a list instead of a drop down');
  59. $strConfigDisplayServersList_name = __('Display servers as a list');
  60. $strConfigDisableMultiTableMaintenance_desc = __('Disable the table maintenance mass operations, like optimizing or repairing the selected tables of a database.');
  61. $strConfigDisableMultiTableMaintenance_name = __('Disable multi table maintenance');
  62. $strConfigEditInWindow_desc = __('Edit SQL queries in popup window');
  63. $strConfigEditInWindow_name = __('Edit in window');
  64. $strConfigError_Handler_display_name = __('Display errors');
  65. $strConfigError_Handler_gather_name = __('Gather errors');
  66. $strConfigErrorIconic_desc = __('Show icons for warning, error and information messages');
  67. $strConfigErrorIconic_name = __('Iconic errors');
  68. $strConfigExecTimeLimit_desc = __('Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no limit)');
  69. $strConfigExecTimeLimit_name = __('Maximum execution time');
  70. $strConfigExport_asfile_name = __('Save as file');
  71. $strConfigExport_charset_name = __('Character set of the file');
  72. $strConfigExport_codegen_format_name = __('Format');
  73. $strConfigExport_compression_name = __('Compression');
  74. $strConfigExport_csv_columns_name = __('Put columns names in the first row');
  75. $strConfigExport_csv_enclosed_name = __('Columns enclosed by');
  76. $strConfigExport_csv_escaped_name = __('Columns escaped by');
  77. $strConfigExport_csv_null_name = __('Replace NULL by');
  78. $strConfigExport_csv_removeCRLF_name = __('Remove CRLF characters within columns');
  79. $strConfigExport_csv_separator_name = __('Columns terminated by');
  80. $strConfigExport_csv_terminated_name = __('Lines terminated by');
  81. $strConfigExport_excel_columns_name = __('Put columns names in the first row');
  82. $strConfigExport_excel_edition_name = __('Excel edition');
  83. $strConfigExport_excel_null_name = __('Replace NULL by');
  84. $strConfigExport_excel_removeCRLF_name = __('Remove CRLF characters within columns');
  85. $strConfigExport_file_template_database_name = __('Database name template');
  86. $strConfigExport_file_template_server_name = __('Server name template');
  87. $strConfigExport_file_template_table_name = __('Table name template');
  88. $strConfigExport_format_name = __('Format');
  89. $strConfigExport_htmlword_columns_name = __('Put columns names in the first row');
  90. $strConfigExport_htmlword_null_name = __('Replace NULL by');
  91. $strConfigExport_htmlword_structure_or_data_name = __('Dump table');
  92. $strConfigExport_latex_caption_name = __('Include table caption');
  93. $strConfigExport_latex_columns_name = __('Put columns names in the first row');
  94. $strConfigExport_latex_comments_name = __('Comments');
  95. $strConfigExport_latex_data_caption_name = __('Table caption');
  96. $strConfigExport_latex_data_continued_caption_name = __('Continued table caption');
  97. $strConfigExport_latex_data_label_name = __('Label key');
  98. $strConfigExport_latex_mime_name = __('MIME type');
  99. $strConfigExport_latex_null_name = __('Replace NULL by');
  100. $strConfigExport_latex_relation_name = __('Relations');
  101. $strConfigExport_latex_structure_caption_name = __('Table caption');
  102. $strConfigExport_latex_structure_continued_caption_name = __('Continued table caption');
  103. $strConfigExport_latex_structure_label_name = __('Label key');
  104. $strConfigExport_latex_structure_or_data_name = __('Dump table');
  105. $strConfigExport_method_name = __('Export method');
  106. $strConfigExport_ods_columns_name = __('Put columns names in the first row');
  107. $strConfigExport_ods_null_name = __('Replace NULL by');
  108. $strConfigExport_odt_columns_name = __('Put columns names in the first row');
  109. $strConfigExport_odt_comments_name = __('Comments');
  110. $strConfigExport_odt_mime_name = __('MIME type');
  111. $strConfigExport_odt_null_name = __('Replace NULL by');
  112. $strConfigExport_odt_relation_name = __('Relations');
  113. $strConfigExport_odt_structure_or_data_name = __('Dump table');
  114. $strConfigExport_onserver_name = __('Save on server');
  115. $strConfigExport_onserver_overwrite_name = __('Overwrite existing file(s)');
  116. $strConfigExport_quick_export_onserver_name = __('Save on server');
  117. $strConfigExport_quick_export_onserver_overwrite_name = __('Overwrite existing file(s)');
  118. $strConfigExport_remember_file_template_name = __('Remember file name template');
  119. $strConfigExport_sql_auto_increment_name = __('Add AUTO_INCREMENT value');
  120. $strConfigExport_sql_backquotes_name = __('Enclose table and column names with backquotes');
  121. $strConfigExport_sql_compatibility_name = __('SQL compatibility mode');
  122. $strConfigExport_sql_create_table_statements_name = __('<code>CREATE TABLE</code> options:');
  123. $strConfigExport_sql_dates_name = __('Creation/Update/Check dates');
  124. $strConfigExport_sql_delayed_name = __('Use delayed inserts');
  125. $strConfigExport_sql_disable_fk_name = __('Disable foreign key checks');
  126. $strConfigExport_sql_drop_database_name = sprintf(__('Add %s'), 'DROP DATABASE');
  127. $strConfigExport_sql_drop_table_name = sprintf(__('Add %s'), 'DROP TABLE / VIEW / PROCEDURE / FUNCTION / EVENT');
  128. $strConfigExport_sql_hex_for_blob_name = __('Use hexadecimal for BLOB');
  129. $strConfigExport_sql_if_not_exists_name = sprintf(__('Add %s'), 'IF NOT EXISTS');
  130. $strConfigExport_sql_ignore_name = __('Use ignore inserts');
  131. $strConfigExport_sql_include_comments_name = __('Comments');
  132. $strConfigExport_sql_insert_syntax_name = __('Syntax to use when inserting data');
  133. $strConfigExport_sql_max_query_size_name = __('Maximal length of created query');
  134. $strConfigExport_sql_mime_name = __('MIME type');
  135. $strConfigExport_sql_procedure_function_name = sprintf(__('Add %s'), 'CREATE PROCEDURE / FUNCTION / EVENT');
  136. $strConfigExport_sql_relation_name = __('Relations');
  137. $strConfigExport_sql_structure_or_data_name = __('Dump table');
  138. $strConfigExport_sql_type_name = __('Export type');
  139. $strConfigExport_sql_use_transaction_name = __('Enclose export in a transaction');
  140. $strConfigExport_sql_utc_time_name = __('Export time in UTC');
  141. $strConfigExport_texytext_columns_name = __('Put columns names in the first row');
  142. $strConfigExport_texytext_null_name = __('Replace NULL by');
  143. $strConfigExport_texytext_structure_or_data_name = __('Dump table');
  144. $strConfigExport_xls_columns_name = __('Put columns names in the first row');
  145. $strConfigExport_xls_null_name = __('Replace NULL by');
  146. $strConfigExport_xlsx_columns_name = __('Put columns names in the first row');
  147. $strConfigExport_xlsx_null_name = __('Replace NULL by');
  148. $strConfigForceSSL_desc = __('Force secured connection while using phpMyAdmin');
  149. $strConfigForceSSL_name = __('Force SSL connection');
  150. $strConfigForeignKeyDropdownOrder_desc = __('Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is the referenced data, [kbd]id[/kbd] is the key value');
  151. $strConfigForeignKeyDropdownOrder_name = __('Foreign key dropdown order');
  152. $strConfigForeignKeyMaxLimit_desc = __('A dropdown will be used if fewer items are present');
  153. $strConfigForeignKeyMaxLimit_name = __('Foreign key limit');
  154. $strConfigForm_Browse = __('Browse mode');
  155. $strConfigForm_Browse_desc = __('Customize browse mode');
  156. $strConfigForm_CodeGen = 'CodeGen';
  157. $strConfigForm_CodeGen_desc = __('Customize default options');
  158. $strConfigForm_Csv = __('CSV');
  159. $strConfigForm_Csv_desc = __('Customize default options');
  160. $strConfigForm_Developer = __('Developer');
  161. $strConfigForm_Developer_desc = __('Settings for phpMyAdmin developers');
  162. $strConfigForm_Edit = __('Edit mode');
  163. $strConfigForm_Edit_desc = __('Customize edit mode');
  164. $strConfigForm_Export = __('Export');
  165. $strConfigForm_Export_defaults = __('Export defaults');
  166. $strConfigForm_Export_defaults_desc = __('Customize default export options');
  167. $strConfigForm_Features = __('Features');
  168. $strConfigForm_General = __('General');
  169. $strConfigForm_General_desc = __('Set some commonly used options');
  170. $strConfigForm_Import = __('Import');
  171. $strConfigForm_Import_defaults = __('Import defaults');
  172. $strConfigForm_Import_defaults_desc = __('Customize default common import options');
  173. $strConfigForm_Import_export = __('Import / export');
  174. $strConfigForm_Import_export_desc = __('Set import and export directories and compression options');
  175. $strConfigForm_Latex = __('LaTeX');
  176. $strConfigForm_Latex_desc = __('Customize default options');
  177. $strConfigForm_Left_databases = __('Databases');
  178. $strConfigForm_Left_databases_desc = __('Databases display options');
  179. $strConfigForm_Left_frame = __('Navigation frame');
  180. $strConfigForm_Left_frame_desc = __('Customize appearance of the navigation frame');
  181. $strConfigForm_Left_servers = __('Servers');
  182. $strConfigForm_Left_servers_desc = __('Servers display options');
  183. $strConfigForm_Left_tables = __('Tables');
  184. $strConfigForm_Left_tables_desc = __('Tables display options');
  185. $strConfigForm_Main_frame = __('Main frame');
  186. $strConfigForm_Microsoft_Office = __('Microsoft Office');
  187. $strConfigForm_Microsoft_Office_desc = __('Customize default options');
  188. $strConfigForm_Open_Document = __('Open Document');
  189. $strConfigForm_Open_Document_desc = __('Customize default options');
  190. $strConfigForm_Other_core_settings = __('Other core settings');
  191. $strConfigForm_Other_core_settings_desc = __('Settings that didn\'t fit enywhere else');
  192. $strConfigForm_Page_titles = __('Page titles');
  193. $strConfigForm_Page_titles_desc = __('Specify browser\'s title bar text. Refer to [a@Documentation.html#cfg_TitleTable]documentation[/a] for magic strings that can be used to get special values.');
  194. $strConfigForm_Query_window = __('Query window');
  195. $strConfigForm_Query_window_desc = __('Customize query window options');
  196. $strConfigForm_Security = __('Security');
  197. $strConfigForm_Security_desc = __('Please note that phpMyAdmin is just a user interface and its features do not limit MySQL');
  198. $strConfigForm_Server = __('Basic settings');
  199. $strConfigForm_Server_auth = __('Authentication');
  200. $strConfigForm_Server_auth_desc = __('Authentication settings');
  201. $strConfigForm_Server_config = __('Server configuration');
  202. $strConfigForm_Server_config_desc = __('Advanced server configuration, do not change these options unless you know what they are for');
  203. $strConfigForm_Server_desc = __('Enter server connection parameters');
  204. $strConfigForm_Server_pmadb = __('Configuration storage');
  205. $strConfigForm_Server_pmadb_desc = __('Configure phpMyAdmin configuration storage to gain access to additional features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration storage[/a] in documentation');
  206. $strConfigForm_Server_tracking = __('Changes tracking');
  207. $strConfigForm_Server_tracking_desc = __('Tracking of changes made in database. Requires the phpMyAdmin configuration storage.');
  208. $strConfigFormset_Export = __('Customize export options');
  209. $strConfigFormset_Features = __('Features');
  210. $strConfigFormset_Import = __('Customize import defaults');
  211. $strConfigFormset_Left_frame = __('Customize navigation frame');
  212. $strConfigFormset_Main_frame = __('Customize main frame');
  213. $strConfigFormset_Sql_queries = __('SQL queries');
  214. $strConfigForm_Sql = __('SQL');
  215. $strConfigForm_Sql_box = __('SQL Query box');
  216. $strConfigForm_Sql_box_desc = __('Customize links shown in SQL Query boxes');
  217. $strConfigForm_Sql_desc = __('Customize default options');
  218. $strConfigForm_Sql_queries = __('SQL queries');
  219. $strConfigForm_Sql_queries_desc = __('SQL queries settings');
  220. $strConfigForm_Sql_validator = __('SQL Validator');
  221. $strConfigForm_Sql_validator_desc = __('If you wish to use the SQL Validator service, you should be aware that [strong]all SQL statements are stored anonymously for statistical purposes[/strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright 2002 Upright Database Technology. All rights reserved.[/em]');
  222. $strConfigForm_Startup = __('Startup');
  223. $strConfigForm_Startup_desc = __('Customize startup page');
  224. $strConfigForm_Tabs = __('Tabs');
  225. $strConfigForm_Tabs_desc = __('Choose how you want tabs to work');
  226. $strConfigForm_Text_fields = __('Text fields');
  227. $strConfigForm_Text_fields_desc = __('Customize text input fields');
  228. $strConfigForm_Texy = __('Texy! text');
  229. $strConfigForm_Texy_desc = __('Customize default options');
  230. $strConfigForm_Warnings = __('Warnings');
  231. $strConfigForm_Warnings_desc = __('Disable some of the warnings shown by phpMyAdmin');
  232. $strConfigGZipDump_desc = __('Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import and export operations');
  233. $strConfigGZipDump_name = __('GZip');
  234. $strConfigIconvExtraParams_name = __('Extra parameters for iconv');
  235. $strConfigIgnoreMultiSubmitErrors_desc = __('If enabled, phpMyAdmin continues computing multiple-statement queries even if one of the queries failed');
  236. $strConfigIgnoreMultiSubmitErrors_name = __('Ignore multiple statement errors');
  237. $strConfigImport_allow_interrupt_desc = __('Allow interrupt of import in case script detects it is close to time limit. This might be good way to import large files, however it can break transactions.');
  238. $strConfigImport_allow_interrupt_name = __('Partial import: allow interrupt');
  239. $strConfigImport_charset_name = __('Character set of the file');
  240. $strConfigImport_csv_col_names_name = __('Lines terminated by');
  241. $strConfigImport_csv_enclosed_name = __('Columns enclosed by');
  242. $strConfigImport_csv_escaped_name = __('Columns escaped by');
  243. $strConfigImport_csv_ignore_name = __('Do not abort on INSERT error');
  244. $strConfigImport_csv_replace_name = __('Replace table data with file');
  245. $strConfigImport_csv_terminated_name = __('Columns terminated by');
  246. $strConfigImport_format_desc = __('Default format; be aware that this list depends on location (database, table) and only SQL is always available');
  247. $strConfigImport_format_name = __('Format of imported file');
  248. $strConfigImport_ldi_enclosed_name = __('Columns enclosed by');
  249. $strConfigImport_ldi_escaped_name = __('Columns escaped by');
  250. $strConfigImport_ldi_ignore_name = __('Do not abort on INSERT error');
  251. $strConfigImport_ldi_local_option_name = __('Use LOCAL keyword');
  252. $strConfigImport_ldi_replace_name = __('Replace table data with file');
  253. $strConfigImport_ldi_terminated_name = __('Columns terminated by');
  254. $strConfigImport_ods_col_names_name = __('Column names in first row');
  255. $strConfigImport_ods_empty_rows_name = __('Do not import empty rows');
  256. $strConfigImport_ods_recognize_currency_name = __('Import currencies ($5.00 to 5.00)');
  257. $strConfigImport_ods_recognize_percentages_name = __('Import percentages as proper decimals (12.00% to .12)');
  258. $strConfigImport_skip_queries_desc = __('Number of queries to skip from start');
  259. $strConfigImport_skip_queries_name = __('Partial import: skip queries');
  260. $strConfigImport_sql_compatibility_name = __('SQL compatibility mode');
  261. $strConfigImport_sql_no_auto_value_on_zero_name = __('Do not use AUTO_INCREMENT for zero values');
  262. $strConfigImport_xls_col_names_name = __('Column names in first row');
  263. $strConfigImport_xlsx_col_names_name = __('Column names in first row');
  264. $strConfigInitialSlidersState_name = __('Initial state for sliders');
  265. $strConfigInsertRows_desc = __('How many rows can be inserted at one time');
  266. $strConfigInsertRows_name = __('Number of inserted rows');
  267. $strConfigLeftDefaultTabTable_name = __('Target for quick access icon');
  268. $strConfigLeftDisplayLogo_desc = __('Show logo in left frame');
  269. $strConfigLeftDisplayLogo_name = __('Display logo');
  270. $strConfigLeftDisplayServers_desc = __('Display server choice at the top of the left frame');
  271. $strConfigLeftDisplayServers_name = __('Display servers selection');
  272. $strConfigLeftDisplayTableFilterMinimum_name = __('Minimum number of tables to display the table filter box');
  273. $strConfigLeftFrameDBSeparator_desc = __('String that separates databases into different tree levels');
  274. $strConfigLeftFrameDBSeparator_name = __('Database tree separator');
  275. $strConfigLeftFrameDBTree_desc = __('Only light version; display databases in a tree (determined by the separator defined below)');
  276. $strConfigLeftFrameDBTree_name = __('Display databases in a tree');
  277. $strConfigLeftFrameLight_desc = __('Disable this if you want to see all databases at once');
  278. $strConfigLeftFrameLight_name = __('Use light version');
  279. $strConfigLeftFrameTableLevel_name = __('Maximum table tree depth');
  280. $strConfigLeftFrameTableSeparator_desc = __('String that separates tables into different tree levels');
  281. $strConfigLeftFrameTableSeparator_name = __('Table tree separator');
  282. $strConfigLeftLogoLink_desc = __('URL where logo in the navigation frame will point to');
  283. $strConfigLeftLogoLink_name = __('Logo link URL');
  284. $strConfigLeftLogoLinkWindow_desc = __('Open the linked page in the main window ([kbd]main[/kbd]) or in a new one ([kbd]new[/kbd])');
  285. $strConfigLeftLogoLinkWindow_name = __('Logo link target');
  286. $strConfigLeftPointerEnable_desc = __('Highlight server under the mouse cursor');
  287. $strConfigLeftPointerEnable_name = __('Enable highlighting');
  288. $strConfigLeftRecentTable_desc = __('Maximum number of recently used tables; set 0 to disable');
  289. $strConfigLeftRecentTable_name = __('Recently used tables');
  290. $strConfigLightTabs_desc = __('Use less graphically intense tabs');
  291. $strConfigLightTabs_name = __('Light tabs');
  292. $strConfigLimitChars_desc = __('Maximum number of characters shown in any non-numeric column on browse view');
  293. $strConfigLimitChars_name = __('Limit column characters');
  294. $strConfigLoginCookieDeleteAll_desc = __('If TRUE, logout deletes cookies for all servers; when set to FALSE, logout only occurs for the current server. Setting this to FALSE makes it easy to forget to log out from other servers when connected to multiple servers.');
  295. $strConfigLoginCookieDeleteAll_name = __('Delete all cookies on logout');
  296. $strConfigLoginCookieRecall_desc = __('Define whether the previous login should be recalled or not in cookie authentication mode');
  297. $strConfigLoginCookieRecall_name = __('Recall user name');
  298. $strConfigLoginCookieStore_desc = __('Defines how long (in seconds) a login cookie should be stored in browser. The default of 0 means that it will be kept for the existing session only, and will be deleted as soon as you close the browser window. This is recommended for non-trusted environments.');
  299. $strConfigLoginCookieStore_name = __('Login cookie store');
  300. $strConfigLoginCookieValidity_desc = __('Define how long (in seconds) a login cookie is valid');
  301. $strConfigLoginCookieValidity_name = __('Login cookie validity');
  302. $strConfigLongtextDoubleTextarea_desc = __('Double size of textarea for LONGTEXT columns');
  303. $strConfigLongtextDoubleTextarea_name = __('Bigger textarea for LONGTEXT');
  304. $strConfigMainPageIconic_name = __('Use icons on main page');
  305. $strConfigMaxCharactersInDisplayedSQL_desc = __('Maximum number of characters used when a SQL query is displayed');
  306. $strConfigMaxCharactersInDisplayedSQL_name = __('Maximum displayed SQL length');
  307. $strConfigMaxDbList_cmt = __('Users cannot set a higher value');
  308. $strConfigMaxDbList_desc = __('Maximum number of databases displayed in left frame and database list');
  309. $strConfigMaxDbList_name = __('Maximum databases');
  310. $strConfigMaxRows_desc = __('Number of rows displayed when browsing a result set. If the result set contains more rows, &quot;Previous&quot; and &quot;Next&quot; links will be shown.');
  311. $strConfigMaxRows_name = __('Maximum number of rows to display');
  312. $strConfigMaxTableList_cmt = __('Users cannot set a higher value');
  313. $strConfigMaxTableList_desc = __('Maximum number of tables displayed in table list');
  314. $strConfigMaxTableList_name = __('Maximum tables');
  315. $strConfigMcryptDisableWarning_desc = __('Disable the default warning that is displayed if mcrypt is missing for cookie authentication');
  316. $strConfigMcryptDisableWarning_name = __('mcrypt warning');
  317. $strConfigMemoryLimit_desc = __('The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] ([kbd]0[/kbd] for no limit)');
  318. $strConfigMemoryLimit_name = __('Memory limit');
  319. $strConfigRowActionLinks_desc = __('These are Edit, Copy and Delete links');
  320. $strConfigRowActionLinks_name = __('Where to show the table row links');
  321. $strConfigNaturalOrder_desc = __('Use natural order for sorting table and database names');
  322. $strConfigNaturalOrder_name = __('Natural order');
  323. $strConfigNavigationBarIconic_desc = __('Use only icons, only text or both');
  324. $strConfigNavigationBarIconic_name = __('Iconic navigation bar');
  325. $strConfigOBGzip_desc = __('use GZip output buffering for increased speed in HTTP transfers');
  326. $strConfigOBGzip_name = __('GZip output buffering');
  327. $strConfigOrder_desc = __('[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, DATETIME and TIMESTAMP, ascending order otherwise');
  328. $strConfigOrder_name = __('Default sorting order');
  329. $strConfigPersistentConnections_desc = __('Use persistent connections to MySQL databases');
  330. $strConfigPersistentConnections_name = __('Persistent connections');
  331. $strConfigPmaNoRelation_DisableWarning_desc = __('Disable the default warning that is displayed on the database details Structure page if any of the required tables for the phpMyAdmin configuration storage could not be found');
  332. $strConfigPmaNoRelation_DisableWarning_name = __('Missing phpMyAdmin configuration storage tables');
  333. $strConfigPropertiesIconic_desc = __('Use only icons, only text or both');
  334. $strConfigPropertiesIconic_name = __('Iconic table operations');
  335. $strConfigProtectBinary_desc = __('Disallow BLOB and BINARY columns from editing');
  336. $strConfigProtectBinary_name = __('Protect binary columns');
  337. $strConfigQueryHistoryDB_desc = __('Enable if you want DB-based query history (requires phpMyAdmin configuration storage). If disabled, this utilizes JS-routines to display query history (lost by window close).');
  338. $strConfigQueryHistoryDB_name = __('Permanent query history');
  339. $strConfigQueryHistoryMax_cmt = __('Users cannot set a higher value');
  340. $strConfigQueryHistoryMax_desc = __('How many queries are kept in history');
  341. $strConfigQueryHistoryMax_name = __('Query history length');
  342. $strConfigQueryWindowDefTab_desc = __('Tab displayed when opening a new query window');
  343. $strConfigQueryWindowDefTab_name = __('Default query window tab');
  344. $strConfigQueryWindowHeight_desc = __('Query window height (in pixels)');
  345. $strConfigQueryWindowHeight_name = __('Query window height');
  346. $strConfigQueryWindowWidth_desc = __('Query window width (in pixels)');
  347. $strConfigQueryWindowWidth_name = __('Query window width');
  348. $strConfigRecodingEngine_desc = __('Select which functions will be used for character set conversion');
  349. $strConfigRecodingEngine_name = __('Recoding engine');
  350. $strConfigRememberSorting_desc = __('When browsing tables, the sorting of each table is remembered');
  351. $strConfigRememberSorting_name = __('Remember table\'s sorting');
  352. $strConfigRepeatCells_desc = __('Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature');
  353. $strConfigRepeatCells_name = __('Repeat headers');
  354. $strConfigReplaceHelpImg_desc = __('Show help button instead of Documentation text');
  355. $strConfigReplaceHelpImg_name = __('Show help button');
  356. $strConfigRestoreDefaultValue = __('Restore default value');
  357. $strConfigSaveCellsAtOnce_name = __('Save all edited cells at once');
  358. $strConfigSaveDir_desc = __('Directory where exports can be saved on server');
  359. $strConfigSaveDir_name = __('Save directory');
  360. $strConfigServers_AllowDeny_order_desc = __('Leave blank if not used');
  361. $strConfigServers_AllowDeny_order_name = __('Host authorization order');
  362. $strConfigServers_AllowDeny_rules_desc = __('Leave blank for defaults');
  363. $strConfigServers_AllowDeny_rules_name = __('Host authorization rules');
  364. $strConfigServers_AllowNoPassword_name = __('Allow logins without a password');
  365. $strConfigServers_AllowRoot_name = __('Allow root login');
  366. $strConfigServers_auth_http_realm_desc = __('HTTP Basic Auth Realm name to display when doing HTTP Auth');
  367. $strConfigServers_auth_http_realm_name = __('HTTP Realm');
  368. $strConfigServers_auth_swekey_config_desc = __('The path for the config file for [a@http://swekey.com]SweKey hardware authentication[/a] (not located in your document root; suggested: /etc/swekey.conf)');
  369. $strConfigServers_auth_swekey_config_name = __('SweKey config file');
  370. $strConfigServers_auth_type_desc = __('Authentication method to use');
  371. $strConfigServers_auth_type_name = __('Authentication type');
  372. $strConfigServers_bookmarktable_desc = __('Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] support, suggested: [kbd]pma_bookmark[/kbd]');
  373. $strConfigServers_bookmarktable_name = __('Bookmark table');
  374. $strConfigServers_column_info_desc = __('Leave blank for no column comments/mime types, suggested: [kbd]pma_column_info[/kbd]');
  375. $strConfigServers_column_info_name = __('Column information table');
  376. $strConfigServers_compress_desc = __('Compress connection to MySQL server');
  377. $strConfigServers_compress_name = __('Compress connection');
  378. $strConfigServers_connect_type_desc = __('How to connect to server, keep [kbd]tcp[/kbd] if unsure');
  379. $strConfigServers_connect_type_name = __('Connection type');
  380. $strConfigServers_controlpass_name = __('Control user password');
  381. $strConfigServers_controluser_desc = __('A special MySQL user configured with limited permissions, more information available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]');
  382. $strConfigServers_controluser_name = __('Control user');
  383. $strConfigServers_controlhost_desc = __('An alternate host to hold the configuration storage; leave blank to use the already defined host');
  384. $strConfigServers_controlhost_name = __('Control host');
  385. $strConfigServers_CountTables_desc = __('Count tables when showing database list');
  386. $strConfigServers_CountTables_name = __('Count tables');
  387. $strConfigServers_designer_coords_desc = __('Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/kbd]');
  388. $strConfigServers_designer_coords_name = __('Designer table');
  389. $strConfigServers_DisableIS_desc = __('More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]');
  390. $strConfigServers_DisableIS_name = __('Disable use of INFORMATION_SCHEMA');
  391. $strConfigServers_extension_desc = __('What PHP extension to use; you should use mysqli if supported');
  392. $strConfigServers_extension_name = __('PHP extension to use');
  393. $strConfigServers_hide_db_desc = __('Hide databases matching regular expression (PCRE)');
  394. $strConfigServers_hide_db_name = __('Hide databases');
  395. $strConfigServers_history_desc = __('Leave blank for no SQL query history support, suggested: [kbd]pma_history[/kbd]');
  396. $strConfigServers_history_name = __('SQL query history table');
  397. $strConfigServers_host_desc = __('Hostname where MySQL server is running');
  398. $strConfigServers_host_name = __('Server hostname');
  399. $strConfigServers_LogoutURL_name = __('Logout URL');
  400. $strConfigServers_MaxTableUiprefs_desc = __('Limits number of table preferences which are stored in database, the oldest records are automatically removed');
  401. $strConfigServers_MaxTableUiprefs_name = __('Maximal number of table preferences to store');
  402. $strConfigServers_nopassword_desc = __('Try to connect without password');
  403. $strConfigServers_nopassword_name = __('Connect without password');
  404. $strConfigServers_only_db_desc = __('You can use MySQL wildcard characters (% and _), escape them if you want to use their literal instances, i.e. use [kbd]\'my\_db\'[/kbd] and not [kbd]\'my_db\'[/kbd]. Using this option you can sort database list, just enter their names in order and use [kbd]*[/kbd] at the end to show the rest in alphabetical order.');
  405. $strConfigServers_only_db_name = __('Show only listed databases');
  406. $strConfigServers_password_desc = __('Leave empty if not using config auth');
  407. $strConfigServers_password_name = __('Password for config auth');
  408. $strConfigServers_pdf_pages_desc = __('Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]');
  409. $strConfigServers_pdf_pages_name = __('PDF schema: pages table');
  410. $strConfigServers_pmadb_desc = __('Database used for relations, bookmarks, and PDF features. See [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for no support. Suggested: [kbd]phpmyadmin[/kbd]');
  411. $strConfigServers_pmadb_name = __('Database name');
  412. $strConfigServers_port_desc = __('Port on which MySQL server is listening, leave empty for default');
  413. $strConfigServers_port_name = __('Server port');
  414. $strConfigServers_recent_desc = __('Leave blank for no "persistent" recently used tables across sessions, suggested: [kbd]pma_recent[/kbd]');
  415. $strConfigServers_recent_name = __('Recently used table');
  416. $strConfigServers_relation_desc = __('Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links[/a] support, suggested: [kbd]pma_relation[/kbd]');
  417. $strConfigServers_relation_name = __('Relation table');
  418. $strConfigServers_ShowDatabasesCommand_desc = __('SQL command to fetch available databases');
  419. $strConfigServers_ShowDatabasesCommand_name = __('SHOW DATABASES command');
  420. $strConfigServers_SignonSession_desc = __('See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types[/a] for an example');
  421. $strConfigServers_SignonSession_name = __('Signon session name');
  422. $strConfigServers_SignonURL_name = __('Signon URL');
  423. $strConfigServers_socket_desc = __('Socket on which MySQL server is listening, leave empty for default');
  424. $strConfigServers_socket_name = __('Server socket');
  425. $strConfigServers_ssl_desc = __('Enable SSL for connection to MySQL server');
  426. $strConfigServers_ssl_name = __('Use SSL');
  427. $strConfigServers_table_coords_desc = __('Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]');
  428. $strConfigServers_table_coords_name = __('PDF schema: table coordinates');
  429. $strConfigServers_table_info_desc = __('Table to describe the display columns, leave blank for no support; suggested: [kbd]pma_table_info[/kbd]');
  430. $strConfigServers_table_info_name = __('Display columns table');
  431. $strConfigServers_table_uiprefs_desc = __('Leave blank for no "persistent" tables\'UI preferences across sessions, suggested: [kbd]pma_table_uiprefs[/kbd]');
  432. $strConfigServers_table_uiprefs_name = __('UI preferences table');
  433. $strConfigServers_tracking_add_drop_database_desc = __('Whether a DROP DATABASE IF EXISTS statement will be added as first line to the log when creating a database.');
  434. $strConfigServers_tracking_add_drop_database_name = __('Add DROP DATABASE');
  435. $strConfigServers_tracking_add_drop_table_desc = __('Whether a DROP TABLE IF EXISTS statement will be added as first line to the log when creating a table.');
  436. $strConfigServers_tracking_add_drop_table_name = __('Add DROP TABLE');
  437. $strConfigServers_tracking_add_drop_view_desc = __('Whether a DROP VIEW IF EXISTS statement will be added as first line to the log when creating a view.');
  438. $strConfigServers_tracking_add_drop_view_name = __('Add DROP VIEW');
  439. $strConfigServers_tracking_default_statements_desc = __('Defines the list of statements the auto-creation uses for new versions.');
  440. $strConfigServers_tracking_default_statements_name = __('Statements to track');
  441. $strConfigServers_tracking_desc = __('Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/kbd]');
  442. $strConfigServers_tracking_name = __('SQL query tracking table');
  443. $strConfigServers_tracking_version_auto_create_desc = __('Whether the tracking mechanism creates versions for tables and views automatically.');
  444. $strConfigServers_tracking_version_auto_create_name = __('Automatically create versions');
  445. $strConfigServers_userconfig_desc = __('Leave blank for no user preferences storage in database, suggested: [kbd]pma_userconfig[/kbd]');
  446. $strConfigServers_userconfig_name = __('User preferences storage table');
  447. $strConfigServers_user_desc = __('Leave empty if not using config auth');
  448. $strConfigServers_user_name = __('User for config auth');
  449. $strConfigServers_verbose_check_desc = __('Disable if you know that your pma_* tables are up to date. This prevents compatibility checks and thereby increases performance');
  450. $strConfigServers_verbose_check_name = __('Verbose check');
  451. $strConfigServers_verbose_desc = __('A user-friendly description of this server. Leave blank to display the hostname instead.');
  452. $strConfigServers_verbose_name = __('Verbose name of this server');
  453. $strConfigShowAll_desc = __('Whether a user should be displayed a &quot;show all (rows)&quot; button');
  454. $strConfigShowAll_name = __('Allow to display all the rows');
  455. $strConfigShowChgPassword_desc = __('Please note that enabling this has no effect with [kbd]config[/kbd] authentication mode because the password is hard coded in the configuration file; this does not limit the ability to execute the same command directly');
  456. $strConfigShowChgPassword_name = __('Show password change form');
  457. $strConfigShowCreateDb_name = __('Show create database form');
  458. $strConfigShowDisplayDirection_desc = __('Defines whether or not type display direction option is shown when browsing a table');
  459. $strConfigShowDisplayDirection_name = __('Show display direction');
  460. $strConfigShowFieldTypesInDataEditView_desc = __('Defines whether or not type fields should be initially displayed in edit/insert mode');
  461. $strConfigShowFieldTypesInDataEditView_name = __('Show field types');
  462. $strConfigShowFunctionFields_desc = __('Display the function fields in edit/insert mode');
  463. $strConfigShowFunctionFields_name = __('Show function fields');
  464. $strConfigShowHint_desc = __('Whether to show hint or not');
  465. $strConfigShowHint_name = __('Show hint');
  466. $strConfigShowPhpInfo_desc = __('Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] output');
  467. $strConfigShowPhpInfo_name = __('Show phpinfo() link');
  468. $strConfigShowServerInfo_name = __('Show detailed MySQL server information');
  469. $strConfigShowSQL_desc = __('Defines whether SQL queries generated by phpMyAdmin should be displayed');
  470. $strConfigShowSQL_name = __('Show SQL queries');
  471. $strConfigRetainQueryBox_desc = __('Defines whether the query box should stay on-screen after its submission');
  472. $strConfigRetainQueryBox_name = __('Retain query box');
  473. $strConfigShowStats_desc = __('Allow to display database and table statistics (eg. space usage)');
  474. $strConfigShowStats_name = __('Show statistics');
  475. $strConfigShowTooltipAliasDB_desc = __('If tooltips are enabled and a database comment is set, this will flip the comment and the real name');
  476. $strConfigShowTooltipAliasDB_name = __('Display database comment instead of its name');
  477. $strConfigShowTooltipAliasTB_desc = __('When setting this to [kbd]nested[/kbd], the alias of the table name is only used to split/nest the tables according to the $cfg[\'LeftFrameTableSeparator\'] directive, so only the folder is called like the alias, the table name itself stays unchanged');
  478. $strConfigShowTooltipAliasTB_name = __('Display table comment instead of its name');
  479. $strConfigShowTooltip_name = __('Display table comments in tooltips');
  480. $strConfigSkipLockedTables_desc = __('Mark used tables and make it possible to show databases with locked tables');
  481. $strConfigSkipLockedTables_name = __('Skip locked tables');
  482. $strConfigSQLQuery_Edit_name = __('Edit');
  483. $strConfigSQLQuery_Explain_name = __('Explain SQL');
  484. $strConfigSQLQuery_Refresh_name = __('Refresh');
  485. $strConfigSQLQuery_ShowAsPHP_name = __('Create PHP Code');
  486. $strConfigSQLQuery_Validate_desc = __('Requires SQL Validator to be enabled');
  487. $strConfigSQLQuery_Validate_name = __('Validate SQL');
  488. $strConfigSQLValidator_password_name = __('Password');
  489. $strConfigSQLValidator_use_desc = __('[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be installed');
  490. $strConfigSQLValidator_use_name = __('Enable SQL Validator');
  491. $strConfigSQLValidator_username_desc = __('If you have a custom username, specify it here (defaults to [kbd]anonymous[/kbd])');
  492. $strConfigSQLValidator_username_name = __('Username');
  493. $strConfigSuggestDBName_desc = __('Suggest a database name on the &quot;Create Database&quot; form (if possible) or keep the text field empty');
  494. $strConfigSuggestDBName_name = __('Suggest new database name');
  495. $strConfigSuhosinDisableWarning_desc = __('A warning is displayed on the main page if Suhosin is detected');
  496. $strConfigSuhosinDisableWarning_name = __('Suhosin warning');
  497. $strConfigTextareaCols_desc = __('Textarea size (columns) in edit mode, this value will be emphasized for SQL query textareas (*2) and for query window (*1.25)');
  498. $strConfigTextareaCols_name = __('Textarea columns');
  499. $strConfigTextareaRows_desc = __('Textarea size (rows) in edit mode, this value will be emphasized for SQL query textareas (*2) and for query window (*1.25)');
  500. $strConfigTextareaRows_name = __('Textarea rows');
  501. $strConfigTitleDatabase_desc = __('Title of browser window when a database is selected');
  502. $strConfigTitleDatabase_name = __('Database');
  503. $strConfigTitleDefault_desc = __('Title of browser window when nothing is selected');
  504. $strConfigTitleDefault_name = __('Default title');
  505. $strConfigTitleServer_desc = __('Title of browser window when a server is selected');
  506. $strConfigTitleServer_name = __('Server');
  507. $strConfigTitleTable_desc = __('Title of browser window when a table is selected');
  508. $strConfigTitleTable_name = __('Table');
  509. $strConfigTrustedProxies_desc = __('Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]');
  510. $strConfigTrustedProxies_name = __('List of trusted proxies for IP allow/deny');
  511. $strConfigUploadDir_desc = __('Directory on server where you can upload files for import');
  512. $strConfigUploadDir_name = __('Upload directory');
  513. $strConfigUseDbSearch_desc = __('Allow for searching inside the entire database');
  514. $strConfigUseDbSearch_name = __('Use database search');
  515. $strConfigUserprefsDeveloperTab_desc = __('When disabled, users cannot set any of the options below, regardless of the checkbox on the right');
  516. $strConfigUserprefsDeveloperTab_name = __('Enable the Developer tab in settings');
  517. $strConfigVerboseMultiSubmit_desc = __('Show affected rows of each statement on multiple-statement queries. See libraries/import.lib.php for defaults on how many queries a statement may contain.');
  518. $strConfigVerboseMultiSubmit_name = __('Verbose multiple statements');
  519. $strConfigVersionCheckLink = __('Check for latest version');
  520. $strConfigVersionCheck_desc = __('Enables check for latest version on main phpMyAdmin page');
  521. $strConfigVersionCheck_name = __('Version check');
  522. $strConfigZipDump_desc = __('Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression for import and export operations');
  523. $strConfigZipDump_name = __('ZIP');
  524. ?>