diff --git a/ChangeLog b/ChangeLog index c226dd6ec9..14c6708482 100644 --- a/ChangeLog +++ b/ChangeLog @@ -42,8 +42,12 @@ VerboseMultiSubmit, ReplaceHelpImg + [import] New plugin: import mediawiki + Add Ajax support to Fast filter in order to search the term in all database tables - bug #3535015 [navi] DbFilter, TableFilter clear button hidden on Chrome ++ rfe #3528994 [interface] Allow wrapping possibly long values in replication-status table 3.5.3.0 (not yet released) +- bug #3539044 [interface] Browse mode "Show" button gives blank page if no results anymore +- bug #3534979 [interface] Copy Database Ajax feedback vanishes long before copying is done +- bug #3527531 [interface] GC-maxlifetime warning incorrectly displayed 3.5.2.0 (not yet released) - bug #3521416 [interface] JS error when editing index @@ -60,6 +64,8 @@ VerboseMultiSubmit, ReplaceHelpImg - bug #3534121 [config] duplicate line in config.sample.inc.php - bug #3534311 [interface] Grid editing incorrectly parses ENUM/SET values - bug #3510196 [core] More clever URL rewriting with ForceSSL +- bug #3539044 [interface] Browse mode "Show" button gives blank page if no results anymore +- bug #3534979 [interface] Copy Database Ajax feedback vanishes long before copying is done 3.5.1.0 (2012-05-03) - bug #3510784 [edit] Limit clause ignored when sort order is remembered diff --git a/db_operations.php b/db_operations.php index 7ce004833c..79a6129858 100644 --- a/db_operations.php +++ b/db_operations.php @@ -134,6 +134,7 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) { $tables_full = PMA_DBI_get_tables_full($db); $views = array(); + require_once "libraries/plugin_interface.lib.php"; // remove all foreign key constraints, otherwise we can get errors $export_sql_plugin = PMA_getPlugin( "export", diff --git a/import_status.php b/import_status.php index d056c3e1d4..4e06ca4103 100644 --- a/import_status.php +++ b/import_status.php @@ -25,12 +25,12 @@ if (version_compare(PHP_VERSION, '5.4.0', '>=') ) { $sessionupload = array(); - $prefix = ini_get('session.upload_progress.prefix'); + define('UPLOAD_PREFIX', ini_get('session.upload_progress.prefix')); session_start(); foreach ($_SESSION as $key => $value) { // only copy session-prefixed data - if (substr($key, 0, strlen($prefix)) == $prefix) { + if (substr($key, 0, strlen(UPLOAD_PREFIX)) == UPLOAD_PREFIX) { $sessionupload[$key] = $value; } } @@ -54,6 +54,15 @@ if (defined('SESSIONUPLOAD')) { foreach ($sessionupload as $key => $value) { $_SESSION[$key] = $value; } + + // remove session upload data that are not set anymore + foreach ($_SESSION as $key => $value) { + if (substr($key, 0, strlen(UPLOAD_PREFIX)) == UPLOAD_PREFIX + && ! isset($sessionupload[$key]) + ) { + unset($_SESSION[$key]); + } + } } /** diff --git a/js/db_operations.js b/js/db_operations.js index 42c0f4552c..3d1dd12866 100644 --- a/js/db_operations.js +++ b/js/db_operations.js @@ -45,7 +45,7 @@ $(function() { button_options[PMA_messages['strNo']] = function() { $(this).dialog("close").remove(); } $form.PMA_confirm(question, $form.attr('action'), function(url) { - PMA_ajaxShowMessage(PMA_messages['strRenamingDatabases']); + PMA_ajaxShowMessage(PMA_messages['strRenamingDatabases'], false); $.get(url, $("#rename_db_form").serialize() + '&is_js_confirmed=1', function(data) { if(data.success == true) { @@ -84,7 +84,7 @@ $(function() { $("#copy_db_form.ajax").live('submit', function(event) { event.preventDefault(); - var $msgbox = PMA_ajaxShowMessage(PMA_messages['strCopyingDatabase']); + PMA_ajaxShowMessage(PMA_messages['strCopyingDatabase'], false); var $form = $(this); @@ -94,7 +94,7 @@ $(function() { // use messages that stay on screen $('div.success, div.error').fadeOut(); if(data.success == true) { - $('#floating_menubar').after(data.message); + PMA_ajaxShowMessage(data.message); if( $("#checkbox_switch").is(":checked")) { window.parent.db = data.newname; window.parent.refreshMain(); @@ -106,10 +106,8 @@ $(function() { window.parent.refreshNavigation(true); } } else { - $('#floating_menubar').after(data.error); + PMA_ajaxShowMessage(data.error, false); } - - PMA_ajaxRemoveMessage($msgbox); }) // end $.get }) // end copy database diff --git a/libraries/DisplayResults.class.php b/libraries/DisplayResults.class.php index c4eb12fea0..427987e2f2 100644 --- a/libraries/DisplayResults.class.php +++ b/libraries/DisplayResults.class.php @@ -2506,7 +2506,7 @@ class PMA_DisplayResults * * @return array 5 element array - $edit_url, $copy_url, * $edit_str, $copy_str, $edit_anchor_class - * + * * @access private * * @see _getTableBody() @@ -2558,7 +2558,7 @@ class PMA_DisplayResults * * @return array 4 element array - $del_query, * $del_url, $del_str, $js_conf - * + * * @access private * * @see _getTableBody() @@ -3069,7 +3069,8 @@ class PMA_DisplayResults // (unless it's a link-type transformation) if (PMA_strlen($column) > $GLOBALS['cfg']['LimitChars'] && ($_SESSION['tmp_user_values']['display_text'] == self::DISPLAY_PARTIAL_TEXT) - && ! strpos($transformation_plugin, 'Link') === true + && gettype($transformation_plugin) == "object" + && ! strpos($transformation_plugin::getName(), 'Link') === true ) { $column = PMA_substr($column, 0, $GLOBALS['cfg']['LimitChars']) . '...'; @@ -3326,7 +3327,7 @@ class PMA_DisplayResults * @param string $operation edit/copy/delete * * @return string $links_html html content - * + * * @access private * * @see _getVerticalTable() @@ -4508,7 +4509,9 @@ class PMA_DisplayResults $result .= ']'; - if (strpos($transformation_plugin, 'Octetstream')) { + if (gettype($transformation_plugin) == "object" + && strpos($transformation_plugin::getMIMESubtype(), 'Octetstream') + ) { $result = $content; } diff --git a/libraries/display_import_ajax.lib.php b/libraries/display_import_ajax.lib.php index 8d0d4156e3..c98d8963b4 100644 --- a/libraries/display_import_ajax.lib.php +++ b/libraries/display_import_ajax.lib.php @@ -121,6 +121,8 @@ function PMA_import_nopluginCheck() function PMA_importAjaxStatus($id) { header('Content-type: application/json'); - echo json_encode(PMA_getUploadStatus($id)); + echo json_encode( + $_SESSION[$GLOBALS['SESSION_KEY']]['handler']::getUploadStatus($id) + ); } ?> diff --git a/libraries/insert_edit.lib.php b/libraries/insert_edit.lib.php index c6d94b441e..98937931d4 100644 --- a/libraries/insert_edit.lib.php +++ b/libraries/insert_edit.lib.php @@ -140,7 +140,7 @@ function PMA_showEmptyResultMessageOrSetUniqueCondition($rows, $key_id, // No row returned if (! $rows[$key_id]) { unset($rows[$key_id], $where_clause_array[$key_id]); - PMA_showMessage( + echo PMA_getMessage( __('MySQL returned an empty result set (i.e. zero rows).'), $local_query ); @@ -675,7 +675,7 @@ function PMA_getValueColumn($column, $backup_field, $column_name_appendix, $html_output .= PMA_getPmaTypeSet( $column, $extracted_columnspec, $backup_field, $column_name_appendix, $unnullify_trigger, $tabindex, - $tabindex_for_value, $idindex + $tabindex_for_value, $idindex, $data ); } elseif ($column['is_binary'] || $column['is_blob']) { @@ -999,13 +999,14 @@ function PMA_getRadioButtonDependingOnLength( * @param integer $tabindex tab index * @param integer $tabindex_for_value offset for the values tabindex * @param integer $idindex id index + * @param array $data description of the column field * * @return string an html snippet */ function PMA_getPmaTypeSet( $column, $extracted_columnspec, $backup_field, $column_name_appendix, $unnullify_trigger, $tabindex, - $tabindex_for_value, $idindex + $tabindex_for_value, $idindex, $data ) { list($column_set_values, $select_size) = PMA_getColumnSetValueAndSelectSize( $column, $extracted_columnspec @@ -1504,6 +1505,9 @@ function PMA_getAfterInsertDropDown($where_clause, $after_insert, $found_unique_ //if (preg_match('@^[\s]*`[^`]*` = [0-9]+@', $where_clause)) { // in 2.9.0, we are looking for `table_name`.`field_name` = numeric_value $is_numeric = false; + if (! is_array($where_clause)) { + $where_clause = array($where_clause); + } for ($i = 0; $i < count($where_clause); $i++) { $is_numeric = preg_match( '@^[\s]*`[^`]*`[\.]`[^`]*` = [0-9]+@', diff --git a/libraries/replication_gui.lib.php b/libraries/replication_gui.lib.php index ca8ed5059f..58317e5770 100644 --- a/libraries/replication_gui.lib.php +++ b/libraries/replication_gui.lib.php @@ -143,7 +143,17 @@ function PMA_replication_print_status_table($type, $hidden = false, $title = tru } else { echo ''; } - echo ${"server_{$type}_replication"}[0][$variable]; + // allow wrapping long table lists into multiple lines + static $variables_wrap = array( + 'Replicate_Do_DB', 'Replicate_Ignore_DB', + 'Replicate_Do_Table', 'Replicate_Ignore_Table', + 'Replicate_Wild_Do_Table', 'Replicate_Wild_Ignore_Table'); + if (in_array($variable, $variables_wrap)) { + echo str_replace(',', ', ', ${"server_{$type}_replication"}[0][$variable]); + } + else { + echo ${"server_{$type}_replication"}[0][$variable]; + } echo ''; echo ' '; diff --git a/main.php b/main.php index 1aca33fc14..9586c0d5a9 100644 --- a/main.php +++ b/main.php @@ -299,7 +299,7 @@ if (! @extension_loaded('mbstring')) { */ $gc_time = (int)@ini_get('session.gc_maxlifetime'); if ($gc_time < $GLOBALS['cfg']['LoginCookieValidity'] ) { - trigger_error(__('Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie validity configured in phpMyAdmin, because of this, your login will expire sooner than configured in phpMyAdmin.'), E_USER_WARNING); + trigger_error(__('Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie validity configured in phpMyAdmin, because of this, your login will expire sooner than configured in phpMyAdmin.'), E_USER_WARNING); } /** diff --git a/po/af.po b/po/af.po index 3c583ce28e..a7564d4f92 100644 --- a/po/af.po +++ b/po/af.po @@ -9179,7 +9179,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/ar.po b/po/ar.po index 60a05b2917..b7b4356908 100644 --- a/po/ar.po +++ b/po/ar.po @@ -9156,7 +9156,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/az.po b/po/az.po index 2e5e4e455b..50c1e6233a 100644 --- a/po/az.po +++ b/po/az.po @@ -9349,7 +9349,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/be.po b/po/be.po index 8b8a8063fe..124c3bed71 100644 --- a/po/be.po +++ b/po/be.po @@ -9642,7 +9642,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/be@latin.po b/po/be@latin.po index 2cb70c63cc..50eac77883 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -9633,7 +9633,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/bg.po b/po/bg.po index 2df5430288..0e9bace710 100644 --- a/po/bg.po +++ b/po/bg.po @@ -8895,7 +8895,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/bn.po b/po/bn.po index 3b90458ef4..29ff755065 100644 --- a/po/bn.po +++ b/po/bn.po @@ -9375,7 +9375,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/br.po b/po/br.po index 8e20b20be7..23cc0085f5 100644 --- a/po/br.po +++ b/po/br.po @@ -8928,7 +8928,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/bs.po b/po/bs.po index 80e0ba90cc..2ea8b2a533 100644 --- a/po/bs.po +++ b/po/bs.po @@ -9348,7 +9348,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/ca.po b/po/ca.po index 51c9b79d08..3b916adb98 100644 --- a/po/ca.po +++ b/po/ca.po @@ -9182,12 +9182,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "El paràmetre de PHP [a@http://php.net/manual/en/session.configuration." -"php#ini.session.gc-maxlifetime@]session.gc_maxlifetime[/a] és menor que la " +"php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] és menor que la " "caducitat de galetes -cookies- configurat a phpMyAdmin, degut a aixó, la " "vostra conenexió caducarà abans del establert a phpMyAdmin." diff --git a/po/ckb.po b/po/ckb.po index 2c098276d6..a232f016a8 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -8617,7 +8617,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/cs.po b/po/cs.po index f2dc473f1d..56100a028d 100644 --- a/po/cs.po +++ b/po/cs.po @@ -9128,12 +9128,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "Vaše nastavení PHP ([a@http://php.net/manual/en/session.configuration." -"php#ini.session.gc-maxlifetime@]session.gc_maxlifetime[/a]) je menší než " +"php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a]) je menší než " "platnost cookies nastavená v phpMyAdminovi. Z tohoto důvodu bude vaše " "přilášení neplatné dříve, než je nastaveno v phpMyAdminovi." diff --git a/po/cy.po b/po/cy.po index beb7094642..3ef8952c4e 100644 --- a/po/cy.po +++ b/po/cy.po @@ -9256,7 +9256,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/da.po b/po/da.po index 582b37a3ce..2eef371b06 100644 --- a/po/da.po +++ b/po/da.po @@ -9178,12 +9178,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "Din PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] er mindre end cooki " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] er mindre end cooki " "gyldighed konfigureret i phpMyAdmin; på grund af dette vil din login session " "udløbe tidligere end konfigureret i phpMyAdmin" diff --git a/po/de.po b/po/de.po index 4a5f539483..72b786d15c 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-06-28 09:04+0200\n" -"PO-Revision-Date: 2012-06-24 16:15+0200\n" +"PO-Revision-Date: 2012-07-01 18:22+0200\n" "Last-Translator: J. M. \n" "Language-Team: none\n" "Language: de\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Weblate 1.0\n" +"X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 #: libraries/DisplayResults.class.php:577 server_privileges.php:1838 @@ -551,13 +551,13 @@ msgstr[0] "Insgesamt %s Treffer" msgstr[1] "Insgesamt %s Treffer" #: db_search.php:296 -#, fuzzy, php-format +#, php-format #| msgid "%1$s match inside table %2$s" #| msgid_plural "%1$s matches inside table %2$s" msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" -msgstr[0] "%1$s Treffer in der Tabelle %2$s" -msgstr[1] "%1$s Treffer in der Tabelle %2$s" +msgstr[0] "%1$s Treffer in %2$s" +msgstr[1] "%1$s Treffer in %2$s" #: db_search.php:311 libraries/Menu.class.php:246 #: libraries/common.lib.php:3311 libraries/common.lib.php:3533 @@ -7382,7 +7382,7 @@ msgstr "Benutzung von Blowfish des mcrypt-Pakets fehlgeschlagen!" #: libraries/plugins/auth/AuthenticationCookie.class.php:81 msgid "Your session has expired. Please login again." -msgstr "" +msgstr "Ihre Sitzung ist abgelaufen. Bitte melden Sie sich erneut an." #: libraries/plugins/auth/AuthenticationCookie.class.php:170 msgid "Log in" @@ -8003,7 +8003,6 @@ msgstr "" "zu setzen." #: libraries/plugins/transformations/abstract/ExternalTransformationsPlugin.class.php:31 -#, fuzzy #| msgid "" #| "LINUX ONLY: Launches an external application and feeds it the column data " #| "via standard input. Returns the standard output of the application. The " @@ -8030,15 +8029,15 @@ msgstr "" "NUR FÜR LINUX: Startet ein externes Programm und verwendet die Daten der " "Spalte für die Standardeingabe. Gibt die Standardausgabe der Anwendung " "zurück. Die Voreinstellung wurde für Tidy optimiert, um HTML code optisch zu " -"formatieren. Aus Sicherheitsgründen müssen Sie die Datei libraries/" -"transformations/text_plain__external.inc.php von Hand bearbeiten, um weitere " -"Programme verfügbar zu machen. Die erste Option ist die Nummer des dort " -"hinterlegten Programmes und die zweite Option legt die Parameter für das " -"externe Programm fest. Die dritte Option bestimmt, falls auf 1 gesetzt, dass " -"die Ausgabe mit htmlspecialchars() formatiert wird (Standard: 1). Die vierte " -"Option bestimmt, falls auf 1 gesetzt, ob ein NOWRAP-Parameter der " -"Tabellenzelle hinzugefügt wird, um einen automatischen Umbruch der " -"Standardausgabe zu verhindern (Standard: 1)." +"formatieren. Aus Sicherheitsgründen müssen Sie die Datei " +"libraries/plugins/transformations/Text_Plain_External.class.php von Hand " +"bearbeiten, um weitere Programme verfügbar zu machen. Die erste Option ist " +"die Nummer des dort hinterlegten Programmes und die zweite Option legt die " +"Parameter für das externe Programm fest. Die dritte Option bestimmt, falls " +"auf 1 gesetzt, dass die Ausgabe mit htmlspecialchars() formatiert wird " +"(Standard: 1). Die vierte Option bestimmt, falls auf 1 gesetzt, ob ein " +"NOWRAP-Parameter der Tabellenzelle hinzugefügt wird, um einen automatischen " +"Umbruch der Standardausgabe zu verhindern (Standard: 1)." #: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31 msgid "" @@ -9294,12 +9293,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "Ihre PHP Einstellung [a@http://php.net/manual/en/session.configuration." -"php#ini.session.gc-maxlifetime@]session.gc_maxlifetime[/a] ist niedriger als " +"php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] ist niedriger als " "die in phpMyAdmin konfigurierte Cookiegültigkeit, deshalb wird Ihre " "Anmeldung eher ablaufen als in phpMyAdmin konfiguriert." diff --git a/po/el.po b/po/el.po index 4a82016904..b69a308622 100644 --- a/po/el.po +++ b/po/el.po @@ -9279,12 +9279,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "Η παράμετρος PHP [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] είναι μικρότερη από την " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] είναι μικρότερη από την " "ρυθμισμένη εγκυρότητα cookie στο phpMyAdmin. Εξαιτίας αυτού, η σύνδεσή σας " "θα λήξει νωρίτερα από ό,τι ρυθμίστηκε στο phpMyAdmin." diff --git a/po/en_GB.po b/po/en_GB.po index 934b54ab1c..5ae95f597b 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -9150,12 +9150,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." diff --git a/po/es.po b/po/es.po index 0938fb6edb..a43a913018 100644 --- a/po/es.po +++ b/po/es.po @@ -9323,12 +9323,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "El parámetro [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] es menor que la validez " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] es menor que la validez " "de la cookie configurada en phpMyAdmin. Por ello, la sesión expirará antes " "de lo configurado en phpMyAdmin." diff --git a/po/et.po b/po/et.po index c4c6402fb2..1809666351 100644 --- a/po/et.po +++ b/po/et.po @@ -9137,12 +9137,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "Sinu PHP parameeter [a@http://php.net/manual/en/session.configuration." -"php#ini.session.gc-maxlifetime@]session.gc_maxlifetime[/a] on väiksem, kui " +"php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] on väiksem, kui " "phpMyAdminis seadistatud küpsise kehtivus. Seetõttu sinu sisselogimine aegub " "varem, kui phpMyAdminis seadistatud." diff --git a/po/eu.po b/po/eu.po index ec3c151937..96e9188593 100644 --- a/po/eu.po +++ b/po/eu.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-06-28 09:04+0200\n" -"PO-Revision-Date: 2012-05-02 12:41+0200\n" -"Last-Translator: Marc Delisle \n" +"PO-Revision-Date: 2012-07-01 18:47+0200\n" +"Last-Translator: aitzol berasategi \n" "Language-Team: basque \n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Weblate 0.10\n" +"X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 #: libraries/DisplayResults.class.php:577 server_privileges.php:1838 @@ -29,15 +29,14 @@ msgid "Page number:" msgstr "Orri zenbakia:" #: browse_foreigners.php:94 -#, fuzzy msgid "" "The target browser window could not be updated. Maybe you have closed the " "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -"The target browser window could not be updated. Maybe you have closed the " -"parent window, or your browser's security settings are configured to block " -"cross-window updates." +"Helburuko lehioa ezin da eguneratu. Baliteke jatorrizko leihoa itxita " +"edukitzea edo zure nabigatzailearen segurtasun ezarpenak zeharkako lehioen " +"eguneratzea blokeatzeko konfiguraturik egotea." #: browse_foreigners.php:168 libraries/Menu.class.php:259 #: libraries/Menu.class.php:353 libraries/common.lib.php:3309 @@ -82,9 +81,8 @@ msgstr "Joan" #: browse_foreigners.php:186 browse_foreigners.php:190 #: libraries/Index.class.php:461 tbl_tracking.php:365 -#, fuzzy msgid "Keyname" -msgstr "Giltzaren izena" +msgstr "Giltza-izena" #: browse_foreigners.php:187 browse_foreigners.php:189 #: server_collations.php:39 server_collations.php:51 server_engines.php:42 @@ -103,8 +101,8 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" -"%s fitxategia ez dago eskuragarri sisteman, joan www.phpmyadmin.net " -"informazio gehiagorako" +"%s fitxategia ez dago eskuragarri sisteman, informazio gehiagorako ikusi " +"www.phpmyadmin.net" #: db_create.php:74 #, php-format @@ -288,10 +286,10 @@ msgid "Database %1$s has been renamed to %2$s" msgstr "%s datu-basea %s-(e)ra berrizendatua izan da" #: db_operations.php:330 -#, fuzzy, php-format +#, php-format #| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" -msgstr "%s datu-basea hona kopiatua izan da: %s." +msgstr "%1$s datu-basea %2$s(e)ra kopiatua izan da." #: db_operations.php:461 msgid "Rename database to" @@ -9307,7 +9305,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/fa.po b/po/fa.po index 7880b3017e..034a0a57cd 100644 --- a/po/fa.po +++ b/po/fa.po @@ -9158,7 +9158,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/fi.po b/po/fi.po index f5d0938a43..d546f0b029 100644 --- a/po/fi.po +++ b/po/fi.po @@ -9245,12 +9245,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "PHP-parametri [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] on matalampi kuin " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] on matalampi kuin " "phpMyAdminissa määritetty evästekelpoisuus. Siksi kirjautumisesi erääntyy " "nopeammin kuin phpMyAdminissa on määritetty." @@ -9266,7 +9266,7 @@ msgid "" "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" "PHP-parametri [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] on matalampi kuin " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] on matalampi kuin " "phpMyAdminissa määritetty evästekelpoisuus. Siksi kirjautumisesi erääntyy " "nopeammin kuin phpMyAdminissa on määritetty." diff --git a/po/fr.po b/po/fr.po index 117556c1d9..e79452ef02 100644 --- a/po/fr.po +++ b/po/fr.po @@ -9258,12 +9258,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "La valeur du paramètre PHP [a@http://php.net/manual/fr/session.configuration." -"php#ini.session.gc-maxlifetime@]session.gc_maxlifetime[/a] est plus petite " +"php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] est plus petite " "que la durée du cookie configurée dans phpMyAdmin; donc, votre session de " "travail expirera plus tôt." diff --git a/po/gl.po b/po/gl.po index 166d434ed8..1299a51165 100644 --- a/po/gl.po +++ b/po/gl.po @@ -9107,12 +9107,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "O parámetro PHP [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] é menor do que a validez " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] é menor do que a validez " "das cookies que se configurou en phpMyAdmin; por causa disto, o rexistro " "caducará antes do que está configurado en phpMyAdmin." @@ -9120,7 +9120,7 @@ msgstr "" #, fuzzy #| msgid "" #| "r PHP parameter [a@http://php.net/manual/en/session.configuration.#ini." -#| "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that kie " +#| "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower that kie " #| "validity configured in phpMyAdmin, because of this, your login l expire " #| "sooner than configured in phpMyAdmin." msgid "" @@ -9128,7 +9128,7 @@ msgid "" "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" "O parámetro PHP [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] é menor do que a validez " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] é menor do que a validez " "das cookies que se configurou en phpMyAdmin; por causa disto, o rexistro " "caducará antes do que está configurado en phpMyAdmin." diff --git a/po/he.po b/po/he.po index 6cec90204e..1e431caa7e 100644 --- a/po/he.po +++ b/po/he.po @@ -9241,7 +9241,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/hi.po b/po/hi.po index efc9ef155b..ddd7bdd68b 100644 --- a/po/hi.po +++ b/po/hi.po @@ -9194,7 +9194,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/hr.po b/po/hr.po index a70f6a931a..1fa65b2818 100644 --- a/po/hr.po +++ b/po/hr.po @@ -9614,7 +9614,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/hu.po b/po/hu.po index 32d1dacc18..6f0bbba4cb 100644 --- a/po/hu.po +++ b/po/hu.po @@ -9272,7 +9272,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/hy.po b/po/hy.po index a0d24586d1..617bfe15ed 100644 --- a/po/hy.po +++ b/po/hy.po @@ -8611,7 +8611,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/id.po b/po/id.po index ec4efba2c5..2484963cd2 100644 --- a/po/id.po +++ b/po/id.po @@ -8959,7 +8959,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/it.po b/po/it.po index cc5145427f..3e6a14cbb1 100644 --- a/po/it.po +++ b/po/it.po @@ -9260,12 +9260,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "Il tuo parametero PHP [a@http://php.net/manual/en/session.configuration." -"php#ini.session.gc-maxlifetime@]session.gc_maxlifetime[/a] é inferiore alla " +"php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] é inferiore alla " "validitá del cookie configurata in phpMyAdmin, per questo motivo, i dati di " "login scadranno prima di come configurato in phpMyAdmin." diff --git a/po/ja.po b/po/ja.po index 0994128e24..3c684a8a55 100644 --- a/po/ja.po +++ b/po/ja.po @@ -9120,12 +9120,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "お使いの PHP のパラメータ [a@http://php.net/manual/ja/session.configuration." -"php#ini.session.gc-maxlifetime@]session.gc_maxlifetime[/a] が、phpMyAdmin に" +"php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] が、phpMyAdmin に" "設定されているクッキーの有効期間より短くなっています。このため、phpMyAdmin に" "設定されているよりも早くログインの期限が切れます。" diff --git a/po/ka.po b/po/ka.po index f1259f3708..395e46e34a 100644 --- a/po/ka.po +++ b/po/ka.po @@ -9552,7 +9552,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" @@ -9561,7 +9561,7 @@ msgstr "" #, fuzzy #| msgid "" #| "r PHP parameter [a@http://php.net/manual/en/session.configuration.#ini." -#| "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that kie " +#| "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower that kie " #| "validity configured in phpMyAdmin, because of this, your login l expire " #| "sooner than configured in phpMyAdmin." msgid "" @@ -9569,7 +9569,7 @@ msgid "" "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." diff --git a/po/kk.po b/po/kk.po index e7debbf107..4db33dfdf4 100644 --- a/po/kk.po +++ b/po/kk.po @@ -8643,7 +8643,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/ko.po b/po/ko.po index d6c8e496c5..878a686ccb 100644 --- a/po/ko.po +++ b/po/ko.po @@ -9034,7 +9034,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/lt.po b/po/lt.po index 4a77fb9f45..c35081aaef 100644 --- a/po/lt.po +++ b/po/lt.po @@ -9167,7 +9167,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/lv.po b/po/lv.po index 168644fccf..e20f64932e 100644 --- a/po/lv.po +++ b/po/lv.po @@ -9394,7 +9394,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/mk.po b/po/mk.po index c0eb2ba763..a6895de47a 100644 --- a/po/mk.po +++ b/po/mk.po @@ -9460,7 +9460,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/ml.po b/po/ml.po index 35a0a8f303..4c71818da1 100644 --- a/po/ml.po +++ b/po/ml.po @@ -8624,7 +8624,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/mn.po b/po/mn.po index 57a162d7dc..7a253c0647 100644 --- a/po/mn.po +++ b/po/mn.po @@ -9456,7 +9456,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/ms.po b/po/ms.po index 2647e14833..289d299c7a 100644 --- a/po/ms.po +++ b/po/ms.po @@ -9224,7 +9224,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/nb.po b/po/nb.po index 121eac1346..59e8379495 100644 --- a/po/nb.po +++ b/po/nb.po @@ -9441,12 +9441,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "Ditt PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] er lavere enn cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] er lavere enn cookie " "gyldighet konfigurert i phpMyAdmin, på grunn av dette så vil din innlogging " "utløpe raskere enn konfigurert i phpMyAdmin." @@ -9462,7 +9462,7 @@ msgid "" "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" "Ditt PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] er lavere enn cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] er lavere enn cookie " "gyldighet konfigurert i phpMyAdmin, på grunn av dette så vil din innlogging " "utløpe raskere enn konfigurert i phpMyAdmin." diff --git a/po/nl.po b/po/nl.po index 226c3def61..3ae8455620 100644 --- a/po/nl.po +++ b/po/nl.po @@ -9235,12 +9235,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "De PHP-parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is korter dan de " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is korter dan de " "ingestelde cookiegeldigheid in phpMyAdmin. Hierdoor verloopt uw sessie " "eerder dan in phpMyAdmin is ingesteld." diff --git a/po/pl.po b/po/pl.po index f2a5d0e8d9..0430355b95 100644 --- a/po/pl.po +++ b/po/pl.po @@ -9235,12 +9235,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "Parametr PHP [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] ma mniejszą wartość niż " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] ma mniejszą wartość niż " "czas przechowywania ciasteczka skonfigurowany w phpMyAdmin. Z tego powodu " "sesja wygaśnie wcześniej niż jest to skonfigurowane w phpMyAdmin." diff --git a/po/pt.po b/po/pt.po index 811cdb7e86..55be2430e1 100644 --- a/po/pt.po +++ b/po/pt.po @@ -9170,7 +9170,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index e95a27dce1..8acd246369 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -9254,7 +9254,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/ro.po b/po/ro.po index 10f78ff776..21a7be3efb 100644 --- a/po/ro.po +++ b/po/ro.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-06-28 09:04+0200\n" -"PO-Revision-Date: 2012-05-17 15:15+0200\n" -"Last-Translator: Michal Čihař \n" +"PO-Revision-Date: 2012-06-30 17:07+0200\n" +"Last-Translator: Alex Marin \n" "Language-Team: romanian \n" "Language: ro\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2);;\n" -"X-Generator: Weblate 1.0\n" +"X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 #: libraries/DisplayResults.class.php:577 server_privileges.php:1838 @@ -9637,7 +9637,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" @@ -11218,15 +11218,15 @@ msgstr "" #: server_status.php:1362 msgid "The total number of data reads." -msgstr "" +msgstr "Numărul total de citiri de date." #: server_status.php:1363 msgid "The total number of data writes." -msgstr "" +msgstr "Numărul total de scrieri de date." #: server_status.php:1364 msgid "The amount of data written so far, in bytes." -msgstr "" +msgstr "Cantitatea totală de date scrisă până acum, în bytes." #: server_status.php:1365 msgid "The number of pages that have been written for doublewrite operations." @@ -11734,10 +11734,9 @@ msgid "Log statistics" msgstr "Statisticile rîndului" #: server_status.php:1749 -#, fuzzy #| msgid "Select Tables" msgid "Selected time range:" -msgstr "Selectează tabele" +msgstr "Perioada selectată:" #: server_status.php:1754 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" diff --git a/po/ru.po b/po/ru.po index a866518d2b..67f61c0be1 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,16 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-06-28 09:04+0200\n" -"PO-Revision-Date: 2012-06-26 20:04+0200\n" +"PO-Revision-Date: 2012-06-29 18:49+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: Weblate 1.0\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 #: libraries/DisplayResults.class.php:577 server_privileges.php:1838 @@ -7981,7 +7981,6 @@ msgstr "" "строки." #: libraries/plugins/transformations/abstract/ExternalTransformationsPlugin.class.php:31 -#, fuzzy #| msgid "" #| "LINUX ONLY: Launches an external application and feeds it the column data " #| "via standard input. Returns the standard output of the application. The " @@ -8008,13 +8007,14 @@ msgstr "" "ТОЛЬКО LINUX: Запускает внешнее приложение и подает ему на ввод данные поля. " "Возвращает обычный вывод приложения. По умолчанию используется Tidy " "(форматирование HTML-кода). По соображениям безопасности, необходимо вручную " -"отредактировать файл libraries/transformations/text_plain__external.inc.php " -"вписав доступные программы. Первый параметр задает номер используемой " -"программы, во втором параметре передаются параметры собственно программы. " -"При установке третьего параметра в 1, данные вывода будут преобразованы " -"функцией PHP htmlspecialchars() (по умолчанию: 1). Установка червертого " -"параметра в 1, предотвратит переносы строки и выведет данные в одну строку " -"(по умолчанию: 1)." +"отредактировать файл " +"libraries/plugins/transformations/Text_Plain_External.class.php вписав " +"доступные программы. Первый параметр задает номер используемой программы, во " +"втором параметре передаются параметры собственно программы. При установке " +"третьего параметра в 1, данные вывода будут преобразованы функцией PHP " +"htmlspecialchars() (по умолчанию: 1). Установка четвертого параметра в 1, " +"предотвратит переносы строки и выведет данные в одну строку (по умолчанию: " +"1)." #: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31 msgid "" @@ -9249,12 +9249,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "Ваш PHP параметр [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] меньше, чем длительность " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] меньше, чем длительность " "cookie определенная в phpMyAdmin, по этой причине, данные входа истекут " "быстрее установленных." diff --git a/po/si.po b/po/si.po index 3509e530ba..da977c76c7 100644 --- a/po/si.po +++ b/po/si.po @@ -8912,7 +8912,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/sk.po b/po/sk.po index 3ab6f0be2f..6172913c02 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-06-28 09:04+0200\n" -"PO-Revision-Date: 2012-06-28 16:32+0200\n" -"Last-Translator: Michal Čihař \n" +"PO-Revision-Date: 2012-06-29 16:10+0200\n" +"Last-Translator: Michal Remiš \n" "Language-Team: slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" @@ -1532,10 +1532,9 @@ msgid "From general log" msgstr "Z všeobecného logu" #: js/messages.php:172 -#, fuzzy #| msgid "Loading logs" msgid "Analysing logs" -msgstr "Načítavam záznamy" +msgstr "Analyzujem záznamy" #: js/messages.php:173 msgid "Analysing & loading logs. This may take a while." @@ -1704,16 +1703,14 @@ msgid "Import" msgstr "Import" #: js/messages.php:213 -#, fuzzy #| msgid "Could not import configuration" msgid "Import monitor configuration" -msgstr "Nepodarilo sa načítať konfiguráciu" +msgstr "Importovať konfiguráciu monitora" #: js/messages.php:214 -#, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" -msgstr "Zoľte, prosím, primárny alebo unikátny kľúč" +msgstr "Zvoľte súbor, ktorý chcete importovať" #: js/messages.php:216 msgid "Analyse Query" @@ -1951,7 +1948,7 @@ msgstr "Pohybom myši nad bodom zobrazíte jeho názov." #: js/messages.php:304 msgid "To zoom in, select a section of the plot with the mouse." -msgstr "" +msgstr "Pre priblíženie kliknite na sekciu grafu." #: js/messages.php:306 #, fuzzy @@ -9200,7 +9197,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/sl.po b/po/sl.po index 3124db900d..aa9dade6ab 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,16 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-06-28 09:04+0200\n" -"PO-Revision-Date: 2012-06-26 22:56+0200\n" +"PO-Revision-Date: 2012-06-29 18:51+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" -"X-Generator: Weblate 1.0\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3);\n" +"X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 #: libraries/DisplayResults.class.php:577 server_privileges.php:1838 @@ -7928,7 +7928,6 @@ msgstr "" "možnost prazna." #: libraries/plugins/transformations/abstract/ExternalTransformationsPlugin.class.php:31 -#, fuzzy #| msgid "" #| "LINUX ONLY: Launches an external application and feeds it the column data " #| "via standard input. Returns the standard output of the application. The " @@ -7952,15 +7951,15 @@ msgid "" "option, if set to 1, will prevent wrapping and ensure that the output " "appears all on one line (Default 1)." msgstr "" -"SAMO ZA LINUX: Zažene zunanjo aplikacijo in podaja podatke stopcev preko " +"SAMO ZA LINUX: Zažene zunanjo aplikacijo in podaja podatke stopcev prek " "standardnega vhoda. Vrne standardni izhod aplikacije. Privzeto je Tidy, za " -"tiskanje HTML-kode. Zaradi varnostnih razlogov morate ročno urediti datoteko " -"libraries/transformations/text_plain__external.inc.php in vstaviti orodja za " -"zaganjanje. Prva možnost je številka programa, ki ga želite uporabiti, druga " -"možnost pa so parametri za program. Če tretji parameter nastavite na 1, bo s " -"pomočjo htmlspecialchars() pretvoril izhod (Privzeto 1). Če nastavite četrti " -"parameter na 1, bi preprečil prelamljanje in zagotovil, da se celotni izhod " -"prikaže v eni vrstici (Privzeto 1)." +"lep izpis kode HTML. Zaradi varnostnih razlogov morate ročno urediti " +"datoteko libraries/plugins/transformations/Text_Plain_External.class.php in " +"navesti orodja, ki jih želite omogočiti. Prva možnost je številka programa, " +"ki ga želite uporabiti, druga možnost pa so parametri programa. Če tretji " +"parameter nastavite na 1, bo s pomočjo htmlspecialchars() pretvoril izhod " +"(Privzeto 1). Če nastavite četrti parameter na 1, bo preprečil prelamljanje " +"in zagotovil, da se celotni izhod prikaže v eni vrstici (Privzeto 1)." #: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31 msgid "" @@ -9190,12 +9189,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "Vaš parameter PHP[a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] je nižji od veljavnosti " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] je nižji od veljavnosti " "piškotkov, določene v phpMyAdminu. Zaradi tega se bo vaša prijava iztekla " "prej, kot je določeno v phpMyAdminu." diff --git a/po/sq.po b/po/sq.po index 779fd969fb..7009e95d58 100644 --- a/po/sq.po +++ b/po/sq.po @@ -9380,7 +9380,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/sr.po b/po/sr.po index 532dbd6735..ec1daa5cec 100644 --- a/po/sr.po +++ b/po/sr.po @@ -9559,7 +9559,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/sr@latin.po b/po/sr@latin.po index fb4f7b3b85..2fb70f4309 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -9550,7 +9550,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/sv.po b/po/sv.po index 33b2eb04b5..5847bec3ba 100644 --- a/po/sv.po +++ b/po/sv.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.0.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2012-06-28 09:04+0200\n" -"PO-Revision-Date: 2012-06-26 19:16+0200\n" +"PO-Revision-Date: 2012-07-01 18:04+0200\n" "Last-Translator: ProUser \n" "Language-Team: swedish \n" "Language: sv\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Weblate 1.0\n" +"X-Generator: Weblate 1.1\n" #: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:354 #: libraries/DisplayResults.class.php:577 server_privileges.php:1838 @@ -7895,7 +7895,6 @@ msgstr "" "tomma strängen." #: libraries/plugins/transformations/abstract/ExternalTransformationsPlugin.class.php:31 -#, fuzzy #| msgid "" #| "LINUX ONLY: Launches an external application and feeds it the column data " #| "via standard input. Returns the standard output of the application. The " @@ -7919,16 +7918,15 @@ msgid "" "option, if set to 1, will prevent wrapping and ensure that the output " "appears all on one line (Default 1)." msgstr "" -"ENDAST LINUX: Startar en extern applikation och skickar fältdata till den " -"via standard-indata. Returnerar applikationens standard-utdata. Standard är " -"Tidy, för att snygga till HTML-kod. Av säkerhetsskäl måste du manuellt " -"redigera filen libraries/transformations/text_plain__external.inc.php lista " -"de verktyg du vill göra tillgängliga. Det första alternativet är då numret " -"för det program du vill använda och det andra alternativet är parametrarna " -"för programmet.. Den tredje parametern, om angivet till 1, kommer att " -"konvertera utgång med htmlspecialchars () (standard 1). Den fjärde " -"parametern, om angivet till 1, kommer att förhindra inslagning och se till " -"att utskriften kommer på en enda rad (standard 1)." +"ENDAST LINUX: Startar en extern applikation och sänder kolumndata via " +"standard in. Returnerar standard ut från applikationen. Standard är Tidy, " +"för att pretty-print HTML-kod. Av säkerhetsskäl måste du manuellt redigera " +"filen libraries/plugins/transformationer/Text_Plain_External.class.php och " +"lista de verktyg du vill göra tillgängliga. Den första optionen är antalet " +"program du vill använda och den andra optionen är parametrarna för " +"programmet. Den tredje optionen, om den är 1, kommer omvandla utdata via " +"htmlspecialchars() (Default 1). Den fjärde optionen, om 1, kommer förhindra " +"radbrytning och se till att utskriften sker på en rad (Default 1)." #: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31 msgid "" @@ -9162,12 +9160,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "Din PHP-parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] är lägre än cookie-" +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] är lägre än cookie-" "giltighet konfigurerad i phpMyAdmin. På grund av detta kommer din inloggning " "upphöra att gälla tidigare än konfigurerat i phpMyAdmin." diff --git a/po/ta.po b/po/ta.po index a126edb05c..fbc972c825 100644 --- a/po/ta.po +++ b/po/ta.po @@ -8793,7 +8793,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/te.po b/po/te.po index fddbbe5233..86daf0f5a1 100644 --- a/po/te.po +++ b/po/te.po @@ -9008,7 +9008,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/th.po b/po/th.po index 5561241593..822908453d 100644 --- a/po/th.po +++ b/po/th.po @@ -9089,7 +9089,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/tk.po b/po/tk.po index 43694ffc94..524236596c 100644 --- a/po/tk.po +++ b/po/tk.po @@ -8620,7 +8620,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/tr.po b/po/tr.po index dede612a69..77785c6316 100644 --- a/po/tr.po +++ b/po/tr.po @@ -9215,13 +9215,13 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "phpMyAdmin içinde yapılandırılmış tanımlama bilgisi geçerliliği PHP " "parametreleriniz [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] düşük, bundan dolayı " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] düşük, bundan dolayı " "oturum açmanızın süresi phpMyAdmin içinde yapılandırılmadıkça dolacaktır." #: main.php:309 diff --git a/po/tt.po b/po/tt.po index cdb4da926c..c78d87eaf9 100644 --- a/po/tt.po +++ b/po/tt.po @@ -9457,7 +9457,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/ug.po b/po/ug.po index badde51e92..119e16306d 100644 --- a/po/ug.po +++ b/po/ug.po @@ -9110,7 +9110,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/uk.po b/po/uk.po index 1e7532222a..02e5d877d5 100644 --- a/po/uk.po +++ b/po/uk.po @@ -9090,7 +9090,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/ur.po b/po/ur.po index 5f83ce88ab..e459bcb480 100644 --- a/po/ur.po +++ b/po/ur.po @@ -9174,7 +9174,7 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" diff --git a/po/uz.po b/po/uz.po index 6b462b41c7..cbd5ffa5ad 100644 --- a/po/uz.po +++ b/po/uz.po @@ -9938,12 +9938,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "Сервердаги PHP конфигурациясида \"[a@http://php.net/manual/en/session." -"configuration.php#ini.session.gc-maxlifetime@]session.gc_maxlifetime[/a]\" " +"configuration.php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a]\" " "параметрининг қиймати phpMyAdmin дастурининг \"cookie\" ҳақиқийлиги " "давомийлигидан кичикроқ, шунинг учун логин сессиянгиз phpMyAdmin дастурида " "конфигурация қилганингиздан тезроқ тугайди." @@ -9952,7 +9952,7 @@ msgstr "" #, fuzzy #| msgid "" #| "r PHP parameter [a@http://php.net/manual/en/session.configuration.#ini." -#| "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that kie " +#| "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower that kie " #| "validity configured in phpMyAdmin, because of this, your login l expire " #| "sooner than configured in phpMyAdmin." msgid "" @@ -9960,7 +9960,7 @@ msgid "" "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" "Сервердаги PHP конфигурациясида \"[a@http://php.net/manual/en/session." -"configuration.php#ini.session.gc-maxlifetime@]session.gc_maxlifetime[/a]\" " +"configuration.php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a]\" " "параметрининг қиймати phpMyAdmin дастурининг \"cookie\" ҳақиқийлиги " "давомийлигидан кичикроқ, шунинг учун логин сессиянгиз phpMyAdmin дастурида " "конфигурация қилганингиздан тезроқ тугайди." diff --git a/po/uz@latin.po b/po/uz@latin.po index da5c10b7e5..241ae860c2 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -9975,12 +9975,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "Serverdagi PHP konfiguratsiyasida \"[a@http://php.net/manual/en/session." -"configuration.php#ini.session.gc-maxlifetime@]session.gc_maxlifetime[/a]\" " +"configuration.php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a]\" " "parametrining qiymati phpMyAdmin dasturining \"cookie\" haqiqiyligi " "davomiyligidan kichikroq, shuning uchun login sessiyangiz phpMyAdmin " "dasturida konfiguratsiya qilganingizdan tezroq tugaydi." @@ -9989,7 +9989,7 @@ msgstr "" #, fuzzy #| msgid "" #| "r PHP parameter [a@http://php.net/manual/en/session.configuration.#ini." -#| "session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that kie " +#| "session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower that kie " #| "validity configured in phpMyAdmin, because of this, your login l expire " #| "sooner than configured in phpMyAdmin." msgid "" @@ -9997,7 +9997,7 @@ msgid "" "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" "Serverdagi PHP konfiguratsiyasida \"[a@http://php.net/manual/en/session." -"configuration.php#ini.session.gc-maxlifetime@]session.gc_maxlifetime[/a]\" " +"configuration.php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a]\" " "parametrining qiymati phpMyAdmin dasturining \"cookie\" haqiqiyligi " "davomiyligidan kichikroq, shuning uchun login sessiyangiz phpMyAdmin " "dasturida konfiguratsiya qilganingizdan tezroq tugaydi." diff --git a/po/zh_CN.po b/po/zh_CN.po index 473109ce45..6da53d8670 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -8899,12 +8899,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "您的 PHP 配置参数 [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime (外链,英文)[/a] 短于您在 " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime (外链,英文)[/a] 短于您在 " "phpMyAdmin 中设置的 Cookies 有效期,因此您的登录会话有效期将会比您在 " "phpMyAdmin 中设置的时间要更短。" diff --git a/po/zh_TW.po b/po/zh_TW.po index d98559c16e..8e9b1a05ea 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -9175,12 +9175,12 @@ msgstr "" #: main.php:302 msgid "" "Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower than cookie " +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] is lower than cookie " "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" "您的 PHP 設定參數 [a@http://php.net/manual/en/session.configuration.php#ini." -"session.gc-maxlifetime@]session.gc_maxlifetime [/a] 短於您在 phpMyAdmin 中設" +"session.gc-maxlifetime@_blank]session.gc_maxlifetime [/a] 短於您在 phpMyAdmin 中設" "定的 Cookies 有效期,因此您的登錄連線有效期將會比您在 phpMyAdmin 中設定的時間" "要更短" diff --git a/tbl_change.php b/tbl_change.php index cbea2058cb..319b1b6742 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -126,7 +126,7 @@ if (! empty($disp_message)) { if (! isset($disp_query)) { $disp_query = null; } - PMA_showMessage($disp_message, $disp_query); + $response->addHTML(PMA_getMessage($disp_message, $disp_query)); } /** diff --git a/tbl_replace.php b/tbl_replace.php index cc500c079f..27dc249a7e 100644 --- a/tbl_replace.php +++ b/tbl_replace.php @@ -371,7 +371,7 @@ if ($response->isAjax()) { exit; } -if (isset($return_to_sql_query)) { +if (! empty($return_to_sql_query)) { $disp_query = $GLOBALS['sql_query']; $disp_message = $message; unset($message); diff --git a/url.php b/url.php index b1480a2e49..f3954ff1db 100644 --- a/url.php +++ b/url.php @@ -18,4 +18,5 @@ if (! PMA_isValid($_GET['url']) } else { header('Location: ' . $_GET['url']); } +die(); ?>