From 1a046d4d3ad6dda38530cdb04a2cb41d6f643db8 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 19 Jan 2016 13:42:40 +0100 Subject: [PATCH 01/10] Translated using Weblate (French) Currently translated at 100.0% (3210 of 3210 strings) [CI skip] --- po/fr.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/fr.po b/po/fr.po index b80ee65ad8..77d238b0de 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2016-01-14 09:16+0100\n" -"PO-Revision-Date: 2016-01-17 13:37+0000\n" +"PO-Revision-Date: 2016-01-19 13:42+0000\n" "Last-Translator: Marc Delisle \n" "Language-Team: French " "\n" @@ -5587,7 +5587,7 @@ msgstr "Secret Blowfish" #: libraries/config/messages.inc.php:40 msgid "Highlight selected rows." -msgstr "Utilisé quand on clique sur une ligne." +msgstr "Mettre en surbrillance les lignes sélectionnées." #: libraries/config/messages.inc.php:41 msgid "Row marker" @@ -5619,7 +5619,7 @@ msgid "" "columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/" "kbd] - allows newlines in columns." msgstr "" -"Déterminer la méthode d'édition pour les colonnes CHAR et VARCHAR; " +"Détermine la méthode d'édition pour les colonnes CHAR et VARCHAR; " "[kbd]input[/kbd] - permet de limiter la taille, [kbd]textarea[/kbd] - permet " "la saisie de sauts de lignes." From 47798a60e4209233b3252de94c4832d934597ada Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 22 Jan 2016 09:31:44 +0100 Subject: [PATCH 02/10] Show more used PHP extensions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This helps user to see what features are available. Issue #11874 Signed-off-by: Michal Čihař --- ChangeLog | 1 + index.php | 12 ++++++------ libraries/Util.php | 25 +++++++++++++++++++++++++ 3 files changed, 32 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 12d656d6df..f26b4052cb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -34,6 +34,7 @@ phpMyAdmin - ChangeLog + issue #11796 Use modals for displaying forms in db structure page + issue #11789 Show MySQL error messages in user language + issue Add 'ssl_verify' configuration directive for self-signed certificates with mysqlnd and PHP >= 5.6 ++ issue #11874 Show more used PHP extensions 4.5.5.0 (not yet released) - issue Undefined index: is_ajax_request diff --git a/index.php b/index.php index 14a6832ac2..4aa97dbc57 100644 --- a/index.php +++ b/index.php @@ -335,13 +335,13 @@ if ($GLOBALS['cfg']['ShowServerInfo'] || $GLOBALS['cfg']['ShowPhpInfo']) { ); $php_ext_string = __('PHP extension:') . ' '; - if (PMA\libraries\DatabaseInterface::checkDbExtension('mysqli')) { - $extension = 'mysqli'; - } else { - $extension = 'mysql'; + + $extensions = PMA\libraries\Util::listPHPExtensions(); + + foreach ($extensions as $extension) { + $php_ext_string .= ' ' . $extension + . PMA\libraries\Util::showPHPDocu('book.' . $extension . '.php'); } - $php_ext_string .= $extension . ' ' - . PMA\libraries\Util::showPHPDocu('book.' . $extension . '.php'); PMA_printListItem( $php_ext_string, diff --git a/libraries/Util.php b/libraries/Util.php index 9140127e27..cb3557124b 100644 --- a/libraries/Util.php +++ b/libraries/Util.php @@ -4957,5 +4957,30 @@ class Util } return $tables; } + + /** + * Returs list of used PHP extensions. + * + * @return array of strings + */ + public static function listPHPExtensions() + { + $result = array(); + if (DatabaseInterface::checkDbExtension('mysqli')) { + $result[] = 'mysqli'; + } else { + $result[] = 'mysql'; + } + + if (extension_loaded('curl')) { + $result[] = 'curl'; + } + + if (extension_loaded('mbstring')) { + $result[] = 'mbstring'; + } + + return $result; + } } From 28055b83e7ae152541d541a510bfe84efd59dd86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 22 Jan 2016 09:33:10 +0100 Subject: [PATCH 03/10] We no longer do cross site javascript request MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove condition to disable version check on IE, it no loger makes sense as we do the check server side. Signed-off-by: Michal Čihař --- index.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/index.php b/index.php index 4aa97dbc57..d714257b43 100644 --- a/index.php +++ b/index.php @@ -374,11 +374,7 @@ echo '
'; echo '

phpMyAdmin

'; echo '
    '; $class = null; -// We rely on CSP to allow access to http://www.phpmyadmin.net, but IE lacks -// support here and does not allow request to http once using https. -if ($GLOBALS['cfg']['VersionCheck'] - && (! $GLOBALS['PMA_Config']->get('is_https') || PMA_USR_BROWSER_AGENT != 'IE') -) { +if ($GLOBALS['cfg']['VersionCheck']) { $class = 'jsversioncheck'; } PMA_printListItem( From b1ac8170fd251a4c007fd9ea3fface38adb1bb2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 22 Jan 2016 09:37:09 +0100 Subject: [PATCH 04/10] Show warning in version check and error reporting are not available MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When curl is missing and allow_url_fopen is disabled, we can not access remote files. Fixes #11874 Signed-off-by: Michal Čihař --- ChangeLog | 1 + index.php | 13 +++++++++++++ 2 files changed, 14 insertions(+) diff --git a/ChangeLog b/ChangeLog index f26b4052cb..5d1dd5f6af 100644 --- a/ChangeLog +++ b/ChangeLog @@ -35,6 +35,7 @@ phpMyAdmin - ChangeLog + issue #11789 Show MySQL error messages in user language + issue Add 'ssl_verify' configuration directive for self-signed certificates with mysqlnd and PHP >= 5.6 + issue #11874 Show more used PHP extensions +- issue #11874 Report when version check and error reporting are disabled 4.5.5.0 (not yet released) - issue Undefined index: is_ajax_request diff --git a/index.php b/index.php index d714257b43..a1cc7799fe 100644 --- a/index.php +++ b/index.php @@ -475,6 +475,19 @@ if (! @extension_loaded('mbstring')) { ); } +/** + * Missing functionality + */ +if (! extension_loaded('curl') && ! ini_get('allow_url_fopen')) { + trigger_error( + __( + 'The curl extension was not found and allow_url_fopen is ' + . 'disabled. Due to this some features such as error reporting ' + . 'or version check are disabled.' + ) + ); +} + if ($cfg['LoginCookieValidityDisableWarning'] == false) { /** * Check whether session.gc_maxlifetime limits session validity. From 3bd0971db7da6d5f8f7127562261302ce16b6d16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 22 Jan 2016 09:42:54 +0100 Subject: [PATCH 05/10] Validate version information before further processing it Do basic sanity checking before we return the value further. This can especially happen in case the curl/allow_url_fopen is missing. Fixes #11874 --- ChangeLog | 1 + libraries/VersionInformation.php | 16 +++++++++++----- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index a827292689..743183a2f7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,7 @@ phpMyAdmin - ChangeLog 4.5.5.0 (not yet released) - issue Undefined index: is_ajax_request - issue #11855 Fix password change on MariaDB 10.1 and newer +- issue #11874 Validate version information before further processing it 4.5.4.0 (not yet released) - issue #11724 live data edit of big sets is not working diff --git a/libraries/VersionInformation.php b/libraries/VersionInformation.php index e889b9c683..3821c7c834 100644 --- a/libraries/VersionInformation.php +++ b/libraries/VersionInformation.php @@ -87,13 +87,19 @@ class VersionInformation } } + /* Parse response */ $data = json_decode($response); - if (is_object($data) - && ! empty($data->version) - && ! empty($data->releases) - && ! empty($data->date) - && $save + + /* Basic sanity checking */ + if (! is_object($data) + || empty($data->version) + || empty($data->releases) + || empty($data->date) ) { + return null; + } + + if ($save) { if (! isset($_SESSION) && ! defined('TESTSUITE')) { ini_set('session.use_only_cookies', 'false'); ini_set('session.use_cookies', 'false'); From 38e511dc4782e2cc420be9a6a99857a945bb8d9f Mon Sep 17 00:00:00 2001 From: Martin Lacina Date: Tue, 19 Jan 2016 21:35:14 +0100 Subject: [PATCH 06/10] Translated using Weblate (Slovak) Currently translated at 84.1% (2701 of 3210 strings) [CI skip] --- po/sk.po | 29 ++++++++++++----------------- 1 file changed, 12 insertions(+), 17 deletions(-) diff --git a/po/sk.po b/po/sk.po index 009c14df80..89a7446150 100644 --- a/po/sk.po +++ b/po/sk.po @@ -4,10 +4,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.5.4-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2016-01-14 09:16+0100\n" -"PO-Revision-Date: 2016-01-10 22:29+0000\n" +"PO-Revision-Date: 2016-01-19 21:35+0000\n" "Last-Translator: Martin Lacina \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak " +"\n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -10971,10 +10971,9 @@ msgid "Managing Central list of columns" msgstr "" #: libraries/relation.lib.php:332 -#, fuzzy #| msgid "Remember table's sorting" msgid "Remembering Designer Settings" -msgstr "Pamätať si triedenie tabuľky" +msgstr "Pamätať si nastavenia Dizajnéra" #: libraries/relation.lib.php:343 msgid "Saving export templates" @@ -13619,10 +13618,9 @@ msgid "The new name of the table was expected." msgstr "Bolo očakávané nové meno tabuľky." #: libraries/sql-parser/src/Components/RenameOperation.php:148 -#, fuzzy #| msgid "The row has been deleted." msgid "A rename operation was expected." -msgstr "Riadok bol zmazaný." +msgstr "Očakávala sa operácia premenovania." #: libraries/sql-parser/src/Lexer.php:267 msgid "Unexpected character." @@ -13644,10 +13642,9 @@ msgid "Ending quote %1$s was expected." msgstr "Udalosť %1$s bola vytvorená." #: libraries/sql-parser/src/Lexer.php:824 -#, fuzzy #| msgid "Table name template" msgid "Variable name was expected." -msgstr "Vzor pre názov tabuľky" +msgstr "Očakávalo sa meno premennej." #: libraries/sql-parser/src/Parser.php:417 msgid "Unexpected beginning of statement." @@ -13687,10 +13684,9 @@ msgid "The name of the entity was expected." msgstr "Počet práve otvorených tabuliek." #: libraries/sql-parser/src/Statements/CreateStatement.php:370 -#, fuzzy #| msgid "The row has been deleted." msgid "At least one column definition was expected." -msgstr "Riadok bol zmazaný." +msgstr "Očakávala sa aspoň jedna definícia stĺpca." #: libraries/sql-parser/src/Statements/CreateStatement.php:481 msgid "A \"RETURNS\" keyword was expected." @@ -14184,10 +14180,11 @@ msgid "Not enough privilege to view status variables." msgstr "" #: server_variables.php:83 -#, fuzzy, php-format +#, php-format #| msgid "Server variables and settings" msgid "Not enough privilege to view server variables and settings. %s" -msgstr "Premenné a nastavenia serveru" +msgstr "" +"Nedostatočné oprávnenia na zobrazenie premenných a nastavení servera. %s" #: setup/frames/config.inc.php:41 setup/frames/index.inc.php:278 msgid "Download" @@ -14545,10 +14542,9 @@ msgid "Operator" msgstr "Operátor" #: templates/database/designer/database_tables.phtml:29 -#, fuzzy #| msgid "Move columns" msgid "Show/hide columns" -msgstr "Presunúť stĺpce" +msgstr "Zobraziť/skryť stĺpce" #: templates/database/designer/database_tables.phtml:40 msgid "See table structure" @@ -15153,10 +15149,9 @@ msgstr "na začiatku tabuľky" #: templates/table/structure/display_partitions.phtml:3 #: templates/table/structure/display_structure.phtml:195 -#, fuzzy #| msgid "Position" msgid "Partitions" -msgstr "Pozícia" +msgstr "Oddiely" #: templates/table/structure/display_partitions.phtml:7 msgid "Partitioned by:" From 3307d1b5f771e7ea7812ad615ff1d99e93c0dd84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 22 Jan 2016 10:12:49 +0100 Subject: [PATCH 07/10] Translated using Weblate (Vietnamese) Currently translated at 85.9% (2759 of 3210 strings) [CI skip] --- po/vi.po | 90 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/po/vi.po b/po/vi.po index 15637a7e7e..880cdb9b71 100644 --- a/po/vi.po +++ b/po/vi.po @@ -8,10 +8,10 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.5.4-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2016-01-14 09:16+0100\n" -"PO-Revision-Date: 2016-01-13 15:59+0000\n" +"PO-Revision-Date: 2016-01-22 10:12+0000\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Vietnamese \n" +"Language-Team: Vietnamese " +"\n" "Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +30,7 @@ msgstr "" #: db_central_columns.php:105 msgid "The central list of columns for the current database is empty." -msgstr "Danh sách các cột trong CSDL hiện thời trống." +msgstr "Danh sách các cột trong Cơ sở dữ liệu hiện tại trống." #: db_central_columns.php:130 msgid "Click to sort." @@ -39,22 +39,22 @@ msgstr "Nhấn vào để sắp xếp." #: db_central_columns.php:149 #, php-format msgid "Showing rows %1$s - %2$s." -msgstr "Hiển thị các bản ghi từ %1$s tới %2$s." +msgstr "Hiển thị các hàng %1$s - %2$s." #: db_create.php:61 #, php-format msgid "Database %1$s has been created." -msgstr "Database %1$s đã được tạo." +msgstr "Cơ sở dữ liệu %1$s đã được tạo ra." #: db_datadict.php:58 libraries/operations.lib.php:33 msgid "Database comment" -msgstr "Chú thích của Database" +msgstr "Chú thích của cơ sở dữ liệu" #: db_datadict.php:105 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:966 #: templates/columns_definitions/column_definitions_form.phtml:79 msgid "Table comments:" -msgstr "Các chú thích của Bảng:" +msgstr "Chú thích của bảng:" #: db_datadict.php:114 libraries/Index.class.php:699 #: libraries/insert_edit.lib.php:1565 @@ -80,7 +80,7 @@ msgstr "Các chú thích của Bảng:" #: templates/table/search/table_header.phtml:6 #: templates/table/search/zoom_result_form.phtml:33 msgid "Column" -msgstr "Trường" +msgstr "Cột" #: db_datadict.php:115 libraries/Index.class.php:696 #: libraries/central_columns.lib.php:697 libraries/central_columns.lib.php:1383 @@ -168,7 +168,7 @@ msgstr "Liên kết tới" #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:1029 #: templates/columns_definitions/table_fields_definitions.phtml:65 msgid "Comments" -msgstr "Chú thích" +msgstr "Ghi chú" #: db_datadict.php:156 #: libraries/controllers/TableStructureController.class.php:968 @@ -178,7 +178,7 @@ msgstr "Chú thích" #: templates/table/structure/check_all_table_column.phtml:22 #: templates/table/structure/display_structure.phtml:75 msgid "Primary" -msgstr "Khóa Chính" +msgstr "Chính" #: db_datadict.php:166 js/messages.php:318 libraries/Index.class.php:567 #: libraries/Index.class.php:606 libraries/Index.class.php:1021 @@ -238,14 +238,14 @@ msgstr "Có" #: db_export.php:44 msgid "View dump (schema) of database" -msgstr "Xem cấu trúc (lược đồ) của CSDL" +msgstr "Xem phần đổ (lược đồ) của cơ sở dữ liệu" #: db_export.php:48 db_tracking.php:101 export.php:381 #: libraries/DBQbe.class.php:326 #: libraries/controllers/DatabaseStructureController.class.php:180 #: libraries/navigation/NavigationTree.class.php:898 msgid "No tables found in database." -msgstr "Không có bảng nào trong CSDL." +msgstr "Không tìm thấy bảng nào trong cơ sở dữ liệu" #: db_export.php:62 libraries/ServerStatusData.class.php:129 #: libraries/build_html_for_db.lib.php:28 libraries/config/messages.inc.php:276 @@ -254,7 +254,7 @@ msgstr "Không có bảng nào trong CSDL." #: libraries/plugins/export/ExportXml.class.php:120 #: templates/database/structure/show_create.phtml:19 msgid "Tables" -msgstr "Bảng" +msgstr "Các bảng" #: db_export.php:63 libraries/Menu.class.php:320 libraries/Menu.class.php:428 #: libraries/Util.class.php:3350 libraries/Util.class.php:3360 @@ -296,17 +296,17 @@ msgstr "Chọn tất cả" #: db_operations.php:53 tbl_create.php:24 msgid "The database name is empty!" -msgstr "Tên cơ sở dữ liệu trống!" +msgstr "Tên cơ sở dữ liệu bị trống!" #: db_operations.php:141 #, php-format msgid "Database %1$s has been renamed to %2$s." -msgstr "CSDL %1$s đã được đổi tên thành %2$s." +msgstr "Cơ sở dữ liệu %1$s đã được đổi tên thành %2$s." #: db_operations.php:153 #, php-format msgid "Database %1$s has been copied to %2$s." -msgstr "CSDL %1$s đã được sao chép sang %2$s." +msgstr "Cơ sở dữ liệu %1$s đã được sao chép sang %2$s." #: db_operations.php:283 #, php-format @@ -316,23 +316,23 @@ msgstr "Cấu hình phpMyAdmin đã bị vô hiệu hóa. %sTìm hiểu lý do%s #: db_qbe.php:129 msgid "You have to choose at least one column to display!" -msgstr "Bạn phải chọn ít nhất 1 trường để hiển thị!" +msgstr "Bạn cần phải chỉ ra ít một cột cần hiển thị!" #: db_qbe.php:146 #, php-format msgid "Switch to %svisual builder%s" -msgstr "Chuyển sang chế độ %svisual builder%s" +msgstr "Chuyển sang %sbộ xây dựng trực quan%s" #: db_search.php:30 libraries/plugins/AuthenticationPlugin.class.php:70 #: libraries/plugins/auth/AuthenticationConfig.class.php:103 #: libraries/plugins/auth/AuthenticationConfig.class.php:118 #: libraries/plugins/auth/AuthenticationHttp.class.php:91 msgid "Access denied!" -msgstr "Truy cập bị từ chối!" +msgstr "Không đủ thẩm quyền!" #: db_tracking.php:51 db_tracking.php:76 msgid "Tracking data deleted successfully." -msgstr "Các dữ liệu theo dõi đã được xoá." +msgstr "Các dữ liệu theo dõi đã được xóa thành công." #: db_tracking.php:60 #, php-format @@ -346,7 +346,7 @@ msgstr "Chưa có bảng nào được chọn." #: db_tracking.php:145 msgid "Database Log" -msgstr "Database Log" +msgstr "Nhật ký Cơ sở dữ liệu" #: error_report.php:68 msgid "" @@ -376,19 +376,19 @@ msgstr "" #: error_report.php:85 msgid "You may want to refresh the page." -msgstr "Bạn cần làm mới lại trang." +msgstr "Bạn có lẽ nên làm tươi trang này lại." #: export.php:188 schema_export.php:61 msgid "Bad type!" -msgstr "Kiểu dữ liệu không phù hợp!" +msgstr "Sai kiểu!" #: export.php:275 msgid "Bad parameters!" -msgstr "Tham số không đúng!" +msgstr "Tham số sai!" #: file_echo.php:22 msgid "Invalid export type" -msgstr "Sai kiểu tập tin xuất" +msgstr "Kiểu xuất ra không hợp lệ" #: gis_data_editor.php:118 #, php-format @@ -412,7 +412,7 @@ msgstr "Hình dạng %d:" #: gis_data_editor.php:213 msgid "Point:" -msgstr "Điểm:" +msgstr "Tọa độ:" #: gis_data_editor.php:214 gis_data_editor.php:241 gis_data_editor.php:297 #: gis_data_editor.php:370 js/messages.php:434 @@ -1498,7 +1498,7 @@ msgstr "Xuất vùng chọn:" #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 #: libraries/tracking.lib.php:1620 msgid "Status" -msgstr "Trạng thái" +msgstr "Tình trạng" #: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 @@ -2793,7 +2793,7 @@ msgstr "calendar-month-year" #: js/messages.php:751 msgctxt "Year suffix" msgid "none" -msgstr "none" +msgstr "Không" #: js/messages.php:763 msgid "Hour" @@ -2995,7 +2995,7 @@ msgstr "Truy vấn lại" #: templates/table/relation/foreign_key_row.phtml:165 #: templates/table/relation/internal_relational_row.phtml:55 msgid "Database" -msgstr "CSDL" +msgstr "Cơ sở dữ liệu" #: libraries/Console.class.php:100 #, php-format @@ -4736,7 +4736,7 @@ msgstr "Dùng giá trị này" #: templates/table/structure/display_partitions.phtml:24 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" -msgstr "Bản ghi" +msgstr "Hàng" #: libraries/build_html_for_db.lib.php:48 libraries/engines/innodb.lib.php:180 #: libraries/server_databases.lib.php:173 libraries/server_status.lib.php:195 @@ -9017,7 +9017,7 @@ msgstr "Trình bày:" #: libraries/navigation/Navigation.class.php:219 libraries/tracking.lib.php:281 #: libraries/tracking.lib.php:1622 tbl_change.php:160 msgid "Show" -msgstr "Hiển thị" +msgstr "Hiện" #: libraries/navigation/NavigationHeader.class.php:162 msgid "Home" @@ -10167,22 +10167,22 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:1395 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:973 msgid "Creation:" -msgstr "Khởi tạo:" +msgstr "Tạo:" #: libraries/plugins/export/ExportSql.class.php:1408 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:980 msgid "Last update:" -msgstr "Lần sửa đối cuối:" +msgstr "Cập nhật lần cuối:" #: libraries/plugins/export/ExportSql.class.php:1421 #: libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php:987 msgid "Last check:" -msgstr "Lần cuối kiểm tra:" +msgstr "Lần kiểm tra cuối:" #: libraries/plugins/export/ExportSql.class.php:1471 #: templates/database/structure/structure_table_row.phtml:183 msgid "in use" -msgstr "Thông dụng" +msgstr "đang dùng" #: libraries/plugins/export/ExportSql.class.php:1516 msgid "It appears your database uses views;" @@ -13530,11 +13530,11 @@ msgstr "Ngưng hoạt động ngay" #: libraries/tracking.lib.php:277 libraries/tracking.lib.php:1618 msgid "Created" -msgstr "Đã tạo" +msgstr "Đã được tạo" #: libraries/tracking.lib.php:278 libraries/tracking.lib.php:1619 msgid "Updated" -msgstr "Đã cập nhật" +msgstr "Đã được cập nhật" #: libraries/tracking.lib.php:288 libraries/tracking.lib.php:351 msgid "Delete version" @@ -13548,17 +13548,17 @@ msgstr "Báo cáo theo dõi" #: libraries/tracking.lib.php:290 libraries/tracking.lib.php:827 #: libraries/tracking.lib.php:1633 msgid "Structure snapshot" -msgstr "Cấu trúc ảnh chụp" +msgstr "Chụp cấu trúc" #: libraries/tracking.lib.php:417 libraries/tracking.lib.php:1443 #: libraries/tracking.lib.php:1730 msgid "active" -msgstr "Kích hoạt" +msgstr "tích cực" #: libraries/tracking.lib.php:419 libraries/tracking.lib.php:1445 #: libraries/tracking.lib.php:1725 msgid "not active" -msgstr "Chưa kích hoạt" +msgstr "không hoạt động" #: libraries/tracking.lib.php:461 msgid "Tracking statements" @@ -13677,20 +13677,20 @@ msgstr "Phiên bản %1$s đã được tạo, việc theo dõi %2$s đang hoạ #: libraries/tracking.lib.php:1464 msgid "Untracked tables" -msgstr "Những bảng chưa theo dõi" +msgstr "Các bảng chưa được theo dõi" #: libraries/tracking.lib.php:1493 libraries/tracking.lib.php:1517 #: templates/table/structure/optional_action_links.phtml:18 msgid "Track table" -msgstr "Theo dõi bảng" +msgstr "Bảng theo dõi" #: libraries/tracking.lib.php:1605 msgid "Tracked tables" -msgstr "Các bảng đã theo dõi" +msgstr "Các bảng được theo dõi" #: libraries/tracking.lib.php:1617 msgid "Last version" -msgstr " " +msgstr "Phiên bản cuối" #: libraries/tracking.lib.php:1630 libraries/tracking.lib.php:1704 msgid "Delete tracking" From 0a7fc9770e4f8a359db1881232dff11f4d4568a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 22 Jan 2016 10:17:29 +0100 Subject: [PATCH 08/10] Remove trailing space from a string MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- libraries/relation.lib.php | 3 ++- po/af.po | 2 +- po/ar.po | 2 +- po/az.po | 2 +- po/be.po | 2 +- po/be@latin.po | 2 +- po/bg.po | 2 +- po/bn.po | 2 +- po/br.po | 2 +- po/bs.po | 2 +- po/ca.po | 2 +- po/ckb.po | 2 +- po/cs.po | 2 +- po/cy.po | 2 +- po/da.po | 2 +- po/de.po | 2 +- po/el.po | 2 +- po/en_GB.po | 2 +- po/eo.po | 2 +- po/es.po | 2 +- po/et.po | 2 +- po/eu.po | 2 +- po/fa.po | 2 +- po/fi.po | 2 +- po/fr.po | 2 +- po/fy.po | 2 +- po/gl.po | 2 +- po/he.po | 2 +- po/hi.po | 2 +- po/hr.po | 2 +- po/hu.po | 2 +- po/hy.po | 2 +- po/ia.po | 2 +- po/id.po | 2 +- po/it.po | 2 +- po/ja.po | 2 +- po/ka.po | 2 +- po/kk.po | 2 +- po/km.po | 2 +- po/kn.po | 2 +- po/ko.po | 2 +- po/ksh.po | 2 +- po/ky.po | 2 +- po/li.po | 2 +- po/lt.po | 2 +- po/lv.po | 2 +- po/mk.po | 2 +- po/ml.po | 2 +- po/mn.po | 2 +- po/ms.po | 2 +- po/nb.po | 2 +- po/ne.po | 2 +- po/nl.po | 2 +- po/pa.po | 2 +- po/pl.po | 2 +- po/pt.po | 2 +- po/pt_BR.po | 2 +- po/ro.po | 2 +- po/ru.po | 2 +- po/si.po | 2 +- po/sk.po | 2 +- po/sl.po | 2 +- po/sq.po | 2 +- po/sr.po | 2 +- po/sr@latin.po | 2 +- po/sv.po | 2 +- po/ta.po | 2 +- po/te.po | 2 +- po/th.po | 2 +- po/tk.po | 2 +- po/tr.po | 2 +- po/tt.po | 2 +- po/ug.po | 2 +- po/uk.po | 2 +- po/ur.po | 2 +- po/uz.po | 2 +- po/uz@latin.po | 2 +- po/vi.po | 2 +- po/vls.po | 2 +- po/zh_CN.po | 2 +- po/zh_TW.po | 2 +- 81 files changed, 82 insertions(+), 81 deletions(-) diff --git a/libraries/relation.lib.php b/libraries/relation.lib.php index 6574b77c7b..802571e6de 100644 --- a/libraries/relation.lib.php +++ b/libraries/relation.lib.php @@ -97,7 +97,8 @@ function PMA_getRelationsParamDiagnostic($cfgRelation) $messages['disabled'] = '' . __('Disabled') . ''; if (empty($cfgRelation['db'])) { - $retval .= __('Configuration of pmadb… ') + $retval .= __('Configuration of pmadb…') + . ' ' . $messages['error'] . PMA_Util::showDocu('setup', 'linked-tables') . '
    ' . "\n" diff --git a/po/af.po b/po/af.po index 4490c55b05..b4044a9095 100644 --- a/po/af.po +++ b/po/af.po @@ -11360,7 +11360,7 @@ msgstr "Beskikbaar" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Veranderinge is gestoor" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/ar.po b/po/ar.po index ddc4bcb373..ba0f1d7e49 100644 --- a/po/ar.po +++ b/po/ar.po @@ -11605,7 +11605,7 @@ msgstr "مفعل" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "تمت التعديلات" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/az.po b/po/az.po index 2b39ad6af0..af5165a41a 100644 --- a/po/az.po +++ b/po/az.po @@ -10945,7 +10945,7 @@ msgstr "" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfiqurasiya yaddaşa verildi." #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/be.po b/po/be.po index 4350e51a05..3eaaaa3ff4 100644 --- a/po/be.po +++ b/po/be.po @@ -11917,7 +11917,7 @@ msgstr "Уключана" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Мадыфікацыі былі захаваныя" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/be@latin.po b/po/be@latin.po index 1cbfbe8f1b..840fb6bb8f 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -11986,7 +11986,7 @@ msgstr "Uklučana" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Madyfikacyi byli zachavanyja" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/bg.po b/po/bg.po index 75fb6acbb8..14dd9e3e44 100644 --- a/po/bg.po +++ b/po/bg.po @@ -11570,7 +11570,7 @@ msgstr "Позволено" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Конфигурацията запазена." #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/bn.po b/po/bn.po index 0c379d8ecb..1d236ebb89 100644 --- a/po/bn.po +++ b/po/bn.po @@ -11598,7 +11598,7 @@ msgstr "কার্যকর" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "কনফিগারেশন সংরক্ষন করা হয়েছে।" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/br.po b/po/br.po index 6c2ff6ed16..762dbaf562 100644 --- a/po/br.po +++ b/po/br.po @@ -11574,7 +11574,7 @@ msgstr "" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Configuration file" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Restr gefluniañ" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/bs.po b/po/bs.po index 4d659c5059..738db9cee4 100644 --- a/po/bs.po +++ b/po/bs.po @@ -11560,7 +11560,7 @@ msgstr "Omogućeno" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Izmjene su sačuvane" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/ca.po b/po/ca.po index 63419151eb..ccb1e87073 100644 --- a/po/ca.po +++ b/po/ca.po @@ -11194,7 +11194,7 @@ msgid "Enabled" msgstr "Activat" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Configuració de pmadb... " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/ckb.po b/po/ckb.po index 77f5226454..3007f49e92 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -11012,7 +11012,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/cs.po b/po/cs.po index 7fd7a27594..ea3550cd8d 100644 --- a/po/cs.po +++ b/po/cs.po @@ -11062,7 +11062,7 @@ msgid "Enabled" msgstr "Zapnuto" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfigurace pmadb... " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/cy.po b/po/cy.po index 9a2255be28..a5e09b0ecb 100644 --- a/po/cy.po +++ b/po/cy.po @@ -11669,7 +11669,7 @@ msgstr "" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Cafodd yr addasiadau eu cadw" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/da.po b/po/da.po index 374b4bb633..5d3e2df3c1 100644 --- a/po/da.po +++ b/po/da.po @@ -11262,7 +11262,7 @@ msgid "Enabled" msgstr "Slået til" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfiguration af pmadb … " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/de.po b/po/de.po index 4be9326ff1..26cecbd004 100644 --- a/po/de.po +++ b/po/de.po @@ -11303,7 +11303,7 @@ msgid "Enabled" msgstr "Aktiviert" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfiguration des pmadb... " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/el.po b/po/el.po index 24bc0dfc09..2168567850 100644 --- a/po/el.po +++ b/po/el.po @@ -11262,7 +11262,7 @@ msgid "Enabled" msgstr "Ενεργοποιημένη" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Ρύθμιση της pmadb… " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/en_GB.po b/po/en_GB.po index 05d9abf9c0..7b7018e294 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -11596,7 +11596,7 @@ msgstr "Enabled" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Configuration saved." #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/eo.po b/po/eo.po index a5a11e18d8..be79851aa2 100644 --- a/po/eo.po +++ b/po/eo.po @@ -10383,7 +10383,7 @@ msgid "Enabled" msgstr "Ŝaltita" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/es.po b/po/es.po index 95d72ffb33..ba11cce999 100644 --- a/po/es.po +++ b/po/es.po @@ -11300,7 +11300,7 @@ msgid "Enabled" msgstr "Habilitado" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Configuración de pmadb… " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/et.po b/po/et.po index 33899e34a0..18f4ebe467 100644 --- a/po/et.po +++ b/po/et.po @@ -11060,7 +11060,7 @@ msgid "Enabled" msgstr "Lubatud" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "pmadb seadistus... " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/eu.po b/po/eu.po index 5bfd76f629..395ac91f29 100644 --- a/po/eu.po +++ b/po/eu.po @@ -11584,7 +11584,7 @@ msgstr "Gaituta" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Aldaketak gorde dira" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/fa.po b/po/fa.po index 403a1b291e..bd2817abe6 100644 --- a/po/fa.po +++ b/po/fa.po @@ -11480,7 +11480,7 @@ msgstr "فعال" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "اصلاحات ذخيره گرديد" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/fi.po b/po/fi.po index beb7686443..08566b4e42 100644 --- a/po/fi.po +++ b/po/fi.po @@ -11362,7 +11362,7 @@ msgstr "Päällä" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Asetukset tallennettu." #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/fr.po b/po/fr.po index 77d238b0de..960f6348db 100644 --- a/po/fr.po +++ b/po/fr.po @@ -11263,7 +11263,7 @@ msgid "Enabled" msgstr "Activé" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Configuration de pmadb… " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/fy.po b/po/fy.po index 84f543ef48..8859588e32 100644 --- a/po/fy.po +++ b/po/fy.po @@ -10544,7 +10544,7 @@ msgid "Enabled" msgstr "Ynskeakele" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/gl.po b/po/gl.po index fa6f7b571f..ce5e3cbcce 100644 --- a/po/gl.po +++ b/po/gl.po @@ -11431,7 +11431,7 @@ msgstr "Activado" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Configuración gardada." #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/he.po b/po/he.po index c974c9bfe0..7e94b8fbc9 100644 --- a/po/he.po +++ b/po/he.po @@ -11539,7 +11539,7 @@ msgstr "מופעל" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "שינויים נשמרו" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/hi.po b/po/hi.po index 1a70571b1f..013229d7fe 100644 --- a/po/hi.po +++ b/po/hi.po @@ -11836,7 +11836,7 @@ msgstr "सक्षम" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Configuration storage" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "विन्यास भंडारण" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/hr.po b/po/hr.po index ade645881a..d5e8fc8d17 100644 --- a/po/hr.po +++ b/po/hr.po @@ -11944,7 +11944,7 @@ msgstr "Omogućeno" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Izmjene su spremljene" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/hu.po b/po/hu.po index 06e053f6fc..f5d58b449a 100644 --- a/po/hu.po +++ b/po/hu.po @@ -11294,7 +11294,7 @@ msgid "Enabled" msgstr "Engedélyezett" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "A pmadb beállítása… " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/hy.po b/po/hy.po index ce4d72ad2a..b9d32f927e 100644 --- a/po/hy.po +++ b/po/hy.po @@ -10668,7 +10668,7 @@ msgid "Enabled" msgstr "Առկա" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/ia.po b/po/ia.po index 44854ed11a..a30f0deea4 100644 --- a/po/ia.po +++ b/po/ia.po @@ -11178,7 +11178,7 @@ msgid "Enabled" msgstr "Habilitate" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Configuration de pmadb... " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/id.po b/po/id.po index 83c8a63eb4..fd0dff5310 100644 --- a/po/id.po +++ b/po/id.po @@ -11845,7 +11845,7 @@ msgid "Enabled" msgstr "Aktif" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfigurasi pmadb … " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/it.po b/po/it.po index 2c643709bf..712407b848 100644 --- a/po/it.po +++ b/po/it.po @@ -11286,7 +11286,7 @@ msgid "Enabled" msgstr "Abilitata" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Configurazione di pmadb... " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/ja.po b/po/ja.po index 68cde47ecf..696244da25 100644 --- a/po/ja.po +++ b/po/ja.po @@ -12150,7 +12150,7 @@ msgstr "有効" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "設定を保存しました。" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/ka.po b/po/ka.po index 1fd7788497..c44eff911b 100644 --- a/po/ka.po +++ b/po/ka.po @@ -12019,7 +12019,7 @@ msgstr "ჩართულია" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Configuration file" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "კონფიგურაციის ფაილი" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/kk.po b/po/kk.po index 026d763299..c97d4e5df8 100644 --- a/po/kk.po +++ b/po/kk.po @@ -11006,7 +11006,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/km.po b/po/km.po index a9887f85d5..43603cf72a 100644 --- a/po/km.po +++ b/po/km.po @@ -10632,7 +10632,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/kn.po b/po/kn.po index a4812cbcce..2b81e7aae5 100644 --- a/po/kn.po +++ b/po/kn.po @@ -10395,7 +10395,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/ko.po b/po/ko.po index c26b6ab400..c5cc580674 100644 --- a/po/ko.po +++ b/po/ko.po @@ -10965,7 +10965,7 @@ msgstr "사용가능" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "수정된 내용이 저장되었습니다." #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/ksh.po b/po/ksh.po index 4b78c59a2c..5f54248db8 100644 --- a/po/ksh.po +++ b/po/ksh.po @@ -10461,7 +10461,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/ky.po b/po/ky.po index d2baa4895a..921ffaf5c5 100644 --- a/po/ky.po +++ b/po/ky.po @@ -10529,7 +10529,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/li.po b/po/li.po index e4bb262b1f..b62a74801c 100644 --- a/po/li.po +++ b/po/li.po @@ -10382,7 +10382,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/lt.po b/po/lt.po index 0d20040001..85570737d2 100644 --- a/po/lt.po +++ b/po/lt.po @@ -12126,7 +12126,7 @@ msgstr "Įjungta" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfigūracija išsaugota." #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/lv.po b/po/lv.po index de566c401e..e9f8d2351a 100644 --- a/po/lv.po +++ b/po/lv.po @@ -11572,7 +11572,7 @@ msgstr "Ieslēgts" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Labojumi tika saglabāti" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/mk.po b/po/mk.po index b2ce6facd6..24bccedc49 100644 --- a/po/mk.po +++ b/po/mk.po @@ -11697,7 +11697,7 @@ msgstr "Овозможено" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Измените се сочувани" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/ml.po b/po/ml.po index 3c2aefa5e1..fb6dc38ce7 100644 --- a/po/ml.po +++ b/po/ml.po @@ -10675,7 +10675,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/mn.po b/po/mn.po index 886a4f26a6..29906fb364 100644 --- a/po/mn.po +++ b/po/mn.po @@ -11783,7 +11783,7 @@ msgstr "Нээлттэй" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Өөрчлөлт хадгалагдав" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/ms.po b/po/ms.po index 6eaa16e16c..6e9b64c303 100644 --- a/po/ms.po +++ b/po/ms.po @@ -11409,7 +11409,7 @@ msgstr "Membenarkan" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Pengubahsuaian telah disimpan" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/nb.po b/po/nb.po index a9acfa1198..97cd520b42 100644 --- a/po/nb.po +++ b/po/nb.po @@ -11933,7 +11933,7 @@ msgstr "Påslått" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Configuration storage" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfigurasjonslager" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/ne.po b/po/ne.po index 5ec1ef5364..5ab69a191b 100644 --- a/po/ne.po +++ b/po/ne.po @@ -10436,7 +10436,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/nl.po b/po/nl.po index 061fbade31..64e9581061 100644 --- a/po/nl.po +++ b/po/nl.po @@ -11244,7 +11244,7 @@ msgid "Enabled" msgstr "Ingeschakeld" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Configuratie van pmadb… " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/pa.po b/po/pa.po index 973522d28a..9b425a1a59 100644 --- a/po/pa.po +++ b/po/pa.po @@ -10451,7 +10451,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/pl.po b/po/pl.po index c87fbd5e09..8d8c5f1d0a 100644 --- a/po/pl.po +++ b/po/pl.po @@ -11588,7 +11588,7 @@ msgstr "Włączone" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfiguracja zapisana." #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/pt.po b/po/pt.po index 0d5be2e878..87b5ffc490 100644 --- a/po/pt.po +++ b/po/pt.po @@ -11546,7 +11546,7 @@ msgstr "Activado" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Modificações foram guardadas" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/pt_BR.po b/po/pt_BR.po index f857d579fc..d5633e486e 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -11451,7 +11451,7 @@ msgid "Enabled" msgstr "Habilitado" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Configuração de pmadb… " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/ro.po b/po/ro.po index d62514922a..330ba3019b 100644 --- a/po/ro.po +++ b/po/ro.po @@ -11976,7 +11976,7 @@ msgstr "Activat" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Modificările au fost salvate" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/ru.po b/po/ru.po index 81b49f3251..f0daf4ef37 100644 --- a/po/ru.po +++ b/po/ru.po @@ -11194,7 +11194,7 @@ msgid "Enabled" msgstr "Доступно" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Конфигурация pmadb… " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/si.po b/po/si.po index 4d310ae246..610474c087 100644 --- a/po/si.po +++ b/po/si.po @@ -11600,7 +11600,7 @@ msgstr "සක්‍රිය කරන ලද" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "වින්‍යාසය සුරකින ලදි." #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/sk.po b/po/sk.po index 89a7446150..b03179c145 100644 --- a/po/sk.po +++ b/po/sk.po @@ -10901,7 +10901,7 @@ msgid "Enabled" msgstr "Zapnuté" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfigurácia pmadb... " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/sl.po b/po/sl.po index caa86c80ce..6af9b9a65b 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11145,7 +11145,7 @@ msgid "Enabled" msgstr "Omogočeno" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfiguracija pmadb ... " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/sq.po b/po/sq.po index aec965076b..95a720ed06 100644 --- a/po/sq.po +++ b/po/sq.po @@ -11218,7 +11218,7 @@ msgid "Enabled" msgstr "Aftëso" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfigurimi i pmadb… " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/sr.po b/po/sr.po index 87f3cf7a8a..317b4fd594 100644 --- a/po/sr.po +++ b/po/sr.po @@ -11844,7 +11844,7 @@ msgstr "Омогућено" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Измене су сачуване" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/sr@latin.po b/po/sr@latin.po index 8a09dfa181..784d3eeea1 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -11847,7 +11847,7 @@ msgstr "Omogućeno" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Podešavanja su sačuvana." #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/sv.po b/po/sv.po index 176c5edcf1..d196ef7625 100644 --- a/po/sv.po +++ b/po/sv.po @@ -11079,7 +11079,7 @@ msgid "Enabled" msgstr "Aktiverat" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfigurationen av pmadb... " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/ta.po b/po/ta.po index c265800587..c306ec3974 100644 --- a/po/ta.po +++ b/po/ta.po @@ -10831,7 +10831,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "pmadbஇன் அமைப்பாக்கம்... " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/te.po b/po/te.po index 8f315feccc..e2f654845d 100644 --- a/po/te.po +++ b/po/te.po @@ -11314,7 +11314,7 @@ msgstr "" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Server configuration" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "సేవకి స్వరూపణం" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/th.po b/po/th.po index 7f2eb03611..bfab41c254 100644 --- a/po/th.po +++ b/po/th.po @@ -11553,7 +11553,7 @@ msgstr "เปิดใช้อยู่" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "บันทึกการแก้ไขเรียบร้อยแล้ว" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/tk.po b/po/tk.po index b5fa57fe62..fe7537326b 100644 --- a/po/tk.po +++ b/po/tk.po @@ -10498,7 +10498,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/tr.po b/po/tr.po index 766c6c38a5..71f19cf396 100644 --- a/po/tr.po +++ b/po/tr.po @@ -11166,7 +11166,7 @@ msgid "Enabled" msgstr "Etkinleştirildi" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "pmadb yapılandırması... " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/tt.po b/po/tt.po index bf985ba37d..9f54b01e76 100644 --- a/po/tt.po +++ b/po/tt.po @@ -11724,7 +11724,7 @@ msgstr "Açıq" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Üzgärtülär saqlandı" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/ug.po b/po/ug.po index d056fc9068..dcfb6b2908 100644 --- a/po/ug.po +++ b/po/ug.po @@ -11428,7 +11428,7 @@ msgstr "" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "ئۆزگەرتىشلەر ساقلاندى" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/uk.po b/po/uk.po index 3df81f2191..5ecaa29c3a 100644 --- a/po/uk.po +++ b/po/uk.po @@ -11440,7 +11440,7 @@ msgstr "дозволено" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Конфігурація збережена." #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/ur.po b/po/ur.po index 1e862de0da..3731ef17d6 100644 --- a/po/ur.po +++ b/po/ur.po @@ -11864,7 +11864,7 @@ msgstr "" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Configuration storage" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "تشکیل ذخیرہ" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/uz.po b/po/uz.po index b2b76b566d..076544e151 100644 --- a/po/uz.po +++ b/po/uz.po @@ -12631,7 +12631,7 @@ msgstr "Фаоллаштирилган" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Configuration file" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Конфигурацион файл" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/uz@latin.po b/po/uz@latin.po index e9864e2b9e..5076046e7d 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -12673,7 +12673,7 @@ msgstr "Faollashtirilgan" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Configuration file" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfiguratsion fayl" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/vi.po b/po/vi.po index 880cdb9b71..1ec8aa18ee 100644 --- a/po/vi.po +++ b/po/vi.po @@ -10689,7 +10689,7 @@ msgid "Enabled" msgstr "Bật" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Cấu hình của pmadb…" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/vls.po b/po/vls.po index e8d5b9298d..43153c8c5d 100644 --- a/po/vls.po +++ b/po/vls.po @@ -10384,7 +10384,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/zh_CN.po b/po/zh_CN.po index ed5ffb7747..e5e5729a07 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -10779,7 +10779,7 @@ msgstr "已启用" #: libraries/relation.lib.php:100 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "配置已保存。" #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 diff --git a/po/zh_TW.po b/po/zh_TW.po index c725140fa3..7835883c2f 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -10694,7 +10694,7 @@ msgid "Enabled" msgstr "已啓用" #: libraries/relation.lib.php:100 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "設定 pmadb ... " #: libraries/relation.lib.php:104 libraries/relation.lib.php:140 From 125ad7c7c5c221ccc6d8ae411e2b32ddc44a68ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 22 Jan 2016 10:20:44 +0100 Subject: [PATCH 09/10] Remove trailing space from a string MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- libraries/relation.lib.php | 2 +- po/af.po | 2 +- po/ar.po | 2 +- po/az.po | 2 +- po/be.po | 2 +- po/be@latin.po | 2 +- po/bg.po | 2 +- po/bn.po | 2 +- po/br.po | 2 +- po/brx.po | 2 +- po/bs.po | 2 +- po/ca.po | 2 +- po/ckb.po | 2 +- po/cs.po | 2 +- po/cy.po | 2 +- po/da.po | 2 +- po/de.po | 2 +- po/el.po | 2 +- po/en_GB.po | 2 +- po/eo.po | 2 +- po/es.po | 2 +- po/et.po | 2 +- po/eu.po | 2 +- po/fa.po | 2 +- po/fi.po | 2 +- po/fr.po | 2 +- po/fy.po | 2 +- po/gl.po | 2 +- po/gu.po | 2 +- po/he.po | 2 +- po/hi.po | 2 +- po/hr.po | 2 +- po/hu.po | 2 +- po/hy.po | 2 +- po/ia.po | 2 +- po/id.po | 2 +- po/it.po | 2 +- po/ja.po | 2 +- po/ka.po | 2 +- po/kk.po | 2 +- po/km.po | 2 +- po/kn.po | 2 +- po/ko.po | 2 +- po/ksh.po | 2 +- po/ky.po | 2 +- po/li.po | 2 +- po/lt.po | 2 +- po/lv.po | 2 +- po/mk.po | 2 +- po/ml.po | 2 +- po/mn.po | 2 +- po/ms.po | 2 +- po/nb.po | 2 +- po/ne.po | 2 +- po/nl.po | 2 +- po/pa.po | 2 +- po/pl.po | 2 +- po/pt.po | 2 +- po/pt_BR.po | 2 +- po/ro.po | 2 +- po/ru.po | 2 +- po/si.po | 2 +- po/sk.po | 2 +- po/sl.po | 2 +- po/sq.po | 2 +- po/sr.po | 2 +- po/sr@latin.po | 2 +- po/sv.po | 2 +- po/ta.po | 2 +- po/te.po | 2 +- po/th.po | 2 +- po/tk.po | 2 +- po/tr.po | 2 +- po/tt.po | 2 +- po/ug.po | 2 +- po/uk.po | 2 +- po/ur.po | 2 +- po/uz.po | 2 +- po/uz@latin.po | 2 +- po/vi.po | 2 +- po/vls.po | 2 +- po/zh_CN.po | 2 +- po/zh_TW.po | 2 +- 83 files changed, 83 insertions(+), 83 deletions(-) diff --git a/libraries/relation.lib.php b/libraries/relation.lib.php index 886305ab17..0a0a598d3c 100644 --- a/libraries/relation.lib.php +++ b/libraries/relation.lib.php @@ -98,7 +98,7 @@ function PMA_getRelationsParamDiagnostic($cfgRelation) $messages['disabled'] = '' . __('Disabled') . ''; if (empty($cfgRelation['db'])) { - $retval .= __('Configuration of pmadb… ') + $retval .= __('Configuration of pmadb…') . $messages['error'] . PMA\libraries\Util::showDocu('setup', 'linked-tables') . '
    ' . "\n" diff --git a/po/af.po b/po/af.po index 7f73073d6c..4102e44631 100644 --- a/po/af.po +++ b/po/af.po @@ -11285,7 +11285,7 @@ msgstr "Beskikbaar" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Veranderinge is gestoor" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/ar.po b/po/ar.po index 14c7cbd06c..f67b9a7f42 100644 --- a/po/ar.po +++ b/po/ar.po @@ -11527,7 +11527,7 @@ msgstr "مفعل" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "تمت التعديلات" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/az.po b/po/az.po index 23b0a0fb66..c7dcbdad02 100644 --- a/po/az.po +++ b/po/az.po @@ -10883,7 +10883,7 @@ msgstr "" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfiqurasiya yaddaşa verildi." #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/be.po b/po/be.po index 03eb836066..d8bfebcd01 100644 --- a/po/be.po +++ b/po/be.po @@ -11837,7 +11837,7 @@ msgstr "Уключана" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Мадыфікацыі былі захаваныя" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/be@latin.po b/po/be@latin.po index 0830095ff0..4c687a5594 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -11906,7 +11906,7 @@ msgstr "Uklučana" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Madyfikacyi byli zachavanyja" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/bg.po b/po/bg.po index cd2baf2115..fc78be08cd 100644 --- a/po/bg.po +++ b/po/bg.po @@ -11498,7 +11498,7 @@ msgstr "Позволено" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Конфигурацията запазена." #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/bn.po b/po/bn.po index 3193d4394c..8e582c9cc2 100644 --- a/po/bn.po +++ b/po/bn.po @@ -11523,7 +11523,7 @@ msgstr "কার্যকর" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "কনফিগারেশন সংরক্ষন করা হয়েছে।" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/br.po b/po/br.po index 4cd80cc0b7..1c6320b019 100644 --- a/po/br.po +++ b/po/br.po @@ -11495,7 +11495,7 @@ msgstr "" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Configuration file" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Restr gefluniañ" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/brx.po b/po/brx.po index 24d15d2f1b..4d7ea549c1 100644 --- a/po/brx.po +++ b/po/brx.po @@ -10308,7 +10308,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/bs.po b/po/bs.po index 02ccb89fc6..c790dedac4 100644 --- a/po/bs.po +++ b/po/bs.po @@ -11480,7 +11480,7 @@ msgstr "Omogućeno" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Izmjene su sačuvane" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/ca.po b/po/ca.po index ffcf0d26af..0d904f608d 100644 --- a/po/ca.po +++ b/po/ca.po @@ -11114,7 +11114,7 @@ msgid "Enabled" msgstr "Activat" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Configuració de pmadb... " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/ckb.po b/po/ckb.po index 9099ff0958..3b1ecdb152 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -10936,7 +10936,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/cs.po b/po/cs.po index 30652a9ee6..b97d9ea111 100644 --- a/po/cs.po +++ b/po/cs.po @@ -11018,7 +11018,7 @@ msgid "Enabled" msgstr "Zapnuto" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfigurace pmadb... " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/cy.po b/po/cy.po index 9ae3a81d3b..00fe9431aa 100644 --- a/po/cy.po +++ b/po/cy.po @@ -11595,7 +11595,7 @@ msgstr "" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Cafodd yr addasiadau eu cadw" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/da.po b/po/da.po index 4a5b2f0b53..6376461ff9 100644 --- a/po/da.po +++ b/po/da.po @@ -11228,7 +11228,7 @@ msgid "Enabled" msgstr "Slået til" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfiguration af pmadb … " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/de.po b/po/de.po index 174db62a6e..c4c2e6552d 100644 --- a/po/de.po +++ b/po/de.po @@ -11226,7 +11226,7 @@ msgid "Enabled" msgstr "Aktiviert" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfiguration des pmadb... " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/el.po b/po/el.po index 9b239b3c45..3aac2d3334 100644 --- a/po/el.po +++ b/po/el.po @@ -11178,7 +11178,7 @@ msgid "Enabled" msgstr "Ενεργοποιημένη" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Ρύθμιση της pmadb… " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/en_GB.po b/po/en_GB.po index 290e842ef5..2fb47e1f83 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -11521,7 +11521,7 @@ msgstr "Enabled" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Configuration saved." #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/eo.po b/po/eo.po index 968aa92343..ff524983e1 100644 --- a/po/eo.po +++ b/po/eo.po @@ -10309,7 +10309,7 @@ msgid "Enabled" msgstr "Ŝaltita" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/es.po b/po/es.po index 5d74b4454c..1399c5ce5e 100644 --- a/po/es.po +++ b/po/es.po @@ -11258,7 +11258,7 @@ msgid "Enabled" msgstr "Habilitado" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Configuración de pmadb… " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/et.po b/po/et.po index 00e0f801d3..55c05cda09 100644 --- a/po/et.po +++ b/po/et.po @@ -10978,7 +10978,7 @@ msgid "Enabled" msgstr "Lubatud" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "pmadb seadistus... " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/eu.po b/po/eu.po index c9a125dd6e..2a27705431 100644 --- a/po/eu.po +++ b/po/eu.po @@ -11503,7 +11503,7 @@ msgstr "Gaituta" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Aldaketak gorde dira" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/fa.po b/po/fa.po index 8931299ec5..d558b0f6bc 100644 --- a/po/fa.po +++ b/po/fa.po @@ -11397,7 +11397,7 @@ msgstr "فعال" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "اصلاحات ذخيره گرديد" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/fi.po b/po/fi.po index fb46524e4f..d428f875ae 100644 --- a/po/fi.po +++ b/po/fi.po @@ -11296,7 +11296,7 @@ msgstr "Päällä" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Asetukset tallennettu." #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/fr.po b/po/fr.po index 445ca18749..20d335f9ba 100644 --- a/po/fr.po +++ b/po/fr.po @@ -11182,7 +11182,7 @@ msgid "Enabled" msgstr "Activé" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Configuration de pmadb… " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/fy.po b/po/fy.po index d647559989..14475e566a 100644 --- a/po/fy.po +++ b/po/fy.po @@ -10471,7 +10471,7 @@ msgid "Enabled" msgstr "Ynskeakele" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/gl.po b/po/gl.po index 628e323068..ab3b580407 100644 --- a/po/gl.po +++ b/po/gl.po @@ -11355,7 +11355,7 @@ msgstr "Activado" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Configuración gardada." #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/gu.po b/po/gu.po index 4274625e1e..37e54fc428 100644 --- a/po/gu.po +++ b/po/gu.po @@ -10310,7 +10310,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/he.po b/po/he.po index 6a49370b64..4e2b448c03 100644 --- a/po/he.po +++ b/po/he.po @@ -11455,7 +11455,7 @@ msgstr "מופעל" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "שינויים נשמרו" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/hi.po b/po/hi.po index 2eb82b8e95..d78a93b18b 100644 --- a/po/hi.po +++ b/po/hi.po @@ -11762,7 +11762,7 @@ msgstr "सक्षम" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Configuration storage" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "विन्यास भंडारण" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/hr.po b/po/hr.po index 94a4ba331b..1ae1bd7045 100644 --- a/po/hr.po +++ b/po/hr.po @@ -11858,7 +11858,7 @@ msgstr "Omogućeno" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Izmjene su spremljene" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/hu.po b/po/hu.po index 10c642e4f8..9da489722d 100644 --- a/po/hu.po +++ b/po/hu.po @@ -11257,7 +11257,7 @@ msgid "Enabled" msgstr "Engedélyezett" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "A pmadb beállítása… " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/hy.po b/po/hy.po index bc13363a69..1690165585 100644 --- a/po/hy.po +++ b/po/hy.po @@ -10594,7 +10594,7 @@ msgid "Enabled" msgstr "Առկա" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/ia.po b/po/ia.po index 816100ebcb..db20ac80e5 100644 --- a/po/ia.po +++ b/po/ia.po @@ -11101,7 +11101,7 @@ msgid "Enabled" msgstr "Habilitate" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Configuration de pmadb... " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/id.po b/po/id.po index 008fa9ee85..fa071f16ee 100644 --- a/po/id.po +++ b/po/id.po @@ -11768,7 +11768,7 @@ msgid "Enabled" msgstr "Aktif" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfigurasi pmadb … " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/it.po b/po/it.po index f0837fee75..b65ed6db79 100644 --- a/po/it.po +++ b/po/it.po @@ -11208,7 +11208,7 @@ msgid "Enabled" msgstr "Abilitata" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Configurazione di pmadb... " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/ja.po b/po/ja.po index 37edfe7de5..51bcbb3e53 100644 --- a/po/ja.po +++ b/po/ja.po @@ -12066,7 +12066,7 @@ msgstr "有効" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "設定を保存しました。" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/ka.po b/po/ka.po index bb604fa196..6fee1fc1e2 100644 --- a/po/ka.po +++ b/po/ka.po @@ -11944,7 +11944,7 @@ msgstr "ჩართულია" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Configuration file" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "კონფიგურაციის ფაილი" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/kk.po b/po/kk.po index 829d0591ef..f7be69e889 100644 --- a/po/kk.po +++ b/po/kk.po @@ -10931,7 +10931,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/km.po b/po/km.po index 6bfce61f19..5ca1aacfad 100644 --- a/po/km.po +++ b/po/km.po @@ -10563,7 +10563,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/kn.po b/po/kn.po index 32cf31fabc..4861dab016 100644 --- a/po/kn.po +++ b/po/kn.po @@ -10327,7 +10327,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/ko.po b/po/ko.po index a61bfcd0a0..9adb2cff3d 100644 --- a/po/ko.po +++ b/po/ko.po @@ -10909,7 +10909,7 @@ msgstr "사용가능" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "수정된 내용이 저장되었습니다." #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/ksh.po b/po/ksh.po index 396ea38dad..39fe9a5929 100644 --- a/po/ksh.po +++ b/po/ksh.po @@ -10392,7 +10392,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/ky.po b/po/ky.po index 6355781f1b..a55518e030 100644 --- a/po/ky.po +++ b/po/ky.po @@ -10461,7 +10461,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/li.po b/po/li.po index df2d39d9db..b8023dc190 100644 --- a/po/li.po +++ b/po/li.po @@ -10308,7 +10308,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/lt.po b/po/lt.po index cc5060618a..79c9968151 100644 --- a/po/lt.po +++ b/po/lt.po @@ -12042,7 +12042,7 @@ msgstr "Įjungta" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfigūracija išsaugota." #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/lv.po b/po/lv.po index dc813a8863..2e2ca9e6b7 100644 --- a/po/lv.po +++ b/po/lv.po @@ -11496,7 +11496,7 @@ msgstr "Ieslēgts" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Labojumi tika saglabāti" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/mk.po b/po/mk.po index 75f75c1f9d..a3f9dcf5bb 100644 --- a/po/mk.po +++ b/po/mk.po @@ -11619,7 +11619,7 @@ msgstr "Овозможено" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Измените се сочувани" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/ml.po b/po/ml.po index 25e7acc568..f8a5eae296 100644 --- a/po/ml.po +++ b/po/ml.po @@ -10605,7 +10605,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/mn.po b/po/mn.po index 4fc97800d8..3402200564 100644 --- a/po/mn.po +++ b/po/mn.po @@ -11703,7 +11703,7 @@ msgstr "Нээлттэй" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Өөрчлөлт хадгалагдав" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/ms.po b/po/ms.po index ca2b9ec37f..7ca9cbddeb 100644 --- a/po/ms.po +++ b/po/ms.po @@ -11327,7 +11327,7 @@ msgstr "Membenarkan" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Pengubahsuaian telah disimpan" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/nb.po b/po/nb.po index ba8c351a9e..667fcfe2e7 100644 --- a/po/nb.po +++ b/po/nb.po @@ -11863,7 +11863,7 @@ msgstr "Påslått" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Configuration storage" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfigurasjonslager" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/ne.po b/po/ne.po index 2936cf9e75..af01e6b2a6 100644 --- a/po/ne.po +++ b/po/ne.po @@ -10369,7 +10369,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/nl.po b/po/nl.po index c8c8b37149..024c9b6671 100644 --- a/po/nl.po +++ b/po/nl.po @@ -11163,7 +11163,7 @@ msgid "Enabled" msgstr "Ingeschakeld" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Configuratie van pmadb… " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/pa.po b/po/pa.po index d956eb3f70..dd491b6881 100644 --- a/po/pa.po +++ b/po/pa.po @@ -10381,7 +10381,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/pl.po b/po/pl.po index 7b5b30b366..ecb2797f35 100644 --- a/po/pl.po +++ b/po/pl.po @@ -11533,7 +11533,7 @@ msgstr "Włączone" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfiguracja zapisana." #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/pt.po b/po/pt.po index fa2a219264..6e5a99f9b1 100644 --- a/po/pt.po +++ b/po/pt.po @@ -11463,7 +11463,7 @@ msgstr "Activado" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Modificações foram guardadas" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/pt_BR.po b/po/pt_BR.po index f50a7e64d6..e289878b6d 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -11411,7 +11411,7 @@ msgid "Enabled" msgstr "Habilitado" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Configuração de pmadb… " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/ro.po b/po/ro.po index efb42caaef..01442aedbc 100644 --- a/po/ro.po +++ b/po/ro.po @@ -11898,7 +11898,7 @@ msgstr "Activat" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Modificările au fost salvate" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/ru.po b/po/ru.po index 4853935784..5d2f1117f7 100644 --- a/po/ru.po +++ b/po/ru.po @@ -11143,7 +11143,7 @@ msgid "Enabled" msgstr "Доступно" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Конфигурация pmadb… " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/si.po b/po/si.po index 639e09f1e2..8e9a3557cc 100644 --- a/po/si.po +++ b/po/si.po @@ -11523,7 +11523,7 @@ msgstr "සක්‍රිය කරන ලද" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "වින්‍යාසය සුරකින ලදි." #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/sk.po b/po/sk.po index bae7809e22..81dfa18840 100644 --- a/po/sk.po +++ b/po/sk.po @@ -10825,7 +10825,7 @@ msgid "Enabled" msgstr "Zapnuté" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfigurácia pmadb... " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/sl.po b/po/sl.po index 859311536c..7a53353521 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11062,7 +11062,7 @@ msgid "Enabled" msgstr "Omogočeno" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfiguracija pmadb ... " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/sq.po b/po/sq.po index d15bd3f3e0..443704a912 100644 --- a/po/sq.po +++ b/po/sq.po @@ -11181,7 +11181,7 @@ msgid "Enabled" msgstr "Aftëso" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfigurimi i pmadb… " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/sr.po b/po/sr.po index ab52c6e440..a868afa3b3 100644 --- a/po/sr.po +++ b/po/sr.po @@ -11765,7 +11765,7 @@ msgstr "Омогућено" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Измене су сачуване" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/sr@latin.po b/po/sr@latin.po index 245d7d85e2..776bcf2bd9 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -11764,7 +11764,7 @@ msgstr "Omogućeno" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Podešavanja su sačuvana." #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/sv.po b/po/sv.po index ccdc468522..d841fb5211 100644 --- a/po/sv.po +++ b/po/sv.po @@ -11025,7 +11025,7 @@ msgid "Enabled" msgstr "Aktiverat" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfigurationen av pmadb... " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/ta.po b/po/ta.po index 2241d06a8e..7b3cfae39d 100644 --- a/po/ta.po +++ b/po/ta.po @@ -10759,7 +10759,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "pmadbஇன் அமைப்பாக்கம்... " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/te.po b/po/te.po index c2b8590704..f36a8adda5 100644 --- a/po/te.po +++ b/po/te.po @@ -11230,7 +11230,7 @@ msgstr "" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Server configuration" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "సేవకి స్వరూపణం" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/th.po b/po/th.po index c2e955cfaf..bf2e38f1e9 100644 --- a/po/th.po +++ b/po/th.po @@ -11471,7 +11471,7 @@ msgstr "เปิดใช้อยู่" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "บันทึกการแก้ไขเรียบร้อยแล้ว" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/tk.po b/po/tk.po index 52804d07ea..74df4037f3 100644 --- a/po/tk.po +++ b/po/tk.po @@ -10428,7 +10428,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/tr.po b/po/tr.po index 8f65090298..cedb2da6e6 100644 --- a/po/tr.po +++ b/po/tr.po @@ -11083,7 +11083,7 @@ msgid "Enabled" msgstr "Etkinleştirildi" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "pmadb yapılandırması... " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/tt.po b/po/tt.po index bcf5059622..8ca32e6fbe 100644 --- a/po/tt.po +++ b/po/tt.po @@ -11648,7 +11648,7 @@ msgstr "Açıq" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Üzgärtülär saqlandı" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/ug.po b/po/ug.po index 42ad32b34c..f5f1ed6837 100644 --- a/po/ug.po +++ b/po/ug.po @@ -11353,7 +11353,7 @@ msgstr "" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Modifications have been saved" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "ئۆزگەرتىشلەر ساقلاندى" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/uk.po b/po/uk.po index 8c8fc2a9ff..e1bbe3ead1 100644 --- a/po/uk.po +++ b/po/uk.po @@ -11366,7 +11366,7 @@ msgstr "дозволено" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Конфігурація збережена." #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/ur.po b/po/ur.po index dd1e873bb9..67d5bf13e6 100644 --- a/po/ur.po +++ b/po/ur.po @@ -11775,7 +11775,7 @@ msgstr "" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Configuration storage" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "تشکیل ذخیرہ" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/uz.po b/po/uz.po index c0af740393..4076d05612 100644 --- a/po/uz.po +++ b/po/uz.po @@ -12547,7 +12547,7 @@ msgstr "Фаоллаштирилган" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Configuration file" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Конфигурацион файл" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/uz@latin.po b/po/uz@latin.po index 40f7bb7c3c..d80389448a 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -12590,7 +12590,7 @@ msgstr "Faollashtirilgan" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Configuration file" -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Konfiguratsion fayl" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/vi.po b/po/vi.po index 986d0f4c13..02879b64a2 100644 --- a/po/vi.po +++ b/po/vi.po @@ -10625,7 +10625,7 @@ msgid "Enabled" msgstr "Bật" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "Cấu hình của pmadb…" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/vls.po b/po/vls.po index 1a3fe3e279..4e738d8452 100644 --- a/po/vls.po +++ b/po/vls.po @@ -10310,7 +10310,7 @@ msgid "Enabled" msgstr "" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/zh_CN.po b/po/zh_CN.po index 1446877427..6d48bfab95 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -10717,7 +10717,7 @@ msgstr "已启用" #: libraries/relation.lib.php:101 #, fuzzy #| msgid "Configuration saved." -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "配置已保存。" #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 diff --git a/po/zh_TW.po b/po/zh_TW.po index ad67416aa9..7eb1bb95f4 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -10665,7 +10665,7 @@ msgid "Enabled" msgstr "已啓用" #: libraries/relation.lib.php:101 -msgid "Configuration of pmadb… " +msgid "Configuration of pmadb…" msgstr "設定 pmadb ... " #: libraries/relation.lib.php:105 libraries/relation.lib.php:141 From 9586b8c142587d4ad8d4f909721eb5bc7d333e69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 22 Jan 2016 10:38:54 +0100 Subject: [PATCH 10/10] Add missing space to separate two strings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- libraries/relation.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/relation.lib.php b/libraries/relation.lib.php index 0a0a598d3c..cd0c7daed3 100644 --- a/libraries/relation.lib.php +++ b/libraries/relation.lib.php @@ -98,7 +98,7 @@ function PMA_getRelationsParamDiagnostic($cfgRelation) $messages['disabled'] = '' . __('Disabled') . ''; if (empty($cfgRelation['db'])) { - $retval .= __('Configuration of pmadb…') + $retval .= __('Configuration of pmadb…') . ' ' . $messages['error'] . PMA\libraries\Util::showDocu('setup', 'linked-tables') . '
    ' . "\n"