Merge branch 'QA_3_5' of github.com:phpmyadmin/phpmyadmin into QA_3_5
Conflicts: ChangeLog
This commit is contained in:
commit
d7ca655efa
@ -16,7 +16,10 @@ phpMyAdmin - ChangeLog
|
||||
- bug #3516405 [display] Chart title is getting wrong within chart export
|
||||
- bug #3517021 [interface] Header links except 'More' hide after closing dialog
|
||||
- bug #3516817 [interface] "More" actions in table structure
|
||||
- bug #3520107 [interface] Server status page: Incorrect dialog box title
|
||||
- bug #3518484 [privileges] PMA_sqlAddSlashes() does not quote the table names correctly
|
||||
- bug #3518983 [designer] Error messages do not appear in the Designer
|
||||
- bug #3519747 [interface] Suhosin patch warning incorrectly displayed
|
||||
- bug #3520107 [interface] Server status page: Incorrect dialog box titles
|
||||
|
||||
3.5.0.0 (2012-04-07)
|
||||
+ rfe #2021981 [interface] Add support for mass prefix change.
|
||||
|
||||
@ -52,6 +52,7 @@ function makeRequest(url, parameters)
|
||||
function alertContents()
|
||||
{
|
||||
if (http_request.readyState == 1) {
|
||||
// @todo: replace with PMA_ajaxShowMessage() and remove layer_action
|
||||
document.getElementById("layer_action").style.left = (document.body.clientWidth + document.body.scrollLeft - 85) + 'px';
|
||||
document.getElementById("layer_action").style.top = (document.body.scrollTop + 10) + 'px';
|
||||
document.getElementById("layer_action").style.visibility = 'visible'; document.getElementById("layer_action").innerHTML = 'Loading...';
|
||||
@ -75,14 +76,6 @@ function alertContents()
|
||||
}
|
||||
}
|
||||
|
||||
function layer_alert(text)
|
||||
{
|
||||
document.getElementById("layer_action").innerHTML = text;
|
||||
document.getElementById("layer_action").style.left = (document.body.clientWidth + document.body.scrollLeft - 20 - document.getElementById("layer_action").offsetWidth) + 'px';
|
||||
document.getElementById("layer_action").style.visibility = 'visible';
|
||||
setTimeout(function(){document.getElementById("layer_action").style.visibility = 'hidden';}, 2000);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@ -103,17 +96,17 @@ function PrintXML()
|
||||
//xmldoc.getElementsByTagName('root')[0].getAttribute("act")
|
||||
|
||||
if (root.getAttribute('act') == 'save_pos') {
|
||||
layer_alert(root.getAttribute('return'));
|
||||
PMA_ajaxShowMessage(root.getAttribute('return'));
|
||||
}
|
||||
if (root.getAttribute('act') == 'relation_upd') {
|
||||
layer_alert(root.getAttribute('return'));
|
||||
PMA_ajaxShowMessage(root.getAttribute('return'));
|
||||
if (root.getAttribute('b') == '1') {
|
||||
contr.splice(root.getAttribute('K'), 1);
|
||||
Re_load();
|
||||
}
|
||||
}
|
||||
if (root.getAttribute('act') == 'relation_new') {
|
||||
layer_alert(root.getAttribute('return'));
|
||||
PMA_ajaxShowMessage(root.getAttribute('return'));
|
||||
if (root.getAttribute('b') == '1') {
|
||||
var i = contr.length;
|
||||
var t1 = root.getAttribute('DB1') + '.' + root.getAttribute('T1');
|
||||
|
||||
@ -77,7 +77,7 @@ rule 'Slow query logging' [!PMA_DRIZZLE]
|
||||
rule 'Release Series' [!PMA_DRIZZLE]
|
||||
version
|
||||
substr(value,0,1) <= 5 && substr(value,2,1) < 1
|
||||
The MySQL server version less then 5.1.
|
||||
The MySQL server version less than 5.1.
|
||||
You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 even more so.
|
||||
Current version: %s | value
|
||||
|
||||
|
||||
@ -811,7 +811,11 @@ if (! defined('PMA_MINIMUM_COMMON')) {
|
||||
* @todo should be done in PMA_Config
|
||||
*/
|
||||
$GLOBALS['PMA_Config']->setCookie('pma_lang', $GLOBALS['lang']);
|
||||
$GLOBALS['PMA_Config']->setCookie('pma_collation_connection', $GLOBALS['collation_connection']);
|
||||
if (isset($GLOBALS['collation_connection'])) {
|
||||
$GLOBALS['PMA_Config']->setCookie(
|
||||
'pma_collation_connection',
|
||||
$GLOBALS['collation_connection']);
|
||||
}
|
||||
|
||||
$_SESSION['PMA_Theme_Manager']->setThemeCookie();
|
||||
|
||||
|
||||
@ -3709,8 +3709,8 @@ function PMA_getFunctionsForField($field, $insert_mode)
|
||||
* @param string $priv The privilege to check
|
||||
* @param mixed $db null, to only check global privileges
|
||||
* string, db name where to also check for privileges
|
||||
* @param mixed $tbl null, to only check global privileges
|
||||
* string, db name where to also check for privileges
|
||||
* @param mixed $tbl null, to only check global/db privileges
|
||||
* string, table name where to also check for privileges
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
@ -3746,6 +3746,8 @@ function PMA_currentUserHasPrivilege($priv, $db = null, $tbl = null)
|
||||
// If a database name was provided and user does not have the
|
||||
// required global privilege, try database-wise permissions.
|
||||
if ($db !== null) {
|
||||
// need to escape wildcards in db and table names, see bug #3518484
|
||||
$db = str_replace(array('%', '_'), array('\%', '\_'), $db);
|
||||
$query .= " AND TABLE_SCHEMA='%s'";
|
||||
if (PMA_DBI_fetch_value(
|
||||
sprintf(
|
||||
@ -3767,6 +3769,8 @@ function PMA_currentUserHasPrivilege($priv, $db = null, $tbl = null)
|
||||
// If a table name was also provided and we still didn't
|
||||
// find any valid privileges, try table-wise privileges.
|
||||
if ($tbl !== null) {
|
||||
// need to escape wildcards in db and table names, see bug #3518484
|
||||
$tbl = str_replace(array('%', '_'), array('\%', '\_'), $tbl);
|
||||
$query .= " AND TABLE_NAME='%s'";
|
||||
if ($retval = PMA_DBI_fetch_value(
|
||||
sprintf(
|
||||
|
||||
@ -2638,7 +2638,6 @@ $cfg['SaveDir'] = '';
|
||||
|
||||
/**
|
||||
* Directory where phpMyAdmin can save temporary files.
|
||||
* This is needed for MS Excel export, see documentation how to enable that.
|
||||
*
|
||||
* @global string $cfg['TempDir']
|
||||
*/
|
||||
|
||||
@ -6299,7 +6299,7 @@ class TCPDF {
|
||||
* @param $stretch (int) font stretch mode: <ul><li>0 = disabled</li><li>1 = horizontal scaling only if text is larger than cell width</li><li>2 = forced horizontal scaling to fit cell width</li><li>3 = character spacing only if text is larger than cell width</li><li>4 = forced character spacing to fit cell width</li></ul> General font stretching and scaling values will be preserved when possible.
|
||||
* @param $ishtml (boolean) INTERNAL USE ONLY -- set to true if $txt is HTML content (default = false). Never set this parameter to true, use instead writeHTMLCell() or writeHTML() methods.
|
||||
* @param $autopadding (boolean) if true, uses internal padding and automatically adjust it to account for line width.
|
||||
* @param $maxh (float) maximum height. It should be >= $h and less then remaining space to the bottom of the page, or 0 for disable this feature. This feature works only when $ishtml=false.
|
||||
* @param $maxh (float) maximum height. It should be >= $h and less than remaining space to the bottom of the page, or 0 for disable this feature. This feature works only when $ishtml=false.
|
||||
* @param $valign (string) Vertical alignment of text (requires $maxh = $h > 0). Possible values are:<ul><li>T: TOP</li><li>M: middle</li><li>B: bottom</li></ul>. This feature works only when $ishtml=false and the cell must fit in a single page.
|
||||
* @param $fitcell (boolean) if true attempt to fit all the text within the cell by reducing the font size (do not work in HTML mode).
|
||||
* @return int Return the number of cells or 1 for html mode.
|
||||
@ -6855,7 +6855,7 @@ class TCPDF {
|
||||
* @param $stretch (int) font stretch mode: <ul><li>0 = disabled</li><li>1 = horizontal scaling only if text is larger than cell width</li><li>2 = forced horizontal scaling to fit cell width</li><li>3 = character spacing only if text is larger than cell width</li><li>4 = forced character spacing to fit cell width</li></ul> General font stretching and scaling values will be preserved when possible.
|
||||
* @param $firstline (boolean) if true prints only the first line and return the remaining string.
|
||||
* @param $firstblock (boolean) if true the string is the starting of a line.
|
||||
* @param $maxh (float) maximum height. The remaining unprinted text will be returned. It should be >= $h and less then remaining space to the bottom of the page, or 0 for disable this feature.
|
||||
* @param $maxh (float) maximum height. The remaining unprinted text will be returned. It should be >= $h and less than remaining space to the bottom of the page, or 0 for disable this feature.
|
||||
* @param $wadj (float) first line width will be reduced by this amount (used in HTML mode).
|
||||
* @param $margin (array) margin array of the parent container
|
||||
* @return mixed Return the number of cells or the remaining string if $firstline = true.
|
||||
|
||||
10
main.php
10
main.php
@ -374,12 +374,10 @@ if ($cfg['SuhosinDisableWarning'] == false
|
||||
&& @ini_get('suhosin.request.max_value_length')
|
||||
) {
|
||||
trigger_error(
|
||||
PMA_sanitize(
|
||||
sprintf(
|
||||
__('Server running with Suhosin. Please refer to %sdocumentation%s for possible issues.'),
|
||||
'[a@./Documentation.html#faq1_38@_blank]',
|
||||
'[/a]'
|
||||
)
|
||||
sprintf(
|
||||
__('Server running with Suhosin. Please refer to %sdocumentation%s for possible issues.'),
|
||||
'[a@./Documentation.html#faq1_38@_blank]',
|
||||
'[/a]'
|
||||
),
|
||||
E_USER_WARNING
|
||||
);
|
||||
|
||||
2
po/af.po
2
po/af.po
@ -11933,7 +11933,7 @@ msgid "Release Series"
|
||||
msgstr "Kies Tabelle"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/ar.po
2
po/ar.po
@ -11901,7 +11901,7 @@ msgid "Release Series"
|
||||
msgstr "اختر الجداول"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/az.po
2
po/az.po
@ -12143,7 +12143,7 @@ msgid "Release Series"
|
||||
msgstr "Select Tables"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/be.po
2
po/be.po
@ -12598,7 +12598,7 @@ msgid "Release Series"
|
||||
msgstr "Выберыце табліцу(ы)"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
@ -12575,7 +12575,7 @@ msgid "Release Series"
|
||||
msgstr "Vybierycie tablicu(y)"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/bg.po
2
po/bg.po
@ -11538,7 +11538,7 @@ msgid "Release Series"
|
||||
msgstr "Избор на таблици"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/bn.po
2
po/bn.po
@ -12168,7 +12168,7 @@ msgid "Release Series"
|
||||
msgstr "টেবিল সিলেক্ট করুন"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/br.po
2
po/br.po
@ -11572,7 +11572,7 @@ msgid "Release Series"
|
||||
msgstr "Diuzit an alc'hwez estren"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/bs.po
2
po/bs.po
@ -12140,7 +12140,7 @@ msgid "Release Series"
|
||||
msgstr "Izaberi tabele"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/ca.po
2
po/ca.po
@ -12026,7 +12026,7 @@ msgid "Release Series"
|
||||
msgstr "Serie de versions"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
16
po/cs.po
16
po/cs.po
@ -6,7 +6,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
|
||||
"PO-Revision-Date: 2012-04-05 16:16+0200\n"
|
||||
"PO-Revision-Date: 2012-04-19 11:29+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: czech <cs@li.org>\n"
|
||||
"Language: cs\n"
|
||||
@ -14,7 +14,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 0.8\n"
|
||||
"X-Generator: Weblate 0.9\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:350
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1677
|
||||
@ -1669,7 +1669,7 @@ msgid ""
|
||||
"Failed building chart grid with imported config. Resetting to default "
|
||||
"config..."
|
||||
msgstr ""
|
||||
"Selhalo vytvoření grafu z importované konfigurace. Používám výchozí "
|
||||
"Selhalo vytvoření grafu z importovaného nastavení. Používám výchozí "
|
||||
"nastavení..."
|
||||
|
||||
#: js/messages.php:212 libraries/config/messages.inc.php:172
|
||||
@ -3905,7 +3905,7 @@ msgstr "Vložte parametry připojení k serveru"
|
||||
|
||||
#: libraries/config/messages.inc.php:206
|
||||
msgid "Configuration storage"
|
||||
msgstr "Úložiště konfigurace"
|
||||
msgstr "Úložiště nastavení"
|
||||
|
||||
#: libraries/config/messages.inc.php:207
|
||||
msgid ""
|
||||
@ -10755,7 +10755,7 @@ msgstr "Současné připojení"
|
||||
#: server_synchronize.php:1250
|
||||
#, php-format
|
||||
msgid "Configuration: %s"
|
||||
msgstr "Konfigurace: %s"
|
||||
msgstr "Z nastavení: %s"
|
||||
|
||||
#: server_synchronize.php:1265
|
||||
msgid "Socket"
|
||||
@ -10833,14 +10833,14 @@ msgstr "Nezabezpečené připojení"
|
||||
|
||||
#: setup/frames/index.inc.php:94
|
||||
msgid "Configuration saved."
|
||||
msgstr "Konfigurace uložena."
|
||||
msgstr "Nastavení bylo uloženo."
|
||||
|
||||
#: setup/frames/index.inc.php:95
|
||||
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 ""
|
||||
"Konfigurace byla uložena do souboru config/config.inc.php v adresáři "
|
||||
"Nastavení bylo uloženo do souboru config/config.inc.php v adresáři "
|
||||
"phpMyAdmina, přesuňte ji do adresáře phpMyAdmin a smažte adresář config pro "
|
||||
"její použití."
|
||||
|
||||
@ -11998,7 +11998,7 @@ msgid "Release Series"
|
||||
msgstr "Vydání"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr "MySQL server je starší než 5.1."
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/cy.po
2
po/cy.po
@ -12004,7 +12004,7 @@ msgid "Release Series"
|
||||
msgstr "Dewis Tablau"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/da.po
2
po/da.po
@ -12146,7 +12146,7 @@ msgid "Release Series"
|
||||
msgstr "Udgivelsesserie"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr "Versionen af MySQL server er mindre end 5.1"
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
26
po/de.po
26
po/de.po
@ -4,8 +4,8 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin-docs 3.5.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
|
||||
"PO-Revision-Date: 2012-04-15 19:19+0200\n"
|
||||
"Last-Translator: Robin Pepermans <robinp.1273@gmail.com>\n"
|
||||
"PO-Revision-Date: 2012-04-18 14:56+0200\n"
|
||||
"Last-Translator: Jan Erik Zassenhaus <Jan.Zassenhaus@jgerman.de>\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -866,7 +866,7 @@ msgstr ""
|
||||
msgid "The web server does not have permission to save the file %s."
|
||||
msgstr "Der Webserver hat keine Schreibrechte um die Datei %s zu speichern."
|
||||
|
||||
# Schema is not the right word for it, because a dump contains also data, and
|
||||
# Schema is not the right word for it, because a dump contains also data, and
|
||||
# NOT just the scheme.
|
||||
#: export.php:654
|
||||
#, php-format
|
||||
@ -929,8 +929,8 @@ msgstr "LineString"
|
||||
msgid "Outer Ring"
|
||||
msgstr "Ankreis"
|
||||
|
||||
# Ist hiermit der Inkreis gemeint? http://de.wikipedia.org/wiki/Inkreis
|
||||
#
|
||||
# Ist hiermit der Inkreis gemeint? http://de.wikipedia.org/wiki/Inkreis
|
||||
#
|
||||
# Ja
|
||||
#: gis_data_editor.php:225 gis_data_editor.php:281 js/messages.php:324
|
||||
msgid "Inner Ring"
|
||||
@ -2504,15 +2504,15 @@ msgstr "Fehler beim Erstellen der PDF Datei:"
|
||||
|
||||
#: libraries/RecentTable.class.php:107
|
||||
msgid "Could not save recent table"
|
||||
msgstr "Konnte die aktuelle Tabelle nicht speichern"
|
||||
msgstr "Konnte die letzte Tabelle nicht speichern"
|
||||
|
||||
#: libraries/RecentTable.class.php:142
|
||||
msgid "Recent tables"
|
||||
msgstr "Aktuelle Tabellen"
|
||||
msgstr "Letzte Tabellen"
|
||||
|
||||
#: libraries/RecentTable.class.php:149
|
||||
msgid "There are no recent tables"
|
||||
msgstr "Es gibt keine aktuellen Tabellen"
|
||||
msgstr "Es gibt keine letzten Tabellen"
|
||||
|
||||
#: libraries/StorageEngine.class.php:203
|
||||
msgid ""
|
||||
@ -3339,7 +3339,7 @@ msgstr "Zeile unter Mauscursor hervorheben"
|
||||
msgid "Highlight pointer"
|
||||
msgstr "Cursor hervorheben"
|
||||
|
||||
# Maybe the wikipedia link should point to the german version of the article
|
||||
# Maybe the wikipedia link should point to the german version of the article
|
||||
# (http://de.wikipedia.org/wiki/Bzip2 )
|
||||
#: libraries/config/messages.inc.php:30
|
||||
msgid ""
|
||||
@ -4912,11 +4912,11 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:423
|
||||
msgid "Signon session name"
|
||||
msgstr "Signon Session-Name"
|
||||
msgstr "Anmelde Session-Name"
|
||||
|
||||
#: libraries/config/messages.inc.php:424
|
||||
msgid "Signon URL"
|
||||
msgstr "Anmelde-URL"
|
||||
msgstr "Anmelde URL"
|
||||
|
||||
#: libraries/config/messages.inc.php:425
|
||||
msgid "Socket on which MySQL server is listening, leave empty for default"
|
||||
@ -5414,7 +5414,7 @@ msgstr "Aktiviere die Prüfung auf Aktualisierungen auf der Hauptseite"
|
||||
msgid "Version check"
|
||||
msgstr "Versionsüberprüfung"
|
||||
|
||||
# Maybe wikipedia links should point to $lang.wikipedia.org, eg
|
||||
# Maybe wikipedia links should point to $lang.wikipedia.org, eg
|
||||
# http://de.wikipedia.org/wiki/ZIP-Dateiformat
|
||||
#: libraries/config/messages.inc.php:524
|
||||
msgid ""
|
||||
@ -12245,7 +12245,7 @@ msgid "Release Series"
|
||||
msgstr "Release Reihe"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr "Die MySQL-Server-Version ist kleiner als 5.1."
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/el.po
2
po/el.po
@ -12253,7 +12253,7 @@ msgid "Release Series"
|
||||
msgstr "Σειρές Δημοσίευσης"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr "Η έκδοση διακομιστή MySQL είναι παλαιότερη της 5.1."
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
@ -12005,8 +12005,8 @@ msgid "Release Series"
|
||||
msgstr "Release Series"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgstr "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr "The MySQL server version less than 5.1."
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
msgid ""
|
||||
|
||||
14
po/es.po
14
po/es.po
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
|
||||
"PO-Revision-Date: 2012-04-09 16:09+0200\n"
|
||||
"PO-Revision-Date: 2012-04-18 17:32+0200\n"
|
||||
"Last-Translator: Matías Bellone <matiasbellone@gmail.com>\n"
|
||||
"Language-Team: spanish <es@li.org>\n"
|
||||
"Language: es\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 0.8\n"
|
||||
"X-Generator: Weblate 0.9\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:350
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1677
|
||||
@ -962,8 +962,8 @@ msgid ""
|
||||
"Chose \"GeomFromText\" from the \"Function\" column and paste the below "
|
||||
"string into the \"Value\" field"
|
||||
msgstr ""
|
||||
"Selecciones «GeomFromText» de la columna \"Función\" y pague la cadena "
|
||||
"ubicada debajo en el campo \"Valor\""
|
||||
"Seleccione «GeomFromText» de la columna \"Función\" y pegue la cadena ubicada "
|
||||
"debajo en el campo \"Valor\""
|
||||
|
||||
#: import.php:57
|
||||
#, php-format
|
||||
@ -1383,7 +1383,7 @@ msgstr "PB"
|
||||
msgid "EiB"
|
||||
msgstr "EB"
|
||||
|
||||
# singular: tabla
|
||||
# singular: tabla
|
||||
# plural: tablas
|
||||
#: js/messages.php:132
|
||||
#, php-format
|
||||
@ -12282,7 +12282,7 @@ msgid "Release Series"
|
||||
msgstr "Serie de versiones"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr "La versión del servidor MySQL es menor a 5.1."
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
@ -13005,7 +13005,7 @@ msgstr ""
|
||||
msgid "Percentage of used open files limit"
|
||||
msgstr "Porcentaje de uso del límite de archivos de abiertos"
|
||||
|
||||
# El mensaje de error llegará de PHP o MySQL por lo que no me parece correcto
|
||||
# El mensaje de error llegará de PHP o MySQL por lo que no me parece correcto
|
||||
# traducirlo
|
||||
#: po/advisory_rules.php:186
|
||||
msgid ""
|
||||
|
||||
2
po/et.po
2
po/et.po
@ -11990,7 +11990,7 @@ msgid "Release Series"
|
||||
msgstr "Väljaande seeria"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr "MySQL serveri versioon on alla 5.1."
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/eu.po
2
po/eu.po
@ -12108,7 +12108,7 @@ msgid "Release Series"
|
||||
msgstr "Taulak hautatu"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/fa.po
2
po/fa.po
@ -11909,7 +11909,7 @@ msgid "Release Series"
|
||||
msgstr "Select Tables"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/fi.po
2
po/fi.po
@ -12617,7 +12617,7 @@ msgid "Release Series"
|
||||
msgstr "Valitse taulut"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/fr.po
2
po/fr.po
@ -12185,7 +12185,7 @@ msgid "Release Series"
|
||||
msgstr "Famille de versions"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr "La version du serveur MySQL est antérieure à 5.1."
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/hi.po
2
po/hi.po
@ -11940,7 +11940,7 @@ msgid "Release Series"
|
||||
msgstr "टेबल चुनिये"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/hr.po
2
po/hr.po
@ -12554,7 +12554,7 @@ msgid "Release Series"
|
||||
msgstr "Odaberite tablice"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
36
po/hu.po
36
po/hu.po
@ -4,15 +4,15 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
|
||||
"PO-Revision-Date: 2012-03-28 16:21+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"PO-Revision-Date: 2012-04-20 00:10+0200\n"
|
||||
"Last-Translator: Gergely Nagy <gerrrike@yahoo.com>\n"
|
||||
"Language-Team: hungarian <hu@li.org>\n"
|
||||
"Language: hu\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.8\n"
|
||||
"X-Generator: Weblate 0.9\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:350
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1677
|
||||
@ -808,7 +808,6 @@ msgstr "Adatbázis Log"
|
||||
|
||||
#: enum_editor.php:23 js/messages.php:266
|
||||
#: libraries/rte/rte_routines.lib.php:690
|
||||
#, fuzzy
|
||||
msgid "ENUM/SET editor"
|
||||
msgstr "ENUM/SET szerkesztő"
|
||||
|
||||
@ -935,10 +934,9 @@ msgid "Inner Ring"
|
||||
msgstr "Belső gyűrű"
|
||||
|
||||
#: gis_data_editor.php:252
|
||||
#, fuzzy
|
||||
#| msgid "Add a new User"
|
||||
msgid "Add a linestring"
|
||||
msgstr "Új felhasználó hozzáadása"
|
||||
msgstr "Új sorvég hozzáadása"
|
||||
|
||||
#: gis_data_editor.php:252 gis_data_editor.php:304 js/messages.php:327
|
||||
msgid "Add an inner ring"
|
||||
@ -1273,20 +1271,18 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:97
|
||||
#, fuzzy
|
||||
#| msgid "Query cache"
|
||||
msgid "Query cache efficiency"
|
||||
msgstr "Lekérdezési gyorsítótár"
|
||||
msgstr "Lekérdezési gyorsítótár hatékonysága"
|
||||
|
||||
#: js/messages.php:98
|
||||
msgid "Query cache usage"
|
||||
msgstr "Lekérdezési gyorsítótár használat"
|
||||
|
||||
#: js/messages.php:99
|
||||
#, fuzzy
|
||||
#| msgid "Query cache"
|
||||
msgid "Query cache used"
|
||||
msgstr "Lekérdezési gyorsítótár"
|
||||
msgstr "Lekérdezési gyorsítótárat használatban"
|
||||
|
||||
#: js/messages.php:101
|
||||
msgid "System CPU Usage"
|
||||
@ -1417,14 +1413,13 @@ msgid "Edit title and labels"
|
||||
msgstr "Cím és címkék szerkesztése"
|
||||
|
||||
#: js/messages.php:140
|
||||
#, fuzzy
|
||||
#| msgid "Snap to grid"
|
||||
msgid "Add chart to grid"
|
||||
msgstr "Rácshoz illesztés"
|
||||
msgstr "Diagram hozzáadása"
|
||||
|
||||
#: js/messages.php:142
|
||||
msgid "Please add at least one variable to the series"
|
||||
msgstr ""
|
||||
msgstr "Legalább egy változót adjon meg a sorozathoz"
|
||||
|
||||
#: js/messages.php:143 libraries/display_export.lib.php:308
|
||||
#: libraries/display_tbl.lib.php:573 libraries/export/sql.php:1093
|
||||
@ -1436,11 +1431,11 @@ msgstr "Nincs"
|
||||
|
||||
#: js/messages.php:144
|
||||
msgid "Resume monitor"
|
||||
msgstr ""
|
||||
msgstr "Megfigyelés visszakapcsolása"
|
||||
|
||||
#: js/messages.php:145
|
||||
msgid "Pause monitor"
|
||||
msgstr ""
|
||||
msgstr "Megfigyelés megállítása"
|
||||
|
||||
#: js/messages.php:147
|
||||
msgid "general_log and slow_query_log are enabled."
|
||||
@ -1540,7 +1535,7 @@ msgstr ""
|
||||
#: js/messages.php:171
|
||||
#, php-format
|
||||
msgid "Divided by %s"
|
||||
msgstr ""
|
||||
msgstr "Osztva %s -el"
|
||||
|
||||
#: js/messages.php:172
|
||||
msgid "Unit"
|
||||
@ -1548,21 +1543,20 @@ msgstr "Egység"
|
||||
|
||||
#: js/messages.php:174
|
||||
msgid "From slow log"
|
||||
msgstr ""
|
||||
msgstr "a slow naplóból"
|
||||
|
||||
#: js/messages.php:175
|
||||
msgid "From general log"
|
||||
msgstr ""
|
||||
msgstr "az általános naplóból"
|
||||
|
||||
#: js/messages.php:176
|
||||
msgid "Analysing & loading logs. This may take a while."
|
||||
msgstr "Elemzés és naplók betöltése. Ez eltarthat egy ideig."
|
||||
|
||||
#: js/messages.php:177
|
||||
#, fuzzy
|
||||
#| msgid "Read requests"
|
||||
msgid "Cancel request"
|
||||
msgstr "Olvasási kérések"
|
||||
msgstr "Kérés elvetése"
|
||||
|
||||
#: js/messages.php:178
|
||||
msgid ""
|
||||
@ -12210,7 +12204,7 @@ msgid "Release Series"
|
||||
msgstr "Táblák kiválasztása"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/id.po
2
po/id.po
@ -11636,7 +11636,7 @@ msgid "Release Series"
|
||||
msgstr "Seri Rilis"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/it.po
2
po/it.po
@ -12238,7 +12238,7 @@ msgid "Release Series"
|
||||
msgstr "Cancella la serie"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr "La versione del server MySQL è inferiore a 5.1."
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
16
po/ja.po
16
po/ja.po
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
|
||||
"PO-Revision-Date: 2012-04-09 12:19+0200\n"
|
||||
"PO-Revision-Date: 2012-04-21 08:15+0200\n"
|
||||
"Last-Translator: Yuichiro Takahashi <yuichiro@pop07.odn.ne.jp>\n"
|
||||
"Language-Team: japanese <jp@li.org>\n"
|
||||
"Language: ja\n"
|
||||
@ -12,7 +12,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 0.8\n"
|
||||
"X-Generator: Weblate 0.10\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:350
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1677
|
||||
@ -4312,7 +4312,7 @@ msgstr "表示できる SQL 文の最大の長さ"
|
||||
#: libraries/config/messages.inc.php:309 libraries/config/messages.inc.php:314
|
||||
#: libraries/config/messages.inc.php:341
|
||||
msgid "Users cannot set a higher value"
|
||||
msgstr "ユーザはこれより高い値を設定することはできません。"
|
||||
msgstr "ユーザはこれより高い値を設定することはできません"
|
||||
|
||||
#: libraries/config/messages.inc.php:310
|
||||
msgid "Maximum number of databases displayed in left frame and database list"
|
||||
@ -4508,13 +4508,11 @@ msgstr "テーブルのソートを記憶する"
|
||||
|
||||
#: libraries/config/messages.inc.php:354
|
||||
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
|
||||
msgstr ""
|
||||
"カラム名ヘッダを何行に置きに挿入するか。[kbd]0[/kbd] でこの機能は無効になりま"
|
||||
"す。"
|
||||
msgstr "カラム名を何行に置きに挿入するか。[kbd]0[/kbd] でこの機能は無効になります。"
|
||||
|
||||
#: libraries/config/messages.inc.php:355
|
||||
msgid "Repeat headers"
|
||||
msgstr "カラム名ヘッダの繰り返し"
|
||||
msgstr "カラム名の差し込み間隔"
|
||||
|
||||
#: libraries/config/messages.inc.php:356
|
||||
msgid "Show help button instead of Documentation text"
|
||||
@ -9633,7 +9631,7 @@ msgstr "ランタイム情報"
|
||||
|
||||
#: server_status.php:786
|
||||
msgid "All status variables"
|
||||
msgstr "全ての状態変数"
|
||||
msgstr "すべての状態変数"
|
||||
|
||||
#: server_status.php:787
|
||||
msgid "Monitor"
|
||||
@ -12006,7 +12004,7 @@ msgid "Release Series"
|
||||
msgstr "バージョン系統"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr "MySQL サーバのバージョンが 5.1 未満です。"
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/ka.po
2
po/ka.po
@ -12462,7 +12462,7 @@ msgid "Release Series"
|
||||
msgstr "ცხრილების არჩევა"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/ko.po
2
po/ko.po
@ -11791,7 +11791,7 @@ msgid "Release Series"
|
||||
msgstr "모두 선택"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
47
po/lt.po
47
po/lt.po
@ -4,16 +4,16 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
|
||||
"PO-Revision-Date: 2012-03-30 19:57+0200\n"
|
||||
"Last-Translator: Kęstutis <forkik@gmail.com>\n"
|
||||
"PO-Revision-Date: 2012-04-18 15:01+0200\n"
|
||||
"Last-Translator: Edgaras Janušauskas <edgaras.janusauskas@gmail.com>\n"
|
||||
"Language-Team: lithuanian <lt@li.org>\n"
|
||||
"Language: lt\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"
|
||||
"%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 0.8\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%"
|
||||
"100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 0.9\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:350
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1677
|
||||
@ -823,16 +823,14 @@ msgid "Values for column %s"
|
||||
msgstr "Stulpelio „%s“ reikšmės"
|
||||
|
||||
#: enum_editor.php:34 js/messages.php:269
|
||||
#, fuzzy
|
||||
#| msgid "Enter each value in a separate field."
|
||||
msgid "Enter each value in a separate field"
|
||||
msgstr "Įveskite kiekvieną reikšmę atskirame laukelyje."
|
||||
msgstr "Įveskite kiekvieną reikšmę atskirame laukelyje"
|
||||
|
||||
#: enum_editor.php:123
|
||||
#, fuzzy
|
||||
#| msgid "+ Add a value"
|
||||
msgid "Add a value"
|
||||
msgstr "+ Pridėti reikšmę"
|
||||
msgstr "Pridėti reikšmę"
|
||||
|
||||
#: enum_editor.php:129 gis_data_editor.php:317
|
||||
msgid "Output"
|
||||
@ -952,13 +950,12 @@ msgstr "Sukurti naują vartotoją"
|
||||
|
||||
#: gis_data_editor.php:266 js/messages.php:322
|
||||
msgid "Polygon"
|
||||
msgstr ""
|
||||
msgstr "Daugiakampis"
|
||||
|
||||
#: gis_data_editor.php:306 js/messages.php:328
|
||||
#, fuzzy
|
||||
#| msgid "Add column"
|
||||
msgid "Add a polygon"
|
||||
msgstr "Pridėti stulpelį"
|
||||
msgstr "Pridėti daugiakampį"
|
||||
|
||||
#: gis_data_editor.php:310
|
||||
#, fuzzy
|
||||
@ -1120,7 +1117,6 @@ msgid "This is not a number!"
|
||||
msgstr "Įveskite skaičių!"
|
||||
|
||||
#: js/messages.php:46
|
||||
#, fuzzy
|
||||
#| msgid "Add index"
|
||||
msgid "Add Index"
|
||||
msgstr "Pridėti indeksą"
|
||||
@ -2609,7 +2605,7 @@ msgstr "Kelias iki temos nerastas temai %s!"
|
||||
|
||||
#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27
|
||||
msgid "Theme"
|
||||
msgstr "Apipavidalinimas"
|
||||
msgstr "Išvaizda"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:71
|
||||
msgid "Cannot connect: invalid settings."
|
||||
@ -5579,7 +5575,7 @@ msgstr "Suderinamas su MySQL 4.0"
|
||||
#: libraries/display_create_database.lib.php:21
|
||||
#: libraries/display_create_database.lib.php:39
|
||||
msgid "Create database"
|
||||
msgstr "Sukurti duombazę"
|
||||
msgstr "Sukurti duomenų bazę"
|
||||
|
||||
#: libraries/display_create_database.lib.php:33
|
||||
msgid "Create"
|
||||
@ -8396,10 +8392,9 @@ msgid "General Settings"
|
||||
msgstr "Pagrindiniai nustatymai"
|
||||
|
||||
#: main.php:109
|
||||
#, fuzzy
|
||||
#| msgid "MySQL connection collation"
|
||||
msgid "Server connection collation"
|
||||
msgstr "MySQL prisijungimo lyginimas"
|
||||
msgstr "Serverio ryšio palyginimas"
|
||||
|
||||
#: main.php:124
|
||||
msgid "Appearance Settings"
|
||||
@ -8410,20 +8405,18 @@ msgid "More settings"
|
||||
msgstr "Daugiau nustatymų"
|
||||
|
||||
#: main.php:169
|
||||
#, fuzzy
|
||||
#| msgid "Database for user"
|
||||
msgid "Database server"
|
||||
msgstr "Vartotojo duomenų bazė"
|
||||
msgstr "Duomenų bazės serveris"
|
||||
|
||||
#: main.php:172
|
||||
msgid "Software"
|
||||
msgstr ""
|
||||
msgstr "Programinė įranga"
|
||||
|
||||
#: main.php:173
|
||||
#, fuzzy
|
||||
#| msgid "Show versions"
|
||||
msgid "Software version"
|
||||
msgstr "Rodyti versijas"
|
||||
msgstr "Programinės įrangos versija"
|
||||
|
||||
#: main.php:175
|
||||
msgid "Protocol version"
|
||||
@ -8436,20 +8429,18 @@ msgid "User"
|
||||
msgstr "Naudotojas"
|
||||
|
||||
#: main.php:184
|
||||
#, fuzzy
|
||||
#| msgid "Server socket"
|
||||
msgid "Server charset"
|
||||
msgstr "Serverio prievadas (socket)"
|
||||
msgstr "Serverio koduotė"
|
||||
|
||||
#: main.php:196
|
||||
msgid "Web server"
|
||||
msgstr "Interneto serveris"
|
||||
|
||||
#: main.php:209
|
||||
#, fuzzy
|
||||
#| msgid "Use light version"
|
||||
msgid "Database client version"
|
||||
msgstr "Naudoti mažą versiją"
|
||||
msgstr "Duomenų bazės kliento versija"
|
||||
|
||||
#: main.php:213
|
||||
msgid "PHP extension"
|
||||
@ -11933,7 +11924,7 @@ msgid "Release Series"
|
||||
msgstr "Pasirinkite eiles:"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
@ -12904,7 +12895,7 @@ msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:270
|
||||
msgid "MyISAM concurrent inserts"
|
||||
msgstr "MyISAM concurrent įterpimai"
|
||||
msgstr "MyISAM lygiagretieji įterpimai"
|
||||
|
||||
#: po/advisory_rules.php:271
|
||||
msgid "Enable concurrent_insert by setting it to 1"
|
||||
|
||||
2
po/lv.po
2
po/lv.po
@ -12199,7 +12199,7 @@ msgid "Release Series"
|
||||
msgstr "Izvēlieties tabulas"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/mk.po
2
po/mk.po
@ -12273,7 +12273,7 @@ msgid "Release Series"
|
||||
msgstr "Избери табели"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/ml.po
2
po/ml.po
@ -11263,7 +11263,7 @@ msgid "Release Series"
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/mn.po
2
po/mn.po
@ -12276,7 +12276,7 @@ msgid "Release Series"
|
||||
msgstr "Хүснэгтүүд сонго"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/ms.po
2
po/ms.po
@ -11982,7 +11982,7 @@ msgid "Release Series"
|
||||
msgstr "Pilih Jadual"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/nb.po
2
po/nb.po
@ -12501,7 +12501,7 @@ msgid "Release Series"
|
||||
msgstr "Velg tabeller"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
6
po/nl.po
6
po/nl.po
@ -9917,8 +9917,8 @@ msgstr ""
|
||||
"Deze MySQL-server is ingesteld als <b>slave</b> in een "
|
||||
"<b>replicatie</b>proces."
|
||||
|
||||
# Er moet een betere vertaling voor "replication" zijn. "Nadoen"?
|
||||
# "Deze MySQL-server functioneert als %s in een <b>replicatie</b> proces."
|
||||
# Er moet een betere vertaling voor "replication" zijn. "Nadoen"?
|
||||
# "Deze MySQL-server functioneert als %s in een <b>replicatie</b> proces."
|
||||
# weggehaald.
|
||||
#: server_status.php:1076
|
||||
msgid ""
|
||||
@ -12221,7 +12221,7 @@ msgid "Release Series"
|
||||
msgstr "Groep van uitgebrachte versies"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr "De MySQL-server versie is kleiner dan 5.1."
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
@ -11256,7 +11256,7 @@ msgid "Release Series"
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
13
po/pl.po
13
po/pl.po
@ -4,8 +4,8 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
|
||||
"PO-Revision-Date: 2012-04-11 23:33+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"PO-Revision-Date: 2012-04-18 12:01+0200\n"
|
||||
"Last-Translator: Marcin Kozioł <lord_dark@wp.pl>\n"
|
||||
"Language-Team: iMutrix\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -7435,7 +7435,7 @@ msgstr "Przepraszamy, nie udało nam się przywrócić upuszczonego zdarzenia."
|
||||
#: libraries/rte/rte_events.lib.php:117 libraries/rte/rte_routines.lib.php:267
|
||||
#: libraries/rte/rte_triggers.lib.php:90
|
||||
msgid "The backed up query was:"
|
||||
msgstr "Przygotowana kwerenda:"
|
||||
msgstr "Kopia zapasowa kwerendy została:"
|
||||
|
||||
#: libraries/rte/rte_events.lib.php:121
|
||||
#, php-format
|
||||
@ -12122,7 +12122,7 @@ msgid "Release Series"
|
||||
msgstr "Seria wydania"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr "Wersja serwera MySQL jest mniejsza niż 5,1."
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
@ -12743,7 +12743,7 @@ msgstr "Maks. bufor klucza %% MyISAM kiedykolwiek"
|
||||
#: po/advisory_rules.php:166 po/advisory_rules.php:171
|
||||
#, php-format
|
||||
msgid "MyISAM key buffer (index cache) %% used is low."
|
||||
msgstr ""
|
||||
msgstr "Użycie bufora indeksów MyISAM jest niskie."
|
||||
|
||||
#: po/advisory_rules.php:167 po/advisory_rules.php:172
|
||||
msgid ""
|
||||
@ -12760,6 +12760,8 @@ msgstr ""
|
||||
msgid ""
|
||||
"max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%"
|
||||
msgstr ""
|
||||
"maks %% klucz bufora MyISAM używany co: %s%%, wartość ta powinna być wyższa "
|
||||
"niż 95%%"
|
||||
|
||||
#: po/advisory_rules.php:170
|
||||
msgid "Percentage of MyISAM key buffer used"
|
||||
@ -12769,6 +12771,7 @@ msgstr "Procent MyISAM klucza używanego bufora"
|
||||
#, php-format
|
||||
msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%"
|
||||
msgstr ""
|
||||
"%% Użyto klucza bufora MyISAM: %s%%, wartość ta powinna być wyższa niż 95%%"
|
||||
|
||||
#: po/advisory_rules.php:175
|
||||
msgid "Percentage of index reads from memory"
|
||||
|
||||
2
po/pt.po
2
po/pt.po
@ -12027,7 +12027,7 @@ msgid "Release Series"
|
||||
msgstr "Seleccionar Tabelas"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
19
po/pt_BR.po
19
po/pt_BR.po
@ -4,8 +4,8 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
|
||||
"PO-Revision-Date: 2012-04-16 00:14+0200\n"
|
||||
"Last-Translator: JCJesus Lima <jcjlima@gmail.com>\n"
|
||||
"PO-Revision-Date: 2012-04-20 09:33+0200\n"
|
||||
"Last-Translator: Hizer Cache <cache@aol.com.br>\n"
|
||||
"Language-Team: brazilian_portuguese <pt_BR@li.org>\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -26,7 +26,7 @@ msgstr "Mostrar tudo"
|
||||
#: libraries/schema/User_Schema.class.php:396
|
||||
#: libraries/select_lang.lib.php:489
|
||||
msgid "Page number:"
|
||||
msgstr "Página número:"
|
||||
msgstr "Número da página:"
|
||||
|
||||
#: browse_foreigners.php:142
|
||||
msgid ""
|
||||
@ -101,7 +101,7 @@ msgstr "Usar este valor"
|
||||
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
|
||||
#: libraries/blobstreaming.lib.php:385
|
||||
msgid "No blob streaming server configured!"
|
||||
msgstr "Servidor de streaming de blob não encontrado!"
|
||||
msgstr "Servidor de blob streaming não configurado!"
|
||||
|
||||
#: bs_disp_as_mime_type.php:35
|
||||
msgid "Failed to fetch headers"
|
||||
@ -5332,6 +5332,10 @@ msgid ""
|
||||
"For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: "
|
||||
"HTTP_X_FORWARDED_FOR[/kbd]"
|
||||
msgstr ""
|
||||
"Insira os Proxies como [kbd]IP: Cabeçalho HTTP de confiança[/kbd]. O exemplo "
|
||||
"seguinte ilustra que o phpMyAdmin deve confiar no cabeçalho "
|
||||
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) vindo do proxie "
|
||||
"1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
|
||||
|
||||
#: libraries/config/messages.inc.php:512
|
||||
msgid "List of trusted proxies for IP allow/deny"
|
||||
@ -5360,6 +5364,8 @@ msgid ""
|
||||
"When disabled, users cannot set any of the options below, regardless of the "
|
||||
"checkbox on the right"
|
||||
msgstr ""
|
||||
"Quando desabilitado, usuários não podem selecionar nenhuma das opções "
|
||||
"abaixo, independentemente da checkbox a direita."
|
||||
|
||||
#: libraries/config/messages.inc.php:518
|
||||
msgid "Enable the Developer tab in settings"
|
||||
@ -5467,10 +5473,9 @@ msgid "Could not initialize Drizzle connection library"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/validate.lib.php:205 libraries/config/validate.lib.php:212
|
||||
#, fuzzy
|
||||
#| msgid "Could not open file: %s"
|
||||
msgid "Could not connect to Drizzle server"
|
||||
msgstr "Não foi possível abrir o arquivo: %s"
|
||||
msgstr "Não foi possivel se conectar ao servidor Drizzle"
|
||||
|
||||
#: libraries/config/validate.lib.php:223 libraries/config/validate.lib.php:230
|
||||
msgid "Could not connect to MySQL server"
|
||||
@ -12309,7 +12314,7 @@ msgid "Release Series"
|
||||
msgstr "Tabelas selecionadas"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/ro.po
2
po/ro.po
@ -12520,7 +12520,7 @@ msgid "Release Series"
|
||||
msgstr "Selectează tabele"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
6
po/ru.po
6
po/ru.po
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
|
||||
"PO-Revision-Date: 2012-04-14 19:43+0200\n"
|
||||
"PO-Revision-Date: 2012-04-18 23:24+0200\n"
|
||||
"Last-Translator: Victor Volkov <hanut@php-myadmin.ru>\n"
|
||||
"Language-Team: russian <ru@li.org>\n"
|
||||
"Language: ru\n"
|
||||
@ -5570,7 +5570,7 @@ msgstr "Детали..."
|
||||
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
|
||||
#: libraries/db_links.inc.php:44
|
||||
msgid "Database seems to be empty!"
|
||||
msgstr "База данных - пуста!"
|
||||
msgstr "Пустая база данных!"
|
||||
|
||||
#: libraries/db_links.inc.php:65 libraries/relation.lib.php:144
|
||||
#: libraries/tbl_links.inc.php:97
|
||||
@ -12190,7 +12190,7 @@ msgid "Release Series"
|
||||
msgstr "Серии выпусков"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr "Версия сервера MySQL ниже 5.1."
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
227
po/si.po
227
po/si.po
@ -4,7 +4,7 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
|
||||
"PO-Revision-Date: 2012-04-15 18:48+0200\n"
|
||||
"PO-Revision-Date: 2012-04-21 10:02+0200\n"
|
||||
"Last-Translator: Madhura Jayaratne <madhura.cj@gmail.com>\n"
|
||||
"Language-Team: sinhala <si@li.org>\n"
|
||||
"Language: si\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 0.9\n"
|
||||
"X-Generator: Weblate 0.10\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:350
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1677
|
||||
@ -682,7 +682,7 @@ msgstr "මුද්රණ දර්ශනය"
|
||||
#: db_structure.php:587 libraries/common.lib.php:3352
|
||||
#: libraries/common.lib.php:3353
|
||||
msgid "Empty"
|
||||
msgstr "හිස්"
|
||||
msgstr "හිස් කරන්න"
|
||||
|
||||
#: db_structure.php:589 db_tracking.php:105 enum_editor.php:116
|
||||
#: libraries/Index.class.php:490 libraries/common.lib.php:3350
|
||||
@ -697,7 +697,7 @@ msgstr "වගුව පරීක්ෂා කරන්න"
|
||||
|
||||
#: db_structure.php:594 tbl_operations.php:669 tbl_structure.php:816
|
||||
msgid "Optimize table"
|
||||
msgstr "ප්රශස්තගත වගුව"
|
||||
msgstr "වගුව ප්රශස්තගත කරන්න"
|
||||
|
||||
#: db_structure.php:596 tbl_operations.php:654
|
||||
msgid "Repair table"
|
||||
@ -2644,7 +2644,7 @@ msgstr "වැරදි භාවිත නාමය/මුරපදය. පි
|
||||
|
||||
#: libraries/auth/signon.auth.lib.php:88
|
||||
msgid "Can not find signon authentication script:"
|
||||
msgstr "signon සත්යාපන ස්ක්රිප්ටය සොයාගත නොහැක:"
|
||||
msgstr "signon සත්යාපන විධානාවලිය සොයාගත නොහැක:"
|
||||
|
||||
#: libraries/auth/swekey/swekey.auth.lib.php:116
|
||||
#, php-format
|
||||
@ -3649,7 +3649,7 @@ msgstr "phpMyAdmin භාවිතා කිරීමේදී ආරක්
|
||||
|
||||
#: libraries/config/messages.inc.php:151
|
||||
msgid "Force SSL connection"
|
||||
msgstr "SSL සම්බන්දතාවක් යොදා ගැනීමට බල කරන්න"
|
||||
msgstr "SSL සම්බන්ධතාවක් යොදා ගැනීමට බල කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:152
|
||||
msgid ""
|
||||
@ -4548,11 +4548,11 @@ msgstr "තීර විස්තර ගොනුව"
|
||||
|
||||
#: libraries/config/messages.inc.php:378
|
||||
msgid "Compress connection to MySQL server"
|
||||
msgstr "MySQL සේවාදායකය වෙත සම්බන්දතාව හකුලන්න"
|
||||
msgstr "MySQL සේවාදායකය වෙත සම්බන්දතාව හකුළුවන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:379
|
||||
msgid "Compress connection"
|
||||
msgstr "සම්බන්දතාව හකුලන්න"
|
||||
msgstr "සම්බන්ධතාව හකුළුවන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:380
|
||||
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
|
||||
@ -4560,7 +4560,7 @@ msgstr "සේවාදායකයට කෙසේ සම්බන්ද වි
|
||||
|
||||
#: libraries/config/messages.inc.php:381
|
||||
msgid "Connection type"
|
||||
msgstr "සම්බන්දතා වර්ගය"
|
||||
msgstr "සම්බන්ධතා වර්ගය"
|
||||
|
||||
#: libraries/config/messages.inc.php:382
|
||||
msgid "Control user password"
|
||||
@ -4996,10 +4996,12 @@ msgid ""
|
||||
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
|
||||
"output"
|
||||
msgstr ""
|
||||
"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] ප්රතිදානය වෙත "
|
||||
"සබැඳුම පෙන්වන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:469
|
||||
msgid "Show phpinfo() link"
|
||||
msgstr ""
|
||||
msgstr "phpinfo() සබැඳුම පෙන්වන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:470
|
||||
msgid "Show detailed MySQL server information"
|
||||
@ -5087,16 +5089,20 @@ msgid ""
|
||||
"[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be "
|
||||
"installed"
|
||||
msgstr ""
|
||||
"[strong]අවවාදයයි:[/strong] PHP SOAP ස්ථාපනය කර තිබීම හෝ PHP SOAP දිගුව "
|
||||
"අවශ්යයි"
|
||||
|
||||
#: libraries/config/messages.inc.php:492
|
||||
msgid "Enable SQL Validator"
|
||||
msgstr ""
|
||||
msgstr "SQL සත්යාපකය සක්රීය කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:493
|
||||
msgid ""
|
||||
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
|
||||
"kbd])"
|
||||
msgstr ""
|
||||
"ඔබට සාදා ගත් භාවිත නාමයක් ඇත්නම් එය මෙහි සඳහන් කරන්න (නැත්නම් පෙරනිමි අගය වන "
|
||||
"[kbd]anonymous[/kbd] භාවිතා කෙරේ)"
|
||||
|
||||
#: libraries/config/messages.inc.php:494 tbl_tracking.php:460
|
||||
#: tbl_tracking.php:517
|
||||
@ -5181,7 +5187,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:513
|
||||
msgid "Directory on server where you can upload files for import"
|
||||
msgstr ""
|
||||
msgstr "ආනයනය සඳහා ගොනු උඩුගත කල හැකි සේවාදායකයේ ඩිරෙක්ටරිය"
|
||||
|
||||
#: libraries/config/messages.inc.php:514
|
||||
msgid "Upload directory"
|
||||
@ -5189,11 +5195,11 @@ msgstr "උඩුගත කිරීමේ ඩිරෙක්ටරිය"
|
||||
|
||||
#: libraries/config/messages.inc.php:515
|
||||
msgid "Allow for searching inside the entire database"
|
||||
msgstr ""
|
||||
msgstr "සම්පූර්ණ දත්තගබඩාව තුලම සෙවීම සඳහා ඉඩ ලබා දෙන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:516
|
||||
msgid "Use database search"
|
||||
msgstr ""
|
||||
msgstr "දත්තගබඩා සෙවීම භාවිතා කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:517
|
||||
msgid ""
|
||||
@ -5203,7 +5209,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:518
|
||||
msgid "Enable the Developer tab in settings"
|
||||
msgstr ""
|
||||
msgstr "සිටුවම් හි ක්රමලේඛනය කරන්නන් සදහා වූ ටැබය සක්රීය කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:519
|
||||
msgid ""
|
||||
@ -5211,6 +5217,9 @@ msgid ""
|
||||
"libraries/import.lib.php for defaults on how many queries a statement may "
|
||||
"contain."
|
||||
msgstr ""
|
||||
"බහු-ප්රකාශ විමසුමකදී එක් එක් ප්රකාශය සඳහා එම ප්රකාශය බලපෑ පේළි ගණන "
|
||||
"පෙන්වන්න. ප්රකාශයක් තුල තිබිය හැකි විමසුම් ගණන සම්බන්ධ පෙරනිමි අගයන් සඳහා "
|
||||
"libraries/import.lib.php බලන්න."
|
||||
|
||||
#: libraries/config/messages.inc.php:520
|
||||
msgid "Verbose multiple statements"
|
||||
@ -5218,7 +5227,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:521 setup/frames/index.inc.php:243
|
||||
msgid "Check for latest version"
|
||||
msgstr ""
|
||||
msgstr "නවතම අනුවාදය සඳහා පරීක්ෂා කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:522
|
||||
msgid "Enables check for latest version on main phpMyAdmin page"
|
||||
@ -5237,26 +5246,29 @@ msgid ""
|
||||
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
|
||||
"for import and export operations"
|
||||
msgstr ""
|
||||
"ආනයන අපනයන මෙහෙයුම් සඳහා "
|
||||
"[a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] හැකිළීම යොදාගැනීම "
|
||||
"සක්රීය කරන්න"
|
||||
|
||||
#: libraries/config/messages.inc.php:525
|
||||
msgid "ZIP"
|
||||
msgstr ""
|
||||
msgstr "ZIP"
|
||||
|
||||
#: libraries/config/setup.forms.php:41
|
||||
msgid "Config authentication"
|
||||
msgstr ""
|
||||
msgstr "Config සත්යාපනය"
|
||||
|
||||
#: libraries/config/setup.forms.php:45
|
||||
msgid "Cookie authentication"
|
||||
msgstr ""
|
||||
msgstr "Cookie සත්යාපනය"
|
||||
|
||||
#: libraries/config/setup.forms.php:48
|
||||
msgid "HTTP authentication"
|
||||
msgstr ""
|
||||
msgstr "HTTP සත්යාපනය"
|
||||
|
||||
#: libraries/config/setup.forms.php:51
|
||||
msgid "Signon authentication"
|
||||
msgstr ""
|
||||
msgstr "Signon සත්යාපනය"
|
||||
|
||||
#: libraries/config/setup.forms.php:251
|
||||
#: libraries/config/user_preferences.forms.php:151 libraries/import/ldi.php:35
|
||||
@ -5295,7 +5307,7 @@ msgstr "MS එක්සෙල් සඳහා CSV"
|
||||
#: libraries/config/user_preferences.forms.php:246
|
||||
#: libraries/export/htmlword.php:18
|
||||
msgid "Microsoft Word 2000"
|
||||
msgstr "මෛක්රොසොෆ්ට් වර්ඩ් 2000"
|
||||
msgstr "මයික්රොසොෆ්ට් වර්ඩ් 2000"
|
||||
|
||||
#: libraries/config/setup.forms.php:357
|
||||
#: libraries/config/user_preferences.forms.php:255 libraries/export/odt.php:22
|
||||
@ -5304,40 +5316,42 @@ msgstr "Open Document පෙළ"
|
||||
|
||||
#: libraries/config/validate.lib.php:198
|
||||
msgid "Could not initialize Drizzle connection library"
|
||||
msgstr ""
|
||||
msgstr "Drizzle සබඳතා පුස්තකාලය ඇරඹිය නොහැකි විය"
|
||||
|
||||
#: libraries/config/validate.lib.php:205 libraries/config/validate.lib.php:212
|
||||
msgid "Could not connect to Drizzle server"
|
||||
msgstr "Drizzleසේවාදායකය වෙත සම්බන්ද විය නොහැකි විය"
|
||||
msgstr "Drizzle සේවාදායකය වෙත සම්බන්ධ විය නොහැකි විය"
|
||||
|
||||
#: libraries/config/validate.lib.php:223 libraries/config/validate.lib.php:230
|
||||
msgid "Could not connect to MySQL server"
|
||||
msgstr ""
|
||||
msgstr "MySQL සේවාදායකය වෙත සම්බන්ධ විය නොහැකි විය"
|
||||
|
||||
#: libraries/config/validate.lib.php:254
|
||||
msgid "Empty username while using config authentication method"
|
||||
msgstr ""
|
||||
msgstr "config සත්යාපන ක්රමය භාවිතා කිරීමේදී හිස් භාවිත නාමයක්"
|
||||
|
||||
#: libraries/config/validate.lib.php:258
|
||||
msgid "Empty signon session name while using signon authentication method"
|
||||
msgstr ""
|
||||
msgstr "signon සත්යාපන ක්රමය භාවිතා කිරීමේදී හිස් signon සැසි නාමයක්"
|
||||
|
||||
#: libraries/config/validate.lib.php:262
|
||||
msgid "Empty signon URL while using signon authentication method"
|
||||
msgstr ""
|
||||
msgstr "singon සත්යාපන ක්රමය භාවිතා කිරීමේදී signon URL සඳහා හිස් අගයක්"
|
||||
|
||||
#: libraries/config/validate.lib.php:295
|
||||
msgid "Empty phpMyAdmin control user while using pmadb"
|
||||
msgstr ""
|
||||
msgstr "pmadb භාවිතා කිරීමේදී phpMyAdmin පරිපාලක භාවිතා කරන්නා සඳහා හිස් අගයක්"
|
||||
|
||||
#: libraries/config/validate.lib.php:299
|
||||
msgid "Empty phpMyAdmin control user password while using pmadb"
|
||||
msgstr ""
|
||||
"pmadb භාවිතා කිරීමේදී phpMyAdmin පරිපාලක භාවිතා කරන්නාගේ මුරපදය සඳහා හිස් "
|
||||
"අගයක්"
|
||||
|
||||
#: libraries/config/validate.lib.php:385
|
||||
#, php-format
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
msgstr "වැරදි IP යොමුව: %s"
|
||||
|
||||
#. l10n: Please check that translation actually exists.
|
||||
#: libraries/core.lib.php:247
|
||||
@ -5348,7 +5362,7 @@ msgstr "en"
|
||||
#: libraries/core.lib.php:266
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
msgstr "%s දිගුව සොයාගත නොහැක. කරුණාකර ඔබගේ PHP වින්යාසයන් පරීක්ෂා කර බලන්න."
|
||||
|
||||
#: libraries/core.lib.php:414
|
||||
msgid "possible deep recursion attack"
|
||||
@ -5366,7 +5380,7 @@ msgstr "සේවාදායකය ප්රතිචාර නොදක්
|
||||
|
||||
#: libraries/database_interface.lib.php:1820
|
||||
msgid "Please check privileges of directory containing database."
|
||||
msgstr ""
|
||||
msgstr "කරුණාකර දත්තගබඩාව අඩංගු ඩිරෙක්ටරිය සඳහා වරප්රසාද පරීක්ෂා කරන්න."
|
||||
|
||||
#: libraries/database_interface.lib.php:1828
|
||||
msgid "Details..."
|
||||
@ -5375,7 +5389,7 @@ msgstr "තොරතුරු..."
|
||||
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
|
||||
#: libraries/db_links.inc.php:44
|
||||
msgid "Database seems to be empty!"
|
||||
msgstr ""
|
||||
msgstr "දත්තගබඩාව හිස්ය!"
|
||||
|
||||
#: libraries/db_links.inc.php:65 libraries/relation.lib.php:144
|
||||
#: libraries/tbl_links.inc.php:97
|
||||
@ -5422,6 +5436,8 @@ msgstr ""
|
||||
#: libraries/dbi/mysqli.dbi.lib.php:189
|
||||
msgid "Connection for controluser as defined in your configuration failed."
|
||||
msgstr ""
|
||||
"වින්යාසයන් හි අර්ථදක්වා ඇති පරිදි පරිපාලක භාවිතා කරන්නා ලෙස සම්බන්ධ වීම "
|
||||
"අසමත් විය."
|
||||
|
||||
#: libraries/display_change_password.lib.php:29 main.php:94
|
||||
#: user_password.php:105 user_password.php:123
|
||||
@ -5480,7 +5496,7 @@ msgstr "තීර ගණන"
|
||||
|
||||
#: libraries/display_export.lib.php:37
|
||||
msgid "Could not load export plugins, please check your installation!"
|
||||
msgstr ""
|
||||
msgstr "අපනයන පේණු පූරණය කල නොහැකි විය, ඔබගේ ස්ථාපනය පරීක්ෂා කර බලන්න!"
|
||||
|
||||
#: libraries/display_export.lib.php:82
|
||||
msgid "Exporting databases from the current server"
|
||||
@ -5555,15 +5571,15 @@ msgstr "ගොනු නාම අච්චුව:"
|
||||
|
||||
#: libraries/display_export.lib.php:224
|
||||
msgid "@SERVER@ will become the server name"
|
||||
msgstr ""
|
||||
msgstr "@SERVER@ සේවාදායකයේ නාමයෙන් ප්රතිස්ථාපනය කෙරෙනු ඇත"
|
||||
|
||||
#: libraries/display_export.lib.php:226
|
||||
msgid ", @DATABASE@ will become the database name"
|
||||
msgstr ""
|
||||
msgstr ", @DATABASE@ දත්තගබඩාවේ නාමයෙන් ප්රතිස්ථාපනය කෙරෙනු ඇත"
|
||||
|
||||
#: libraries/display_export.lib.php:228
|
||||
msgid ", @TABLE@ will become the table name"
|
||||
msgstr ""
|
||||
msgstr ", @TABLE@ වගුවේ නාමයෙන් ප්රතිස්ථාපනය කෙරෙනු ඇත"
|
||||
|
||||
#: libraries/display_export.lib.php:232
|
||||
#, fuzzy, php-format
|
||||
@ -5623,6 +5639,8 @@ msgid ""
|
||||
"Scroll down to fill in the options for the selected format and ignore the "
|
||||
"options for other formats."
|
||||
msgstr ""
|
||||
"තෝරාගත් ආකෘතිය සඳහා විකල්ප භාවිතා කිරීමට පහලට යන්න. අනෙකුත් ආකෘති සඳහා "
|
||||
"විකල්ප නොසලකන්න."
|
||||
|
||||
#: libraries/display_export.lib.php:342 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -5635,16 +5653,20 @@ msgid ""
|
||||
"this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) "
|
||||
"browsers."
|
||||
msgstr ""
|
||||
"මෙය ඔබ උඩුගත කරන ගොනුව අවසරැති ප්රමාණයට වඩා විශාල වීම හෝ webkit මූලික කරගත් "
|
||||
"බ්රව්සර වල (Safari, Google Chrome, Arora etc.) හඳුනාගත් දෝෂයක් විය හැක."
|
||||
|
||||
#: libraries/display_import.lib.php:76
|
||||
msgid "The file is being processed, please be patient."
|
||||
msgstr ""
|
||||
msgstr "ඔබගේ ගොනුව සැකසෙමින් පවතී. කරුණාකර ඉවසා සිටින්න."
|
||||
|
||||
#: libraries/display_import.lib.php:98
|
||||
msgid ""
|
||||
"Please be patient, the file is being uploaded. Details about the upload are "
|
||||
"not available."
|
||||
msgstr ""
|
||||
"කරුණාකර ඉවසා සිටින්න. ගොනුව උඩුගත කෙරෙමින් පවතී. උඩුගත කිරීම පිලිබඳ වැඩි "
|
||||
"විස්තර ලබා ගත නොහැක."
|
||||
|
||||
#: libraries/display_import.lib.php:129
|
||||
msgid "Importing into the current server"
|
||||
@ -5678,7 +5700,7 @@ msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:178
|
||||
msgid "File uploads are not allowed on this server."
|
||||
msgstr ""
|
||||
msgstr "මෙම සේවාදායකයේ ගොනු උඩුගත කිරීමට අවසර නොමැත."
|
||||
|
||||
#: libraries/display_import.lib.php:208
|
||||
msgid "Partial Import:"
|
||||
@ -5689,6 +5711,8 @@ msgstr "අර්ධ ආනයනය:"
|
||||
msgid ""
|
||||
"Previous import timed out, after resubmitting will continue from position %d."
|
||||
msgstr ""
|
||||
"පෙර උඩුගත කිරීම නියමිත කාලය ඉක්මවා ගියේය. නැවත වරක් යොමු කල විට උඩුගත කිරීම "
|
||||
"%d ස්ථානයෙන් ඇරඹෙනු ඇත."
|
||||
|
||||
#: libraries/display_import.lib.php:221
|
||||
msgid ""
|
||||
@ -5723,7 +5747,7 @@ msgstr "තීර අනුපිලිවල ප්රතිෂ්ඨාප
|
||||
#: libraries/display_tbl.lib.php:423
|
||||
#, php-format
|
||||
msgid "%d is not valid row number."
|
||||
msgstr ""
|
||||
msgstr "%d වලංගු පේළි අංකයක් නොවේ."
|
||||
|
||||
#: libraries/display_tbl.lib.php:428
|
||||
msgid "Start row"
|
||||
@ -5871,7 +5895,7 @@ msgstr "දත්ත මුල් පිටුව"
|
||||
|
||||
#: libraries/engines/innodb.lib.php:21
|
||||
msgid "The common part of the directory path for all InnoDB data files."
|
||||
msgstr ""
|
||||
msgstr "සියලුම InnoBD දත්ත ගොනු වල පෙතෙහි පොදු කොටස."
|
||||
|
||||
#: libraries/engines/innodb.lib.php:24
|
||||
msgid "Data files"
|
||||
@ -5879,13 +5903,13 @@ msgstr "දත්ත ගොනු"
|
||||
|
||||
#: libraries/engines/innodb.lib.php:27
|
||||
msgid "Autoextend increment"
|
||||
msgstr ""
|
||||
msgstr "ස්වයංක්රීය-විස්තීරණ ප්රමාණය"
|
||||
|
||||
#: libraries/engines/innodb.lib.php:28
|
||||
msgid ""
|
||||
"The increment size for extending the size of an autoextending tablespace "
|
||||
"when it becomes full."
|
||||
msgstr ""
|
||||
msgstr "වගුවේ ඉඩ මදිවී වගුව ස්වයංක්රීයව විශාල කිරීමේදී විශාල කල යුතු ප්රමාණය."
|
||||
|
||||
#: libraries/engines/innodb.lib.php:32
|
||||
msgid "Buffer pool size"
|
||||
@ -5943,7 +5967,7 @@ msgstr ""
|
||||
|
||||
#: libraries/engines/innodb.lib.php:218
|
||||
msgid "Read requests"
|
||||
msgstr ""
|
||||
msgstr "කියවීම සඳහා වූ ඉල්ලීම්"
|
||||
|
||||
#: libraries/engines/innodb.lib.php:224
|
||||
msgid "Write requests"
|
||||
@ -6248,7 +6272,7 @@ msgstr ""
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:129
|
||||
msgid "The PrimeBase XT Blog by Paul McCullagh"
|
||||
msgstr ""
|
||||
msgstr "Paul McCullagh ගේ PrimeBase XT බ්ලොගය"
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:130
|
||||
msgid "The PrimeBase Media Streaming (PBMS) home page"
|
||||
@ -6302,7 +6326,7 @@ msgstr "වගුවක් සඳහා වගු සැකිල්ල"
|
||||
|
||||
#: libraries/export/latex.php:14
|
||||
msgid "Content of table @TABLE@"
|
||||
msgstr ""
|
||||
msgstr "@TABLE@ වගුවේ අන්තර්ගතය"
|
||||
|
||||
#: libraries/export/latex.php:15
|
||||
msgid "(continued)"
|
||||
@ -6310,7 +6334,7 @@ msgstr "(ඉදිරියට)"
|
||||
|
||||
#: libraries/export/latex.php:16
|
||||
msgid "Structure of table @TABLE@"
|
||||
msgstr ""
|
||||
msgstr "වගුවේ සැකිල්ල @TABLE@"
|
||||
|
||||
#: libraries/export/latex.php:48 libraries/export/odt.php:40
|
||||
#: libraries/export/sql.php:142
|
||||
@ -6364,7 +6388,7 @@ msgstr "PHP අනුවාදය"
|
||||
|
||||
#: libraries/export/mediawiki.php:15
|
||||
msgid "MediaWiki Table"
|
||||
msgstr ""
|
||||
msgstr "MediaWiki වගු"
|
||||
|
||||
#: libraries/export/pdf.php:18
|
||||
msgid "PDF"
|
||||
@ -6380,7 +6404,7 @@ msgstr "වාර්තා මාතෘකාව:"
|
||||
|
||||
#: libraries/export/php_array.php:18
|
||||
msgid "PHP array"
|
||||
msgstr ""
|
||||
msgstr "PHP ආරාව"
|
||||
|
||||
#: libraries/export/sql.php:40
|
||||
msgid ""
|
||||
@ -6562,7 +6586,7 @@ msgstr "ජ්යාමිතික නිරූපණයට දත්ත ක
|
||||
|
||||
#: libraries/header_http.inc.php:15 libraries/header_meta_style.inc.php:15
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
msgstr "GLOBALS අගයන් උඩින් ලිවීමේ උත්සාහය"
|
||||
|
||||
#: libraries/header_printview.inc.php:49 libraries/header_printview.inc.php:57
|
||||
msgid "SQL result"
|
||||
@ -6575,25 +6599,25 @@ msgstr "උත්පාදනය කරන ලද්දේ"
|
||||
#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1249
|
||||
#: sql.php:730 tbl_change.php:188 tbl_get_field.php:34
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr ""
|
||||
msgstr "MySQL හිස් ප්රතිඵල කුලකයක් (පේළි කිසිවක් අඩංගු නොවන) සපයන ලදි."
|
||||
|
||||
#: libraries/import.lib.php:1100
|
||||
msgid ""
|
||||
"The following structures have either been created or altered. Here you can:"
|
||||
msgstr ""
|
||||
msgstr "පහත සැකිලි අලුතින් සාදා හෝ වෙනස් කර ඇත. මෙහිදී ඔබට:"
|
||||
|
||||
#: libraries/import.lib.php:1101
|
||||
msgid "View a structure's contents by clicking on its name"
|
||||
msgstr ""
|
||||
msgstr "සැකිල්ලක අන්තර්ගතය එහි නම මත ක්ලික් කිරීමෙන් බලන්න"
|
||||
|
||||
#: libraries/import.lib.php:1102
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link"
|
||||
msgstr ""
|
||||
msgstr "අදාල \"විකල්ප\" සබැඳිය මත ක්ලික් කිරීමෙන් එහි ඕනෑම සිටුවමක් වෙනස් කරන්න"
|
||||
|
||||
#: libraries/import.lib.php:1103
|
||||
msgid "Edit structure by following the \"Structure\" link"
|
||||
msgstr ""
|
||||
msgstr "\"සැකිල්ල\" සබැඳිය ඔස්සේ යාමෙන් සැකිල්ල සංස්කරණය කරන්න"
|
||||
|
||||
#: libraries/import.lib.php:1106
|
||||
#, php-format
|
||||
@ -6618,7 +6642,7 @@ msgstr "%s හි සැකිල්ල"
|
||||
#: libraries/import.lib.php:1136
|
||||
#, php-format
|
||||
msgid "Go to view: %s"
|
||||
msgstr ""
|
||||
msgstr "%s දසුන වෙත යන්න"
|
||||
|
||||
#: libraries/import/csv.php:38 libraries/import/ods.php:33
|
||||
msgid ""
|
||||
@ -6634,6 +6658,9 @@ msgid ""
|
||||
"database, list the corresponding column names here. Column names must be "
|
||||
"separated by commas and not enclosed in quotations."
|
||||
msgstr ""
|
||||
"ගොනුවේ එක් එක් තීරුවේ අඩංගු දත්ත දත්තගබඩාවේ අනුපිළිවල හා නොගැලපේ නම්, අදාල "
|
||||
"තීර අනුපිළිවල මෙහි සඳහන් කරන්න. තීර නම් උධෘත මගින් ඇහිරිය යුතු අතර කොමා "
|
||||
"සලකුණු වලින් වෙන් කල යුතුය."
|
||||
|
||||
#: libraries/import/csv.php:42
|
||||
msgid "Column names: "
|
||||
@ -6643,7 +6670,7 @@ msgstr "තීර නම්: "
|
||||
#: libraries/import/csv.php:80 libraries/import/csv.php:85
|
||||
#, php-format
|
||||
msgid "Invalid parameter for CSV import: %s"
|
||||
msgstr ""
|
||||
msgstr "CSV ආනයනය සඳහා වැරදි පරාමිතියක්: %s"
|
||||
|
||||
#: libraries/import/csv.php:132
|
||||
#, php-format
|
||||
@ -6651,11 +6678,13 @@ msgid ""
|
||||
"Invalid column (%s) specified! Ensure that columns names are spelled "
|
||||
"correctly, separated by commas, and not enclosed in quotes."
|
||||
msgstr ""
|
||||
"සැපයූ තීර නාමය (%s) වලංගු නොවේ! තීර නම් නිවැරදි අක්ෂර වින්යාසය සහිත බවට, "
|
||||
"උධෘත මගින් අහුරා ඇති බවට සහ කොමා සලකුණු වලින් වෙන් කර ඇති බවට වගබලා ගන්න."
|
||||
|
||||
#: libraries/import/csv.php:191 libraries/import/csv.php:451
|
||||
#, php-format
|
||||
msgid "Invalid format of CSV input on line %d."
|
||||
msgstr ""
|
||||
msgstr "CSV ආනයනයේ %d පේළියේ වැරදි ආකෘතියක්."
|
||||
|
||||
#: libraries/import/csv.php:337
|
||||
#, php-format
|
||||
@ -6664,7 +6693,7 @@ msgstr "CSV අදානයේ %d පේළියේ වැරදි තීර
|
||||
|
||||
#: libraries/import/docsql.php:28
|
||||
msgid "DocSQL"
|
||||
msgstr ""
|
||||
msgstr "DocSQL"
|
||||
|
||||
#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:567
|
||||
#: server_synchronize.php:441 server_synchronize.php:913
|
||||
@ -6678,11 +6707,11 @@ msgstr "තීර නම්"
|
||||
|
||||
#: libraries/import/ldi.php:57
|
||||
msgid "This plugin does not support compressed imports!"
|
||||
msgstr ""
|
||||
msgstr "මෙම පේණුව හැකිළු ආනයන සඳහා සහාය නොදක්වයි!"
|
||||
|
||||
#: libraries/import/ods.php:35
|
||||
msgid "Import percentages as proper decimals <i>(ex. 12.00% to .12)</i>"
|
||||
msgstr "ප්රතිශත පූර්ණ සංඛ්යා ලෙස ආනයනය කරන්න <i>(උදා. 12.00%, 12 ලෙස)</i>"
|
||||
msgstr "ප්රතිශත පූර්ණ සංඛ්යා ලෙස ආනයනය කරන්න <i>(උදා. 12.00%, .12 ලෙස)</i>"
|
||||
|
||||
#: libraries/import/ods.php:36
|
||||
msgid "Import currencies <i>(ex. $5.00 to 5.00)</i>"
|
||||
@ -6694,21 +6723,25 @@ msgid ""
|
||||
"The XML file specified was either malformed or incomplete. Please correct "
|
||||
"the issue and try again."
|
||||
msgstr ""
|
||||
"ලබා දුන් XML ගොනුව අසම්පූර්ණ හෝ විකෘතිය. මෙම ගැටලුව නිරාකරණය කිරීමෙන් පසු "
|
||||
"නැවත උත්සාහ කරන්න."
|
||||
|
||||
#: libraries/import/shp.php:19
|
||||
msgid "ESRI Shape File"
|
||||
msgstr ""
|
||||
msgstr "ESRI Shape ගොනුව"
|
||||
|
||||
#: libraries/import/shp.php:280
|
||||
#, php-format
|
||||
msgid "There was an error importing the ESRI shape file: \"%s\"."
|
||||
msgstr ""
|
||||
msgstr "\"%s\" ESRI shape ගොනුව ආනයනය කිරීමේදී දෝෂයක් ඇති විය."
|
||||
|
||||
#: libraries/import/shp.php:336
|
||||
msgid ""
|
||||
"You tried to import an invalid file or the imported file contains invalid "
|
||||
"data"
|
||||
msgstr ""
|
||||
"ඔබ ආනයනය කිරීමට උත්සාහ කල ගොනුව වලංගු නොවන එකක් හෝ එහි වලංගු දත්ත අඩංගු නොවන "
|
||||
"එකක් හෝ වේ"
|
||||
|
||||
#: libraries/import/shp.php:338
|
||||
#, php-format
|
||||
@ -6717,7 +6750,7 @@ msgstr ""
|
||||
|
||||
#: libraries/import/shp.php:376
|
||||
msgid "The imported file does not contain any data"
|
||||
msgstr ""
|
||||
msgstr "ආනයන කල ගොනුවේ දත්ත කිසිවක් අඩංගු නොවේ"
|
||||
|
||||
#: libraries/import/sql.php:33
|
||||
msgid "SQL compatibility mode:"
|
||||
@ -9424,7 +9457,7 @@ msgid ""
|
||||
"calculations and by rule of thumb which may not necessarily apply to your "
|
||||
"system."
|
||||
msgstr ""
|
||||
"කෙසේ වෙතත් මෙම නිර්දේශ ලබා දෙනුයේ සරල ගණනය කිරීම හා ආනුභූතික රීති පදනම් "
|
||||
"කෙසේ වෙතත් මෙම නිර්දේශ ලබා දෙනුයේ සරල ගණනය කිරීම් හා ආනුභූතික රීති පදනම් "
|
||||
"කරගෙන බවත් එම නිසා එවැනි නිර්දේශ ඔබගේ පද්ධතියට අදාල නොවීමට ඉඩ ඇති බවත් "
|
||||
"සලකන්න."
|
||||
|
||||
@ -9436,7 +9469,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"කිසියම් වින්යාසයක් වෙනස් කිරීමට පළමුව ඔබ වෙනස් කරන්නේ කුමක්ද යන්න "
|
||||
"(ලියකියවිලි කියවීමෙන්) සහ එම වෙනස්කම් ප්රතිවර්තනය කරන්නේ කෙසේද යන්න "
|
||||
"දැනගන්න. වැරදි සුසර කිරීම් මගින් පද්ධතියේ කාර්යසාධනය තවදුරටත් නරක විය හැකිය."
|
||||
"දැනගන්න. වැරදි සුසර කිරීම් මඟින් පද්ධතියේ කාර්යසාධනය තවදුරටත් නරක විය හැකිය."
|
||||
|
||||
#: server_status.php:915
|
||||
msgid ""
|
||||
@ -9446,7 +9479,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"ඔබගේ පද්ධතිය සුසර කිරීමට යෝග්යම ක්රියාවලිය වන්නේ වරකට එක සිටුවම බැගින් "
|
||||
"වෙනස් කරමින් ඔබගේ දත්තගබඩාව නිරීක්ෂණය කිරීම හා පෙර අවස්ථා සමග සසැදීමත්, "
|
||||
"මැනිය හැකි වර්ධනයක් ගෙන නොදෙන වෙනස් කිරීම ප්රතිවර්තනය කිරීමත් ය."
|
||||
"මැනිය හැකි වර්ධනයක් ගෙන නොදෙන වෙනස් කිරීම් ප්රතිවර්තනය කිරීමත් ය."
|
||||
|
||||
#. l10n: Questions is the name of a MySQL Status variable
|
||||
#: server_status.php:937
|
||||
@ -9659,23 +9692,23 @@ msgstr ""
|
||||
|
||||
#: server_status.php:1323
|
||||
msgid "The number of internal ROLLBACK statements."
|
||||
msgstr ""
|
||||
msgstr "අභ්යන්තරව සිදු කෙරුණු ROLLBACK ප්රකාශ ගණන."
|
||||
|
||||
#: server_status.php:1324
|
||||
msgid "The number of requests to update a row in a table."
|
||||
msgstr ""
|
||||
msgstr "වගුවක පේළියක් යාවත්කාලීන කිරීම සඳහා කෙරුණු ඉල්ලීම් ගණන."
|
||||
|
||||
#: server_status.php:1325
|
||||
msgid "The number of requests to insert a row in a table."
|
||||
msgstr ""
|
||||
msgstr "වගුවකට පේළියක් ඇතුලු කිරීම සඳහා කෙරුණු ඉල්ලීම් ගණන."
|
||||
|
||||
#: server_status.php:1326
|
||||
msgid "The number of pages containing data (dirty or clean)."
|
||||
msgstr ""
|
||||
msgstr "දත්ත අඩංගු පිටු ගණන (අපවිත්ර හෝ පවිත්ර)."
|
||||
|
||||
#: server_status.php:1327
|
||||
msgid "The number of pages currently dirty."
|
||||
msgstr ""
|
||||
msgstr "දැනට අපවිත්රව ඇති පිටු ගණන."
|
||||
|
||||
#: server_status.php:1328
|
||||
msgid "The number of buffer pool pages that have been requested to be flushed."
|
||||
@ -9761,23 +9794,25 @@ msgstr ""
|
||||
|
||||
#: server_status.php:1344
|
||||
msgid "The total number of data reads."
|
||||
msgstr ""
|
||||
msgstr "මුළු දත්ත කියැවුම් ගණන."
|
||||
|
||||
#: server_status.php:1345
|
||||
msgid "The total number of data writes."
|
||||
msgstr ""
|
||||
msgstr "මුළු දත්ත ලියැවුම් ගණන."
|
||||
|
||||
#: server_status.php:1346
|
||||
msgid "The amount of data written so far, in bytes."
|
||||
msgstr ""
|
||||
msgstr "මේ දක්වා ලියැවුණු දත්ත ප්රමාණය, බයිට වලින්."
|
||||
|
||||
#: server_status.php:1347
|
||||
#, fuzzy
|
||||
msgid "The number of pages that have been written for doublewrite operations."
|
||||
msgstr ""
|
||||
"The number of doublewrite writes that have been performed and the number of "
|
||||
"pages that have been written for this purpose."
|
||||
|
||||
#: server_status.php:1348
|
||||
#, fuzzy
|
||||
msgid "The number of doublewrite operations that have been performed."
|
||||
msgstr ""
|
||||
"The number of doublewrite writes that have been performed and the number of "
|
||||
@ -9788,10 +9823,12 @@ msgid ""
|
||||
"The number of waits we had because log buffer was too small and we had to "
|
||||
"wait for it to be flushed before continuing."
|
||||
msgstr ""
|
||||
"ලොග බෆරය කුඩා වීම නිසා ඉදිරියට යාමට පෙර එය හිස් කෙරෙන තුරු බලා සිටීමට සිදු "
|
||||
"වූ වාර ගණන."
|
||||
|
||||
#: server_status.php:1350
|
||||
msgid "The number of log write requests."
|
||||
msgstr ""
|
||||
msgstr "ලොගය වෙත ලිවීමට කෙරුණු ඉල්ලීම් ගණන."
|
||||
|
||||
#: server_status.php:1351
|
||||
msgid "The number of physical writes to the log file."
|
||||
@ -9799,23 +9836,23 @@ msgstr ""
|
||||
|
||||
#: server_status.php:1352
|
||||
msgid "The number of fsync() writes done to the log file."
|
||||
msgstr ""
|
||||
msgstr "ලොග ගොනුව වෙත සිදු කරන ලද fsync() ලිවීම් ගණන."
|
||||
|
||||
#: server_status.php:1353
|
||||
msgid "The number of pending log file fsyncs."
|
||||
msgstr ""
|
||||
msgstr "ඉදිරියේදී ලොග ගොනුව වෙත සිදු කිරීමට ඇති fsync ගණන."
|
||||
|
||||
#: server_status.php:1354
|
||||
msgid "Pending log file writes."
|
||||
msgstr ""
|
||||
msgstr "ඉදිරියේදී ලොග ගොනුව වෙත සිදු කිරීමට ඇති ලිවීම්."
|
||||
|
||||
#: server_status.php:1355
|
||||
msgid "The number of bytes written to the log file."
|
||||
msgstr ""
|
||||
msgstr "ලොග ගොනුව වෙත ලියන ලද බයිට ගණන."
|
||||
|
||||
#: server_status.php:1356
|
||||
msgid "The number of pages created."
|
||||
msgstr ""
|
||||
msgstr "සාදන ලද පිටු ගණන."
|
||||
|
||||
#: server_status.php:1357
|
||||
msgid ""
|
||||
@ -9833,39 +9870,39 @@ msgstr "ලියන ලද පිටු ගණන."
|
||||
|
||||
#: server_status.php:1360
|
||||
msgid "The number of row locks currently being waited for."
|
||||
msgstr ""
|
||||
msgstr "නිදහස් වන තුරු බලා සිටින පේළි අගුලු ගණන."
|
||||
|
||||
#: server_status.php:1361
|
||||
msgid "The average time to acquire a row lock, in milliseconds."
|
||||
msgstr ""
|
||||
msgstr "පේළි අගුලක් අත්පත් කර ගැනීමට ගතවූ මධ්යන්ය කාලය, මිලිතත්පර වලින්."
|
||||
|
||||
#: server_status.php:1362
|
||||
msgid "The total time spent in acquiring row locks, in milliseconds."
|
||||
msgstr ""
|
||||
msgstr "පේළි අගුලු අත්පත් කර ගැනීමට ගතවූ මුළු කාලය, මිලිතත්පර වලින්."
|
||||
|
||||
#: server_status.php:1363
|
||||
msgid "The maximum time to acquire a row lock, in milliseconds."
|
||||
msgstr ""
|
||||
msgstr "පේළි අගුලක් අත්පත් කර ගැනීමට ගතවූ උපරිම කාලය, මිලිතත්පර වලින්."
|
||||
|
||||
#: server_status.php:1364
|
||||
msgid "The number of times a row lock had to be waited for."
|
||||
msgstr ""
|
||||
msgstr "පේළි අගුලක් නිදහස් වන තුරු බලා සිටීමට සිදු වූ අවස්ථා ගණන."
|
||||
|
||||
#: server_status.php:1365
|
||||
msgid "The number of rows deleted from InnoDB tables."
|
||||
msgstr ""
|
||||
msgstr "InnoDB වගු වලින් ඉවත් කෙරුණු පේළි ගණන."
|
||||
|
||||
#: server_status.php:1366
|
||||
msgid "The number of rows inserted in InnoDB tables."
|
||||
msgstr ""
|
||||
msgstr "InnoDB වගු වෙත ඇතුල් කෙරුණු පේළි ගණන."
|
||||
|
||||
#: server_status.php:1367
|
||||
msgid "The number of rows read from InnoDB tables."
|
||||
msgstr ""
|
||||
msgstr "InnoDB වගු වෙතින් කියැවුණු පේළි ගණන."
|
||||
|
||||
#: server_status.php:1368
|
||||
msgid "The number of rows updated in InnoDB tables."
|
||||
msgstr ""
|
||||
msgstr "InnoDB වගු තුල යාවත්කාලීන කෙරුණු පේළි ගණන."
|
||||
|
||||
#: server_status.php:1369
|
||||
msgid ""
|
||||
@ -10386,7 +10423,7 @@ msgstr "අතින් ඇතුල් කරන්න"
|
||||
|
||||
#: server_synchronize.php:1210
|
||||
msgid "Current connection"
|
||||
msgstr "වත්මන් සම්බන්දතාව"
|
||||
msgstr "වත්මන් සම්බන්ධතාව"
|
||||
|
||||
#: server_synchronize.php:1250
|
||||
#, php-format
|
||||
@ -10454,12 +10491,12 @@ msgid ""
|
||||
"If your server is also configured to accept HTTPS requests follow [a@%s]this "
|
||||
"link[/a] to use a secure connection."
|
||||
msgstr ""
|
||||
"ඔබගේ සේවාදායකය HTTPS ඉල්ලීම් භාර ගැනීමට සකස් කර ඇත්නම්, ආරක්ෂිත සම්බන්දතාවන් භාවිත කිරීමට "
|
||||
"[a@%s]මෙම[/a] සබැඳුම වෙත යන්න."
|
||||
"ඔබගේ සේවාදායකය HTTPS ඉල්ලීම් භාර ගැනීමට සකස් කර ඇත්නම්, ආරක්ෂිත "
|
||||
"සම්බන්ධතාවන් භාවිත කිරීමට [a@%s]මෙම[/a] සබැඳුම වෙත යන්න."
|
||||
|
||||
#: setup/frames/index.inc.php:65
|
||||
msgid "Insecure connection"
|
||||
msgstr "අනාරක්ෂිත සම්බන්දතාවය"
|
||||
msgstr "අනාරක්ෂිත සම්බන්ධතාවය"
|
||||
|
||||
#: setup/frames/index.inc.php:94
|
||||
msgid "Configuration saved."
|
||||
@ -11580,7 +11617,7 @@ msgid "Release Series"
|
||||
msgstr "වගු තෝරන්න"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/sk.po
2
po/sk.po
@ -12012,7 +12012,7 @@ msgid "Release Series"
|
||||
msgstr "Vybrať Tabuľky"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/sl.po
2
po/sl.po
@ -12081,7 +12081,7 @@ msgid "Release Series"
|
||||
msgstr "Serije izdaj"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr "Strežnik MySQL različice nižje od 5.1."
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/sq.po
2
po/sq.po
@ -12187,7 +12187,7 @@ msgid "Release Series"
|
||||
msgstr "Zgjidh Tabelat"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/sr.po
2
po/sr.po
@ -12466,7 +12466,7 @@ msgid "Release Series"
|
||||
msgstr "Изабери табеле"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
@ -12455,7 +12455,7 @@ msgid "Release Series"
|
||||
msgstr "Izaberi tabele"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/sv.po
2
po/sv.po
@ -12038,7 +12038,7 @@ msgid "Release Series"
|
||||
msgstr "Releasa serien"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr "MySQL server version är mindre än 5.1."
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/ta.po
2
po/ta.po
@ -11436,7 +11436,7 @@ msgid "Release Series"
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/te.po
2
po/te.po
@ -11721,7 +11721,7 @@ msgid "Release Series"
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
6
po/th.po
6
po/th.po
@ -11843,7 +11843,7 @@ msgid "Release Series"
|
||||
msgstr "เลือกตาราง"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr "รุ่น MySQL ต่ำกว่า 5.1"
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
@ -12760,8 +12760,8 @@ msgstr "ขนาดบัฟเฟอร์ของ InnoDB"
|
||||
msgid "Your InnoDB buffer pool is fairly small."
|
||||
msgstr "ขนาดบัฟเฟอร์ InnoDB ของคุณมีขนาดเล็ก"
|
||||
|
||||
# buffer pool แปลเป็น บัฟเฟอร์
|
||||
# non-InnoDB-Tables ใช้คำทับศัพท์
|
||||
# buffer pool แปลเป็น บัฟเฟอร์
|
||||
# non-InnoDB-Tables ใช้คำทับศัพท์
|
||||
#
|
||||
#: po/advisory_rules.php:267
|
||||
#, php-format
|
||||
|
||||
2
po/tk.po
2
po/tk.po
@ -11261,7 +11261,7 @@ msgid "Release Series"
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/tr.po
2
po/tr.po
@ -12106,7 +12106,7 @@ msgid "Release Series"
|
||||
msgstr "Diziyi Yayımla"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr "MySQL sunucusu sürümü 5.1'den az."
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/tt.po
2
po/tt.po
@ -12264,7 +12264,7 @@ msgid "Release Series"
|
||||
msgstr "Tüşämä Saylaw"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/ug.po
2
po/ug.po
@ -11809,7 +11809,7 @@ msgid "Release Series"
|
||||
msgstr "ھەممىنى تاللاش"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/uk.po
2
po/uk.po
@ -11822,7 +11822,7 @@ msgid "Release Series"
|
||||
msgstr "Вибрати таблиці"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/ur.po
2
po/ur.po
@ -11886,7 +11886,7 @@ msgid "Release Series"
|
||||
msgstr "SQL طلب"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
2
po/uz.po
2
po/uz.po
@ -13088,7 +13088,7 @@ msgid "Release Series"
|
||||
msgstr "Жадвалларни танланг"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
@ -13150,7 +13150,7 @@ msgid "Release Series"
|
||||
msgstr "Jadvallarni tanlang"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
@ -11593,7 +11593,7 @@ msgid "Release Series"
|
||||
msgstr "清除所有数据"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr "MySQL 服务器版本低于 5.1。"
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
|
||||
102
po/zh_TW.po
102
po/zh_TW.po
@ -4,15 +4,15 @@ msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.5.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2012-04-09 19:51+0200\n"
|
||||
"PO-Revision-Date: 2011-06-19 09:59+0200\n"
|
||||
"Last-Translator: <star@origin.club.tw>\n"
|
||||
"PO-Revision-Date: 2012-04-19 03:25+0200\n"
|
||||
"Last-Translator: MoA Chung <honomoa@gmail.com>\n"
|
||||
"Language-Team: chinese_traditional <zh_TW@li.org>\n"
|
||||
"Language: zh_TW\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
"X-Generator: Weblate 0.9\n"
|
||||
|
||||
#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:350
|
||||
#: libraries/display_tbl.lib.php:359 server_privileges.php:1677
|
||||
@ -407,10 +407,10 @@ msgid "You have to choose at least one column to display"
|
||||
msgstr "您至少需要選擇一個欄位"
|
||||
|
||||
#: db_qbe.php:186
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "visual builder"
|
||||
msgid "Switch to %svisual builder%s"
|
||||
msgstr "視覺化查詢產生器"
|
||||
msgstr "切換至 %svisual builder%s"
|
||||
|
||||
#: db_qbe.php:222 libraries/db_structure.lib.php:90
|
||||
#: libraries/display_tbl.lib.php:1003
|
||||
@ -557,7 +557,6 @@ msgid "Search in database"
|
||||
msgstr "在資料庫中搜尋"
|
||||
|
||||
#: db_search.php:277
|
||||
#, fuzzy
|
||||
#| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
|
||||
msgid "Words or values to search for (wildcard: \"%\"):"
|
||||
msgstr "要搜尋的文字或數值 (萬用字元:“%”):"
|
||||
@ -839,20 +838,18 @@ msgid "Copy and paste the joined values into the \"Length/Values\" field"
|
||||
msgstr "複製並貼上結合的數值至 \"Length/Values\" 欄位"
|
||||
|
||||
#: export.php:29
|
||||
#, fuzzy
|
||||
#| msgid "Bar type"
|
||||
msgid "Bad type!"
|
||||
msgstr "柱狀圖類型"
|
||||
msgstr "錯誤的類型!"
|
||||
|
||||
#: export.php:77
|
||||
msgid "Selected export type has to be saved in file!"
|
||||
msgstr "選擇的匯出的檔案格式"
|
||||
|
||||
#: export.php:106
|
||||
#, fuzzy
|
||||
#| msgid "Routines"
|
||||
msgid "Bad parameters!"
|
||||
msgstr "一般"
|
||||
msgstr "錯誤的參數!"
|
||||
|
||||
#: export.php:166 export.php:191 export.php:652
|
||||
#, php-format
|
||||
@ -876,10 +873,9 @@ msgid "Dump has been saved to file %s."
|
||||
msgstr "備份資料已儲存至檔案 %s."
|
||||
|
||||
#: file_echo.php:21
|
||||
#, fuzzy
|
||||
#| msgid "Export type"
|
||||
msgid "Invalid export type"
|
||||
msgstr "輸出類型"
|
||||
msgstr "無效的輸出類型"
|
||||
|
||||
#: gis_data_editor.php:84
|
||||
#, fuzzy, php-format
|
||||
@ -889,7 +885,7 @@ msgstr "%s 欄位的值"
|
||||
|
||||
#: gis_data_editor.php:113 tbl_gis_visualization.php:172
|
||||
msgid "Use OpenStreetMaps as Base Layer"
|
||||
msgstr ""
|
||||
msgstr "使用OpenStreetMaps"
|
||||
|
||||
#: gis_data_editor.php:134
|
||||
msgid "SRID"
|
||||
@ -955,7 +951,7 @@ msgstr "新增新使用者"
|
||||
|
||||
#: gis_data_editor.php:266 js/messages.php:322
|
||||
msgid "Polygon"
|
||||
msgstr ""
|
||||
msgstr "多邊形"
|
||||
|
||||
#: gis_data_editor.php:306 js/messages.php:328
|
||||
#, fuzzy
|
||||
@ -1293,15 +1289,15 @@ msgstr "查詢快取"
|
||||
|
||||
#: js/messages.php:101
|
||||
msgid "System CPU Usage"
|
||||
msgstr ""
|
||||
msgstr "系統CPU使用率"
|
||||
|
||||
#: js/messages.php:102
|
||||
msgid "System memory"
|
||||
msgstr ""
|
||||
msgstr "系統記憶體"
|
||||
|
||||
#: js/messages.php:103
|
||||
msgid "System swap"
|
||||
msgstr ""
|
||||
msgstr "系統Swap"
|
||||
|
||||
#. l10n: shortcuts for Megabyte
|
||||
#: js/messages.php:104 js/messages.php:127 libraries/common.lib.php:1402
|
||||
@ -1317,41 +1313,39 @@ msgstr "KB"
|
||||
|
||||
#: js/messages.php:107
|
||||
msgid "Average load"
|
||||
msgstr ""
|
||||
msgstr "平均負載"
|
||||
|
||||
#: js/messages.php:108
|
||||
#, fuzzy
|
||||
#| msgid "Total count"
|
||||
msgid "Total memory"
|
||||
msgstr "總數量"
|
||||
msgstr "總記憶體"
|
||||
|
||||
#: js/messages.php:109
|
||||
msgid "Cached memory"
|
||||
msgstr ""
|
||||
msgstr "快取記憶體"
|
||||
|
||||
#: js/messages.php:110
|
||||
#, fuzzy
|
||||
#| msgid "Buffer Pool"
|
||||
msgid "Buffered memory"
|
||||
msgstr "快取池"
|
||||
msgstr "緩衝記憶體"
|
||||
|
||||
#: js/messages.php:111
|
||||
msgid "Free memory"
|
||||
msgstr ""
|
||||
msgstr "空閒記憶體"
|
||||
|
||||
#: js/messages.php:112
|
||||
msgid "Used memory"
|
||||
msgstr ""
|
||||
msgstr "已使用記憶體"
|
||||
|
||||
#: js/messages.php:114
|
||||
#, fuzzy
|
||||
#| msgid "Total"
|
||||
msgid "Total Swap"
|
||||
msgstr "總計"
|
||||
msgstr "總計Swap"
|
||||
|
||||
#: js/messages.php:115
|
||||
msgid "Cached Swap"
|
||||
msgstr ""
|
||||
msgstr "快取Swap"
|
||||
|
||||
#: js/messages.php:116
|
||||
msgid "Used Swap"
|
||||
@ -1365,7 +1359,7 @@ msgstr "空閒頁"
|
||||
|
||||
#: js/messages.php:119
|
||||
msgid "Bytes sent"
|
||||
msgstr ""
|
||||
msgstr "Bytes 送出"
|
||||
|
||||
#: js/messages.php:120
|
||||
#, fuzzy
|
||||
@ -1426,14 +1420,13 @@ msgid "Settings"
|
||||
msgstr "設定"
|
||||
|
||||
#: js/messages.php:138
|
||||
#, fuzzy
|
||||
#| msgid "Remove database"
|
||||
msgid "Remove chart"
|
||||
msgstr "刪除資料庫"
|
||||
msgstr "刪除圖表"
|
||||
|
||||
#: js/messages.php:139
|
||||
msgid "Edit title and labels"
|
||||
msgstr ""
|
||||
msgstr "編輯標題與標籤"
|
||||
|
||||
#: js/messages.php:140
|
||||
#, fuzzy
|
||||
@ -1443,7 +1436,7 @@ msgstr "對齊網格"
|
||||
|
||||
#: js/messages.php:142
|
||||
msgid "Please add at least one variable to the series"
|
||||
msgstr ""
|
||||
msgstr "請至少增加一個變數"
|
||||
|
||||
#: js/messages.php:143 libraries/display_export.lib.php:308
|
||||
#: libraries/display_tbl.lib.php:573 libraries/export/sql.php:1093
|
||||
@ -1455,27 +1448,28 @@ msgstr "無"
|
||||
|
||||
#: js/messages.php:144
|
||||
msgid "Resume monitor"
|
||||
msgstr ""
|
||||
msgstr "恢復監控"
|
||||
|
||||
#: js/messages.php:145
|
||||
msgid "Pause monitor"
|
||||
msgstr ""
|
||||
msgstr "暫停監控"
|
||||
|
||||
#: js/messages.php:147
|
||||
#, fuzzy
|
||||
msgid "general_log and slow_query_log are enabled."
|
||||
msgstr ""
|
||||
msgstr "general_log與slow_query_log已啟用"
|
||||
|
||||
#: js/messages.php:148
|
||||
msgid "general_log is enabled."
|
||||
msgstr ""
|
||||
msgstr "general_log已啟用"
|
||||
|
||||
#: js/messages.php:149
|
||||
msgid "slow_query_log is enabled."
|
||||
msgstr ""
|
||||
msgstr "slow_query_log已啟用"
|
||||
|
||||
#: js/messages.php:150
|
||||
msgid "slow_query_log and general_log are disabled."
|
||||
msgstr ""
|
||||
msgstr "slow_query_log與general_log已關閉"
|
||||
|
||||
#: js/messages.php:151
|
||||
msgid "log_output is not set to TABLE."
|
||||
@ -1496,7 +1490,7 @@ msgstr ""
|
||||
#: js/messages.php:154
|
||||
#, php-format
|
||||
msgid "long_query_time is set to %d second(s)."
|
||||
msgstr ""
|
||||
msgstr "long_query_time已設為%d秒"
|
||||
|
||||
#: js/messages.php:155
|
||||
msgid ""
|
||||
@ -1513,17 +1507,17 @@ msgstr "儲存爲檔案"
|
||||
|
||||
#. l10n: Enable in this context means setting a status variable to ON
|
||||
#: js/messages.php:159
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Enabled"
|
||||
msgid "Enable %s"
|
||||
msgstr "已啓用"
|
||||
msgstr "已啓用 %s"
|
||||
|
||||
#. l10n: Disable in this context means setting a status variable to OFF
|
||||
#: js/messages.php:161
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Disabled"
|
||||
msgid "Disable %s"
|
||||
msgstr "已關閉"
|
||||
msgstr "已關閉 %s"
|
||||
|
||||
#. l10n: %d seconds
|
||||
#: js/messages.php:163
|
||||
@ -1715,7 +1709,7 @@ msgstr "重新載入"
|
||||
|
||||
#: js/messages.php:208
|
||||
msgid "Affected rows:"
|
||||
msgstr ""
|
||||
msgstr "影響的行數"
|
||||
|
||||
#: js/messages.php:210
|
||||
msgid "Failed parsing config file. It doesn't seem to be valid JSON code."
|
||||
@ -1750,7 +1744,7 @@ msgstr ""
|
||||
|
||||
#: js/messages.php:220
|
||||
msgid "Issue"
|
||||
msgstr ""
|
||||
msgstr "問題"
|
||||
|
||||
#: js/messages.php:221
|
||||
#, fuzzy
|
||||
@ -1776,7 +1770,7 @@ msgstr ""
|
||||
|
||||
#: js/messages.php:225
|
||||
msgid "Test"
|
||||
msgstr ""
|
||||
msgstr "測試"
|
||||
|
||||
#: js/messages.php:230 pmd_general.php:382 pmd_general.php:419
|
||||
#: pmd_general.php:539 pmd_general.php:587 pmd_general.php:663
|
||||
@ -2389,7 +2383,7 @@ msgstr "每小時"
|
||||
|
||||
#: libraries/Advisor.class.php:335
|
||||
msgid "per day"
|
||||
msgstr ""
|
||||
msgstr "每天"
|
||||
|
||||
#: libraries/Config.class.php:703
|
||||
msgid "Remove \"./config\" directory before using phpMyAdmin!"
|
||||
@ -2655,7 +2649,7 @@ msgstr "找不到主題 %s 的路徑"
|
||||
|
||||
#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27
|
||||
msgid "Theme"
|
||||
msgstr ""
|
||||
msgstr "主題"
|
||||
|
||||
#: libraries/auth/config.auth.lib.php:71
|
||||
msgid "Cannot connect: invalid settings."
|
||||
@ -3141,7 +3135,7 @@ msgstr "沒有可上傳的檔案"
|
||||
|
||||
#: libraries/common.lib.php:3358 libraries/common.lib.php:3359
|
||||
msgid "Execute"
|
||||
msgstr ""
|
||||
msgstr "執行"
|
||||
|
||||
#: libraries/common.lib.php:3834
|
||||
msgid "Print"
|
||||
@ -5836,8 +5830,9 @@ msgstr "格式特定選項:"
|
||||
|
||||
#: libraries/display_select_lang.lib.php:46
|
||||
#: libraries/display_select_lang.lib.php:47 setup/frames/index.inc.php:72
|
||||
#, fuzzy
|
||||
msgid "Language"
|
||||
msgstr "Language"
|
||||
msgstr "語系"
|
||||
|
||||
#: libraries/display_tbl.lib.php:406
|
||||
#, fuzzy
|
||||
@ -12007,7 +12002,7 @@ msgid "Release Series"
|
||||
msgstr "選擇表"
|
||||
|
||||
#: po/advisory_rules.php:36
|
||||
msgid "The MySQL server version less then 5.1."
|
||||
msgid "The MySQL server version less than 5.1."
|
||||
msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:37
|
||||
@ -12848,8 +12843,9 @@ msgid "Percentage of aborted clients"
|
||||
msgstr "匯入檔案的格式"
|
||||
|
||||
#: po/advisory_rules.php:241 po/advisory_rules.php:246
|
||||
#, fuzzy
|
||||
msgid "Too many clients are aborted."
|
||||
msgstr ""
|
||||
msgstr "太多客戶端已終止"
|
||||
|
||||
#: po/advisory_rules.php:242 po/advisory_rules.php:247
|
||||
msgid ""
|
||||
@ -13007,7 +13003,7 @@ msgstr ""
|
||||
|
||||
#: po/advisory_rules.php:273
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr ""
|
||||
msgstr "concurrent_insert設置為0"
|
||||
|
||||
#~ msgid "Maximum number of records saved in \"table_uiprefs\" table"
|
||||
#~ msgstr "在資料表列資料表中最多顯示的資料表個數"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user