diff --git a/ChangeLog b/ChangeLog index 128cd95a08..b45c86a16a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/db_datadict.php b/db_datadict.php index 555063e7d3..66c2c27b5b 100644 --- a/db_datadict.php +++ b/db_datadict.php @@ -45,8 +45,8 @@ if ($cfgRelation['commwork']) { * Displays DB comment */ if ($comment) { - echo '

' . __('Database comment:') - . ' ' . htmlspecialchars($comment) . '

'; + echo '

' . __('Database comment') + . '
' . htmlspecialchars($comment) . '

'; } // end if } diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index fa796b98ce..6970badd03 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -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 .= ''; $html_output .= ''; $html_output .= '' . '
' @@ -618,7 +618,7 @@ function PMA_getHtmlForMoveTable() . '' . '
'; - $html_output .= '' . __('Move table to (database.table):') + $html_output .= '' . __('Move table to (database.table)') . ''; if (count($GLOBALS['pma']->databases) > $GLOBALS['cfg']['MaxDbList']) { @@ -952,7 +952,7 @@ function PMA_getHtmlForCopytable() $html_output .= '
'; $html_output .= '' - . __('Copy table to (database.table):') . ''; + . __('Copy table to (database.table)') . ''; if (count($GLOBALS['pma']->databases) > $GLOBALS['cfg']['MaxDbList']) { $html_output .= '= 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" . '' . "\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']) diff --git a/po/af.po b/po/af.po index d09b1baeb4..2431529b1c 100644 --- a/po/af.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Skuif tabel na (databasis.tabel):" #: libraries/operations.lib.php:732 @@ -9763,7 +9763,7 @@ msgid "Storage Engine" msgstr "" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "Kopieer tabel na (databasis.tabel):" #: libraries/operations.lib.php:1010 diff --git a/po/ar.po b/po/ar.po index cfb4cc7dc4..7e78dc8300 100644 --- a/po/ar.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "نقل جدول إلى (قاعدة بيانات.جدول):" #: libraries/operations.lib.php:732 @@ -9888,8 +9888,8 @@ msgid "Storage Engine" msgstr "" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" -msgstr "أنسخ الجدول إلى (database.table):" +msgid "Copy table to (database.table)" +msgstr "أنسخ الجدول إلى (database.table)" #: libraries/operations.lib.php:1010 msgid "Switch to copied table" diff --git a/po/az.po b/po/az.po index 95cfd85eae..a963fb8e4d 100644 --- a/po/az.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Cədvəli daşı (verilənlər bazası.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.table):" +msgid "Copy table to (database.table)" msgstr "Cədvəli kopyala (verilənlər bazası.cədvəl):" #: libraries/operations.lib.php:1010 diff --git a/po/be.po b/po/be.po index 882a2e2a00..cd6cc450f9 100644 --- a/po/be.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Перанесьці табліцу ў (база дадзеных.табліца):" #: libraries/operations.lib.php:732 @@ -10165,7 +10165,7 @@ msgid "Storage Engine" msgstr "Машына захаваньня дадзеных" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "Скапіяваць табліцу ў (база дадзеных.табліца):" #: libraries/operations.lib.php:1010 diff --git a/po/be@latin.po b/po/be@latin.po index 360e2b07cf..1a1003ad3c 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -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.table):" +msgid "Move table to (database.table)" msgstr "Pieranieści tablicu ŭ (baza dadzienych.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.table):" +msgid "Copy table to (database.table)" msgstr "Skapijavać tablicu ŭ (baza dadzienych.tablica):" #: libraries/operations.lib.php:1010 diff --git a/po/bg.po b/po/bg.po index 538c29fc30..dc4b971909 100644 --- a/po/bg.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Преместване на таблица към (БД.таблица):" #: libraries/operations.lib.php:732 @@ -9848,7 +9848,7 @@ msgid "Storage Engine" msgstr "Хранилище" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "Копиране на таблица в (БД.таблица):" #: libraries/operations.lib.php:1010 diff --git a/po/bn.po b/po/bn.po index 8a2115d838..3247ddfca9 100644 --- a/po/bn.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "টেবিলটি (ডাটাবেইজ.টেবল)এ সরানো হয়েছে:" #: libraries/operations.lib.php:732 @@ -9785,7 +9785,7 @@ msgid "Storage Engine" msgstr "মজুদ ব্যবস্থা" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "(ডাটাবেইজ.টেবল)এ টেবিলটির প্রতিলিপ কর:" #: libraries/operations.lib.php:1010 diff --git a/po/br.po b/po/br.po index afc5eae045..f01dd59d86 100644 --- a/po/br.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.table)" msgstr "" #: libraries/operations.lib.php:1010 diff --git a/po/bs.po b/po/bs.po index 47551e24e7..f2c0ae0b0f 100644 --- a/po/bs.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Pomjeri tabelu u (baza.tabela):" #: libraries/operations.lib.php:732 @@ -9892,7 +9892,7 @@ msgid "Storage Engine" msgstr "" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "Kopiraj tabelu u (baza.tabela):" #: libraries/operations.lib.php:1010 diff --git a/po/ca.po b/po/ca.po index 56b7bd1c3a..338c659860 100644 --- a/po/ca.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Mou la taula a (base-de-dades.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.table):" +msgid "Copy table to (database.table)" msgstr "Còpia taula a (base-de-dades.taula):" #: libraries/operations.lib.php:1010 diff --git a/po/ckb.po b/po/ckb.po index 7c95aa0a5e..d34fa11937 100644 --- a/po/ckb.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.table)" msgstr "" #: libraries/operations.lib.php:1010 diff --git a/po/cs.po b/po/cs.po index 519d3716fc..69c7f393e9 100644 --- a/po/cs.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Přesunout tabulku do (databáze.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.table):" +msgid "Copy table to (database.table)" msgstr "Kopírovat tabulku do (databáze.tabulka):" #: libraries/operations.lib.php:1010 diff --git a/po/cy.po b/po/cy.po index 1544f0e376..be485e8a73 100644 --- a/po/cy.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.table)" msgstr "" #: libraries/operations.lib.php:1010 diff --git a/po/da.po b/po/da.po index b5d1200549..eaa4b7b6b6 100644 --- a/po/da.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Flyt tabel til (database.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.table):" +msgid "Copy table to (database.table)" msgstr "Kopier tabel til (database.tabel):" #: libraries/operations.lib.php:1010 diff --git a/po/de.po b/po/de.po index b8d8beb3d6..e6dddf304e 100644 --- a/po/de.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Verschiebe Tabelle nach (Datenbank.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.table):" +msgid "Copy table to (database.table)" msgstr "Kopiere Tabelle nach (Datenbank.Tabellenname):" #: libraries/operations.lib.php:1010 diff --git a/po/el.po b/po/el.po index ba964e8808..7065eb7db1 100644 --- a/po/el.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Μεταφορά πίνακα σε (βάση.πίνακας):" #: libraries/operations.lib.php:732 @@ -9689,7 +9689,7 @@ msgid "Storage Engine" msgstr "Μηχανή αποθήκευσης" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "Αντιγραφή πίνακα σε (βάση.πίνακας):" #: libraries/operations.lib.php:1010 diff --git a/po/en_GB.po b/po/en_GB.po index 1a483952a4..cbd753e982 100644 --- a/po/en_GB.po +++ b/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.table):" -msgstr "Move table to (database.table):" +msgid "Move table to (database.table)" +msgstr "Move table to (database.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.table):" -msgstr "Copy table to (database.table):" +msgid "Copy table to (database.table)" +msgstr "Copy table to (database.table)" #: libraries/operations.lib.php:1010 msgid "Switch to copied table" diff --git a/po/eo.po b/po/eo.po index f154fe8841..68ce4965ab 100644 --- a/po/eo.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.table)" msgstr "" #: libraries/operations.lib.php:1010 diff --git a/po/es.po b/po/es.po index 3c1496493b..5306c7bbd8 100644 --- a/po/es.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Mover tabla a (Base de datos.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.table):" +msgid "Copy table to (database.table)" msgstr "Copiar la tabla a (base de datos.tabla):" #: libraries/operations.lib.php:1010 diff --git a/po/et.po b/po/et.po index 5433c41b9a..e9afcbf735 100644 --- a/po/et.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Liiguta tabel kohta (andmebaas.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.table):" +msgid "Copy table to (database.table)" msgstr "Kopeeri tabel kohta (andmebaas.tabel):" #: libraries/operations.lib.php:1010 diff --git a/po/eu.po b/po/eu.po index ca049cf4d1..293f9bce82 100644 --- a/po/eu.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Taula hona mugitu (datu-basea.taula):" #: libraries/operations.lib.php:732 @@ -9897,7 +9897,7 @@ msgid "Storage Engine" msgstr "" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "Taula hona kopiatu: (datu-base.taula):" #: libraries/operations.lib.php:1010 diff --git a/po/fa.po b/po/fa.po index 8bfc7fa18b..edba5bf94a 100644 --- a/po/fa.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "انتقال جدول به (پايگاه داده.جدول):" #: libraries/operations.lib.php:732 @@ -9771,7 +9771,7 @@ msgid "Storage Engine" msgstr "" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "كپي كردن جدول به (پايگاه داده.جدول):" #: libraries/operations.lib.php:1010 diff --git a/po/fi.po b/po/fi.po index c1b8925f20..5671f32360 100644 --- a/po/fi.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Siirrä taulu toiseen tauluun (tietokanta.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.table):" +msgid "Copy table to (database.table)" msgstr "Kopioi taulu toiseen tauluun nimellä (tietokanta.taulu):" #: libraries/operations.lib.php:1010 diff --git a/po/fr.po b/po/fr.po index ec7f8e2c28..87be822ee8 100644 --- a/po/fr.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Déplacer la table vers (base.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.table):" +msgid "Copy table to (database.table)" msgstr "Copier la table vers (base.table) : " #: libraries/operations.lib.php:1010 diff --git a/po/fy.po b/po/fy.po index e5007e7c2c..0662e2e510 100644 --- a/po/fy.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.table)" msgstr "" #: libraries/operations.lib.php:1010 diff --git a/po/gl.po b/po/gl.po index 8ef230edf2..9f0e42d69a 100644 --- a/po/gl.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Mover a táboa a (base_de_datos.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.table):" +msgid "Copy table to (database.table)" msgstr "Copiar a táboa a (base_de_datos.táboa):" #: libraries/operations.lib.php:1010 diff --git a/po/he.po b/po/he.po index b7db7273d1..c78dfa0d58 100644 --- a/po/he.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "העברת טבלה אל (מסד נתונים.טבלה):" #: libraries/operations.lib.php:732 @@ -9862,7 +9862,7 @@ msgid "Storage Engine" msgstr "מנוע אחסון" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "העתקת טבלה אל (מסד נתונים.טבלה):" #: libraries/operations.lib.php:1010 diff --git a/po/hi.po b/po/hi.po index 3b40d92519..da50db9bcc 100644 --- a/po/hi.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "टेबल को (database.table) में मूव करें:" #: libraries/operations.lib.php:732 @@ -10134,7 +10134,7 @@ msgid "Storage Engine" msgstr "" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "(database.table) में टेबल को कापी करें:" #: libraries/operations.lib.php:1010 diff --git a/po/hr.po b/po/hr.po index ba944afc79..1ddfce8d48 100644 --- a/po/hr.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Premjesti tablicu u (bazapodataka.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.table):" +msgid "Copy table to (database.table)" msgstr "Kopiraj tablicu u (bazapodataka.tablica):" #: libraries/operations.lib.php:1010 diff --git a/po/hu.po b/po/hu.po index 97900b771d..89d20ff5a6 100644 --- a/po/hu.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Tábla áthelyezése (adatbázis.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.table):" +msgid "Copy table to (database.table)" msgstr "Tábla másolása (adatbázis.tábla):" #: libraries/operations.lib.php:1010 diff --git a/po/hy.po b/po/hy.po index 2b7711a9cb..18bca84ee9 100644 --- a/po/hy.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.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 "Տվյալների բազայի մեկնաբանությունը՝ " diff --git a/po/ia.po b/po/ia.po index dd14c55f7a..2641f40262 100644 --- a/po/ia.po +++ b/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.table):" -msgstr "Move le tabella in (database.table):" +msgid "Move table to (database.table)" +msgstr "Move le tabella in (database.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.table):" -msgstr "Copia le tabella in (database.table):" +msgid "Copy table to (database.table)" +msgstr "Copia le tabella in (database.table)" #: libraries/operations.lib.php:1010 msgid "Switch to copied table" diff --git a/po/id.po b/po/id.po index a9c3073b4a..5cf1b4f1fb 100644 --- a/po/id.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Pindahkan tabel ke (basis data.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.table):" +msgid "Copy table to (database.table)" msgstr "Salin tabel ke (basis data.nama tabel):" #: libraries/operations.lib.php:1010 diff --git a/po/it.po b/po/it.po index 9ce99d9121..7816573f5f 100644 --- a/po/it.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Sposta la tabella nel (database.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.table):" +msgid "Copy table to (database.table)" msgstr "Copia la tabella nel (database.tabella):" #: libraries/operations.lib.php:1010 diff --git a/po/ja.po b/po/ja.po index fe173480d1..5ecf36ee3b 100644 --- a/po/ja.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "テーブルを (データベース).(テーブル) へ移動する:" #: libraries/operations.lib.php:732 @@ -10405,7 +10405,7 @@ msgid "Storage Engine" msgstr "ストレージエンジン" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "テーブルを (データベース).(テーブル) にコピーする:" #: libraries/operations.lib.php:1010 diff --git a/po/ka.po b/po/ka.po index 69be012be0..8ff73cdce9 100644 --- a/po/ka.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.table)" msgstr "" #: libraries/operations.lib.php:1010 diff --git a/po/kk.po b/po/kk.po index c99ead2d9a..2622f33f13 100644 --- a/po/kk.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.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 "Дерекқорына түсініктеме: " diff --git a/po/km.po b/po/km.po index e6d7349427..793bc132f2 100644 --- a/po/km.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.table)" msgstr "" #: libraries/operations.lib.php:1010 diff --git a/po/kn.po b/po/kn.po index b426a46dc8..db0a3c619f 100644 --- a/po/kn.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.table)" msgstr "" #: libraries/operations.lib.php:1010 diff --git a/po/ko.po b/po/ko.po index 01597b35a6..d32f07bab6 100644 --- a/po/ko.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "테이블 이동 (데이터베이스명.테이블명):" #: libraries/operations.lib.php:732 @@ -9453,7 +9453,7 @@ msgid "Storage Engine" msgstr "스토리지 엔진" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "테이블 복사 (데이터베이스명.테이블명):" #: libraries/operations.lib.php:1010 diff --git a/po/ksh.po b/po/ksh.po index d5462ee831..ed73e7f333 100644 --- a/po/ksh.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.table)" msgstr "" #: libraries/operations.lib.php:1010 diff --git a/po/ky.po b/po/ky.po index aab4f8d3b8..71e29d84c4 100644 --- a/po/ky.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.table)" msgstr "" #: libraries/operations.lib.php:1010 diff --git a/po/li.po b/po/li.po index 21b0cf9e26..e4ef829ed4 100644 --- a/po/li.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.table)" msgstr "" #: libraries/operations.lib.php:1010 diff --git a/po/lt.po b/po/lt.po index 71806ce76f..45f102c3ca 100644 --- a/po/lt.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Perkelti lentelę į (duomenų_bazė.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.table):" +msgid "Copy table to (database.table)" msgstr "Kopijuoti lentelę į (duomenų_bazė.lentelė):" #: libraries/operations.lib.php:1010 diff --git a/po/lv.po b/po/lv.po index 0518c89ec6..1c66d2bb32 100644 --- a/po/lv.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Pārvietot tabulu uz (datubāze.tabula):" #: libraries/operations.lib.php:732 @@ -9824,7 +9824,7 @@ msgid "Storage Engine" msgstr "" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "Kopēt tabulu uz (datubāze.tabula):" #: libraries/operations.lib.php:1010 diff --git a/po/mk.po b/po/mk.po index 420a12a48c..817226e428 100644 --- a/po/mk.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Премести ја табелата во (база.табела):" #: libraries/operations.lib.php:732 @@ -9992,7 +9992,7 @@ msgid "Storage Engine" msgstr "Вид на складиште" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "Копирај ја табелата во (база.табела):" #: libraries/operations.lib.php:1010 diff --git a/po/ml.po b/po/ml.po index 2fe152e3ae..7cf27a3434 100644 --- a/po/ml.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.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 "വിവരശേഖര അഭിപ്രായം: " diff --git a/po/mn.po b/po/mn.po index 898e6ef983..1addfdfb14 100644 --- a/po/mn.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Хүснэгтийг зөөх (өгөгдлийн сан.хүснэгт):" #: libraries/operations.lib.php:732 @@ -10053,7 +10053,7 @@ msgid "Storage Engine" msgstr "Агуулах хөдөлгүүр" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "Хүснэгт хуулах(өгөгдлийн сан.хүснэгт):" #: libraries/operations.lib.php:1010 diff --git a/po/ms.po b/po/ms.po index 90102a4eb9..ff66de3ae3 100644 --- a/po/ms.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Pindahkan jadual ke (pangkalandata.jadual):" #: libraries/operations.lib.php:732 @@ -9811,7 +9811,7 @@ msgid "Storage Engine" msgstr "" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "Salin jadual ke (pangkalandata.jadual):" #: libraries/operations.lib.php:1010 diff --git a/po/nb.po b/po/nb.po index 8f925fdea1..83759b1757 100644 --- a/po/nb.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Flytt tabell til (database.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.table):" +msgid "Copy table to (database.table)" msgstr "Kopier tabell til (database.tabell):" #: libraries/operations.lib.php:1010 diff --git a/po/ne.po b/po/ne.po index 60518267b6..ea2982d5d8 100644 --- a/po/ne.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.table)" msgstr "" #: libraries/operations.lib.php:1010 diff --git a/po/nl.po b/po/nl.po index a45e185e96..018fcc7291 100644 --- a/po/nl.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Verplaats tabel naar (database.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.table):" +msgid "Copy table to (database.table)" msgstr "Tabel kopiëren naar (database.tabel):" #: libraries/operations.lib.php:1010 diff --git a/po/pa.po b/po/pa.po index eda8da6485..147072b9ac 100644 --- a/po/pa.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.table)" msgstr "" #: libraries/operations.lib.php:1010 diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 0691923cff..9c2e222d3c 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.table)" msgstr "" #: libraries/operations.lib.php:1010 diff --git a/po/pl.po b/po/pl.po index 3f4f3acf12..986caf3522 100644 --- a/po/pl.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Przenieś tabelę do (bazadanych.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.table):" +msgid "Copy table to (database.table)" msgstr "Kopiuj tabelę do (bazadanych.tabela):" #: libraries/operations.lib.php:1010 diff --git a/po/pt.po b/po/pt.po index 3dfbea7742..eff598028f 100644 --- a/po/pt.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Move tabela para (base de dados.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.table):" +msgid "Copy table to (database.table)" msgstr "Copia tabela para (base-de-dados.tabela):" #: libraries/operations.lib.php:1010 diff --git a/po/pt_BR.po b/po/pt_BR.po index ed1a44b194..1f4641dfcc 100644 --- a/po/pt_BR.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Mover tabela para (banco de dados.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.table):" +msgid "Copy table to (database.table)" msgstr "Copiar tabela para (banco de dados.tabela):" #: libraries/operations.lib.php:1010 diff --git a/po/ro.po b/po/ro.po index 74f0d5ba87..164a3fdc2b 100644 --- a/po/ro.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Mută tabelul la (bază_de_date.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.table):" +msgid "Copy table to (database.table)" msgstr "Copiază tabelul la (bază_de_date.tabel):" #: libraries/operations.lib.php:1010 diff --git a/po/ru.po b/po/ru.po index 9c8230236c..c5d5789589 100644 --- a/po/ru.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Переместить таблицы в (база данных.таблица):" #: libraries/operations.lib.php:732 @@ -9713,7 +9713,7 @@ msgid "Storage Engine" msgstr "Тип таблиц" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "Скопировать таблицу в (база данных.таблица):" #: libraries/operations.lib.php:1010 diff --git a/po/si.po b/po/si.po index 82037fe4da..871cd8753f 100644 --- a/po/si.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "වගුව (දත්තගබඩාව.වගුව) වෙතට ගෙන යන්න:" #: libraries/operations.lib.php:732 @@ -9865,7 +9865,7 @@ msgid "Storage Engine" msgstr "ගබඩා යන්ත්‍ර‍" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "වගුව (දත්තගබඩාව.වගුව) වෙතට පිටපත් කරන්න:" #: libraries/operations.lib.php:1010 diff --git a/po/sk.po b/po/sk.po index 1c3383df9b..a9351fba84 100644 --- a/po/sk.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Presunúť tabuľku do (databáza.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.table):" +msgid "Copy table to (database.table)" msgstr "Skopírovať tabuľku do (databáza.tabuľka):" #: libraries/operations.lib.php:1010 diff --git a/po/sl.po b/po/sl.po index 04b45a4001..522990c85d 100644 --- a/po/sl.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Premakni tabelo v (podatkovna_zbirka.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.table):" +msgid "Copy table to (database.table)" msgstr "Kopiraj tabelo v (podatkovna_zbirka.tabela):" #: libraries/operations.lib.php:1010 diff --git a/po/sq.po b/po/sq.po index 5b275e5bdc..fa7e1df69a 100644 --- a/po/sq.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Lëviz tabelën tek (databaza.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.table):" +msgid "Copy table to (database.table)" msgstr "Kopjo tabelën tek (databaza.tabela):" #: libraries/operations.lib.php:1010 diff --git a/po/sr.po b/po/sr.po index dd969bc578..e33edfa745 100644 --- a/po/sr.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Помери табелу у (база.табела):" #: libraries/operations.lib.php:732 @@ -10110,7 +10110,7 @@ msgid "Storage Engine" msgstr "Погон складиштења" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "Копирај табелу у (база.табела):" #: libraries/operations.lib.php:1010 diff --git a/po/sr@latin.po b/po/sr@latin.po index d83b073b0c..d930c78497 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -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.table):" +msgid "Move table to (database.table)" msgstr "Pomeri tabelu u (baza.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.table):" +msgid "Copy table to (database.table)" msgstr "Kopiraj tabelu u (baza.tabela):" #: libraries/operations.lib.php:1010 diff --git a/po/sv.po b/po/sv.po index 911827dddb..86a948c7e2 100644 --- a/po/sv.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Flytta tabellen till (databas.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.table):" +msgid "Copy table to (database.table)" msgstr "Kopiera tabellen till (databas.tabell):" #: libraries/operations.lib.php:1010 diff --git a/po/ta.po b/po/ta.po index adbe8977f7..596c8866ae 100644 --- a/po/ta.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.table)" msgstr "" #: libraries/operations.lib.php:1010 diff --git a/po/te.po b/po/te.po index e000690613..0223039705 100644 --- a/po/te.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.table)" msgstr "" #: libraries/operations.lib.php:1010 diff --git a/po/th.po b/po/th.po index 50f9d78e79..a41c217826 100644 --- a/po/th.po +++ b/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.table):" -msgstr "ย้ายตารางไป (database.table):" +msgid "Move table to (database.table)" +msgstr "ย้ายตารางไป (database.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.table):" +msgid "Copy table to (database.table)" msgstr "คัดลอกตารางไปยัง (ฐานข้อมูล.ตาราง):" #: libraries/operations.lib.php:1010 diff --git a/po/tk.po b/po/tk.po index 996bf5b061..ad60bee3e6 100644 --- a/po/tk.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.table)" msgstr "" #: libraries/operations.lib.php:1010 diff --git a/po/tr.po b/po/tr.po index bf1e247609..8d7149089e 100644 --- a/po/tr.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Tabloyu şuna (veritabanı.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.table):" +msgid "Copy table to (database.table)" msgstr "Tabloyu şuna (veritabanı.tablo) kopyala:" #: libraries/operations.lib.php:1010 diff --git a/po/tt.po b/po/tt.po index 2647ffd20b..07c8e2c014 100644 --- a/po/tt.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Boña küçerü (biremlek.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.table):" +msgid "Copy table to (database.table)" msgstr "Boña kübäyt (biremlek.tüşämä):" #: libraries/operations.lib.php:1010 diff --git a/po/ug.po b/po/ug.po index 263f4613f6..b4e4dc33f8 100644 --- a/po/ug.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.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 "ساندان ئىزاھاتى:" diff --git a/po/uk.po b/po/uk.po index a3c8cc1eb3..ac9035429f 100644 --- a/po/uk.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Перенести таблицю в (база даних.таблиця):" #: libraries/operations.lib.php:732 @@ -9600,7 +9600,7 @@ msgid "Storage Engine" msgstr "Тип таблиць" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "Скопіювати таблицю в (база даних.таблиця):" #: libraries/operations.lib.php:1010 diff --git a/po/ur.po b/po/ur.po index f73bde24e7..e21253edb7 100644 --- a/po/ur.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.table)" msgstr "" #: libraries/operations.lib.php:1010 diff --git a/po/uz.po b/po/uz.po index 9514d32ee4..23460415c8 100644 --- a/po/uz.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "Жадвални (маълумотлар базаси.жадвал) га кўчириш:" #: libraries/operations.lib.php:732 @@ -10825,7 +10825,7 @@ msgid "Storage Engine" msgstr "Жадвал тури" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "Жадвалдан (маълумотлар омбори.жадвал) га нусха кўчириш:" #: libraries/operations.lib.php:1010 diff --git a/po/uz@latin.po b/po/uz@latin.po index f0809052f1..22466e81ea 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -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.table):" +msgid "Move table to (database.table)" msgstr "Jadvalni (ma`lumotlar bazasi.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.table):" +msgid "Copy table to (database.table)" msgstr "Jadvaldan (ma`lumotlar ombori.jadval) ga nusxa ko‘chirish:" #: libraries/operations.lib.php:1010 diff --git a/po/vi.po b/po/vi.po index c92ab0f794..540251e13d 100644 --- a/po/vi.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.table)" msgstr "" #: libraries/operations.lib.php:1010 diff --git a/po/vls.po b/po/vls.po index 1565ea6527..13c248122c 100644 --- a/po/vls.po +++ b/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.table):" +msgid "Move table to (database.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.table):" +msgid "Copy table to (database.table)" msgstr "" #: libraries/operations.lib.php:1010 diff --git a/po/zh_CN.po b/po/zh_CN.po index 54b21eeae0..d84dafee1c 100644 --- a/po/zh_CN.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "将数据表移动到(数据库名.数据表名):" #: libraries/operations.lib.php:732 @@ -9798,7 +9798,7 @@ msgid "Storage Engine" msgstr "存储引擎" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "将数据表复制到(数据库名.数据表名):" #: libraries/operations.lib.php:1010 diff --git a/po/zh_TW.po b/po/zh_TW.po index 0bc3c0f5b0..22f5e7c916 100644 --- a/po/zh_TW.po +++ b/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.table):" +msgid "Move table to (database.table)" msgstr "移動資料表到 (資料庫名.資料表名稱):" #: libraries/operations.lib.php:732 @@ -9314,7 +9314,7 @@ msgid "Storage Engine" msgstr "儲存引擎" #: libraries/operations.lib.php:955 -msgid "Copy table to (database.table):" +msgid "Copy table to (database.table)" msgstr "複製資料表到 (資料庫名稱.資料表名稱):" #: libraries/operations.lib.php:1010 diff --git a/test/selenium/PmaSeleniumDbOperationsTest.php b/test/selenium/PmaSeleniumDbOperationsTest.php index 216b509b90..7feff0ad9c 100644 --- a/test/selenium/PmaSeleniumDbOperationsTest.php +++ b/test/selenium/PmaSeleniumDbOperationsTest.php @@ -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')]" ); }