Merge branch 'master' of github.com:phpmyadmin/phpmyadmin
This commit is contained in:
commit
90da8d0c12
@ -15,6 +15,8 @@ phpMyAdmin - ChangeLog
|
||||
+ rfe #1619 Show databases as list instead of as dropdown when no database is selected
|
||||
|
||||
4.4.1.0 (not yet released)
|
||||
- bug #4813 MySQL 5.7.6 and the Users menu tab
|
||||
- bug #4818 MySQL 5.7.6 and changing the password for another user
|
||||
|
||||
4.4.0.0 (not yet released)
|
||||
+ rfe #1553 InnoDB presently supports one FULLTEXT index creation at a time
|
||||
|
||||
@ -45,8 +45,8 @@ if ($cfgRelation['commwork']) {
|
||||
* Displays DB comment
|
||||
*/
|
||||
if ($comment) {
|
||||
echo '<p>' . __('Database comment:')
|
||||
. ' <i>' . htmlspecialchars($comment) . '</i></p>';
|
||||
echo '<p>' . __('Database comment')
|
||||
. '<br /><i>' . htmlspecialchars($comment) . '</i></p>';
|
||||
} // end if
|
||||
}
|
||||
|
||||
|
||||
@ -28,7 +28,7 @@ function PMA_getHtmlForDatabaseComment($db)
|
||||
if (PMA_Util::showIcons('ActionLinksMode')) {
|
||||
$html_output .= PMA_Util::getImage('b_comment.png') . ' ';
|
||||
}
|
||||
$html_output .= __('Database comment:');
|
||||
$html_output .= __('Database comment');
|
||||
$html_output .= '</legend>';
|
||||
$html_output .= '<input type="text" name="comment" '
|
||||
. 'class="textfield" size="30"'
|
||||
@ -71,7 +71,7 @@ function PMA_getHtmlForRenameDatabase($db)
|
||||
if (PMA_Util::showIcons('ActionLinksMode')) {
|
||||
$html_output .= PMA_Util::getImage('b_edit.png') . ' ';
|
||||
}
|
||||
$html_output .= __('Rename database to:')
|
||||
$html_output .= __('Rename database to')
|
||||
. '</legend>';
|
||||
|
||||
$html_output .= '<input id="new_db_name" type="text" name="newname" '
|
||||
@ -171,7 +171,7 @@ function PMA_getHtmlForCopyDatabase($db)
|
||||
if (PMA_Util::showIcons('ActionLinksMode')) {
|
||||
$html_output .= PMA_Util::getImage('b_edit.png') . ' ';
|
||||
}
|
||||
$html_output .= __('Copy database to:')
|
||||
$html_output .= __('Copy database to')
|
||||
. '</legend>'
|
||||
. '<input type="text" name="newname" size="30" '
|
||||
. 'class="textfield" value="" required="required" /><br />'
|
||||
@ -618,7 +618,7 @@ function PMA_getHtmlForMoveTable()
|
||||
. '<input type="hidden" name="what" value="data" />'
|
||||
. '<fieldset id="fieldset_table_rename">';
|
||||
|
||||
$html_output .= '<legend>' . __('Move table to (database<b>.</b>table):')
|
||||
$html_output .= '<legend>' . __('Move table to (database<b>.</b>table)')
|
||||
. '</legend>';
|
||||
|
||||
if (count($GLOBALS['pma']->databases) > $GLOBALS['cfg']['MaxDbList']) {
|
||||
@ -952,7 +952,7 @@ function PMA_getHtmlForCopytable()
|
||||
|
||||
$html_output .= '<fieldset>';
|
||||
$html_output .= '<legend>'
|
||||
. __('Copy table to (database<b>.</b>table):') . '</legend>';
|
||||
. __('Copy table to (database<b>.</b>table)') . '</legend>';
|
||||
|
||||
if (count($GLOBALS['pma']->databases) > $GLOBALS['cfg']['MaxDbList']) {
|
||||
$html_output .= '<input class="halfWidth" type="text" maxlength="100" '
|
||||
|
||||
@ -1783,41 +1783,36 @@ function PMA_updatePassword($err_url, $username, $hostname)
|
||||
|
||||
// here $nopass could be == 1
|
||||
if (empty($message)) {
|
||||
if (PMA_Util::getServerType() == 'MySQL'
|
||||
&& PMA_MYSQL_INT_VERSION >= 50706
|
||||
) {
|
||||
$query_prefix = "ALTER USER '"
|
||||
. PMA_Util::sqlAddSlashes($username)
|
||||
. "'@'" . PMA_Util::sqlAddSlashes($hostname) . "'"
|
||||
. " IDENTIFIED BY '";
|
||||
|
||||
$hashing_function
|
||||
= (! empty($_REQUEST['pw_hash']) && $_REQUEST['pw_hash'] == 'old'
|
||||
// in $sql_query which will be displayed, hide the password
|
||||
$sql_query = $query_prefix . "*'";
|
||||
|
||||
$local_query = $query_prefix
|
||||
. PMA_Util::sqlAddSlashes($_POST['pma_pw']) . "'";
|
||||
} else {
|
||||
$hashing_function
|
||||
= (! empty($_REQUEST['pw_hash']) && $_REQUEST['pw_hash'] == 'old'
|
||||
? 'OLD_'
|
||||
: ''
|
||||
)
|
||||
. 'PASSWORD';
|
||||
|
||||
// in $sql_query which will be displayed, hide the password
|
||||
if (PMA_Util::getServerType() === 'MySQL' && PMA_MYSQL_INT_VERSION >= 50706) {
|
||||
$sql_query = 'ALTER USER \''
|
||||
. PMA_Util::sqlAddSlashes($username)
|
||||
. '\'@\'' . PMA_Util::sqlAddSlashes($hostname) . '\' IDENTIFIED BY \''
|
||||
. (($_POST['pma_pw'] == '')
|
||||
? '\''
|
||||
: preg_replace('@.@s', '*', $_POST['pma_pw']) . '\'');
|
||||
} else {
|
||||
$sql_query = 'SET PASSWORD FOR \''
|
||||
$sql_query = 'SET PASSWORD FOR \''
|
||||
. PMA_Util::sqlAddSlashes($username)
|
||||
. '\'@\'' . PMA_Util::sqlAddSlashes($hostname) . '\' = '
|
||||
. (($_POST['pma_pw'] == '')
|
||||
? '\'\''
|
||||
: $hashing_function . '(\''
|
||||
. preg_replace('@.@s', '*', $_POST['pma_pw']) . '\')');
|
||||
}
|
||||
|
||||
if (PMA_Util::getServerType() === 'MySQL' && PMA_MYSQL_INT_VERSION >= 50706) {
|
||||
$local_query = 'ALTER USER \''
|
||||
. PMA_Util::sqlAddSlashes($username)
|
||||
. '\'@\'' . PMA_Util::sqlAddSlashes($hostname) . '\' IDENTIFIED BY \''
|
||||
. (($_POST['pma_pw'] == '')
|
||||
? '\''
|
||||
: PMA_Util::sqlAddSlashes($_POST['pma_pw']) . '\'');
|
||||
} else {
|
||||
$local_query = 'SET PASSWORD FOR \''
|
||||
$local_query = 'SET PASSWORD FOR \''
|
||||
. PMA_Util::sqlAddSlashes($username)
|
||||
. '\'@\'' . PMA_Util::sqlAddSlashes($hostname) . '\' = '
|
||||
. (($_POST['pma_pw'] == '') ? '\'\'' : $hashing_function
|
||||
@ -4187,12 +4182,18 @@ function PMA_getHtmlForUserOverview($pmaThemeImage, $text_dir)
|
||||
. __('Users overview') . "\n"
|
||||
. '</h2>' . "\n";
|
||||
|
||||
$password_column = 'Password';
|
||||
if (PMA_Util::getServerType() == 'MySQL'
|
||||
&& PMA_MYSQL_INT_VERSION >= 50706
|
||||
) {
|
||||
$password_column = 'authentication_string';
|
||||
}
|
||||
// $sql_query is for the initial-filtered,
|
||||
// $sql_query_all is for counting the total no. of users
|
||||
|
||||
$sql_query = $sql_query_all = 'SELECT *,' .
|
||||
" IF(`Password` = _latin1 '', 'N', 'Y') AS 'Password'" .
|
||||
' FROM `mysql`.`user`';
|
||||
" IF(`" . $password_column . "` = _latin1 '', 'N', 'Y') AS 'Password'" .
|
||||
' FROM `mysql`.`user`';
|
||||
|
||||
$sql_query .= (isset($_REQUEST['initial'])
|
||||
? PMA_rangeOfUsers($_REQUEST['initial'])
|
||||
|
||||
10
po/af.po
10
po/af.po
@ -44,7 +44,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Databasis %1$s is geskep."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Databasis kommentaar:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9684,7 +9684,7 @@ msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Hernoem tabel na"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9719,7 +9719,7 @@ msgstr "Slegs Data"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Geen databasisse"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9743,7 +9743,7 @@ msgid "(singly)"
|
||||
msgstr "(afsonderlik)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Skuif tabel na (databasis<b>.</b>tabel):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9763,7 +9763,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Kopieer tabel na (databasis<b>.</b>tabel):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
12
po/ar.po
12
po/ar.po
@ -47,7 +47,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "تم إنشاء قاعدة البيانات %1$s."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "ملاحظة قاعدة البيانات:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9810,7 +9810,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9844,7 +9844,7 @@ msgstr "بيانات فقط"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "نسخ قاعدة البيانات إلى"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9868,7 +9868,7 @@ msgid "(singly)"
|
||||
msgstr "(فردي)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "نقل جدول إلى (قاعدة بيانات<b>.</b>جدول):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9888,8 +9888,8 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgstr "أنسخ الجدول إلى (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "أنسخ الجدول إلى (database<b>.</b>table)"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
msgid "Switch to copied table"
|
||||
|
||||
10
po/az.po
10
po/az.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "%1$s verilənlər bazası yaradıldı."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Verilənlər bazasına şərh:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9109,7 +9109,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Verilənlər Bazasını adlandır:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9141,7 +9141,7 @@ msgid "Data only"
|
||||
msgstr "Sadəcə məlumat"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Verilənlər Bazasını buraya kopyala:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9165,7 +9165,7 @@ msgid "(singly)"
|
||||
msgstr "(tek-tek)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Cədvəli daşı (verilənlər bazası<b>.</b>cədvəl):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9185,7 +9185,7 @@ msgid "Storage Engine"
|
||||
msgstr "Depolama Motorları"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Cədvəli kopyala (verilənlər bazası<b>.</b>cədvəl):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/be.po
10
po/be.po
@ -44,7 +44,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "База дадзеных %1$s створаная."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Камэнтар да базы дадзеных:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -10084,7 +10084,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Перайменаваць базу дадзеных у"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -10121,7 +10121,7 @@ msgstr "Толькі дадзеныя"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Капіяваць базу дадзеных у"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -10145,7 +10145,7 @@ msgid "(singly)"
|
||||
msgstr "(асобна)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Перанесьці табліцу ў (база дадзеных<b>.</b>табліца):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -10165,7 +10165,7 @@ msgid "Storage Engine"
|
||||
msgstr "Машына захаваньня дадзеных"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Скапіяваць табліцу ў (база дадзеных<b>.</b>табліца):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Baza dadzienych %1$s stvoranaja."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Kamentar da bazy dadzienych:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -10133,7 +10133,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Pierajmienavać bazu dadzienych u"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -10171,7 +10171,7 @@ msgstr "Tolki dadzienyja"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Kapijavać bazu dadzienych u"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -10195,7 +10195,7 @@ msgid "(singly)"
|
||||
msgstr "(asobna)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Pieranieści tablicu ŭ (baza dadzienych<b>.</b>tablica):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -10215,7 +10215,7 @@ msgid "Storage Engine"
|
||||
msgstr "Mašyna zachavańnia dadzienych"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Skapijavać tablicu ŭ (baza dadzienych<b>.</b>tablica):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/bg.po
10
po/bg.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Базата данни %1$s беше създадена."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Коментар към БД:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9770,7 +9770,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Преименуване БД на"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9804,7 +9804,7 @@ msgstr "Само данните"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Копиране на БД в"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9828,7 +9828,7 @@ msgid "(singly)"
|
||||
msgstr "(еднократно)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Преместване на таблица към (БД<b>.</b>таблица):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9848,7 +9848,7 @@ msgid "Storage Engine"
|
||||
msgstr "Хранилище"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Копиране на таблица в (БД<b>.</b>таблица):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/bn.po
10
po/bn.po
@ -44,7 +44,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "ডাটাবেইজ %1$s তৈরী করা হয়েছে।"
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "ডাটাবেইজের মন্তব্য:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9709,7 +9709,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "ডাটাবেজ পুনঃনামকরন:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9741,7 +9741,7 @@ msgid "Data only"
|
||||
msgstr "শুধুমাত্র তথ্য"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "ডাটাবেজ কপি কর:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9765,7 +9765,7 @@ msgid "(singly)"
|
||||
msgstr "(একক ভাবে)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "টেবিলটি (ডাটাবেইজ<b>.</b>টেবল)এ সরানো হয়েছে:"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9785,7 +9785,7 @@ msgid "Storage Engine"
|
||||
msgstr "মজুদ ব্যবস্থা"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "(ডাটাবেইজ<b>.</b>টেবল)এ টেবিলটির প্রতিলিপ কর:"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
12
po/br.po
12
po/br.po
@ -50,7 +50,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Krouet eo bet an diaz roadennoù %1$s."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Evezhiadenn diwar-benn an diaz roadennoù :"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -826,7 +826,7 @@ msgstr ""
|
||||
|
||||
#: index.php:327
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database client version:"
|
||||
msgstr "Evezhiadenn diwar-benn an diaz roadennoù : "
|
||||
|
||||
@ -9797,7 +9797,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Cheñch anv an diaz roadennoù hag e envel"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9831,7 +9831,7 @@ msgstr "Ar roadennoù hepken"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Eilañ an diaz roadennoù war"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9855,7 +9855,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9875,7 +9875,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
12
po/bs.po
12
po/bs.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Baza %1$s je kreirana."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Komentar baze:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -807,7 +807,7 @@ msgstr ""
|
||||
|
||||
#: index.php:327
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database client version:"
|
||||
msgstr "Komentar baze:"
|
||||
|
||||
@ -9812,7 +9812,7 @@ msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Promjeni ime tabele u "
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9847,7 +9847,7 @@ msgstr "Samo podaci"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Baza ne postoji"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9872,7 +9872,7 @@ msgid "(singly)"
|
||||
msgstr "(po jednom polju)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Pomjeri tabelu u (baza<b>.</b>tabela):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9892,7 +9892,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Kopiraj tabelu u (baza<b>.</b>tabela):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/ca.po
10
po/ca.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "S'ha creat la base de dades %1$s."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Comentaris de la base de dades:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9576,7 +9576,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr "No s'han trobat dependències parcials!"
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Reanomena base de dades a:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9608,7 +9608,7 @@ msgid "Data only"
|
||||
msgstr "Només dades"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Còpia base de dades a:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9632,7 +9632,7 @@ msgid "(singly)"
|
||||
msgstr "(només)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Mou la taula a (base-de-dades<b>.</b>taula):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9652,7 +9652,7 @@ msgid "Storage Engine"
|
||||
msgstr "Motor d'emmagatzematge"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Còpia taula a (base-de-dades<b>.</b>taula):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/ckb.po
10
po/ckb.po
@ -48,7 +48,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "بنکەی دراوەی %1$s درووستکرا."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "تێبینی بنکەی دراوە:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9359,7 +9359,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "ناوی بنکەی دراوە بگۆڕە بۆ"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9393,7 +9393,7 @@ msgstr "تەنیا زانیاری"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "لە ڕوونووسینەوەی بنکەی دراوە بۆ"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9417,7 +9417,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9437,7 +9437,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/cs.po
10
po/cs.po
@ -45,7 +45,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Byla vytvořena databáze %1$s."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Komentář k databázi:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9525,7 +9525,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Přejmenovat databázi na:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9557,7 +9557,7 @@ msgid "Data only"
|
||||
msgstr "Jen data"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Zkopírovat databázi na:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9581,7 +9581,7 @@ msgid "(singly)"
|
||||
msgstr "(po jednom)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Přesunout tabulku do (databáze<b>.</b>tabulka):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9601,7 +9601,7 @@ msgid "Storage Engine"
|
||||
msgstr "Úložiště"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Kopírovat tabulku do (databáze<b>.</b>tabulka):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/cy.po
10
po/cy.po
@ -50,7 +50,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Cafodd y gronfa ddata %1$s ei chreu."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Sylw cronfa ddata:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9916,7 +9916,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Ailenwch y gronfa ddata i"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9950,7 +9950,7 @@ msgstr "Data yn unig"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Copïwch y gronfa ddata i"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9974,7 +9974,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9994,7 +9994,7 @@ msgid "Storage Engine"
|
||||
msgstr "Peiriant Storio"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/da.po
10
po/da.po
@ -42,7 +42,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Database %1$s er oprettet."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Databasekommentar:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9502,7 +9502,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr "Der blev ikke fundet delvise afhænigheder!"
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Omdøb database til:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9534,7 +9534,7 @@ msgid "Data only"
|
||||
msgstr "Kun data"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Kopier database til:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9558,7 +9558,7 @@ msgid "(singly)"
|
||||
msgstr "(enkeltvis)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Flyt tabel til (database<b>.</b>tabel):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9578,7 +9578,7 @@ msgid "Storage Engine"
|
||||
msgstr "Datalager"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Kopier tabel til (database<b>.</b>tabel):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/de.po
10
po/de.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Die Datenbank %1$s wurde erzeugt."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Datenbankkommentar:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9645,7 +9645,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr "Keine partiellen Abhängigkeiten gefunden!"
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Datenbank umbenennen in:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9677,7 +9677,7 @@ msgid "Data only"
|
||||
msgstr "Nur Daten"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Datenbank kopieren nach:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9701,7 +9701,7 @@ msgid "(singly)"
|
||||
msgstr "(einmalig)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Verschiebe Tabelle nach (Datenbank<b>.</b>Tabellenname):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9721,7 +9721,7 @@ msgid "Storage Engine"
|
||||
msgstr "Tabellenformat"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Kopiere Tabelle nach (Datenbank<b>.</b>Tabellenname):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/el.po
10
po/el.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Δημιουργήθηκε η βάση δεδομένων %1$s."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Σχόλιο βάσης:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9613,7 +9613,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr "Δεν βρέθηκαν μερικές εξαρτήσεις!"
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Μετονομασία βάσης δεδομένων σε:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9645,7 +9645,7 @@ msgid "Data only"
|
||||
msgstr "Μόνο τα δεδομένα"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Αντιγραφή βάσης δεδομένων σε:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9669,7 +9669,7 @@ msgid "(singly)"
|
||||
msgstr "(μοναδικά)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Μεταφορά πίνακα σε (βάση<b>.</b>πίνακας):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9689,7 +9689,7 @@ msgid "Storage Engine"
|
||||
msgstr "Μηχανή αποθήκευσης"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Αντιγραφή πίνακα σε (βάση<b>.</b>πίνακας):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
20
po/en_GB.po
20
po/en_GB.po
@ -45,8 +45,8 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Database %1$s has been created."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgstr "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Database comment"
|
||||
|
||||
#: db_datadict.php:94
|
||||
#: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:943
|
||||
@ -9692,8 +9692,8 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgstr "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Rename database to"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
#, php-format
|
||||
@ -9724,8 +9724,8 @@ msgid "Data only"
|
||||
msgstr "Data only"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgstr "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Copy database to"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
msgid "CREATE DATABASE before copying"
|
||||
@ -9748,8 +9748,8 @@ msgid "(singly)"
|
||||
msgstr "(singly)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgstr "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Move table to (database<b>.</b>table)"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
msgid "Table options"
|
||||
@ -9768,8 +9768,8 @@ msgid "Storage Engine"
|
||||
msgstr "Storage Engine"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgstr "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Copy table to (database<b>.</b>table)"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
msgid "Switch to copied table"
|
||||
|
||||
10
po/eo.po
10
po/eo.po
@ -47,7 +47,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr ""
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr ""
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -8892,7 +8892,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -8924,7 +8924,7 @@ msgid "Data only"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -8948,7 +8948,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -8968,7 +8968,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/es.po
10
po/es.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "La base de datos %1$s ha sido creada."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Comentario de la base de datos:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9676,7 +9676,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr "¡No se encontraron dependencias parciales!"
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Renombrar la base de datos a:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9708,7 +9708,7 @@ msgid "Data only"
|
||||
msgstr "Solamente datos"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Copiar la base de datos a:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9732,7 +9732,7 @@ msgid "(singly)"
|
||||
msgstr "(solamente)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Mover tabla a (Base de datos<b>.</b>tabla):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9752,7 +9752,7 @@ msgid "Storage Engine"
|
||||
msgstr "Motor de almacenamiento"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Copiar la tabla a (base de datos<b>.</b>tabla):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/et.po
10
po/et.po
@ -47,7 +47,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Andmebaas %1$s on loodud."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Andmebaasi kommentaar:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9446,7 +9446,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr "Osalisi sõltuvusi ei leitud!"
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Andmebaasi uus nimi:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9478,7 +9478,7 @@ msgid "Data only"
|
||||
msgstr "Ainult andmed"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Kopeeri andmebaas kohta:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9502,7 +9502,7 @@ msgid "(singly)"
|
||||
msgstr "(üksikult)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Liiguta tabel kohta (andmebaas<b>.</b>tabel):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9522,7 +9522,7 @@ msgid "Storage Engine"
|
||||
msgstr "Varundusmootor"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Kopeeri tabel kohta (andmebaas<b>.</b>tabel):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
12
po/eu.po
12
po/eu.po
@ -46,7 +46,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "%1$s datu-basea sortua izan da."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Datu-basearen iruzkina:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -810,7 +810,7 @@ msgstr ""
|
||||
|
||||
#: index.php:327
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database client version:"
|
||||
msgstr "Datu-basearen iruzkina: "
|
||||
|
||||
@ -9819,7 +9819,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Datu-basea berrizendatu izen honetara"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9853,7 +9853,7 @@ msgstr "Datuak soilik"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Datu-basea kopiatu"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9877,7 +9877,7 @@ msgid "(singly)"
|
||||
msgstr "(soilik)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Taula hona mugitu (datu-basea<b>.</b>taula):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9897,7 +9897,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Taula hona kopiatu: (datu-base<b>.</b>taula):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/fa.po
10
po/fa.po
@ -45,7 +45,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "پایگاه داده %1$s ایجاد شد."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "توضيحات پایگاه داده:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9693,7 +9693,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "تغییر نام پایگاه داده به"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9727,7 +9727,7 @@ msgstr "فقط دادهها"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "کپی کردن پابگاه داده به"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9751,7 +9751,7 @@ msgid "(singly)"
|
||||
msgstr "(تنها)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "انتقال جدول به (پايگاه داده<b>.</b>جدول):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9771,7 +9771,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "كپي كردن جدول به (پايگاه داده<b>.</b>جدول):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/fi.po
10
po/fi.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Tietokanta %1$s on luotu."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Tietokannan kommentti:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9976,7 +9976,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Muuta tietokannan nimeksi"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -10010,7 +10010,7 @@ msgstr "Vain tiedot"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Luo tietokannasta toinen tietokanta nimellä"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -10034,7 +10034,7 @@ msgid "(singly)"
|
||||
msgstr "(yksitellen)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Siirrä taulu toiseen tauluun (tietokanta<b>.</b>taulu):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -10054,7 +10054,7 @@ msgid "Storage Engine"
|
||||
msgstr "Tallennusmoottori"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Kopioi taulu toiseen tauluun nimellä (tietokanta<b>.</b>taulu):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/fr.po
10
po/fr.po
@ -44,7 +44,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "La base de données %1$s a été créée."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Commentaire sur la base de données :"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9608,7 +9608,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr "Aucune dépendance partielle trouvée !"
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Renommer la base de données comme suit : "
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9640,7 +9640,7 @@ msgid "Data only"
|
||||
msgstr "Données seulement"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Copier la base de données vers : "
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9664,7 +9664,7 @@ msgid "(singly)"
|
||||
msgstr "(à refaire après insertions/destructions)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Déplacer la table vers (base<b>.</b>table) : "
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9684,7 +9684,7 @@ msgid "Storage Engine"
|
||||
msgstr "Moteur de stockage"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Copier la table vers (base<b>.</b>table) : "
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/fy.po
10
po/fy.po
@ -45,7 +45,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr ""
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr ""
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -8926,7 +8926,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -8958,7 +8958,7 @@ msgid "Data only"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -8982,7 +8982,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9002,7 +9002,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/gl.po
10
po/gl.po
@ -44,7 +44,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Creouse a base de datos %1$s."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Comentario da base de datos:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -10409,7 +10409,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Renomear a base de datos como:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -10441,7 +10441,7 @@ msgid "Data only"
|
||||
msgstr "Só os datos"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Copiar a base de datos a:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -10465,7 +10465,7 @@ msgid "(singly)"
|
||||
msgstr "a refacer logo de insercións e destrucións (shingly)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Mover a táboa a (base_de_datos<b>.</b>táboa):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -10485,7 +10485,7 @@ msgid "Storage Engine"
|
||||
msgstr "Motor de almacenamento"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Copiar a táboa a (base_de_datos<b>.</b>táboa):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/he.po
10
po/he.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "מסד הנתונים %1$s נוצר."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "הערה על מסד הנתונים:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9784,7 +9784,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "שינוי שם מסד הנתונים לשם"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9818,7 +9818,7 @@ msgstr "נתונים בלבד"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "העתקת מסד הנתונים אל"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9842,7 +9842,7 @@ msgid "(singly)"
|
||||
msgstr "(בודד)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "העברת טבלה אל (מסד נתונים<b>.</b>טבלה):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9862,7 +9862,7 @@ msgid "Storage Engine"
|
||||
msgstr "מנוע אחסון"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "העתקת טבלה אל (מסד נתונים<b>.</b>טבלה):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/hi.po
10
po/hi.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "%1$s डेटाबेस बनाया गया है।"
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "डाटाबेस टिप्पणि:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -10056,7 +10056,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "डेटाबेस का नाम इसमें पुनर्नामकरण करें"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -10090,7 +10090,7 @@ msgstr "केवल डाटा"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "डेटाबेस को ______ में कॉपी करें"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -10114,7 +10114,7 @@ msgid "(singly)"
|
||||
msgstr "(अकेले)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "टेबल को (database<b>.</b>table) में मूव करें:"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -10134,7 +10134,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "(database<b>.</b>table) में टेबल को कापी करें:"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/hr.po
10
po/hr.po
@ -47,7 +47,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Baza podataka %1$s uspješno je izrađena."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Komentar baze podataka:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -10096,7 +10096,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Preimenuj bazu podataka u"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -10130,7 +10130,7 @@ msgstr "Samo podatke"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Kopiraj bazu podataka u"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -10154,7 +10154,7 @@ msgid "(singly)"
|
||||
msgstr "(pojedinačno)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Premjesti tablicu u (bazapodataka<b>.</b>tablica):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -10174,7 +10174,7 @@ msgid "Storage Engine"
|
||||
msgstr "Pogon pohrane"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Kopiraj tablicu u (bazapodataka<b>.</b>tablica):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/hu.po
10
po/hu.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "A(z) %1$s adatbázis elkészült."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Megjegyzés az adatbázishoz:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9565,7 +9565,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr "Nem található részleges függőség!"
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Adatbázis átnevezése:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9597,7 +9597,7 @@ msgid "Data only"
|
||||
msgstr "Csak az adatok"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Adatbázis másolása:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9621,7 +9621,7 @@ msgid "(singly)"
|
||||
msgstr "(egyenként)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Tábla áthelyezése (adatbázis<b>.</b>tábla):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9641,7 +9641,7 @@ msgid "Storage Engine"
|
||||
msgstr "Tárolómotor"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Tábla másolása (adatbázis<b>.</b>tábla):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
22
po/hy.po
22
po/hy.po
@ -47,7 +47,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "%1$s տվյալների բազան ստեղծված է։"
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Տվյալների բազայի մեկնաբանությունը՝"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -775,7 +775,7 @@ msgstr ""
|
||||
|
||||
#: index.php:327
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database client version:"
|
||||
msgstr "Տվյալների բազայի մեկնաբանությունը՝ "
|
||||
|
||||
@ -5741,7 +5741,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:239
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Databases display options."
|
||||
msgstr "Տվյալների բազայի մեկնաբանությունը՝ "
|
||||
|
||||
@ -8743,7 +8743,7 @@ msgstr ""
|
||||
|
||||
#: libraries/navigation/Nodes/Node_Database.class.php:41
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database operations"
|
||||
msgstr "Տվյալների բազայի մեկնաբանությունը՝ "
|
||||
|
||||
@ -9100,7 +9100,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Վերնվանել տվյալների բազան"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9134,7 +9134,7 @@ msgstr "Միայն տվյալները"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Պատճենել տվյալների բազան"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9158,7 +9158,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9178,7 +9178,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
@ -12559,7 +12559,7 @@ msgstr "Աղյուսակի մեկնաբանությունը"
|
||||
|
||||
#: libraries/server_user_groups.lib.php:80
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database level tabs"
|
||||
msgstr "Տվյալների բազայի մեկնաբանությունը՝ "
|
||||
|
||||
@ -12601,7 +12601,7 @@ msgstr "Աղյուսակի մեկնաբանությունը"
|
||||
|
||||
#: libraries/server_user_groups.lib.php:275
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database-level tabs"
|
||||
msgstr "Տվյալների բազայի մեկնաբանությունը՝ "
|
||||
|
||||
@ -15005,7 +15005,7 @@ msgid "concurrent_insert is set to 0"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Database comment:"
|
||||
#~| msgid "Database comment"
|
||||
#~ msgid "Disable database expansion"
|
||||
#~ msgstr "Տվյալների բազայի մեկնաբանությունը՝ "
|
||||
|
||||
|
||||
14
po/ia.po
14
po/ia.po
@ -47,7 +47,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Le base de datos %1$s ha essite create."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Commento del base de datos:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9593,7 +9593,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9625,7 +9625,7 @@ msgid "Data only"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Copia base de datos in:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9649,8 +9649,8 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgstr "Move le tabella in (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Move le tabella in (database<b>.</b>table)"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
msgid "Table options"
|
||||
@ -9669,8 +9669,8 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgstr "Copia le tabella in (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Copia le tabella in (database<b>.</b>table)"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
msgid "Switch to copied table"
|
||||
|
||||
10
po/id.po
10
po/id.po
@ -44,7 +44,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Database %1$s telah dibuat."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Komentar database:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -10040,7 +10040,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr "Tidak ada dependensi parsial ditemukan!"
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Ubah nama basis data menjadi:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -10074,7 +10074,7 @@ msgstr "Data saja"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Salin basis data ke"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -10098,7 +10098,7 @@ msgid "(singly)"
|
||||
msgstr "(unik)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Pindahkan tabel ke (basis data<b>.</b>tabel):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -10118,7 +10118,7 @@ msgid "Storage Engine"
|
||||
msgstr "Mesin Penyimpanan"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Salin tabel ke (basis data<b>.</b>nama tabel):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/it.po
10
po/it.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Il database %1$s è stato creato."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Commento del database:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -10069,7 +10069,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Rinomina il database come"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -10103,7 +10103,7 @@ msgstr "Solo dati"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Copia il database come"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -10127,7 +10127,7 @@ msgid "(singly)"
|
||||
msgstr "(singolarmente)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Sposta la tabella nel (database<b>.</b>tabella):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -10147,7 +10147,7 @@ msgid "Storage Engine"
|
||||
msgstr "Motore di Memorizzazione"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Copia la tabella nel (database<b>.</b>tabella):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/ja.po
10
po/ja.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "データベース %1$s を作成しました。"
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "データベースのコメント:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -10327,7 +10327,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "データベース名の変更"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -10361,7 +10361,7 @@ msgstr "データのみ"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "データベースのコピー先"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -10385,7 +10385,7 @@ msgid "(singly)"
|
||||
msgstr "(1 回)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "テーブルを (データベース)<b>.</b>(テーブル) へ移動する:"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -10405,7 +10405,7 @@ msgid "Storage Engine"
|
||||
msgstr "ストレージエンジン"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "テーブルを (データベース)<b>.</b>(テーブル) にコピーする:"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/ka.po
10
po/ka.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "მონაცემთა ბაზა '%1$s' წარმატებით შეიქმნა."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "კომენტარი მონაცემთა ბაზაში:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -10205,7 +10205,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Create new database"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "ახალი მონაცემთა ბაზის შექმნა"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -10240,7 +10240,7 @@ msgstr "მხოლოდ მონაცემები"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Copy database to"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -10264,7 +10264,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -10284,7 +10284,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
22
po/kk.po
22
po/kk.po
@ -49,7 +49,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "%1$s дерекқоры құрылды."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Дерекқорына түсініктеме:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -806,7 +806,7 @@ msgstr ""
|
||||
|
||||
#: index.php:327
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database client version:"
|
||||
msgstr "Дерекқорына түсініктеме: "
|
||||
|
||||
@ -5902,7 +5902,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:239
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Databases display options."
|
||||
msgstr "Дерекқорына түсініктеме: "
|
||||
|
||||
@ -8948,7 +8948,7 @@ msgstr ""
|
||||
|
||||
#: libraries/navigation/Nodes/Node_Database.class.php:41
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database operations"
|
||||
msgstr "Дерекқорына түсініктеме: "
|
||||
|
||||
@ -9314,7 +9314,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Дерекқорының атауын қайта қою."
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9348,7 +9348,7 @@ msgstr "Тек мәліметтер ғана"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Дерекқорының көшірілуі"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9372,7 +9372,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9392,7 +9392,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
@ -12803,7 +12803,7 @@ msgstr "Ағымдағы баптау"
|
||||
|
||||
#: libraries/server_user_groups.lib.php:80
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database level tabs"
|
||||
msgstr "Дерекқорына түсініктеме: "
|
||||
|
||||
@ -12849,7 +12849,7 @@ msgstr "Ағымдағы баптау"
|
||||
|
||||
#: libraries/server_user_groups.lib.php:275
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database-level tabs"
|
||||
msgstr "Дерекқорына түсініктеме: "
|
||||
|
||||
@ -15367,7 +15367,7 @@ msgid "concurrent_insert is set to 0"
|
||||
msgstr "Паралельді_кірістірмелерді анықтау"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Database comment:"
|
||||
#~| msgid "Database comment"
|
||||
#~ msgid "Disable database expansion"
|
||||
#~ msgstr "Дерекқорына түсініктеме: "
|
||||
|
||||
|
||||
10
po/km.po
10
po/km.po
@ -46,7 +46,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "មូលដ្ឋានទិន្នន័យ %1$s ត្រូវបានបង្កើត។"
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "មតិយោបល់មូលដ្ឋានទិន្នន័យ៖"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9013,7 +9013,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9045,7 +9045,7 @@ msgid "Data only"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9069,7 +9069,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9089,7 +9089,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/kn.po
10
po/kn.po
@ -45,7 +45,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr ""
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr ""
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -8890,7 +8890,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -8922,7 +8922,7 @@ msgid "Data only"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -8946,7 +8946,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -8966,7 +8966,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/ko.po
10
po/ko.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "데이터베이스 %1$s가 생성되었습니다."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "데이터베이스 설명:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9377,7 +9377,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "데이터베이스 이름을 변경합니다:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9409,7 +9409,7 @@ msgid "Data only"
|
||||
msgstr "데이터만"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "데이터베이스를 복사합니다:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9433,7 +9433,7 @@ msgid "(singly)"
|
||||
msgstr "(단독으로)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "테이블 이동 (데이터베이스명<b>.</b>테이블명):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9453,7 +9453,7 @@ msgid "Storage Engine"
|
||||
msgstr "스토리지 엔진"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "테이블 복사 (데이터베이스명<b>.</b>테이블명):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/ksh.po
10
po/ksh.po
@ -48,7 +48,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Di Dahtebangk %1$s wood aanjelaat."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr ""
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -8934,7 +8934,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -8966,7 +8966,7 @@ msgid "Data only"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -8990,7 +8990,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9010,7 +9010,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/ky.po
10
po/ky.po
@ -47,7 +47,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "%1$s аттуу берилиштер базасы түзүлдү."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Берилиштер базасы жөнүндө маалымат:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -8964,7 +8964,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -8996,7 +8996,7 @@ msgid "Data only"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9020,7 +9020,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9040,7 +9040,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/li.po
10
po/li.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr ""
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr ""
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -8888,7 +8888,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -8920,7 +8920,7 @@ msgid "Data only"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -8944,7 +8944,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -8964,7 +8964,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/lt.po
10
po/lt.po
@ -46,7 +46,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Duomenų bazė %1$s sukurta."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Duomenų bazės komentaras:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -10234,7 +10234,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Pervadinti duomenų bazę į"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -10268,7 +10268,7 @@ msgstr "Tik duomenys"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Kopijuoti duomenų bazę į"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -10292,7 +10292,7 @@ msgid "(singly)"
|
||||
msgstr "(pavieniui)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Perkelti lentelę į (duomenų_bazė<b>.</b>lentelė):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -10312,7 +10312,7 @@ msgid "Storage Engine"
|
||||
msgstr "Saugojimo variklis"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Kopijuoti lentelę į (duomenų_bazė<b>.</b>lentelė):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/lv.po
10
po/lv.po
@ -44,7 +44,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Datubāze %1$s tika izveidota."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Datubāzes komentārs:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9743,7 +9743,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Pārsaukt datubāzi par"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9780,7 +9780,7 @@ msgstr "Tikai dati"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Kopēt datubāzi uz"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9804,7 +9804,7 @@ msgid "(singly)"
|
||||
msgstr "(atsevišķi)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Pārvietot tabulu uz (datubāze<b>.</b>tabula):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9824,7 +9824,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Kopēt tabulu uz (datubāze<b>.</b>tabula):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
12
po/mk.po
12
po/mk.po
@ -42,7 +42,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Базата на податоци %1$s е креирана."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Коментар на базата на податоци:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -815,7 +815,7 @@ msgstr ""
|
||||
|
||||
#: index.php:327
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database client version:"
|
||||
msgstr "Коментар на базата на податоци:"
|
||||
|
||||
@ -9913,7 +9913,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Преименувај ја базата на податоци во"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9948,7 +9948,7 @@ msgstr "Само податоци"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Копирај ја базата на податоци во"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9972,7 +9972,7 @@ msgid "(singly)"
|
||||
msgstr "(по едно поле)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Премести ја табелата во (база<b>.</b>табела):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9992,7 +9992,7 @@ msgid "Storage Engine"
|
||||
msgstr "Вид на складиште"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Копирај ја табелата во (база<b>.</b>табела):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
44
po/ml.po
44
po/ml.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "വിവരശേഖര അഭിപ്രായം:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -762,7 +762,7 @@ msgstr ""
|
||||
|
||||
#: index.php:327
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database client version:"
|
||||
msgstr "വിവരശേഖര അഭിപ്രായം: "
|
||||
|
||||
@ -772,7 +772,7 @@ msgstr ""
|
||||
|
||||
#: index.php:345
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "PHP version:"
|
||||
msgstr "വിവരശേഖര അഭിപ്രായം: "
|
||||
|
||||
@ -4027,7 +4027,7 @@ msgstr ""
|
||||
|
||||
#: libraries/TableSearch.class.php:205
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Table search"
|
||||
msgstr "വിവരശേഖര അഭിപ്രായം: "
|
||||
|
||||
@ -5344,13 +5344,13 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:97
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Whether the table structure actions should be hidden."
|
||||
msgstr "വിവരശേഖര അഭിപ്രായം: "
|
||||
|
||||
#: libraries/config/messages.inc.php:98
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Hide table structure actions"
|
||||
msgstr "വിവരശേഖര അഭിപ്രായം: "
|
||||
|
||||
@ -5709,7 +5709,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:239
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Databases display options."
|
||||
msgstr "വിവരശേഖര അഭിപ്രായം: "
|
||||
|
||||
@ -5870,7 +5870,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:301
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database structure"
|
||||
msgstr "വിവരശേഖര അഭിപ്രായം: "
|
||||
|
||||
@ -5881,7 +5881,7 @@ msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:304 libraries/structure.lib.php:3264
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Table structure"
|
||||
msgstr "വിവരശേഖര അഭിപ്രായം: "
|
||||
|
||||
@ -8708,7 +8708,7 @@ msgstr ""
|
||||
|
||||
#: libraries/navigation/Nodes/Node_Database.class.php:41
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database operations"
|
||||
msgstr "വിവരശേഖര അഭിപ്രായം: "
|
||||
|
||||
@ -9036,7 +9036,7 @@ msgstr ""
|
||||
|
||||
#: libraries/normalization.lib.php:770
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Improve table structure (Normalization):"
|
||||
msgstr "വിവരശേഖര അഭിപ്രായം: "
|
||||
|
||||
@ -9071,7 +9071,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "വിവരശേഖരത്തിന്റ്റ പേര് മാറ്റുക"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9105,7 +9105,7 @@ msgstr "വിവരം മാത്രം"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "വിവരശേഖരം പകർത്തുക"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9129,7 +9129,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9149,7 +9149,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
@ -9550,7 +9550,7 @@ msgstr ""
|
||||
#: libraries/plugins/export/PMA_ExportPdf.class.php:116
|
||||
#: libraries/sql.lib.php:291
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database:"
|
||||
msgstr "വിവരശേഖര അഭിപ്രായം: "
|
||||
|
||||
@ -12516,7 +12516,7 @@ msgstr "പട്ടിക അഭിപ്രയങ്ങൾ"
|
||||
|
||||
#: libraries/server_user_groups.lib.php:80
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database level tabs"
|
||||
msgstr "വിവരശേഖര അഭിപ്രായം: "
|
||||
|
||||
@ -12558,7 +12558,7 @@ msgstr "പട്ടിക അഭിപ്രയങ്ങൾ"
|
||||
|
||||
#: libraries/server_user_groups.lib.php:275
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database-level tabs"
|
||||
msgstr "വിവരശേഖര അഭിപ്രായം: "
|
||||
|
||||
@ -12879,7 +12879,7 @@ msgstr ""
|
||||
|
||||
#: libraries/structure.lib.php:1648
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Improve table structure"
|
||||
msgstr "വിവരശേഖര അഭിപ്രായം: "
|
||||
|
||||
@ -13399,7 +13399,7 @@ msgstr ""
|
||||
|
||||
#: libraries/tracking.lib.php:287 libraries/tracking.lib.php:350
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Delete version"
|
||||
msgstr "വിവരശേഖര അഭിപ്രായം: "
|
||||
|
||||
@ -14973,12 +14973,12 @@ msgid "concurrent_insert is set to 0"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Database comment:"
|
||||
#~| msgid "Database comment"
|
||||
#~ msgid "Disable database expansion"
|
||||
#~ msgstr "വിവരശേഖര അഭിപ്രായം: "
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Database comment:"
|
||||
#~| msgid "Database comment"
|
||||
#~ msgid "Table Structure"
|
||||
#~ msgstr "വിവരശേഖര അഭിപ്രായം: "
|
||||
|
||||
|
||||
10
po/mn.po
10
po/mn.po
@ -44,7 +44,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "%1$s өгөгдлийн сан үүслээ."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "ӨС-ийн тайлбар:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9971,7 +9971,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Өгөгдлийн санг д.нэрлэх нь"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -10009,7 +10009,7 @@ msgstr "Зөвхөн өгөгдөл"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Өгөгдлийн сан хуулах нь"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -10033,7 +10033,7 @@ msgid "(singly)"
|
||||
msgstr "(дан)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Хүснэгтийг зөөх (өгөгдлийн сан<b>.</b>хүснэгт):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -10053,7 +10053,7 @@ msgid "Storage Engine"
|
||||
msgstr "Агуулах хөдөлгүүр"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Хүснэгт хуулах(өгөгдлийн сан<b>.</b>хүснэгт):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/ms.po
10
po/ms.po
@ -44,7 +44,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Pengkalan data %1$s telah dijana."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Komen pangkalan data:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9733,7 +9733,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Tukar nama pangkalan data ke"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9767,7 +9767,7 @@ msgstr "Data sahaja"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Salin pangkalan data ke"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9791,7 +9791,7 @@ msgid "(singly)"
|
||||
msgstr "(persatu)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Pindahkan jadual ke (pangkalandata<b>.</b>jadual):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9811,7 +9811,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Salin jadual ke (pangkalandata<b>.</b>jadual):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/nb.po
10
po/nb.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Databasen %1$s er opprettet."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Databasekommentar:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -10168,7 +10168,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Endre databasens navn til"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -10202,7 +10202,7 @@ msgstr "Bare data"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Kopier databasen til"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -10226,7 +10226,7 @@ msgid "(singly)"
|
||||
msgstr "(enkeltvis)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Flytt tabell til (database<b>.</b>tabell):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -10246,7 +10246,7 @@ msgid "Storage Engine"
|
||||
msgstr "Lagringsmotor"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Kopier tabell til (database<b>.</b>tabell):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/ne.po
10
po/ne.po
@ -48,7 +48,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "%1$s नामको नयाँ डेटाबेस बनाइयो।"
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "टिप्पणी:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -8921,7 +8921,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -8953,7 +8953,7 @@ msgid "Data only"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -8977,7 +8977,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -8997,7 +8997,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/nl.po
10
po/nl.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Database %1$s is aangemaakt."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Database-opmerking:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9607,7 +9607,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr "Geen gedeeltelijke afhankelijkheden gevonden!"
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Hernoem database naar:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9639,7 +9639,7 @@ msgid "Data only"
|
||||
msgstr "Alleen gegevens"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Kopiëer database naar:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9663,7 +9663,7 @@ msgid "(singly)"
|
||||
msgstr "(apart)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Verplaats tabel naar (database<b>.</b>tabel):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9683,7 +9683,7 @@ msgid "Storage Engine"
|
||||
msgstr "Opslag-engine"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Tabel kopiëren naar (database<b>.</b>tabel):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/pa.po
10
po/pa.po
@ -45,7 +45,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr ""
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -8921,7 +8921,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -8953,7 +8953,7 @@ msgid "Data only"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -8977,7 +8977,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -8997,7 +8997,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
@ -44,7 +44,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr ""
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr ""
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -8889,7 +8889,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -8921,7 +8921,7 @@ msgid "Data only"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -8945,7 +8945,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -8965,7 +8965,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/pl.po
10
po/pl.po
@ -44,7 +44,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Baza danych %1$s została utworzona."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Komentarz bazy danych:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9868,7 +9868,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Zmień nazwę bazy danych na:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9900,7 +9900,7 @@ msgid "Data only"
|
||||
msgstr "Tylko dane"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Kopiuj bazę danych do:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9924,7 +9924,7 @@ msgid "(singly)"
|
||||
msgstr "(pojedynczo)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Przenieś tabelę do (bazadanych<b>.</b>tabela):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9944,7 +9944,7 @@ msgid "Storage Engine"
|
||||
msgstr "Mechanizm składowania"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Kopiuj tabelę do (bazadanych<b>.</b>tabela):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/pt.po
10
po/pt.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "A base de dados %1$s foi criada."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Comentário da base de dados:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9690,7 +9690,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Alterar o nome da base de dados para"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9724,7 +9724,7 @@ msgstr "Apenas dados"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Copiar a Base de Dados para"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9748,7 +9748,7 @@ msgid "(singly)"
|
||||
msgstr "(A refazer após inserir/eliminar)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Move tabela para (base de dados<b>.</b>tabela):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9768,7 +9768,7 @@ msgid "Storage Engine"
|
||||
msgstr "Motor de armazenamento"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Copia tabela para (base-de-dados<b>.</b>tabela):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/pt_BR.po
10
po/pt_BR.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "O banco de dados %1$s foi criado."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Comentário do banco de dados:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9605,7 +9605,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr "Nenhuma dependência parcial encontrada!"
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Renomear banco de dados para:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9637,7 +9637,7 @@ msgid "Data only"
|
||||
msgstr "Somente dados"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Copiar banco de dados para:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9661,7 +9661,7 @@ msgid "(singly)"
|
||||
msgstr "(singularmente)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Mover tabela para (banco de dados<b>.</b>tabela):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9681,7 +9681,7 @@ msgid "Storage Engine"
|
||||
msgstr "Mecanismo de armazenamento"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Copiar tabela para (banco de dados<b>.</b>tabela):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/ro.po
10
po/ro.po
@ -45,7 +45,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Baza de date %1$s a fost creată."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Comentarii referitoare la baza de date:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -10061,7 +10061,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Redenumire bază de date în"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -10095,7 +10095,7 @@ msgstr "Numai date"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Copiază baza de date"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -10119,7 +10119,7 @@ msgid "(singly)"
|
||||
msgstr "(individual)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Mută tabelul la (bază_de_date<b>.</b>tabel):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -10139,7 +10139,7 @@ msgid "Storage Engine"
|
||||
msgstr "Motor de stocare"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Copiază tabelul la (bază_de_date<b>.</b>tabel):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/ru.po
10
po/ru.po
@ -45,7 +45,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "База данных %1$s создана."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Комментарий к базе данных:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9637,7 +9637,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr "Частичных зависимостей не найдено!"
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Переименовать базу данных в:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9669,7 +9669,7 @@ msgid "Data only"
|
||||
msgstr "Только данные"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Скопировать базу данных в:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9693,7 +9693,7 @@ msgid "(singly)"
|
||||
msgstr "(столбец)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Переместить таблицы в (база данных<b>.</b>таблица):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9713,7 +9713,7 @@ msgid "Storage Engine"
|
||||
msgstr "Тип таблиц"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Скопировать таблицу в (база данных<b>.</b>таблица):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/si.po
10
po/si.po
@ -42,7 +42,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "%1$s දත්තගබඩාව සාදන ලදි."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "දත්තගබඩා විස්තර:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9788,7 +9788,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9820,7 +9820,7 @@ msgid "Data only"
|
||||
msgstr "දත්ත පමණයි"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "වෙත දත්තගබඩාව පිටවත් කරන්න:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9845,7 +9845,7 @@ msgid "(singly)"
|
||||
msgstr "(singly)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "වගුව (දත්තගබඩාව<b>.</b>වගුව) වෙතට ගෙන යන්න:"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9865,7 +9865,7 @@ msgid "Storage Engine"
|
||||
msgstr "ගබඩා යන්ත්ර"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "වගුව (දත්තගබඩාව<b>.</b>වගුව) වෙතට පිටපත් කරන්න:"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/sk.po
10
po/sk.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Databáza %1$s bola vytvorená."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Komentár k databáze:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9368,7 +9368,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Premenovať databázu na:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9400,7 +9400,7 @@ msgid "Data only"
|
||||
msgstr "Iba dáta"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Skopírovať databázu do:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9424,7 +9424,7 @@ msgid "(singly)"
|
||||
msgstr "(po jednom)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Presunúť tabuľku do (databáza<b>.</b>tabuľka):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9444,7 +9444,7 @@ msgid "Storage Engine"
|
||||
msgstr "Úložný Systém"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Skopírovať tabuľku do (databáza<b>.</b>tabuľka):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/sl.po
10
po/sl.po
@ -44,7 +44,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Zbirka podatkov %1$s je ustvarjena."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Pripomba zbirke podatkov:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9520,7 +9520,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr "Našli nismo nobene delne odvisnosti!"
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Preimenuj zbirko podatkov v:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9552,7 +9552,7 @@ msgid "Data only"
|
||||
msgstr "Samo podatki"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Kopiraj zbirko podatkov v:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9576,7 +9576,7 @@ msgid "(singly)"
|
||||
msgstr "(posamezno)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Premakni tabelo v (podatkovna_zbirka<b>.</b>tabela):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9596,7 +9596,7 @@ msgid "Storage Engine"
|
||||
msgstr "Pogon skladiščenja"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Kopiraj tabelo v (podatkovna_zbirka<b>.</b>tabela):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/sq.po
10
po/sq.po
@ -44,7 +44,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Databaza %1$s është krijuar."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Komenti i databazës:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9666,7 +9666,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr "Nuk gjenden varësi të pjesëshme!"
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Riemëro databazën në:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9698,7 +9698,7 @@ msgid "Data only"
|
||||
msgstr "Vetëm të dhënat"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Kopjo databazën në:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9722,7 +9722,7 @@ msgid "(singly)"
|
||||
msgstr "(vetëm)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Lëviz tabelën tek (databaza<b>.</b>tabela):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9742,7 +9742,7 @@ msgid "Storage Engine"
|
||||
msgstr "Makinat e ruajtjes"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Kopjo tabelën tek (databaza<b>.</b>tabela):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/sr.po
10
po/sr.po
@ -45,7 +45,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "База %1$s је креирана."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Коментар базе:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -10032,7 +10032,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Преименуј базу у"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -10066,7 +10066,7 @@ msgstr "Само подаци"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Копирај базу у"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -10090,7 +10090,7 @@ msgid "(singly)"
|
||||
msgstr "(по једном пољу)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Помери табелу у (база<b>.</b>табела):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -10110,7 +10110,7 @@ msgid "Storage Engine"
|
||||
msgstr "Погон складиштења"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Копирај табелу у (база<b>.</b>табела):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
@ -47,7 +47,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Baza %1$s je kreirana."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Komentar baze:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9991,7 +9991,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Preimenuj bazu u"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -10025,7 +10025,7 @@ msgstr "Samo podaci"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Kopiraj bazu u"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -10049,7 +10049,7 @@ msgid "(singly)"
|
||||
msgstr "(po jednom polju)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Pomeri tabelu u (baza<b>.</b>tabela):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -10069,7 +10069,7 @@ msgid "Storage Engine"
|
||||
msgstr "Pogon skladištenja"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Kopiraj tabelu u (baza<b>.</b>tabela):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/sv.po
10
po/sv.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Databas %1$s har skapats."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Databaskommentar:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9713,7 +9713,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Byt namn på databasen till:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9745,7 +9745,7 @@ msgid "Data only"
|
||||
msgstr "Enbart data"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Kopiera databasen till:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9769,7 +9769,7 @@ msgid "(singly)"
|
||||
msgstr "(var för sig)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Flytta tabellen till (databas<b>.</b>tabell):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9789,7 +9789,7 @@ msgid "Storage Engine"
|
||||
msgstr "Lagringsmotor"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Kopiera tabellen till (databas<b>.</b>tabell):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/ta.po
10
po/ta.po
@ -44,7 +44,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "%1$s தரவுத்தளம் உருவாக்கப்பட்டது."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "தரவுத்தள கருத்துரை:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9083,7 +9083,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "தரவுத்தளத்தைப் இப்படி மறுபெயரிடுக:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9115,7 +9115,7 @@ msgid "Data only"
|
||||
msgstr "தரவுகளை மட்டும்"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "தரவுதளத்தை இப்படி படியெடுக்க:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9139,7 +9139,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9159,7 +9159,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
12
po/te.po
12
po/te.po
@ -45,7 +45,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "%1$s డేటాబేసు సృష్టించబడింది."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "డేటాబేస్ వ్యాఖ్య:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -804,7 +804,7 @@ msgstr ""
|
||||
|
||||
#: index.php:327
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database client version:"
|
||||
msgstr "డేటాబేస్ వ్యాఖ్య:"
|
||||
|
||||
@ -9619,7 +9619,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "డేటాబేసుకు ఈ పేరు పెట్టండి"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9654,7 +9654,7 @@ msgstr "డేటా మాత్రమే"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "డేటాబేస్ ను ఇక్కడికి కాపీ చేయి"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9678,7 +9678,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9698,7 +9698,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
12
po/th.po
12
po/th.po
@ -42,7 +42,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "ฐานข้อมูล %1$s ถูกสร้างเรียบร้อยแล้ว"
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "หมายเหตุของฐานข้อมูล:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9753,7 +9753,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9787,7 +9787,7 @@ msgstr "เฉพาะข้อมูล"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "คัดลอกฐานข้อมูลเป็น"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9811,8 +9811,8 @@ msgid "(singly)"
|
||||
msgstr "(เดี่ยว)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgstr "ย้ายตารางไป (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "ย้ายตารางไป (database<b>.</b>table)"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
msgid "Table options"
|
||||
@ -9831,7 +9831,7 @@ msgid "Storage Engine"
|
||||
msgstr "เครื่องมือที่เก็บข้อมูล"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "คัดลอกตารางไปยัง (ฐานข้อมูล<b>.</b>ตาราง):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/tk.po
10
po/tk.po
@ -47,7 +47,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "%1$s maglumatlar ulgamy döredildi."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr ""
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -8944,7 +8944,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -8976,7 +8976,7 @@ msgid "Data only"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9000,7 +9000,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9020,7 +9020,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/tr.po
10
po/tr.po
@ -43,7 +43,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Veritabanı %1$s oluşturuldu."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Veritabanı yorumu:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9533,7 +9533,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr "Bulunan kısmi bağımlılıklar yok!"
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Veritabanını şuna yeniden adlandır:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9565,7 +9565,7 @@ msgid "Data only"
|
||||
msgstr "Sadece veri"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Veritabanını şuraya kopyala:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9589,7 +9589,7 @@ msgid "(singly)"
|
||||
msgstr "(birer birer)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Tabloyu şuna (veritabanı<b>.</b>tablo) taşı:"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9609,7 +9609,7 @@ msgid "Storage Engine"
|
||||
msgstr "Depolama Motoru"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Tabloyu şuna (veritabanı<b>.</b>tablo) kopyala:"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/tt.po
10
po/tt.po
@ -42,7 +42,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "%s biremlege beterelde."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Biremlek açıqlaması:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9939,7 +9939,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Biremlekne bolay atap quy"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9976,7 +9976,7 @@ msgstr "Eçtälegen genä"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Biremlekne boña kübäyt"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -10000,7 +10000,7 @@ msgid "(singly)"
|
||||
msgstr "(sıñar)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Boña küçerü (biremlek<b>.</b>tüşämä):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -10020,7 +10020,7 @@ msgid "Storage Engine"
|
||||
msgstr "Saqlaw Isulı"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Boña kübäyt (biremlek<b>.</b>tüşämä):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
18
po/ug.po
18
po/ug.po
@ -47,7 +47,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "ساندان ئىزاھاتى:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -814,7 +814,7 @@ msgstr ""
|
||||
|
||||
#: index.php:327
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database client version:"
|
||||
msgstr "ساندان ئىزاھاتى:"
|
||||
|
||||
@ -6156,7 +6156,7 @@ msgstr "LaTeX"
|
||||
|
||||
#: libraries/config/messages.inc.php:239
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Databases display options."
|
||||
msgstr "ساندان ئىزاھاتى:"
|
||||
|
||||
@ -9332,7 +9332,7 @@ msgstr ""
|
||||
|
||||
#: libraries/navigation/Nodes/Node_Database.class.php:41
|
||||
#, fuzzy
|
||||
#| msgid "Database comment:"
|
||||
#| msgid "Database comment"
|
||||
msgid "Database operations"
|
||||
msgstr "ساندان ئىزاھاتى:"
|
||||
|
||||
@ -9701,7 +9701,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "ئۆزگەرتىلگەن ساندان ئىسمى"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9735,7 +9735,7 @@ msgstr "ئۇچۇرنىلا"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "كۆچۈرۈلگەن ساندان"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9759,7 +9759,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9779,7 +9779,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
@ -16021,7 +16021,7 @@ msgid "concurrent_insert is set to 0"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Database comment:"
|
||||
#~| msgid "Database comment"
|
||||
#~ msgid "Disable database expansion"
|
||||
#~ msgstr "ساندان ئىزاھاتى:"
|
||||
|
||||
|
||||
10
po/uk.po
10
po/uk.po
@ -44,7 +44,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Базу даних %1$s створено."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Коментар бази даних:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9524,7 +9524,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Перейменувати базу даних на:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9556,7 +9556,7 @@ msgid "Data only"
|
||||
msgstr "Лише дані"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Копіювати базу даних в:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9580,7 +9580,7 @@ msgid "(singly)"
|
||||
msgstr "(окремо)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Перенести таблицю в (база даних<b>.</b>таблиця):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9600,7 +9600,7 @@ msgid "Storage Engine"
|
||||
msgstr "Тип таблиць"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Скопіювати таблицю в (база даних<b>.</b>таблиця):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/ur.po
10
po/ur.po
@ -50,7 +50,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "ڈیٹا بیس %1$s بنا دیا گیا ہے۔"
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "کوائفیہ تبصرہ:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -10103,7 +10103,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "کوائفیہ نام بدلیں"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -10137,7 +10137,7 @@ msgstr "کوائف صرف"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "کوائفیہ نقل کریں بطرف"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -10161,7 +10161,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -10181,7 +10181,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/uz.po
10
po/uz.po
@ -46,7 +46,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "%1$s маълумотлар базаси тузилди."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Маълумотлар базасига изоҳ:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -10747,7 +10747,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -10781,7 +10781,7 @@ msgstr "Фақат маълумотлар"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Маълумотлар базасидан қуйидагига нусха олиш"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -10805,7 +10805,7 @@ msgid "(singly)"
|
||||
msgstr "(устун)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Жадвални (маълумотлар базаси<b>.</b>жадвал) га кўчириш:"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -10825,7 +10825,7 @@ msgid "Storage Engine"
|
||||
msgstr "Жадвал тури"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Жадвалдан (маълумотлар омбори<b>.</b>жадвал) га нусха кўчириш:"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
@ -44,7 +44,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "%1$s ma`lumotlar bazasi tuzildi."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Ma`lumotlar bazasiga izoh:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -10796,7 +10796,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -10834,7 +10834,7 @@ msgstr "Faqat ma`lumotlar"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -10858,7 +10858,7 @@ msgid "(singly)"
|
||||
msgstr "(ustun)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "Jadvalni (ma`lumotlar bazasi<b>.</b>jadval) ga ko‘chirish:"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -10878,7 +10878,7 @@ msgid "Storage Engine"
|
||||
msgstr "Jadval turi"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "Jadvaldan (ma`lumotlar ombori<b>.</b>jadval) ga nusxa ko‘chirish:"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/vi.po
10
po/vi.po
@ -47,7 +47,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "Database %1$s đã được tạo."
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "Chú thích của Database:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -8897,7 +8897,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -8929,7 +8929,7 @@ msgid "Data only"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -8953,7 +8953,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -8973,7 +8973,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/vls.po
10
po/vls.po
@ -47,7 +47,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr ""
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr ""
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -8892,7 +8892,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -8924,7 +8924,7 @@ msgid "Data only"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -8948,7 +8948,7 @@ msgid "(singly)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -8968,7 +8968,7 @@ msgid "Storage Engine"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/zh_CN.po
10
po/zh_CN.po
@ -41,7 +41,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "已创建数据库 %1$s。"
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "数据库注释:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9720,7 +9720,7 @@ msgstr ""
|
||||
#: libraries/operations.lib.php:74
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "将数据库改名为"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9754,7 +9754,7 @@ msgstr "仅数据"
|
||||
#: libraries/operations.lib.php:174
|
||||
#, fuzzy
|
||||
#| msgid "Copy database to"
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "复制数据库到"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9778,7 +9778,7 @@ msgid "(singly)"
|
||||
msgstr "(逐一)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "将数据表移动到(数据库名<b>.</b>数据表名):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9798,7 +9798,7 @@ msgid "Storage Engine"
|
||||
msgstr "存储引擎"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "将数据表复制到(数据库名<b>.</b>数据表名):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
10
po/zh_TW.po
10
po/zh_TW.po
@ -42,7 +42,7 @@ msgid "Database %1$s has been created."
|
||||
msgstr "己建立資料庫 %1$s。"
|
||||
|
||||
#: db_datadict.php:48 libraries/operations.lib.php:31
|
||||
msgid "Database comment:"
|
||||
msgid "Database comment"
|
||||
msgstr "資料庫備註:"
|
||||
|
||||
#: db_datadict.php:94
|
||||
@ -9238,7 +9238,7 @@ msgid "No partial dependencies found!"
|
||||
msgstr "查無部份相依!"
|
||||
|
||||
#: libraries/operations.lib.php:74
|
||||
msgid "Rename database to:"
|
||||
msgid "Rename database to"
|
||||
msgstr "重新命名資料庫為:"
|
||||
|
||||
#: libraries/operations.lib.php:106
|
||||
@ -9270,7 +9270,7 @@ msgid "Data only"
|
||||
msgstr "僅資料"
|
||||
|
||||
#: libraries/operations.lib.php:174
|
||||
msgid "Copy database to:"
|
||||
msgid "Copy database to"
|
||||
msgstr "複製資料庫到:"
|
||||
|
||||
#: libraries/operations.lib.php:185
|
||||
@ -9294,7 +9294,7 @@ msgid "(singly)"
|
||||
msgstr "(單一)"
|
||||
|
||||
#: libraries/operations.lib.php:621
|
||||
msgid "Move table to (database<b>.</b>table):"
|
||||
msgid "Move table to (database<b>.</b>table)"
|
||||
msgstr "移動資料表到 (資料庫名<b>.</b>資料表名稱):"
|
||||
|
||||
#: libraries/operations.lib.php:732
|
||||
@ -9314,7 +9314,7 @@ msgid "Storage Engine"
|
||||
msgstr "儲存引擎"
|
||||
|
||||
#: libraries/operations.lib.php:955
|
||||
msgid "Copy table to (database<b>.</b>table):"
|
||||
msgid "Copy table to (database<b>.</b>table)"
|
||||
msgstr "複製資料表到 (資料庫名稱<b>.</b>資料表名稱):"
|
||||
|
||||
#: libraries/operations.lib.php:1010
|
||||
|
||||
@ -32,7 +32,7 @@ class PMA_SeleniumDbOperationsTest extends PMA_SeleniumBase
|
||||
$this->expandMore();
|
||||
$this->waitForElement("byLinkText", "Operations")->click();
|
||||
$this->waitForElement(
|
||||
"byXPath", "//legend[contains(., 'Rename database to:')]"
|
||||
"byXPath", "//legend[contains(., 'Rename database to')]"
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user