Merge remote branch 'phpmyadmin/master'
This commit is contained in:
commit
e794690417
@ -23,6 +23,7 @@
|
||||
- bug #3276001 [core] Avoid caching of index.php.
|
||||
- bug #3306958 [interface] Unnecessary Details slider
|
||||
- bug #3308476 [interface] "Show all" not persistent after a sort
|
||||
- bug #3308072 [auth] Version disclosure to anonymous visitors
|
||||
|
||||
3.4.1.0 (2011-05-20)
|
||||
- bug #3301108 [interface] Synchronize and already configured host
|
||||
|
||||
@ -241,11 +241,11 @@ $(document).ready(function() {
|
||||
$("#reload_privileges_anchor.ajax").live("click", function(event) {
|
||||
event.preventDefault();
|
||||
|
||||
PMA_ajaxShowMessage(PMA_messages['strReloadingPrivileges']);
|
||||
var $msgbox = PMA_ajaxShowMessage(PMA_messages['strReloadingPrivileges']);
|
||||
|
||||
$.get($(this).attr("href"), {'ajax_request': true}, function(data) {
|
||||
if(data.success == true) {
|
||||
PMA_ajaxShowMessage(data.message);
|
||||
PMA_ajaxRemoveMessage($msgbox);
|
||||
}
|
||||
else {
|
||||
PMA_ajaxShowMessage(data.error);
|
||||
|
||||
@ -169,6 +169,7 @@ function PMA_auth()
|
||||
/* HTML header; do not show here the PMA version to improve security */
|
||||
$page_title = 'phpMyAdmin ';
|
||||
require './libraries/header_meta_style.inc.php';
|
||||
// if $page_title is set, this script uses it as the title:
|
||||
require './libraries/header_scripts.inc.php';
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
|
||||
@ -812,9 +812,7 @@ function PMA_getTableList($db, $tables = null, $limit_offset = 0, $limit_count =
|
||||
* or array of it
|
||||
* @param boolean $do_it a flag to bypass this function (used by dump
|
||||
* functions)
|
||||
* @return mixed the "backquoted" database, table or field name if the
|
||||
* current MySQL release is >= 3.23.6, the original one
|
||||
* else
|
||||
* @return mixed the "backquoted" database, table or field name
|
||||
* @access public
|
||||
*/
|
||||
function PMA_backquote($a_name, $do_it = true)
|
||||
|
||||
@ -445,7 +445,7 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $
|
||||
global $sql_query, $num_rows;
|
||||
global $vertical_display, $highlight_columns;
|
||||
|
||||
// required to generate sort links that will remember whether the
|
||||
// required to generate sort links that will remember whether the
|
||||
// "Show all" button has been clicked
|
||||
$sql_md5 = md5($GLOBALS['sql_query']);
|
||||
$session_max_rows = $_SESSION['tmp_user_values']['query'][$sql_md5]['max_rows'];
|
||||
@ -2387,7 +2387,7 @@ function PMA_handle_non_printable_contents($category, $content, $transform_funct
|
||||
} elseif (isset($content)) {
|
||||
$size = strlen($content);
|
||||
$display_size = PMA_formatByteDown($size, 3, 1);
|
||||
$result .= ' - '. $display_size[0] . ' ' . $display_size[1];
|
||||
$result .= ' - '. $display_size[0] . ' ' . $display_size[1];
|
||||
}
|
||||
$result .= ']';
|
||||
|
||||
|
||||
@ -18,13 +18,17 @@ require_once './libraries/common.inc.php';
|
||||
if ( false === $GLOBALS['cfg']['AllowThirdPartyFraming']) {
|
||||
echo PMA_includeJS('cross_framing_protection.js');
|
||||
}
|
||||
// generate title
|
||||
$title = PMA_expandUserString(
|
||||
// generate title (unless we already have $page_title, from cookie auth)
|
||||
if (! isset($page_title)) {
|
||||
$title = PMA_expandUserString(
|
||||
!empty($GLOBALS['table']) ? $GLOBALS['cfg']['TitleTable'] :
|
||||
(!empty($GLOBALS['db']) ? $GLOBALS['cfg']['TitleDatabase'] :
|
||||
(!empty($GLOBALS['cfg']['Server']['host']) ? $GLOBALS['cfg']['TitleServer'] :
|
||||
$GLOBALS['cfg']['TitleDefault']))
|
||||
);
|
||||
);
|
||||
} else {
|
||||
$title = $page_title;
|
||||
}
|
||||
// here, the function does not exist with this configuration: $cfg['ServerDefault'] = 0;
|
||||
$is_superuser = function_exists('PMA_isSuperuser') && PMA_isSuperuser();
|
||||
|
||||
|
||||
@ -34,6 +34,7 @@ if (!$GLOBALS['is_ajax_request']) {
|
||||
|
||||
/**
|
||||
* Displays tab links
|
||||
* Put the links we assume are used less, towards the end
|
||||
*/
|
||||
$tabs = array();
|
||||
|
||||
@ -49,11 +50,6 @@ if (!$GLOBALS['is_ajax_request']) {
|
||||
$tabs['status']['link'] = 'server_status.php';
|
||||
$tabs['status']['text'] = __('Status');
|
||||
|
||||
if (! empty($binary_logs)) {
|
||||
$tabs['binlog']['icon'] = 's_tbl.png';
|
||||
$tabs['binlog']['link'] = 'server_binlog.php';
|
||||
$tabs['binlog']['text'] = __('Binary log');
|
||||
}
|
||||
$tabs['process']['icon'] = 's_process.png';
|
||||
$tabs['process']['link'] = 'server_processlist.php';
|
||||
$tabs['process']['text'] = __('Processes');
|
||||
@ -72,6 +68,28 @@ if (!$GLOBALS['is_ajax_request']) {
|
||||
$tabs['import']['link'] = 'server_import.php';
|
||||
$tabs['import']['text'] = __('Import');
|
||||
|
||||
$tabs['settings']['icon'] = 'b_tblops.png';
|
||||
$tabs['settings']['link'] = 'prefs_manage.php';
|
||||
$tabs['settings']['text'] = __('Settings');
|
||||
$tabs['settings']['active'] = in_array(basename($GLOBALS['PMA_PHP_SELF']),
|
||||
array('prefs_forms.php', 'prefs_manage.php'));
|
||||
|
||||
$tabs['synchronize']['icon'] = 's_sync.png';
|
||||
$tabs['synchronize']['link'] = 'server_synchronize.php';
|
||||
$tabs['synchronize']['text'] = __('Synchronize');
|
||||
|
||||
if (! empty($binary_logs)) {
|
||||
$tabs['binlog']['icon'] = 's_tbl.png';
|
||||
$tabs['binlog']['link'] = 'server_binlog.php';
|
||||
$tabs['binlog']['text'] = __('Binary log');
|
||||
}
|
||||
|
||||
if ($is_superuser) {
|
||||
$tabs['replication']['icon'] = 's_replication.png';
|
||||
$tabs['replication']['link'] = 'server_replication.php';
|
||||
$tabs['replication']['text'] = __('Replication');
|
||||
}
|
||||
|
||||
$tabs['vars']['icon'] = 's_vars.png';
|
||||
$tabs['vars']['link'] = 'server_variables.php';
|
||||
$tabs['vars']['text'] = __('Variables');
|
||||
@ -84,22 +102,6 @@ if (!$GLOBALS['is_ajax_request']) {
|
||||
$tabs['engine']['link'] = 'server_engines.php';
|
||||
$tabs['engine']['text'] = __('Engines');
|
||||
|
||||
if ($is_superuser) {
|
||||
$tabs['replication']['icon'] = 's_replication.png';
|
||||
$tabs['replication']['link'] = 'server_replication.php';
|
||||
$tabs['replication']['text'] = __('Replication');
|
||||
}
|
||||
|
||||
$tabs['synchronize']['icon'] = 's_sync.png';
|
||||
$tabs['synchronize']['link'] = 'server_synchronize.php';
|
||||
$tabs['synchronize']['text'] = __('Synchronize');
|
||||
|
||||
$tabs['settings']['icon'] = 'b_tblops.png';
|
||||
$tabs['settings']['link'] = 'prefs_manage.php';
|
||||
$tabs['settings']['text'] = __('Settings');
|
||||
$tabs['settings']['active'] = in_array(basename($GLOBALS['PMA_PHP_SELF']),
|
||||
array('prefs_forms.php', 'prefs_manage.php'));
|
||||
|
||||
echo PMA_generate_html_tabs($tabs, array());
|
||||
unset($tabs);
|
||||
|
||||
|
||||
16
po/bg.po
16
po/bg.po
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
|
||||
"PO-Revision-Date: 2011-05-25 12:05+0200\n"
|
||||
"PO-Revision-Date: 2011-05-28 14:02+0200\n"
|
||||
"Last-Translator: <stoyanster@gmail.com>\n"
|
||||
"Language-Team: bulgarian <bg@li.org>\n"
|
||||
"Language: bg\n"
|
||||
@ -5833,11 +5833,11 @@ msgstr "Позволено"
|
||||
#: libraries/relation.lib.php:95 libraries/relation.lib.php:107
|
||||
#: pmd_relation_new.php:68
|
||||
msgid "General relation features"
|
||||
msgstr "Общи възможности на релациите"
|
||||
msgstr "Общи свойства на релациите"
|
||||
|
||||
#: libraries/relation.lib.php:111
|
||||
msgid "Display Features"
|
||||
msgstr "Покажи възможностите"
|
||||
msgstr "Показване свойства"
|
||||
|
||||
#: libraries/relation.lib.php:117
|
||||
msgid "Creation of PDFs"
|
||||
@ -5868,7 +5868,7 @@ msgstr ""
|
||||
|
||||
#: libraries/relation.lib.php:151
|
||||
msgid "Quick steps to setup advanced features:"
|
||||
msgstr ""
|
||||
msgstr "Лесни стъпки за настройка на разширените свойства:"
|
||||
|
||||
#: libraries/relation.lib.php:153
|
||||
msgid ""
|
||||
@ -6655,7 +6655,7 @@ msgstr ""
|
||||
|
||||
#: main.php:216
|
||||
msgid "Official Homepage"
|
||||
msgstr "Официална страница на phpMyAdmin"
|
||||
msgstr "Официална страница"
|
||||
|
||||
#: main.php:217
|
||||
msgid "Contribute"
|
||||
@ -6993,7 +6993,7 @@ msgstr ""
|
||||
|
||||
#: prefs_manage.php:258 prefs_manage.php:312
|
||||
msgid "This feature is not supported by your web browser"
|
||||
msgstr ""
|
||||
msgstr "Тази функционалност не се поддържа от вашия браузър"
|
||||
|
||||
#: prefs_manage.php:263
|
||||
msgid "Merge with current configuration"
|
||||
@ -9150,11 +9150,11 @@ msgstr ""
|
||||
|
||||
#: tbl_operations.php:692
|
||||
msgid "Empty the table (TRUNCATE)"
|
||||
msgstr ""
|
||||
msgstr "Изпразване на таблицата (TRUNCATE)"
|
||||
|
||||
#: tbl_operations.php:712
|
||||
msgid "Delete the table (DROP)"
|
||||
msgstr "Изтриване на таблица (DROP)"
|
||||
msgstr "Изтриване на таблицата (DROP)"
|
||||
|
||||
#: tbl_operations.php:733
|
||||
msgid "Partition maintenance"
|
||||
|
||||
300
po/hu.po
300
po/hu.po
@ -4,8 +4,8 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
|
||||
"PO-Revision-Date: 2011-05-19 22:30+0200\n"
|
||||
"Last-Translator: Róbert Nagy <vrnagy@gmail.com>\n"
|
||||
"PO-Revision-Date: 2011-05-27 18:52+0200\n"
|
||||
"Last-Translator: <slygyor@gmail.com>\n"
|
||||
"Language-Team: hungarian <hu@li.org>\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -17,7 +17,7 @@ msgstr ""
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53
|
||||
#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
|
||||
msgid "Show all"
|
||||
msgstr "Összes"
|
||||
msgstr "Összes mutatása"
|
||||
|
||||
#: browse_foreigners.php:70 libraries/common.lib.php:2332
|
||||
#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
|
||||
@ -709,19 +709,17 @@ msgstr "Tábla elemzése"
|
||||
|
||||
#: db_structure.php:521
|
||||
msgid "Add prefix to table"
|
||||
msgstr ""
|
||||
msgstr "Előtag hozzáadása a táblához"
|
||||
|
||||
#: db_structure.php:523 libraries/mult_submits.inc.php:246
|
||||
#, fuzzy
|
||||
#| msgid "Replace table data with file"
|
||||
msgid "Replace table prefix"
|
||||
msgstr "A táblaadatok lecserélése fájlra"
|
||||
msgstr "Tábla előtagjának lecserélése"
|
||||
|
||||
#: db_structure.php:525 libraries/mult_submits.inc.php:246
|
||||
#, fuzzy
|
||||
#| msgid "Replace table data with file"
|
||||
msgid "Copy table with prefix"
|
||||
msgstr "A táblaadatok lecserélése fájlra"
|
||||
msgstr "Tábla másolása előtaggal"
|
||||
|
||||
#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
|
||||
msgid "Data Dictionary"
|
||||
@ -972,10 +970,9 @@ msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Ön a teljes adatbázis MEGSEMMISÍTÉSÉRE készül!"
|
||||
|
||||
#: js/messages.php:32
|
||||
#, fuzzy
|
||||
#| msgid "You are about to DESTROY a complete database!"
|
||||
msgid "You are about to DESTROY a complete table!"
|
||||
msgstr "Ön a teljes adatbázis MEGSEMMISÍTÉSÉRE készül!"
|
||||
msgstr "Ön a teljes tábla MEGSEMMISÍTÉSÉRE készül!"
|
||||
|
||||
#: js/messages.php:33
|
||||
#, fuzzy
|
||||
@ -1073,7 +1070,7 @@ msgstr "Kérés feldolgozása"
|
||||
|
||||
#: js/messages.php:67 libraries/import/ods.php:80
|
||||
msgid "Error in Processing Request"
|
||||
msgstr "Kérés feldolgozása sikertelen"
|
||||
msgstr "Hiba a kérés feldolgozásában"
|
||||
|
||||
#: js/messages.php:68
|
||||
msgid "Dropping Column"
|
||||
@ -1145,6 +1142,7 @@ msgstr "%s törlése"
|
||||
msgid ""
|
||||
"Note: If the file contains multiple tables, they will be combined into one"
|
||||
msgstr ""
|
||||
"Megjegyzés: Ha a fájl több táblát tartalmaz, akkor azok egyesítve lesznek"
|
||||
|
||||
#: js/messages.php:93
|
||||
msgid "Hide query box"
|
||||
@ -1214,6 +1212,8 @@ msgid ""
|
||||
"You haven't saved the changes in the layout. They will be lost if you don't "
|
||||
"save them.Do you want to continue?"
|
||||
msgstr ""
|
||||
"Nem mentette a változtatásokat az elrendezésben. Mentés nélkül ezek el "
|
||||
"fognak veszni. Így is folytatni szeretné?"
|
||||
|
||||
#: js/messages.php:115
|
||||
msgid "Add an option for column "
|
||||
@ -1250,10 +1250,9 @@ msgid ", latest stable version:"
|
||||
msgstr ", utolsó stabil verzió:"
|
||||
|
||||
#: js/messages.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Jump to database"
|
||||
msgid "up to date"
|
||||
msgstr "Adatbázisra ugrás"
|
||||
msgstr "friss"
|
||||
|
||||
#. l10n: Display text for calendar close link
|
||||
#: js/messages.php:147
|
||||
@ -1981,7 +1980,7 @@ msgstr "Frissítenie kell %s %s vagy újabb verzióra."
|
||||
#: libraries/common.lib.php:142
|
||||
#, php-format
|
||||
msgid "Max: %s%s"
|
||||
msgstr "Legnagyobb méret: %s%s"
|
||||
msgstr "Max: %s%s"
|
||||
|
||||
#. l10n: Language to use for MySQL 5.5 documentation, please use only languages which do exist in official documentation.
|
||||
#: libraries/common.lib.php:404
|
||||
@ -2059,10 +2058,9 @@ msgid "Inline edit of this query"
|
||||
msgstr "lekérdezés inline szerkesztése"
|
||||
|
||||
#: libraries/common.lib.php:1267
|
||||
#, fuzzy
|
||||
#| msgid "Engines"
|
||||
msgid "Inline"
|
||||
msgstr "Motorok"
|
||||
msgstr "Belső"
|
||||
|
||||
#: libraries/common.lib.php:1334 libraries/common.lib.php:1350
|
||||
msgid "Profiling"
|
||||
@ -3542,14 +3540,13 @@ msgid ""
|
||||
"Structure page if any of the required tables for the phpMyAdmin "
|
||||
"configuration storage could not be found"
|
||||
msgstr ""
|
||||
"Letiltja az alapértelmezett figyelmeztetést az adatbázis részleteinél, ha a "
|
||||
"phpMyAdmin konfigurációs tárolóhoz tartozó adatbázistáblák közül valamelyik "
|
||||
"nem található"
|
||||
"Letiltja az alapértelmezett figyelmeztetést, mely az adatbázis részletek "
|
||||
"Struktúra oldalon jelenik meg, ha a phpMyAdmin konfiguráció tároló táblák "
|
||||
"valamelyike nem található"
|
||||
|
||||
#: libraries/config/messages.inc.php:328
|
||||
#, fuzzy
|
||||
msgid "Missing phpMyAdmin configuration storage tables"
|
||||
msgstr "Hiányzó táblák a phpMyAdmin konfigurációs tárolóhoz"
|
||||
msgstr "Hiányzó phpMyAdmin konfiguráció tároló táblák"
|
||||
|
||||
#: libraries/config/messages.inc.php:330
|
||||
msgid "Iconic table operations"
|
||||
@ -3964,7 +3961,6 @@ msgid "PDF schema: table coordinates"
|
||||
msgstr "PDF-séma: table coordinates"
|
||||
|
||||
#: libraries/config/messages.inc.php:416
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Table to describe the display fields, leave blank for no support; "
|
||||
#| "suggested: [kbd]pma_table_info[/kbd]"
|
||||
@ -3972,57 +3968,61 @@ msgid ""
|
||||
"Table to describe the display columns, leave blank for no support; "
|
||||
"suggested: [kbd]pma_table_info[/kbd]"
|
||||
msgstr ""
|
||||
"A megjelenítendő mezők táblája, hagyja üresen, ha ne támogassa; "
|
||||
"alapértelmezés: [kbd]pma_table_info[/kbd]"
|
||||
"Tábla a megjelenített oszlopok leírásához, hagyja üresen, ha nem kíván "
|
||||
"megadni leírást; javasolt: [kbd]pma_table_info[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:417
|
||||
#, fuzzy
|
||||
#| msgid "Display fields table"
|
||||
msgid "Display columns table"
|
||||
msgstr "Megjelenítendő mezők táblája"
|
||||
msgstr "Oszlopok tábla megjelenítése"
|
||||
|
||||
#: libraries/config/messages.inc.php:418
|
||||
msgid ""
|
||||
"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
|
||||
"the log when creating a database."
|
||||
msgstr ""
|
||||
"DROP DATABASE IF EXISTS utasítás hozzá lesz adva a napló első sora ként az "
|
||||
"adatbázis létrehozása során."
|
||||
|
||||
#: libraries/config/messages.inc.php:419
|
||||
msgid "Add DROP DATABASE"
|
||||
msgstr ""
|
||||
msgstr "DROP DATABASE hozzáadása"
|
||||
|
||||
#: libraries/config/messages.inc.php:420
|
||||
msgid ""
|
||||
"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
|
||||
"log when creating a table."
|
||||
msgstr ""
|
||||
"DROP TABLE IF EXISTS utasítás hozzá lesz adva a napló első sora ként a tábla "
|
||||
"létrehozása során."
|
||||
|
||||
#: libraries/config/messages.inc.php:421
|
||||
msgid "Add DROP TABLE"
|
||||
msgstr ""
|
||||
msgstr "DROP TABLE hozzáadása"
|
||||
|
||||
#: libraries/config/messages.inc.php:422
|
||||
msgid ""
|
||||
"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
|
||||
"log when creating a view."
|
||||
msgstr ""
|
||||
"DROP VIEW IF EXISTS utasítás hozzá lesz adva a napló első sora ként a nézet "
|
||||
"létrehozása során."
|
||||
|
||||
#: libraries/config/messages.inc.php:423
|
||||
msgid "Add DROP VIEW"
|
||||
msgstr ""
|
||||
msgstr "DROP VIEW hozzáadása"
|
||||
|
||||
#: libraries/config/messages.inc.php:424
|
||||
msgid "Defines the list of statements the auto-creation uses for new versions."
|
||||
msgstr ""
|
||||
"Állítások listájának definiálása az új verziójú automata-létrehozások során."
|
||||
|
||||
#: libraries/config/messages.inc.php:425
|
||||
#, fuzzy
|
||||
#| msgid "Statements"
|
||||
msgid "Statements to track"
|
||||
msgstr "Utasítások"
|
||||
msgstr "Utasítások követésre"
|
||||
|
||||
#: libraries/config/messages.inc.php:426
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
|
||||
#| "[/kbd]"
|
||||
@ -4031,10 +4031,9 @@ msgid ""
|
||||
"kbd]"
|
||||
msgstr ""
|
||||
"Hagyja üresen, ha nincs szükség az SQL-lekérdezések előzményeinek "
|
||||
"támogatására, alapértelmezés: [kbd]pma_history[/kbd]"
|
||||
"támogatására, javasolt: [kbd]pma_history[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:427
|
||||
#, fuzzy
|
||||
#| msgid "SQL query history table"
|
||||
msgid "SQL query tracking table"
|
||||
msgstr "SQL-lekérdezések előzményeinek táblája"
|
||||
@ -4046,13 +4045,11 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:429
|
||||
#, fuzzy
|
||||
#| msgid "Automatic recovery mode"
|
||||
msgid "Automatically create versions"
|
||||
msgstr "Automatikus helyreállítási mód"
|
||||
msgstr "Verziók automatikus létrehozása"
|
||||
|
||||
#: libraries/config/messages.inc.php:430
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
|
||||
#| "[/kbd]"
|
||||
@ -4060,8 +4057,8 @@ msgid ""
|
||||
"Leave blank for no user preferences storage in database, suggested: [kbd]"
|
||||
"pma_config[/kbd]"
|
||||
msgstr ""
|
||||
"Hagyja üresen, ha nincs szükség az SQL-lekérdezések előzményeinek "
|
||||
"támogatására, alapértelmezés: [kbd]pma_history[/kbd]"
|
||||
"Hagyja üresen, ha nincs szükség a felhasználói beállítások tárolására az "
|
||||
"adatbázisban, javaslat: [kbd]pma_history[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:431
|
||||
msgid "User preferences storage table"
|
||||
@ -4133,10 +4130,9 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:444
|
||||
#, fuzzy
|
||||
#| msgid "Show open tables"
|
||||
msgid "Show field types"
|
||||
msgstr "Nyitott táblák megjelenítése"
|
||||
msgstr "Mező típusok mutatása"
|
||||
|
||||
#: libraries/config/messages.inc.php:445
|
||||
msgid "Display the function fields in edit/insert mode"
|
||||
@ -4227,7 +4223,7 @@ msgstr "A zárolt táblák kihagyása"
|
||||
|
||||
#: libraries/config/messages.inc.php:465
|
||||
msgid "Requires SQL Validator to be enabled"
|
||||
msgstr ""
|
||||
msgstr "Szükséges az SQL Validator engedélyezése"
|
||||
|
||||
#: libraries/config/messages.inc.php:467
|
||||
#: libraries/display_change_password.lib.php:40
|
||||
@ -4247,19 +4243,20 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:469
|
||||
msgid "Enable SQL Validator"
|
||||
msgstr ""
|
||||
msgstr "SQL Validator engedélyezése"
|
||||
|
||||
#: libraries/config/messages.inc.php:470
|
||||
msgid ""
|
||||
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
|
||||
"kbd])"
|
||||
msgstr ""
|
||||
"Ha Önnek egyedi felhasználóneve van, itt megnevezheti (alapértelmezett: "
|
||||
"[kbd]anonymous[/kbd])"
|
||||
|
||||
#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
|
||||
#: tbl_tracking.php:511
|
||||
#, fuzzy
|
||||
msgid "Username"
|
||||
msgstr "Felhasználónév:"
|
||||
msgstr "Felhasználónév"
|
||||
|
||||
#: libraries/config/messages.inc.php:472
|
||||
msgid ""
|
||||
@ -4275,11 +4272,11 @@ msgstr "Új adatbázisnév javasolása"
|
||||
|
||||
#: libraries/config/messages.inc.php:474
|
||||
msgid "A warning is displayed on the main page if Suhosin is detected"
|
||||
msgstr ""
|
||||
msgstr "Figyelmeztetés megjelenítése a főoldalon, Suhosin észlelésekor"
|
||||
|
||||
#: libraries/config/messages.inc.php:475
|
||||
msgid "Suhosin warning"
|
||||
msgstr ""
|
||||
msgstr "Suhosin figyelmeztetés"
|
||||
|
||||
#: libraries/config/messages.inc.php:476
|
||||
msgid ""
|
||||
@ -4288,10 +4285,9 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:477
|
||||
#, fuzzy
|
||||
#| msgid "CHAR textarea columns"
|
||||
msgid "Textarea columns"
|
||||
msgstr "CHAR szövegterület oszlopai"
|
||||
msgstr "Szövegterület oszlopai"
|
||||
|
||||
#: libraries/config/messages.inc.php:478
|
||||
msgid ""
|
||||
@ -4300,32 +4296,30 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:479
|
||||
#, fuzzy
|
||||
#| msgid "CHAR textarea rows"
|
||||
msgid "Textarea rows"
|
||||
msgstr "CHAR szövegterület sorai"
|
||||
msgstr "Szövegterület sorai"
|
||||
|
||||
#: libraries/config/messages.inc.php:480
|
||||
msgid "Title of browser window when a database is selected"
|
||||
msgstr ""
|
||||
msgstr "A böngésző ablak címe, ha ki van választva egy adatbázis"
|
||||
|
||||
#: libraries/config/messages.inc.php:482
|
||||
msgid "Title of browser window when nothing is selected"
|
||||
msgstr ""
|
||||
msgstr "A böngésző ablak címe, ha semmi sincs kiválasztva"
|
||||
|
||||
#: libraries/config/messages.inc.php:483
|
||||
#, fuzzy
|
||||
#| msgid "Default table tab"
|
||||
msgid "Default title"
|
||||
msgstr "Alapértelmezett tábla fül"
|
||||
msgstr "Alapértelmezett cím"
|
||||
|
||||
#: libraries/config/messages.inc.php:484
|
||||
msgid "Title of browser window when a server is selected"
|
||||
msgstr ""
|
||||
msgstr "A böngésző ablak címe, ha ki van választva egy szerver"
|
||||
|
||||
#: libraries/config/messages.inc.php:486
|
||||
msgid "Title of browser window when a table is selected"
|
||||
msgstr ""
|
||||
msgstr "A böngésző ablak címe, ha ki van választva egy tábla"
|
||||
|
||||
#: libraries/config/messages.inc.php:488
|
||||
msgid ""
|
||||
@ -4412,28 +4406,24 @@ msgid "ZIP"
|
||||
msgstr "ZIP"
|
||||
|
||||
#: libraries/config/setup.forms.php:41
|
||||
#, fuzzy
|
||||
#| msgid "Host authentication order"
|
||||
msgid "Config authentication"
|
||||
msgstr "Az állomás hitelesítési sorrendje"
|
||||
msgstr "Beállítás hitelesítés"
|
||||
|
||||
#: libraries/config/setup.forms.php:45
|
||||
#, fuzzy
|
||||
#| msgid "Host authentication order"
|
||||
msgid "Cookie authentication"
|
||||
msgstr "Az állomás hitelesítési sorrendje"
|
||||
msgstr "Cookie hitelesítés"
|
||||
|
||||
#: libraries/config/setup.forms.php:48
|
||||
#, fuzzy
|
||||
#| msgid "Host authentication order"
|
||||
msgid "HTTP authentication"
|
||||
msgstr "Az állomás hitelesítési sorrendje"
|
||||
msgstr "HTTP hitelesítés"
|
||||
|
||||
#: libraries/config/setup.forms.php:51
|
||||
#, fuzzy
|
||||
#| msgid "Host authentication order"
|
||||
msgid "Signon authentication"
|
||||
msgstr "Az állomás hitelesítési sorrendje"
|
||||
msgstr "Signon hitelesítés"
|
||||
|
||||
#: libraries/config/setup.forms.php:240
|
||||
#: libraries/config/user_preferences.forms.php:144 libraries/import/ldi.php:34
|
||||
@ -4445,14 +4435,14 @@ msgstr "CSV a LOAD DATA használatával"
|
||||
#: libraries/config/user_preferences.forms.php:245 libraries/export/xls.php:17
|
||||
#: libraries/import/xls.php:20
|
||||
msgid "Excel 97-2003 XLS Workbook"
|
||||
msgstr ""
|
||||
msgstr "Excel 97-2003 XLS Workbook"
|
||||
|
||||
#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:347
|
||||
#: libraries/config/user_preferences.forms.php:155
|
||||
#: libraries/config/user_preferences.forms.php:249
|
||||
#: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20
|
||||
msgid "Excel 2007 XLSX Workbook"
|
||||
msgstr ""
|
||||
msgstr "Excel 2007 XLSX Workbook"
|
||||
|
||||
#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:356
|
||||
#: libraries/config/user_preferences.forms.php:158
|
||||
@ -4464,14 +4454,13 @@ msgstr "Open Document munkafüzet"
|
||||
#: libraries/config/setup.forms.php:262
|
||||
#: libraries/config/user_preferences.forms.php:165
|
||||
msgid "Quick"
|
||||
msgstr ""
|
||||
msgstr "Quick"
|
||||
|
||||
#: libraries/config/setup.forms.php:266
|
||||
#: libraries/config/user_preferences.forms.php:169
|
||||
#, fuzzy
|
||||
#| msgid "Custom color"
|
||||
msgid "Custom"
|
||||
msgstr "Egyéni szín"
|
||||
msgstr "Egyedi"
|
||||
|
||||
#: libraries/config/setup.forms.php:287
|
||||
#: libraries/config/user_preferences.forms.php:189
|
||||
@ -4540,7 +4529,7 @@ msgstr "en"
|
||||
#: libraries/core.lib.php:278
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
msgstr "A %s kiterjesztés hiányzik. Kérem ellenőrizze a PHP beállításokat."
|
||||
|
||||
#: libraries/db_events.inc.php:14 libraries/db_events.inc.php:16
|
||||
#: libraries/export/sql.php:493
|
||||
@ -4561,7 +4550,7 @@ msgstr "Üresnek tűnik az adatbázis!"
|
||||
#: libraries/db_links.inc.php:66 libraries/relation.lib.php:143
|
||||
#: libraries/tbl_links.inc.php:90
|
||||
msgid "Tracking"
|
||||
msgstr ""
|
||||
msgstr "Követés"
|
||||
|
||||
#: libraries/db_links.inc.php:71
|
||||
msgid "Query"
|
||||
@ -4633,17 +4622,15 @@ msgid "Password Hashing"
|
||||
msgstr "Jelszó kivonatolása"
|
||||
|
||||
#: libraries/display_change_password.lib.php:65
|
||||
#, fuzzy
|
||||
#| msgid "MySQL 4.0 compatible"
|
||||
msgid "MySQL 4.0 compatible"
|
||||
msgstr "MySQL 4.0 kompatibilis"
|
||||
msgstr "MySQL 4.0 kompatibilis"
|
||||
|
||||
#: libraries/display_create_database.lib.php:21
|
||||
#: libraries/display_create_database.lib.php:39
|
||||
#, fuzzy
|
||||
#| msgid "Create new database"
|
||||
msgid "Create database"
|
||||
msgstr "Új adatbázis létrehozása"
|
||||
msgstr "Adatbázis létrehozása"
|
||||
|
||||
#: libraries/display_create_database.lib.php:33
|
||||
msgid "Create"
|
||||
@ -4660,10 +4647,9 @@ msgid "Create table on database %s"
|
||||
msgstr "Új tábla létrehozása a(z) %s adatbázisban"
|
||||
|
||||
#: libraries/display_create_table.lib.php:55
|
||||
#, fuzzy
|
||||
#| msgid "Number of fields"
|
||||
msgid "Number of columns"
|
||||
msgstr "Mezők száma"
|
||||
msgstr "Oszlopok száma"
|
||||
|
||||
#: libraries/display_export.lib.php:35
|
||||
msgid "Could not load export plugins, please check your installation!"
|
||||
@ -4672,70 +4658,63 @@ msgstr ""
|
||||
"telepítését!"
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "A jelenlegi szálon engedélyezi a táblák blokkolását."
|
||||
msgstr "Adatbázisok exportálása a jelenlegi szerverről"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Új tábla létrehozása a(z) %s adatbázisban"
|
||||
msgstr "Táblák exportálása a \"%s\" adatbázisból"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Új tábla létrehozása a(z) %s adatbázisban"
|
||||
msgstr "Sorok exportálása a \"%s\" táblából"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
#, fuzzy
|
||||
#| msgid "Export type"
|
||||
msgid "Export Method:"
|
||||
msgstr "Exportálás típusa"
|
||||
msgstr "Exportálás módszere:"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
msgstr "Gyors - csak minimális opció megjelenítése"
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Customize default export options"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Az exportálás alapértelmezett beállításainak testreszabása"
|
||||
msgstr "Egyedi - minden lehetséges opció megjelenítése"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
msgid "Database(s):"
|
||||
msgstr "Adatbázisok"
|
||||
msgstr "Adatbázis(ok):"
|
||||
|
||||
#: libraries/display_export.lib.php:139
|
||||
#, fuzzy
|
||||
#| msgid "Tables"
|
||||
msgid "Table(s):"
|
||||
msgstr "Táblák"
|
||||
msgstr "Táblá(k):"
|
||||
|
||||
#: libraries/display_export.lib.php:149
|
||||
#, fuzzy
|
||||
#| msgid "Rows"
|
||||
msgid "Rows:"
|
||||
msgstr "sor"
|
||||
msgstr "Sorok:"
|
||||
|
||||
#: libraries/display_export.lib.php:157
|
||||
msgid "Dump some row(s)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:159
|
||||
#, fuzzy
|
||||
#| msgid "Number of fields"
|
||||
msgid "Number of rows:"
|
||||
msgstr "Mezők száma"
|
||||
msgstr "Sorok száma:"
|
||||
|
||||
#: libraries/display_export.lib.php:162
|
||||
msgid "Row to begin at:"
|
||||
msgstr ""
|
||||
msgstr "Ettől a sortól kezdve:"
|
||||
|
||||
#: libraries/display_export.lib.php:173
|
||||
msgid "Dump all rows"
|
||||
@ -4743,37 +4722,35 @@ msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:181 libraries/display_export.lib.php:202
|
||||
msgid "Output:"
|
||||
msgstr ""
|
||||
msgstr "Kimenet:"
|
||||
|
||||
#: libraries/display_export.lib.php:188 libraries/display_export.lib.php:214
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Save on server in %s directory"
|
||||
msgid "Save on server in the directory <b>%s</b>"
|
||||
msgstr "Mentés a szerver %s könyvtárában"
|
||||
msgstr "Mentés a szerver <b>%s</b> könyvtárába"
|
||||
|
||||
#: libraries/display_export.lib.php:206
|
||||
#, fuzzy
|
||||
#| msgid "Save as file"
|
||||
msgid "Save output to a file"
|
||||
msgstr "Mentés fájlként"
|
||||
msgstr "A kimenet mentése fájlként"
|
||||
|
||||
#: libraries/display_export.lib.php:227
|
||||
#, fuzzy
|
||||
#| msgid "File name template"
|
||||
msgid "File name template:"
|
||||
msgstr "Fájlnévsablon"
|
||||
msgstr "Fájlnévsablon:"
|
||||
|
||||
#: libraries/display_export.lib.php:229
|
||||
msgid "@SERVER@ will become the server name"
|
||||
msgstr ""
|
||||
msgstr "@SERVER@ lesz a szerver neve"
|
||||
|
||||
#: libraries/display_export.lib.php:231
|
||||
msgid ", @DATABASE@ will become the database name"
|
||||
msgstr ""
|
||||
msgstr ", @DATABASE@ lesz az adatbázis neve"
|
||||
|
||||
#: libraries/display_export.lib.php:233
|
||||
msgid ", @TABLE@ will become the table name"
|
||||
msgstr ""
|
||||
msgstr ", @TABLE@ lesz a tábla neve"
|
||||
|
||||
#: libraries/display_export.lib.php:237
|
||||
#, fuzzy, php-format
|
||||
@ -4792,7 +4769,7 @@ msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:275
|
||||
msgid "use this for future exports"
|
||||
msgstr ""
|
||||
msgstr "használja ezt a későbbi exportálásokhoz"
|
||||
|
||||
#: libraries/display_export.lib.php:281 libraries/display_import.lib.php:188
|
||||
#: libraries/display_import.lib.php:201 libraries/sql_query_form.lib.php:517
|
||||
@ -4800,10 +4777,9 @@ msgid "Character set of the file:"
|
||||
msgstr "A fájl karakterkészlete:"
|
||||
|
||||
#: libraries/display_export.lib.php:309
|
||||
#, fuzzy
|
||||
#| msgid "Compression"
|
||||
msgid "Compression:"
|
||||
msgstr "Tömörítés"
|
||||
msgstr "Tömörítés:"
|
||||
|
||||
#: libraries/display_export.lib.php:311 libraries/display_tbl.lib.php:512
|
||||
#: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578
|
||||
@ -4812,41 +4788,35 @@ msgid "None"
|
||||
msgstr "Nincs"
|
||||
|
||||
#: libraries/display_export.lib.php:313
|
||||
#, fuzzy
|
||||
#| msgid "\"zipped\""
|
||||
msgid "zipped"
|
||||
msgstr "\"zip tömörítés\""
|
||||
msgstr "zip-elve"
|
||||
|
||||
#: libraries/display_export.lib.php:315
|
||||
#, fuzzy
|
||||
#| msgid "\"gzipped\""
|
||||
msgid "gzipped"
|
||||
msgstr "\"gzip tömörítés\""
|
||||
msgstr "gzip-elve"
|
||||
|
||||
#: libraries/display_export.lib.php:317
|
||||
#, fuzzy
|
||||
#| msgid "\"bzipped\""
|
||||
msgid "bzipped"
|
||||
msgstr "\"bzip tömörítés\""
|
||||
msgstr "bzip-elve"
|
||||
|
||||
#: libraries/display_export.lib.php:326
|
||||
#, fuzzy
|
||||
#| msgid "Save as file"
|
||||
msgid "View output as text"
|
||||
msgstr "Mentés fájlként"
|
||||
msgstr "A kimenet megtekintése szövegként"
|
||||
|
||||
#: libraries/display_export.lib.php:331 libraries/display_import.lib.php:244
|
||||
#: libraries/export/codegen.php:37
|
||||
#, fuzzy
|
||||
#| msgid "Format"
|
||||
msgid "Format:"
|
||||
msgstr "Formátum"
|
||||
msgstr "Formátum:"
|
||||
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Átalakítás beállításai"
|
||||
msgstr "Formátum specifikus opciók:"
|
||||
|
||||
#: libraries/display_export.lib.php:337
|
||||
msgid ""
|
||||
@ -9756,10 +9726,9 @@ msgid "Showing SQL query"
|
||||
msgstr "Megjelenítés SQL lekérdezésként"
|
||||
|
||||
#: sql.php:622
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "SQL érvényesítése"
|
||||
msgstr "Érvényes SQL"
|
||||
|
||||
#: sql.php:897
|
||||
#, php-format
|
||||
@ -9803,12 +9772,11 @@ msgstr "Beszúrás új sorként"
|
||||
|
||||
#: tbl_change.php:1059
|
||||
msgid "Insert as new row and ignore errors"
|
||||
msgstr ""
|
||||
msgstr "Új sor beillesztése és a hibák figyelmen kívül hagyása"
|
||||
|
||||
#: tbl_change.php:1060
|
||||
#, fuzzy
|
||||
msgid "Show insert query"
|
||||
msgstr "Megjelenítés SQL lekérdezésként"
|
||||
msgstr "Beillesztő lekérdezés megjelenítése"
|
||||
|
||||
#: tbl_change.php:1071
|
||||
msgid "and then"
|
||||
@ -9838,10 +9806,10 @@ msgstr ""
|
||||
"léphet."
|
||||
|
||||
#: tbl_change.php:1137
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Restart insertion with %s rows"
|
||||
msgid "Continue insertion with %s rows"
|
||||
msgstr "Beszúrás újrakezdése %s sorral"
|
||||
msgstr "Beszúrás folytatása a(z) %s sorokkal"
|
||||
|
||||
#: tbl_chart.php:56
|
||||
#| msgid "The privileges were reloaded successfully."
|
||||
@ -9887,44 +9855,40 @@ msgid "Legend margins"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_chart.php:134
|
||||
#, fuzzy
|
||||
#| msgid "Mar"
|
||||
msgid "Bar"
|
||||
msgstr "márc."
|
||||
msgstr "Sáv"
|
||||
|
||||
#: tbl_chart.php:135
|
||||
msgid "Line"
|
||||
msgstr ""
|
||||
msgstr "Vonal"
|
||||
|
||||
#: tbl_chart.php:136
|
||||
msgid "Radar"
|
||||
msgstr ""
|
||||
msgstr "Radar"
|
||||
|
||||
#: tbl_chart.php:138
|
||||
#, fuzzy
|
||||
#| msgid "PiB"
|
||||
msgid "Pie"
|
||||
msgstr "PB"
|
||||
msgstr "Torta"
|
||||
|
||||
#: tbl_chart.php:144
|
||||
#, fuzzy
|
||||
#| msgid "Query type"
|
||||
msgid "Bar type"
|
||||
msgstr "Lekérdezés típusa"
|
||||
msgstr "Sáv típusa"
|
||||
|
||||
#: tbl_chart.php:146
|
||||
#, fuzzy
|
||||
#| msgid "Packed"
|
||||
msgid "Stacked"
|
||||
msgstr "Csomagolt"
|
||||
msgstr "Halmozott"
|
||||
|
||||
#: tbl_chart.php:147
|
||||
msgid "Multi"
|
||||
msgstr ""
|
||||
msgstr "Többszörös"
|
||||
|
||||
#: tbl_chart.php:152
|
||||
msgid "Continuous image"
|
||||
msgstr ""
|
||||
msgstr "Folyamatos kép"
|
||||
|
||||
#: tbl_chart.php:155
|
||||
msgid ""
|
||||
@ -10069,16 +10033,14 @@ msgid "Table %s has been flushed"
|
||||
msgstr "A(z) %s tábla kiírása megtörtént"
|
||||
|
||||
#: tbl_operations.php:668
|
||||
#, fuzzy
|
||||
#| msgid "Flush the table (\"FLUSH\")"
|
||||
msgid "Flush the table (FLUSH)"
|
||||
msgstr "Tábla kiírása (\"FLUSH\")"
|
||||
msgstr "Tábla kiöblítése (FLUSH)"
|
||||
|
||||
#: tbl_operations.php:677
|
||||
#, fuzzy
|
||||
#| msgid "Dumping data for table"
|
||||
msgid "Delete data or table"
|
||||
msgstr "A tábla adatainak kiíratása"
|
||||
msgstr "Adat vagy tábla törlése"
|
||||
|
||||
#: tbl_operations.php:692
|
||||
msgid "Empty the table (TRUNCATE)"
|
||||
@ -10139,7 +10101,7 @@ msgstr "Méret"
|
||||
|
||||
#: tbl_printview.php:338 tbl_structure.php:782
|
||||
msgid "Effective"
|
||||
msgstr "Hatályos"
|
||||
msgstr "Hatásos"
|
||||
|
||||
#: tbl_printview.php:363 tbl_structure.php:820
|
||||
msgid "Row Statistics"
|
||||
@ -10173,10 +10135,9 @@ msgstr ""
|
||||
"az adattípusokat)"
|
||||
|
||||
#: tbl_relation.php:402
|
||||
#, fuzzy
|
||||
#| msgid "Internal relations"
|
||||
msgid "Internal relation"
|
||||
msgstr "Belső kapcsolatok"
|
||||
msgstr "Belső kapcsolat"
|
||||
|
||||
#: tbl_relation.php:404
|
||||
msgid ""
|
||||
@ -10201,10 +10162,9 @@ msgstr ""
|
||||
"Egy \"példa szerinti lekérdezés\" végrehajtása (karakterhelyettesítő: \"%\")"
|
||||
|
||||
#: tbl_select.php:233
|
||||
#, fuzzy
|
||||
#| msgid "Select fields (at least one):"
|
||||
msgid "Select columns (at least one):"
|
||||
msgstr "Válasszon mezőket (legalább egyet):"
|
||||
msgstr "Válasszon oszlopokat (legalább egyet):"
|
||||
|
||||
#: tbl_select.php:251
|
||||
msgid "Add search conditions (body of the \"where\" clause):"
|
||||
@ -10224,7 +10184,7 @@ msgstr "A különböző értékek tallózása"
|
||||
|
||||
#: tbl_structure.php:166 tbl_structure.php:167
|
||||
msgid "Add primary key"
|
||||
msgstr ""
|
||||
msgstr "Elsődleges kuly hozzáadása"
|
||||
|
||||
#: tbl_structure.php:168 tbl_structure.php:169
|
||||
msgid "Add index"
|
||||
@ -10236,20 +10196,19 @@ msgstr "Elsődleges kulcs hozzáadása"
|
||||
|
||||
#: tbl_structure.php:172 tbl_structure.php:173
|
||||
msgid "Add FULLTEXT index"
|
||||
msgstr ""
|
||||
msgstr "FULLTEXT index hozzáadása"
|
||||
|
||||
#: tbl_structure.php:385
|
||||
#, fuzzy
|
||||
#| msgid "None"
|
||||
msgctxt "None for default"
|
||||
msgid "None"
|
||||
msgstr "Nincs"
|
||||
|
||||
#: tbl_structure.php:398
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Table %s has been dropped"
|
||||
msgid "Column %s has been dropped"
|
||||
msgstr "A(z) %s tábla eldobása megtörtént"
|
||||
msgstr "A(z) %s oszlop eldobása megtörtént"
|
||||
|
||||
#: tbl_structure.php:409 tbl_structure.php:483
|
||||
#, php-format
|
||||
@ -10263,10 +10222,9 @@ msgid "An index has been added on %s"
|
||||
msgstr "Az index hozzáadása a(z) %s mezőn megtörtént"
|
||||
|
||||
#: tbl_structure.php:471
|
||||
#, fuzzy
|
||||
#| msgid "Show versions"
|
||||
msgid "Show more actions"
|
||||
msgstr "Verziók megjelenítése"
|
||||
msgstr "Több tevékenység mutatása"
|
||||
|
||||
#: tbl_structure.php:600 tbl_structure.php:602
|
||||
msgid "Relation view"
|
||||
@ -10277,10 +10235,9 @@ msgid "Propose table structure"
|
||||
msgstr "Táblaszerkezet ajánlása"
|
||||
|
||||
#: tbl_structure.php:634
|
||||
#, fuzzy
|
||||
#| msgid "Add %s field(s)"
|
||||
msgid "Add column"
|
||||
msgstr "%s mező hozzáadása"
|
||||
msgstr "Oszlop hozzáadása"
|
||||
|
||||
#: tbl_structure.php:648
|
||||
msgid "At End of Table"
|
||||
@ -10296,10 +10253,10 @@ msgid "After %s"
|
||||
msgstr "%s után"
|
||||
|
||||
#: tbl_structure.php:689
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Create an index on %s columns"
|
||||
msgid "Create an index on %s columns"
|
||||
msgstr "Index készítése a(z) %s. oszlopon"
|
||||
msgstr "Index készítése a(z) %s oszlopokon"
|
||||
|
||||
#: tbl_structure.php:851
|
||||
msgid "partitioned"
|
||||
@ -10353,10 +10310,9 @@ msgid "Tracking data definition successfully deleted"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_tracking.php:384 tbl_tracking.php:401
|
||||
#, fuzzy
|
||||
#| msgid "Gather errors"
|
||||
msgid "Query error"
|
||||
msgstr "Hibák összegyűjtése"
|
||||
msgstr "Lekérdezési hiba"
|
||||
|
||||
#: tbl_tracking.php:399
|
||||
msgid "Tracking data manipulation successfully deleted"
|
||||
@ -10364,7 +10320,7 @@ msgstr ""
|
||||
|
||||
#: tbl_tracking.php:411
|
||||
msgid "Tracking statements"
|
||||
msgstr ""
|
||||
msgstr "Nyomkövetési utasítások"
|
||||
|
||||
#: tbl_tracking.php:427 tbl_tracking.php:555
|
||||
#, php-format
|
||||
@ -10372,16 +10328,14 @@ msgid "Show %s with dates from %s to %s by user %s %s"
|
||||
msgstr ""
|
||||
|
||||
#: tbl_tracking.php:432
|
||||
#, fuzzy
|
||||
#| msgid "Delete tracking data for this table"
|
||||
msgid "Delete tracking data row from report"
|
||||
msgstr "Tábla nyomkövetési adatainak törlése."
|
||||
msgstr "Nyomkövetési adat sor törlése a jelentésből"
|
||||
|
||||
#: tbl_tracking.php:443
|
||||
#, fuzzy
|
||||
#| msgid "No databases"
|
||||
msgid "No data"
|
||||
msgstr "Nincs adatbázis"
|
||||
msgstr "Nincs adat"
|
||||
|
||||
#: tbl_tracking.php:453 tbl_tracking.php:510
|
||||
msgid "Date"
|
||||
@ -10389,19 +10343,19 @@ msgstr "Dátum"
|
||||
|
||||
#: tbl_tracking.php:455
|
||||
msgid "Data definition statement"
|
||||
msgstr ""
|
||||
msgstr "Adat definiáló utasítás"
|
||||
|
||||
#: tbl_tracking.php:512
|
||||
msgid "Data manipulation statement"
|
||||
msgstr ""
|
||||
msgstr "Adat manipuláló utasítás"
|
||||
|
||||
#: tbl_tracking.php:558
|
||||
msgid "SQL dump (file download)"
|
||||
msgstr ""
|
||||
msgstr "SQL dump (fájl letöltés)"
|
||||
|
||||
#: tbl_tracking.php:559
|
||||
msgid "SQL dump"
|
||||
msgstr ""
|
||||
msgstr "SQL dump"
|
||||
|
||||
#: tbl_tracking.php:560
|
||||
msgid "This option will replace your table and contained data."
|
||||
|
||||
24
po/ja.po
24
po/ja.po
@ -4,13 +4,13 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
|
||||
"PO-Revision-Date: 2011-05-17 12:37+0200\n"
|
||||
"PO-Revision-Date: 2011-05-29 07:59+0200\n"
|
||||
"Last-Translator: Yuichiro <yuichiro@pop07.odn.ne.jp>\n"
|
||||
"Language-Team: japanese <jp@li.org>\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -1114,16 +1114,14 @@ msgid "Show search results"
|
||||
msgstr "検索結果を表示する"
|
||||
|
||||
#: js/messages.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Browse"
|
||||
msgid "Browsing"
|
||||
msgstr "表示"
|
||||
msgstr "表示中"
|
||||
|
||||
#: js/messages.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Deleting %s"
|
||||
msgid "Deleting"
|
||||
msgstr "%s を削除中です"
|
||||
msgstr "削除中"
|
||||
|
||||
#: js/messages.php:90
|
||||
msgid ""
|
||||
@ -1876,7 +1874,7 @@ msgstr "レプリケーションしている"
|
||||
#: libraries/build_html_for_db.lib.php:150
|
||||
#, php-format
|
||||
msgid "Check privileges for database "%s"."
|
||||
msgstr "データベース "%s" の特権を確認してください"
|
||||
msgstr "データベース "%s" の特権を確認する"
|
||||
|
||||
#: libraries/build_html_for_db.lib.php:153
|
||||
msgid "Check Privileges"
|
||||
@ -2789,11 +2787,11 @@ msgstr "外部キー制限"
|
||||
|
||||
#: libraries/config/messages.inc.php:151
|
||||
msgid "Browse mode"
|
||||
msgstr "表示モード"
|
||||
msgstr "閲覧モード"
|
||||
|
||||
#: libraries/config/messages.inc.php:152
|
||||
msgid "Customize browse mode"
|
||||
msgstr "表示モードの詳細設定"
|
||||
msgstr "閲覧モードの詳細設定"
|
||||
|
||||
#: libraries/config/messages.inc.php:154 libraries/config/messages.inc.php:156
|
||||
#: libraries/config/messages.inc.php:173 libraries/config/messages.inc.php:184
|
||||
@ -3239,8 +3237,7 @@ msgstr "データベースツリーの区切り"
|
||||
msgid ""
|
||||
"Only light version; display databases in a tree (determined by the separator "
|
||||
"defined below)"
|
||||
msgstr ""
|
||||
"軽快版のみ。下の項目で定義する区切りが合った場合、ツリー表示になります。"
|
||||
msgstr "軽快モードのみ。下の項目で定義する区切りが合った場合、ツリー表示になります。"
|
||||
|
||||
#: libraries/config/messages.inc.php:273
|
||||
msgid "Display databases in a tree"
|
||||
@ -3252,7 +3249,7 @@ msgstr "全てのデータベースを同時に閲覧したい場合は、これ
|
||||
|
||||
#: libraries/config/messages.inc.php:275
|
||||
msgid "Use light version"
|
||||
msgstr "軽快版を使用する"
|
||||
msgstr "軽快モードを使用する"
|
||||
|
||||
#: libraries/config/messages.inc.php:276
|
||||
msgid "Maximum table tree depth"
|
||||
@ -4556,10 +4553,9 @@ msgstr "MySQL 4.0 互換"
|
||||
|
||||
#: libraries/display_create_database.lib.php:21
|
||||
#: libraries/display_create_database.lib.php:39
|
||||
#, fuzzy
|
||||
#| msgid "Create new database"
|
||||
msgid "Create database"
|
||||
msgstr "新規データベースを作成する"
|
||||
msgstr "データベースを作成する"
|
||||
|
||||
#: libraries/display_create_database.lib.php:33
|
||||
msgid "Create"
|
||||
|
||||
77
po/sk.po
77
po/sk.po
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
|
||||
"PO-Revision-Date: 2011-05-22 20:33+0200\n"
|
||||
"PO-Revision-Date: 2011-05-30 13:03+0200\n"
|
||||
"Last-Translator: Martin Lacina <martin@whistler.sk>\n"
|
||||
"Language-Team: slovak <sk@li.org>\n"
|
||||
"Language: sk\n"
|
||||
@ -958,7 +958,7 @@ msgstr "Kliknite pre zrušenie vyberu"
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:103 sql.php:195
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "Príkaz \"DROP DATABASE\" je vypnutý."
|
||||
msgstr "Príkaz \"DROP DATABASE\" je zakázaný."
|
||||
|
||||
#: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293
|
||||
msgid "Do you really want to "
|
||||
@ -1626,12 +1626,12 @@ msgstr ""
|
||||
#: libraries/StorageEngine.class.php:354
|
||||
#, php-format
|
||||
msgid "%s is available on this MySQL server."
|
||||
msgstr "Úložný systém %s je na tomto MySQL serveri dostupný."
|
||||
msgstr "Úložný systém %s je dostupný na tomto MySQL serveri."
|
||||
|
||||
#: libraries/StorageEngine.class.php:357
|
||||
#, php-format
|
||||
msgid "%s has been disabled for this MySQL server."
|
||||
msgstr "Úložný systém %s na tomto MySQL serveri bol vypnutý."
|
||||
msgstr "Úložný systém %s bol zakázaný na tomto MySQL serveri."
|
||||
|
||||
#: libraries/StorageEngine.class.php:361
|
||||
#, php-format
|
||||
@ -3412,8 +3412,8 @@ msgid ""
|
||||
"shown."
|
||||
msgstr ""
|
||||
"Počet zobrazených riadkov pri prechádzaní sady výsledkov. Ak sada výsledkov "
|
||||
"obsahuje viac riadkov, zobrazia sa odkazy "Predchádzajúci" a ""
|
||||
"Ďalší""
|
||||
"obsahuje viac riadkov, zobrazia sa odkazy "Predchádzajúci" a "
|
||||
""Ďalší"."
|
||||
|
||||
#: libraries/config/messages.inc.php:306
|
||||
msgid "Maximum number of rows to display"
|
||||
@ -3810,6 +3810,11 @@ msgid ""
|
||||
"their names in order and use [kbd]*[/kbd] at the end to show the rest in "
|
||||
"alphabetical order."
|
||||
msgstr ""
|
||||
"Môžete použiť nahradzujúce znaky (% a _). Pokiaľ ich potrebujete použiť v "
|
||||
"ich pôvodnom význame, vložte spätné lomítko \\ pred, napríklad "
|
||||
"[kbd]'moja\\_db'[/kbd] namiesto [kbd]'moja_db'[/kbd]. Použitím tejto voľby "
|
||||
"môžete ovplyvniť triedenie databáz v zozname. Stačí na konci zoznamu uviesť "
|
||||
"[kbd]*[/kbd] na konci pre zobrazenie ostatných v abecednom poradí."
|
||||
|
||||
#: libraries/config/messages.inc.php:394
|
||||
msgid "Show only listed databases"
|
||||
@ -3840,6 +3845,9 @@ msgid ""
|
||||
"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
|
||||
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
|
||||
msgstr ""
|
||||
"Databáza použitá pre ralácie, záložky a PDF možností. Pre kompletný popis "
|
||||
"viď [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. Ak ponecháte prázdne, "
|
||||
"bude táto možnosť vypnutá. Doporučená hodnota: [kbd]phpmyadmin[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:400
|
||||
msgid "Database name"
|
||||
@ -3923,6 +3931,8 @@ msgid ""
|
||||
"Table to describe the display columns, leave blank for no support; "
|
||||
"suggested: [kbd]pma_table_info[/kbd]"
|
||||
msgstr ""
|
||||
"Tabuľka obsahujúca popisy polí. Nechajte prázdnu pre vypnutie tejto funkcie. "
|
||||
"Odporúčaná hodnota: [kbd]pma_table_info[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:417
|
||||
msgid "Display columns table"
|
||||
@ -3991,8 +4001,7 @@ msgid ""
|
||||
"Whether the tracking mechanism creates versions for tables and views "
|
||||
"automatically."
|
||||
msgstr ""
|
||||
"Či má sledovací mechanizmus automaticky vytvárať verzie tabuliek a "
|
||||
"pohľadov.."
|
||||
"Či má sledovací mechanizmus automaticky vytvárať verzie tabuliek a pohľadov."
|
||||
|
||||
#: libraries/config/messages.inc.php:429
|
||||
msgid "Automatically create versions"
|
||||
@ -4003,6 +4012,8 @@ msgid ""
|
||||
"Leave blank for no user preferences storage in database, suggested: [kbd]"
|
||||
"pma_config[/kbd]"
|
||||
msgstr ""
|
||||
"Nechajte prázdne pre vypnutie možnosti ukladania užívateľských nastavení v "
|
||||
"databáze. Odporúčaná hodnota: [kbd]pma_config[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:431
|
||||
msgid "User preferences storage table"
|
||||
@ -4017,6 +4028,8 @@ msgid ""
|
||||
"Disable if you know that your pma_* tables are up to date. This prevents "
|
||||
"compatibility checks and thereby increases performance"
|
||||
msgstr ""
|
||||
"Vypnite, pokiaľ viete, že vaše pma_* tabuľky sú aktuálne. Tým zabránite "
|
||||
"kontrolám kompatibility a urýchlite zabrazovanie stránok"
|
||||
|
||||
#: libraries/config/messages.inc.php:435
|
||||
msgid "Verbose check"
|
||||
@ -4064,6 +4077,8 @@ msgid ""
|
||||
"Defines whether or not type fields should be initially displayed in edit/"
|
||||
"insert mode"
|
||||
msgstr ""
|
||||
"Definuje, či sa majú alebo nemajú zobrazovať typové polia v móde "
|
||||
"úprav/vkladania"
|
||||
|
||||
#: libraries/config/messages.inc.php:444
|
||||
msgid "Show field types"
|
||||
@ -4095,7 +4110,7 @@ msgstr "Zobraziť podrobné informácie o MySQL serveri"
|
||||
|
||||
#: libraries/config/messages.inc.php:450
|
||||
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
|
||||
msgstr ""
|
||||
msgstr "Určuje, či sa budú zobrazovať SQL dopyty generované phpMyAdminom"
|
||||
|
||||
#: libraries/config/messages.inc.php:451
|
||||
msgid "Show SQL queries"
|
||||
@ -4134,7 +4149,7 @@ msgstr "Zobraziť komentár k tabuľke namiesto mena"
|
||||
|
||||
#: libraries/config/messages.inc.php:458
|
||||
msgid "Display table comments in tooltips"
|
||||
msgstr ""
|
||||
msgstr "Zobraziť komentáre tabuľky vo vyskakovacom okne nápovedy"
|
||||
|
||||
#: libraries/config/messages.inc.php:459
|
||||
msgid ""
|
||||
@ -4147,7 +4162,7 @@ msgstr "Preskočiť zamknuté tabuľky"
|
||||
|
||||
#: libraries/config/messages.inc.php:465
|
||||
msgid "Requires SQL Validator to be enabled"
|
||||
msgstr ""
|
||||
msgstr "Vyžaduje povolené kontrolovanie SQL"
|
||||
|
||||
#: libraries/config/messages.inc.php:467
|
||||
#: libraries/display_change_password.lib.php:40
|
||||
@ -4176,6 +4191,8 @@ msgid ""
|
||||
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
|
||||
"kbd])"
|
||||
msgstr ""
|
||||
"Pokiaľ máte vlastné užívateľské meno, zadajte ho tu (východzie "
|
||||
"[kbd]anonymous[/kbd])"
|
||||
|
||||
#: libraries/config/messages.inc.php:471 tbl_tracking.php:454
|
||||
#: tbl_tracking.php:511
|
||||
@ -5430,7 +5447,7 @@ msgstr "Hostiteľ"
|
||||
#: libraries/export/latex.php:144 libraries/export/sql.php:342
|
||||
#: libraries/export/xml.php:110 libraries/header_printview.inc.php:58
|
||||
msgid "Generation Time"
|
||||
msgstr "Vygenerované:"
|
||||
msgstr "Vygenerované"
|
||||
|
||||
#: libraries/export/latex.php:145 libraries/export/sql.php:344
|
||||
#: libraries/export/xml.php:111 main.php:162
|
||||
@ -5738,7 +5755,7 @@ msgstr ""
|
||||
|
||||
#: libraries/import/sql.php:32
|
||||
msgid "SQL compatibility mode:"
|
||||
msgstr "Režim kompatibility SQL"
|
||||
msgstr "Režim kompatibility SQL:"
|
||||
|
||||
#: libraries/import/sql.php:42
|
||||
msgid "Do not use <code>AUTO_INCREMENT</code> for zero values"
|
||||
@ -6278,7 +6295,7 @@ msgstr "Zobraziť rozmery tabuliek"
|
||||
|
||||
#: libraries/schema/User_Schema.class.php:384
|
||||
msgid "Display all tables with the same width"
|
||||
msgstr "zobraziť všetky tabuľky s rovnakou šírkou?"
|
||||
msgstr "Zobraziť všetky tabuľky s rovnakou šírkou"
|
||||
|
||||
#: libraries/schema/User_Schema.class.php:389
|
||||
msgid "Only show keys"
|
||||
@ -6660,7 +6677,7 @@ msgid ""
|
||||
"in pixels. The original aspect ratio is preserved."
|
||||
msgstr ""
|
||||
"Zobrazí náhľad obrázku s odkazom na obrázok; parametre šírka a výška v "
|
||||
"bodoch (pomer strán obrázku zostane zachovaný)"
|
||||
"bodoch. Pomer strán obrázku zostane zachovaný."
|
||||
|
||||
#: libraries/transformations/image_jpeg__link.inc.php:9
|
||||
msgid "Displays a link to download this image."
|
||||
@ -6693,13 +6710,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"LEN PRE LINUX: Spustí externú aplikáciu a na štandardný vstup pošle pole a "
|
||||
"zobrazí výstup programu. Predvolený program je Tidy, ktorý pekne sformátuje "
|
||||
"HTML. Z bezpečnostných dôvodov musíte ručne upraviť obsah súboru libraries/"
|
||||
"transformations/text_plain__external.inc.php a pridať do neho povolené "
|
||||
"aplikácie. Prvý parameter je číslo aplikácie, ktorú chcete použiť a druhý "
|
||||
"parametre sú parametre tejto aplikácie. Ak je tretí parameter nastavený na "
|
||||
"1, výstup bude skonvertovaný funkciou htmlspecialchars() (predvolený je 1). "
|
||||
"Štvrtý parameter v prípade, že je nastavený na 1 pridá k výstupnému textu "
|
||||
"parameter NOWRAP, čím zabezpečí zachovanie formátovania (predvolený je 1)"
|
||||
"HTML. Z bezpečnostných dôvodov musíte ručne upraviť obsah súboru "
|
||||
"libraries/transformations/text_plain__external.inc.php a pridať do neho "
|
||||
"povolené aplikácie. Prvý parameter je číslo aplikácie, ktorú chcete použiť a "
|
||||
"druhý parametre sú parametre tejto aplikácie. Ak je tretí parameter "
|
||||
"nastavený na 1, výstup bude skonvertovaný funkciou htmlspecialchars() "
|
||||
"(predvolený je 1). Štvrtý parameter v prípade, že je nastavený na 1 pridá k "
|
||||
"výstupnému textu parameter NOWRAP, čím zabezpečí zachovanie formátovania "
|
||||
"(predvolený je 1)."
|
||||
|
||||
#: libraries/transformations/text_plain__formatted.inc.php:9
|
||||
msgid ""
|
||||
@ -7290,7 +7308,7 @@ msgstr "Neboli vybrané žiadne databázy."
|
||||
#: server_databases.php:75
|
||||
#, php-format
|
||||
msgid "%s databases have been dropped successfully."
|
||||
msgstr "Úspešne zrušených databáz: %s."
|
||||
msgstr "%s databáz bolo úspešne zrušených."
|
||||
|
||||
#: server_databases.php:100
|
||||
msgid "Databases statistics"
|
||||
@ -7503,9 +7521,8 @@ msgstr ""
|
||||
|
||||
#: server_privileges.php:65 server_privileges.php:211
|
||||
#: server_privileges.php:549
|
||||
#, fuzzy
|
||||
msgid "Allows creating and dropping triggers"
|
||||
msgstr "Povolí vytváranie a mazanie indexov."
|
||||
msgstr "Povolí vytváranie a mazanie spúšťačov"
|
||||
|
||||
#: server_privileges.php:66 server_privileges.php:192
|
||||
#: server_privileges.php:457 server_privileges.php:519
|
||||
@ -7529,7 +7546,7 @@ msgstr "Oprávnenia pre jednotlivé tabuľky"
|
||||
#: server_privileges.php:444 server_privileges.php:588
|
||||
#: server_privileges.php:1610
|
||||
msgid " Note: MySQL privilege names are expressed in English "
|
||||
msgstr " Poznámka: názvy MySQL oprávnení sú uvádzané v angličtine. "
|
||||
msgstr " Poznámka: názvy MySQL oprávnení sú uvádzané po anglicky "
|
||||
|
||||
#: server_privileges.php:513
|
||||
msgid "Administration"
|
||||
@ -7691,7 +7708,7 @@ msgstr "Zmeniť informácie o používateľovi / Kopírovať používateľa"
|
||||
|
||||
#: server_privileges.php:2086
|
||||
msgid "Create a new user with the same privileges and ..."
|
||||
msgstr "Vytvoriť používateľa s rovnakými právami a..."
|
||||
msgstr "Vytvoriť nového používateľa s rovnakými právami a ..."
|
||||
|
||||
#: server_privileges.php:2088
|
||||
msgid "... keep the old one."
|
||||
@ -8466,7 +8483,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Počet spojení bez kľúčov, ktoré kontrolovali použitie kľúča na každom riadku "
|
||||
"(ak táto hodnota nie je 0, mali by ste starostlivo skontrolovať indexy "
|
||||
"vašich tabuliek)."
|
||||
"vašich tabuliek.)"
|
||||
|
||||
#: server_status.php:136
|
||||
msgid ""
|
||||
@ -8474,7 +8491,7 @@ msgid ""
|
||||
"critical even if this is big.)"
|
||||
msgstr ""
|
||||
"Počet spojení, ktoré na prvej tabuľke využili intervalové vyhľadávanie (táto "
|
||||
"hodnota nie je kritická ani v prípade, že je vysoká)."
|
||||
"hodnota nie je kritická ani v prípade, že je vysoká.)"
|
||||
|
||||
#: server_status.php:137
|
||||
msgid "The number of joins that did a full scan of the first table."
|
||||
@ -8574,7 +8591,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Počet vlákien vytvorených na zaobchádzanie so spojeniami. Ak je hodnota "
|
||||
"Threads_created vysoká, mohli by ste zvýšiť hodnotu thread_cache_size (to "
|
||||
"však nespôsobí žiadnu citeľnú zmenu ak máte vlákna dobre implementované)."
|
||||
"však nespôsobí žiadnu citeľnú zmenu ak máte vlákna dobre implementované.)"
|
||||
|
||||
#: server_status.php:152
|
||||
msgid "The number of threads that are not sleeping."
|
||||
|
||||
4
po/sl.po
4
po/sl.po
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
|
||||
"PO-Revision-Date: 2011-05-19 16:18+0200\n"
|
||||
"PO-Revision-Date: 2011-05-27 22:35+0200\n"
|
||||
"Last-Translator: Domen <dbc334@gmail.com>\n"
|
||||
"Language-Team: slovenian <sl@li.org>\n"
|
||||
"Language: sl\n"
|
||||
@ -6927,7 +6927,7 @@ msgid ""
|
||||
"Your preferences will be saved for current session only. Storing them "
|
||||
"permanently requires %sphpMyAdmin configuration storage%s."
|
||||
msgstr ""
|
||||
"Vaše nstavitve bodo shranjene samo za trenutno sejo. Njihova trajna hramba "
|
||||
"Vaše nastavitve bodo shranjene samo za trenutno sejo. Njihova trajna hramba "
|
||||
"zahteva %shrambo konfiguracije phpMyAdmin%s."
|
||||
|
||||
#: libraries/user_preferences.lib.php:142
|
||||
|
||||
77
po/sv.po
77
po/sv.po
@ -4,13 +4,13 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
|
||||
"PO-Revision-Date: 2011-02-16 21:42+0200\n"
|
||||
"Last-Translator: <stefan@inkopsforum.se>\n"
|
||||
"PO-Revision-Date: 2011-05-30 20:24+0200\n"
|
||||
"Last-Translator: <stefan@inkopsforum.se>\n"
|
||||
"Language-Team: swedish <sv@li.org>\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -705,22 +705,19 @@ msgid "Analyze table"
|
||||
msgstr "Analysera tabell"
|
||||
|
||||
#: db_structure.php:521
|
||||
#, fuzzy
|
||||
#| msgid "Go to table"
|
||||
msgid "Add prefix to table"
|
||||
msgstr "Gå till tabell"
|
||||
msgstr "Lägg till prefix till tabellen"
|
||||
|
||||
#: db_structure.php:523 libraries/mult_submits.inc.php:246
|
||||
#, fuzzy
|
||||
#| msgid "Replace table data with file"
|
||||
msgid "Replace table prefix"
|
||||
msgstr "Ersätt tabelldata med fil"
|
||||
msgstr "Ersätt tabellprefix"
|
||||
|
||||
#: db_structure.php:525 libraries/mult_submits.inc.php:246
|
||||
#, fuzzy
|
||||
#| msgid "Replace table data with file"
|
||||
msgid "Copy table with prefix"
|
||||
msgstr "Ersätt tabelldata med fil"
|
||||
msgstr "Kopiera tabell med prefix"
|
||||
|
||||
#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
|
||||
msgid "Data Dictionary"
|
||||
@ -967,16 +964,14 @@ msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Du håller på att FÖRSTÖRA en hel databas!"
|
||||
|
||||
#: js/messages.php:32
|
||||
#, fuzzy
|
||||
#| msgid "You are about to DESTROY a complete database!"
|
||||
msgid "You are about to DESTROY a complete table!"
|
||||
msgstr "Du håller på att FÖRSTÖRA en hel databas!"
|
||||
msgstr "Du håller på att TA BORT en hel tabell!"
|
||||
|
||||
#: js/messages.php:33
|
||||
#, fuzzy
|
||||
#| msgid "You are about to DESTROY a complete database!"
|
||||
msgid "You are about to TRUNCATE a complete table!"
|
||||
msgstr "Du håller på att FÖRSTÖRA en hel databas!"
|
||||
msgstr "Du håller på att TRUNKERA en hel tabell!"
|
||||
|
||||
#: js/messages.php:34
|
||||
msgid "Dropping Event"
|
||||
@ -1113,33 +1108,30 @@ msgid "Searching"
|
||||
msgstr "Söker"
|
||||
|
||||
#: js/messages.php:84
|
||||
#, fuzzy
|
||||
#| msgid "Hide search criteria"
|
||||
msgid "Hide search results"
|
||||
msgstr "Dölj sökkriterier"
|
||||
msgstr "Dölj sökresultat"
|
||||
|
||||
#: js/messages.php:85
|
||||
#, fuzzy
|
||||
#| msgid "Show search criteria"
|
||||
msgid "Show search results"
|
||||
msgstr "Visa sökkriterier"
|
||||
msgstr "Visa sökresultat"
|
||||
|
||||
#: js/messages.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Browse"
|
||||
msgid "Browsing"
|
||||
msgstr "Visa"
|
||||
msgstr "Bläddrar bland"
|
||||
|
||||
#: js/messages.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Deleting %s"
|
||||
msgid "Deleting"
|
||||
msgstr "Tar bort %s"
|
||||
msgstr "Raderar"
|
||||
|
||||
#: js/messages.php:90
|
||||
msgid ""
|
||||
"Note: If the file contains multiple tables, they will be combined into one"
|
||||
msgstr ""
|
||||
"Obs: Om filen innehåller multipla tabeller, kommer de att kombineras till en"
|
||||
|
||||
#: js/messages.php:93
|
||||
msgid "Hide query box"
|
||||
@ -1209,6 +1201,8 @@ msgid ""
|
||||
"You haven't saved the changes in the layout. They will be lost if you don't "
|
||||
"save them.Do you want to continue?"
|
||||
msgstr ""
|
||||
"Du har inte sparat ändringarna i layouten. Dessa kommer förloras om du inte "
|
||||
"sparar dem. Vill du fortsätta?"
|
||||
|
||||
#: js/messages.php:115
|
||||
msgid "Add an option for column "
|
||||
@ -1245,10 +1239,9 @@ msgid ", latest stable version:"
|
||||
msgstr "senaste stabila version:"
|
||||
|
||||
#: js/messages.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Jump to database"
|
||||
msgid "up to date"
|
||||
msgstr "Gå till daatabas"
|
||||
msgstr "aktuell"
|
||||
|
||||
#. l10n: Display text for calendar close link
|
||||
#: js/messages.php:147
|
||||
@ -4570,10 +4563,9 @@ msgstr "Kompatibel med MySQL 4.0"
|
||||
|
||||
#: libraries/display_create_database.lib.php:21
|
||||
#: libraries/display_create_database.lib.php:39
|
||||
#, fuzzy
|
||||
#| msgid "Create new database"
|
||||
msgid "Create database"
|
||||
msgstr "Skapa ny databas"
|
||||
msgstr "Skapa databas"
|
||||
|
||||
#: libraries/display_create_database.lib.php:33
|
||||
msgid "Create"
|
||||
@ -5882,14 +5874,13 @@ msgid "Convert to Kana"
|
||||
msgstr "Konvertera till Kana"
|
||||
|
||||
#: libraries/mult_submits.inc.php:249
|
||||
#, fuzzy
|
||||
#| msgid "Fr"
|
||||
msgid "From"
|
||||
msgstr "Fr"
|
||||
msgstr "Från"
|
||||
|
||||
#: libraries/mult_submits.inc.php:252
|
||||
msgid "To"
|
||||
msgstr ""
|
||||
msgstr "Till"
|
||||
|
||||
#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
|
||||
#: libraries/sql_query_form.lib.php:440
|
||||
@ -5898,13 +5889,12 @@ msgstr "Sänd"
|
||||
|
||||
#: libraries/mult_submits.inc.php:263
|
||||
msgid "Add table prefix"
|
||||
msgstr ""
|
||||
msgstr "Lägg till tabellprefix"
|
||||
|
||||
#: libraries/mult_submits.inc.php:266
|
||||
#, fuzzy
|
||||
#| msgid "Add index"
|
||||
msgid "Add prefix"
|
||||
msgstr "Lägg till index"
|
||||
msgstr "Lägg till prefix"
|
||||
|
||||
#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
|
||||
msgid "No change"
|
||||
@ -7944,10 +7934,10 @@ msgid "Unable to change master"
|
||||
msgstr "Kan inte ändra master"
|
||||
|
||||
#: server_replication.php:72
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Master server changed succesfully to %s"
|
||||
msgid "Master server changed successfully to %s"
|
||||
msgstr "Master server ändrad framgångsrikt till %s"
|
||||
msgstr "Huvudservern har ändrats till %s"
|
||||
|
||||
#: server_replication.php:180
|
||||
msgid "This server is configured as master in a replication process."
|
||||
@ -9082,16 +9072,18 @@ msgid "Insecure connection"
|
||||
msgstr "Osäker anslutning"
|
||||
|
||||
#: setup/frames/index.inc.php:92
|
||||
#, fuzzy
|
||||
#| msgid "Configuration storage"
|
||||
msgid "Configuration saved."
|
||||
msgstr "Konfigurations lagring"
|
||||
msgstr "Konfiguration sparad"
|
||||
|
||||
#: setup/frames/index.inc.php:93
|
||||
msgid ""
|
||||
"Configuration saved to file config/config.inc.php in phpMyAdmin top level "
|
||||
"directory, copy it to top level one and delete directory config to use it."
|
||||
msgstr ""
|
||||
"Konfiguration sparad till filen config / config.inc.php ihuvudkatalogen för "
|
||||
" phpMyAdmin, kopiera den till huvudnivå ett och ta bort katalogen config "
|
||||
"för att använda den."
|
||||
|
||||
#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
|
||||
msgid "Overview"
|
||||
@ -9949,22 +9941,19 @@ msgid "Version %s snapshot (SQL code)"
|
||||
msgstr "Version %s ögonblicksbild (SQL-kod)"
|
||||
|
||||
#: tbl_tracking.php:382
|
||||
#, fuzzy
|
||||
#| msgid "Track these data definition statements:"
|
||||
msgid "Tracking data definition successfully deleted"
|
||||
msgstr "Spåra dessa datadefinitioners kommandon"
|
||||
msgstr "Spårningsdata har tagits bort"
|
||||
|
||||
#: tbl_tracking.php:384 tbl_tracking.php:401
|
||||
#, fuzzy
|
||||
#| msgid "Gather errors"
|
||||
msgid "Query error"
|
||||
msgstr "Samla fel"
|
||||
msgstr "Sökningsfel"
|
||||
|
||||
#: tbl_tracking.php:399
|
||||
#, fuzzy
|
||||
#| msgid "Track these data manipulation statements:"
|
||||
msgid "Tracking data manipulation successfully deleted"
|
||||
msgstr "Spåra dessa datahanterings kommandon"
|
||||
msgstr "Spårningsdata manipulation har tagits bort"
|
||||
|
||||
#: tbl_tracking.php:411
|
||||
msgid "Tracking statements"
|
||||
@ -9976,16 +9965,14 @@ msgid "Show %s with dates from %s to %s by user %s %s"
|
||||
msgstr "Visa %s med datum fån %s till %s av användare %s %s"
|
||||
|
||||
#: tbl_tracking.php:432
|
||||
#, fuzzy
|
||||
#| msgid "Delete tracking data for this table"
|
||||
msgid "Delete tracking data row from report"
|
||||
msgstr "Ta bort spårning för denna tabell"
|
||||
msgstr "Ta bort spårning för denna rapport"
|
||||
|
||||
#: tbl_tracking.php:443
|
||||
#, fuzzy
|
||||
#| msgid "No databases"
|
||||
msgid "No data"
|
||||
msgstr "Inga databaser"
|
||||
msgstr "Inget data"
|
||||
|
||||
#: tbl_tracking.php:453 tbl_tracking.php:510
|
||||
msgid "Date"
|
||||
|
||||
68
po/zh_CN.po
68
po/zh_CN.po
@ -4,13 +4,13 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
|
||||
"PO-Revision-Date: 2011-05-06 03:13+0200\n"
|
||||
"PO-Revision-Date: 2011-05-30 05:47+0200\n"
|
||||
"Last-Translator: shanyan baishui <Siramizu@gmail.com>\n"
|
||||
"Language-Team: chinese_simplified <zh_CN@li.org>\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -698,22 +698,19 @@ msgid "Analyze table"
|
||||
msgstr "分析表"
|
||||
|
||||
#: db_structure.php:521
|
||||
#, fuzzy
|
||||
#| msgid "Go to table"
|
||||
msgid "Add prefix to table"
|
||||
msgstr "转到数据表"
|
||||
msgstr "添加表前缀"
|
||||
|
||||
#: db_structure.php:523 libraries/mult_submits.inc.php:246
|
||||
#, fuzzy
|
||||
#| msgid "Replace table data with file"
|
||||
msgid "Replace table prefix"
|
||||
msgstr "将表的数据用此文件替换"
|
||||
msgstr "修改表前缀"
|
||||
|
||||
#: db_structure.php:525 libraries/mult_submits.inc.php:246
|
||||
#, fuzzy
|
||||
#| msgid "Replace table data with file"
|
||||
msgid "Copy table with prefix"
|
||||
msgstr "将表的数据用此文件替换"
|
||||
msgstr "复制表为新前缀"
|
||||
|
||||
#: db_structure.php:574 libraries/schema/User_Schema.class.php:387
|
||||
msgid "Data Dictionary"
|
||||
@ -951,16 +948,14 @@ msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "您将要删除一个完整的数据库!"
|
||||
|
||||
#: js/messages.php:32
|
||||
#, fuzzy
|
||||
#| msgid "You are about to DESTROY a complete database!"
|
||||
msgid "You are about to DESTROY a complete table!"
|
||||
msgstr "您将要删除一个完整的数据库!"
|
||||
msgstr "您将要删除一个完整的数据表!"
|
||||
|
||||
#: js/messages.php:33
|
||||
#, fuzzy
|
||||
#| msgid "You are about to DESTROY a complete database!"
|
||||
msgid "You are about to TRUNCATE a complete table!"
|
||||
msgstr "您将要删除一个完整的数据库!"
|
||||
msgstr "您将要清空一个完整的数据表!"
|
||||
|
||||
#: js/messages.php:34
|
||||
msgid "Dropping Event"
|
||||
@ -1097,28 +1092,24 @@ msgid "Searching"
|
||||
msgstr "正在搜索"
|
||||
|
||||
#: js/messages.php:84
|
||||
#, fuzzy
|
||||
#| msgid "Hide search criteria"
|
||||
msgid "Hide search results"
|
||||
msgstr "隐藏搜索条件"
|
||||
msgstr "隐藏搜索结果"
|
||||
|
||||
#: js/messages.php:85
|
||||
#, fuzzy
|
||||
#| msgid "Show search criteria"
|
||||
msgid "Show search results"
|
||||
msgstr "显示搜索条件"
|
||||
msgstr "显示搜索结果"
|
||||
|
||||
#: js/messages.php:86
|
||||
#, fuzzy
|
||||
#| msgid "Browse"
|
||||
msgid "Browsing"
|
||||
msgstr "浏览"
|
||||
msgstr "正在浏览"
|
||||
|
||||
#: js/messages.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Deleting %s"
|
||||
msgid "Deleting"
|
||||
msgstr "正在删除 %s"
|
||||
msgstr "正在删除"
|
||||
|
||||
#: js/messages.php:90
|
||||
msgid ""
|
||||
@ -1192,7 +1183,7 @@ msgstr "选择要显示的字段"
|
||||
msgid ""
|
||||
"You haven't saved the changes in the layout. They will be lost if you don't "
|
||||
"save them.Do you want to continue?"
|
||||
msgstr ""
|
||||
msgstr "尚未保存当前布局。如果继续将会丢失本次的修改。是否继续?"
|
||||
|
||||
#: js/messages.php:115
|
||||
msgid "Add an option for column "
|
||||
@ -4443,7 +4434,6 @@ msgstr "MySQL 4.0 兼容"
|
||||
|
||||
#: libraries/display_create_database.lib.php:21
|
||||
#: libraries/display_create_database.lib.php:39
|
||||
#, fuzzy
|
||||
#| msgid "Create new database"
|
||||
msgid "Create database"
|
||||
msgstr "新建数据库"
|
||||
@ -5693,14 +5683,13 @@ msgid "Convert to Kana"
|
||||
msgstr "转换为假名"
|
||||
|
||||
#: libraries/mult_submits.inc.php:249
|
||||
#, fuzzy
|
||||
#| msgid "Fr"
|
||||
msgid "From"
|
||||
msgstr "五"
|
||||
msgstr "从"
|
||||
|
||||
#: libraries/mult_submits.inc.php:252
|
||||
msgid "To"
|
||||
msgstr ""
|
||||
msgstr "到"
|
||||
|
||||
#: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271
|
||||
#: libraries/sql_query_form.lib.php:440
|
||||
@ -5709,13 +5698,12 @@ msgstr "提交"
|
||||
|
||||
#: libraries/mult_submits.inc.php:263
|
||||
msgid "Add table prefix"
|
||||
msgstr ""
|
||||
msgstr "添加表前缀"
|
||||
|
||||
#: libraries/mult_submits.inc.php:266
|
||||
#, fuzzy
|
||||
#| msgid "Add index"
|
||||
msgid "Add prefix"
|
||||
msgstr "添加索引"
|
||||
msgstr "添加前缀"
|
||||
|
||||
#: libraries/mult_submits.inc.php:477 tbl_replace.php:331
|
||||
msgid "No change"
|
||||
@ -7678,10 +7666,10 @@ msgid "Unable to change master"
|
||||
msgstr "无法修改主服务器"
|
||||
|
||||
#: server_replication.php:72
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Master server changed succesfully to %s"
|
||||
msgid "Master server changed successfully to %s"
|
||||
msgstr "成功修改主服务器为 %s"
|
||||
msgstr "已成功修改主服务器到 %s"
|
||||
|
||||
#: server_replication.php:180
|
||||
msgid "This server is configured as master in a replication process."
|
||||
@ -8747,16 +8735,15 @@ msgid "Insecure connection"
|
||||
msgstr "非安全连接"
|
||||
|
||||
#: setup/frames/index.inc.php:92
|
||||
#, fuzzy
|
||||
#| msgid "Configuration storage"
|
||||
msgid "Configuration saved."
|
||||
msgstr "高级功能"
|
||||
msgstr "配置已保存。"
|
||||
|
||||
#: setup/frames/index.inc.php:93
|
||||
msgid ""
|
||||
"Configuration saved to file config/config.inc.php in phpMyAdmin top level "
|
||||
"directory, copy it to top level one and delete directory config to use it."
|
||||
msgstr ""
|
||||
msgstr "配置已保存到 config/config.inc.php 文件,请将其复制到 phpMyAdmin 根目录并删除 config 文件夹。"
|
||||
|
||||
#: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15
|
||||
msgid "Overview"
|
||||
@ -9580,22 +9567,19 @@ msgid "Version %s snapshot (SQL code)"
|
||||
msgstr "版本 %s 的快照 (SQL 代码)"
|
||||
|
||||
#: tbl_tracking.php:382
|
||||
#, fuzzy
|
||||
#| msgid "Track these data definition statements:"
|
||||
msgid "Tracking data definition successfully deleted"
|
||||
msgstr "追踪下列数据定义语句:"
|
||||
msgstr "追踪数据定义删除成功"
|
||||
|
||||
#: tbl_tracking.php:384 tbl_tracking.php:401
|
||||
#, fuzzy
|
||||
#| msgid "Gather errors"
|
||||
msgid "Query error"
|
||||
msgstr "收集错误"
|
||||
msgstr "查询错误"
|
||||
|
||||
#: tbl_tracking.php:399
|
||||
#, fuzzy
|
||||
#| msgid "Track these data manipulation statements:"
|
||||
msgid "Tracking data manipulation successfully deleted"
|
||||
msgstr "追踪下列数据操作语句:"
|
||||
msgstr "追踪数据操作删除成功"
|
||||
|
||||
#: tbl_tracking.php:411
|
||||
msgid "Tracking statements"
|
||||
@ -9607,16 +9591,14 @@ msgid "Show %s with dates from %s to %s by user %s %s"
|
||||
msgstr "显示自 %2$s 起至 %3$s 用户 %4$s 执行的 %1$s %5$s"
|
||||
|
||||
#: tbl_tracking.php:432
|
||||
#, fuzzy
|
||||
#| msgid "Delete tracking data for this table"
|
||||
msgid "Delete tracking data row from report"
|
||||
msgstr "删除追踪数据"
|
||||
msgstr "从报告中删除追踪数据"
|
||||
|
||||
#: tbl_tracking.php:443
|
||||
#, fuzzy
|
||||
#| msgid "No databases"
|
||||
msgid "No data"
|
||||
msgstr "无数据库"
|
||||
msgstr "无数据"
|
||||
|
||||
#: tbl_tracking.php:453 tbl_tracking.php:510
|
||||
msgid "Date"
|
||||
|
||||
831
po/zh_TW.po
831
po/zh_TW.po
File diff suppressed because it is too large
Load Diff
@ -1549,10 +1549,10 @@ if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs
|
||||
|
||||
/**
|
||||
* Displays the initials
|
||||
* In an Ajax request, we don't need to show this
|
||||
* In an Ajax request, we don't need to show this. Also not necassary if there is less than 20 privileges
|
||||
*/
|
||||
|
||||
if( $GLOBALS['is_ajax_request'] != true ) {
|
||||
if( $GLOBALS['is_ajax_request'] != true && PMA_DBI_num_rows($res) > 20 ) {
|
||||
|
||||
// initialize to FALSE the letters A-Z
|
||||
for ($letter_counter = 1; $letter_counter < 27; $letter_counter++) {
|
||||
|
||||
@ -1193,16 +1193,6 @@ div#serverstatus table tbody td.descr a,
|
||||
div#serverstatus table .tblFooters a {
|
||||
white-space: nowrap;
|
||||
}
|
||||
div#serverstatus div#statuslinks a:before,
|
||||
div#serverstatus div#sectionlinks a:before,
|
||||
div#serverstatus table tbody td.descr a:before,
|
||||
div#serverstatus table .tblFooters a:before {
|
||||
}
|
||||
div#serverstatus div#statuslinks a:after,
|
||||
div#serverstatus div#sectionlinks a:after,
|
||||
div#serverstatus table tbody td.descr a:after,
|
||||
div#serverstatus table .tblFooters a:after {
|
||||
}
|
||||
/* end serverstatus */
|
||||
|
||||
/* querywindow */
|
||||
@ -1266,11 +1256,9 @@ div#querywindowcontainer fieldset {
|
||||
border-radius:5px;
|
||||
-webkit-border-radius:5px;
|
||||
-moz-border-radius:5px;
|
||||
|
||||
box-shadow:0px 1px 1px #fff inset;
|
||||
-webkit-box-shadow:0px 1px 1px #fff inset;
|
||||
-moz-box-shadow:0px 1px 1px #fff inset;
|
||||
|
||||
}
|
||||
#sectionlinks a, #statuslinks a{
|
||||
font-size:0.88em;
|
||||
@ -1283,6 +1271,7 @@ div#querywindowcontainer fieldset {
|
||||
color: #111;
|
||||
text-decoration: none;
|
||||
background: #ddd;
|
||||
white-space: nowrap;
|
||||
border-radius: 20px;
|
||||
-webkit-border-radius: 20px;
|
||||
-moz-border-radius: 20px;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user