From b4d03dc9f579f865b1fd97b0108da9fd176bf8a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Sun, 2 Feb 2014 11:30:39 +0100 Subject: [PATCH] Correct punctuation for sentences MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- db_operations.php | 4 ++-- db_qbe.php | 2 +- db_search.php | 2 +- libraries/plugins/auth/AuthenticationConfig.class.php | 4 ++-- libraries/plugins/auth/AuthenticationCookie.class.php | 2 +- libraries/plugins/auth/AuthenticationHttp.class.php | 2 +- libraries/plugins/auth/AuthenticationSignon.class.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/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 | 4 ++-- 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/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/kn.po | 2 +- po/ko.po | 2 +- po/ky.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/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/vls.po | 2 +- po/zh_CN.po | 2 +- po/zh_TW.po | 2 +- 80 files changed, 83 insertions(+), 83 deletions(-) diff --git a/db_operations.php b/db_operations.php index 3b2a782394..60be255715 100644 --- a/db_operations.php +++ b/db_operations.php @@ -127,13 +127,13 @@ if (strlen($db) $GLOBALS['dbi']->query($local_query); $message = PMA_Message::success( - __('Database %1$s has been renamed to %2$s') + __('Database %1$s has been renamed to %2$s.') ); $message->addParam($db); $message->addParam($_REQUEST['newname']); } elseif (! $_error) { $message = PMA_Message::success( - __('Database %1$s has been copied to %2$s') + __('Database %1$s has been copied to %2$s.') ); $message->addParam($db); $message->addParam($_REQUEST['newname']); diff --git a/db_qbe.php b/db_qbe.php index 7fad34d72d..e1ed199d1f 100644 --- a/db_qbe.php +++ b/db_qbe.php @@ -47,7 +47,7 @@ $url_params['goto'] = 'db_qbe.php'; require 'libraries/db_info.inc.php'; if ($message_to_display) { - PMA_Message::error(__('You have to choose at least one column to display'))->display(); + PMA_Message::error(__('You have to choose at least one column to display!'))->display(); } unset($message_to_display); diff --git a/db_search.php b/db_search.php index acfec8e55b..29ea3a8e60 100644 --- a/db_search.php +++ b/db_search.php @@ -27,7 +27,7 @@ require 'libraries/db_common.inc.php'; // If config variable $GLOBALS['cfg']['Usedbsearch'] is on false : exit. if (! $GLOBALS['cfg']['UseDbSearch']) { PMA_Util::mysqlDie( - __('Access denied'), '', false, $err_url + __('Access denied!'), '', false, $err_url ); } // end if $url_query .= '&goto=db_search.php'; diff --git a/libraries/plugins/auth/AuthenticationConfig.class.php b/libraries/plugins/auth/AuthenticationConfig.class.php index 6f7e4e45b9..83cf581a6b 100644 --- a/libraries/plugins/auth/AuthenticationConfig.class.php +++ b/libraries/plugins/auth/AuthenticationConfig.class.php @@ -78,7 +78,7 @@ class AuthenticationConfig extends AuthenticationPlugin $response->getFooter()->setMinimal(); $header = $response->getHeader(); $header->setBodyId('loginform'); - $header->setTitle(__('Access denied')); + $header->setTitle(__('Access denied!')); $header->disableMenu(); echo '

@@ -93,7 +93,7 @@ class AuthenticationConfig extends AuthenticationPlugin if (isset($GLOBALS['allowDeny_forbidden']) && $GLOBALS['allowDeny_forbidden'] ) { - trigger_error(__('Access denied'), E_USER_NOTICE); + trigger_error(__('Access denied!'), E_USER_NOTICE); } else { // Check whether user has configured something if ($GLOBALS['PMA_Config']->source_mtime == 0) { diff --git a/libraries/plugins/auth/AuthenticationCookie.class.php b/libraries/plugins/auth/AuthenticationCookie.class.php index 62eb27ac3e..c8c1db4209 100644 --- a/libraries/plugins/auth/AuthenticationCookie.class.php +++ b/libraries/plugins/auth/AuthenticationCookie.class.php @@ -680,7 +680,7 @@ class AuthenticationCookie extends AuthenticationPlugin . ' (see AllowNoPassword)' ); } elseif (! empty($GLOBALS['allowDeny_forbidden'])) { - $conn_error = __('Access denied'); + $conn_error = __('Access denied!'); } elseif (! empty($GLOBALS['no_activity'])) { $conn_error = sprintf( __('No activity within %s seconds; please log in again.'), diff --git a/libraries/plugins/auth/AuthenticationHttp.class.php b/libraries/plugins/auth/AuthenticationHttp.class.php index 75273b11aa..d0d54ffce3 100644 --- a/libraries/plugins/auth/AuthenticationHttp.class.php +++ b/libraries/plugins/auth/AuthenticationHttp.class.php @@ -66,7 +66,7 @@ class AuthenticationHttp extends AuthenticationPlugin $response = PMA_Response::getInstance(); $response->getFooter()->setMinimal(); $header = $response->getHeader(); - $header->setTitle(__('Access denied')); + $header->setTitle(__('Access denied!')); $header->disableMenu(); $header->setBodyId('loginform'); diff --git a/libraries/plugins/auth/AuthenticationSignon.class.php b/libraries/plugins/auth/AuthenticationSignon.class.php index f239acdd56..58f534c33b 100644 --- a/libraries/plugins/auth/AuthenticationSignon.class.php +++ b/libraries/plugins/auth/AuthenticationSignon.class.php @@ -267,7 +267,7 @@ class AuthenticationSignon extends AuthenticationPlugin . '(see AllowNoPassword)' ); } elseif (! empty($GLOBALS['allowDeny_forbidden'])) { - $_SESSION['PMA_single_signon_error_message'] = __('Access denied'); + $_SESSION['PMA_single_signon_error_message'] = __('Access denied!'); } elseif (! empty($GLOBALS['no_activity'])) { $_SESSION['PMA_single_signon_error_message'] = sprintf( __('No activity within %s seconds; please log in again.'), diff --git a/po/af.po b/po/af.po index 8789f2deb9..ad0a188eea 100644 --- a/po/af.po +++ b/po/af.po @@ -306,7 +306,7 @@ msgstr "Skakel oor na %svisual builder%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Toegang Geweier" #: db_tracking.php:75 diff --git a/po/ar.po b/po/ar.po index e3455ad743..fdbb4c3d1f 100644 --- a/po/ar.po +++ b/po/ar.po @@ -317,7 +317,7 @@ msgstr "التحويل إلى %sالباني المرئي%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "ممنوع الوصول" #: db_tracking.php:75 diff --git a/po/az.po b/po/az.po index 03e44cb6a3..df5db4465d 100644 --- a/po/az.po +++ b/po/az.po @@ -317,7 +317,7 @@ msgstr "Kopyalanmış cedvele keç" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Giriş Tesdiq Edilmedi" #: db_tracking.php:75 diff --git a/po/be.po b/po/be.po index 0b4792ad4a..61d18c88a2 100644 --- a/po/be.po +++ b/po/be.po @@ -320,7 +320,7 @@ msgstr "Перайсьці да скапіяванай табліцы" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "У доступе адмоўлена" #: db_tracking.php:75 diff --git a/po/be@latin.po b/po/be@latin.po index a9d33a539c..514250dac1 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -321,7 +321,7 @@ msgstr "Pierajści da skapijavanaj tablicy" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "U dostupie admoŭlena" #: db_tracking.php:75 diff --git a/po/bg.po b/po/bg.po index 69ab2c2f0d..2b6da3a4f8 100644 --- a/po/bg.po +++ b/po/bg.po @@ -304,7 +304,7 @@ msgstr "Превключване към %sвизуален строител%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Отказан достъп" #: db_tracking.php:75 diff --git a/po/bn.po b/po/bn.po index 962ca08d9f..40abfb8627 100644 --- a/po/bn.po +++ b/po/bn.po @@ -310,7 +310,7 @@ msgstr "দেখে তৈরীর %svisual builder%s যাও" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "প্রবেশ করা যাচ্ছে না" #: db_tracking.php:75 diff --git a/po/br.po b/po/br.po index 782c23f39f..a7d15728b4 100644 --- a/po/br.po +++ b/po/br.po @@ -308,7 +308,7 @@ msgstr "Cheñch evit ar %ssavour gwelet%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Moned nac'het" #: db_tracking.php:75 diff --git a/po/bs.po b/po/bs.po index afdaead4a5..274ed5a503 100644 --- a/po/bs.po +++ b/po/bs.po @@ -311,7 +311,7 @@ msgstr "Pređi na %svizualni graditelj%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Ulaz nije dozvoljen" #: db_tracking.php:75 diff --git a/po/ca.po b/po/ca.po index a07c03e55a..a1c478496d 100644 --- a/po/ca.po +++ b/po/ca.po @@ -312,7 +312,7 @@ msgstr "Canviar al %sconstructor visual%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Accés denegat" #: db_tracking.php:75 diff --git a/po/ckb.po b/po/ckb.po index 5463caa118..9c1f281a39 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -315,7 +315,7 @@ msgstr "گۆڕین بۆ %svisual builder%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "ڕێگەنەدرا بە بینین" #: db_tracking.php:75 diff --git a/po/cs.po b/po/cs.po index 32af742d3a..d0763f467e 100644 --- a/po/cs.po +++ b/po/cs.po @@ -306,7 +306,7 @@ msgstr "Přepnout na %svizuálního návrháře%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Přístup odepřen" #: db_tracking.php:75 diff --git a/po/cy.po b/po/cy.po index 850ec259e4..0760a46e20 100644 --- a/po/cy.po +++ b/po/cy.po @@ -316,7 +316,7 @@ msgstr "Newid i %sadeiladwr gweledol%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Mynediad wedi'i wrthod" #: db_tracking.php:75 diff --git a/po/da.po b/po/da.po index b2021e07f4..743daa8dd2 100644 --- a/po/da.po +++ b/po/da.po @@ -302,7 +302,7 @@ msgstr "Skift til %svisuel konstruktør%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Adgang nægtet" #: db_tracking.php:75 diff --git a/po/de.po b/po/de.po index ba0194d6f8..8bcaa43944 100644 --- a/po/de.po +++ b/po/de.po @@ -304,7 +304,7 @@ msgstr "Zum %sDesigner%s wechseln" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Zugriff verweigert" #: db_tracking.php:75 diff --git a/po/el.po b/po/el.po index 8888a2a4dd..a56f61e699 100644 --- a/po/el.po +++ b/po/el.po @@ -303,7 +303,7 @@ msgstr "Αλλαγή στον %sεικονικός μάστορας%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Άρνηση πρόσβασης" #: db_tracking.php:75 diff --git a/po/en_GB.po b/po/en_GB.po index 216c131bfb..acba6100d7 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -306,8 +306,8 @@ msgstr "Switch to %svisual builder%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" -msgstr "Access denied" +msgid "Access denied!" +msgstr "Access denied!" #: db_tracking.php:75 msgid "Tracked tables" diff --git a/po/es.po b/po/es.po index bab376161c..81b16e5bad 100644 --- a/po/es.po +++ b/po/es.po @@ -306,7 +306,7 @@ msgstr "Cambiar al %sconstructor visual%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Acceso denegado" #: db_tracking.php:75 diff --git a/po/et.po b/po/et.po index 40f645a8a0..d71e414d29 100644 --- a/po/et.po +++ b/po/et.po @@ -306,7 +306,7 @@ msgstr "Mine %sgraafilisele loojale%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Ligipääs keelatud" #: db_tracking.php:75 diff --git a/po/eu.po b/po/eu.po index baa8132542..873042de9c 100644 --- a/po/eu.po +++ b/po/eu.po @@ -314,7 +314,7 @@ msgstr "Aldatu %serakitzaile bisualrera%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Sarbidea ukatua" #: db_tracking.php:75 diff --git a/po/fa.po b/po/fa.po index 8994e23144..e01b2c487c 100644 --- a/po/fa.po +++ b/po/fa.po @@ -304,7 +304,7 @@ msgstr "به %svisual builder%s بروید" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "دسترسي مجاز نيست" #: db_tracking.php:75 diff --git a/po/fi.po b/po/fi.po index 6dedf8bee0..15189cdf1b 100644 --- a/po/fi.po +++ b/po/fi.po @@ -304,7 +304,7 @@ msgstr "Vaihda %svisuaaliseen muokkaimeen%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Käyttö estetty" #: db_tracking.php:75 diff --git a/po/fr.po b/po/fr.po index 67da5d9a85..d7560fffe2 100644 --- a/po/fr.po +++ b/po/fr.po @@ -304,7 +304,7 @@ msgstr "Passer au %smode visuel%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Accès refusé" #: db_tracking.php:75 diff --git a/po/gl.po b/po/gl.po index c2a6a7c919..5b0d417325 100644 --- a/po/gl.po +++ b/po/gl.po @@ -304,7 +304,7 @@ msgstr "Cambiar ao %sconstrutor visual%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Denegouse o acceso" #: db_tracking.php:75 diff --git a/po/he.po b/po/he.po index dbcd9b92be..0b354630a2 100644 --- a/po/he.po +++ b/po/he.po @@ -301,7 +301,7 @@ msgstr "מעבר ל%sבונה החזותי%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "הגישה נדחתה" #: db_tracking.php:75 diff --git a/po/hi.po b/po/hi.po index 5317674dbd..aacdda9ef1 100644 --- a/po/hi.po +++ b/po/hi.po @@ -305,7 +305,7 @@ msgstr "%s दृश्य निर्माता %s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "पहुँच निषेधित" #: db_tracking.php:75 diff --git a/po/hr.po b/po/hr.po index 52b029501c..297e611f9f 100644 --- a/po/hr.po +++ b/po/hr.po @@ -313,7 +313,7 @@ msgstr "Prebaci se na %svizualnu izradu%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Pristup odbijen" #: db_tracking.php:75 diff --git a/po/hu.po b/po/hu.po index a3711904c6..ae30e32e10 100644 --- a/po/hu.po +++ b/po/hu.po @@ -304,7 +304,7 @@ msgstr "Átváltás a %svizuális tervezőre%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "A hozzáférés megtagadva" #: db_tracking.php:75 diff --git a/po/hy.po b/po/hy.po index ec1e4483b4..b683d93d3b 100644 --- a/po/hy.po +++ b/po/hy.po @@ -315,7 +315,7 @@ msgstr "Միացնել հարցումների %sտեսական կառուցող #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Մուտքն արգելված է" #: db_tracking.php:75 diff --git a/po/ia.po b/po/ia.po index 99de285755..b5697aba79 100644 --- a/po/ia.po +++ b/po/ia.po @@ -308,7 +308,7 @@ msgstr "Commuta a %svisual builder%s (constructor visual)" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Accesso negate" #: db_tracking.php:75 diff --git a/po/id.po b/po/id.po index 2c77b3e251..ddb2209e4f 100644 --- a/po/id.po +++ b/po/id.po @@ -304,7 +304,7 @@ msgstr "Alihkan ke %spembangun visual%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Akses ditolak" #: db_tracking.php:75 diff --git a/po/it.po b/po/it.po index 1f32df3461..fe2edcf52f 100644 --- a/po/it.po +++ b/po/it.po @@ -304,7 +304,7 @@ msgstr "Passa a %svisual builder%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Accesso negato" #: db_tracking.php:75 diff --git a/po/ja.po b/po/ja.po index 4790a2cb3a..145b87e069 100644 --- a/po/ja.po +++ b/po/ja.po @@ -309,7 +309,7 @@ msgstr "%sビジュアル・クエリ・ビルダ%sに切り替える" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "アクセスは拒否されました" #: db_tracking.php:75 diff --git a/po/ka.po b/po/ka.po index e3a31b46d0..d6bca2f9b4 100644 --- a/po/ka.po +++ b/po/ka.po @@ -311,7 +311,7 @@ msgstr "" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "მიუწვდომელია" #: db_tracking.php:75 diff --git a/po/kk.po b/po/kk.po index 24e2b5a3e1..bc4bda02d3 100644 --- a/po/kk.po +++ b/po/kk.po @@ -308,7 +308,7 @@ msgstr "%sСұраныстарды көз мөлшерiмен құрастыру #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Рұқсат жоқ" #: db_tracking.php:75 diff --git a/po/kn.po b/po/kn.po index c78de1830c..6d7287c7f8 100644 --- a/po/kn.po +++ b/po/kn.po @@ -304,7 +304,7 @@ msgstr "" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "" #: db_tracking.php:75 diff --git a/po/ko.po b/po/ko.po index 31b2b4045c..a01d6e363a 100644 --- a/po/ko.po +++ b/po/ko.po @@ -303,7 +303,7 @@ msgstr "%s비주얼 쿼리 빌더%s로 전환" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "접근이 거부되었습니다." #: db_tracking.php:75 diff --git a/po/ky.po b/po/ky.po index e1d0414893..32a4fbbf02 100644 --- a/po/ky.po +++ b/po/ky.po @@ -308,7 +308,7 @@ msgstr "%svisual builder%s көрсөт" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Кирүүгө уруксат жок" #: db_tracking.php:75 diff --git a/po/lt.po b/po/lt.po index e6a4db5ade..442ce8a2f9 100644 --- a/po/lt.po +++ b/po/lt.po @@ -312,7 +312,7 @@ msgstr "Pereiti į %svizualią daryklę%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Priėjimas uždraustas" #: db_tracking.php:75 diff --git a/po/lv.po b/po/lv.po index 9992cfed4c..02a2b951b0 100644 --- a/po/lv.po +++ b/po/lv.po @@ -305,7 +305,7 @@ msgstr "Pārslēgties uz %svisual builder%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Pieeja aizliegta" #: db_tracking.php:75 diff --git a/po/mk.po b/po/mk.po index 30360c07e5..928bcaa1f0 100644 --- a/po/mk.po +++ b/po/mk.po @@ -319,7 +319,7 @@ msgstr "Премини на копираната табела" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Пристапот не е допуштен" #: db_tracking.php:75 diff --git a/po/ml.po b/po/ml.po index dc5a275d01..d3c89ffb25 100644 --- a/po/ml.po +++ b/po/ml.po @@ -311,7 +311,7 @@ msgstr "" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "" #: db_tracking.php:75 diff --git a/po/mn.po b/po/mn.po index 045ed33ccd..f3ec3b28ca 100644 --- a/po/mn.po +++ b/po/mn.po @@ -312,7 +312,7 @@ msgstr "%sХүсэлтийн визуаль үүсгэгч%s рүү шилжих #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Хандах эрхгүй" #: db_tracking.php:75 diff --git a/po/ms.po b/po/ms.po index d63ae942ba..09a47510f1 100644 --- a/po/ms.po +++ b/po/ms.po @@ -311,7 +311,7 @@ msgstr "Tukar kepada %svisual builder%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Akses dinafikan" #: db_tracking.php:75 diff --git a/po/nb.po b/po/nb.po index 903722ea0b..0f74e93b08 100644 --- a/po/nb.po +++ b/po/nb.po @@ -311,7 +311,7 @@ msgstr "Bytt til %svisuell bygger%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Ingen tilgang" #: db_tracking.php:75 diff --git a/po/nl.po b/po/nl.po index d88a359040..fd6992ba21 100644 --- a/po/nl.po +++ b/po/nl.po @@ -303,7 +303,7 @@ msgstr "Overschakelen op %svisuele builder%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Toegang geweigerd" #: db_tracking.php:75 diff --git a/po/pa.po b/po/pa.po index dbd880a25a..5a3de43384 100644 --- a/po/pa.po +++ b/po/pa.po @@ -304,7 +304,7 @@ msgstr "" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "" #: db_tracking.php:75 diff --git a/po/pl.po b/po/pl.po index f8ed6eb530..bd80df1505 100644 --- a/po/pl.po +++ b/po/pl.po @@ -306,7 +306,7 @@ msgstr "Przełącz do %svisual builder%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Odmowa dostępu" #: db_tracking.php:75 diff --git a/po/pt.po b/po/pt.po index 8b65278e15..5594247023 100644 --- a/po/pt.po +++ b/po/pt.po @@ -304,7 +304,7 @@ msgstr "Mudar para %sConstrutor Gráfico%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Acesso Negado" #: db_tracking.php:75 diff --git a/po/pt_BR.po b/po/pt_BR.po index d560cbf4eb..d8402448f5 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -304,7 +304,7 @@ msgstr "Alterar para %sconstrutor visual%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Acesso negado" #: db_tracking.php:75 diff --git a/po/ro.po b/po/ro.po index 364088416b..3fc0b3a35f 100644 --- a/po/ro.po +++ b/po/ro.po @@ -306,7 +306,7 @@ msgstr "Comutați la %sconstructorul vizual%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Acces refuzat" #: db_tracking.php:75 diff --git a/po/ru.po b/po/ru.po index 9b4a4287a2..16fcaf39a9 100644 --- a/po/ru.po +++ b/po/ru.po @@ -307,7 +307,7 @@ msgstr "Переключиться на %sвизуальный составит #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "В доступе отказано" #: db_tracking.php:75 diff --git a/po/si.po b/po/si.po index 33daa50a02..dcfe23a503 100644 --- a/po/si.po +++ b/po/si.po @@ -302,7 +302,7 @@ msgstr "%sදෘශ්‍ය ගොඩනංවනය%s වෙත යන්න" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "පිවිසුම වලක්වා ඇත" #: db_tracking.php:75 diff --git a/po/sk.po b/po/sk.po index 8f630b0c45..fb12604e1d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -305,7 +305,7 @@ msgstr "Prepnúť do %svizuálneho návrhára%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Prístup odmietnutý" #: db_tracking.php:75 diff --git a/po/sl.po b/po/sl.po index 1fc2dc0590..86274b4447 100644 --- a/po/sl.po +++ b/po/sl.po @@ -307,7 +307,7 @@ msgstr "Preklopi na %svidni graditelj%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Dostop zavrnjen" #: db_tracking.php:75 diff --git a/po/sq.po b/po/sq.po index a5f4229a9f..feb90f9fc2 100644 --- a/po/sq.po +++ b/po/sq.po @@ -304,7 +304,7 @@ msgstr "Kalo tek %svisual builder%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Ndalohet hyrja" #: db_tracking.php:75 diff --git a/po/sr.po b/po/sr.po index 250e91e1a5..c72f6a47f0 100644 --- a/po/sr.po +++ b/po/sr.po @@ -319,7 +319,7 @@ msgstr "Пређи на копирану табелу" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Приступ одбијен" #: db_tracking.php:75 diff --git a/po/sr@latin.po b/po/sr@latin.po index b8b9ac6c4b..fd0e724bb3 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -314,7 +314,7 @@ msgstr "Pređi na %svizuelnu izradu%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Pristup odbijen" #: db_tracking.php:75 diff --git a/po/sv.po b/po/sv.po index ead1bfdfc4..d0af169570 100644 --- a/po/sv.po +++ b/po/sv.po @@ -303,7 +303,7 @@ msgstr "Växla till %sgrafisk modellerare%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Åtkomst nekad" #: db_tracking.php:75 diff --git a/po/ta.po b/po/ta.po index 23cccb4ccf..71f0739652 100644 --- a/po/ta.po +++ b/po/ta.po @@ -304,7 +304,7 @@ msgstr "%s காட்சி கட்டுனர் இற்கு %s மா #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "அனுமதி நிராகரிக்கப்பட்டுள்ளது" #: db_tracking.php:75 diff --git a/po/te.po b/po/te.po index 499e2021a7..0060d61d0b 100644 --- a/po/te.po +++ b/po/te.po @@ -317,7 +317,7 @@ msgstr "దృశ్య కల్పకం" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "యాక్సెస్ నిరోధించడమైనది" #: db_tracking.php:75 diff --git a/po/th.po b/po/th.po index 2b14850817..3ba0ffa67d 100644 --- a/po/th.po +++ b/po/th.po @@ -306,7 +306,7 @@ msgstr "สลับไปยัง %svisual builder%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "ไม่อนุญาตให้ใช้งาน" #: db_tracking.php:75 diff --git a/po/tk.po b/po/tk.po index a000ecbcb3..ac1d69ad51 100644 --- a/po/tk.po +++ b/po/tk.po @@ -308,7 +308,7 @@ msgstr "" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "" #: db_tracking.php:75 diff --git a/po/tr.po b/po/tr.po index 58be5e868c..5586bf44d6 100644 --- a/po/tr.po +++ b/po/tr.po @@ -303,7 +303,7 @@ msgstr "%sGörsel yaratıcı'ya%s geç" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Erişim engellendi" #: db_tracking.php:75 diff --git a/po/tt.po b/po/tt.po index 7934d0cd2c..dd34695553 100644 --- a/po/tt.po +++ b/po/tt.po @@ -317,7 +317,7 @@ msgstr "Kübäytelgän tüşämägä küçäse" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "İreşep Bulmadı" #: db_tracking.php:75 diff --git a/po/ug.po b/po/ug.po index 873e3b5ce7..071b691a55 100644 --- a/po/ug.po +++ b/po/ug.po @@ -314,7 +314,7 @@ msgstr "" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "رەت قىلىندى" #: db_tracking.php:75 diff --git a/po/uk.po b/po/uk.po index b252b2ade6..b4348b887a 100644 --- a/po/uk.po +++ b/po/uk.po @@ -306,7 +306,7 @@ msgstr "Перемкнутись на %sвізуальний конструкт #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Доступ заборонено" #: db_tracking.php:75 diff --git a/po/ur.po b/po/ur.po index 93a559a7fd..df250df56e 100644 --- a/po/ur.po +++ b/po/ur.po @@ -311,7 +311,7 @@ msgstr "بصری تعمیر کنندہ" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "‏‏رسائی ممکن نہیں" #: db_tracking.php:75 diff --git a/po/uz.po b/po/uz.po index 6ef567acc7..6aa982d433 100644 --- a/po/uz.po +++ b/po/uz.po @@ -302,7 +302,7 @@ msgstr "%sсўровларнинг визуал таркибига%s ўтиш" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Рухсат берилмади" #: db_tracking.php:75 diff --git a/po/uz@latin.po b/po/uz@latin.po index 92cead3241..94645fd1cc 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -319,7 +319,7 @@ msgstr "Nusxa olingan jadvalga o‘tish" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "Ruxsat berilmadi" #: db_tracking.php:75 diff --git a/po/vls.po b/po/vls.po index 860fee037c..59b0abad5b 100644 --- a/po/vls.po +++ b/po/vls.po @@ -304,7 +304,7 @@ msgstr "" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "" #: db_tracking.php:75 diff --git a/po/zh_CN.po b/po/zh_CN.po index 9a345ea49d..80bfbbd6b1 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -299,7 +299,7 @@ msgstr "切换到%s可视化查询生成器%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "访问被拒绝" #: db_tracking.php:75 diff --git a/po/zh_TW.po b/po/zh_TW.po index b1e4a3363d..5e23a40480 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -299,7 +299,7 @@ msgstr "切換至 %sVisual Builder%s" #: libraries/plugins/auth/AuthenticationCookie.class.php:683 #: libraries/plugins/auth/AuthenticationHttp.class.php:69 #: libraries/plugins/auth/AuthenticationSignon.class.php:270 -msgid "Access denied" +msgid "Access denied!" msgstr "拒絕存取" #: db_tracking.php:75