From 2f2c518c20d6e55e20e9fc2fb0ec2053854b0d1b Mon Sep 17 00:00:00 2001 From: Gerrit Uitslag Date: Tue, 25 Feb 2014 19:59:29 +0100 Subject: Show 'not logged in' only when logged out FS#2124 --- inc/lang/en/denied.txt | 2 +- inc/lang/en/lang.php | 1 + inc/template.php | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) (limited to 'inc') diff --git a/inc/lang/en/denied.txt b/inc/lang/en/denied.txt index 3ac72820c..6f7fe055e 100644 --- a/inc/lang/en/denied.txt +++ b/inc/lang/en/denied.txt @@ -1,4 +1,4 @@ ====== Permission Denied ====== -Sorry, you don't have enough rights to continue. Perhaps you forgot to login? +Sorry, you don't have enough rights to continue. @NOTLOGGEDIN@ diff --git a/inc/lang/en/lang.php b/inc/lang/en/lang.php index cbdef8661..b95a8a58a 100644 --- a/inc/lang/en/lang.php +++ b/inc/lang/en/lang.php @@ -78,6 +78,7 @@ $lang['regbadmail'] = 'The given email address looks invalid - if you $lang['regbadpass'] = 'The two given passwords are not identical, please try again.'; $lang['regpwmail'] = 'Your DokuWiki password'; $lang['reghere'] = 'You don\'t have an account yet? Just get one'; +$lang['notloggedin'] = 'Please be aware you are not logged in.'; $lang['profna'] = 'This wiki does not support profile modification'; $lang['profnochange'] = 'No changes, nothing to do.'; diff --git a/inc/template.php b/inc/template.php index 0a6a9e4aa..c9d583d98 100644 --- a/inc/template.php +++ b/inc/template.php @@ -154,7 +154,7 @@ function tpl_content_core() { html_resendpwd(); break; case 'denied': - print p_locale_xhtml('denied'); + html_denied(); break; case 'profile' : html_updateprofile(); -- cgit v1.2.3 From d59dea9fddf885a836f7dc2d8be1f93afb7e9542 Mon Sep 17 00:00:00 2001 From: Gerrit Uitslag Date: Tue, 25 Feb 2014 20:00:56 +0100 Subject: added new html_denied() method as well --- inc/html.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'inc') diff --git a/inc/html.php b/inc/html.php index fcec29670..507ba511e 100644 --- a/inc/html.php +++ b/inc/html.php @@ -64,6 +64,25 @@ function html_login(){ print ''.NL; } + +/** + * Denied page content + * + * @return string html + */ +function html_denied() { + global $lang; + $denied = p_locale_xhtml('denied'); + $notloggedin = isset($_SERVER['REMOTE_USER']) ? '' : $lang['notloggedin']; + + $denied = str_replace( + array('@NOTLOGGEDIN@'), + array($notloggedin), + $denied + ); + print $denied; +} + /** * inserts section edit buttons if wanted or removes the markers * -- cgit v1.2.3 From 8daa2c9f98ef02857c1d92f2f226288c313146a7 Mon Sep 17 00:00:00 2001 From: Gerrit Uitslag Date: Tue, 25 Feb 2014 20:13:27 +0100 Subject: Update localizations --- inc/lang/ar/denied.txt | 2 +- inc/lang/az/denied.txt | 2 +- inc/lang/bg/denied.txt | 2 +- inc/lang/bn/denied.txt | 2 +- inc/lang/ca-valencia/denied.txt | 2 +- inc/lang/ca/denied.txt | 2 +- inc/lang/cs/denied.txt | 2 +- inc/lang/da/denied.txt | 2 +- inc/lang/de-informal/denied.txt | 2 +- inc/lang/de/denied.txt | 2 +- inc/lang/el/denied.txt | 2 +- inc/lang/eo/denied.txt | 2 +- inc/lang/es/denied.txt | 2 +- inc/lang/et/denied.txt | 2 +- inc/lang/eu/denied.txt | 2 +- inc/lang/fa/denied.txt | 2 +- inc/lang/fi/denied.txt | 2 +- inc/lang/fo/denied.txt | 2 +- inc/lang/fr/denied.txt | 2 +- inc/lang/gl/denied.txt | 2 +- inc/lang/he/denied.txt | 2 +- inc/lang/hr/denied.txt | 2 +- inc/lang/hu-formal/denied.txt | 2 +- inc/lang/hu/denied.txt | 2 +- inc/lang/ia/denied.txt | 2 +- inc/lang/id/denied.txt | 2 +- inc/lang/it/denied.txt | 3 +-- inc/lang/ja/denied.txt | 2 +- inc/lang/km/denied.txt | 2 +- inc/lang/ko/denied.txt | 2 +- inc/lang/ku/denied.txt | 2 +- inc/lang/la/denied.txt | 2 +- inc/lang/lb/denied.txt | 2 +- inc/lang/lt/denied.txt | 2 +- inc/lang/lv/denied.txt | 2 +- inc/lang/mg/denied.txt | 2 +- inc/lang/mr/denied.txt | 2 +- inc/lang/ne/denied.txt | 2 +- inc/lang/nl/denied.txt | 2 +- inc/lang/no/denied.txt | 2 +- inc/lang/pl/denied.txt | 2 +- inc/lang/pt-br/denied.txt | 2 +- inc/lang/pt/denied.txt | 2 +- inc/lang/ro/denied.txt | 3 +-- inc/lang/ru/denied.txt | 2 +- inc/lang/sk/denied.txt | 2 +- inc/lang/sl/denied.txt | 2 +- inc/lang/sq/denied.txt | 2 +- inc/lang/sr/denied.txt | 2 +- inc/lang/sv/denied.txt | 2 +- inc/lang/th/denied.txt | 2 +- inc/lang/tr/denied.txt | 2 +- inc/lang/uk/denied.txt | 2 +- inc/lang/vi/denied.txt | 2 +- inc/lang/zh-tw/denied.txt | 2 +- inc/lang/zh/denied.txt | 2 +- 56 files changed, 56 insertions(+), 58 deletions(-) (limited to 'inc') diff --git a/inc/lang/ar/denied.txt b/inc/lang/ar/denied.txt index 11405233c..1d83efdff 100644 --- a/inc/lang/ar/denied.txt +++ b/inc/lang/ar/denied.txt @@ -1,3 +1,3 @@ ====== لا صلاحيات ====== -عذرا، ليس مصرح لك الاستمرار، لعلك نسيت تسجيل الدخول؟ \ No newline at end of file +عذرا، ليس مصرح لك الاستمرار @NOTLOGGEDIN@ \ No newline at end of file diff --git a/inc/lang/az/denied.txt b/inc/lang/az/denied.txt index a68b08c8c..2b5258274 100644 --- a/inc/lang/az/denied.txt +++ b/inc/lang/az/denied.txt @@ -1,3 +1,3 @@ ====== Müraciət qadağan edilmişdir ====== -Sizin bu əməliyyat üçün kifayət qədər haqqınız yoxdur. Bəlkə, Siz sistemə oz istifadəçi adınız ilə girməyi unutmusunuz? +Sizin bu əməliyyat üçün kifayət qədər haqqınız yoxdur. @NOTLOGGEDIN@ diff --git a/inc/lang/bg/denied.txt b/inc/lang/bg/denied.txt index 45ce63769..2443c3130 100644 --- a/inc/lang/bg/denied.txt +++ b/inc/lang/bg/denied.txt @@ -1,4 +1,4 @@ ====== Отказан достъп ====== -Нямате достатъчно права, за да продължите. Може би сте забравили да се впишете? +Нямате достатъчно права, за да продължите. @NOTLOGGEDIN@ diff --git a/inc/lang/bn/denied.txt b/inc/lang/bn/denied.txt index 711275bad..dbc00e26a 100644 --- a/inc/lang/bn/denied.txt +++ b/inc/lang/bn/denied.txt @@ -1,3 +1,3 @@ ====== অনুমতি অস্বীকার ===== -দুঃখিত, আপনি কি এগিয়ে যেতে যথেষ্ট অধিকার নেই. সম্ভবত আপনি লগইন ভুলে গেছেন? \ No newline at end of file +দুঃখিত, আপনি কি এগিয়ে যেতে যথেষ্ট অধিকার নেই. @NOTLOGGEDIN@ \ No newline at end of file diff --git a/inc/lang/ca-valencia/denied.txt b/inc/lang/ca-valencia/denied.txt index 39c45d946..ff42fd37a 100644 --- a/inc/lang/ca-valencia/denied.txt +++ b/inc/lang/ca-valencia/denied.txt @@ -1,4 +1,4 @@ ====== Permís denegat ====== -Disculpe, pero no té permís per a continuar. ¿Haurà oblidat iniciar sessió? +Disculpe, pero no té permís per a continuar. @NOTLOGGEDIN@ diff --git a/inc/lang/ca/denied.txt b/inc/lang/ca/denied.txt index e6125e83b..481375d2b 100644 --- a/inc/lang/ca/denied.txt +++ b/inc/lang/ca/denied.txt @@ -1,4 +1,4 @@ ====== Permís denegat ====== -No teniu prou drets per continuar. Potser us heu descuidat d'entrar? +No teniu prou drets per continuar. @NOTLOGGEDIN@ diff --git a/inc/lang/cs/denied.txt b/inc/lang/cs/denied.txt index 00a8811de..c0f82f492 100644 --- a/inc/lang/cs/denied.txt +++ b/inc/lang/cs/denied.txt @@ -1,3 +1,3 @@ ====== Nepovolená akce ====== -Promiňte, ale nemáte dostatečná oprávnění k této činnosti. Možná jste se zapomněli přihlásit? +Promiňte, ale nemáte dostatečná oprávnění k této činnosti. @NOTLOGGEDIN@ diff --git a/inc/lang/da/denied.txt b/inc/lang/da/denied.txt index a4fa8b88f..2be828c51 100644 --- a/inc/lang/da/denied.txt +++ b/inc/lang/da/denied.txt @@ -1,3 +1,3 @@ ====== Adgang nægtet! ====== -Du har ikke rettigheder til at fortsætte. Måske er du ikke logget ind. +Du har ikke rettigheder til at fortsætte. @NOTLOGGEDIN@ diff --git a/inc/lang/de-informal/denied.txt b/inc/lang/de-informal/denied.txt index 0bc0e59a8..a2713d2e9 100644 --- a/inc/lang/de-informal/denied.txt +++ b/inc/lang/de-informal/denied.txt @@ -1,4 +1,4 @@ ====== Zugang verweigert ====== -Du hast nicht die erforderliche Berechtigung, um diese Aktion durchzuführen. Eventuell bist du nicht am Wiki angemeldet? +Du hast nicht die erforderliche Berechtigung, um diese Aktion durchzuführen. @NOTLOGGEDIN@ diff --git a/inc/lang/de/denied.txt b/inc/lang/de/denied.txt index 8efa81f1b..1538c694d 100644 --- a/inc/lang/de/denied.txt +++ b/inc/lang/de/denied.txt @@ -1,4 +1,4 @@ ====== Zugang verweigert ====== -Sie haben nicht die erforderliche Berechtigung, um diese Aktion durchzuführen. Eventuell sind Sie nicht am Wiki angemeldet? +Sie haben nicht die erforderliche Berechtigung, um diese Aktion durchzuführen. @NOTLOGGEDIN@ diff --git a/inc/lang/el/denied.txt b/inc/lang/el/denied.txt index 36d7ae103..1c2717613 100644 --- a/inc/lang/el/denied.txt +++ b/inc/lang/el/denied.txt @@ -2,4 +2,4 @@ Συγγνώμη, αλλά δεν έχετε επαρκή δικαιώματα για την συγκεκριμένη ενέργεια. -Μήπως παραλείψατε να συνδεθείτε; +@NOTLOGGEDIN@ \ No newline at end of file diff --git a/inc/lang/eo/denied.txt b/inc/lang/eo/denied.txt index 3cd6c76bf..942cbbe86 100644 --- a/inc/lang/eo/denied.txt +++ b/inc/lang/eo/denied.txt @@ -1,4 +1,4 @@ ====== Aliro malpermesita ====== -Vi ne havas sufiĉajn rajtojn rigardi ĉi tiujn paĝojn. Eble vi forgesis identiĝi. +Vi ne havas sufiĉajn rajtojn rigardi ĉi tiujn paĝojn. @NOTLOGGEDIN@ diff --git a/inc/lang/es/denied.txt b/inc/lang/es/denied.txt index d7b37404b..0887e7ce6 100644 --- a/inc/lang/es/denied.txt +++ b/inc/lang/es/denied.txt @@ -1,3 +1,3 @@ ====== Permiso Denegado ====== -Lo siento, no tienes suficientes permisos para continuar. ¿Quizás has olvidado identificarte? \ No newline at end of file +Lo siento, no tienes suficientes permisos para continuar. @NOTLOGGEDIN@ \ No newline at end of file diff --git a/inc/lang/et/denied.txt b/inc/lang/et/denied.txt index bb564ac57..f2d81c007 100644 --- a/inc/lang/et/denied.txt +++ b/inc/lang/et/denied.txt @@ -1,3 +1,3 @@ ====== Sul pole ligipääsuluba ====== -Kahju küll, aga sinu tublidusest ei piisa, et edasi liikuda, selleks on vastavaid õigusi vaja. +Kahju küll, aga sinu tublidusest ei piisa, et edasi liikuda. @NOTLOGGEDIN@ diff --git a/inc/lang/eu/denied.txt b/inc/lang/eu/denied.txt index 257076a3d..d454ffdfb 100644 --- a/inc/lang/eu/denied.txt +++ b/inc/lang/eu/denied.txt @@ -1,3 +1,3 @@ ====== Ez duzu baimenik ====== -Barkatu, ez duzu baimenik orri hau ikusteko. Agian sesioa hastea ahaztu zaizu? \ No newline at end of file +Barkatu, ez duzu baimenik orri hau ikusteko. @NOTLOGGEDIN@ \ No newline at end of file diff --git a/inc/lang/fa/denied.txt b/inc/lang/fa/denied.txt index 827f73e2b..cb9258c03 100644 --- a/inc/lang/fa/denied.txt +++ b/inc/lang/fa/denied.txt @@ -1,3 +1,3 @@ ====== دسترسی ممکن نیست ====== -شرمنده، شما اجازه‌ی دسترسی ب این صفحه را ندارید. ممکن است فراموش کرده باشید که وارد سایت شوید! \ No newline at end of file +شرمنده، شما اجازه‌ی دسترسی ب این صفحه را ندارید. @NOTLOGGEDIN@ \ No newline at end of file diff --git a/inc/lang/fi/denied.txt b/inc/lang/fi/denied.txt index cd31da06b..89ae3b8e1 100644 --- a/inc/lang/fi/denied.txt +++ b/inc/lang/fi/denied.txt @@ -1,3 +1,3 @@ ====== Lupa evätty ====== -Sinulla ei ole tarpeeksi valtuuksia jatkaa. Ehkä unohdit kirjautua sisään? +Sinulla ei ole tarpeeksi valtuuksia jatkaa. @NOTLOGGEDIN@ diff --git a/inc/lang/fo/denied.txt b/inc/lang/fo/denied.txt index 505b249b4..25d98f634 100644 --- a/inc/lang/fo/denied.txt +++ b/inc/lang/fo/denied.txt @@ -1,3 +1,3 @@ ====== Atgongd nokta! ====== -Tú hevur ikki rættindi til at halda áfram. Møguliga hevur tú ikki rita inn. +Tú hevur ikki rættindi til at halda áfram. @NOTLOGGEDIN@ diff --git a/inc/lang/fr/denied.txt b/inc/lang/fr/denied.txt index 20d4d6755..640829482 100644 --- a/inc/lang/fr/denied.txt +++ b/inc/lang/fr/denied.txt @@ -1,3 +1,3 @@ ====== Autorisation refusée ====== -Désolé, vous n'avez pas les droits pour continuer. Peut-être avez-vous oublié de vous identifier ? +Désolé, vous n'avez pas les droits pour continuer. @NOTLOGGEDIN@ diff --git a/inc/lang/gl/denied.txt b/inc/lang/gl/denied.txt index 69408a4f3..a0847ecb2 100644 --- a/inc/lang/gl/denied.txt +++ b/inc/lang/gl/denied.txt @@ -1,4 +1,4 @@ ====== Permiso Denegado ====== -Sentímolo, mais non tes permisos de abondo para continuares. Pode que esqueceses iniciar a sesión? +Sentímolo, mais non tes permisos de abondo para continuares. @NOTLOGGEDIN@ diff --git a/inc/lang/he/denied.txt b/inc/lang/he/denied.txt index a366fc198..1c605f7b8 100644 --- a/inc/lang/he/denied.txt +++ b/inc/lang/he/denied.txt @@ -1,3 +1,3 @@ ====== הרשאה נדחתה ====== -אנו מצטערים אך אין לך הרשאות מתאימות כדי להמשיך. אולי שכחת להיכנס למערכת? \ No newline at end of file +אנו מצטערים אך אין לך הרשאות מתאימות כדי להמשיך. @NOTLOGGEDIN@ \ No newline at end of file diff --git a/inc/lang/hr/denied.txt b/inc/lang/hr/denied.txt index 216eea582..c9b0ca3eb 100644 --- a/inc/lang/hr/denied.txt +++ b/inc/lang/hr/denied.txt @@ -2,4 +2,4 @@ Nemate autorizaciju. -Niste li se možda zaboravili prijaviti u aplikaciju? +@NOTLOGGEDIN@ \ No newline at end of file diff --git a/inc/lang/hu-formal/denied.txt b/inc/lang/hu-formal/denied.txt index 97abd632a..f25e4f086 100644 --- a/inc/lang/hu-formal/denied.txt +++ b/inc/lang/hu-formal/denied.txt @@ -1,3 +1,3 @@ ====== Hozzáférés megtadadva ====== -Sajnáljuk, de nincs joga a folytatáshoz. Talán elfelejtett bejelentkezni? \ No newline at end of file +Sajnáljuk, de nincs joga a folytatáshoz. @NOTLOGGEDIN@ \ No newline at end of file diff --git a/inc/lang/hu/denied.txt b/inc/lang/hu/denied.txt index 0b06724df..85bb6d352 100644 --- a/inc/lang/hu/denied.txt +++ b/inc/lang/hu/denied.txt @@ -1,4 +1,4 @@ ====== Hozzáférés megtagadva ====== -Sajnáljuk, nincs jogod a folytatáshoz. Esetleg elfelejtettél bejelentkezni? +Sajnáljuk, nincs jogod a folytatáshoz. @NOTLOGGEDIN@ diff --git a/inc/lang/ia/denied.txt b/inc/lang/ia/denied.txt index 044e1532d..29d35bbde 100644 --- a/inc/lang/ia/denied.txt +++ b/inc/lang/ia/denied.txt @@ -1,3 +1,3 @@ ====== Permission refusate ====== -Pardono, tu non ha le derectos requisite pro continuar. Pote esser que tu ha oblidate de aperir un session. \ No newline at end of file +Pardono, tu non ha le derectos requisite pro continuar. @NOTLOGGEDIN@ \ No newline at end of file diff --git a/inc/lang/id/denied.txt b/inc/lang/id/denied.txt index bad8f24a6..e40be0550 100644 --- a/inc/lang/id/denied.txt +++ b/inc/lang/id/denied.txt @@ -1,4 +1,4 @@ ====== Akses Ditolak ====== -Maaf, Anda tidak mempunyai hak akses untuk melanjutkan. Apakah Anda belum login? +Maaf, Anda tidak mempunyai hak akses untuk melanjutkan. @NOTLOGGEDIN@ diff --git a/inc/lang/it/denied.txt b/inc/lang/it/denied.txt index d21956a5b..6bba10cf0 100644 --- a/inc/lang/it/denied.txt +++ b/inc/lang/it/denied.txt @@ -1,5 +1,4 @@ ====== Accesso negato ====== -Non hai i diritti per continuare. Forse hai dimenticato di effettuare l'accesso? - +Non hai i diritti per continuare. @NOTLOGGEDIN@ diff --git a/inc/lang/ja/denied.txt b/inc/lang/ja/denied.txt index d170aebe4..452d62217 100644 --- a/inc/lang/ja/denied.txt +++ b/inc/lang/ja/denied.txt @@ -1,4 +1,4 @@ ====== アクセスが拒否されました ====== -実行する権限がありません。ログインされているか確認してください。 +実行する権限がありません。@NOTLOGGEDIN@ diff --git a/inc/lang/km/denied.txt b/inc/lang/km/denied.txt index 58b10ee86..7fa1868b4 100644 --- a/inc/lang/km/denied.txt +++ b/inc/lang/km/denied.txt @@ -1,3 +1,3 @@ ====== បដិសេធអនុញ្ញាត ====== -សូមទុស អ្នកគ្មានអនុញ្ញាតទៅបណ្តទេ។ +សូមទុស អ្នកគ្មានអនុញ្ញាតទៅបណ្តទេ។ @NOTLOGGEDIN@ diff --git a/inc/lang/ko/denied.txt b/inc/lang/ko/denied.txt index cf0b294a4..50556a72e 100644 --- a/inc/lang/ko/denied.txt +++ b/inc/lang/ko/denied.txt @@ -1,3 +1,3 @@ ====== 권한 거절 ====== -죄송하지만 계속할 수 있는 권한이 없습니다. 로그인을 잊으셨나요? \ No newline at end of file +죄송하지만 계속할 수 있는 권한이 없습니다. @NOTLOGGEDIN@ \ No newline at end of file diff --git a/inc/lang/ku/denied.txt b/inc/lang/ku/denied.txt index 3ac72820c..6f7fe055e 100644 --- a/inc/lang/ku/denied.txt +++ b/inc/lang/ku/denied.txt @@ -1,4 +1,4 @@ ====== Permission Denied ====== -Sorry, you don't have enough rights to continue. Perhaps you forgot to login? +Sorry, you don't have enough rights to continue. @NOTLOGGEDIN@ diff --git a/inc/lang/la/denied.txt b/inc/lang/la/denied.txt index fdb62f53e..e703c7716 100644 --- a/inc/lang/la/denied.txt +++ b/inc/lang/la/denied.txt @@ -1,3 +1,3 @@ ====== Ad hanc paginam accedere non potes ====== -Ad hanc paginam accedere non potes: antea in conuentum ineas, deinde rursum temptas \ No newline at end of file +Ad hanc paginam accedere non potes: antea in conuentum ineas, deinde rursum temptas @NOTLOGGEDIN@ \ No newline at end of file diff --git a/inc/lang/lb/denied.txt b/inc/lang/lb/denied.txt index 487bf2198..a7b52d024 100644 --- a/inc/lang/lb/denied.txt +++ b/inc/lang/lb/denied.txt @@ -1,3 +1,3 @@ ======Erlaabnis verweigert====== -Et deet mer leed, du hues net genuch Rechter fir weiderzefueren. Hues de vläicht vergiess dech anzeloggen? +Et deet mer leed, du hues net genuch Rechter fir weiderzefueren. @NOTLOGGEDIN@ diff --git a/inc/lang/lt/denied.txt b/inc/lang/lt/denied.txt index c25fb5f0c..de651bb1a 100644 --- a/inc/lang/lt/denied.txt +++ b/inc/lang/lt/denied.txt @@ -1,4 +1,4 @@ ====== Priėjimas uždraustas ====== -Jūs neturite reikiamų teisių, kad galėtumėte tęsti. Turbūt pamiršote prisijungti :-). +Jūs neturite reikiamų teisių, kad galėtumėte tęsti. @NOTLOGGEDIN@ diff --git a/inc/lang/lv/denied.txt b/inc/lang/lv/denied.txt index c7df462c8..e8287242e 100644 --- a/inc/lang/lv/denied.txt +++ b/inc/lang/lv/denied.txt @@ -1,6 +1,6 @@ ====== Piekļuve aizliegta ====== -Atvaino, tev nav tiesību turpināt. Varbūt aizmirsi ielogoties? +Atvaino, tev nav tiesību turpināt. @NOTLOGGEDIN@ diff --git a/inc/lang/mg/denied.txt b/inc/lang/mg/denied.txt index edf20f1a1..a769bcd40 100644 --- a/inc/lang/mg/denied.txt +++ b/inc/lang/mg/denied.txt @@ -1,4 +1,4 @@ ====== Tsy tafiditra ====== -Miala tsiny fa tsy manana alalana hanohizana mankany ianao. Angamba hadinonao ny niditra. +Miala tsiny fa tsy manana alalana hanohizana mankany ianao. @NOTLOGGEDIN@ diff --git a/inc/lang/mr/denied.txt b/inc/lang/mr/denied.txt index 1b499f51d..2a7827e3e 100644 --- a/inc/lang/mr/denied.txt +++ b/inc/lang/mr/denied.txt @@ -1,3 +1,3 @@ ====== परवानगी नाकारली ====== -क्षमा करा, पण तुम्हाला यापुढे जाण्याचे हक्क नाहीत. कदाचित तुम्ही लॉगिन करायला विसरला आहात ? \ No newline at end of file +क्षमा करा, पण तुम्हाला यापुढे जाण्याचे हक्क नाहीत. @NOTLOGGEDIN@ \ No newline at end of file diff --git a/inc/lang/ne/denied.txt b/inc/lang/ne/denied.txt index ab4bcf290..69e1840e7 100644 --- a/inc/lang/ne/denied.txt +++ b/inc/lang/ne/denied.txt @@ -1,3 +1,3 @@ ====== अनुमति अमान्य ====== -माफ गर्नुहोला तपाईलाई अगाडि बढ्न अनुमति छैन। सम्भवत: तपाईले प्रवेश गर्न भुल्नु भयो। \ No newline at end of file +माफ गर्नुहोला तपाईलाई अगाडि बढ्न अनुमति छैन। @NOTLOGGEDIN@ \ No newline at end of file diff --git a/inc/lang/nl/denied.txt b/inc/lang/nl/denied.txt index 6a8bf773f..8c2cf3f42 100644 --- a/inc/lang/nl/denied.txt +++ b/inc/lang/nl/denied.txt @@ -1,3 +1,3 @@ ====== Toegang geweigerd ====== -Sorry: je hebt niet voldoende rechten om verder te gaan. Misschien ben je vergeten in te loggen? +Sorry: je hebt niet voldoende rechten om verder te gaan. @NOTLOGGEDIN@ diff --git a/inc/lang/no/denied.txt b/inc/lang/no/denied.txt index 6e7f1f28b..f34b73cbb 100644 --- a/inc/lang/no/denied.txt +++ b/inc/lang/no/denied.txt @@ -1,3 +1,3 @@ ====== Adgang forbudt ====== -Beklager, men du har ikke rettigheter til dette. Kanskje du har glemt å logge inn? +Beklager, men du har ikke rettigheter til dette. @NOTLOGGEDIN@ diff --git a/inc/lang/pl/denied.txt b/inc/lang/pl/denied.txt index d402463ef..c9352536a 100644 --- a/inc/lang/pl/denied.txt +++ b/inc/lang/pl/denied.txt @@ -1,4 +1,4 @@ ====== Brak dostępu ====== -Nie masz wystarczających uprawnień. Zaloguj się! +Nie masz wystarczających uprawnień. @NOTLOGGEDIN@ diff --git a/inc/lang/pt-br/denied.txt b/inc/lang/pt-br/denied.txt index d7e423f42..5f6cc318d 100644 --- a/inc/lang/pt-br/denied.txt +++ b/inc/lang/pt-br/denied.txt @@ -1,3 +1,3 @@ ====== Permissão Negada ====== -Desculpe, você não tem permissões suficientes para continuar. Por acaso esqueceu de autenticar-se? +Desculpe, você não tem permissões suficientes para continuar. @NOTLOGGEDIN@ diff --git a/inc/lang/pt/denied.txt b/inc/lang/pt/denied.txt index eb2614387..e3e0c6e4b 100644 --- a/inc/lang/pt/denied.txt +++ b/inc/lang/pt/denied.txt @@ -1,3 +1,3 @@ ====== Permissão Negada ====== -Não possui direitos e permissões suficientes para continuar. Talvez se tenha esquecido de iniciar sessão? \ No newline at end of file +Não possui direitos e permissões suficientes para continuar. @NOTLOGGEDIN@ \ No newline at end of file diff --git a/inc/lang/ro/denied.txt b/inc/lang/ro/denied.txt index 8e8126a17..966b259b9 100644 --- a/inc/lang/ro/denied.txt +++ b/inc/lang/ro/denied.txt @@ -1,4 +1,3 @@ ====== Acces nepermis ====== -Din păcate nu ai destule drepturi pentru a continua. Poate ai uitat să te -autentifici? +Din păcate nu ai destule drepturi pentru a continua. @NOTLOGGEDIN@ diff --git a/inc/lang/ru/denied.txt b/inc/lang/ru/denied.txt index f7f53ce88..e8143810e 100644 --- a/inc/lang/ru/denied.txt +++ b/inc/lang/ru/denied.txt @@ -1,3 +1,3 @@ ====== Доступ запрещён ====== -Извините, у вас не хватает прав для этого действия. Может быть вы забыли войти в вики под своим логином? +Извините, у вас не хватает прав для этого действия. @NOTLOGGEDIN@ \ No newline at end of file diff --git a/inc/lang/sk/denied.txt b/inc/lang/sk/denied.txt index 6e9c98496..191c9b42a 100644 --- a/inc/lang/sk/denied.txt +++ b/inc/lang/sk/denied.txt @@ -1,3 +1,3 @@ ====== Nepovolená akcia ====== -Prepáčte, ale nemáte dostatočné oprávnenie k tejto činnosti. Možno ste sa zabudli prihlásiť? +Prepáčte, ale nemáte dostatočné oprávnenie k tejto činnosti. @NOTLOGGEDIN@ diff --git a/inc/lang/sl/denied.txt b/inc/lang/sl/denied.txt index 5b5fd4d3a..ca73c53a2 100644 --- a/inc/lang/sl/denied.txt +++ b/inc/lang/sl/denied.txt @@ -1,3 +1,3 @@ ====== Ni ustreznih dovoljenj ====== -Za nadaljevanje opravila je treba imeti ustrezna dovoljenja. Ali ste se morda pozabili prijaviti? +Za nadaljevanje opravila je treba imeti ustrezna dovoljenja. @NOTLOGGEDIN@ diff --git a/inc/lang/sq/denied.txt b/inc/lang/sq/denied.txt index 03e10527f..19b04f1f9 100644 --- a/inc/lang/sq/denied.txt +++ b/inc/lang/sq/denied.txt @@ -1,3 +1,3 @@ ====== Leja Refuzohet ====== -Na vjen keq, ju nuk keni të drejta të mjaftueshme për të vazhduar. Mbase harruat të hyni? \ No newline at end of file +Na vjen keq, ju nuk keni të drejta të mjaftueshme për të vazhduar. @NOTLOGGEDIN@ \ No newline at end of file diff --git a/inc/lang/sr/denied.txt b/inc/lang/sr/denied.txt index b74f2b1f8..42d0bdf57 100644 --- a/inc/lang/sr/denied.txt +++ b/inc/lang/sr/denied.txt @@ -1,4 +1,4 @@ ====== Забрањен приступ ====== -Извините, али немате довољно права да наставите. Можда сте заборавили да се пријавите? +Извините, али немате довољно права да наставите. @NOTLOGGEDIN@ diff --git a/inc/lang/sv/denied.txt b/inc/lang/sv/denied.txt index 64d129227..a60632c6a 100644 --- a/inc/lang/sv/denied.txt +++ b/inc/lang/sv/denied.txt @@ -1,4 +1,4 @@ ====== Åtkomst nekad ====== -Tyvärr, du har inte behörighet att fortsätta. Kanske har du glömt att logga in? +Tyvärr, du har inte behörighet att fortsätta. @NOTLOGGEDIN@ diff --git a/inc/lang/th/denied.txt b/inc/lang/th/denied.txt index 88b012a67..6375697e2 100644 --- a/inc/lang/th/denied.txt +++ b/inc/lang/th/denied.txt @@ -1,3 +1,3 @@ ====== ปฏิเสธสิทธิ์ ====== -ขออภัย คุณไม่มีสิทธิ์เพียงพอที่จะดำเนินการต่อ บางทีคุณอาจจะลืมล็อกอิน? \ No newline at end of file +ขออภัย คุณไม่มีสิทธิ์เพียงพอที่จะดำเนินการต่อ @NOTLOGGEDIN@ \ No newline at end of file diff --git a/inc/lang/tr/denied.txt b/inc/lang/tr/denied.txt index 04e9b8bfb..ecc277c1f 100644 --- a/inc/lang/tr/denied.txt +++ b/inc/lang/tr/denied.txt @@ -1,4 +1,4 @@ ====== Yetki Reddedildi ====== -Üzgünüz, devam etmek için yetkiniz yok. Giriş yapmayı unutmuş olabilir misiniz? +Üzgünüz, devam etmek için yetkiniz yok. @NOTLOGGEDIN@ diff --git a/inc/lang/uk/denied.txt b/inc/lang/uk/denied.txt index 5db12e1bc..8e0a4fe7f 100644 --- a/inc/lang/uk/denied.txt +++ b/inc/lang/uk/denied.txt @@ -1,4 +1,4 @@ ====== Доступ заборонено ====== -Вибачте, але у вас не вистачає прав для продовження. Можливо ви забули увійти в систему? +Вибачте, але у вас не вистачає прав для продовження. @NOTLOGGEDIN@ diff --git a/inc/lang/vi/denied.txt b/inc/lang/vi/denied.txt index 35acaeb62..58739e63e 100644 --- a/inc/lang/vi/denied.txt +++ b/inc/lang/vi/denied.txt @@ -1,3 +1,3 @@ ====== Không được phép vào ====== -Rất tiếc là bạn không được phép để tiếp tục. Bạn quên đăng nhập hay sao? +Rất tiếc là bạn không được phép để tiếp tục. @NOTLOGGEDIN@ diff --git a/inc/lang/zh-tw/denied.txt b/inc/lang/zh-tw/denied.txt index 5a4d483a5..4297c1a20 100644 --- a/inc/lang/zh-tw/denied.txt +++ b/inc/lang/zh-tw/denied.txt @@ -1,4 +1,4 @@ ====== 權限拒絕 ====== -抱歉,您沒有足夠權限繼續執行。或許您忘了登入? +抱歉,您沒有足夠權限繼續執行。@NOTLOGGEDIN@ diff --git a/inc/lang/zh/denied.txt b/inc/lang/zh/denied.txt index 276741c40..bf3a85478 100644 --- a/inc/lang/zh/denied.txt +++ b/inc/lang/zh/denied.txt @@ -1,3 +1,3 @@ ====== 拒绝授权 ====== -对不起,您没有足够权限,无法继续。也许您忘了登录? \ No newline at end of file +对不起,您没有足够权限,无法继续。@NOTLOGGEDIN@ \ No newline at end of file -- cgit v1.2.3 From 524df5769a0b9b7aa35af6500c85528c2b0515fe Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Fri, 28 Feb 2014 12:43:19 +0100 Subject: added stripped bit to language file this has been done by a script and might not be 100% accurate --- inc/lang/ar/lang.php | 1 + inc/lang/az/lang.php | 1 + inc/lang/bg/lang.php | 1 + inc/lang/bn/lang.php | 1 + inc/lang/ca-valencia/lang.php | 1 + inc/lang/ca/lang.php | 1 + inc/lang/cs/lang.php | 1 + inc/lang/da/lang.php | 1 + inc/lang/de-informal/lang.php | 1 + inc/lang/de/lang.php | 1 + inc/lang/el/lang.php | 1 + inc/lang/eo/lang.php | 1 + inc/lang/es/lang.php | 1 + inc/lang/et/lang.php | 1 + inc/lang/eu/lang.php | 1 + inc/lang/fa/lang.php | 1 + inc/lang/fi/lang.php | 1 + inc/lang/fo/lang.php | 1 + inc/lang/fr/lang.php | 1 + inc/lang/gl/lang.php | 1 + inc/lang/he/lang.php | 1 + inc/lang/hr/lang.php | 1 + inc/lang/hu-formal/lang.php | 1 + inc/lang/hu/lang.php | 1 + inc/lang/ia/lang.php | 1 + inc/lang/id/lang.php | 1 + inc/lang/it/lang.php | 1 + inc/lang/ja/lang.php | 1 + inc/lang/km/lang.php | 1 + inc/lang/ko/lang.php | 1 + inc/lang/ku/lang.php | 1 + inc/lang/la/lang.php | 1 + inc/lang/lb/lang.php | 1 + inc/lang/lt/lang.php | 1 + inc/lang/lv/lang.php | 1 + inc/lang/mg/lang.php | 1 + inc/lang/mr/lang.php | 1 + inc/lang/ne/lang.php | 1 + inc/lang/nl/lang.php | 1 + inc/lang/no/lang.php | 1 + inc/lang/pl/lang.php | 1 + inc/lang/pt-br/lang.php | 1 + inc/lang/pt/lang.php | 1 + inc/lang/ro/lang.php | 1 + inc/lang/ru/lang.php | 1 + inc/lang/sk/lang.php | 1 + inc/lang/sl/lang.php | 1 + inc/lang/sq/lang.php | 1 + inc/lang/sr/lang.php | 1 + inc/lang/sv/lang.php | 1 + inc/lang/th/lang.php | 1 + inc/lang/tr/lang.php | 1 + inc/lang/uk/lang.php | 1 + inc/lang/vi/lang.php | 1 + inc/lang/zh-tw/lang.php | 1 + inc/lang/zh/lang.php | 1 + 56 files changed, 56 insertions(+) (limited to 'inc') diff --git a/inc/lang/ar/lang.php b/inc/lang/ar/lang.php index 157513429..f5e56de90 100644 --- a/inc/lang/ar/lang.php +++ b/inc/lang/ar/lang.php @@ -341,3 +341,4 @@ $lang['media_restore'] = 'استرجع هذه النسخة'; $lang['currentns'] = 'مساحة الاسم الحالية'; $lang['searchresult'] = 'نتيجة البحث'; $lang['wikimarkup'] = 'علامات الوكي'; +$lang['notloggedin'] = 'الاستمرار، لعلك نسيت تسجيل الدخول؟'; diff --git a/inc/lang/az/lang.php b/inc/lang/az/lang.php index df54b4f10..5ea965626 100644 --- a/inc/lang/az/lang.php +++ b/inc/lang/az/lang.php @@ -215,3 +215,4 @@ $lang['days'] = '%d gün əvvəl'; $lang['hours'] = '%d saat əvvəl'; $lang['minutes'] = '%d dəqiqə əvvəl'; $lang['seconds'] = '%d saniyə əvvəl'; +$lang['notloggedin'] = 'Bəlkə, Siz sistemə oz istifadəçi adınız ilə girməyi unutmusunuz?'; diff --git a/inc/lang/bg/lang.php b/inc/lang/bg/lang.php index bb74ff1ca..79bab5865 100644 --- a/inc/lang/bg/lang.php +++ b/inc/lang/bg/lang.php @@ -330,3 +330,4 @@ $lang['media_update'] = 'Качване на нова версия'; $lang['media_restore'] = 'Възстановяване на тази версия'; $lang['searchresult'] = 'Резултати от търсенето'; $lang['plainhtml'] = 'Обикновен HTML'; +$lang['notloggedin'] = 'Може би сте забравили да се впишете?'; diff --git a/inc/lang/bn/lang.php b/inc/lang/bn/lang.php index 94a3fbb12..f538e47ec 100644 --- a/inc/lang/bn/lang.php +++ b/inc/lang/bn/lang.php @@ -127,3 +127,4 @@ $lang['js']['medialeft'] = 'বাম দিকে ইমেজ সার $lang['js']['mediaright'] = 'ডান দিকে ইমেজ সারিবদ্ধ কর'; $lang['js']['mediacenter'] = 'মাঝখানে ইমেজ সারিবদ্ধ কর'; $lang['js']['medianoalign'] = 'কোনো সারিবদ্ধ করা প্রয়োজন নেই'; +$lang['notloggedin'] = 'সম্ভবত আপনি লগইন ভুলে গেছেন?'; diff --git a/inc/lang/ca-valencia/lang.php b/inc/lang/ca-valencia/lang.php index 9ab423783..e5bd58417 100644 --- a/inc/lang/ca-valencia/lang.php +++ b/inc/lang/ca-valencia/lang.php @@ -220,3 +220,4 @@ $lang['days'] = 'fa %d dies'; $lang['hours'] = 'fa %d hores'; $lang['minutes'] = 'fa %d minuts'; $lang['seconds'] = 'fa %d segons'; +$lang['notloggedin'] = '¿Haurà oblidat iniciar sessió?'; diff --git a/inc/lang/ca/lang.php b/inc/lang/ca/lang.php index fd19c6834..810a613c2 100644 --- a/inc/lang/ca/lang.php +++ b/inc/lang/ca/lang.php @@ -313,3 +313,4 @@ $lang['media_perm_read'] = 'No teniu permisos suficients per a llegir arxi $lang['media_perm_upload'] = 'No teniu permisos suficients per a pujar arxius'; $lang['media_update'] = 'Puja la nova versió'; $lang['media_restore'] = 'Restaura aquesta versió'; +$lang['notloggedin'] = 'Potser us heu descuidat d\'entrar?'; diff --git a/inc/lang/cs/lang.php b/inc/lang/cs/lang.php index a0f69b3dc..8461277ca 100644 --- a/inc/lang/cs/lang.php +++ b/inc/lang/cs/lang.php @@ -342,3 +342,4 @@ $lang['currentns'] = 'Aktuální jmenný prostor'; $lang['searchresult'] = 'Výsledek hledání'; $lang['plainhtml'] = 'Čisté HTML'; $lang['wikimarkup'] = 'Wiki jazyk'; +$lang['notloggedin'] = 'Možná jste se zapomněli přihlásit?'; diff --git a/inc/lang/da/lang.php b/inc/lang/da/lang.php index eb50bb240..c2d892d2a 100644 --- a/inc/lang/da/lang.php +++ b/inc/lang/da/lang.php @@ -336,3 +336,4 @@ $lang['media_perm_read'] = 'Du har ikke nok rettigheder til at læse filer $lang['media_perm_upload'] = 'Du har ikke nok rettigheder til at uploade filer.'; $lang['media_update'] = 'Upload ny version'; $lang['media_restore'] = 'Genskab denne version'; +$lang['notloggedin'] = 'Måske er du ikke logget ind.'; diff --git a/inc/lang/de-informal/lang.php b/inc/lang/de-informal/lang.php index be3f14a18..c9e478649 100644 --- a/inc/lang/de-informal/lang.php +++ b/inc/lang/de-informal/lang.php @@ -343,3 +343,4 @@ $lang['media_update'] = 'Neue Version hochladen'; $lang['media_restore'] = 'Diese Version wiederherstellen'; $lang['currentns'] = 'Aktueller Namensraum'; $lang['searchresult'] = 'Suchergebnis'; +$lang['notloggedin'] = 'Eventuell bist du nicht am Wiki angemeldet?'; diff --git a/inc/lang/de/lang.php b/inc/lang/de/lang.php index 9df1035f7..01f2e81c5 100644 --- a/inc/lang/de/lang.php +++ b/inc/lang/de/lang.php @@ -345,3 +345,4 @@ $lang['media_restore'] = 'Diese Version wiederherstellen'; $lang['currentns'] = 'Aktueller Namensraum'; $lang['searchresult'] = 'Suchergebnisse'; $lang['plainhtml'] = 'HTML Klartext'; +$lang['notloggedin'] = 'Eventuell sind Sie nicht am Wiki angemeldet?'; diff --git a/inc/lang/el/lang.php b/inc/lang/el/lang.php index 170e101a5..89bcc08b3 100644 --- a/inc/lang/el/lang.php +++ b/inc/lang/el/lang.php @@ -330,3 +330,4 @@ $lang['media_perm_upload'] = 'Συγνώμη, δεν έχετε επαρκή $lang['media_update'] = 'Φόρτωση νέας έκδοσης'; $lang['media_restore'] = 'Επαναφορά αυτή της έκδοσης'; $lang['searchresult'] = 'Αποτέλεσμα έρευνας'; +$lang['notloggedin'] = 'Μήπως παραλείψατε να συνδεθείτε;'; diff --git a/inc/lang/eo/lang.php b/inc/lang/eo/lang.php index 97231bdce..3252a6c2b 100644 --- a/inc/lang/eo/lang.php +++ b/inc/lang/eo/lang.php @@ -335,3 +335,4 @@ $lang['currentns'] = 'Aktuala nomspaco'; $lang['searchresult'] = 'Serĉrezulto'; $lang['plainhtml'] = 'Plena HTML'; $lang['wikimarkup'] = 'Vikiteksto'; +$lang['notloggedin'] = 'Eble vi forgesis identiĝi.'; diff --git a/inc/lang/es/lang.php b/inc/lang/es/lang.php index 216093f6c..9dc406aef 100644 --- a/inc/lang/es/lang.php +++ b/inc/lang/es/lang.php @@ -356,3 +356,4 @@ $lang['currentns'] = 'Espacio de nombres actual'; $lang['searchresult'] = 'Resultado de la búsqueda'; $lang['plainhtml'] = 'HTML sencillo'; $lang['wikimarkup'] = 'Etiquetado Wiki'; +$lang['notloggedin'] = '¿Quizás has olvidado identificarte?'; diff --git a/inc/lang/et/lang.php b/inc/lang/et/lang.php index cc736db4d..58877f3bc 100644 --- a/inc/lang/et/lang.php +++ b/inc/lang/et/lang.php @@ -229,3 +229,4 @@ $lang['i_pol0'] = 'Avatud (lugemine, kirjutamine ja üleslaadimin $lang['i_pol1'] = 'Avalikuks lugemiseks (lugeda saavad kõik, kirjutada ja üles laadida vaid registreeritud kasutajad)'; $lang['i_pol2'] = 'Suletud (kõik õigused, kaasaarvatud lugemine on lubatud vaid registreeritud kasutajatele)'; $lang['i_retry'] = 'Proovi uuesti'; +$lang['notloggedin'] = 'liikuda, selleks on vastavaid õigusi vaja.'; diff --git a/inc/lang/eu/lang.php b/inc/lang/eu/lang.php index c7e7ead9a..fb42dfb27 100644 --- a/inc/lang/eu/lang.php +++ b/inc/lang/eu/lang.php @@ -306,3 +306,4 @@ $lang['media_viewold'] = '%s -n %s'; $lang['media_edit'] = '%s editatu'; $lang['media_update'] = 'Bertsio berria igo'; $lang['media_restore'] = 'Bertsio hau berrezarri'; +$lang['notloggedin'] = 'Agian sesioa hastea ahaztu zaizu?'; diff --git a/inc/lang/fa/lang.php b/inc/lang/fa/lang.php index dbad62890..2b4c35b27 100644 --- a/inc/lang/fa/lang.php +++ b/inc/lang/fa/lang.php @@ -324,3 +324,4 @@ $lang['media_perm_read'] = 'متاسفانه ، شما حق خواندن $lang['media_perm_upload'] = 'متاسفانه ، شما حق آپلود این فایل ها را ندارید.'; $lang['media_update'] = 'آپلود نسخه جدید'; $lang['media_restore'] = 'بازیابی این نسخه'; +$lang['notloggedin'] = 'ممکن است فراموش کرده باشید که وارد سایت شوید!'; diff --git a/inc/lang/fi/lang.php b/inc/lang/fi/lang.php index feefc3da8..10a730f3f 100644 --- a/inc/lang/fi/lang.php +++ b/inc/lang/fi/lang.php @@ -334,3 +334,4 @@ $lang['currentns'] = 'Nykyinen nimiavaruus'; $lang['searchresult'] = 'Haun tulokset'; $lang['plainhtml'] = 'pelkkä HTML'; $lang['wikimarkup'] = 'Wiki markup'; +$lang['notloggedin'] = 'Ehkä unohdit kirjautua sisään?'; diff --git a/inc/lang/fo/lang.php b/inc/lang/fo/lang.php index 161e7321a..e4814869f 100644 --- a/inc/lang/fo/lang.php +++ b/inc/lang/fo/lang.php @@ -169,3 +169,4 @@ $lang['img_format'] = 'Snið'; $lang['img_camera'] = 'Fototól'; $lang['img_keywords'] = 'Evnisorð'; $lang['authtempfail'] = 'Validering av brúkara virkar fyribils ikki. Um hetta er varandi, fá so samband við umboðsstjóran á hesi wiki.'; +$lang['notloggedin'] = 'Møguliga hevur tú ikki rita inn.'; diff --git a/inc/lang/fr/lang.php b/inc/lang/fr/lang.php index 49f617323..b50e4eed0 100644 --- a/inc/lang/fr/lang.php +++ b/inc/lang/fr/lang.php @@ -352,3 +352,4 @@ $lang['currentns'] = 'Namespace actuel'; $lang['searchresult'] = 'Résultat de la recherche'; $lang['plainhtml'] = 'HTML brut'; $lang['wikimarkup'] = 'Wiki balise'; +$lang['notloggedin'] = 'poursuivre votre demande. Peut-être avez-vous oublié de vous identifier ?'; diff --git a/inc/lang/gl/lang.php b/inc/lang/gl/lang.php index 65967a3b5..3e5229a17 100644 --- a/inc/lang/gl/lang.php +++ b/inc/lang/gl/lang.php @@ -318,3 +318,4 @@ $lang['media_perm_read'] = 'Sentímolo, non tes permisos suficientes para $lang['media_perm_upload'] = 'Sentímolo, non tes permisos suficientes para subir arquivos.'; $lang['media_update'] = 'Subir nova versión'; $lang['media_restore'] = 'Restaurar esta versión'; +$lang['notloggedin'] = 'Pode que esqueceses iniciar a sesión?'; diff --git a/inc/lang/he/lang.php b/inc/lang/he/lang.php index 8efe0da17..7012c0e17 100644 --- a/inc/lang/he/lang.php +++ b/inc/lang/he/lang.php @@ -325,3 +325,4 @@ $lang['media_sort_date'] = 'תאריך'; $lang['media_namespaces'] = 'בחר מרחב שמות'; $lang['media_files'] = 'קבצים ב s%'; $lang['media_upload'] = 'להעלות s%'; +$lang['notloggedin'] = 'אולי שכחת להיכנס למערכת?'; diff --git a/inc/lang/hr/lang.php b/inc/lang/hr/lang.php index f19610827..fe3a64d4d 100644 --- a/inc/lang/hr/lang.php +++ b/inc/lang/hr/lang.php @@ -263,3 +263,4 @@ $lang['hours'] = '%d sati prije'; $lang['minutes'] = '%d minuta prije'; $lang['seconds'] = '%d sekundi prije'; $lang['wordblock'] = 'Vaša promjena nije spremljena jer sadrži blokirani tekst (spam).'; +$lang['notloggedin'] = 'Niste li se možda zaboravili prijaviti u aplikaciju?'; diff --git a/inc/lang/hu-formal/lang.php b/inc/lang/hu-formal/lang.php index a98bdc0d3..09bbdc58f 100644 --- a/inc/lang/hu-formal/lang.php +++ b/inc/lang/hu-formal/lang.php @@ -25,3 +25,4 @@ $lang['btn_older'] = 'régebbi >>'; $lang['btn_revs'] = 'Korábbi változatok'; $lang['btn_recent'] = 'Legújabb változások'; $lang['btn_upload'] = 'Feltöltés'; +$lang['notloggedin'] = 'Talán elfelejtett bejelentkezni?'; diff --git a/inc/lang/hu/lang.php b/inc/lang/hu/lang.php index a0aef9447..6fb20cc3f 100644 --- a/inc/lang/hu/lang.php +++ b/inc/lang/hu/lang.php @@ -338,3 +338,4 @@ $lang['currentns'] = 'Aktuális névtér'; $lang['searchresult'] = 'Keresés eredménye'; $lang['plainhtml'] = 'Sima HTML'; $lang['wikimarkup'] = 'Wiki-jelölőnyelv'; +$lang['notloggedin'] = 'Esetleg elfelejtettél bejelentkezni?'; diff --git a/inc/lang/ia/lang.php b/inc/lang/ia/lang.php index 144dfe33b..7fc4dbb68 100644 --- a/inc/lang/ia/lang.php +++ b/inc/lang/ia/lang.php @@ -260,3 +260,4 @@ $lang['days'] = '%d dies retro'; $lang['hours'] = '%d horas retro'; $lang['minutes'] = '%d minutas retro'; $lang['seconds'] = '%d secundas retro'; +$lang['notloggedin'] = 'Pote esser que tu ha oblidate de aperir un session.'; diff --git a/inc/lang/id/lang.php b/inc/lang/id/lang.php index 5cb5cb6ea..34c687f1d 100644 --- a/inc/lang/id/lang.php +++ b/inc/lang/id/lang.php @@ -218,3 +218,4 @@ $lang['i_pol0'] = 'Wiki Terbuka (baca, tulis, upload untuk semua $lang['i_pol1'] = 'Wiki Publik (baca untuk semua orang, tulis dan upload untuk pengguna terdaftar)'; $lang['i_pol2'] = 'Wiki Privat (baca, tulis dan upload hanya untuk pengguna terdaftar)'; $lang['i_retry'] = 'Coba Lagi'; +$lang['notloggedin'] = 'Apakah Anda belum login?'; diff --git a/inc/lang/it/lang.php b/inc/lang/it/lang.php index a2bde3b60..95d64e00f 100644 --- a/inc/lang/it/lang.php +++ b/inc/lang/it/lang.php @@ -338,3 +338,4 @@ $lang['media_perm_upload'] = 'Spiacente, non hai abbastanza privilegi per ca $lang['media_update'] = 'Carica nuova versione'; $lang['media_restore'] = 'Ripristina questa versione'; $lang['searchresult'] = 'Risultati della ricerca'; +$lang['notloggedin'] = 'Forse hai dimenticato di effettuare l\'accesso?'; diff --git a/inc/lang/ja/lang.php b/inc/lang/ja/lang.php index 1f53b0a90..367c56a9b 100644 --- a/inc/lang/ja/lang.php +++ b/inc/lang/ja/lang.php @@ -336,3 +336,4 @@ $lang['currentns'] = '現在の名前空間'; $lang['searchresult'] = '検索結果'; $lang['plainhtml'] = 'プレーンHTML'; $lang['wikimarkup'] = 'Wikiマークアップ'; +$lang['notloggedin'] = '実行する権限がありません。ログインされているか確認してください。'; diff --git a/inc/lang/km/lang.php b/inc/lang/km/lang.php index 4800b6c23..5712956b0 100644 --- a/inc/lang/km/lang.php +++ b/inc/lang/km/lang.php @@ -204,3 +204,4 @@ $lang['i_pol2'] = 'វីគីបិទជិត'; $lang['i_retry'] = 'ម្តងទៀត'; //Setup VIM: ex: et ts=2 : +$lang['notloggedin'] = 'សូមទុស អ្នកគ្មានអនុញ្ញាតទៅបណ្តទេ។ '; diff --git a/inc/lang/ko/lang.php b/inc/lang/ko/lang.php index 266ff01e5..120caba78 100644 --- a/inc/lang/ko/lang.php +++ b/inc/lang/ko/lang.php @@ -336,3 +336,4 @@ $lang['currentns'] = '현재 이름공간'; $lang['searchresult'] = '검색 결과'; $lang['plainhtml'] = '일반 HTML'; $lang['wikimarkup'] = '위키 문법'; +$lang['notloggedin'] = '로그인을 잊으셨나요?'; diff --git a/inc/lang/ku/lang.php b/inc/lang/ku/lang.php index b6287806d..a8a1b8cbf 100644 --- a/inc/lang/ku/lang.php +++ b/inc/lang/ku/lang.php @@ -140,3 +140,4 @@ $lang['img_camera'] = 'Camera'; $lang['img_keywords']= 'Keywords'; //Setup VIM: ex: et ts=2 : +$lang['notloggedin'] = 'Perhaps you forgot to login?'; diff --git a/inc/lang/la/lang.php b/inc/lang/la/lang.php index c71a71bdd..885c4f4b8 100644 --- a/inc/lang/la/lang.php +++ b/inc/lang/la/lang.php @@ -260,3 +260,4 @@ $lang['hours'] = 'a horis %d'; $lang['minutes'] = 'a minutis %d'; $lang['seconds'] = 'a secundis %d'; $lang['wordblock'] = 'Mutationes non seruantur, eo quod mala uerba contenit'; +$lang['notloggedin'] = 'Ad hanc paginam accedere non potes: antea in conuentum ineas, deinde rursum temptas '; diff --git a/inc/lang/lb/lang.php b/inc/lang/lb/lang.php index 55113745a..7778478a4 100644 --- a/inc/lang/lb/lang.php +++ b/inc/lang/lb/lang.php @@ -194,3 +194,4 @@ $lang['days'] = 'virun %d Deeg'; $lang['hours'] = 'virun %d Stonnen'; $lang['minutes'] = 'virun %d Minutten'; $lang['seconds'] = 'virun %d Sekonnen'; +$lang['notloggedin'] = 'Hues de vläicht vergiess dech anzeloggen?'; diff --git a/inc/lang/lt/lang.php b/inc/lang/lt/lang.php index c38ea8838..f03d6d5cd 100644 --- a/inc/lang/lt/lang.php +++ b/inc/lang/lt/lang.php @@ -181,3 +181,4 @@ $lang['i_wikiname'] = 'Wiki vardas'; $lang['i_enableacl'] = 'Įjungti ACL (rekomenduojama)'; $lang['i_superuser'] = 'Supervartotojas'; $lang['i_problems'] = 'Instaliavimo metu buvo klaidų, kurios pateiktos žemiau. Tęsti negalima, kol nebus pašalintos priežastys.'; +$lang['notloggedin'] = 'Turbūt pamiršote prisijungti :-).'; diff --git a/inc/lang/lv/lang.php b/inc/lang/lv/lang.php index 898125d60..df16a385d 100644 --- a/inc/lang/lv/lang.php +++ b/inc/lang/lv/lang.php @@ -318,3 +318,4 @@ $lang['media_perm_read'] = 'Atvainojiet, jums nav tiesību skatīt failus. $lang['media_perm_upload'] = 'Atvainojiet, jums nav tiesību augšupielādēt. '; $lang['media_update'] = 'Augšupielādēt jaunu versiju'; $lang['media_restore'] = 'Atjaunot šo versiju'; +$lang['notloggedin'] = 'Varbūt aizmirsi ielogoties?'; diff --git a/inc/lang/mg/lang.php b/inc/lang/mg/lang.php index c5ed669a9..f179f2c28 100644 --- a/inc/lang/mg/lang.php +++ b/inc/lang/mg/lang.php @@ -119,3 +119,4 @@ $lang['js']['del_confirm']= 'Hofafana ilay andalana?'; $lang['admin_register']= 'Ampio mpampiasa vaovao...'; //Setup VIM: ex: et ts=2 : +$lang['notloggedin'] = 'Angamba hadinonao ny niditra.'; diff --git a/inc/lang/mr/lang.php b/inc/lang/mr/lang.php index 54b69974d..15976d4a1 100644 --- a/inc/lang/mr/lang.php +++ b/inc/lang/mr/lang.php @@ -264,3 +264,4 @@ $lang['i_pol1'] = 'सार्वजनिक विकी ( स $lang['i_pol2'] = 'बंदिस्त विकी ( वाचन , लेखन व अपलोडची परवानगी फक्त नोंदणीकृत सदस्यांना ) '; $lang['i_retry'] = 'पुन्हा प्रयत्न'; $lang['recent_global'] = 'तुम्ही सध्या %s या नेमस्पेस मधील बदल पाहात आहात.तुम्ही पूर्ण विकी मधले बदल सुद्धा पाहू शकता.'; +$lang['notloggedin'] = 'कदाचित तुम्ही लॉगिन करायला विसरला आहात ?'; diff --git a/inc/lang/ne/lang.php b/inc/lang/ne/lang.php index 7fd14d2c5..5b24d4c49 100644 --- a/inc/lang/ne/lang.php +++ b/inc/lang/ne/lang.php @@ -192,3 +192,4 @@ $lang['i_pol1'] = 'Public विकि (पठन सवैका $lang['i_pol2'] = 'बन्द विकि (पठन , लेखन, अपलोड ) दर्ता भएका प्रयोगकर्ताका लागि मात्र ।'; $lang['i_retry'] = 'पुन: प्रयास गर्नुहोस् '; $lang['recent_global'] = 'तपाई अहिले %s नेमस्पेस भित्र भएका परिवर्तन हेर्दैहुनुहुन्छ। तपाई पुरै विकिमा भएको परिवर्तन हेर्न सक्नुहुन्छ.'; +$lang['notloggedin'] = 'सम्भवत: तपाईले प्रवेश गर्न भुल्नु भयो।'; diff --git a/inc/lang/nl/lang.php b/inc/lang/nl/lang.php index e5e3e3c76..03574b24f 100644 --- a/inc/lang/nl/lang.php +++ b/inc/lang/nl/lang.php @@ -347,3 +347,4 @@ $lang['currentns'] = 'Huidige namespace'; $lang['searchresult'] = 'Zoekresultaat'; $lang['plainhtml'] = 'Alleen HTML'; $lang['wikimarkup'] = 'Wiki Opmaak'; +$lang['notloggedin'] = 'Misschien ben je vergeten in te loggen?'; diff --git a/inc/lang/no/lang.php b/inc/lang/no/lang.php index 3f31f6c73..278254f3f 100644 --- a/inc/lang/no/lang.php +++ b/inc/lang/no/lang.php @@ -348,3 +348,4 @@ $lang['media_restore'] = 'Gjenopprett denne versjonen'; $lang['currentns'] = 'gjeldende navnemellomrom'; $lang['searchresult'] = 'Søk i resultat'; $lang['plainhtml'] = 'Enkel HTML'; +$lang['notloggedin'] = 'Kanskje du har glemt å logge inn?'; diff --git a/inc/lang/pl/lang.php b/inc/lang/pl/lang.php index e5f2d8d40..6af045226 100644 --- a/inc/lang/pl/lang.php +++ b/inc/lang/pl/lang.php @@ -342,3 +342,4 @@ $lang['currentns'] = 'Obecny katalog'; $lang['searchresult'] = 'Wyniki wyszukiwania'; $lang['plainhtml'] = 'Czysty HTML'; $lang['wikimarkup'] = 'Znaczniki'; +$lang['notloggedin'] = 'Zaloguj się!'; diff --git a/inc/lang/pt-br/lang.php b/inc/lang/pt-br/lang.php index 6845e792d..bf92e06ed 100644 --- a/inc/lang/pt-br/lang.php +++ b/inc/lang/pt-br/lang.php @@ -349,3 +349,4 @@ $lang['currentns'] = 'Domínio atual'; $lang['searchresult'] = 'Resultado da Busca'; $lang['plainhtml'] = 'HTML simples'; $lang['wikimarkup'] = 'Marcação wiki'; +$lang['notloggedin'] = 'Por acaso esqueceu de autenticar-se?'; diff --git a/inc/lang/pt/lang.php b/inc/lang/pt/lang.php index 46405c444..230db88da 100644 --- a/inc/lang/pt/lang.php +++ b/inc/lang/pt/lang.php @@ -319,3 +319,4 @@ $lang['media_perm_read'] = 'Perdão, não tem permissão para ler ficheiro $lang['media_perm_upload'] = 'Perdão, não tem permissão para enviar ficheiros.'; $lang['media_update'] = 'enviar nova versão'; $lang['media_restore'] = 'Restaurar esta versão'; +$lang['notloggedin'] = 'Talvez se tenha esquecido de iniciar sessão?'; diff --git a/inc/lang/ro/lang.php b/inc/lang/ro/lang.php index 491ab58e7..fe0842e1e 100644 --- a/inc/lang/ro/lang.php +++ b/inc/lang/ro/lang.php @@ -319,3 +319,4 @@ $lang['media_perm_read'] = 'Ne pare rău, dar nu ai suficiente permisiuni $lang['media_perm_upload'] = 'Ne pare rău, dar nu ai suficiente permisiuni pentru a putea încărca fișiere.'; $lang['media_update'] = 'Încarcă noua versiune'; $lang['media_restore'] = 'Restaurează această versiune'; +$lang['notloggedin'] = 'autentifici?'; diff --git a/inc/lang/ru/lang.php b/inc/lang/ru/lang.php index 208d647a8..9a393193a 100644 --- a/inc/lang/ru/lang.php +++ b/inc/lang/ru/lang.php @@ -350,3 +350,4 @@ $lang['media_restore'] = 'Восстановить эту версию'; $lang['currentns'] = 'Текущее пространство имен'; $lang['searchresult'] = 'Результаты поиска'; $lang['plainhtml'] = 'Чистый HTML'; +$lang['notloggedin'] = 'Может быть вы забыли войти в вики под своим логином?'; diff --git a/inc/lang/sk/lang.php b/inc/lang/sk/lang.php index aa823b074..47cdc1fe4 100644 --- a/inc/lang/sk/lang.php +++ b/inc/lang/sk/lang.php @@ -332,3 +332,4 @@ $lang['currentns'] = 'Aktuálny menný priestor'; $lang['searchresult'] = 'Výsledky hľadania'; $lang['plainhtml'] = 'Jednoduché HTML'; $lang['wikimarkup'] = 'Wiki formát'; +$lang['notloggedin'] = 'Možno ste sa zabudli prihlásiť?'; diff --git a/inc/lang/sl/lang.php b/inc/lang/sl/lang.php index c9a47927d..41e2b3b12 100644 --- a/inc/lang/sl/lang.php +++ b/inc/lang/sl/lang.php @@ -327,3 +327,4 @@ $lang['currentns'] = 'Trenutni imenski prostor'; $lang['searchresult'] = 'Rezultati iskanja'; $lang['plainhtml'] = 'Zapis HTML'; $lang['wikimarkup'] = 'Oblikovni jezik Wiki'; +$lang['notloggedin'] = 'Ali ste se morda pozabili prijaviti?'; diff --git a/inc/lang/sq/lang.php b/inc/lang/sq/lang.php index 2ed62ed4e..ab9208e55 100644 --- a/inc/lang/sq/lang.php +++ b/inc/lang/sq/lang.php @@ -235,3 +235,4 @@ $lang['days'] = '%d ditë më parë'; $lang['hours'] = '%d orë më parë'; $lang['minutes'] = '%d minuta më parë'; $lang['seconds'] = '%d sekonda më parë'; +$lang['notloggedin'] = 'Mbase harruat të hyni?'; diff --git a/inc/lang/sr/lang.php b/inc/lang/sr/lang.php index 7c434cbc9..53faa69ec 100644 --- a/inc/lang/sr/lang.php +++ b/inc/lang/sr/lang.php @@ -260,3 +260,4 @@ $lang['hours'] = 'Пре %d сати'; $lang['minutes'] = 'Пре %d минута'; $lang['seconds'] = 'Пре %d секунди'; $lang['wordblock'] = 'Ваше измене нису сачуване јер садрже забрањен текст (спам)'; +$lang['notloggedin'] = 'Можда сте заборавили да се пријавите?'; diff --git a/inc/lang/sv/lang.php b/inc/lang/sv/lang.php index 8c8858f61..867d038c4 100644 --- a/inc/lang/sv/lang.php +++ b/inc/lang/sv/lang.php @@ -343,3 +343,4 @@ $lang['media_update'] = 'Ladda upp ny version'; $lang['media_restore'] = 'Återställ denna version'; $lang['searchresult'] = 'Sökresultat'; $lang['plainhtml'] = 'Ren HTML'; +$lang['notloggedin'] = 'Kanske har du glömt att logga in?'; diff --git a/inc/lang/th/lang.php b/inc/lang/th/lang.php index 5d364166b..2e6abe6b6 100644 --- a/inc/lang/th/lang.php +++ b/inc/lang/th/lang.php @@ -219,3 +219,4 @@ $lang['days'] = '%d วันก่อน'; $lang['hours'] = '%d ชั่วโมงก่อน'; $lang['minutes'] = '%d นาทีก่อน'; $lang['seconds'] = '%d วินาทีก่อน'; +$lang['notloggedin'] = 'บางทีคุณอาจจะลืมล็อกอิน?'; diff --git a/inc/lang/tr/lang.php b/inc/lang/tr/lang.php index 210a82530..a9c90054c 100644 --- a/inc/lang/tr/lang.php +++ b/inc/lang/tr/lang.php @@ -304,3 +304,4 @@ $lang['media_history'] = 'Geçmiş %s'; $lang['media_perm_upload'] = 'Üzgünüm, karşıya dosya yükleme yetkiniz yok.'; $lang['media_update'] = 'Yeni versiyonu yükleyin'; $lang['media_restore'] = 'Bu sürümü eski haline getir'; +$lang['notloggedin'] = 'Giriş yapmayı unutmuş olabilir misiniz?'; diff --git a/inc/lang/uk/lang.php b/inc/lang/uk/lang.php index 4e91e82a2..d09360479 100644 --- a/inc/lang/uk/lang.php +++ b/inc/lang/uk/lang.php @@ -285,3 +285,4 @@ $lang['hours'] = '%d годин тому'; $lang['minutes'] = '%d хвилин тому'; $lang['seconds'] = '%d секунд тому'; $lang['wordblock'] = 'Ваші зміни не збережено, тому що вони розпізнані як такі, що містять заблокований текст(спам).'; +$lang['notloggedin'] = 'Можливо ви забули увійти в систему?'; diff --git a/inc/lang/vi/lang.php b/inc/lang/vi/lang.php index d8e40f875..b99311f1a 100644 --- a/inc/lang/vi/lang.php +++ b/inc/lang/vi/lang.php @@ -239,3 +239,4 @@ $lang['media_perm_read'] = 'Sorry, bạn không đủ quyền truy cập.' $lang['media_perm_upload'] = 'Xin lỗi, bạn không đủ quyền để upload file lên.'; $lang['media_update'] = 'Tải lên phiên bản mới'; $lang['media_restore'] = 'Phục hồi phiên bản này'; +$lang['notloggedin'] = 'Bạn quên đăng nhập hay sao?'; diff --git a/inc/lang/zh-tw/lang.php b/inc/lang/zh-tw/lang.php index 456377810..b230cd70d 100644 --- a/inc/lang/zh-tw/lang.php +++ b/inc/lang/zh-tw/lang.php @@ -341,3 +341,4 @@ $lang['currentns'] = '目前的命名空間'; $lang['searchresult'] = '搜尋結果'; $lang['plainhtml'] = '純 HTML'; $lang['wikimarkup'] = 'Wiki 語法標記'; +$lang['notloggedin'] = '抱歉,您沒有足夠權限繼續執行。或許您忘了登入?'; diff --git a/inc/lang/zh/lang.php b/inc/lang/zh/lang.php index 004997d6e..c3fdae46b 100644 --- a/inc/lang/zh/lang.php +++ b/inc/lang/zh/lang.php @@ -349,3 +349,4 @@ $lang['currentns'] = '当前命名空间'; $lang['searchresult'] = '搜索结果'; $lang['plainhtml'] = '纯HTML'; $lang['wikimarkup'] = 'Wiki Markup 语言'; +$lang['notloggedin'] = '对不起,您没有足够权限,无法继续。也许您忘了登录?'; -- cgit v1.2.3 From f019ab46c33b430831053cd41b5b04a163fd529f Mon Sep 17 00:00:00 2001 From: Gerrit Uitslag Date: Tue, 4 Mar 2014 21:27:10 +0100 Subject: added login form at denied access page - restore lang string as well --- inc/html.php | 4 ++++ inc/lang/en/lang.php | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'inc') diff --git a/inc/html.php b/inc/html.php index 507ba511e..514f961e7 100644 --- a/inc/html.php +++ b/inc/html.php @@ -81,6 +81,10 @@ function html_denied() { $denied ); print $denied; + + if(!$_SERVER['REMOTE_USER']){ + html_login(); + } } /** diff --git a/inc/lang/en/lang.php b/inc/lang/en/lang.php index b95a8a58a..fccb470e3 100644 --- a/inc/lang/en/lang.php +++ b/inc/lang/en/lang.php @@ -78,7 +78,7 @@ $lang['regbadmail'] = 'The given email address looks invalid - if you $lang['regbadpass'] = 'The two given passwords are not identical, please try again.'; $lang['regpwmail'] = 'Your DokuWiki password'; $lang['reghere'] = 'You don\'t have an account yet? Just get one'; -$lang['notloggedin'] = 'Please be aware you are not logged in.'; +$lang['notloggedin'] = 'Perhaps you forgot to login?'; $lang['profna'] = 'This wiki does not support profile modification'; $lang['profnochange'] = 'No changes, nothing to do.'; -- cgit v1.2.3 From 1a043a5b56efd30f7580a1801080f80037dd4789 Mon Sep 17 00:00:00 2001 From: Gerrit Uitslag Date: Thu, 6 Mar 2014 23:47:23 +0100 Subject: Revert "added stripped bit to language file" This reverts commit 524df5769a0b9b7aa35af6500c85528c2b0515fe. Conflicts: inc/lang/bn/lang.php inc/lang/fr/lang.php --- inc/lang/ar/lang.php | 1 - inc/lang/az/lang.php | 1 - inc/lang/bg/lang.php | 1 - inc/lang/ca-valencia/lang.php | 1 - inc/lang/ca/lang.php | 1 - inc/lang/cs/lang.php | 1 - inc/lang/da/lang.php | 1 - inc/lang/de-informal/lang.php | 1 - inc/lang/de/lang.php | 1 - inc/lang/el/lang.php | 1 - inc/lang/eo/lang.php | 1 - inc/lang/es/lang.php | 1 - inc/lang/et/lang.php | 1 - inc/lang/eu/lang.php | 1 - inc/lang/fa/lang.php | 1 - inc/lang/fi/lang.php | 1 - inc/lang/fo/lang.php | 1 - inc/lang/fr/lang.php | 2 -- inc/lang/gl/lang.php | 1 - inc/lang/he/lang.php | 1 - inc/lang/hr/lang.php | 1 - inc/lang/hu-formal/lang.php | 1 - inc/lang/hu/lang.php | 1 - inc/lang/ia/lang.php | 1 - inc/lang/id/lang.php | 1 - inc/lang/it/lang.php | 1 - inc/lang/ja/lang.php | 1 - inc/lang/km/lang.php | 1 - inc/lang/ko/lang.php | 1 - inc/lang/ku/lang.php | 1 - inc/lang/la/lang.php | 1 - inc/lang/lb/lang.php | 1 - inc/lang/lt/lang.php | 1 - inc/lang/lv/lang.php | 1 - inc/lang/mg/lang.php | 1 - inc/lang/mr/lang.php | 1 - inc/lang/ne/lang.php | 1 - inc/lang/nl/lang.php | 1 - inc/lang/no/lang.php | 1 - inc/lang/pl/lang.php | 1 - inc/lang/pt-br/lang.php | 1 - inc/lang/pt/lang.php | 1 - inc/lang/ro/lang.php | 1 - inc/lang/ru/lang.php | 1 - inc/lang/sk/lang.php | 1 - inc/lang/sl/lang.php | 1 - inc/lang/sq/lang.php | 1 - inc/lang/sr/lang.php | 1 - inc/lang/sv/lang.php | 1 - inc/lang/th/lang.php | 1 - inc/lang/tr/lang.php | 1 - inc/lang/uk/lang.php | 1 - inc/lang/vi/lang.php | 1 - inc/lang/zh-tw/lang.php | 1 - inc/lang/zh/lang.php | 1 - 55 files changed, 56 deletions(-) (limited to 'inc') diff --git a/inc/lang/ar/lang.php b/inc/lang/ar/lang.php index f5e56de90..157513429 100644 --- a/inc/lang/ar/lang.php +++ b/inc/lang/ar/lang.php @@ -341,4 +341,3 @@ $lang['media_restore'] = 'استرجع هذه النسخة'; $lang['currentns'] = 'مساحة الاسم الحالية'; $lang['searchresult'] = 'نتيجة البحث'; $lang['wikimarkup'] = 'علامات الوكي'; -$lang['notloggedin'] = 'الاستمرار، لعلك نسيت تسجيل الدخول؟'; diff --git a/inc/lang/az/lang.php b/inc/lang/az/lang.php index 5ea965626..df54b4f10 100644 --- a/inc/lang/az/lang.php +++ b/inc/lang/az/lang.php @@ -215,4 +215,3 @@ $lang['days'] = '%d gün əvvəl'; $lang['hours'] = '%d saat əvvəl'; $lang['minutes'] = '%d dəqiqə əvvəl'; $lang['seconds'] = '%d saniyə əvvəl'; -$lang['notloggedin'] = 'Bəlkə, Siz sistemə oz istifadəçi adınız ilə girməyi unutmusunuz?'; diff --git a/inc/lang/bg/lang.php b/inc/lang/bg/lang.php index 79bab5865..bb74ff1ca 100644 --- a/inc/lang/bg/lang.php +++ b/inc/lang/bg/lang.php @@ -330,4 +330,3 @@ $lang['media_update'] = 'Качване на нова версия'; $lang['media_restore'] = 'Възстановяване на тази версия'; $lang['searchresult'] = 'Резултати от търсенето'; $lang['plainhtml'] = 'Обикновен HTML'; -$lang['notloggedin'] = 'Може би сте забравили да се впишете?'; diff --git a/inc/lang/ca-valencia/lang.php b/inc/lang/ca-valencia/lang.php index e5bd58417..9ab423783 100644 --- a/inc/lang/ca-valencia/lang.php +++ b/inc/lang/ca-valencia/lang.php @@ -220,4 +220,3 @@ $lang['days'] = 'fa %d dies'; $lang['hours'] = 'fa %d hores'; $lang['minutes'] = 'fa %d minuts'; $lang['seconds'] = 'fa %d segons'; -$lang['notloggedin'] = '¿Haurà oblidat iniciar sessió?'; diff --git a/inc/lang/ca/lang.php b/inc/lang/ca/lang.php index 810a613c2..fd19c6834 100644 --- a/inc/lang/ca/lang.php +++ b/inc/lang/ca/lang.php @@ -313,4 +313,3 @@ $lang['media_perm_read'] = 'No teniu permisos suficients per a llegir arxi $lang['media_perm_upload'] = 'No teniu permisos suficients per a pujar arxius'; $lang['media_update'] = 'Puja la nova versió'; $lang['media_restore'] = 'Restaura aquesta versió'; -$lang['notloggedin'] = 'Potser us heu descuidat d\'entrar?'; diff --git a/inc/lang/cs/lang.php b/inc/lang/cs/lang.php index 8461277ca..a0f69b3dc 100644 --- a/inc/lang/cs/lang.php +++ b/inc/lang/cs/lang.php @@ -342,4 +342,3 @@ $lang['currentns'] = 'Aktuální jmenný prostor'; $lang['searchresult'] = 'Výsledek hledání'; $lang['plainhtml'] = 'Čisté HTML'; $lang['wikimarkup'] = 'Wiki jazyk'; -$lang['notloggedin'] = 'Možná jste se zapomněli přihlásit?'; diff --git a/inc/lang/da/lang.php b/inc/lang/da/lang.php index c2d892d2a..eb50bb240 100644 --- a/inc/lang/da/lang.php +++ b/inc/lang/da/lang.php @@ -336,4 +336,3 @@ $lang['media_perm_read'] = 'Du har ikke nok rettigheder til at læse filer $lang['media_perm_upload'] = 'Du har ikke nok rettigheder til at uploade filer.'; $lang['media_update'] = 'Upload ny version'; $lang['media_restore'] = 'Genskab denne version'; -$lang['notloggedin'] = 'Måske er du ikke logget ind.'; diff --git a/inc/lang/de-informal/lang.php b/inc/lang/de-informal/lang.php index c9e478649..be3f14a18 100644 --- a/inc/lang/de-informal/lang.php +++ b/inc/lang/de-informal/lang.php @@ -343,4 +343,3 @@ $lang['media_update'] = 'Neue Version hochladen'; $lang['media_restore'] = 'Diese Version wiederherstellen'; $lang['currentns'] = 'Aktueller Namensraum'; $lang['searchresult'] = 'Suchergebnis'; -$lang['notloggedin'] = 'Eventuell bist du nicht am Wiki angemeldet?'; diff --git a/inc/lang/de/lang.php b/inc/lang/de/lang.php index 01f2e81c5..9df1035f7 100644 --- a/inc/lang/de/lang.php +++ b/inc/lang/de/lang.php @@ -345,4 +345,3 @@ $lang['media_restore'] = 'Diese Version wiederherstellen'; $lang['currentns'] = 'Aktueller Namensraum'; $lang['searchresult'] = 'Suchergebnisse'; $lang['plainhtml'] = 'HTML Klartext'; -$lang['notloggedin'] = 'Eventuell sind Sie nicht am Wiki angemeldet?'; diff --git a/inc/lang/el/lang.php b/inc/lang/el/lang.php index 89bcc08b3..170e101a5 100644 --- a/inc/lang/el/lang.php +++ b/inc/lang/el/lang.php @@ -330,4 +330,3 @@ $lang['media_perm_upload'] = 'Συγνώμη, δεν έχετε επαρκή $lang['media_update'] = 'Φόρτωση νέας έκδοσης'; $lang['media_restore'] = 'Επαναφορά αυτή της έκδοσης'; $lang['searchresult'] = 'Αποτέλεσμα έρευνας'; -$lang['notloggedin'] = 'Μήπως παραλείψατε να συνδεθείτε;'; diff --git a/inc/lang/eo/lang.php b/inc/lang/eo/lang.php index 3252a6c2b..97231bdce 100644 --- a/inc/lang/eo/lang.php +++ b/inc/lang/eo/lang.php @@ -335,4 +335,3 @@ $lang['currentns'] = 'Aktuala nomspaco'; $lang['searchresult'] = 'Serĉrezulto'; $lang['plainhtml'] = 'Plena HTML'; $lang['wikimarkup'] = 'Vikiteksto'; -$lang['notloggedin'] = 'Eble vi forgesis identiĝi.'; diff --git a/inc/lang/es/lang.php b/inc/lang/es/lang.php index 9dc406aef..216093f6c 100644 --- a/inc/lang/es/lang.php +++ b/inc/lang/es/lang.php @@ -356,4 +356,3 @@ $lang['currentns'] = 'Espacio de nombres actual'; $lang['searchresult'] = 'Resultado de la búsqueda'; $lang['plainhtml'] = 'HTML sencillo'; $lang['wikimarkup'] = 'Etiquetado Wiki'; -$lang['notloggedin'] = '¿Quizás has olvidado identificarte?'; diff --git a/inc/lang/et/lang.php b/inc/lang/et/lang.php index 58877f3bc..cc736db4d 100644 --- a/inc/lang/et/lang.php +++ b/inc/lang/et/lang.php @@ -229,4 +229,3 @@ $lang['i_pol0'] = 'Avatud (lugemine, kirjutamine ja üleslaadimin $lang['i_pol1'] = 'Avalikuks lugemiseks (lugeda saavad kõik, kirjutada ja üles laadida vaid registreeritud kasutajad)'; $lang['i_pol2'] = 'Suletud (kõik õigused, kaasaarvatud lugemine on lubatud vaid registreeritud kasutajatele)'; $lang['i_retry'] = 'Proovi uuesti'; -$lang['notloggedin'] = 'liikuda, selleks on vastavaid õigusi vaja.'; diff --git a/inc/lang/eu/lang.php b/inc/lang/eu/lang.php index fb42dfb27..c7e7ead9a 100644 --- a/inc/lang/eu/lang.php +++ b/inc/lang/eu/lang.php @@ -306,4 +306,3 @@ $lang['media_viewold'] = '%s -n %s'; $lang['media_edit'] = '%s editatu'; $lang['media_update'] = 'Bertsio berria igo'; $lang['media_restore'] = 'Bertsio hau berrezarri'; -$lang['notloggedin'] = 'Agian sesioa hastea ahaztu zaizu?'; diff --git a/inc/lang/fa/lang.php b/inc/lang/fa/lang.php index 2b4c35b27..dbad62890 100644 --- a/inc/lang/fa/lang.php +++ b/inc/lang/fa/lang.php @@ -324,4 +324,3 @@ $lang['media_perm_read'] = 'متاسفانه ، شما حق خواندن $lang['media_perm_upload'] = 'متاسفانه ، شما حق آپلود این فایل ها را ندارید.'; $lang['media_update'] = 'آپلود نسخه جدید'; $lang['media_restore'] = 'بازیابی این نسخه'; -$lang['notloggedin'] = 'ممکن است فراموش کرده باشید که وارد سایت شوید!'; diff --git a/inc/lang/fi/lang.php b/inc/lang/fi/lang.php index 10a730f3f..feefc3da8 100644 --- a/inc/lang/fi/lang.php +++ b/inc/lang/fi/lang.php @@ -334,4 +334,3 @@ $lang['currentns'] = 'Nykyinen nimiavaruus'; $lang['searchresult'] = 'Haun tulokset'; $lang['plainhtml'] = 'pelkkä HTML'; $lang['wikimarkup'] = 'Wiki markup'; -$lang['notloggedin'] = 'Ehkä unohdit kirjautua sisään?'; diff --git a/inc/lang/fo/lang.php b/inc/lang/fo/lang.php index e4814869f..161e7321a 100644 --- a/inc/lang/fo/lang.php +++ b/inc/lang/fo/lang.php @@ -169,4 +169,3 @@ $lang['img_format'] = 'Snið'; $lang['img_camera'] = 'Fototól'; $lang['img_keywords'] = 'Evnisorð'; $lang['authtempfail'] = 'Validering av brúkara virkar fyribils ikki. Um hetta er varandi, fá so samband við umboðsstjóran á hesi wiki.'; -$lang['notloggedin'] = 'Møguliga hevur tú ikki rita inn.'; diff --git a/inc/lang/fr/lang.php b/inc/lang/fr/lang.php index 64405ce6b..32e3055f7 100644 --- a/inc/lang/fr/lang.php +++ b/inc/lang/fr/lang.php @@ -353,5 +353,3 @@ $lang['currentns'] = 'Namespace actuel'; $lang['searchresult'] = 'Résultat de la recherche'; $lang['plainhtml'] = 'HTML brut'; $lang['wikimarkup'] = 'Wiki balise'; -$lang['notloggedin'] = 'Peut-être avez-vous oublié de vous identifier ?'; - diff --git a/inc/lang/gl/lang.php b/inc/lang/gl/lang.php index 3e5229a17..65967a3b5 100644 --- a/inc/lang/gl/lang.php +++ b/inc/lang/gl/lang.php @@ -318,4 +318,3 @@ $lang['media_perm_read'] = 'Sentímolo, non tes permisos suficientes para $lang['media_perm_upload'] = 'Sentímolo, non tes permisos suficientes para subir arquivos.'; $lang['media_update'] = 'Subir nova versión'; $lang['media_restore'] = 'Restaurar esta versión'; -$lang['notloggedin'] = 'Pode que esqueceses iniciar a sesión?'; diff --git a/inc/lang/he/lang.php b/inc/lang/he/lang.php index 7012c0e17..8efe0da17 100644 --- a/inc/lang/he/lang.php +++ b/inc/lang/he/lang.php @@ -325,4 +325,3 @@ $lang['media_sort_date'] = 'תאריך'; $lang['media_namespaces'] = 'בחר מרחב שמות'; $lang['media_files'] = 'קבצים ב s%'; $lang['media_upload'] = 'להעלות s%'; -$lang['notloggedin'] = 'אולי שכחת להיכנס למערכת?'; diff --git a/inc/lang/hr/lang.php b/inc/lang/hr/lang.php index fe3a64d4d..f19610827 100644 --- a/inc/lang/hr/lang.php +++ b/inc/lang/hr/lang.php @@ -263,4 +263,3 @@ $lang['hours'] = '%d sati prije'; $lang['minutes'] = '%d minuta prije'; $lang['seconds'] = '%d sekundi prije'; $lang['wordblock'] = 'Vaša promjena nije spremljena jer sadrži blokirani tekst (spam).'; -$lang['notloggedin'] = 'Niste li se možda zaboravili prijaviti u aplikaciju?'; diff --git a/inc/lang/hu-formal/lang.php b/inc/lang/hu-formal/lang.php index 09bbdc58f..a98bdc0d3 100644 --- a/inc/lang/hu-formal/lang.php +++ b/inc/lang/hu-formal/lang.php @@ -25,4 +25,3 @@ $lang['btn_older'] = 'régebbi >>'; $lang['btn_revs'] = 'Korábbi változatok'; $lang['btn_recent'] = 'Legújabb változások'; $lang['btn_upload'] = 'Feltöltés'; -$lang['notloggedin'] = 'Talán elfelejtett bejelentkezni?'; diff --git a/inc/lang/hu/lang.php b/inc/lang/hu/lang.php index 6fb20cc3f..a0aef9447 100644 --- a/inc/lang/hu/lang.php +++ b/inc/lang/hu/lang.php @@ -338,4 +338,3 @@ $lang['currentns'] = 'Aktuális névtér'; $lang['searchresult'] = 'Keresés eredménye'; $lang['plainhtml'] = 'Sima HTML'; $lang['wikimarkup'] = 'Wiki-jelölőnyelv'; -$lang['notloggedin'] = 'Esetleg elfelejtettél bejelentkezni?'; diff --git a/inc/lang/ia/lang.php b/inc/lang/ia/lang.php index 7fc4dbb68..144dfe33b 100644 --- a/inc/lang/ia/lang.php +++ b/inc/lang/ia/lang.php @@ -260,4 +260,3 @@ $lang['days'] = '%d dies retro'; $lang['hours'] = '%d horas retro'; $lang['minutes'] = '%d minutas retro'; $lang['seconds'] = '%d secundas retro'; -$lang['notloggedin'] = 'Pote esser que tu ha oblidate de aperir un session.'; diff --git a/inc/lang/id/lang.php b/inc/lang/id/lang.php index 34c687f1d..5cb5cb6ea 100644 --- a/inc/lang/id/lang.php +++ b/inc/lang/id/lang.php @@ -218,4 +218,3 @@ $lang['i_pol0'] = 'Wiki Terbuka (baca, tulis, upload untuk semua $lang['i_pol1'] = 'Wiki Publik (baca untuk semua orang, tulis dan upload untuk pengguna terdaftar)'; $lang['i_pol2'] = 'Wiki Privat (baca, tulis dan upload hanya untuk pengguna terdaftar)'; $lang['i_retry'] = 'Coba Lagi'; -$lang['notloggedin'] = 'Apakah Anda belum login?'; diff --git a/inc/lang/it/lang.php b/inc/lang/it/lang.php index 95d64e00f..a2bde3b60 100644 --- a/inc/lang/it/lang.php +++ b/inc/lang/it/lang.php @@ -338,4 +338,3 @@ $lang['media_perm_upload'] = 'Spiacente, non hai abbastanza privilegi per ca $lang['media_update'] = 'Carica nuova versione'; $lang['media_restore'] = 'Ripristina questa versione'; $lang['searchresult'] = 'Risultati della ricerca'; -$lang['notloggedin'] = 'Forse hai dimenticato di effettuare l\'accesso?'; diff --git a/inc/lang/ja/lang.php b/inc/lang/ja/lang.php index 367c56a9b..1f53b0a90 100644 --- a/inc/lang/ja/lang.php +++ b/inc/lang/ja/lang.php @@ -336,4 +336,3 @@ $lang['currentns'] = '現在の名前空間'; $lang['searchresult'] = '検索結果'; $lang['plainhtml'] = 'プレーンHTML'; $lang['wikimarkup'] = 'Wikiマークアップ'; -$lang['notloggedin'] = '実行する権限がありません。ログインされているか確認してください。'; diff --git a/inc/lang/km/lang.php b/inc/lang/km/lang.php index 5712956b0..4800b6c23 100644 --- a/inc/lang/km/lang.php +++ b/inc/lang/km/lang.php @@ -204,4 +204,3 @@ $lang['i_pol2'] = 'វីគីបិទជិត'; $lang['i_retry'] = 'ម្តងទៀត'; //Setup VIM: ex: et ts=2 : -$lang['notloggedin'] = 'សូមទុស អ្នកគ្មានអនុញ្ញាតទៅបណ្តទេ។ '; diff --git a/inc/lang/ko/lang.php b/inc/lang/ko/lang.php index 120caba78..266ff01e5 100644 --- a/inc/lang/ko/lang.php +++ b/inc/lang/ko/lang.php @@ -336,4 +336,3 @@ $lang['currentns'] = '현재 이름공간'; $lang['searchresult'] = '검색 결과'; $lang['plainhtml'] = '일반 HTML'; $lang['wikimarkup'] = '위키 문법'; -$lang['notloggedin'] = '로그인을 잊으셨나요?'; diff --git a/inc/lang/ku/lang.php b/inc/lang/ku/lang.php index a8a1b8cbf..b6287806d 100644 --- a/inc/lang/ku/lang.php +++ b/inc/lang/ku/lang.php @@ -140,4 +140,3 @@ $lang['img_camera'] = 'Camera'; $lang['img_keywords']= 'Keywords'; //Setup VIM: ex: et ts=2 : -$lang['notloggedin'] = 'Perhaps you forgot to login?'; diff --git a/inc/lang/la/lang.php b/inc/lang/la/lang.php index 885c4f4b8..c71a71bdd 100644 --- a/inc/lang/la/lang.php +++ b/inc/lang/la/lang.php @@ -260,4 +260,3 @@ $lang['hours'] = 'a horis %d'; $lang['minutes'] = 'a minutis %d'; $lang['seconds'] = 'a secundis %d'; $lang['wordblock'] = 'Mutationes non seruantur, eo quod mala uerba contenit'; -$lang['notloggedin'] = 'Ad hanc paginam accedere non potes: antea in conuentum ineas, deinde rursum temptas '; diff --git a/inc/lang/lb/lang.php b/inc/lang/lb/lang.php index 7778478a4..55113745a 100644 --- a/inc/lang/lb/lang.php +++ b/inc/lang/lb/lang.php @@ -194,4 +194,3 @@ $lang['days'] = 'virun %d Deeg'; $lang['hours'] = 'virun %d Stonnen'; $lang['minutes'] = 'virun %d Minutten'; $lang['seconds'] = 'virun %d Sekonnen'; -$lang['notloggedin'] = 'Hues de vläicht vergiess dech anzeloggen?'; diff --git a/inc/lang/lt/lang.php b/inc/lang/lt/lang.php index f03d6d5cd..c38ea8838 100644 --- a/inc/lang/lt/lang.php +++ b/inc/lang/lt/lang.php @@ -181,4 +181,3 @@ $lang['i_wikiname'] = 'Wiki vardas'; $lang['i_enableacl'] = 'Įjungti ACL (rekomenduojama)'; $lang['i_superuser'] = 'Supervartotojas'; $lang['i_problems'] = 'Instaliavimo metu buvo klaidų, kurios pateiktos žemiau. Tęsti negalima, kol nebus pašalintos priežastys.'; -$lang['notloggedin'] = 'Turbūt pamiršote prisijungti :-).'; diff --git a/inc/lang/lv/lang.php b/inc/lang/lv/lang.php index df16a385d..898125d60 100644 --- a/inc/lang/lv/lang.php +++ b/inc/lang/lv/lang.php @@ -318,4 +318,3 @@ $lang['media_perm_read'] = 'Atvainojiet, jums nav tiesību skatīt failus. $lang['media_perm_upload'] = 'Atvainojiet, jums nav tiesību augšupielādēt. '; $lang['media_update'] = 'Augšupielādēt jaunu versiju'; $lang['media_restore'] = 'Atjaunot šo versiju'; -$lang['notloggedin'] = 'Varbūt aizmirsi ielogoties?'; diff --git a/inc/lang/mg/lang.php b/inc/lang/mg/lang.php index f179f2c28..c5ed669a9 100644 --- a/inc/lang/mg/lang.php +++ b/inc/lang/mg/lang.php @@ -119,4 +119,3 @@ $lang['js']['del_confirm']= 'Hofafana ilay andalana?'; $lang['admin_register']= 'Ampio mpampiasa vaovao...'; //Setup VIM: ex: et ts=2 : -$lang['notloggedin'] = 'Angamba hadinonao ny niditra.'; diff --git a/inc/lang/mr/lang.php b/inc/lang/mr/lang.php index 15976d4a1..54b69974d 100644 --- a/inc/lang/mr/lang.php +++ b/inc/lang/mr/lang.php @@ -264,4 +264,3 @@ $lang['i_pol1'] = 'सार्वजनिक विकी ( स $lang['i_pol2'] = 'बंदिस्त विकी ( वाचन , लेखन व अपलोडची परवानगी फक्त नोंदणीकृत सदस्यांना ) '; $lang['i_retry'] = 'पुन्हा प्रयत्न'; $lang['recent_global'] = 'तुम्ही सध्या %s या नेमस्पेस मधील बदल पाहात आहात.तुम्ही पूर्ण विकी मधले बदल सुद्धा पाहू शकता.'; -$lang['notloggedin'] = 'कदाचित तुम्ही लॉगिन करायला विसरला आहात ?'; diff --git a/inc/lang/ne/lang.php b/inc/lang/ne/lang.php index 5b24d4c49..7fd14d2c5 100644 --- a/inc/lang/ne/lang.php +++ b/inc/lang/ne/lang.php @@ -192,4 +192,3 @@ $lang['i_pol1'] = 'Public विकि (पठन सवैका $lang['i_pol2'] = 'बन्द विकि (पठन , लेखन, अपलोड ) दर्ता भएका प्रयोगकर्ताका लागि मात्र ।'; $lang['i_retry'] = 'पुन: प्रयास गर्नुहोस् '; $lang['recent_global'] = 'तपाई अहिले %s नेमस्पेस भित्र भएका परिवर्तन हेर्दैहुनुहुन्छ। तपाई पुरै विकिमा भएको परिवर्तन हेर्न सक्नुहुन्छ.'; -$lang['notloggedin'] = 'सम्भवत: तपाईले प्रवेश गर्न भुल्नु भयो।'; diff --git a/inc/lang/nl/lang.php b/inc/lang/nl/lang.php index 88a88802b..e22aa9fff 100644 --- a/inc/lang/nl/lang.php +++ b/inc/lang/nl/lang.php @@ -348,4 +348,3 @@ $lang['currentns'] = 'Huidige namespace'; $lang['searchresult'] = 'Zoekresultaat'; $lang['plainhtml'] = 'Alleen HTML'; $lang['wikimarkup'] = 'Wiki Opmaak'; -$lang['notloggedin'] = 'Misschien ben je vergeten in te loggen?'; diff --git a/inc/lang/no/lang.php b/inc/lang/no/lang.php index 278254f3f..3f31f6c73 100644 --- a/inc/lang/no/lang.php +++ b/inc/lang/no/lang.php @@ -348,4 +348,3 @@ $lang['media_restore'] = 'Gjenopprett denne versjonen'; $lang['currentns'] = 'gjeldende navnemellomrom'; $lang['searchresult'] = 'Søk i resultat'; $lang['plainhtml'] = 'Enkel HTML'; -$lang['notloggedin'] = 'Kanskje du har glemt å logge inn?'; diff --git a/inc/lang/pl/lang.php b/inc/lang/pl/lang.php index 6af045226..e5f2d8d40 100644 --- a/inc/lang/pl/lang.php +++ b/inc/lang/pl/lang.php @@ -342,4 +342,3 @@ $lang['currentns'] = 'Obecny katalog'; $lang['searchresult'] = 'Wyniki wyszukiwania'; $lang['plainhtml'] = 'Czysty HTML'; $lang['wikimarkup'] = 'Znaczniki'; -$lang['notloggedin'] = 'Zaloguj się!'; diff --git a/inc/lang/pt-br/lang.php b/inc/lang/pt-br/lang.php index bf92e06ed..6845e792d 100644 --- a/inc/lang/pt-br/lang.php +++ b/inc/lang/pt-br/lang.php @@ -349,4 +349,3 @@ $lang['currentns'] = 'Domínio atual'; $lang['searchresult'] = 'Resultado da Busca'; $lang['plainhtml'] = 'HTML simples'; $lang['wikimarkup'] = 'Marcação wiki'; -$lang['notloggedin'] = 'Por acaso esqueceu de autenticar-se?'; diff --git a/inc/lang/pt/lang.php b/inc/lang/pt/lang.php index 230db88da..46405c444 100644 --- a/inc/lang/pt/lang.php +++ b/inc/lang/pt/lang.php @@ -319,4 +319,3 @@ $lang['media_perm_read'] = 'Perdão, não tem permissão para ler ficheiro $lang['media_perm_upload'] = 'Perdão, não tem permissão para enviar ficheiros.'; $lang['media_update'] = 'enviar nova versão'; $lang['media_restore'] = 'Restaurar esta versão'; -$lang['notloggedin'] = 'Talvez se tenha esquecido de iniciar sessão?'; diff --git a/inc/lang/ro/lang.php b/inc/lang/ro/lang.php index fe0842e1e..491ab58e7 100644 --- a/inc/lang/ro/lang.php +++ b/inc/lang/ro/lang.php @@ -319,4 +319,3 @@ $lang['media_perm_read'] = 'Ne pare rău, dar nu ai suficiente permisiuni $lang['media_perm_upload'] = 'Ne pare rău, dar nu ai suficiente permisiuni pentru a putea încărca fișiere.'; $lang['media_update'] = 'Încarcă noua versiune'; $lang['media_restore'] = 'Restaurează această versiune'; -$lang['notloggedin'] = 'autentifici?'; diff --git a/inc/lang/ru/lang.php b/inc/lang/ru/lang.php index 9a393193a..208d647a8 100644 --- a/inc/lang/ru/lang.php +++ b/inc/lang/ru/lang.php @@ -350,4 +350,3 @@ $lang['media_restore'] = 'Восстановить эту версию'; $lang['currentns'] = 'Текущее пространство имен'; $lang['searchresult'] = 'Результаты поиска'; $lang['plainhtml'] = 'Чистый HTML'; -$lang['notloggedin'] = 'Может быть вы забыли войти в вики под своим логином?'; diff --git a/inc/lang/sk/lang.php b/inc/lang/sk/lang.php index 47cdc1fe4..aa823b074 100644 --- a/inc/lang/sk/lang.php +++ b/inc/lang/sk/lang.php @@ -332,4 +332,3 @@ $lang['currentns'] = 'Aktuálny menný priestor'; $lang['searchresult'] = 'Výsledky hľadania'; $lang['plainhtml'] = 'Jednoduché HTML'; $lang['wikimarkup'] = 'Wiki formát'; -$lang['notloggedin'] = 'Možno ste sa zabudli prihlásiť?'; diff --git a/inc/lang/sl/lang.php b/inc/lang/sl/lang.php index 41e2b3b12..c9a47927d 100644 --- a/inc/lang/sl/lang.php +++ b/inc/lang/sl/lang.php @@ -327,4 +327,3 @@ $lang['currentns'] = 'Trenutni imenski prostor'; $lang['searchresult'] = 'Rezultati iskanja'; $lang['plainhtml'] = 'Zapis HTML'; $lang['wikimarkup'] = 'Oblikovni jezik Wiki'; -$lang['notloggedin'] = 'Ali ste se morda pozabili prijaviti?'; diff --git a/inc/lang/sq/lang.php b/inc/lang/sq/lang.php index ab9208e55..2ed62ed4e 100644 --- a/inc/lang/sq/lang.php +++ b/inc/lang/sq/lang.php @@ -235,4 +235,3 @@ $lang['days'] = '%d ditë më parë'; $lang['hours'] = '%d orë më parë'; $lang['minutes'] = '%d minuta më parë'; $lang['seconds'] = '%d sekonda më parë'; -$lang['notloggedin'] = 'Mbase harruat të hyni?'; diff --git a/inc/lang/sr/lang.php b/inc/lang/sr/lang.php index 53faa69ec..7c434cbc9 100644 --- a/inc/lang/sr/lang.php +++ b/inc/lang/sr/lang.php @@ -260,4 +260,3 @@ $lang['hours'] = 'Пре %d сати'; $lang['minutes'] = 'Пре %d минута'; $lang['seconds'] = 'Пре %d секунди'; $lang['wordblock'] = 'Ваше измене нису сачуване јер садрже забрањен текст (спам)'; -$lang['notloggedin'] = 'Можда сте заборавили да се пријавите?'; diff --git a/inc/lang/sv/lang.php b/inc/lang/sv/lang.php index 867d038c4..8c8858f61 100644 --- a/inc/lang/sv/lang.php +++ b/inc/lang/sv/lang.php @@ -343,4 +343,3 @@ $lang['media_update'] = 'Ladda upp ny version'; $lang['media_restore'] = 'Återställ denna version'; $lang['searchresult'] = 'Sökresultat'; $lang['plainhtml'] = 'Ren HTML'; -$lang['notloggedin'] = 'Kanske har du glömt att logga in?'; diff --git a/inc/lang/th/lang.php b/inc/lang/th/lang.php index 2e6abe6b6..5d364166b 100644 --- a/inc/lang/th/lang.php +++ b/inc/lang/th/lang.php @@ -219,4 +219,3 @@ $lang['days'] = '%d วันก่อน'; $lang['hours'] = '%d ชั่วโมงก่อน'; $lang['minutes'] = '%d นาทีก่อน'; $lang['seconds'] = '%d วินาทีก่อน'; -$lang['notloggedin'] = 'บางทีคุณอาจจะลืมล็อกอิน?'; diff --git a/inc/lang/tr/lang.php b/inc/lang/tr/lang.php index a9c90054c..210a82530 100644 --- a/inc/lang/tr/lang.php +++ b/inc/lang/tr/lang.php @@ -304,4 +304,3 @@ $lang['media_history'] = 'Geçmiş %s'; $lang['media_perm_upload'] = 'Üzgünüm, karşıya dosya yükleme yetkiniz yok.'; $lang['media_update'] = 'Yeni versiyonu yükleyin'; $lang['media_restore'] = 'Bu sürümü eski haline getir'; -$lang['notloggedin'] = 'Giriş yapmayı unutmuş olabilir misiniz?'; diff --git a/inc/lang/uk/lang.php b/inc/lang/uk/lang.php index d09360479..4e91e82a2 100644 --- a/inc/lang/uk/lang.php +++ b/inc/lang/uk/lang.php @@ -285,4 +285,3 @@ $lang['hours'] = '%d годин тому'; $lang['minutes'] = '%d хвилин тому'; $lang['seconds'] = '%d секунд тому'; $lang['wordblock'] = 'Ваші зміни не збережено, тому що вони розпізнані як такі, що містять заблокований текст(спам).'; -$lang['notloggedin'] = 'Можливо ви забули увійти в систему?'; diff --git a/inc/lang/vi/lang.php b/inc/lang/vi/lang.php index b99311f1a..d8e40f875 100644 --- a/inc/lang/vi/lang.php +++ b/inc/lang/vi/lang.php @@ -239,4 +239,3 @@ $lang['media_perm_read'] = 'Sorry, bạn không đủ quyền truy cập.' $lang['media_perm_upload'] = 'Xin lỗi, bạn không đủ quyền để upload file lên.'; $lang['media_update'] = 'Tải lên phiên bản mới'; $lang['media_restore'] = 'Phục hồi phiên bản này'; -$lang['notloggedin'] = 'Bạn quên đăng nhập hay sao?'; diff --git a/inc/lang/zh-tw/lang.php b/inc/lang/zh-tw/lang.php index b230cd70d..456377810 100644 --- a/inc/lang/zh-tw/lang.php +++ b/inc/lang/zh-tw/lang.php @@ -341,4 +341,3 @@ $lang['currentns'] = '目前的命名空間'; $lang['searchresult'] = '搜尋結果'; $lang['plainhtml'] = '純 HTML'; $lang['wikimarkup'] = 'Wiki 語法標記'; -$lang['notloggedin'] = '抱歉,您沒有足夠權限繼續執行。或許您忘了登入?'; diff --git a/inc/lang/zh/lang.php b/inc/lang/zh/lang.php index c3fdae46b..004997d6e 100644 --- a/inc/lang/zh/lang.php +++ b/inc/lang/zh/lang.php @@ -349,4 +349,3 @@ $lang['currentns'] = '当前命名空间'; $lang['searchresult'] = '搜索结果'; $lang['plainhtml'] = '纯HTML'; $lang['wikimarkup'] = 'Wiki Markup 语言'; -$lang['notloggedin'] = '对不起,您没有足够权限,无法继续。也许您忘了登录?'; -- cgit v1.2.3 From d1e9181ef12479db0c36d6d93f0ecff84523bf73 Mon Sep 17 00:00:00 2001 From: Gerrit Uitslag Date: Thu, 6 Mar 2014 23:50:05 +0100 Subject: removed 'not logged in' text, loginform is shown already --- inc/html.php | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'inc') diff --git a/inc/html.php b/inc/html.php index 514f961e7..4a355bdaf 100644 --- a/inc/html.php +++ b/inc/html.php @@ -71,16 +71,7 @@ function html_login(){ * @return string html */ function html_denied() { - global $lang; - $denied = p_locale_xhtml('denied'); - $notloggedin = isset($_SERVER['REMOTE_USER']) ? '' : $lang['notloggedin']; - - $denied = str_replace( - array('@NOTLOGGEDIN@'), - array($notloggedin), - $denied - ); - print $denied; + print p_locale_xhtml('denied'); if(!$_SERVER['REMOTE_USER']){ html_login(); -- cgit v1.2.3 From b981d5915250e5efe218466b608607174eb26608 Mon Sep 17 00:00:00 2001 From: Gerrit Uitslag Date: Fri, 7 Mar 2014 00:06:17 +0100 Subject: remove placeholder van denied.txt --- inc/lang/ar/denied.txt | 2 +- inc/lang/az/denied.txt | 2 +- inc/lang/bg/denied.txt | 2 +- inc/lang/bn/denied.txt | 2 +- inc/lang/ca-valencia/denied.txt | 2 +- inc/lang/ca/denied.txt | 2 +- inc/lang/cs/denied.txt | 2 +- inc/lang/da/denied.txt | 2 +- inc/lang/de-informal/denied.txt | 2 +- inc/lang/de/denied.txt | 2 +- inc/lang/el/denied.txt | 1 - inc/lang/en/denied.txt | 2 +- inc/lang/eo/denied.txt | 2 +- inc/lang/es/denied.txt | 3 ++- inc/lang/et/denied.txt | 3 ++- inc/lang/eu/denied.txt | 3 ++- inc/lang/fa/denied.txt | 3 ++- inc/lang/fi/denied.txt | 3 ++- inc/lang/fo/denied.txt | 3 ++- inc/lang/fr/denied.txt | 3 ++- inc/lang/gl/denied.txt | 2 +- inc/lang/he/denied.txt | 3 ++- inc/lang/hr/denied.txt | 1 - inc/lang/hu-formal/denied.txt | 3 ++- inc/lang/hu/denied.txt | 2 +- inc/lang/ia/denied.txt | 3 ++- inc/lang/id/denied.txt | 2 +- inc/lang/it/denied.txt | 2 +- inc/lang/ja/denied.txt | 2 +- inc/lang/km/denied.txt | 3 ++- inc/lang/ko/denied.txt | 3 ++- inc/lang/ku/denied.txt | 2 +- inc/lang/la/denied.txt | 3 ++- inc/lang/lb/denied.txt | 3 ++- inc/lang/lt/denied.txt | 2 +- inc/lang/lv/denied.txt | 4 +--- inc/lang/mg/denied.txt | 2 +- inc/lang/mr/denied.txt | 3 ++- inc/lang/ne/denied.txt | 3 ++- inc/lang/nl/denied.txt | 3 ++- inc/lang/no/denied.txt | 3 ++- inc/lang/pl/denied.txt | 2 +- inc/lang/pt-br/denied.txt | 3 ++- inc/lang/pt/denied.txt | 3 ++- inc/lang/ro/denied.txt | 3 ++- inc/lang/ru/denied.txt | 3 ++- inc/lang/sk/denied.txt | 3 ++- inc/lang/sl/denied.txt | 3 ++- inc/lang/sq/denied.txt | 3 ++- inc/lang/sr/denied.txt | 2 +- inc/lang/sv/denied.txt | 2 +- inc/lang/th/denied.txt | 3 ++- inc/lang/tr/denied.txt | 2 +- inc/lang/uk/denied.txt | 2 +- inc/lang/vi/denied.txt | 3 ++- inc/lang/zh-tw/denied.txt | 2 +- inc/lang/zh/denied.txt | 3 ++- 57 files changed, 83 insertions(+), 59 deletions(-) (limited to 'inc') diff --git a/inc/lang/ar/denied.txt b/inc/lang/ar/denied.txt index 1d83efdff..b369f7f23 100644 --- a/inc/lang/ar/denied.txt +++ b/inc/lang/ar/denied.txt @@ -1,3 +1,3 @@ ====== لا صلاحيات ====== -عذرا، ليس مصرح لك الاستمرار @NOTLOGGEDIN@ \ No newline at end of file +عذرا، ليس مصرح لك الاستمرار \ No newline at end of file diff --git a/inc/lang/az/denied.txt b/inc/lang/az/denied.txt index 2b5258274..c6fddb63a 100644 --- a/inc/lang/az/denied.txt +++ b/inc/lang/az/denied.txt @@ -1,3 +1,3 @@ ====== Müraciət qadağan edilmişdir ====== -Sizin bu əməliyyat üçün kifayət qədər haqqınız yoxdur. @NOTLOGGEDIN@ +Sizin bu əməliyyat üçün kifayət qədər haqqınız yoxdur. diff --git a/inc/lang/bg/denied.txt b/inc/lang/bg/denied.txt index 2443c3130..bd695d46d 100644 --- a/inc/lang/bg/denied.txt +++ b/inc/lang/bg/denied.txt @@ -1,4 +1,4 @@ ====== Отказан достъп ====== -Нямате достатъчно права, за да продължите. @NOTLOGGEDIN@ +Нямате достатъчно права, за да продължите. diff --git a/inc/lang/bn/denied.txt b/inc/lang/bn/denied.txt index dbc00e26a..5ba0fcf4f 100644 --- a/inc/lang/bn/denied.txt +++ b/inc/lang/bn/denied.txt @@ -1,3 +1,3 @@ ====== অনুমতি অস্বীকার ===== -দুঃখিত, আপনি কি এগিয়ে যেতে যথেষ্ট অধিকার নেই. @NOTLOGGEDIN@ \ No newline at end of file +দুঃখিত, আপনি কি এগিয়ে যেতে যথেষ্ট অধিকার নেই. \ No newline at end of file diff --git a/inc/lang/ca-valencia/denied.txt b/inc/lang/ca-valencia/denied.txt index ff42fd37a..6640e07f5 100644 --- a/inc/lang/ca-valencia/denied.txt +++ b/inc/lang/ca-valencia/denied.txt @@ -1,4 +1,4 @@ ====== Permís denegat ====== -Disculpe, pero no té permís per a continuar. @NOTLOGGEDIN@ +Disculpe, pero no té permís per a continuar. diff --git a/inc/lang/ca/denied.txt b/inc/lang/ca/denied.txt index 481375d2b..3f66d6bb6 100644 --- a/inc/lang/ca/denied.txt +++ b/inc/lang/ca/denied.txt @@ -1,4 +1,4 @@ ====== Permís denegat ====== -No teniu prou drets per continuar. @NOTLOGGEDIN@ +No teniu prou drets per continuar. diff --git a/inc/lang/cs/denied.txt b/inc/lang/cs/denied.txt index c0f82f492..29524e5db 100644 --- a/inc/lang/cs/denied.txt +++ b/inc/lang/cs/denied.txt @@ -1,3 +1,3 @@ ====== Nepovolená akce ====== -Promiňte, ale nemáte dostatečná oprávnění k této činnosti. @NOTLOGGEDIN@ +Promiňte, ale nemáte dostatečná oprávnění k této činnosti. diff --git a/inc/lang/da/denied.txt b/inc/lang/da/denied.txt index 2be828c51..7bf3b8b9b 100644 --- a/inc/lang/da/denied.txt +++ b/inc/lang/da/denied.txt @@ -1,3 +1,3 @@ ====== Adgang nægtet! ====== -Du har ikke rettigheder til at fortsætte. @NOTLOGGEDIN@ +Du har ikke rettigheder til at fortsætte. diff --git a/inc/lang/de-informal/denied.txt b/inc/lang/de-informal/denied.txt index a2713d2e9..99004f6e1 100644 --- a/inc/lang/de-informal/denied.txt +++ b/inc/lang/de-informal/denied.txt @@ -1,4 +1,4 @@ ====== Zugang verweigert ====== -Du hast nicht die erforderliche Berechtigung, um diese Aktion durchzuführen. @NOTLOGGEDIN@ +Du hast nicht die erforderliche Berechtigung, um diese Aktion durchzuführen. diff --git a/inc/lang/de/denied.txt b/inc/lang/de/denied.txt index 1538c694d..db3343876 100644 --- a/inc/lang/de/denied.txt +++ b/inc/lang/de/denied.txt @@ -1,4 +1,4 @@ ====== Zugang verweigert ====== -Sie haben nicht die erforderliche Berechtigung, um diese Aktion durchzuführen. @NOTLOGGEDIN@ +Sie haben nicht die erforderliche Berechtigung, um diese Aktion durchzuführen. diff --git a/inc/lang/el/denied.txt b/inc/lang/el/denied.txt index 1c2717613..25fcbe8ca 100644 --- a/inc/lang/el/denied.txt +++ b/inc/lang/el/denied.txt @@ -2,4 +2,3 @@ Συγγνώμη, αλλά δεν έχετε επαρκή δικαιώματα για την συγκεκριμένη ενέργεια. -@NOTLOGGEDIN@ \ No newline at end of file diff --git a/inc/lang/en/denied.txt b/inc/lang/en/denied.txt index 6f7fe055e..34cb8456a 100644 --- a/inc/lang/en/denied.txt +++ b/inc/lang/en/denied.txt @@ -1,4 +1,4 @@ ====== Permission Denied ====== -Sorry, you don't have enough rights to continue. @NOTLOGGEDIN@ +Sorry, you don't have enough rights to continue. diff --git a/inc/lang/eo/denied.txt b/inc/lang/eo/denied.txt index 942cbbe86..0be6a2e84 100644 --- a/inc/lang/eo/denied.txt +++ b/inc/lang/eo/denied.txt @@ -1,4 +1,4 @@ ====== Aliro malpermesita ====== -Vi ne havas sufiĉajn rajtojn rigardi ĉi tiujn paĝojn. @NOTLOGGEDIN@ +Vi ne havas sufiĉajn rajtojn rigardi ĉi tiujn paĝojn. diff --git a/inc/lang/es/denied.txt b/inc/lang/es/denied.txt index 0887e7ce6..02a76a8cf 100644 --- a/inc/lang/es/denied.txt +++ b/inc/lang/es/denied.txt @@ -1,3 +1,4 @@ ====== Permiso Denegado ====== -Lo siento, no tienes suficientes permisos para continuar. @NOTLOGGEDIN@ \ No newline at end of file +Lo siento, no tienes suficientes permisos para continuar. + diff --git a/inc/lang/et/denied.txt b/inc/lang/et/denied.txt index f2d81c007..093ccf4a8 100644 --- a/inc/lang/et/denied.txt +++ b/inc/lang/et/denied.txt @@ -1,3 +1,4 @@ ====== Sul pole ligipääsuluba ====== -Kahju küll, aga sinu tublidusest ei piisa, et edasi liikuda. @NOTLOGGEDIN@ +Kahju küll, aga sinu tublidusest ei piisa, et edasi liikuda. + diff --git a/inc/lang/eu/denied.txt b/inc/lang/eu/denied.txt index d454ffdfb..869c4c7d8 100644 --- a/inc/lang/eu/denied.txt +++ b/inc/lang/eu/denied.txt @@ -1,3 +1,4 @@ ====== Ez duzu baimenik ====== -Barkatu, ez duzu baimenik orri hau ikusteko. @NOTLOGGEDIN@ \ No newline at end of file +Barkatu, ez duzu baimenik orri hau ikusteko. + diff --git a/inc/lang/fa/denied.txt b/inc/lang/fa/denied.txt index cb9258c03..4bffa0f3c 100644 --- a/inc/lang/fa/denied.txt +++ b/inc/lang/fa/denied.txt @@ -1,3 +1,4 @@ ====== دسترسی ممکن نیست ====== -شرمنده، شما اجازه‌ی دسترسی ب این صفحه را ندارید. @NOTLOGGEDIN@ \ No newline at end of file +شرمنده، شما اجازه‌ی دسترسی ب این صفحه را ندارید. + diff --git a/inc/lang/fi/denied.txt b/inc/lang/fi/denied.txt index 89ae3b8e1..89ebd4830 100644 --- a/inc/lang/fi/denied.txt +++ b/inc/lang/fi/denied.txt @@ -1,3 +1,4 @@ ====== Lupa evätty ====== -Sinulla ei ole tarpeeksi valtuuksia jatkaa. @NOTLOGGEDIN@ +Sinulla ei ole tarpeeksi valtuuksia jatkaa. + diff --git a/inc/lang/fo/denied.txt b/inc/lang/fo/denied.txt index 25d98f634..ecebba88c 100644 --- a/inc/lang/fo/denied.txt +++ b/inc/lang/fo/denied.txt @@ -1,3 +1,4 @@ ====== Atgongd nokta! ====== -Tú hevur ikki rættindi til at halda áfram. @NOTLOGGEDIN@ +Tú hevur ikki rættindi til at halda áfram. + diff --git a/inc/lang/fr/denied.txt b/inc/lang/fr/denied.txt index 8bba75153..da01a4086 100644 --- a/inc/lang/fr/denied.txt +++ b/inc/lang/fr/denied.txt @@ -1,3 +1,4 @@ ====== Autorisation refusée ====== -Désolé, vous n'avez pas suffisement d'autorisations pour poursuivre votre demande. @NOTLOGGEDIN@ +Désolé, vous n'avez pas suffisement d'autorisations pour poursuivre votre demande. + diff --git a/inc/lang/gl/denied.txt b/inc/lang/gl/denied.txt index a0847ecb2..ef37a06f0 100644 --- a/inc/lang/gl/denied.txt +++ b/inc/lang/gl/denied.txt @@ -1,4 +1,4 @@ ====== Permiso Denegado ====== -Sentímolo, mais non tes permisos de abondo para continuares. @NOTLOGGEDIN@ +Sentímolo, mais non tes permisos de abondo para continuares. diff --git a/inc/lang/he/denied.txt b/inc/lang/he/denied.txt index 1c605f7b8..a2e19f3c5 100644 --- a/inc/lang/he/denied.txt +++ b/inc/lang/he/denied.txt @@ -1,3 +1,4 @@ ====== הרשאה נדחתה ====== -אנו מצטערים אך אין לך הרשאות מתאימות כדי להמשיך. @NOTLOGGEDIN@ \ No newline at end of file +אנו מצטערים אך אין לך הרשאות מתאימות כדי להמשיך. + diff --git a/inc/lang/hr/denied.txt b/inc/lang/hr/denied.txt index c9b0ca3eb..172b0fc92 100644 --- a/inc/lang/hr/denied.txt +++ b/inc/lang/hr/denied.txt @@ -2,4 +2,3 @@ Nemate autorizaciju. -@NOTLOGGEDIN@ \ No newline at end of file diff --git a/inc/lang/hu-formal/denied.txt b/inc/lang/hu-formal/denied.txt index f25e4f086..d56a18117 100644 --- a/inc/lang/hu-formal/denied.txt +++ b/inc/lang/hu-formal/denied.txt @@ -1,3 +1,4 @@ ====== Hozzáférés megtadadva ====== -Sajnáljuk, de nincs joga a folytatáshoz. @NOTLOGGEDIN@ \ No newline at end of file +Sajnáljuk, de nincs joga a folytatáshoz. + diff --git a/inc/lang/hu/denied.txt b/inc/lang/hu/denied.txt index 85bb6d352..922cbb895 100644 --- a/inc/lang/hu/denied.txt +++ b/inc/lang/hu/denied.txt @@ -1,4 +1,4 @@ ====== Hozzáférés megtagadva ====== -Sajnáljuk, nincs jogod a folytatáshoz. @NOTLOGGEDIN@ +Sajnáljuk, nincs jogod a folytatáshoz. diff --git a/inc/lang/ia/denied.txt b/inc/lang/ia/denied.txt index 29d35bbde..82f2fc668 100644 --- a/inc/lang/ia/denied.txt +++ b/inc/lang/ia/denied.txt @@ -1,3 +1,4 @@ ====== Permission refusate ====== -Pardono, tu non ha le derectos requisite pro continuar. @NOTLOGGEDIN@ \ No newline at end of file +Pardono, tu non ha le derectos requisite pro continuar. + diff --git a/inc/lang/id/denied.txt b/inc/lang/id/denied.txt index e40be0550..ff09c13c4 100644 --- a/inc/lang/id/denied.txt +++ b/inc/lang/id/denied.txt @@ -1,4 +1,4 @@ ====== Akses Ditolak ====== -Maaf, Anda tidak mempunyai hak akses untuk melanjutkan. @NOTLOGGEDIN@ +Maaf, Anda tidak mempunyai hak akses untuk melanjutkan. diff --git a/inc/lang/it/denied.txt b/inc/lang/it/denied.txt index 6bba10cf0..577d081ce 100644 --- a/inc/lang/it/denied.txt +++ b/inc/lang/it/denied.txt @@ -1,4 +1,4 @@ ====== Accesso negato ====== -Non hai i diritti per continuare. @NOTLOGGEDIN@ +Non hai i diritti per continuare. diff --git a/inc/lang/ja/denied.txt b/inc/lang/ja/denied.txt index 452d62217..98ccb2f5a 100644 --- a/inc/lang/ja/denied.txt +++ b/inc/lang/ja/denied.txt @@ -1,4 +1,4 @@ ====== アクセスが拒否されました ====== -実行する権限がありません。@NOTLOGGEDIN@ +実行する権限がありません。 diff --git a/inc/lang/km/denied.txt b/inc/lang/km/denied.txt index 7fa1868b4..be0371498 100644 --- a/inc/lang/km/denied.txt +++ b/inc/lang/km/denied.txt @@ -1,3 +1,4 @@ ====== បដិសេធអនុញ្ញាត ====== -សូមទុស អ្នកគ្មានអនុញ្ញាតទៅបណ្តទេ។ @NOTLOGGEDIN@ + +សូមទុស អ្នកគ្មានអនុញ្ញាតទៅបណ្តទេ។ diff --git a/inc/lang/ko/denied.txt b/inc/lang/ko/denied.txt index 50556a72e..a4b94be65 100644 --- a/inc/lang/ko/denied.txt +++ b/inc/lang/ko/denied.txt @@ -1,3 +1,4 @@ ====== 권한 거절 ====== -죄송하지만 계속할 수 있는 권한이 없습니다. @NOTLOGGEDIN@ \ No newline at end of file +죄송하지만 계속할 수 있는 권한이 없습니다. + diff --git a/inc/lang/ku/denied.txt b/inc/lang/ku/denied.txt index 6f7fe055e..34cb8456a 100644 --- a/inc/lang/ku/denied.txt +++ b/inc/lang/ku/denied.txt @@ -1,4 +1,4 @@ ====== Permission Denied ====== -Sorry, you don't have enough rights to continue. @NOTLOGGEDIN@ +Sorry, you don't have enough rights to continue. diff --git a/inc/lang/la/denied.txt b/inc/lang/la/denied.txt index e703c7716..1cdaf05c9 100644 --- a/inc/lang/la/denied.txt +++ b/inc/lang/la/denied.txt @@ -1,3 +1,4 @@ ====== Ad hanc paginam accedere non potes ====== -Ad hanc paginam accedere non potes: antea in conuentum ineas, deinde rursum temptas @NOTLOGGEDIN@ \ No newline at end of file +Ad hanc paginam accedere non potes: antea in conuentum ineas. + diff --git a/inc/lang/lb/denied.txt b/inc/lang/lb/denied.txt index a7b52d024..1a7fd8f52 100644 --- a/inc/lang/lb/denied.txt +++ b/inc/lang/lb/denied.txt @@ -1,3 +1,4 @@ ======Erlaabnis verweigert====== -Et deet mer leed, du hues net genuch Rechter fir weiderzefueren. @NOTLOGGEDIN@ +Et deet mer leed, du hues net genuch Rechter fir weiderzefueren. + diff --git a/inc/lang/lt/denied.txt b/inc/lang/lt/denied.txt index de651bb1a..9a8544694 100644 --- a/inc/lang/lt/denied.txt +++ b/inc/lang/lt/denied.txt @@ -1,4 +1,4 @@ ====== Priėjimas uždraustas ====== -Jūs neturite reikiamų teisių, kad galėtumėte tęsti. @NOTLOGGEDIN@ +Jūs neturite reikiamų teisių, kad galėtumėte tęsti. diff --git a/inc/lang/lv/denied.txt b/inc/lang/lv/denied.txt index e8287242e..6733fb2e9 100644 --- a/inc/lang/lv/denied.txt +++ b/inc/lang/lv/denied.txt @@ -1,6 +1,4 @@ ====== Piekļuve aizliegta ====== -Atvaino, tev nav tiesību turpināt. @NOTLOGGEDIN@ - - +Atvaino, tev nav tiesību turpināt. diff --git a/inc/lang/mg/denied.txt b/inc/lang/mg/denied.txt index a769bcd40..d6d2b814e 100644 --- a/inc/lang/mg/denied.txt +++ b/inc/lang/mg/denied.txt @@ -1,4 +1,4 @@ ====== Tsy tafiditra ====== -Miala tsiny fa tsy manana alalana hanohizana mankany ianao. @NOTLOGGEDIN@ +Miala tsiny fa tsy manana alalana hanohizana mankany ianao. diff --git a/inc/lang/mr/denied.txt b/inc/lang/mr/denied.txt index 2a7827e3e..5415fde04 100644 --- a/inc/lang/mr/denied.txt +++ b/inc/lang/mr/denied.txt @@ -1,3 +1,4 @@ ====== परवानगी नाकारली ====== -क्षमा करा, पण तुम्हाला यापुढे जाण्याचे हक्क नाहीत. @NOTLOGGEDIN@ \ No newline at end of file +क्षमा करा, पण तुम्हाला यापुढे जाण्याचे हक्क नाहीत. + diff --git a/inc/lang/ne/denied.txt b/inc/lang/ne/denied.txt index 69e1840e7..5c58cde28 100644 --- a/inc/lang/ne/denied.txt +++ b/inc/lang/ne/denied.txt @@ -1,3 +1,4 @@ ====== अनुमति अमान्य ====== -माफ गर्नुहोला तपाईलाई अगाडि बढ्न अनुमति छैन। @NOTLOGGEDIN@ \ No newline at end of file +माफ गर्नुहोला तपाईलाई अगाडि बढ्न अनुमति छैन। + diff --git a/inc/lang/nl/denied.txt b/inc/lang/nl/denied.txt index 8c2cf3f42..a172ddab6 100644 --- a/inc/lang/nl/denied.txt +++ b/inc/lang/nl/denied.txt @@ -1,3 +1,4 @@ ====== Toegang geweigerd ====== -Sorry: je hebt niet voldoende rechten om verder te gaan. @NOTLOGGEDIN@ +Sorry: je hebt niet voldoende rechten om verder te gaan. + diff --git a/inc/lang/no/denied.txt b/inc/lang/no/denied.txt index f34b73cbb..f60f48f6b 100644 --- a/inc/lang/no/denied.txt +++ b/inc/lang/no/denied.txt @@ -1,3 +1,4 @@ ====== Adgang forbudt ====== -Beklager, men du har ikke rettigheter til dette. @NOTLOGGEDIN@ +Beklager, men du har ikke rettigheter til dette. + diff --git a/inc/lang/pl/denied.txt b/inc/lang/pl/denied.txt index c9352536a..2b268b921 100644 --- a/inc/lang/pl/denied.txt +++ b/inc/lang/pl/denied.txt @@ -1,4 +1,4 @@ ====== Brak dostępu ====== -Nie masz wystarczających uprawnień. @NOTLOGGEDIN@ +Nie masz wystarczających uprawnień. diff --git a/inc/lang/pt-br/denied.txt b/inc/lang/pt-br/denied.txt index 5f6cc318d..9a71df619 100644 --- a/inc/lang/pt-br/denied.txt +++ b/inc/lang/pt-br/denied.txt @@ -1,3 +1,4 @@ ====== Permissão Negada ====== -Desculpe, você não tem permissões suficientes para continuar. @NOTLOGGEDIN@ +Desculpe, você não tem permissões suficientes para continuar. + diff --git a/inc/lang/pt/denied.txt b/inc/lang/pt/denied.txt index e3e0c6e4b..3af816666 100644 --- a/inc/lang/pt/denied.txt +++ b/inc/lang/pt/denied.txt @@ -1,3 +1,4 @@ ====== Permissão Negada ====== -Não possui direitos e permissões suficientes para continuar. @NOTLOGGEDIN@ \ No newline at end of file +Não possui direitos e permissões suficientes para continuar. + diff --git a/inc/lang/ro/denied.txt b/inc/lang/ro/denied.txt index 966b259b9..490233acf 100644 --- a/inc/lang/ro/denied.txt +++ b/inc/lang/ro/denied.txt @@ -1,3 +1,4 @@ ====== Acces nepermis ====== -Din păcate nu ai destule drepturi pentru a continua. @NOTLOGGEDIN@ +Din păcate nu ai destule drepturi pentru a continua. + diff --git a/inc/lang/ru/denied.txt b/inc/lang/ru/denied.txt index e8143810e..6b7c82511 100644 --- a/inc/lang/ru/denied.txt +++ b/inc/lang/ru/denied.txt @@ -1,3 +1,4 @@ ====== Доступ запрещён ====== -Извините, у вас не хватает прав для этого действия. @NOTLOGGEDIN@ \ No newline at end of file +Извините, у вас не хватает прав для этого действия. + diff --git a/inc/lang/sk/denied.txt b/inc/lang/sk/denied.txt index 191c9b42a..aa6f7b8fb 100644 --- a/inc/lang/sk/denied.txt +++ b/inc/lang/sk/denied.txt @@ -1,3 +1,4 @@ ====== Nepovolená akcia ====== -Prepáčte, ale nemáte dostatočné oprávnenie k tejto činnosti. @NOTLOGGEDIN@ +Prepáčte, ale nemáte dostatočné oprávnenie k tejto činnosti. + diff --git a/inc/lang/sl/denied.txt b/inc/lang/sl/denied.txt index ca73c53a2..206e167bb 100644 --- a/inc/lang/sl/denied.txt +++ b/inc/lang/sl/denied.txt @@ -1,3 +1,4 @@ ====== Ni ustreznih dovoljenj ====== -Za nadaljevanje opravila je treba imeti ustrezna dovoljenja. @NOTLOGGEDIN@ +Za nadaljevanje opravila je treba imeti ustrezna dovoljenja. + diff --git a/inc/lang/sq/denied.txt b/inc/lang/sq/denied.txt index 19b04f1f9..60aa05e55 100644 --- a/inc/lang/sq/denied.txt +++ b/inc/lang/sq/denied.txt @@ -1,3 +1,4 @@ ====== Leja Refuzohet ====== -Na vjen keq, ju nuk keni të drejta të mjaftueshme për të vazhduar. @NOTLOGGEDIN@ \ No newline at end of file +Na vjen keq, ju nuk keni të drejta të mjaftueshme për të vazhduar. + diff --git a/inc/lang/sr/denied.txt b/inc/lang/sr/denied.txt index 42d0bdf57..521c28453 100644 --- a/inc/lang/sr/denied.txt +++ b/inc/lang/sr/denied.txt @@ -1,4 +1,4 @@ ====== Забрањен приступ ====== -Извините, али немате довољно права да наставите. @NOTLOGGEDIN@ +Извините, али немате довољно права да наставите. diff --git a/inc/lang/sv/denied.txt b/inc/lang/sv/denied.txt index a60632c6a..7ae09b85b 100644 --- a/inc/lang/sv/denied.txt +++ b/inc/lang/sv/denied.txt @@ -1,4 +1,4 @@ ====== Åtkomst nekad ====== -Tyvärr, du har inte behörighet att fortsätta. @NOTLOGGEDIN@ +Tyvärr, du har inte behörighet att fortsätta. diff --git a/inc/lang/th/denied.txt b/inc/lang/th/denied.txt index 6375697e2..4cc29d626 100644 --- a/inc/lang/th/denied.txt +++ b/inc/lang/th/denied.txt @@ -1,3 +1,4 @@ ====== ปฏิเสธสิทธิ์ ====== -ขออภัย คุณไม่มีสิทธิ์เพียงพอที่จะดำเนินการต่อ @NOTLOGGEDIN@ \ No newline at end of file +ขออภัย คุณไม่มีสิทธิ์เพียงพอที่จะดำเนินการต่อ + diff --git a/inc/lang/tr/denied.txt b/inc/lang/tr/denied.txt index ecc277c1f..2acfd7a8f 100644 --- a/inc/lang/tr/denied.txt +++ b/inc/lang/tr/denied.txt @@ -1,4 +1,4 @@ ====== Yetki Reddedildi ====== -Üzgünüz, devam etmek için yetkiniz yok. @NOTLOGGEDIN@ +Üzgünüz, devam etmek için yetkiniz yok. diff --git a/inc/lang/uk/denied.txt b/inc/lang/uk/denied.txt index 8e0a4fe7f..635d31c38 100644 --- a/inc/lang/uk/denied.txt +++ b/inc/lang/uk/denied.txt @@ -1,4 +1,4 @@ ====== Доступ заборонено ====== -Вибачте, але у вас не вистачає прав для продовження. @NOTLOGGEDIN@ +Вибачте, але у вас не вистачає прав для продовження. diff --git a/inc/lang/vi/denied.txt b/inc/lang/vi/denied.txt index 58739e63e..fe6e759fc 100644 --- a/inc/lang/vi/denied.txt +++ b/inc/lang/vi/denied.txt @@ -1,3 +1,4 @@ ====== Không được phép vào ====== -Rất tiếc là bạn không được phép để tiếp tục. @NOTLOGGEDIN@ +Rất tiếc là bạn không được phép để tiếp tục. + diff --git a/inc/lang/zh-tw/denied.txt b/inc/lang/zh-tw/denied.txt index 4297c1a20..23f306d07 100644 --- a/inc/lang/zh-tw/denied.txt +++ b/inc/lang/zh-tw/denied.txt @@ -1,4 +1,4 @@ ====== 權限拒絕 ====== -抱歉,您沒有足夠權限繼續執行。@NOTLOGGEDIN@ +抱歉,您沒有足夠權限繼續執行。 diff --git a/inc/lang/zh/denied.txt b/inc/lang/zh/denied.txt index bf3a85478..94721e48a 100644 --- a/inc/lang/zh/denied.txt +++ b/inc/lang/zh/denied.txt @@ -1,3 +1,4 @@ ====== 拒绝授权 ====== -对不起,您没有足够权限,无法继续。@NOTLOGGEDIN@ \ No newline at end of file +对不起,您没有足够权限,无法继续。 + -- cgit v1.2.3