Merge remote branch 'origin/master' into export_branch

This commit is contained in:
Adnan
2010-07-02 16:23:58 +05:00
18 changed files with 106 additions and 109 deletions

View File

@@ -88,8 +88,12 @@ $Id$
3.3.5.0 (not yet released)
- patch #2932113 [information_schema] Slow export when having lots of
databases, thanks to Stéphane Pontier - shadow_walker
- bug #3022705 [import] Import button does not work in Catalan when there
is no progress bar possible
- bug [replication] Do not offer information_schema in the list of databases
- bug [js] Avoid loading twice a js file
3.3.4.0 (not yet released)
3.3.4.0 (2010-06-28)
- bug #2996161 [import] properly escape import value
- bug #2998889 [import] Import button does not work in Catalan
- [browse] Fix handling of sort order if only column is specified.

View File

@@ -946,7 +946,8 @@ since this link provides funding for phpMyAdmin.
table. To allow the usage of this functionality:
<ul><li>set up <a href="#pmadb">pmadb</a> and the linked-tables infrastructure</li>
<li>put the table name in
<tt>$cfg['Servers'][$i]['table_info']</tt></li>
<tt>$cfg['Servers'][$i]['table_info']</tt> (e.g.
'pma_table_info')</li>
<li>then for each table where you want to use this feature,
click &quot;Structure/Relation view/Choose column to display&quot;
to choose the column.</li>
@@ -1005,7 +1006,8 @@ since this link provides funding for phpMyAdmin.
<ul><li>set up <a href="#pmadb">pmadb</a> and the linked-tables
infrastructure</li>
<li>put the table name in
<tt>$cfg['Servers'][$i]['column_info']</tt></li>
<tt>$cfg['Servers'][$i]['column_info']</tt> (e.g.
'pma_column_info')</li>
<li>to update your PRE-2.5.0 Column_comments Table use this:
<pre>
@@ -1045,6 +1047,7 @@ ALTER TABLE `pma_column_comments`
<ul><li>set up <a href="#pmadb">pmadb</a> and the linked-tables
infrastructure</li>
<li>put the table name in <tt>$cfg['Servers'][$i]['history']</tt>
(e.g. 'pma_history')
</li>
</ul>
</dd>
@@ -1075,7 +1078,7 @@ ALTER TABLE `pma_column_comments`
<ul>
<li>set up <a href="#pmadb">pmadb</a> and the linked-tables infrastructure</li>
<li>put the table name in <tt>$cfg['Servers'][$i]['tracking']</tt></li>
<li>put the table name in <tt>$cfg['Servers'][$i]['tracking']</tt> (e.g. 'pma_tracking')</li>
</ul>
</dd>
@@ -1147,7 +1150,7 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE</pre>
<ul><li>set up <a href="#pmadb">pmadb</a> and the linked-tables
infrastructure</li>
<li>put the table name in <tt>$cfg['Servers'][$i]['designer_coords']</tt>
<li>put the table name in <tt>$cfg['Servers'][$i]['designer_coords']</tt> (e.g. 'pma_designer_coords')
</li>
</ul>
</dd>
@@ -3365,7 +3368,7 @@ have either the <a href="http://pecl.php.net/package/APC">APC</a> extension
<h4 id="login_bug">
<a href="#login_bug">3.1 When using
<abbr title="HyperText Transfer Protocol">HTTP</abbr> authentication, an user
<abbr title="HyperText Transfer Protocol">HTTP</abbr> authentication, a user
who logged out can not log in again in with the same nick.</a></h4>
<p> This is related to the authentication mechanism (protocol) used by
@@ -4334,6 +4337,12 @@ chmod o+rwx tmp
<li>Finally when you browse your table, you'll see in your column a link to stream your data, for example &quot;View image&quot;. A header containing the correct MIME-type will be sent to your browser; this MIME-type was stored at upload time but in case it's incorrect, it's possible to edit it by clicking on the displayed MIME-type.</li>
</ol>
<h4 id="faq6_26">
<a href="#faq6_26">6.26 How can I select a range of rows?</a></h4>
<p> Click the first row of the range, hold the shift key and click the last row of the range. This works everywhere you see rows, for example in Browse mode or on the Structure page.</p>
<h3 id="faqproject">phpMyAdmin project</h3>
<h4 id="faq7_1">
@@ -4372,7 +4381,7 @@ chmod o+rwx tmp
</p>
<p>
You can then put your translations, as a zip file to avoid losing special
characters, on the sourceforge.net <a href="https://sourceforge.net/tracker/?group_id=23067&atid=387645">translation tracker.</a>
characters, on the sourceforge.net <a href="https://sourceforge.net/tracker/?group_id=23067&amp;atid=387645">translation tracker.</a>
</p>
<p>
It would be a good idea to subscribe to the <a href="https://lists.sourceforge.net/lists/listinfo/phpmyadmin-translators">phpmyadmin-translators</a> mailing

View File

@@ -867,9 +867,9 @@ function PMA_markRowsInit() {
checkbox.checked = marked_row[unique_id];
if (typeof(event) == 'object') {
table = this.parentNode;
i = 0;
while (table.tagName.toLowerCase() != 'table' && i < 20) {
i++;
parentTableLimit = 0;
while (table.tagName.toLowerCase() != 'table' && parentTableLimit < 20) {
parentTableLimit++;
table = table.parentNode;
}
@@ -884,7 +884,7 @@ function PMA_markRowsInit() {
}
while (i != this.rowIndex) {
table.rows[i].onmousedown();
$(table.rows[i]).mousedown();
if (i < this.rowIndex) {
i++;
} else {

View File

@@ -2,8 +2,6 @@
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Set of functions used to run cookie based authentication.
* Thanks to Piotr Roszatycki <d3xter at users.sourceforge.net> and
* Dan Wilson who built this patch for the Debian package.
*
* @package phpMyAdmin-Auth-Cookie
* @version $Id$

View File

@@ -390,7 +390,7 @@ function Swekey_GetFastHalfRndToken()
$_SESSION['rnd-token-date'] = time();
if (! empty($cachefile))
{
// we unlink the file so no possible tempfile race attack (thanks Thijs)
// we unlink the file so no possible tempfile race attack
unlink($cachefile);
$file = fopen($cachefile , "x");
if ($file != FALSE)

View File

@@ -563,13 +563,6 @@ $GLOBALS['footnotes'] = array();
/******************************************************************************/
/* loading language file LABEL_loading_language_file */
/**
* Added messages while developing:
*/
if (file_exists('./lang/added_messages.php')) {
include './lang/added_messages.php';
}
/**
* lang detection is done here
*/

View File

@@ -2,7 +2,6 @@
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
*
* @version $Id$
* @package phpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
@@ -94,9 +93,9 @@ if ($_SESSION[$SESSION_KEY]["handler"]!="noplugin") {
window.setTimeout(perform_upload, 1000);
<?php
} else { // no plugin avaliable
} else { // no plugin available
?>
$('#upload_form_status_info').html('<img src="<?php echo $GLOBALS['pmaThemeImage'];?>ajax_clock_small.gif" alt="ajax clock" /> <?php echo __('Please be patient, the file is being uploaded. Details about the upload are not available.') . PMA_showDocu('faq2_9'); ?>');
$('#upload_form_status_info').html('<img src="<?php echo $GLOBALS['pmaThemeImage'];?>ajax_clock_small.gif" alt="ajax clock" /> <?php echo PMA_jsFormat(__('Please be patient, the file is being uploaded. Details about the upload are not available.')) . PMA_showDocu('faq2_9'); ?>');
$('#upload_form_status').css("display", "none");
<?php
} // else

View File

@@ -535,7 +535,7 @@ function PMA_getTableDef($db, $table, $crlf, $error_url, $show_dates = false, $a
$schema_create .= 'DROP TABLE IF EXISTS ' . PMA_backquote($table, $sql_backquotes) . ';' . $crlf;
}
// Steve Alberty's patch for complete table dump,
// Complete table dump,
// Whether to quote table and fields names or not
if ($sql_backquotes) {
PMA_DBI_query('SET SQL_QUOTE_SHOW_CREATE = 1');

View File

@@ -66,6 +66,9 @@ $GLOBALS['js_events'][] = array(
* upgrade phpMyAdmin are not stuck with older .js files in their
* browser cache. This produces an HTTP 304 request for each file.
*/
// avoid loading twice a js file
$GLOBALS['js_include'] = array_unique($GLOBALS['js_include']);
foreach ($GLOBALS['js_include'] as $js_script_file) {
if (strpos($js_script_file, '?') === FALSE) {
echo '<script src="./js/' . $js_script_file . '?ts=' . filemtime('./js/' . $js_script_file) . '" type="text/javascript"></script>' . "\n";

View File

@@ -41,8 +41,6 @@ function PMA_outBufferModeGet()
// any right frame file in phpMyAdmin will not be handled properly by
// the browser. My fix was to check the ini file within the
// PMA_outBufferModeGet() function.
//
// (Patch by Garth Gillespie, modified by Marc Delisle)
$mode = 0;
} elseif (function_exists('ob_get_level') && ob_get_level() > 0) {
// If output buffering is enabled in php.ini it's not possible to

View File

@@ -965,7 +965,6 @@ function PMA_foreignDropdown($disp_row, $foreign_field, $foreign_display, $data,
/**
* Gets foreign keys in preparation for a drop-down selector
* Thanks to <markus@noga.de>
*
* @uses PMA_Table::countRecords()
* @uses PMA_backquote()

View File

@@ -20,6 +20,9 @@ function PMA_replication_db_multibox()
$multi_values .= '<select name="db_select[]" size="6" multiple="multiple" id="db_select">';
foreach ($GLOBALS['pma']->databases as $current_db) {
if ('information_schema' == $current_db) {
continue;
}
if (! empty($selectall) || (isset($tmp_select) && strpos(' ' . $tmp_select, '|' . $current_db . '|'))) {
$is_selected = ' selected="selected"';
} else {

138
po/fr.po
View File

@@ -4,13 +4,13 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-06-13 09:03-0400\n"
"PO-Revision-Date: 2010-06-08 18:57+0200\n"
"Last-Translator: Marc <marc@infomarc.info>\n"
"PO-Revision-Date: 2010-07-01 19:56+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: french <fr@li.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -224,7 +224,7 @@ msgstr "La base de données %s a été copiée sur %s"
#: db_operations.php:412
msgid "Rename database to"
msgstr "<b>Changer le nom</b> de la base de données pour"
msgstr "Changer le nom de la base de données pour"
#: db_operations.php:417 server_processlist.php:57
msgid "Command"
@@ -287,7 +287,7 @@ msgstr "État"
#: db_operations.php:548
msgctxt "BLOB repository"
msgid "Enabled"
msgstr "activé"
msgstr "Activé"
#: db_operations.php:552
msgid "Disable"
@@ -305,7 +305,7 @@ msgstr "Réparer"
#: db_operations.php:574
msgctxt "BLOB repository"
msgid "Disabled"
msgstr "désactivé"
msgstr "Désactivé"
#: db_operations.php:578
msgid "Enable"
@@ -428,7 +428,7 @@ msgstr "Ajouter"
#: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555
msgid "And"
msgstr "et"
msgstr "Et"
#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560
msgid "Del"
@@ -888,8 +888,8 @@ msgstr "Retour"
#: index.php:190
msgid "phpMyAdmin is more friendly with a <b>frames-capable</b> browser."
msgstr ""
"L'utilisation de phpMyAdmin est plus aisée avec un navigateur <b>supportant "
"les cadres</b>."
"phpMyAdmin est plus convivial avec un navigateur <b>supportant les "
"cadres</b>."
#: js/messages.php:25 server_synchronize.php:345 server_synchronize.php:357
#: server_synchronize.php:373 server_synchronize.php:380
@@ -989,7 +989,7 @@ msgstr "Fonctions relationnelles"
#: js/messages.php:59 libraries/relation.lib.php:101
#: libraries/relation.lib.php:108
msgid "Disabled"
msgstr "désactivé"
msgstr "Désactivé"
#: js/messages.php:60
msgid "Select referenced key"
@@ -1697,7 +1697,7 @@ msgstr "Documentation"
#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
#: server_processlist.php:60 server_status.php:358
msgid "SQL query"
msgstr "requête SQL"
msgstr "Requête SQL"
#: libraries/common.lib.php:634
msgid "MySQL said: "
@@ -1942,7 +1942,7 @@ msgstr "Modifier le mot de passe"
#: libraries/display_change_password.lib.php:35
#: libraries/replication_gui.lib.php:345 server_privileges.php:807
msgid "No Password"
msgstr "aucun mot de passe"
msgstr "Aucun mot de passe"
#: libraries/display_change_password.lib.php:41
#: libraries/replication_gui.lib.php:59 libraries/replication_gui.lib.php:60
@@ -1965,7 +1965,7 @@ msgstr "Hachage du mot de passe"
#: libraries/display_change_password.lib.php:66
msgid "MySQL 4.0 compatible"
msgstr "compatible MySQL 4.0"
msgstr "Compatible MySQL 4.0"
#: libraries/display_change_password.lib.php:72
#: libraries/replication_gui.lib.php:360 server_privileges.php:822
@@ -1989,7 +1989,7 @@ msgstr "Créer"
#: libraries/display_create_database.lib.php:40 server_privileges.php:113
#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr "aucun privilège"
msgstr "Aucun privilège"
#: libraries/display_create_table.lib.php:41
msgid "Table must have at least one column."
@@ -2075,7 +2075,7 @@ msgstr "Compression"
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr "aucune"
msgstr "Aucune"
#: libraries/display_export.lib.php:247
msgid "\"zipped\""
@@ -2175,7 +2175,7 @@ msgstr "Format du fichier d'importation"
#: libraries/display_pdf_schema.lib.php:11
msgid "Display PDF schema"
msgstr "<b>Afficher le schéma</b> en PDF"
msgstr "Afficher le schéma en PDF"
#: libraries/display_pdf_schema.lib.php:33
msgid "Show grid"
@@ -2705,7 +2705,7 @@ msgstr ""
#: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88
#: tbl_printview.php:376 tbl_structure.php:737
msgid "Format"
msgstr "format"
msgstr "Format"
#: libraries/export/csv.php:17 libraries/import/csv.php:22
msgid "CSV"
@@ -3163,7 +3163,7 @@ msgstr "Conversion de l'encodage"
#: libraries/kanji-encoding.lib.php:145
msgctxt "None encoding conversion"
msgid "None"
msgstr "aucune"
msgstr "Aucune"
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:151
@@ -3204,15 +3204,15 @@ msgstr "Binaire"
#: libraries/mysql_charsets.lib.php:213
msgid "Bulgarian"
msgstr "bulgare"
msgstr "Bulgare"
#: libraries/mysql_charsets.lib.php:217 libraries/mysql_charsets.lib.php:342
msgid "Simplified Chinese"
msgstr "chinois simplifié"
msgstr "Chinois simplifié"
#: libraries/mysql_charsets.lib.php:219 libraries/mysql_charsets.lib.php:362
msgid "Traditional Chinese"
msgstr "chinois traditionnel"
msgstr "Chinois traditionnel"
#: libraries/mysql_charsets.lib.php:223 libraries/mysql_charsets.lib.php:409
msgid "case-insensitive"
@@ -3224,19 +3224,19 @@ msgstr "sensible à la casse"
#: libraries/mysql_charsets.lib.php:229
msgid "Croatian"
msgstr "croate"
msgstr "Croate"
#: libraries/mysql_charsets.lib.php:232
msgid "Czech"
msgstr "tchèque"
msgstr "Tchèque"
#: libraries/mysql_charsets.lib.php:235
msgid "Danish"
msgstr "danois"
msgstr "Danois"
#: libraries/mysql_charsets.lib.php:238
msgid "English"
msgstr "anglais"
msgstr "Anglais"
#: libraries/mysql_charsets.lib.php:241
msgid "Esperanto"
@@ -3244,11 +3244,11 @@ msgstr "Espéranto"
#: libraries/mysql_charsets.lib.php:244
msgid "Estonian"
msgstr "estonien"
msgstr "Estonien"
#: libraries/mysql_charsets.lib.php:247 libraries/mysql_charsets.lib.php:250
msgid "German"
msgstr "allemand"
msgstr "Allemand"
#: libraries/mysql_charsets.lib.php:247
msgid "dictionary"
@@ -3260,35 +3260,35 @@ msgstr "annuaire téléphonique"
#: libraries/mysql_charsets.lib.php:253
msgid "Hungarian"
msgstr "hongrois"
msgstr "Hongrois"
#: libraries/mysql_charsets.lib.php:256
msgid "Icelandic"
msgstr "islandais"
msgstr "Islandais"
#: libraries/mysql_charsets.lib.php:259 libraries/mysql_charsets.lib.php:349
msgid "Japanese"
msgstr "japonais"
msgstr "Japonais"
#: libraries/mysql_charsets.lib.php:262
msgid "Latvian"
msgstr "letton"
msgstr "Letton"
#: libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "lituanien"
msgstr "Lituanien"
#: libraries/mysql_charsets.lib.php:268 libraries/mysql_charsets.lib.php:371
msgid "Korean"
msgstr "coréen"
msgstr "Coréen"
#: libraries/mysql_charsets.lib.php:271
msgid "Persian"
msgstr "perse"
msgstr "Perse"
#: libraries/mysql_charsets.lib.php:274
msgid "Polish"
msgstr "polonais"
msgstr "Polonais"
#: libraries/mysql_charsets.lib.php:277 libraries/mysql_charsets.lib.php:325
msgid "West European"
@@ -3296,39 +3296,39 @@ msgstr "Europe de l'ouest"
#: libraries/mysql_charsets.lib.php:280
msgid "Romanian"
msgstr "roumain"
msgstr "Roumain"
#: libraries/mysql_charsets.lib.php:283
msgid "Slovak"
msgstr "slovaque"
msgstr "Slovaque"
#: libraries/mysql_charsets.lib.php:286
msgid "Slovenian"
msgstr "slovène"
msgstr "Slovène"
#: libraries/mysql_charsets.lib.php:289
msgid "Spanish"
msgstr "espagnol"
msgstr "Espagnol"
#: libraries/mysql_charsets.lib.php:292
msgid "Traditional Spanish"
msgstr "espagnol traditionnel"
msgstr "Espagnol traditionnel"
#: libraries/mysql_charsets.lib.php:295 libraries/mysql_charsets.lib.php:392
msgid "Swedish"
msgstr "suédois"
msgstr "Suédois"
#: libraries/mysql_charsets.lib.php:298 libraries/mysql_charsets.lib.php:395
msgid "Thai"
msgstr "thaï"
msgstr "Thaï"
#: libraries/mysql_charsets.lib.php:301 libraries/mysql_charsets.lib.php:389
msgid "Turkish"
msgstr "turc"
msgstr "Turc"
#: libraries/mysql_charsets.lib.php:304 libraries/mysql_charsets.lib.php:386
msgid "Ukrainian"
msgstr "ukrainien"
msgstr "Ukrainien"
#: libraries/mysql_charsets.lib.php:307 libraries/mysql_charsets.lib.php:316
msgid "Unicode"
@@ -3346,39 +3346,39 @@ msgstr "Europe centrale"
#: libraries/mysql_charsets.lib.php:337
msgid "Russian"
msgstr "russe"
msgstr "Russe"
#: libraries/mysql_charsets.lib.php:354
msgid "Baltic"
msgstr "baltique"
msgstr "Baltique"
#: libraries/mysql_charsets.lib.php:359
msgid "Armenian"
msgstr "arménien"
msgstr "Arménien"
#: libraries/mysql_charsets.lib.php:365
msgid "Cyrillic"
msgstr "cyrillique"
msgstr "Cyrillique"
#: libraries/mysql_charsets.lib.php:368
msgid "Arabic"
msgstr "arabe"
msgstr "Arabe"
#: libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "hébreu"
msgstr "Hébreu"
#: libraries/mysql_charsets.lib.php:377
msgid "Georgian"
msgstr "géorgien"
msgstr "Géorgien"
#: libraries/mysql_charsets.lib.php:380
msgid "Greek"
msgstr "grec"
msgstr "Grec"
#: libraries/mysql_charsets.lib.php:383
msgid "Czech-Slovak"
msgstr "tchèque-slovaque"
msgstr "Tchèque-slovaque"
#: libraries/mysql_charsets.lib.php:398 libraries/mysql_charsets.lib.php:405
msgid "unknown"
@@ -3416,7 +3416,7 @@ msgstr "OK"
#: libraries/relation.lib.php:100
msgid "Enabled"
msgstr "activé"
msgstr "Activé"
#: libraries/relation.lib.php:123
msgid "Display Features"
@@ -3833,7 +3833,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:393
msgctxt "for default"
msgid "None"
msgstr "aucune"
msgstr "Aucune"
#: libraries/tbl_properties.inc.php:394
msgid "As defined:"
@@ -4898,7 +4898,7 @@ msgstr "Base de données pour cet utilisateur"
#: server_privileges.php:2037
msgctxt "Create none database for user"
msgid "None"
msgstr "aucune"
msgstr "Aucune"
#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
@@ -6261,7 +6261,7 @@ msgstr "Secret Blowfish"
#: setup/lib/messages.inc.php:26
msgid "Highlight selected rows"
msgstr "(utilisé quand on clique sur une ligne)"
msgstr "Utilisé quand on clique sur une ligne"
#: setup/lib/messages.inc.php:27
msgid "Row marker"
@@ -6328,7 +6328,7 @@ msgstr "Édition des colonnes CHAR"
#: setup/lib/messages.inc.php:37
msgid "Number of columns for CHAR/VARCHAR textareas"
msgstr "(colonnes CHAR/VARCHAR)"
msgstr "Nombre de colonnes pour les textareas CHAR/VARCHAR)"
#: setup/lib/messages.inc.php:38
msgid "CHAR textarea columns"
@@ -6336,7 +6336,7 @@ msgstr "Taille horizontale pour un textarea"
#: setup/lib/messages.inc.php:39
msgid "Number of rows for CHAR/VARCHAR textareas"
msgstr "(colonnes CHAR/VARCHAR)"
msgstr "Nombre de lignes pour les textareas CHAR/VARCHAR)"
#: setup/lib/messages.inc.php:40
msgid "CHAR textarea rows"
@@ -6412,7 +6412,7 @@ msgstr ""
#: setup/lib/messages.inc.php:59
msgid "Show database listing as a list instead of a drop down"
msgstr "...au lieu d'un menu déroulant"
msgstr "Montrer la liste des bases de données au lieu d'un menu déroulant"
#: setup/lib/messages.inc.php:60
msgid "Display databases as a list"
@@ -6420,7 +6420,7 @@ msgstr "Affiche les bases de données sous forme de liste"
#: setup/lib/messages.inc.php:62
msgid "Show server listing as a list instead of a drop down"
msgstr "...au lieu d'un menu déroulant"
msgstr "Montrer la liste des serveurs au lieu d'un menu déroulant"
#: setup/lib/messages.inc.php:63
msgid "Display servers as a list"
@@ -6538,8 +6538,8 @@ msgid ""
"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
"the referenced data, [kbd]id[/kbd] is the key value"
msgstr ""
"[kbd]content[/kbd] signifie la donnée référencée, [kbd]id[/kbd] représente "
"la valeur de la clé"
"Ordre du tri pour les éléments de clé étrangère; [kbd]content[/kbd] signifie "
"la donnée référencée, [kbd]id[/kbd] représente la valeur de la clé"
#: setup/lib/messages.inc.php:97
msgid "Foreign key dropdown order"
@@ -6841,7 +6841,7 @@ msgstr "Cible de l'icône d'accès rapide"
#: setup/lib/messages.inc.php:169
msgid "Show logo in left frame"
msgstr "...dans le panneau de navigation"
msgstr "Montrer le logo dans le panneau de navigation"
#: setup/lib/messages.inc.php:170
msgid "Display logo"
@@ -6849,7 +6849,7 @@ msgstr "Affichage du logo"
#: setup/lib/messages.inc.php:171
msgid "Display server choice at the top of the left frame"
msgstr "...en haut du panneau de navigation"
msgstr "Montrer le choix de serveurs au haut du panneau de navigation"
#: setup/lib/messages.inc.php:172
msgid "Display servers selection"
@@ -6857,7 +6857,7 @@ msgstr "Affiche la liste des serveurs"
#: setup/lib/messages.inc.php:173
msgid "String that separates databases into different tree levels"
msgstr "...pour la séparation en niveaux"
msgstr "Chaîne qui sépare les noms de bases de données en niveaux"
#: setup/lib/messages.inc.php:174
msgid "Database tree separator"
@@ -6889,7 +6889,7 @@ msgstr "Nombre de niveaux pour l'arborescence des tables"
#: setup/lib/messages.inc.php:180
msgid "String that separates tables into different tree levels"
msgstr "...pour la séparation en niveaux"
msgstr "Chaîne qui sépare les noms de table en niveaux"
#: setup/lib/messages.inc.php:181
msgid "Table tree separator"
@@ -6913,7 +6913,7 @@ msgstr "Fenêtre-cible pour la page ouverte lors d'un clic sur le logo"
#: setup/lib/messages.inc.php:185
msgid "Highlight server under the mouse cursor"
msgstr "...dans le panneau de navigation"
msgstr "Faire ressortir le nom du serveur dans le panneau de navigation"
#: setup/lib/messages.inc.php:186
msgid "Enable highlighting"
@@ -6988,7 +6988,7 @@ msgstr "Durée de validité de la connexion (mode cookie)"
#: setup/lib/messages.inc.php:200
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr "...en nombre de caractères"
msgstr "Nombre maximum de caractères quand une requête SQL est affichée"
#: setup/lib/messages.inc.php:201
msgid "Maximum displayed SQL length"

View File

@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2010-06-13 09:03-0400\n"
"PO-Revision-Date: 2010-06-17 01:10+0200\n"
"PO-Revision-Date: 2010-06-29 22:42+0200\n"
"Last-Translator: Domen <dbc334@gmail.com>\n"
"Language-Team: slovenian <sl@li.org>\n"
"Language: sl\n"
@@ -193,7 +193,7 @@ msgstr "Natisni"
#: db_export.php:29
msgid "View dump (schema) of database"
msgstr "Preglej povzetek stanja podatkovne baze"
msgstr "Preglej povzetek stanja podatkovne zbirke"
#: db_export.php:33 db_printview.php:96 db_qbe.php:102 db_structure.php:51
#: db_tracking.php:35 export.php:359 navigation.php:332

View File

@@ -7,9 +7,6 @@
#
# Takes input from STDIN, sends output to STDOUT
#
# By Robin Johnson robbat2@users.sourceforge.net
# Many thanks to Patrick Lougheed pat@tfsb.org
#
while(<>)
{ s/\$cfg(\w+)/\$cfg\[\'$1\'\]/g;

View File

@@ -197,7 +197,6 @@ if (isset($where_clause)) {
$rows = array_fill(0, $cfg['InsertRows'], false);
}
// <markus@noga.de>
// retrieve keys into foreign fields, if any
$foreigners = PMA_getForeigners($db, $table);
@@ -507,7 +506,6 @@ foreach ($rows as $row_id => $vrow) {
// The function column
// -------------------
// Change by Bernard M. Piller <bernard@bmpsystems.com>
// We don't want binary data to be destroyed
// Note: from the MySQL manual: "BINARY doesn't affect how the column is
// stored or retrieved" so it does not mean that the contents is
@@ -831,7 +829,6 @@ foreach ($rows as $row_id => $vrow) {
</select>
<?php
}
// Change by Bernard M. Piller <bernard@bmpsystems.com>
// We don't want binary data destroyed
elseif ($field['is_binary'] || $field['is_blob']) {
if (($cfg['ProtectBinary'] && $field['is_blob'])

View File

@@ -53,8 +53,7 @@ PMA_DBI_select_db($db);
/**
* Multi-tables printview thanks to Christophe Gesche from the "MySQL Form
* Generator for PHPMyAdmin" (http://sourceforge.net/projects/phpmysqlformgen/)
* Multi-tables printview
*/
if (isset($selected_tbl) && is_array($selected_tbl)) {
$the_tables = $selected_tbl;

View File

@@ -95,7 +95,6 @@ if (!isset($param) || $param[0] == '') {
PMA_DBI_free_result($result);
unset($result, $type);
// <markus@noga.de>
// retrieve keys into foreign fields, if any
// check also foreigners even if relwork is FALSE (to get
// foreign keys from innodb)
@@ -183,7 +182,6 @@ while (list($operator) = each($GLOBALS['cfg']['UnaryOperators'])) {
</td>
<td>
<?php
// <markus@noga.de>
$field = $fields_list[$i];
$foreignData = PMA_getForeignData($foreigners, $field, false, '', '');