diff --git a/Documentation.html b/Documentation.html index 467a599ed..5e07febcc 100644 --- a/Documentation.html +++ b/Documentation.html @@ -1393,6 +1393,12 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE HTTP server is placed. +
$cfg['Error_Handler']['display'] boolean
+
Whether to display errors from PHP or not.
+ +
$cfg['Error_Handler']['gather'] boolean
+
Whether to gather errors from PHP or not.
+
$cfg['LeftFrameLight'] boolean
Defines whether to use a select-based menu and display only the current tables in the left frame (smaller page). Only in Non-Lightmode you can @@ -1906,20 +1912,20 @@ $cfg['TrustedProxies'] = name of the field. The comment is shown as a tool-tip for that field.
-
$cfg['SQLQuery']['Edit'] boolean
+
$cfg['SQLQuery']['Edit'] boolean
Whether to display an edit link to change a query in any SQL Query box.
-
$cfg['SQLQuery']['Explain'] boolean
+
$cfg['SQLQuery']['Explain'] boolean
Whether to display a link to explain a SELECT query in any SQL Query box.
-
$cfg['SQLQuery']['ShowAsPHP'] boolean
+
$cfg['SQLQuery']['ShowAsPHP'] boolean
Whether to display a link to wrap a query in PHP code in any SQL Query box.
-
$cfg['SQLQuery']['Validate'] boolean
+
$cfg['SQLQuery']['Validate'] boolean
Whether to display a link to validate a query in any SQL Query box. See also $cfg_SQLValidator.
-
$cfg['SQLQuery']['Refresh'] boolean
+
$cfg['SQLQuery']['Refresh'] boolean
Whether to display a link to refresh a query in any SQL Query box.
$cfg['UploadDir'] string
@@ -4354,20 +4360,32 @@ chmod o+rwx tmp 7.2 I want to translate the messages to a new language or upgrade an existing language, where do I start? -

Always use the current SVN version of your language file. - For a new language, start from english-utf-8.inc.php. If you - don't know how to get the SVN version, please ask one of the developers. -
+

Always use latest Git versoin of po file to translate. You can optionally + translate online at our translation + server where you can also get latest po files and merge them + with your translations. For creating new translation simply use + po/phpmyadmin.pot and generate + po/LANG_CODE.po for your language (you can use + msginit -i po/phpmyadmin.pot -l LANG_CODE --no-translator -o po/LANG_CODE.po + to do this) or ask on mailing list to add the translation to the web + interface. +

+

Please note that we try not to use HTML entities like é in the translations, since we define the right character set in the file. With HTML entities, the text on JavaScript messages would not display correctly. However there are some entities that need to be there, for quotes - ,non-breakable spaces, ampersands, less than, greater than.
+ ,non-breakable spaces, ampersands, less than, greater than. +

+

You can then put your translations, as a zip file to avoid losing special - characters, on the sourceforge.net translation tracker.
+ characters, on the sourceforge.net translation tracker. +

+

It would be a good idea to subscribe to the phpmyadmin-translators mailing - list, because this is where we ask for translations of new messages.

+ list, because this is where we ask for translations of new messages. +

7.3 I would like to help out with the development of @@ -4474,11 +4492,18 @@ now synchronize your databases placed on the same server or some remote server. PEAR coding standards on the other hand. Please pay attention to this. +
  • Please enable showing PHP errors and warnings by the + $cfg['Error_Handler']['display'] + configuration directive.
  • Please try to keep up the file-naming conventions. Table-related stuff goes to tbl_*.php, db-related code to db_*.php, server-related tools to server_*.php and so on.
  • -
  • Please don't put message strings in your code, instead add the string - (at least) to english-utf-8.inc.php and print() it out.
  • +
  • Please use gettext wrappers around all messages + (__('Some text') or _ngettext() function). + To translate them, you need to call scripts/update-po + script. To use translated messages, call + scripts/generate-mo, which generates binary files read by + Gettext.
  • If you want to be really helpful, write an entry for the ChangeLog.
  • The DBG extension (PHP