From 2f1d4a94ebb4e5c412ea4332751e2a6104c7f26b Mon Sep 17 00:00:00 2001 From: Gabriel Birke Date: Thu, 30 Dec 2010 17:24:38 +0100 Subject: Modified config and lang files for new option --- lib/plugins/config/lang/de/lang.php | 1 + lib/plugins/config/lang/en/lang.php | 1 + lib/plugins/config/settings/config.class.php | 2 +- lib/plugins/config/settings/config.metadata.php | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) (limited to 'lib/plugins') diff --git a/lib/plugins/config/lang/de/lang.php b/lib/plugins/config/lang/de/lang.php index aa763da03..9a8ca3b30 100644 --- a/lib/plugins/config/lang/de/lang.php +++ b/lib/plugins/config/lang/de/lang.php @@ -48,6 +48,7 @@ $lang['dmode'] = 'Rechte für neue Verzeichnisse'; $lang['lang'] = 'Sprache'; $lang['basedir'] = 'Installationsverzeichnis'; $lang['baseurl'] = 'Installationspfad (URL)'; +$lang['cookiedir'] = 'Cookiepfad. Frei lassen, um den gleichen Pfad wie "baseurl" zu benutzen.'; $lang['savedir'] = 'Speicherverzeichnis'; $lang['start'] = 'Startseitenname'; $lang['title'] = 'Titel des Wikis'; diff --git a/lib/plugins/config/lang/en/lang.php b/lib/plugins/config/lang/en/lang.php index a944d6bd7..9003337df 100644 --- a/lib/plugins/config/lang/en/lang.php +++ b/lib/plugins/config/lang/en/lang.php @@ -58,6 +58,7 @@ $lang['lang'] = 'Interface language'; $lang['basedir'] = 'Server path (eg. /dokuwiki/). Leave blank for autodetection.'; $lang['baseurl'] = 'Server URL (eg. http://www.yourserver.com). Leave blank for autodetection.'; $lang['savedir'] = 'Directory for saving data'; +$lang['cookiedir'] = 'Cookie path. Leave blank for using baseurl.'; $lang['start'] = 'Start page name'; $lang['title'] = 'Wiki title'; $lang['template'] = 'Template'; diff --git a/lib/plugins/config/settings/config.class.php b/lib/plugins/config/settings/config.class.php index 01f15a54e..b38f79906 100644 --- a/lib/plugins/config/settings/config.class.php +++ b/lib/plugins/config/settings/config.class.php @@ -341,7 +341,7 @@ if (!class_exists('setting')) { var $_input = NULL; // only used by those classes which error check var $_cautionList = array( - 'basedir' => 'danger', 'baseurl' => 'danger', 'savedir' => 'danger', 'useacl' => 'danger', 'authtype' => 'danger', 'superuser' => 'danger', 'userewrite' => 'danger', + 'basedir' => 'danger', 'baseurl' => 'danger', 'savedir' => 'danger', 'cookiedir' => 'danger', 'useacl' => 'danger', 'authtype' => 'danger', 'superuser' => 'danger', 'userewrite' => 'danger', 'start' => 'warning', 'camelcase' => 'warning', 'deaccent' => 'warning', 'sepchar' => 'warning', 'compression' => 'warning', 'xsendfile' => 'warning', 'renderer_xhtml' => 'warning', 'fnencode' => 'warning', 'allowdebug' => 'security', 'htmlok' => 'security', 'phpok' => 'security', 'iexssprotect' => 'security', 'xmlrpc' => 'security', 'fullpath' => 'security' ); diff --git a/lib/plugins/config/settings/config.metadata.php b/lib/plugins/config/settings/config.metadata.php index c2c3a2d0c..c64fded81 100644 --- a/lib/plugins/config/settings/config.metadata.php +++ b/lib/plugins/config/settings/config.metadata.php @@ -95,6 +95,7 @@ $meta['license'] = array('license'); $meta['savedir'] = array('savedir'); $meta['basedir'] = array('string'); $meta['baseurl'] = array('string'); +$meta['cookiedir'] = array('string'); $meta['dmode'] = array('numeric','_pattern' => '/0[0-7]{3,4}/'); // only accept octal representation $meta['fmode'] = array('numeric','_pattern' => '/0[0-7]{3,4}/'); // only accept octal representation $meta['allowdebug'] = array('onoff'); -- cgit v1.2.3 From 325c7e9562ac271857d7490f978e3ce3c23952d1 Mon Sep 17 00:00:00 2001 From: Kate Arzamastseva Date: Wed, 18 May 2011 14:28:13 +0300 Subject: Ukrainian language update --- lib/plugins/popularity/lang/uk/submitted.txt | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 lib/plugins/popularity/lang/uk/submitted.txt (limited to 'lib/plugins') diff --git a/lib/plugins/popularity/lang/uk/submitted.txt b/lib/plugins/popularity/lang/uk/submitted.txt new file mode 100644 index 000000000..90213858d --- /dev/null +++ b/lib/plugins/popularity/lang/uk/submitted.txt @@ -0,0 +1,2 @@ +====== Відгук популярності ====== +Дані були успішно відправлені. \ No newline at end of file -- cgit v1.2.3 From a375d5e545bb97aa9e91b688b966dc6a9ce0cfe8 Mon Sep 17 00:00:00 2001 From: Guillaume Turri Date: Sat, 28 May 2011 07:53:50 +0200 Subject: Fix display in popularity plugin --- lib/plugins/popularity/admin.php | 2 +- lib/plugins/popularity/lang/en/lang.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/plugins') diff --git a/lib/plugins/popularity/admin.php b/lib/plugins/popularity/admin.php index f9f6ceb65..a04e98a66 100644 --- a/lib/plugins/popularity/admin.php +++ b/lib/plugins/popularity/admin.php @@ -95,7 +95,7 @@ class admin_plugin_popularity extends DokuWiki_Admin_Plugin { //Print the last time the data was sent $lastSent = $this->helper->lastSentTime(); if ( $lastSent !== 0 ){ - echo $this->getLang('lastSent') . datetime_h($lastSent); + echo $this->getLang('lastSent') . ' ' . datetime_h($lastSent); } } else { //If we just submitted the form diff --git a/lib/plugins/popularity/lang/en/lang.php b/lib/plugins/popularity/lang/en/lang.php index 78a5e862c..af6797cb2 100644 --- a/lib/plugins/popularity/lang/en/lang.php +++ b/lib/plugins/popularity/lang/en/lang.php @@ -6,4 +6,4 @@ $lang['autosubmit'] = 'Automatically send data once a month'; $lang['submissionFailed'] = 'The data couldn\'t be sent due to the following error:'; $lang['submitDirectly'] = 'You can send the data manually by submitting the following form.'; $lang['autosubmitError'] = 'The last autosubmit failed, because of the following error: '; -$lang['lastSent'] = 'The data has been sent '; +$lang['lastSent'] = 'The data has been sent'; -- cgit v1.2.3 From 7800517deb6ab16f8211f73adc961a5bcb1ea328 Mon Sep 17 00:00:00 2001 From: Rune Rasmussen Date: Mon, 30 May 2011 19:10:40 +0200 Subject: Norwegian language update --- lib/plugins/acl/lang/no/lang.php | 1 + lib/plugins/config/lang/no/lang.php | 1 + lib/plugins/plugin/lang/no/lang.php | 1 + lib/plugins/popularity/lang/no/lang.php | 1 + lib/plugins/revert/lang/no/lang.php | 1 + lib/plugins/usermanager/lang/no/lang.php | 1 + 6 files changed, 6 insertions(+) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/no/lang.php b/lib/plugins/acl/lang/no/lang.php index cd9e2edfb..71df0b382 100644 --- a/lib/plugins/acl/lang/no/lang.php +++ b/lib/plugins/acl/lang/no/lang.php @@ -15,6 +15,7 @@ * @author Lisa Ditlefsen * @author Erik Pedersen * @author Erik Bjørn Pedersen + * @author Rune Rasmussen syntaxerror.no@gmail.com */ $lang['admin_acl'] = 'Administrasjon av lister for adgangskontroll (ACL)'; $lang['acl_group'] = 'Gruppe'; diff --git a/lib/plugins/config/lang/no/lang.php b/lib/plugins/config/lang/no/lang.php index 208d9b820..6ac765cbf 100644 --- a/lib/plugins/config/lang/no/lang.php +++ b/lib/plugins/config/lang/no/lang.php @@ -12,6 +12,7 @@ * @author Lisa Ditlefsen * @author Erik Pedersen * @author Erik Bjørn Pedersen + * @author Rune Rasmussen syntaxerror.no@gmail.com */ $lang['menu'] = 'Konfigurasjonsinnstillinger'; $lang['error'] = 'Innstillingene ble ikke oppdatert på grunn av en eller flere ugyldig verdier. Vennligst se gjennom endringene og prøv på nytt. diff --git a/lib/plugins/plugin/lang/no/lang.php b/lib/plugins/plugin/lang/no/lang.php index 72d9c19ba..a95ea0085 100644 --- a/lib/plugins/plugin/lang/no/lang.php +++ b/lib/plugins/plugin/lang/no/lang.php @@ -12,6 +12,7 @@ * @author Lisa Ditlefsen * @author Erik Pedersen * @author Erik Bjørn Pedersen + * @author Rune Rasmussen syntaxerror.no@gmail.com */ $lang['menu'] = 'Behandle tillegg'; $lang['download'] = 'Last ned og installer et tillegg'; diff --git a/lib/plugins/popularity/lang/no/lang.php b/lib/plugins/popularity/lang/no/lang.php index 0f7c140ff..e80016f92 100644 --- a/lib/plugins/popularity/lang/no/lang.php +++ b/lib/plugins/popularity/lang/no/lang.php @@ -9,6 +9,7 @@ * @author Lisa Ditlefsen * @author Erik Pedersen * @author Erik Bjørn Pedersen + * @author Rune Rasmussen syntaxerror.no@gmail.com */ $lang['name'] = 'Popularitetsfeedback (kan ta litt tid å laste)'; $lang['submit'] = 'Send data'; diff --git a/lib/plugins/revert/lang/no/lang.php b/lib/plugins/revert/lang/no/lang.php index 262ea3fe5..6f9ba2555 100644 --- a/lib/plugins/revert/lang/no/lang.php +++ b/lib/plugins/revert/lang/no/lang.php @@ -12,6 +12,7 @@ * @author Lisa Ditlefsen * @author Erik Pedersen * @author Erik Bjørn Pedersen + * @author Rune Rasmussen syntaxerror.no@gmail.com */ $lang['menu'] = 'Tilbakestillingsbehandler'; $lang['filter'] = 'Søk etter søppelmeldinger'; diff --git a/lib/plugins/usermanager/lang/no/lang.php b/lib/plugins/usermanager/lang/no/lang.php index df38de1b0..31e27747d 100644 --- a/lib/plugins/usermanager/lang/no/lang.php +++ b/lib/plugins/usermanager/lang/no/lang.php @@ -12,6 +12,7 @@ * @author Lisa Ditlefsen * @author Erik Pedersen * @author Erik Bjørn Pedersen + * @author Rune Rasmussen syntaxerror.no@gmail.com */ $lang['menu'] = 'Behandle brukere'; $lang['noauth'] = '(autentisering av brukere ikke tilgjengelig)'; -- cgit v1.2.3 From 56815381cee694a20bb57eee07a6b3d9bd77fa4a Mon Sep 17 00:00:00 2001 From: Soroush Falahati Date: Mon, 30 May 2011 19:11:41 +0200 Subject: Persian language update --- lib/plugins/config/lang/fa/lang.php | 3 ++- lib/plugins/plugin/lang/fa/lang.php | 2 +- lib/plugins/popularity/lang/fa/lang.php | 10 +++++----- lib/plugins/popularity/lang/fa/submitted.txt | 2 ++ 4 files changed, 10 insertions(+), 7 deletions(-) create mode 100644 lib/plugins/popularity/lang/fa/submitted.txt (limited to 'lib/plugins') diff --git a/lib/plugins/config/lang/fa/lang.php b/lib/plugins/config/lang/fa/lang.php index 30c325872..42cc3ed05 100644 --- a/lib/plugins/config/lang/fa/lang.php +++ b/lib/plugins/config/lang/fa/lang.php @@ -103,12 +103,13 @@ $lang['fetchsize'] = 'بیشینه‌ی حجمی که فایل fetch $lang['notify'] = 'تغییرات به این ایمیل ارسال شود'; $lang['registernotify'] = 'اطلاعات کاربران تازه وارد به این ایمیل ارسال شود'; $lang['mailfrom'] = 'آدرس ایمیلی که برای ایمیل‌های خودکار استفاده می‌شود'; -$lang['mailprefix'] = 'پیشوند عنوان رای‌نامه، برای رای‌نامه‌های خودکار'; +$lang['mailprefix'] = 'پیشوند تیتر ایمیل (جهت ایمیل های خودکار)'; $lang['gzip_output'] = 'استفاده از gzip برای xhtmlها'; $lang['gdlib'] = 'نگارش کتاب‌خانه‌ی GD'; $lang['im_convert'] = 'مسیر ابزار convert از برنامه‌ی ImageMagick'; $lang['jpg_quality'] = 'کیفیت فشرده سازی JPEG (از 0 تا 100)'; $lang['subscribers'] = 'توانایی عضویت در صفحات باشد'; +$lang['subscribe_time'] = 'زمان مورد نیاز برای ارسال خبر نامه ها (ثانیه); این مقدار می بایست کمتر زمانی باشد که در recent_days تعریف شده است.'; $lang['compress'] = 'فشرده‌سازی کد‌های CSS و JavaScript'; $lang['hidepages'] = 'مخفی کردن صفحات با فرمت زیر (از عبارات منظم استفاده شود)'; $lang['send404'] = 'ارسال «HTTP 404/Page Not Found» برای صفحاتی که وجود ندارند'; diff --git a/lib/plugins/plugin/lang/fa/lang.php b/lib/plugins/plugin/lang/fa/lang.php index 01e0a88b2..19a839660 100644 --- a/lib/plugins/plugin/lang/fa/lang.php +++ b/lib/plugins/plugin/lang/fa/lang.php @@ -52,4 +52,4 @@ $lang['enabled'] = 'افزونه‌ی %s فعال شد.'; $lang['notenabled'] = 'افزونه‌ی %s قابلیت فعال کردن ندارد، دسترسی‌ها را چک کنید.'; $lang['disabled'] = 'افزونه‌ی %s غیرفعال شد.'; $lang['notdisabled'] = 'افزونه‌ی %s قابلیت غیرفعال کردن ندارد، دسترسی‌ها را چک کنید.'; -$lang['packageinstalled'] = 'بسته‌ی افزوده‌ها (%d افزونه%s: %s) با موفقیت نصب شد.'; +$lang['packageinstalled'] = 'بسته افزونه (%d افزونه%s: %s) به درستی نصب شد.'; diff --git a/lib/plugins/popularity/lang/fa/lang.php b/lib/plugins/popularity/lang/fa/lang.php index fa08efea4..70c65f1b3 100644 --- a/lib/plugins/popularity/lang/fa/lang.php +++ b/lib/plugins/popularity/lang/fa/lang.php @@ -10,8 +10,8 @@ */ $lang['name'] = 'بازخورد محبوبیت (ممکن است اندکی زمان ببرد)'; $lang['submit'] = 'ارسال اطلاعات'; -$lang['autosubmit'] = 'به طور خودکار، داده‌ها را یک‌بار در ماه بفرست'; -$lang['submissionFailed'] = 'به دلیل زیر امکان ارسال داده‌ها نیست:'; -$lang['submitDirectly'] = 'با ارسال فرم زیر، می‌توانید داده‌ها را بفرستید'; -$lang['autosubmitError'] = 'به دلیل زیر، ارسال خودکار پیشین با مشکل مواجه شده بود:'; -$lang['lastSent'] = 'داده‌ها ارسال شدند'; +$lang['autosubmit'] = 'ارسال خودکار اطلاعات به صورت ماهیانه'; +$lang['submissionFailed'] = 'اطلاعات به علت بروز خطای زیر قابل ارسال نیستند:'; +$lang['submitDirectly'] = 'شما میتوانید اطلاعات را با تکمیل این فرم به صورت دستی ارسال کنید.'; +$lang['autosubmitError'] = 'آخرین ارسال خودکار با خطای مواجه شد, به علت زیر:'; +$lang['lastSent'] = 'اطلاعات ارسال شد.'; diff --git a/lib/plugins/popularity/lang/fa/submitted.txt b/lib/plugins/popularity/lang/fa/submitted.txt new file mode 100644 index 000000000..63eec47ba --- /dev/null +++ b/lib/plugins/popularity/lang/fa/submitted.txt @@ -0,0 +1,2 @@ +====== بازخورد محبوبیت ====== +اطلاعات ارسال شد. \ No newline at end of file -- cgit v1.2.3 From 40c1e7780b08ffe4a60ab7fc4cb2991ab7153a23 Mon Sep 17 00:00:00 2001 From: Martin Michalek Date: Tue, 31 May 2011 09:12:16 +0200 Subject: Add missing Slovak language file --- lib/plugins/popularity/lang/sk/submitted.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 lib/plugins/popularity/lang/sk/submitted.txt (limited to 'lib/plugins') diff --git a/lib/plugins/popularity/lang/sk/submitted.txt b/lib/plugins/popularity/lang/sk/submitted.txt new file mode 100644 index 000000000..f99fb9fa9 --- /dev/null +++ b/lib/plugins/popularity/lang/sk/submitted.txt @@ -0,0 +1,3 @@ +====== Prieskum používania ====== + +Dáta boli úspešne odoslané. \ No newline at end of file -- cgit v1.2.3 From 0f80b0bcd4ca247f7bc4c3830946741546ad6e88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szab=C3=B3=20D=C3=A1vid?= Date: Sat, 4 Jun 2011 00:38:05 +0200 Subject: Hungarian language update --- lib/plugins/acl/lang/hu/lang.php | 1 + lib/plugins/config/lang/hu/lang.php | 2 ++ lib/plugins/plugin/lang/hu/lang.php | 1 + lib/plugins/popularity/lang/hu/lang.php | 1 + lib/plugins/revert/lang/hu/lang.php | 1 + lib/plugins/usermanager/lang/hu/lang.php | 1 + 6 files changed, 7 insertions(+) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/hu/lang.php b/lib/plugins/acl/lang/hu/lang.php index 30401b315..255d838b6 100644 --- a/lib/plugins/acl/lang/hu/lang.php +++ b/lib/plugins/acl/lang/hu/lang.php @@ -7,6 +7,7 @@ * @author schilling.janos@gmail.com * @author Szabó Dávid * @author Sándor TIHANYI + * @author David Szabo */ $lang['admin_acl'] = 'Hozzáférési lista (ACL) kezelő'; $lang['acl_group'] = 'Csoport:'; diff --git a/lib/plugins/config/lang/hu/lang.php b/lib/plugins/config/lang/hu/lang.php index 59cf7a8bf..f991b7c95 100644 --- a/lib/plugins/config/lang/hu/lang.php +++ b/lib/plugins/config/lang/hu/lang.php @@ -7,6 +7,7 @@ * @author schilling.janos@gmail.com * @author Szabó Dávid * @author Sándor TIHANYI + * @author David Szabo */ $lang['menu'] = 'Beállító Központ'; $lang['error'] = 'Helytelen érték miatt a módosítások nem mentődtek. Nézd át a módosításokat, és ments újra. @@ -105,6 +106,7 @@ $lang['fetchsize'] = 'Maximális méret (bájtban), amit a fetch.php $lang['notify'] = 'Az oldal-változásokat erre az e-mail címre küldje'; $lang['registernotify'] = 'Értesítés egy újonnan regisztrált felhasználóról erre az e-mail címre'; $lang['mailfrom'] = 'Az automatikusan küldött levelekben használt e-mail cím'; +$lang['mailprefix'] = 'Előtag az automatikus e-mailek tárgyában'; $lang['gzip_output'] = 'gzip tömörítés használata xhtml-hez (Content-Encoding)'; $lang['gdlib'] = 'GD Lib verzió'; $lang['im_convert'] = 'Útvonal az ImageMagick csomag convert parancsához'; diff --git a/lib/plugins/plugin/lang/hu/lang.php b/lib/plugins/plugin/lang/hu/lang.php index f2ad8c713..25c7b6322 100644 --- a/lib/plugins/plugin/lang/hu/lang.php +++ b/lib/plugins/plugin/lang/hu/lang.php @@ -7,6 +7,7 @@ * @author schilling.janos@gmail.com * @author Szabó Dávid * @author Sándor TIHANYI + * @author David Szabo */ $lang['menu'] = 'Bővítménykezelő'; $lang['download'] = 'Új bővítmény letöltése és telepítése'; diff --git a/lib/plugins/popularity/lang/hu/lang.php b/lib/plugins/popularity/lang/hu/lang.php index fbd554d0d..5dcd1adf0 100644 --- a/lib/plugins/popularity/lang/hu/lang.php +++ b/lib/plugins/popularity/lang/hu/lang.php @@ -7,6 +7,7 @@ * @author schilling.janos@gmail.com * @author Szabó Dávid * @author Sándor TIHANYI + * @author David Szabo */ $lang['name'] = 'Visszajelzés a DokuWiki használatáról (sok időt vehet igénybe a betöltése)'; $lang['submit'] = 'Adatok elküldése'; diff --git a/lib/plugins/revert/lang/hu/lang.php b/lib/plugins/revert/lang/hu/lang.php index 7add3014d..058a63196 100644 --- a/lib/plugins/revert/lang/hu/lang.php +++ b/lib/plugins/revert/lang/hu/lang.php @@ -7,6 +7,7 @@ * @author schilling.janos@gmail.com * @author Szabó Dávid * @author Sándor TIHANYI + * @author David Szabo */ $lang['menu'] = 'Visszaállítás kezelő (anti-SPAM)'; $lang['filter'] = 'SPAM tartalmú oldalak keresése'; diff --git a/lib/plugins/usermanager/lang/hu/lang.php b/lib/plugins/usermanager/lang/hu/lang.php index c3914b24d..9b9740cb0 100644 --- a/lib/plugins/usermanager/lang/hu/lang.php +++ b/lib/plugins/usermanager/lang/hu/lang.php @@ -7,6 +7,7 @@ * @author schilling.janos@gmail.com * @author Szabó Dávid * @author Sándor TIHANYI + * @author David Szabo */ $lang['menu'] = 'Felhasználók kezelése'; $lang['noauth'] = '(A felhasználói azonosítás nem működik.)'; -- cgit v1.2.3 From 66c880eeb412047135a523819da6a6d99aff47f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rivo=20Z=C3=A4ngov?= Date: Sun, 5 Jun 2011 10:04:24 +0200 Subject: Estonian language update --- lib/plugins/acl/lang/et/lang.php | 7 +++++++ lib/plugins/config/lang/et/lang.php | 26 ++++++++++++++++++++++++++ lib/plugins/plugin/lang/et/lang.php | 26 ++++++++++++++++++++++++++ lib/plugins/popularity/lang/et/lang.php | 1 + lib/plugins/revert/lang/et/lang.php | 1 + lib/plugins/usermanager/lang/et/lang.php | 24 ++++++++++++++++++++++++ 6 files changed, 85 insertions(+) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/et/lang.php b/lib/plugins/acl/lang/et/lang.php index 04ce0c08a..bc4c73a16 100644 --- a/lib/plugins/acl/lang/et/lang.php +++ b/lib/plugins/acl/lang/et/lang.php @@ -7,6 +7,7 @@ * @author Aari Juhanson * @author Kaiko Kaur * @author kristian.kankainen@kuu.la + * @author Rivo Zängov */ $lang['admin_acl'] = 'Ligipääsukontrolli nimekirja haldamine'; $lang['acl_group'] = 'Grupp'; @@ -14,8 +15,14 @@ $lang['acl_user'] = 'Kasutaja'; $lang['acl_perms'] = 'Lubatud'; $lang['page'] = 'leht'; $lang['namespace'] = 'alajaotus'; +$lang['btn_select'] = 'Vali'; +$lang['who'] = 'Kasutaja/Grupp'; +$lang['perm'] = 'Õigused'; +$lang['acl_perm0'] = 'Pole'; $lang['acl_perm1'] = 'Lugemine'; $lang['acl_perm2'] = 'Toimetamine'; $lang['acl_perm4'] = 'Tekitamine'; $lang['acl_perm8'] = 'Üles laadimine'; +$lang['acl_perm16'] = 'Kustuta'; $lang['acl_new'] = 'Uue kirje lisamine'; +$lang['acl_mod'] = 'Muuda sissekannet'; diff --git a/lib/plugins/config/lang/et/lang.php b/lib/plugins/config/lang/et/lang.php index 0ffea1244..27f2e87ac 100644 --- a/lib/plugins/config/lang/et/lang.php +++ b/lib/plugins/config/lang/et/lang.php @@ -3,4 +3,30 @@ * Estonian language file * * @author kristian.kankainen@kuu.la + * @author Rivo Zängov */ +$lang['menu'] = 'Seadete haldamine'; +$lang['_configuration_manager'] = 'Seadete haldamine'; +$lang['_basic'] = 'Peamised seaded'; +$lang['_display'] = 'Näitamise seaded'; +$lang['_authentication'] = 'Audentimise seaded'; +$lang['_anti_spam'] = 'Spämmitõrje seaded'; +$lang['_editing'] = 'Muutmise seaded'; +$lang['_links'] = 'Lingi seaded'; +$lang['_media'] = 'Meedia seaded'; +$lang['_advanced'] = 'Laiendatud seaded'; +$lang['_network'] = 'Võrgu seaded'; +$lang['_plugin_sufix'] = 'Plugina seaded'; +$lang['_template_sufix'] = 'Kujunduse seaded'; +$lang['title'] = 'Wiki pealkiri'; +$lang['template'] = 'Kujundus'; +$lang['recent'] = 'Viimased muudatused'; +$lang['signature'] = 'Allkiri'; +$lang['defaultgroup'] = 'Vaikimisi grupp'; +$lang['disableactions_check'] = 'Kontrolli'; +$lang['compression_o_0'] = 'pole'; +$lang['compression_o_gz'] = 'gzip'; +$lang['compression_o_bz2'] = 'bz2'; +$lang['xsendfile_o_0'] = 'ära kasuta'; +$lang['useheading_o_0'] = 'Mitte kunagi'; +$lang['useheading_o_1'] = 'Alati'; diff --git a/lib/plugins/plugin/lang/et/lang.php b/lib/plugins/plugin/lang/et/lang.php index 0ffea1244..088acf39b 100644 --- a/lib/plugins/plugin/lang/et/lang.php +++ b/lib/plugins/plugin/lang/et/lang.php @@ -3,4 +3,30 @@ * Estonian language file * * @author kristian.kankainen@kuu.la + * @author Rivo Zängov */ +$lang['manage'] = 'Paigaldatud pluginad'; +$lang['btn_info'] = 'info'; +$lang['btn_update'] = 'uuenda'; +$lang['btn_delete'] = 'kustuta'; +$lang['btn_settings'] = 'seaded'; +$lang['btn_download'] = 'Lae alla'; +$lang['btn_enable'] = 'Salvesta'; +$lang['url'] = 'URL'; +$lang['installed'] = 'Paigaldatud:'; +$lang['lastupdate'] = 'Viimati uuendatud:'; +$lang['source'] = 'Allikas:'; +$lang['unknown'] = 'tundmatu'; +$lang['updating'] = 'Uuendamine ...'; +$lang['update_none'] = 'Uuendusi ei leitud.'; +$lang['deleting'] = 'Kustutamine ...'; +$lang['deleted'] = 'Plugin %s on kustutatud.'; +$lang['downloading'] = 'Allalaadimine ...'; +$lang['plugin'] = 'Plugin:'; +$lang['components'] = 'Komponendid'; +$lang['name'] = 'Nimi:'; +$lang['date'] = 'Kuupäev'; +$lang['type'] = 'Tüüp:'; +$lang['desc'] = 'Kirjeldus:'; +$lang['author'] = 'Autor:'; +$lang['www'] = 'Veeb:'; diff --git a/lib/plugins/popularity/lang/et/lang.php b/lib/plugins/popularity/lang/et/lang.php index 0ffea1244..ca1410ab0 100644 --- a/lib/plugins/popularity/lang/et/lang.php +++ b/lib/plugins/popularity/lang/et/lang.php @@ -3,4 +3,5 @@ * Estonian language file * * @author kristian.kankainen@kuu.la + * @author Rivo Zängov */ diff --git a/lib/plugins/revert/lang/et/lang.php b/lib/plugins/revert/lang/et/lang.php index 0ffea1244..ca1410ab0 100644 --- a/lib/plugins/revert/lang/et/lang.php +++ b/lib/plugins/revert/lang/et/lang.php @@ -3,4 +3,5 @@ * Estonian language file * * @author kristian.kankainen@kuu.la + * @author Rivo Zängov */ diff --git a/lib/plugins/usermanager/lang/et/lang.php b/lib/plugins/usermanager/lang/et/lang.php index 0ffea1244..2161df918 100644 --- a/lib/plugins/usermanager/lang/et/lang.php +++ b/lib/plugins/usermanager/lang/et/lang.php @@ -3,4 +3,28 @@ * Estonian language file * * @author kristian.kankainen@kuu.la + * @author Rivo Zängov */ +$lang['menu'] = 'Kasutajate haldamine'; +$lang['user_id'] = 'Kasutaja'; +$lang['user_pass'] = 'Parool'; +$lang['user_name'] = 'Tegelik nimi'; +$lang['user_mail'] = 'E-post'; +$lang['user_groups'] = 'Grupid'; +$lang['field'] = 'Väli'; +$lang['value'] = 'Väärtus'; +$lang['add'] = 'Lisa'; +$lang['delete'] = 'Kustuta'; +$lang['delete_selected'] = 'Kustuta valitud'; +$lang['edit'] = 'Muuda'; +$lang['edit_prompt'] = 'Muuda seda kasutajat'; +$lang['modify'] = 'Salvesta muudatused'; +$lang['search'] = 'Otsi'; +$lang['search_prompt'] = 'Soorita otsing'; +$lang['filter'] = 'Filtreeri'; +$lang['update_fail'] = 'Kasutaja uuendamine ebaõnnestus'; +$lang['start'] = 'esimesed'; +$lang['prev'] = 'eelmine'; +$lang['next'] = 'järgmine'; +$lang['last'] = 'viimased'; +$lang['user_notify'] = 'Teavita kasutajat'; -- cgit v1.2.3 From cf82a5b57d89343301a5a819c70ca5d7b336e68e Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Thu, 9 Jun 2011 09:52:30 +0200 Subject: started jQuery port of ACL manager --- lib/plugins/acl/script.js | 97 ++++++++++++++++++++++++----------------------- 1 file changed, 49 insertions(+), 48 deletions(-) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/script.js b/lib/plugins/acl/script.js index d5d0371a9..eccec501e 100644 --- a/lib/plugins/acl/script.js +++ b/lib/plugins/acl/script.js @@ -1,4 +1,14 @@ +/** + * ACL Manager AJAX enhancements + * + * @author Andreas Gohr + */ acl = { + /** + * Initialize the object and attach the event handlers + * + * @todo move to jQuery + */ init: function(){ this.ctl = $('acl_manager'); if(!this.ctl) return; @@ -10,50 +20,39 @@ acl = { addEvent($('acl__user').getElementsByTagName('input')[1],'click',acl.loadinfo); }, - /** * Handle user dropdown + * + * Hides or shows the user/group entry box depending on wht was selected in the + * dropdown element */ userselhandler: function(e){ // make entry field visible/invisible if(this.value == '__g__' || this.value == '__u__'){ - $('acl__user').getElementsByTagName('input')[0].style.display = ''; //acl_w - $('acl__user').getElementsByTagName('input')[1].style.display = ''; //submit + jQuery('#acl__user input').show(); }else{ - $('acl__user').getElementsByTagName('input')[0].style.display = 'none'; - $('acl__user').getElementsByTagName('input')[1].style.display = 'none'; + jQuery('#acl__user input').hide(); } - acl.loadinfo(); }, /** * Load the current permission info and edit form - * - * @param frm - Form element with needed data */ loadinfo: function(){ - // get form - var frm = $('acl__detail').getElementsByTagName('form')[0]; - - // prepare an AJAX call - var ajax = new sack(DOKU_BASE + 'lib/plugins/acl/ajax.php'); - ajax.AjaxFailedAlert = ''; - ajax.encodeURIString = false; - if(ajax.failed) return true; - - // prepare data - var data = Array(); - data[0] = ajax.encVar('ns',frm.elements['ns'].value); - data[1] = ajax.encVar('id',frm.elements['id'].value); - data[2] = ajax.encVar('acl_t',frm.elements['acl_t'].value); - data[3] = ajax.encVar('acl_w',frm.elements['acl_w'].value); - data[4] = ajax.encVar('sectok',frm.elements['sectok'].value); - data[5] = ajax.encVar('ajax','info'); - - ajax.elementObj = $('acl__info'); - - ajax.runAJAX(data.join('&')); + var frm = jQuery('#acl__detail form')[0]; + + jQuery('#acl__info').load( + DOKU_BASE + 'lib/plugins/acl/ajax.php', + { + 'ns': frm.elements['ns'].value, + 'id': frm.elements['id'].value, + 'acl_t': frm.elements['acl_t'].value, + 'acl_w': frm.elements['acl_w'].value, + 'sectok': frm.elements['sectok'].value, + 'ajax': 'info', + } + ); return false; }, @@ -92,37 +91,37 @@ acl = { * Open or close a subtree using AJAX * * @author Andreas Gohr + * @param DOMElement clicky - the plus/minus icon in front of a namespace */ treetoggle: function(clicky){ - var listitem = clicky.parentNode.parentNode; + var listitem = jQuery(clicky).parent().parent(); // if already open, close by removing the sublist - var sublists = listitem.getElementsByTagName('ul'); + var sublists = listitem.find('ul'); if(sublists.length){ - listitem.removeChild(sublists[0]); + listitem.remove('ul'); clicky.src = DOKU_BASE+'lib/images/plus.gif'; clicky.alt = '+'; return false; } - // get the enclosed link (is always the first one) - var link = listitem.getElementsByTagName('a')[0]; + // prepare new ul to load into it via ajax + var ul = document.createElement('ul'); + listitem[0].appendChild(ul); - // prepare an AJAX call to fetch the subtree - var ajax = new sack(DOKU_BASE + 'lib/plugins/acl/ajax.php'); - ajax.AjaxFailedAlert = ''; - ajax.encodeURIString = false; - if(ajax.failed) return true; + // get the enclosed link and the edit form + var link = listitem.find('a')[0]; + var frm = jQuery('#acl__detail form')[0]; + + // prepare ajax data + var data = acl.parseatt(link.search); + data['ajax'] = 'tree'; + data['current_ns'] = frm.elements['ns'].value; + data['current_id'] = frm.elements['id'].value; + + // run ajax + jQuery(ul).load(DOKU_BASE + 'lib/plugins/acl/ajax.php', data); - //prepare the new ul - var ul = document.createElement('ul'); - listitem.appendChild(ul); - ajax.elementObj = ul; - ajax.setVar('ajax', 'tree'); - var frm = $('acl__detail').getElementsByTagName('form')[0]; - ajax.setVar('current_ns', encodeURIComponent(frm.elements['ns'].value)); - ajax.setVar('current_id', encodeURIComponent(frm.elements['id'].value)); - ajax.runAJAX(link.search.substr(1)); clicky.src = DOKU_BASE+'lib/images/minus.gif'; return false; }, @@ -130,6 +129,8 @@ acl = { /** * Handles all clicks in the tree, dispatching the right action based on the * clicked element + * + * @todo move to jQuery */ treehandler: function(e){ if(e.target.src){ // is it an image? -- cgit v1.2.3 From ed5218f1f645be768bb36518b24885923f980b90 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Thu, 9 Jun 2011 10:37:19 +0200 Subject: finished jQuery port of ACL manager --- lib/plugins/acl/script.js | 58 +++++++++++++++-------------------------------- 1 file changed, 18 insertions(+), 40 deletions(-) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/script.js b/lib/plugins/acl/script.js index eccec501e..5b6c9ce1b 100644 --- a/lib/plugins/acl/script.js +++ b/lib/plugins/acl/script.js @@ -6,24 +6,19 @@ acl = { /** * Initialize the object and attach the event handlers - * - * @todo move to jQuery */ init: function(){ - this.ctl = $('acl_manager'); - if(!this.ctl) return; - - var sel = $('acl__user').getElementsByTagName('select')[0]; + if(!jQuery('#acl_manager').length) return; //FIXME only one underscore!! - addEvent(sel,'change',acl.userselhandler); - addEvent($('acl__tree'),'click',acl.treehandler); - addEvent($('acl__user').getElementsByTagName('input')[1],'click',acl.loadinfo); + jQuery('#acl__user select').change(acl.userselhandler); + jQuery('#acl__tree').click(acl.treehandler); + jQuery('#acl__user input[type=submit]').click(acl.loadinfo); }, /** * Handle user dropdown * - * Hides or shows the user/group entry box depending on wht was selected in the + * Hides or shows the user/group entry box depending on what was selected in the * dropdown element */ userselhandler: function(e){ @@ -72,21 +67,6 @@ acl = { return attributes; }, - /** - * htmlspecialchars equivalent - * - * @todo put in gloabl scripts lib? - */ - hsc: function(str) { - str = str.replace(/&/g,"&"); - str = str.replace(/\"/g,"""); - str = str.replace(/\'/g,"'"); - str = str.replace(//g,">"); - return str; - }, - - /** * Open or close a subtree using AJAX * @@ -130,31 +110,29 @@ acl = { * Handles all clicks in the tree, dispatching the right action based on the * clicked element * - * @todo move to jQuery + * @param Event e The event object that caused the execution */ treehandler: function(e){ if(e.target.src){ // is it an image? acl.treetoggle(e.target); } else if(e.target.href){ // is it a link? // remove highlighting - var obj = getElementsByClass('cur',$('acl__tree'),'a'); - for(var i=0; i -1){ - frm.elements['ns'].value = ''; - frm.elements['id'].value = acl.hsc(acl.parseatt(e.target.search)['id']); - }else if(e.target.className.search(/idx_dir/) > -1){ - frm.elements['ns'].value = acl.hsc(acl.parseatt(e.target.search)['ns']); - frm.elements['id'].value = ''; + var frm = jQuery('#acl__detail form')[0]; + if(link.hasClass('wikilink1')){ + jQuery('#acl__detail form input[name=ns]').val(''); + jQuery('#acl__detail form input[name=id]').val(acl.parseatt(link[0].search)['id']); + }else if(link.hasClass('idx_dir')){ + jQuery('#acl__detail form input[name=ns]').val(acl.parseatt(link[0].search)['ns']); + jQuery('#acl__detail form input[name=id]').val(''); } - acl.loadinfo(); } @@ -165,4 +143,4 @@ acl = { }; -addInitEvent(acl.init); +jQuery(acl.init); -- cgit v1.2.3 From 3eff65fe049755ed37e746cf01d13e415ecf229e Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Thu, 16 Jun 2011 18:57:00 +0200 Subject: config manager: always write back to the last file in the local config cascade tree --- lib/plugins/config/settings/config.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/plugins') diff --git a/lib/plugins/config/settings/config.class.php b/lib/plugins/config/settings/config.class.php index 01f15a54e..71e9a7ebc 100644 --- a/lib/plugins/config/settings/config.class.php +++ b/lib/plugins/config/settings/config.class.php @@ -100,8 +100,8 @@ if (!class_exists('configuration')) { if ($this->locked) return false; -# $file = eval('return '.$this->_local_file.';'); - $file = $this->_local_files[0]; + // write back to the last file in the local config cascade + $file = end($this->_local_files); // backup current file (remove any existing backup) if (@file_exists($file) && $backup) { -- cgit v1.2.3 From 388f4f75942dac4bbbc0806ea703f10f23b660ea Mon Sep 17 00:00:00 2001 From: Kiril Velikov Date: Thu, 16 Jun 2011 18:58:59 +0200 Subject: Bulgarian language update --- lib/plugins/config/lang/bg/lang.php | 46 ++++++++++++++++++------------------- 1 file changed, 23 insertions(+), 23 deletions(-) (limited to 'lib/plugins') diff --git a/lib/plugins/config/lang/bg/lang.php b/lib/plugins/config/lang/bg/lang.php index fe1c723f2..2489b0d25 100644 --- a/lib/plugins/config/lang/bg/lang.php +++ b/lib/plugins/config/lang/bg/lang.php @@ -22,7 +22,7 @@ $lang['_header_plugin'] = 'Настройки на приставки'; $lang['_header_template'] = 'Настройки на шаблони'; $lang['_header_undefined'] = 'Неопределени настройки'; $lang['_basic'] = 'Основни настройки'; -$lang['_display'] = 'Настройки на показването'; +$lang['_display'] = 'Настройки за изобразяване'; $lang['_authentication'] = 'Настройки за удостоверяване'; $lang['_anti_spam'] = 'Настройки за борба със SPAM-ма'; $lang['_editing'] = 'Настройки за редактиране'; @@ -30,8 +30,8 @@ $lang['_links'] = 'Настройки на препратките $lang['_media'] = 'Настройки на медията'; $lang['_advanced'] = 'Допълнителни настройки'; $lang['_network'] = 'Мрежови настройки'; -$lang['_plugin_sufix'] = 'Настройки на приставки'; -$lang['_template_sufix'] = 'Настройки на шаблони'; +$lang['_plugin_sufix'] = ' - настройки на приставката'; +$lang['_template_sufix'] = ' - настройки на шаблона'; $lang['_msg_setting_undefined'] = 'Няма метаданни за настройките.'; $lang['_msg_setting_no_class'] = 'Няма клас настройки.'; $lang['_msg_setting_no_default'] = 'Няма стандартна стойност.'; @@ -49,38 +49,38 @@ $lang['fullpath'] = 'Показване на пълния път д $lang['recent'] = 'Скорошни промени'; $lang['breadcrumbs'] = 'Брой на следите'; $lang['youarehere'] = 'Йерархични следи'; -$lang['typography'] = 'Поправяне на разместени букви'; +$lang['typography'] = 'Замяна на последователност от символи с типографски еквивалент'; $lang['htmlok'] = 'Разрешаване вграждането на HTML код'; $lang['phpok'] = 'Разрешаване вграждането на PHP код'; $lang['dformat'] = 'Формат на датата (виж. strftime функцията на PHP)'; $lang['signature'] = 'Подпис'; -$lang['toptoclevel'] = 'Главно ниво за съдържанието'; -$lang['tocminheads'] = 'Минимален брой заглавия, определящ дали съдържанието е създадено'; -$lang['maxtoclevel'] = 'Максимално ниво на съдържанието'; -$lang['maxseclevel'] = 'Максимално ниво за редактиране на секция'; +$lang['toptoclevel'] = 'Главно ниво (заглавие) за съдържанието'; +$lang['tocminheads'] = 'Минимален брой заглавия, определящ дали да бъде създадено съдържание'; +$lang['maxtoclevel'] = 'Максимален брой нива (заглавия) за включване в съдържанието'; +$lang['maxseclevel'] = 'Максимален брой нива предоставяни за самостоятелно редактиране'; $lang['camelcase'] = 'Ползване на CamelCase за линкове'; $lang['deaccent'] = 'Почистване имената на страниците (на файловете)'; $lang['useheading'] = 'Ползване на първото заглавие за име на страница'; -$lang['refcheck'] = 'Проверка за препратка на медия'; +$lang['refcheck'] = 'Проверка за препратка към медия, преди да бъде изтрита'; $lang['refshow'] = 'Брой на показваните медийни препратки'; -$lang['allowdebug'] = 'Включване на debug изключете, ако не е нужен!'; +$lang['allowdebug'] = 'Включване на режи debug - изключете, ако не е нужен!'; $lang['usewordblock'] = 'Блокиране на SPAM въз основа на на списък от думи'; $lang['indexdelay'] = 'Забавяне преди индексиране (сек)'; $lang['relnofollow'] = 'Ползване на rel="nofollow" за външни препратки'; $lang['mailguard'] = 'Промяна на адресите на ел. поща (във форма непозволяваща пращането на SPAM)'; -$lang['iexssprotect'] = 'Проверяване на качените файлове за възможно зловреден JavaScript и HTML код'; +$lang['iexssprotect'] = 'Проверяване на качените файлове за вероятен зловреден JavaScript и HTML код'; $lang['showuseras'] = 'Какво да се показва за потребителя, който последно е променил страницата'; $lang['useacl'] = 'Ползване на списъци за достъп'; -$lang['autopasswd'] = 'Автоматично генериране на пароли'; +$lang['autopasswd'] = 'Автоматично генериране на пароли, на нови потребители и пращане по пощата'; $lang['authtype'] = 'Метод за удостоверяване'; $lang['passcrypt'] = 'Метод за криптиране на паролите'; $lang['defaultgroup'] = 'Стандартна група'; -$lang['superuser'] = 'Супер потребител - група или потребител с пълен достъп до всички страници и функции без значение от настройките на списъците за достъп (ACL)'; -$lang['manager'] = 'Управител - група или потребител, с достъп до определени управляващи фунции '; +$lang['superuser'] = 'Супер потребител - група, потребител или списък със стойности разделени чрез запетая (user1,@group1,user2) с пълен достъп до всички страници и функции без значение от настройките на списъците за достъп (ACL)'; +$lang['manager'] = 'Управител - група, потребител или списък със стойности разделени чрез запетая (user1,@group1,user2) с достъп до определени управленски фунции '; $lang['profileconfirm'] = 'Потвърждаване на промени в профила с парола'; -$lang['disableactions'] = 'Изключване на DokuWiki функции'; +$lang['disableactions'] = 'Изключване функции на DokuWiki'; $lang['disableactions_check'] = 'Проверка'; -$lang['disableactions_subscription'] = 'Записване/Отписване'; +$lang['disableactions_subscription'] = 'Абониране/Отписване'; $lang['disableactions_wikicode'] = 'Преглед на кода/Експортиране на оригинална версия'; $lang['disableactions_other'] = 'Други действия (разделени със запетая)'; $lang['sneaky_index'] = 'Стандартно DokuWiki ще показва всички именни пространства в индекса. Опцията скрива тези, за които потребителят няма права за четене. Това може да доведе и до скриване на иначе достъпни подименни пространства. С определени настройки на списъците за контрол на достъпа (ACL) може да направи индекса неизползваем. '; @@ -94,15 +94,15 @@ $lang['userewrite'] = 'Ползване на nice URL адреси'; $lang['useslash'] = 'Ползване на наклонена черта за разделител на именните пространства в URL'; $lang['usedraft'] = 'Автоматично запазване на чернова по време на редактиране'; $lang['sepchar'] = 'Разделител между думите в имената на страници'; -$lang['canonical'] = 'Ползване на напълно уеднаквени URL адреси'; +$lang['canonical'] = 'Ползване на напълно уеднаквени URL адреси (абсолютни адреси - http://server/path)'; $lang['fnencode'] = 'Метод за кодиране на не-ASCII именуваните файлове.'; $lang['autoplural'] = 'Проверяване за множествено число в препратките'; $lang['compression'] = 'Метод за компресия на attic файлове'; $lang['cachetime'] = 'Макс. период за съхраняване на кеша (сек)'; $lang['locktime'] = 'Макс. период за съхраняване на заключените файлове (сек)'; $lang['fetchsize'] = 'Максимален размер (байтове), който fetch.php може да сваля'; -$lang['notify'] = 'Пращане на съобщения за промени на тази eл. поща'; -$lang['registernotify'] = 'Пращане информация за нови потребители на тази ел. поща'; +$lang['notify'] = 'Пращане на съобщения за промени по странците на следната eл. поща'; +$lang['registernotify'] = 'Пращане на информация за нови потребители на следната ел. поща'; $lang['mailfrom'] = 'Ел. поща, която да се ползва за автоматично изпращане на ел. писма'; $lang['mailprefix'] = 'Представка за темите (поле subject) на автоматично изпращаните ел. писма'; $lang['gzip_output'] = 'Кодиране на съдържанието с gzip за xhtml'; @@ -120,7 +120,7 @@ $lang['xsendfile'] = 'Ползване на Х-Sendfile header, за $lang['renderer_xhtml'] = 'Представяне на основните изходни данни (xhtml) от wiki-то с'; $lang['renderer__core'] = '%s (ядрото на DokuWiki)'; $lang['renderer__plugin'] = '%s (приставка)'; -$lang['rememberme'] = 'Ползване на постоянни бисквитки за вписване (запомни ме)'; +$lang['rememberme'] = 'Ползване на постоянни бисквитки за вписване (за функцията "Запомни ме")'; $lang['rss_type'] = 'Тип на XML емисията'; $lang['rss_linkto'] = 'XML емисията препраща към'; $lang['rss_content'] = 'Какво да показват елементите на XML емисията?'; @@ -143,7 +143,7 @@ $lang['ftp____host'] = 'FTP сървър за хака safemode'; $lang['ftp____port'] = 'FTP порт за хака safemode'; $lang['ftp____user'] = 'FTP потребител за хака safemode'; $lang['ftp____pass'] = 'FTP парола за хака safemode'; -$lang['ftp____root'] = 'FTP главна директория хака safemode'; +$lang['ftp____root'] = 'FTP главна директория за хака safemode'; $lang['license_o_'] = 'Нищо не е избрано'; $lang['typography_o_0'] = 'без'; $lang['typography_o_1'] = 'с изключение на единични кавички'; @@ -179,8 +179,8 @@ $lang['xsendfile_o_2'] = 'Стандартен X-Sendfile header'; $lang['xsendfile_o_3'] = 'Специфичен Nginx X-Accel-Redirect header за пренасочване'; $lang['showuseras_o_loginname'] = 'Име за вписване'; $lang['showuseras_o_username'] = 'Пълно потребителско име'; -$lang['showuseras_o_email'] = 'Ел, поща на потребителите (променени според настройките на mailguard)'; -$lang['showuseras_o_email_link'] = 'Ел. поща на потребителите под формата на mailto: връзки'; +$lang['showuseras_o_email'] = 'Ел, поща (променени според настройките на mailguard)'; +$lang['showuseras_o_email_link'] = 'Ел. поща под формата на връзка тип mailto:'; $lang['useheading_o_0'] = 'Никога'; $lang['useheading_o_navigation'] = 'Само за навигация'; $lang['useheading_o_content'] = 'Само за съдържанието на Wiki-то'; -- cgit v1.2.3 From 28f4004c937cfc11f16e6cc7c0eb7da1a61dfcbe Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Sat, 18 Jun 2011 10:16:47 +0200 Subject: Made the maximum embed size for datauris configurable The feature is now disabled by default. Metadata for config manager was added. --- lib/plugins/config/lang/en/lang.php | 1 + lib/plugins/config/settings/config.metadata.php | 1 + 2 files changed, 2 insertions(+) (limited to 'lib/plugins') diff --git a/lib/plugins/config/lang/en/lang.php b/lib/plugins/config/lang/en/lang.php index 9b7c643bf..e5dd4707a 100644 --- a/lib/plugins/config/lang/en/lang.php +++ b/lib/plugins/config/lang/en/lang.php @@ -133,6 +133,7 @@ $lang['jpg_quality'] = 'JPG compression quality (0-100)'; $lang['subscribers'] = 'Enable page subscription support'; $lang['subscribe_time'] = 'Time after which subscription lists and digests are sent (sec); This should be smaller than the time specified in recent_days.'; $lang['compress'] = 'Compact CSS and javascript output'; +$lang['cssdatauri'] = 'Size in bytes up to which images referenced in CSS files should be embedded right into the stylesheet to reduce HTTP request header overhead. This technique won\'t work in IE < 8! 400 to 600 bytes is a good value. Set 0 to disable.'; $lang['hidepages'] = 'Hide matching pages (regular expressions)'; $lang['send404'] = 'Send "HTTP 404/Page Not Found" for non existing pages'; $lang['sitemap'] = 'Generate Google sitemap (days)'; diff --git a/lib/plugins/config/settings/config.metadata.php b/lib/plugins/config/settings/config.metadata.php index af7e63a61..abea1be1c 100644 --- a/lib/plugins/config/settings/config.metadata.php +++ b/lib/plugins/config/settings/config.metadata.php @@ -179,6 +179,7 @@ $meta['autoplural'] = array('onoff'); $meta['mailfrom'] = array('richemail'); $meta['mailprefix'] = array('string'); $meta['compress'] = array('onoff'); +$meta['cssdatauri'] = array('numeric','_pattern' => '/^\d+$/'); $meta['gzip_output'] = array('onoff'); $meta['hidepages'] = array('string'); $meta['send404'] = array('onoff'); -- cgit v1.2.3 From 0748b4c7cb6a4918212b51bdedad710322ab2a0b Mon Sep 17 00:00:00 2001 From: Nurgozha Kaliaskarov Date: Tue, 21 Jun 2011 20:43:11 +0200 Subject: Kazakh translation added --- lib/plugins/acl/lang/kk/lang.php | 6 ++++++ lib/plugins/config/lang/kk/lang.php | 6 ++++++ lib/plugins/plugin/lang/kk/lang.php | 6 ++++++ lib/plugins/popularity/lang/kk/lang.php | 6 ++++++ lib/plugins/revert/lang/kk/lang.php | 6 ++++++ lib/plugins/usermanager/lang/kk/lang.php | 6 ++++++ 6 files changed, 36 insertions(+) create mode 100644 lib/plugins/acl/lang/kk/lang.php create mode 100644 lib/plugins/config/lang/kk/lang.php create mode 100644 lib/plugins/plugin/lang/kk/lang.php create mode 100644 lib/plugins/popularity/lang/kk/lang.php create mode 100644 lib/plugins/revert/lang/kk/lang.php create mode 100644 lib/plugins/usermanager/lang/kk/lang.php (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/kk/lang.php b/lib/plugins/acl/lang/kk/lang.php new file mode 100644 index 000000000..dde5b9577 --- /dev/null +++ b/lib/plugins/acl/lang/kk/lang.php @@ -0,0 +1,6 @@ + Date: Sat, 2 Jul 2011 13:19:32 +0200 Subject: Swedish language update --- lib/plugins/acl/lang/sv/lang.php | 1 + lib/plugins/config/lang/sv/lang.php | 1 + lib/plugins/plugin/lang/sv/lang.php | 1 + lib/plugins/popularity/lang/sv/lang.php | 1 + lib/plugins/revert/lang/sv/lang.php | 1 + lib/plugins/usermanager/lang/sv/lang.php | 1 + 6 files changed, 6 insertions(+) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/sv/lang.php b/lib/plugins/acl/lang/sv/lang.php index b5fd3b866..7f963d5e1 100644 --- a/lib/plugins/acl/lang/sv/lang.php +++ b/lib/plugins/acl/lang/sv/lang.php @@ -15,6 +15,7 @@ * @author Bogge Bogge * @author Peter Åström * @author Håkan Sandell + * @author mikael@mallander.net */ $lang['admin_acl'] = 'Hantera behörighetslistan (ACL)'; $lang['acl_group'] = 'Grupp'; diff --git a/lib/plugins/config/lang/sv/lang.php b/lib/plugins/config/lang/sv/lang.php index 25392057b..dfd93d37d 100644 --- a/lib/plugins/config/lang/sv/lang.php +++ b/lib/plugins/config/lang/sv/lang.php @@ -15,6 +15,7 @@ * @author Bogge Bogge * @author Peter Åström * @author Håkan Sandell + * @author mikael@mallander.net */ $lang['menu'] = 'Hantera inställningar'; $lang['error'] = 'Inställningarna uppdaterades inte på grund av ett felaktigt värde. Titta igenom dina ändringar och försök sedan spara igen. diff --git a/lib/plugins/plugin/lang/sv/lang.php b/lib/plugins/plugin/lang/sv/lang.php index 0fe03387b..5892e42b5 100644 --- a/lib/plugins/plugin/lang/sv/lang.php +++ b/lib/plugins/plugin/lang/sv/lang.php @@ -15,6 +15,7 @@ * @author Bogge Bogge * @author Peter Åström * @author Håkan Sandell + * @author mikael@mallander.net */ $lang['menu'] = 'Hantera insticksmoduler'; $lang['download'] = 'Ladda ned och installera en ny insticksmodul'; diff --git a/lib/plugins/popularity/lang/sv/lang.php b/lib/plugins/popularity/lang/sv/lang.php index b461a95cf..8be542e7f 100644 --- a/lib/plugins/popularity/lang/sv/lang.php +++ b/lib/plugins/popularity/lang/sv/lang.php @@ -12,6 +12,7 @@ * @author Bogge Bogge * @author Peter Åström * @author Håkan Sandell + * @author mikael@mallander.net */ $lang['name'] = 'Popularitets-feedback (det kan ta en stund att ladda sidan)'; $lang['submit'] = 'Sänd data'; diff --git a/lib/plugins/revert/lang/sv/lang.php b/lib/plugins/revert/lang/sv/lang.php index 1b6ca3374..29c6702eb 100644 --- a/lib/plugins/revert/lang/sv/lang.php +++ b/lib/plugins/revert/lang/sv/lang.php @@ -14,6 +14,7 @@ * @author Bogge Bogge * @author Peter Åström * @author Håkan Sandell + * @author mikael@mallander.net */ $lang['menu'] = 'Hantera återställningar'; $lang['filter'] = 'Sök efter spamsidor'; diff --git a/lib/plugins/usermanager/lang/sv/lang.php b/lib/plugins/usermanager/lang/sv/lang.php index cedd30d1f..bd747927e 100644 --- a/lib/plugins/usermanager/lang/sv/lang.php +++ b/lib/plugins/usermanager/lang/sv/lang.php @@ -14,6 +14,7 @@ * @author Bogge Bogge * @author Peter Åström * @author Håkan Sandell + * @author mikael@mallander.net */ $lang['menu'] = 'Hantera användare'; $lang['noauth'] = '(användarautentisering ej tillgänlig)'; -- cgit v1.2.3 From ba9056cfeae3c6451e5e8e4ae3eff6060cbd3d8a Mon Sep 17 00:00:00 2001 From: Guy Brand Date: Sun, 10 Jul 2011 21:46:13 +0200 Subject: Skipping plural form in plugin installed message --- lib/plugins/plugin/lang/en/lang.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/plugins') diff --git a/lib/plugins/plugin/lang/en/lang.php b/lib/plugins/plugin/lang/en/lang.php index 437c168bd..87570a708 100644 --- a/lib/plugins/plugin/lang/en/lang.php +++ b/lib/plugins/plugin/lang/en/lang.php @@ -73,6 +73,6 @@ $lang['enabled'] = 'Plugin %s enabled.'; $lang['notenabled'] = 'Plugin %s could not be enabled, check file permissions.'; $lang['disabled'] = 'Plugin %s disabled.'; $lang['notdisabled'] = 'Plugin %s could not be disabled, check file permissions.'; -$lang['packageinstalled'] = 'Plugin package (%d plugin%s: %s) successfully installed.'; +$lang['packageinstalled'] = 'Plugin package (%d plugin(s): %s) successfully installed.'; //Setup VIM: ex: et ts=4 : -- cgit v1.2.3 From 11d9d6503055d85d0901c5c30fa68e7610cff2d5 Mon Sep 17 00:00:00 2001 From: Guy Brand Date: Sun, 10 Jul 2011 21:47:49 +0200 Subject: Update french string (plugins installation) --- lib/plugins/plugin/lang/fr/lang.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/plugins') diff --git a/lib/plugins/plugin/lang/fr/lang.php b/lib/plugins/plugin/lang/fr/lang.php index 618e7a75b..2989d4913 100644 --- a/lib/plugins/plugin/lang/fr/lang.php +++ b/lib/plugins/plugin/lang/fr/lang.php @@ -61,4 +61,4 @@ $lang['enabled'] = 'Module %s activé.'; $lang['notenabled'] = 'Le module %s n\'a pas pu être activé, vérifiez le fichier des permissions.'; $lang['disabled'] = 'Module %s désactivé.'; $lang['notdisabled'] = 'Le module %s n\'a pas pu être désactivé, vérifiez le fichier des permissions.'; -$lang['packageinstalled'] = 'Ensemble de modules (%d module%s: %s) installé avec succès.'; +$lang['packageinstalled'] = 'Ensemble de modules (%d module(s): %s) installé avec succès.'; -- cgit v1.2.3 From a1dee2b998bc3dc8436bb076435d405ec412e054 Mon Sep 17 00:00:00 2001 From: Adrian Lang Date: Mon, 11 Jul 2011 22:17:27 +0200 Subject: Fix some bugs and glitches in (mediamanager) tree * Fix selector in subtree loading callback * Remove HTML inconsistencies between AJAX and plain PHP lists * Unify icon and CSS class switching in dw_tree and dw_mediamanager --- lib/plugins/acl/admin.php | 11 ++--------- lib/plugins/acl/ajax.php | 11 ++++------- 2 files changed, 6 insertions(+), 16 deletions(-) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/admin.php b/lib/plugins/acl/admin.php index ea4184ca3..7c12b3374 100644 --- a/lib/plugins/acl/admin.php +++ b/lib/plugins/acl/admin.php @@ -253,19 +253,12 @@ class admin_plugin_acl extends DokuWiki_Admin_Plugin { $data = $this->_get_tree($ns); // wrap a list with the root level around the other namespaces - $item = array( 'level' => 0, 'id' => '*', 'type' => 'd', - 'open' =>'true', 'label' => '['.$lang['mediaroot'].']'); + array_unshift($data, array( 'level' => 0, 'id' => '*', 'type' => 'd', + 'open' =>'true', 'label' => '['.$lang['mediaroot'].']')); - echo '
    '; - echo $this->_html_li_acl($item); - echo '
    '; - echo $this->_html_list_acl($item); - echo '
    '; echo html_buildlist($data,'acl', array($this,'_html_list_acl'), array($this,'_html_li_acl')); - echo ''; - echo '
'; } diff --git a/lib/plugins/acl/ajax.php b/lib/plugins/acl/ajax.php index d91586a5d..d704fa8c9 100644 --- a/lib/plugins/acl/ajax.php +++ b/lib/plugins/acl/ajax.php @@ -44,13 +44,10 @@ if($ajax == 'info'){ $data = $acl->_get_tree($ns,$ns); - foreach($data as $item){ - $item['level'] = $lvl+1; - echo $acl->_html_li_acl($item); - echo '
'; - echo $acl->_html_list_acl($item); - echo '
'; - echo ''; + foreach(array_keys($data) as $item){ + $data[$item]['level'] = $lvl+1; } + echo html_buildlist($data, 'acl', array($acl, '_html_list_acl'), + array($acl, '_html_li_acl')); } -- cgit v1.2.3 From b704da0446180981f7b286604f732155a76306f7 Mon Sep 17 00:00:00 2001 From: Guy Brand Date: Tue, 12 Jul 2011 19:43:37 +0200 Subject: Skipping plural form in plugin installed message (commit forgotten file) --- lib/plugins/plugin/classes/ap_download.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/plugins') diff --git a/lib/plugins/plugin/classes/ap_download.class.php b/lib/plugins/plugin/classes/ap_download.class.php index e3afd142a..6aab4ba3c 100644 --- a/lib/plugins/plugin/classes/ap_download.class.php +++ b/lib/plugins/plugin/classes/ap_download.class.php @@ -114,7 +114,7 @@ class ap_download extends ap_manage { if ($tmp) $this->dir_delete($tmp); if (!$this->manager->error) { - msg(sprintf($this->lang['packageinstalled'], count($this->downloaded), (count($this->downloaded) != 1?'s':''), join(',',$this->downloaded)),1); + msg(sprintf($this->lang['packageinstalled'], count($this->downloaded), join(',',$this->downloaded)),1); $this->refresh(); return true; } -- cgit v1.2.3 From 9ee7fd095e8cb3c84ad95dd52c35630147333ecb Mon Sep 17 00:00:00 2001 From: Sami Olmari Date: Mon, 25 Jul 2011 20:17:44 +0200 Subject: Finish language update --- lib/plugins/acl/lang/fi/lang.php | 1 + lib/plugins/config/lang/fi/lang.php | 2 ++ lib/plugins/plugin/lang/fi/lang.php | 2 ++ lib/plugins/popularity/lang/fi/lang.php | 1 + lib/plugins/revert/lang/fi/lang.php | 1 + lib/plugins/usermanager/lang/fi/lang.php | 1 + 6 files changed, 8 insertions(+) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/fi/lang.php b/lib/plugins/acl/lang/fi/lang.php index 04074d8d4..4f145e0f6 100644 --- a/lib/plugins/acl/lang/fi/lang.php +++ b/lib/plugins/acl/lang/fi/lang.php @@ -5,6 +5,7 @@ * @author otto@valjakko.net * @author Otto Vainio * @author Teemu Mattila + * @author Sami Olmari */ $lang['admin_acl'] = 'Käyttöoikeudet (ACL)'; $lang['acl_group'] = 'Ryhmä'; diff --git a/lib/plugins/config/lang/fi/lang.php b/lib/plugins/config/lang/fi/lang.php index c3434c1f3..0e9bad030 100644 --- a/lib/plugins/config/lang/fi/lang.php +++ b/lib/plugins/config/lang/fi/lang.php @@ -5,6 +5,7 @@ * @author otto@valjakko.net * @author Otto Vainio * @author Teemu Mattila + * @author Sami Olmari */ $lang['menu'] = 'Asetukset'; $lang['error'] = 'Asetuksia ei päivitetty väärän arvon vuoksi. Tarkista muutokset ja lähetä sivu uudestaan. @@ -111,6 +112,7 @@ $lang['jpg_quality'] = 'JPG pakkauslaatu (0-100)'; $lang['subscribers'] = 'Salli tuki sivujen tilaamiselle'; $lang['subscribe_time'] = 'Aika jonka jälkeen tilauslinkit ja yhteenveto lähetetään (sek). Tämän pitäisi olla pienempi, kuin recent_days aika.'; $lang['compress'] = 'Pakkaa CSS ja javascript'; +$lang['cssdatauri'] = 'Maksimikoko tavuina jossa kuvat joihin viitataan CSS-tiedostoista olisi sisällytettynä suoraan tyylitiedostoon jotta HTTP-kyselyjen kaistaa saataisiin kutistettua. Tämä tekniikka ei toimi IE versiossa aikasempi kuin 8! 400:sta 600:aan tavua on hyvä arvo. Aseta 0 kytkeäksesi ominaisuuden pois.'; $lang['hidepages'] = 'Piilota seuraavat sivut (säännönmukainen lauseke)'; $lang['send404'] = 'Lähetä "HTTP 404/Page Not Found" puuttuvista sivuista'; $lang['sitemap'] = 'Luo Google sitemap (päiviä)'; diff --git a/lib/plugins/plugin/lang/fi/lang.php b/lib/plugins/plugin/lang/fi/lang.php index 817b4f20a..c348a2331 100644 --- a/lib/plugins/plugin/lang/fi/lang.php +++ b/lib/plugins/plugin/lang/fi/lang.php @@ -5,6 +5,7 @@ * @author otto@valjakko.net * @author Otto Vainio * @author Teemu Mattila + * @author Sami Olmari */ $lang['menu'] = 'Ylläpidä liitännäisiä'; $lang['download'] = 'Lataa ja asenna uusi liitännäinen'; @@ -50,3 +51,4 @@ $lang['enabled'] = 'Liitännäinen %s käytössä'; $lang['notenabled'] = 'Liitännäistä %s ei voitu ottaa käyttöön. Tarkista tiedostojen oikeudet.'; $lang['disabled'] = 'Liitännäinen %s pois käytössä'; $lang['notdisabled'] = 'Liitännäistä %s ei voitu ottaa pois käytöstä. Tarkista tiedostojen oikeudet.'; +$lang['packageinstalled'] = 'Pluginpaketti (%d plugin%s: %s:) asennettu onnistuneesti.'; diff --git a/lib/plugins/popularity/lang/fi/lang.php b/lib/plugins/popularity/lang/fi/lang.php index a73f63501..d7c230742 100644 --- a/lib/plugins/popularity/lang/fi/lang.php +++ b/lib/plugins/popularity/lang/fi/lang.php @@ -4,6 +4,7 @@ * * @author Otto Vainio * @author Teemu Mattila + * @author Sami Olmari */ $lang['name'] = 'Suosion palaute (voi kestää jonkun aikaa latautua)'; $lang['submit'] = 'Lähetä tiedot'; diff --git a/lib/plugins/revert/lang/fi/lang.php b/lib/plugins/revert/lang/fi/lang.php index 26bc6b76a..fdf9bb81c 100644 --- a/lib/plugins/revert/lang/fi/lang.php +++ b/lib/plugins/revert/lang/fi/lang.php @@ -5,6 +5,7 @@ * @author otto@valjakko.net * @author Otto Vainio * @author Teemu Mattila + * @author Sami Olmari */ $lang['menu'] = 'Palautuksenhallinta'; $lang['filter'] = 'Etsi spammattyjä sivuja'; diff --git a/lib/plugins/usermanager/lang/fi/lang.php b/lib/plugins/usermanager/lang/fi/lang.php index 6eeb4c3e8..1db4bd7fb 100644 --- a/lib/plugins/usermanager/lang/fi/lang.php +++ b/lib/plugins/usermanager/lang/fi/lang.php @@ -5,6 +5,7 @@ * @author otto@valjakko.net * @author Otto Vainio * @author Teemu Mattila + * @author Sami Olmari */ $lang['menu'] = 'Käyttäjähallinta'; $lang['noauth'] = '(autentikointi ei ole käytössä)'; -- cgit v1.2.3 From c4241309cc2c5ed1d2675cf234f9b59ded0019f4 Mon Sep 17 00:00:00 2001 From: Dejan Igrec Date: Mon, 25 Jul 2011 20:19:01 +0200 Subject: Croatian language update --- lib/plugins/acl/lang/hr/help.txt | 11 +++++++++++ lib/plugins/acl/lang/hr/lang.php | 29 +++++++++++++++++++++++++++++ lib/plugins/config/lang/hr/lang.php | 1 + lib/plugins/plugin/lang/hr/lang.php | 1 + lib/plugins/popularity/lang/hr/lang.php | 1 + lib/plugins/revert/lang/hr/lang.php | 1 + lib/plugins/usermanager/lang/hr/lang.php | 1 + 7 files changed, 45 insertions(+) create mode 100644 lib/plugins/acl/lang/hr/help.txt (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/hr/help.txt b/lib/plugins/acl/lang/hr/help.txt new file mode 100644 index 000000000..4e7cfc3c2 --- /dev/null +++ b/lib/plugins/acl/lang/hr/help.txt @@ -0,0 +1,11 @@ +=== Brza Pomoć: === + +Na ovoj stranici možeš dodavati i brisati dozvole za imenske prostore i stranice u svom wiki-u. + +Lijevi prozor prikazuje sve dostupne imenske prostore i stranice. + +Forma iznad ti omogućuje pregled i mijenjanje dozvola odabranom korisniku ili grupi. + +U tablici ispod prikazana su sva trenutno postavljena pravila kontrole pristupa. Koristite je za višestruko brisanje ili mijenjanje pravila. + +Čitanje [[doku>acl|službena dokumentacija o ACL]] može vam pomoći potpuno razumijeti kako kontrola pristupa radi u DokuWiki. \ No newline at end of file diff --git a/lib/plugins/acl/lang/hr/lang.php b/lib/plugins/acl/lang/hr/lang.php index d2094b77b..8c21f1b0b 100644 --- a/lib/plugins/acl/lang/hr/lang.php +++ b/lib/plugins/acl/lang/hr/lang.php @@ -4,4 +4,33 @@ * * @author Branko Rihtman * @author Dražen Odobašić + * @author Dejan Igrec dejan.igrec@gmail.com */ +$lang['admin_acl'] = 'Upravljanje listom kontrole pristupa'; +$lang['acl_group'] = 'Grupa'; +$lang['acl_user'] = 'Korisnik'; +$lang['acl_perms'] = 'Dozvole za'; +$lang['page'] = 'Stranica'; +$lang['namespace'] = 'Imenski prostor'; +$lang['btn_select'] = 'Odaberi'; +$lang['p_user_id'] = 'Korisnik %s trenutno ima sljedeće dozvole na stranici %s: %s.'; +$lang['p_user_ns'] = 'Korisnik %s trenutno ima sljedeće dozvole u imenskom prostoru %s: %s.'; +$lang['p_group_id'] = 'Članovi grupe %s trenutno imaju sljedeće dozvole na stranici %s: %s.'; +$lang['p_group_ns'] = 'Članovi grupe %s trenutno imaju sljedeće dozvole u imenskom prostoru %s: %s.'; +$lang['p_choose_id'] = 'Molim unesti korisnika ili grupu u gornju formu za pregled ili uređivanje dozvola postavljenih za stranicu %s.'; +$lang['p_choose_ns'] = 'Molim unesti korisnika ili grupu u gornju formu za pregled ili uređivanje dozvola postavljenih za imenski prostor %s.'; +$lang['p_inherited'] = 'Napomena: Ove dozvole nisu postavljene eksplicitno već su naslijeđene od drugih grupa ili nadređenih imenskih prostora.'; +$lang['p_isadmin'] = 'Napomena: Odabrana grupa ili korisnik uvijek ima sve dozvole jer je postavljen kao superuser.'; +$lang['p_include'] = 'Više dozvole uključuju sve niže. Dozvole Kreiraj, Učitaj i Briši se primjenjuju samo na imenske prostore, ne stranice.'; +$lang['current'] = 'Trenutna ACL Pravila'; +$lang['where'] = 'Stranica/Imenski prostor'; +$lang['who'] = 'Korisnik/Grupa'; +$lang['perm'] = 'Dozvole'; +$lang['acl_perm0'] = 'Ništa'; +$lang['acl_perm1'] = 'Čitaj'; +$lang['acl_perm2'] = 'Uredi'; +$lang['acl_perm4'] = 'Kreiraj'; +$lang['acl_perm8'] = 'Učitaj'; +$lang['acl_perm16'] = 'Briši'; +$lang['acl_new'] = 'Dodaj novi Zapis'; +$lang['acl_mod'] = 'Promijeni Zapis'; diff --git a/lib/plugins/config/lang/hr/lang.php b/lib/plugins/config/lang/hr/lang.php index d2094b77b..96f1d6afe 100644 --- a/lib/plugins/config/lang/hr/lang.php +++ b/lib/plugins/config/lang/hr/lang.php @@ -4,4 +4,5 @@ * * @author Branko Rihtman * @author Dražen Odobašić + * @author Dejan Igrec dejan.igrec@gmail.com */ diff --git a/lib/plugins/plugin/lang/hr/lang.php b/lib/plugins/plugin/lang/hr/lang.php index d2094b77b..96f1d6afe 100644 --- a/lib/plugins/plugin/lang/hr/lang.php +++ b/lib/plugins/plugin/lang/hr/lang.php @@ -4,4 +4,5 @@ * * @author Branko Rihtman * @author Dražen Odobašić + * @author Dejan Igrec dejan.igrec@gmail.com */ diff --git a/lib/plugins/popularity/lang/hr/lang.php b/lib/plugins/popularity/lang/hr/lang.php index d2094b77b..96f1d6afe 100644 --- a/lib/plugins/popularity/lang/hr/lang.php +++ b/lib/plugins/popularity/lang/hr/lang.php @@ -4,4 +4,5 @@ * * @author Branko Rihtman * @author Dražen Odobašić + * @author Dejan Igrec dejan.igrec@gmail.com */ diff --git a/lib/plugins/revert/lang/hr/lang.php b/lib/plugins/revert/lang/hr/lang.php index d2094b77b..96f1d6afe 100644 --- a/lib/plugins/revert/lang/hr/lang.php +++ b/lib/plugins/revert/lang/hr/lang.php @@ -4,4 +4,5 @@ * * @author Branko Rihtman * @author Dražen Odobašić + * @author Dejan Igrec dejan.igrec@gmail.com */ diff --git a/lib/plugins/usermanager/lang/hr/lang.php b/lib/plugins/usermanager/lang/hr/lang.php index d2094b77b..96f1d6afe 100644 --- a/lib/plugins/usermanager/lang/hr/lang.php +++ b/lib/plugins/usermanager/lang/hr/lang.php @@ -4,4 +4,5 @@ * * @author Branko Rihtman * @author Dražen Odobašić + * @author Dejan Igrec dejan.igrec@gmail.com */ -- cgit v1.2.3 From 71d344831fe505f34e9be3fcbad3dadb7a2a409b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Neves?= Date: Sat, 30 Jul 2011 20:29:32 +0200 Subject: Portuguese language update --- lib/plugins/config/lang/pt/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins') diff --git a/lib/plugins/config/lang/pt/lang.php b/lib/plugins/config/lang/pt/lang.php index 7f5eb9971..f4382aa94 100644 --- a/lib/plugins/config/lang/pt/lang.php +++ b/lib/plugins/config/lang/pt/lang.php @@ -112,6 +112,7 @@ $lang['jpg_quality'] = 'Compressão/Qualidade JPG (0-100)'; $lang['subscribers'] = 'Habilitar o suporte a subscrição de páginas '; $lang['subscribe_time'] = 'Tempo após o qual as listas de subscrição e "digests" são enviados (seg.); Isto deve ser inferior ao tempo especificado em recent_days.'; $lang['compress'] = 'Compactar as saídas de CSS e JavaScript'; +$lang['cssdatauri'] = 'Tamanho em bytes até ao qual as imagens referenciadas em ficheiros CSS devem ser embutidas diretamente no CSS para reduzir a carga de pedidos HTTP extra. Esta técnica não funciona em IE < 8! 400 a 600 bytes é um bom valor. Escolher 0 para desativar.'; $lang['hidepages'] = 'Esconder páginas correspondentes (expressões regulares)'; $lang['send404'] = 'Enviar "HTTP 404/Página não encontrada" para páginas não existentes'; $lang['sitemap'] = 'Gerar Sitemap Google (dias)'; -- cgit v1.2.3 From 4f616b5f20590d5f3a592bd53f2fc932968940d8 Mon Sep 17 00:00:00 2001 From: Christophe Martin Date: Sat, 30 Jul 2011 20:33:43 +0200 Subject: French language update --- lib/plugins/acl/lang/fr/lang.php | 1 + lib/plugins/config/lang/fr/lang.php | 2 ++ lib/plugins/plugin/lang/fr/lang.php | 1 + lib/plugins/popularity/lang/fr/lang.php | 1 + lib/plugins/revert/lang/fr/lang.php | 1 + lib/plugins/usermanager/lang/fr/lang.php | 1 + 6 files changed, 7 insertions(+) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/fr/lang.php b/lib/plugins/acl/lang/fr/lang.php index 36323a51f..fd3f40dfc 100644 --- a/lib/plugins/acl/lang/fr/lang.php +++ b/lib/plugins/acl/lang/fr/lang.php @@ -21,6 +21,7 @@ * @author Florian Gaub * @author Samuel Dorsaz samuel.dorsaz@novelion.net * @author Johan Guilbaud + * @author schplurtz@laposte.net */ $lang['admin_acl'] = 'Gestion de la liste des contrôles d\'accès (ACL)'; $lang['acl_group'] = 'Groupe'; diff --git a/lib/plugins/config/lang/fr/lang.php b/lib/plugins/config/lang/fr/lang.php index 39a665da0..1de255b40 100644 --- a/lib/plugins/config/lang/fr/lang.php +++ b/lib/plugins/config/lang/fr/lang.php @@ -16,6 +16,7 @@ * @author Florian Gaub * @author Samuel Dorsaz samuel.dorsaz@novelion.net * @author Johan Guilbaud + * @author schplurtz@laposte.net */ $lang['menu'] = 'Paramètres de configuration'; $lang['error'] = 'Paramètres non modifiés en raison d\'une valeur non valide, vérifiez vos réglages et réessayez.
Les valeurs erronées sont entourées d\'une bordure rouge.'; @@ -120,6 +121,7 @@ $lang['jpg_quality'] = 'Qualité de la compression JPEG (0-100)'; $lang['subscribers'] = 'Activer l\'abonnement aux pages'; $lang['subscribe_time'] = 'Délai après lequel les listes d\'abonnement et résumés sont envoyés (en secondes). Devrait être plus petit que le délai précisé dans recent_days.'; $lang['compress'] = 'Compresser CSS et JavaScript'; +$lang['cssdatauri'] = 'Taille maximale en octets pour inclure dans les feuilles de styles CSS, les images qui y sont référencées. Cette technique minimise les requêtes HTTP. Pour IE, ceci ne fonctionne qu\'à partir de la version 8 ! Valeurs correctes entre 400 et 600. 0 pour désactiver.'; $lang['hidepages'] = 'Cacher les pages correspondant à (expression régulière)'; $lang['send404'] = 'Renvoyer "HTTP 404/Page Non Trouvée" pour les pages introuvables'; $lang['sitemap'] = 'Fréquence de génération une carte Google du site (en jours)'; diff --git a/lib/plugins/plugin/lang/fr/lang.php b/lib/plugins/plugin/lang/fr/lang.php index 2989d4913..0ff26da19 100644 --- a/lib/plugins/plugin/lang/fr/lang.php +++ b/lib/plugins/plugin/lang/fr/lang.php @@ -16,6 +16,7 @@ * @author Florian Gaub * @author Samuel Dorsaz samuel.dorsaz@novelion.net * @author Johan Guilbaud + * @author schplurtz@laposte.net */ $lang['menu'] = 'Gestion des modules externes'; $lang['download'] = 'Télécharger et installer un nouveau module'; diff --git a/lib/plugins/popularity/lang/fr/lang.php b/lib/plugins/popularity/lang/fr/lang.php index 9aaf3c7d2..3ccc4cb5f 100644 --- a/lib/plugins/popularity/lang/fr/lang.php +++ b/lib/plugins/popularity/lang/fr/lang.php @@ -13,6 +13,7 @@ * @author Florian Gaub * @author Samuel Dorsaz samuel.dorsaz@novelion.net * @author Johan Guilbaud + * @author schplurtz@laposte.net */ $lang['name'] = 'Enquête de popularité (peut nécessiter un certain temps pour être chargée)'; $lang['submit'] = 'Envoyer les données'; diff --git a/lib/plugins/revert/lang/fr/lang.php b/lib/plugins/revert/lang/fr/lang.php index d6dc3ee3d..17a2c3a01 100644 --- a/lib/plugins/revert/lang/fr/lang.php +++ b/lib/plugins/revert/lang/fr/lang.php @@ -14,6 +14,7 @@ * @author Florian Gaub * @author Samuel Dorsaz samuel.dorsaz@novelion.net * @author Johan Guilbaud + * @author schplurtz@laposte.net */ $lang['menu'] = 'Gestionnaire de réversions'; $lang['filter'] = 'Trouver les pages spammées '; diff --git a/lib/plugins/usermanager/lang/fr/lang.php b/lib/plugins/usermanager/lang/fr/lang.php index 49baf9d51..b6910663c 100644 --- a/lib/plugins/usermanager/lang/fr/lang.php +++ b/lib/plugins/usermanager/lang/fr/lang.php @@ -15,6 +15,7 @@ * @author Florian Gaub * @author Samuel Dorsaz samuel.dorsaz@novelion.net * @author Johan Guilbaud + * @author schplurtz@laposte.net */ $lang['menu'] = 'Gestion des utilisateurs'; $lang['noauth'] = '(authentification utilisateur non disponible)'; -- cgit v1.2.3 From d4228d2db11332beba5ca9fa483a45e31a9edbe9 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Thu, 18 Aug 2011 09:45:28 +0200 Subject: popularity plugin: send info on autosend Added information about the autosubmitting feature of the popularity plugin itself. --- lib/plugins/popularity/helper.php | 1 + lib/plugins/popularity/plugin.info.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/plugins') diff --git a/lib/plugins/popularity/helper.php b/lib/plugins/popularity/helper.php index 5ce562319..af1e8a706 100644 --- a/lib/plugins/popularity/helper.php +++ b/lib/plugins/popularity/helper.php @@ -134,6 +134,7 @@ class helper_plugin_popularity extends Dokuwiki_Plugin { $data['popversion'] = $this->version; $data['language'] = $conf['lang']; $data['now'] = time(); + $data['popauto'] = (int) $this->isAutoSubmitEnabled(); // some config values $data['conf_useacl'] = $conf['useacl']; diff --git a/lib/plugins/popularity/plugin.info.txt b/lib/plugins/popularity/plugin.info.txt index 2652bd669..16b148f41 100644 --- a/lib/plugins/popularity/plugin.info.txt +++ b/lib/plugins/popularity/plugin.info.txt @@ -1,7 +1,7 @@ base popularity author Andreas Gohr email andi@splitbrain.org -date 2010-12-09 +date 2011-08-18 name Popularity Feedback Plugin desc Send anonymous data about your wiki to the developers. url http://www.dokuwiki.org/plugin:popularity -- cgit v1.2.3 From 5b812846ce6a2e72e388adbb0dcaadbc0137b173 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Thu, 18 Aug 2011 10:30:16 +0200 Subject: jqueryized usermanager script --- lib/plugins/usermanager/script.js | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'lib/plugins') diff --git a/lib/plugins/usermanager/script.js b/lib/plugins/usermanager/script.js index 68d437129..de013242b 100644 --- a/lib/plugins/usermanager/script.js +++ b/lib/plugins/usermanager/script.js @@ -1,9 +1,8 @@ /** * Add JavaScript confirmation to the User Delete button */ -function usrmgr_delconfirm(){ - if($('usrmgr__del')){ - addEvent( $('usrmgr__del'),'click',function(){ return confirm(reallyDel); } ); - } -}; -addInitEvent(usrmgr_delconfirm); +jQuery(function(){ + jQuery('#usrmgr__del').click(function(){ + return confirm(LANG.del_confirm); + }); +}); -- cgit v1.2.3 From 69b3d093a6e936ae6bfaca6158ede0b1b4ab5593 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Thu, 18 Aug 2011 20:45:07 +0200 Subject: added link to popularity page in intro FS#2305 --- lib/plugins/popularity/lang/de/intro.txt | 2 +- lib/plugins/popularity/lang/en/intro.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/plugins') diff --git a/lib/plugins/popularity/lang/de/intro.txt b/lib/plugins/popularity/lang/de/intro.txt index 63b120662..dc014e029 100644 --- a/lib/plugins/popularity/lang/de/intro.txt +++ b/lib/plugins/popularity/lang/de/intro.txt @@ -1,6 +1,6 @@ ====== Popularitäts-Feedback ====== -Dieses Werkzeug sammelt verschiedene anonyme Daten über Ihr Wiki und erlaubt es Ihnen, diese an die DokuWiki-Entwickler zurückzusenden. Diese Daten helfen den Entwicklern besser zu verstehen, wie DokuWiki eingesetzt wird und stellt sicher, dass zukünftige, die Weiterentwicklung von DokuWiki betreffende, Entscheidungen auf Basis echter Nutzerdaten getroffen werden. +Dieses [[doku>popularity|Werkzeug]] sammelt verschiedene anonyme Daten über Ihr Wiki und erlaubt es Ihnen, diese an die DokuWiki-Entwickler zurückzusenden. Diese Daten helfen den Entwicklern besser zu verstehen, wie DokuWiki eingesetzt wird und stellt sicher, dass zukünftige, die Weiterentwicklung von DokuWiki betreffende, Entscheidungen auf Basis echter Nutzerdaten getroffen werden. Bitte wiederholen Sie das Versenden der Daten von Zeit zu Zeit, um die Entwickler über das Wachstum Ihres Wikis auf dem Laufenden zu halten. Ihre wiederholten Dateneinsendungen werden über eine anonyme ID identifiziert. diff --git a/lib/plugins/popularity/lang/en/intro.txt b/lib/plugins/popularity/lang/en/intro.txt index 0812ffbe3..e1d6d940a 100644 --- a/lib/plugins/popularity/lang/en/intro.txt +++ b/lib/plugins/popularity/lang/en/intro.txt @@ -1,6 +1,6 @@ ====== Popularity Feedback ====== -This tool gathers anonymous data about your wiki and allows you to send it back to the DokuWiki developers. This helps them to understand them how DokuWiki is used by its users and makes sure future development decisions are backed up by real world usage statistics. +This [[doku>popularity|tool]] gathers anonymous data about your wiki and allows you to send it back to the DokuWiki developers. This helps them to understand them how DokuWiki is used by its users and makes sure future development decisions are backed up by real world usage statistics. You are encouraged to repeat this step from time to time to keep developers informed when your wiki grows. Your repeated data sets will be identified by an anonymous ID. -- cgit v1.2.3 From 37f58beb831123388fa2373e0540fc8a5e585dac Mon Sep 17 00:00:00 2001 From: Guillaume Turri Date: Fri, 19 Aug 2011 21:34:16 +0300 Subject: French localization of 69b3d ("added link to popularity page in intro FS#2305") --- lib/plugins/popularity/lang/fr/intro.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/plugins') diff --git a/lib/plugins/popularity/lang/fr/intro.txt b/lib/plugins/popularity/lang/fr/intro.txt index 58be61d03..041e65d69 100644 --- a/lib/plugins/popularity/lang/fr/intro.txt +++ b/lib/plugins/popularity/lang/fr/intro.txt @@ -1,6 +1,6 @@ ====== Enquête de popularité ====== -Cet outil collecte des données anonymes concernant votre wiki et vous permet de les expédier aux développeurs de DokuWiki. Ceci leur permet de mieux comprendre comment DokuWiki est employé par ses utilisateurs et d'orienter les décisions sur les développements futurs en tenant compte des statistiques d'usage réel. +Cet [[doku>popularity|outil]] collecte des données anonymes concernant votre wiki et vous permet de les expédier aux développeurs de DokuWiki. Ceci leur permet de mieux comprendre comment DokuWiki est employé par ses utilisateurs et d'orienter les décisions sur les développements futurs en tenant compte des statistiques d'usage réel. Vous êtes encouragé à répéter l'opération de collecte et d'envoi des données anonymes de temps en temps afin d'informer les développeurs de la croissance de votre wiki. -- cgit v1.2.3 From 2b580f7af6af343aef14df02fb81a9ba382ae41a Mon Sep 17 00:00:00 2001 From: Adrian Lang Date: Fri, 19 Aug 2011 15:55:32 +0200 Subject: jQuerify acl plugin JavaScript --- lib/plugins/acl/admin.php | 3 +- lib/plugins/acl/script.js | 163 ++++++++++++++++++++-------------------------- lib/plugins/acl/style.css | 1 + 3 files changed, 74 insertions(+), 93 deletions(-) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/admin.php b/lib/plugins/acl/admin.php index 7c12b3374..53f6db0cc 100644 --- a/lib/plugins/acl/admin.php +++ b/lib/plugins/acl/admin.php @@ -540,7 +540,8 @@ class admin_plugin_acl extends DokuWiki_Admin_Plugin { function _html_li_acl($item){ - return '
  • '; + return '
  • '; } diff --git a/lib/plugins/acl/script.js b/lib/plugins/acl/script.js index 5b6c9ce1b..4fc97aeb5 100644 --- a/lib/plugins/acl/script.js +++ b/lib/plugins/acl/script.js @@ -3,16 +3,44 @@ * * @author Andreas Gohr */ -acl = { +var dw_acl = { /** * Initialize the object and attach the event handlers */ - init: function(){ - if(!jQuery('#acl_manager').length) return; //FIXME only one underscore!! + init: function () { + var $tree; - jQuery('#acl__user select').change(acl.userselhandler); - jQuery('#acl__tree').click(acl.treehandler); - jQuery('#acl__user input[type=submit]').click(acl.loadinfo); + //FIXME only one underscore!! + if (jQuery('#acl_manager').length === 0) { + return; + } + + jQuery('#acl__user select').change(dw_acl.userselhandler); + jQuery('#acl__user input[type=submit]').click(dw_acl.loadinfo); + + $tree = jQuery('#acl__tree'); + $tree.dw_tree({toggle_selector: 'img', + load_data: function (show_sublist, $clicky) { + // get the enclosed link and the edit form + var $frm = jQuery('#acl__detail form'); + + jQuery.post( + DOKU_BASE + 'lib/plugins/acl/ajax.php', + jQuery.extend(dw_acl.parseatt($clicky.parent().find('a')[0].search), + {ajax: 'tree', + current_ns: $frm.find('input[name=ns]').val(), + current_id: $frm.find('input[name=id]').val()}), + show_sublist, + 'html' + ); + }, + + toggle_display: function ($clicky, opening) { + $clicky.attr('src', + DOKU_BASE + 'lib/images/' + + (opening ? 'minus' : 'plus') + '.gif'); + }}); + $tree.delegate('a', 'click', dw_acl.treehandler); }, /** @@ -21,32 +49,20 @@ acl = { * Hides or shows the user/group entry box depending on what was selected in the * dropdown element */ - userselhandler: function(e){ + userselhandler: function () { // make entry field visible/invisible - if(this.value == '__g__' || this.value == '__u__'){ - jQuery('#acl__user input').show(); - }else{ - jQuery('#acl__user input').hide(); - } - acl.loadinfo(); + jQuery('#acl__user input').toggle(this.value === '__g__' || + this.value === '__u__'); + dw_acl.loadinfo(); }, /** * Load the current permission info and edit form */ - loadinfo: function(){ - var frm = jQuery('#acl__detail form')[0]; - + loadinfo: function () { jQuery('#acl__info').load( DOKU_BASE + 'lib/plugins/acl/ajax.php', - { - 'ns': frm.elements['ns'].value, - 'id': frm.elements['id'].value, - 'acl_t': frm.elements['acl_t'].value, - 'acl_w': frm.elements['acl_w'].value, - 'sectok': frm.elements['sectok'].value, - 'ajax': 'info', - } + jQuery('#acl__detail form').serialize() + '&ajax=info' ); return false; }, @@ -56,11 +72,13 @@ acl = { * * @todo put into global script lib? */ - parseatt: function(str){ - if(str[0] == '?') str = str.substr(1); + parseatt: function (str) { + if (str[0] === '?') { + str = str.substr(1); + } var attributes = {}; var all = str.split('&'); - for(var i=0; i - * @param DOMElement clicky - the plus/minus icon in front of a namespace + * Handles clicks to the tree nodes */ - treetoggle: function(clicky){ - var listitem = jQuery(clicky).parent().parent(); - - // if already open, close by removing the sublist - var sublists = listitem.find('ul'); - if(sublists.length){ - listitem.remove('ul'); - clicky.src = DOKU_BASE+'lib/images/plus.gif'; - clicky.alt = '+'; - return false; - } + treehandler: function () { + var $link, $frm; - // prepare new ul to load into it via ajax - var ul = document.createElement('ul'); - listitem[0].appendChild(ul); + $link = jQuery(this); - // get the enclosed link and the edit form - var link = listitem.find('a')[0]; - var frm = jQuery('#acl__detail form')[0]; + // remove highlighting + jQuery('#acl__tree a.cur').removeClass('cur'); - // prepare ajax data - var data = acl.parseatt(link.search); - data['ajax'] = 'tree'; - data['current_ns'] = frm.elements['ns'].value; - data['current_id'] = frm.elements['id'].value; + // add new highlighting + $link.addClass('cur'); - // run ajax - jQuery(ul).load(DOKU_BASE + 'lib/plugins/acl/ajax.php', data); - - clicky.src = DOKU_BASE+'lib/images/minus.gif'; - return false; - }, - - /** - * Handles all clicks in the tree, dispatching the right action based on the - * clicked element - * - * @param Event e The event object that caused the execution - */ - treehandler: function(e){ - if(e.target.src){ // is it an image? - acl.treetoggle(e.target); - } else if(e.target.href){ // is it a link? - // remove highlighting - jQuery('#acl__tree a.cur').removeClass('cur'); - - var link = jQuery(e.target); - - // add new highlighting - link.addClass('cur'); - - // set new page to detail form - var frm = jQuery('#acl__detail form')[0]; - if(link.hasClass('wikilink1')){ - jQuery('#acl__detail form input[name=ns]').val(''); - jQuery('#acl__detail form input[name=id]').val(acl.parseatt(link[0].search)['id']); - }else if(link.hasClass('idx_dir')){ - jQuery('#acl__detail form input[name=ns]').val(acl.parseatt(link[0].search)['ns']); - jQuery('#acl__detail form input[name=id]').val(''); - } - acl.loadinfo(); + // set new page to detail form + $frm = jQuery('#acl__detail form'); + if ($link.hasClass('wikilink1')) { + $frm.find('input[name=ns]').val(''); + $frm.find('input[name=id]').val(dw_acl.parseatt($link[0].search).id); + } else if ($link.hasClass('idx_dir')) { + $frm.find('input[name=ns]').val(dw_acl.parseatt($link[0].search).ns); + $frm.find('input[name=id]').val(''); } + dw_acl.loadinfo(); - e.stopPropagation(); - e.preventDefault(); return false; } - }; -jQuery(acl.init); +jQuery(dw_acl.init); + +var acl = { + init: DEPRECATED_WRAP(dw_acl.init, dw_acl), + userselhandler: DEPRECATED_WRAP(dw_acl.userselhandler, dw_acl), + loadinfo: DEPRECATED_WRAP(dw_acl.loadinfo, dw_acl), + parseatt: DEPRECATED_WRAP(dw_acl.parseatt, dw_acl), + treehandler: DEPRECATED_WRAP(dw_acl.treehandler, dw_acl) +}; diff --git a/lib/plugins/acl/style.css b/lib/plugins/acl/style.css index 0c5a9819b..b7154aa78 100644 --- a/lib/plugins/acl/style.css +++ b/lib/plugins/acl/style.css @@ -22,6 +22,7 @@ div#acl_manager div#acl__tree ul { div#acl_manager div#acl__tree li { padding-left: 1em; + list-style-image: none; } div#acl_manager div#acl__tree ul img { -- cgit v1.2.3 From b838050e5828b5cbf32b9e82ce11c9cc54592809 Mon Sep 17 00:00:00 2001 From: Piyush Mishra Date: Sat, 20 Aug 2011 19:11:52 +0530 Subject: added new plugins config cascade and added plugin.info.txt --- lib/plugins/acl/admin.php | 14 -------------- lib/plugins/acl/plugin.info.txt | 6 ++++++ lib/plugins/config/admin.php | 15 --------------- lib/plugins/config/plugin.info.txt | 6 ++++++ lib/plugins/info/plugin.info.txt | 6 ++++++ lib/plugins/revert/admin.php | 14 -------------- lib/plugins/revert/plugin.info.txt | 6 ++++++ lib/plugins/usermanager/admin.php | 14 -------------- lib/plugins/usermanager/plugin.info.txt | 6 ++++++ 9 files changed, 30 insertions(+), 57 deletions(-) create mode 100644 lib/plugins/acl/plugin.info.txt create mode 100644 lib/plugins/config/plugin.info.txt create mode 100644 lib/plugins/info/plugin.info.txt create mode 100644 lib/plugins/revert/plugin.info.txt create mode 100644 lib/plugins/usermanager/plugin.info.txt (limited to 'lib/plugins') diff --git a/lib/plugins/acl/admin.php b/lib/plugins/acl/admin.php index 53f6db0cc..a6b0624bc 100644 --- a/lib/plugins/acl/admin.php +++ b/lib/plugins/acl/admin.php @@ -30,20 +30,6 @@ class admin_plugin_acl extends DokuWiki_Admin_Plugin { var $usersgroups = array(); var $specials = array(); - /** - * return some info - */ - function getInfo(){ - return array( - 'author' => 'Andreas Gohr', - 'email' => 'andi@splitbrain.org', - 'date' => '2011-04-16', - 'name' => 'ACL Manager', - 'desc' => 'Manage Page Access Control Lists', - 'url' => 'http://dokuwiki.org/plugin:acl', - ); - } - /** * return prompt for admin menu */ diff --git a/lib/plugins/acl/plugin.info.txt b/lib/plugins/acl/plugin.info.txt new file mode 100644 index 000000000..f108a2390 --- /dev/null +++ b/lib/plugins/acl/plugin.info.txt @@ -0,0 +1,6 @@ +author Andreas Gohr +email andi@splitbrain.org +date 2011-04-16 +name ACL Manager +desc Manage Page Access Control Lists +url http://dokuwiki.org/plugin:acl diff --git a/lib/plugins/config/admin.php b/lib/plugins/config/admin.php index e24f3b87b..64906171d 100644 --- a/lib/plugins/config/admin.php +++ b/lib/plugins/config/admin.php @@ -32,21 +32,6 @@ class admin_plugin_config extends DokuWiki_Admin_Plugin { var $_session_started = false; var $_localised_prompts = false; - /** - * return some info - */ - function getInfo(){ - - return array( - 'author' => 'Christopher Smith', - 'email' => 'chris@jalakai.co.uk', - 'date' => '2007-08-05', - 'name' => 'Configuration Manager', - 'desc' => "Manage Dokuwiki's Configuration Settings", - 'url' => 'http://dokuwiki.org/plugin:config', - ); - } - function getMenuSort() { return 100; } /** diff --git a/lib/plugins/config/plugin.info.txt b/lib/plugins/config/plugin.info.txt new file mode 100644 index 000000000..ace4889b6 --- /dev/null +++ b/lib/plugins/config/plugin.info.txt @@ -0,0 +1,6 @@ +author Christopher Smith +email chris@jalakai.co.uk +date 2007-08-05 +name Configuration Manager +desc Manage Dokuwiki's Configuration Settings +url http://dokuwiki.org/plugin:config diff --git a/lib/plugins/info/plugin.info.txt b/lib/plugins/info/plugin.info.txt new file mode 100644 index 000000000..2432225f1 --- /dev/null +++ b/lib/plugins/info/plugin.info.txt @@ -0,0 +1,6 @@ +author Andreas Gohr +email andi@splitbrain.org +date 2008-09-12 +name Info Plugin +desc Displays information about various DokuWiki internals +url http://dokuwiki.org/plugin:info diff --git a/lib/plugins/revert/admin.php b/lib/plugins/revert/admin.php index e188e2488..2aaf1395f 100644 --- a/lib/plugins/revert/admin.php +++ b/lib/plugins/revert/admin.php @@ -20,20 +20,6 @@ class admin_plugin_revert extends DokuWiki_Admin_Plugin { $this->setupLocale(); } - /** - * return some info - */ - function getInfo(){ - return array( - 'author' => 'Andreas Gohr', - 'email' => 'andi@splitbrain.org', - 'date' => '2008-12-10', - 'name' => 'Revert Manager', - 'desc' => 'Allows you to mass revert recent edits', - 'url' => 'http://dokuwiki.org/plugin:revert', - ); - } - /** * access for managers */ diff --git a/lib/plugins/revert/plugin.info.txt b/lib/plugins/revert/plugin.info.txt new file mode 100644 index 000000000..5bb6f3413 --- /dev/null +++ b/lib/plugins/revert/plugin.info.txt @@ -0,0 +1,6 @@ +author Andreas Gohr +email andi@splitbrain.org +date 2008-12-10 +name Revert Manager +desc Allows you to mass revert recent edits +url http://dokuwiki.org/plugin:revert diff --git a/lib/plugins/usermanager/admin.php b/lib/plugins/usermanager/admin.php index e40ee9b7e..8e90be093 100644 --- a/lib/plugins/usermanager/admin.php +++ b/lib/plugins/usermanager/admin.php @@ -51,20 +51,6 @@ class admin_plugin_usermanager extends DokuWiki_Admin_Plugin { } } - /** - * return some info - */ - function getInfo(){ - - return array( - 'author' => 'Chris Smith', - 'email' => 'chris@jalakai.co.uk', - 'date' => '2008-09-17', - 'name' => 'User Manager', - 'desc' => 'Manage users '.$this->disabled, - 'url' => 'http://dokuwiki.org/plugin:usermanager', - ); - } /** * return prompt for admin menu */ diff --git a/lib/plugins/usermanager/plugin.info.txt b/lib/plugins/usermanager/plugin.info.txt new file mode 100644 index 000000000..7ec5fafd5 --- /dev/null +++ b/lib/plugins/usermanager/plugin.info.txt @@ -0,0 +1,6 @@ +author Chris Smith +email chris@jalakai.co.uk +date 2008-09-17 +name User Manager +desc Manage users +url http://dokuwiki.org/plugin:usermanager -- cgit v1.2.3 From 9de3b5710719658ef75740c0bd930423cc7c209c Mon Sep 17 00:00:00 2001 From: Kate Arzamastseva Date: Sun, 21 Aug 2011 02:16:39 +0300 Subject: issue #44 uploader fixes, #45 browser testing --- lib/plugins/acl/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/script.js b/lib/plugins/acl/script.js index 5b6c9ce1b..a3dbbe0d2 100644 --- a/lib/plugins/acl/script.js +++ b/lib/plugins/acl/script.js @@ -45,7 +45,7 @@ acl = { 'acl_t': frm.elements['acl_t'].value, 'acl_w': frm.elements['acl_w'].value, 'sectok': frm.elements['sectok'].value, - 'ajax': 'info', + 'ajax': 'info' } ); return false; -- cgit v1.2.3 From e7f921dcad959dc0d27e53da4d77f5b1211c030a Mon Sep 17 00:00:00 2001 From: Oscar Ciudad Date: Sat, 27 Aug 2011 13:53:11 +0200 Subject: Spanish language update --- lib/plugins/acl/lang/es/lang.php | 1 + lib/plugins/config/lang/es/lang.php | 2 ++ lib/plugins/plugin/lang/es/lang.php | 1 + lib/plugins/popularity/lang/es/lang.php | 1 + lib/plugins/revert/lang/es/lang.php | 1 + lib/plugins/usermanager/lang/es/lang.php | 1 + 6 files changed, 7 insertions(+) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/es/lang.php b/lib/plugins/acl/lang/es/lang.php index 096320af9..91a4ca1a1 100644 --- a/lib/plugins/acl/lang/es/lang.php +++ b/lib/plugins/acl/lang/es/lang.php @@ -20,6 +20,7 @@ * @author Victor Castelan * @author Mauro Javier Giamberardino * @author emezeta + * @author Oscar Ciudad */ $lang['admin_acl'] = 'Administración de lista de control de acceso'; $lang['acl_group'] = 'Grupo'; diff --git a/lib/plugins/config/lang/es/lang.php b/lib/plugins/config/lang/es/lang.php index 5355d64ad..ccb963ff1 100644 --- a/lib/plugins/config/lang/es/lang.php +++ b/lib/plugins/config/lang/es/lang.php @@ -20,6 +20,7 @@ * @author Victor Castelan * @author Mauro Javier Giamberardino * @author emezeta + * @author Oscar Ciudad */ $lang['menu'] = 'Parámetros de configuración'; $lang['error'] = 'Los parámetros no han sido actualizados a causa de un valor inválido, por favor revise los cambios y re-envíe el formulario.
    Los valores incorrectos se mostrarán con un marco rojo alrededor.'; @@ -124,6 +125,7 @@ $lang['jpg_quality'] = 'Calidad de compresión de JPG (0-100)'; $lang['subscribers'] = 'Habilitar soporte para suscripción a páginas'; $lang['subscribe_time'] = 'Tiempo después que alguna lista de suscripción fue enviada (seg); Debe ser menor que el tiempo especificado en días recientes.'; $lang['compress'] = 'Compactar la salida de CSS y javascript'; +$lang['cssdatauri'] = 'Tamaño en bytes hasta el cual las imágenes referenciadas en archivos CSS deberían ir incrustadas en la hoja de estilos para reducir el número de cabeceras de petición HTTP. ¡Esta técnica no funcionará en IE < 8! De 400 a 600 bytes es un valor adecuado. Establezca 0 para deshabilitarlo.'; $lang['hidepages'] = 'Ocultar páginas con coincidencias (expresiones regulares)'; $lang['send404'] = 'Enviar "HTTP 404/Page Not Found" para páginas no existentes'; $lang['sitemap'] = 'Generar sitemap de Google (días)'; diff --git a/lib/plugins/plugin/lang/es/lang.php b/lib/plugins/plugin/lang/es/lang.php index 207c48d2c..2726a5ffa 100644 --- a/lib/plugins/plugin/lang/es/lang.php +++ b/lib/plugins/plugin/lang/es/lang.php @@ -20,6 +20,7 @@ * @author Victor Castelan * @author Mauro Javier Giamberardino * @author emezeta + * @author Oscar Ciudad */ $lang['menu'] = 'Administración de Plugins'; $lang['download'] = 'Descargar e instalar un nuevo plugin'; diff --git a/lib/plugins/popularity/lang/es/lang.php b/lib/plugins/popularity/lang/es/lang.php index 5e42cd45c..d78343a36 100644 --- a/lib/plugins/popularity/lang/es/lang.php +++ b/lib/plugins/popularity/lang/es/lang.php @@ -17,6 +17,7 @@ * @author Mauro Javier Giamberardino * @author Oscar M. Lage * @author emezeta + * @author Oscar Ciudad */ $lang['name'] = 'Retroinformación (Feedback) plugin Popularity'; $lang['submit'] = 'Enviar datos'; diff --git a/lib/plugins/revert/lang/es/lang.php b/lib/plugins/revert/lang/es/lang.php index 7e357e3db..f793eb06d 100644 --- a/lib/plugins/revert/lang/es/lang.php +++ b/lib/plugins/revert/lang/es/lang.php @@ -18,6 +18,7 @@ * @author Victor Castelan * @author Mauro Javier Giamberardino * @author emezeta + * @author Oscar Ciudad */ $lang['menu'] = 'Restaurador'; $lang['filter'] = 'Buscar páginas con spam'; diff --git a/lib/plugins/usermanager/lang/es/lang.php b/lib/plugins/usermanager/lang/es/lang.php index 1e79c6826..50138bf2b 100644 --- a/lib/plugins/usermanager/lang/es/lang.php +++ b/lib/plugins/usermanager/lang/es/lang.php @@ -19,6 +19,7 @@ * @author Victor Castelan * @author Mauro Javier Giamberardino * @author emezeta + * @author Oscar Ciudad */ $lang['menu'] = 'Administración de usuarios'; $lang['noauth'] = '(la autenticación de usuarios no está disponible)'; -- cgit v1.2.3 From ab8fecc6efc832771505467be33a88e0cafec04e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Chmaj?= Date: Sat, 27 Aug 2011 13:54:16 +0200 Subject: Polish language update --- lib/plugins/acl/lang/pl/lang.php | 1 + lib/plugins/config/lang/pl/lang.php | 1 + lib/plugins/plugin/lang/pl/lang.php | 1 + lib/plugins/popularity/lang/pl/lang.php | 6 ++++++ lib/plugins/popularity/lang/pl/submitted.txt | 3 +++ lib/plugins/revert/lang/pl/lang.php | 1 + lib/plugins/usermanager/lang/pl/lang.php | 1 + 7 files changed, 14 insertions(+) create mode 100644 lib/plugins/popularity/lang/pl/submitted.txt (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/pl/lang.php b/lib/plugins/acl/lang/pl/lang.php index c954abe2a..a72b6af11 100644 --- a/lib/plugins/acl/lang/pl/lang.php +++ b/lib/plugins/acl/lang/pl/lang.php @@ -11,6 +11,7 @@ * @author Leszek Stachowski * @author maros * @author Grzegorz Widła + * @author Łukasz Chmaj */ $lang['admin_acl'] = 'Zarządzanie uprawnieniami'; $lang['acl_group'] = 'Grupa'; diff --git a/lib/plugins/config/lang/pl/lang.php b/lib/plugins/config/lang/pl/lang.php index c051e9e13..6e94a2e3d 100644 --- a/lib/plugins/config/lang/pl/lang.php +++ b/lib/plugins/config/lang/pl/lang.php @@ -12,6 +12,7 @@ * @author Leszek Stachowski * @author maros * @author Grzegorz Widła + * @author Łukasz Chmaj */ $lang['menu'] = 'Ustawienia'; $lang['error'] = 'Ustawienia nie zostały zapisane z powodu błędnych wartości, przejrzyj je i ponów próbę zapisu.
    Niepoprawne wartości są wyróżnione kolorem czerwonym.'; diff --git a/lib/plugins/plugin/lang/pl/lang.php b/lib/plugins/plugin/lang/pl/lang.php index d4ccc7751..f48426bf6 100644 --- a/lib/plugins/plugin/lang/pl/lang.php +++ b/lib/plugins/plugin/lang/pl/lang.php @@ -12,6 +12,7 @@ * @author Leszek Stachowski * @author maros * @author Grzegorz Widła + * @author Łukasz Chmaj */ $lang['menu'] = 'Menadżer wtyczek'; $lang['download'] = 'Ściągnij i zainstaluj nową wtyczkę'; diff --git a/lib/plugins/popularity/lang/pl/lang.php b/lib/plugins/popularity/lang/pl/lang.php index fbbe6dab2..d96254fd8 100644 --- a/lib/plugins/popularity/lang/pl/lang.php +++ b/lib/plugins/popularity/lang/pl/lang.php @@ -10,6 +10,12 @@ * @author Leszek Stachowski * @author maros * @author Grzegorz Widła + * @author Łukasz Chmaj */ $lang['name'] = 'Informacja o popularności (ładowanie może zająć dłuższą chwilę)'; $lang['submit'] = 'Wyślij dane'; +$lang['autosubmit'] = 'Automatycznie wysyłaj dane raz na miesiąc'; +$lang['submissionFailed'] = 'Dane nie mogły być przesłane ze względu na następujące błędy:'; +$lang['submitDirectly'] = 'Możesz wysłać dane ręcznie poprzez następujący formularz:'; +$lang['autosubmitError'] = 'Ostatnie wysyłanie automatyczne nie powiodło się ze względu na następujące błędy:'; +$lang['lastSent'] = 'Dane zostały wysłane:'; diff --git a/lib/plugins/popularity/lang/pl/submitted.txt b/lib/plugins/popularity/lang/pl/submitted.txt new file mode 100644 index 000000000..195e81388 --- /dev/null +++ b/lib/plugins/popularity/lang/pl/submitted.txt @@ -0,0 +1,3 @@ +====== Informacje o popularności ====== + +Wysyłanie danych powiodło się. \ No newline at end of file diff --git a/lib/plugins/revert/lang/pl/lang.php b/lib/plugins/revert/lang/pl/lang.php index 8166250b4..f36dc591a 100644 --- a/lib/plugins/revert/lang/pl/lang.php +++ b/lib/plugins/revert/lang/pl/lang.php @@ -9,6 +9,7 @@ * @author Leszek Stachowski * @author maros * @author Grzegorz Widła + * @author Łukasz Chmaj */ $lang['menu'] = 'Menadżer przywracania'; $lang['filter'] = 'Wyszukaj uszkodzone strony'; diff --git a/lib/plugins/usermanager/lang/pl/lang.php b/lib/plugins/usermanager/lang/pl/lang.php index 0c4ecbcdf..7c79c5d1f 100644 --- a/lib/plugins/usermanager/lang/pl/lang.php +++ b/lib/plugins/usermanager/lang/pl/lang.php @@ -10,6 +10,7 @@ * @author Leszek Stachowski * @author maros * @author Grzegorz Widła + * @author Łukasz Chmaj */ $lang['menu'] = 'Menadżer użytkowników'; $lang['noauth'] = '(uwierzytelnienie użytkownika niemożliwe)'; -- cgit v1.2.3 From c62a5f5846e3477044ebc93e96f98b878d3e7a59 Mon Sep 17 00:00:00 2001 From: Dedeco Date: Mon, 12 Sep 2011 21:53:15 +0200 Subject: pt-BR language update --- lib/plugins/acl/lang/pt-br/lang.php | 1 + lib/plugins/config/lang/pt-br/lang.php | 3 +++ lib/plugins/plugin/lang/pt-br/lang.php | 1 + lib/plugins/popularity/lang/pt-br/lang.php | 1 + lib/plugins/revert/lang/pt-br/lang.php | 1 + lib/plugins/usermanager/lang/pt-br/lang.php | 1 + 6 files changed, 8 insertions(+) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/pt-br/lang.php b/lib/plugins/acl/lang/pt-br/lang.php index 0ebcbf509..a0c997600 100644 --- a/lib/plugins/acl/lang/pt-br/lang.php +++ b/lib/plugins/acl/lang/pt-br/lang.php @@ -18,6 +18,7 @@ * @author Luis Dantas * @author Sergio Motta sergio@cisne.com.br * @author Isaias Masiero Filho + * @author Balaco Baco */ $lang['admin_acl'] = 'Administração da Lista de Controles de Acesso'; $lang['acl_group'] = 'Grupo'; diff --git a/lib/plugins/config/lang/pt-br/lang.php b/lib/plugins/config/lang/pt-br/lang.php index 9e5798e30..093e60ff8 100644 --- a/lib/plugins/config/lang/pt-br/lang.php +++ b/lib/plugins/config/lang/pt-br/lang.php @@ -15,6 +15,7 @@ * @author Luis Dantas * @author Sergio Motta sergio@cisne.com.br * @author Isaias Masiero Filho + * @author Balaco Baco */ $lang['menu'] = 'Configurações do DokuWiki'; $lang['error'] = 'As configurações não foram atualizadas devido a um valor inválido. Por favor, reveja suas alterações e reenvie-as.
    O(s) valor(es) incorreto(s) serão exibidos contornados por uma borda vermelha.'; @@ -51,6 +52,7 @@ $lang['lang'] = 'Idioma'; $lang['basedir'] = 'Diretório base'; $lang['baseurl'] = 'URL base'; $lang['savedir'] = 'Diretório para salvar os dados'; +$lang['cookiedir'] = 'Caminhos dos cookies. Deixe em branco para usar a url base.'; $lang['start'] = 'Nome da página inicial'; $lang['title'] = 'Título do wiki'; $lang['template'] = 'Modelo'; @@ -121,6 +123,7 @@ $lang['jpg_quality'] = 'Qualidade de compressão do JPG (0-100)'; $lang['subscribers'] = 'Habilitar o suporte ao monitoramento de páginas'; $lang['subscribe_time'] = 'Tempo de espera antes do envio das listas e mensagens de monitoramento (segundos); este tempo deve ser menor que o especificado no parâmetro recent_days'; $lang['compress'] = 'Compactar as saídas de CSS e JavaScript'; +$lang['cssdatauri'] = 'Tamanho máximo em bytes para o qual as imagens referenciadas em arquivos CSS devam ser incorporadas na folha de estilos (o arquivo CSS) para reduzir o custo dos pedidos HTTP. Essa técnica não funcionará na versões do IE < 8! Valores de 400 a 600 são bons. Defina o valor 0 para desativar.'; $lang['hidepages'] = 'Esconder páginas correspondentes (expressão regular)'; $lang['send404'] = 'Enviar "HTTP 404/Página não encontrada" para páginas não existentes'; $lang['sitemap'] = 'Gerar Google Sitemap (dias)'; diff --git a/lib/plugins/plugin/lang/pt-br/lang.php b/lib/plugins/plugin/lang/pt-br/lang.php index bae962730..e8b23dae9 100644 --- a/lib/plugins/plugin/lang/pt-br/lang.php +++ b/lib/plugins/plugin/lang/pt-br/lang.php @@ -15,6 +15,7 @@ * @author Luis Dantas * @author Sergio Motta sergio@cisne.com.br * @author Isaias Masiero Filho + * @author Balaco Baco */ $lang['menu'] = 'Gerenciar Plug-ins'; $lang['download'] = 'Baixar e instalar um novo plug-in'; diff --git a/lib/plugins/popularity/lang/pt-br/lang.php b/lib/plugins/popularity/lang/pt-br/lang.php index 67a3abd7e..44d811d81 100644 --- a/lib/plugins/popularity/lang/pt-br/lang.php +++ b/lib/plugins/popularity/lang/pt-br/lang.php @@ -14,6 +14,7 @@ * @author Luis Dantas * @author Sergio Motta sergio@cisne.com.br * @author Isaias Masiero Filho + * @author Balaco Baco */ $lang['name'] = 'Retorno de popularidade (pode demorar um pouco para carregar)'; $lang['submit'] = 'Enviar dados'; diff --git a/lib/plugins/revert/lang/pt-br/lang.php b/lib/plugins/revert/lang/pt-br/lang.php index 6d8ca2de5..7bdde6675 100644 --- a/lib/plugins/revert/lang/pt-br/lang.php +++ b/lib/plugins/revert/lang/pt-br/lang.php @@ -15,6 +15,7 @@ * @author Luis Dantas * @author Sergio Motta sergio@cisne.com.br * @author Isaias Masiero Filho + * @author Balaco Baco */ $lang['menu'] = 'Gerenciador de reversões'; $lang['filter'] = 'Procura por páginas com spam'; diff --git a/lib/plugins/usermanager/lang/pt-br/lang.php b/lib/plugins/usermanager/lang/pt-br/lang.php index 4bc99fb0c..285231f35 100644 --- a/lib/plugins/usermanager/lang/pt-br/lang.php +++ b/lib/plugins/usermanager/lang/pt-br/lang.php @@ -15,6 +15,7 @@ * @author Luis Dantas * @author Sergio Motta sergio@cisne.com.br * @author Isaias Masiero Filho + * @author Balaco Baco */ $lang['menu'] = 'Gerenciamento de Usuários'; $lang['noauth'] = '(o gerenciamento de usuários não está disponível)'; -- cgit v1.2.3 From 5e7a292691951a0fa0a18f06c8b9bcfb509a032d Mon Sep 17 00:00:00 2001 From: Adrian Lang Date: Fri, 9 Sep 2011 22:26:16 +0200 Subject: Various JavaScript improvements, JSLint, jQuery --- lib/plugins/acl/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/script.js b/lib/plugins/acl/script.js index 2598bcef8..d912a2407 100644 --- a/lib/plugins/acl/script.js +++ b/lib/plugins/acl/script.js @@ -33,7 +33,7 @@ var dw_acl = { show_sublist, 'html' ); - }, + }, toggle_display: function ($clicky, opening) { $clicky.attr('src', -- cgit v1.2.3 From 8b8998596af1a9dd2d4fcfac9f6b4393fcf69d57 Mon Sep 17 00:00:00 2001 From: Petros Vidalis Date: Mon, 19 Sep 2011 13:16:25 +0200 Subject: Greek language update --- lib/plugins/acl/lang/el/lang.php | 1 + lib/plugins/config/lang/el/lang.php | 3 +++ lib/plugins/plugin/lang/el/lang.php | 2 ++ lib/plugins/popularity/lang/el/lang.php | 1 + lib/plugins/revert/lang/el/lang.php | 1 + lib/plugins/usermanager/lang/el/lang.php | 1 + 6 files changed, 9 insertions(+) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/el/lang.php b/lib/plugins/acl/lang/el/lang.php index e2f6c35dc..e1cd26755 100644 --- a/lib/plugins/acl/lang/el/lang.php +++ b/lib/plugins/acl/lang/el/lang.php @@ -13,6 +13,7 @@ * @author Αθανάσιος Νταής * @author Konstantinos Koryllos * @author George Petsagourakis + * @author Petros Vidalis */ $lang['admin_acl'] = 'Διαχείριση Δικαιωμάτων Πρόσβασης'; $lang['acl_group'] = 'Ομάδα'; diff --git a/lib/plugins/config/lang/el/lang.php b/lib/plugins/config/lang/el/lang.php index ed7af0ff4..9f5d121de 100644 --- a/lib/plugins/config/lang/el/lang.php +++ b/lib/plugins/config/lang/el/lang.php @@ -11,6 +11,7 @@ * @author Αθανάσιος Νταής * @author Konstantinos Koryllos * @author George Petsagourakis + * @author Petros Vidalis */ $lang['menu'] = 'Ρυθμίσεις'; $lang['error'] = 'Οι ρυθμίσεις σας δεν έγιναν δεκτές λόγω λανθασμένης τιμής κάποιας ρύθμισης. Διορθώστε την λάθος τιμή και προσπαθήστε ξανά. @@ -46,6 +47,7 @@ $lang['lang'] = 'Γλώσσα'; $lang['basedir'] = 'Αρχικός Φάκελος'; $lang['baseurl'] = 'Αρχικό URL'; $lang['savedir'] = 'Φάκελος για την αποθήκευση δεδομένων'; +$lang['cookiedir'] = 'Διαδρομή cookie. Αφήστε την κενή για την χρησιμοποίηση της αρχικής URL.'; $lang['start'] = 'Ονομασία αρχικής σελίδας'; $lang['title'] = 'Τίτλος Wiki'; $lang['template'] = 'Πρότυπο προβολής'; @@ -116,6 +118,7 @@ $lang['jpg_quality'] = 'Ποιότητα συμπίεσης JPG (0-100 $lang['subscribers'] = 'Να επιτρέπεται η εγγραφή στην ενημέρωση αλλαγών σελίδας'; $lang['subscribe_time'] = 'Χρόνος μετά τον οποίο οι λίστες ειδοποιήσεων και τα συνοπτικά θα αποστέλλονται (δευτερόλεπτα). Αυτό θα πρέπει να είναι μικρότερο από τον χρόνο που έχει η ρύθμιση recent_days.'; $lang['compress'] = 'Συμπίεση αρχείων CSS και javascript'; +$lang['cssdatauri'] = 'Το μέγεθος σε bytes στο οποίο οι εικόνες που αναφέρονται σε CSS αρχεία θα πρέπει να είναι ενσωματωμένες για τη μείωση των απαιτήσεων μιας κεφαλίδας αίτησης HTTP . Αυτή η τεχνική δεν θα λειτουργήσει σε IE <8! 400 με 600 bytes είναι μια καλή τιμή. Ορίστε την τιμή 0 για να το απενεργοποιήσετε.'; $lang['hidepages'] = 'Φίλτρο απόκρυψης σελίδων (regular expressions)'; $lang['send404'] = 'Αποστολή "HTTP 404/Page Not Found" για σελίδες που δεν υπάρχουν'; $lang['sitemap'] = 'Δημιουργία Google sitemap (ημέρες)'; diff --git a/lib/plugins/plugin/lang/el/lang.php b/lib/plugins/plugin/lang/el/lang.php index d28a04ae2..bd6dc2013 100644 --- a/lib/plugins/plugin/lang/el/lang.php +++ b/lib/plugins/plugin/lang/el/lang.php @@ -11,6 +11,7 @@ * @author Αθανάσιος Νταής * @author Konstantinos Koryllos * @author George Petsagourakis + * @author Petros Vidalis */ $lang['menu'] = 'Διαχείριση Επεκτάσεων'; $lang['download'] = 'Κατεβάστε και εγκαταστήστε μια νέα επέκταση (plugin)'; @@ -56,3 +57,4 @@ $lang['enabled'] = 'Η επέκταση %s ενεργοποιήθ $lang['notenabled'] = 'Η επέκταση %s δεν μπορεί να ενεργοποιηθεί. Ελέγξτε τα δικαιώματα πρόσβασης.'; $lang['disabled'] = 'Η επέκταση %s απενεργοποιήθηκε.'; $lang['notdisabled'] = 'Η επέκταση %s δεν μπορεί να απενεργοποιηθεί. Ελέγξτε τα δικαιώματα πρόσβασης.'; +$lang['packageinstalled'] = 'Το πακέτο της επέκτασης (%d επέκταση(εις): %s) εγκαστήθηκε επιτυχημένα.'; diff --git a/lib/plugins/popularity/lang/el/lang.php b/lib/plugins/popularity/lang/el/lang.php index 41704fa06..32558b060 100644 --- a/lib/plugins/popularity/lang/el/lang.php +++ b/lib/plugins/popularity/lang/el/lang.php @@ -4,6 +4,7 @@ * * @author Konstantinos Koryllos * @author George Petsagourakis + * @author Petros Vidalis */ $lang['name'] = 'Αναφορά Δημοτικότητας (ίσως αργήσει λίγο να εμφανιστεί)'; $lang['submit'] = 'Αποστολή Δεδομένων'; diff --git a/lib/plugins/revert/lang/el/lang.php b/lib/plugins/revert/lang/el/lang.php index a0c3bb4ff..63454e4e9 100644 --- a/lib/plugins/revert/lang/el/lang.php +++ b/lib/plugins/revert/lang/el/lang.php @@ -9,6 +9,7 @@ * @author Αθανάσιος Νταής * @author Konstantinos Koryllos * @author George Petsagourakis + * @author Petros Vidalis */ $lang['menu'] = 'Αποκατάσταση κακόβουλων αλλαγών σελίδων'; $lang['filter'] = 'Αναζήτηση σελίδων που περιέχουν spam'; diff --git a/lib/plugins/usermanager/lang/el/lang.php b/lib/plugins/usermanager/lang/el/lang.php index 8bfb1a380..4b4d95379 100644 --- a/lib/plugins/usermanager/lang/el/lang.php +++ b/lib/plugins/usermanager/lang/el/lang.php @@ -10,6 +10,7 @@ * @author Αθανάσιος Νταής * @author Konstantinos Koryllos * @author George Petsagourakis + * @author Petros Vidalis */ $lang['menu'] = 'Διαχείριση Χρηστών'; $lang['noauth'] = '(η είσοδος χρηστών δεν είναι δυνατή)'; -- cgit v1.2.3 From b1ba68599b1aaf3242332cfd97b167f999fd788c Mon Sep 17 00:00:00 2001 From: Robert Bogenschneider Date: Mon, 19 Sep 2011 13:17:43 +0200 Subject: Esperanto language update --- lib/plugins/acl/lang/eo/lang.php | 1 + lib/plugins/config/lang/eo/lang.php | 4 ++++ lib/plugins/plugin/lang/eo/lang.php | 2 ++ lib/plugins/popularity/lang/eo/lang.php | 1 + lib/plugins/popularity/lang/eo/submitted.txt | 3 +++ lib/plugins/revert/lang/eo/lang.php | 1 + lib/plugins/usermanager/lang/eo/lang.php | 1 + 7 files changed, 13 insertions(+) create mode 100644 lib/plugins/popularity/lang/eo/submitted.txt (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/eo/lang.php b/lib/plugins/acl/lang/eo/lang.php index 85b262e8c..239578f57 100644 --- a/lib/plugins/acl/lang/eo/lang.php +++ b/lib/plugins/acl/lang/eo/lang.php @@ -10,6 +10,7 @@ * @author Erik Pedersen * @author Robert Bogenschneider * @author Robert BOGENSCHNEIDER + * @author Robert BOGENSCHNEIDER */ $lang['admin_acl'] = 'Administrado de Alirkontrola Listo (ACL)'; $lang['acl_group'] = 'Grupo'; diff --git a/lib/plugins/config/lang/eo/lang.php b/lib/plugins/config/lang/eo/lang.php index 8a9ee3840..ca98ca319 100644 --- a/lib/plugins/config/lang/eo/lang.php +++ b/lib/plugins/config/lang/eo/lang.php @@ -11,6 +11,7 @@ * @author Erik Pedersen * @author Robert Bogenschneider * @author Robert BOGENSCHNEIDER + * @author Robert BOGENSCHNEIDER */ $lang['menu'] = 'Agordaj Difinoj'; $lang['error'] = 'La difinoj ne estas ĝisdatigitaj pro malvalida valoro: kompleze reviziu viajn ŝanĝojn kaj resubmetu ilin. @@ -46,6 +47,7 @@ $lang['lang'] = 'Lingvo'; $lang['basedir'] = 'Baza dosierujo'; $lang['baseurl'] = 'Baza URL'; $lang['savedir'] = 'Dosierujo por konservi datenaron'; +$lang['cookiedir'] = 'KUketopado. Lasu malplena por uzi baseurl.'; $lang['start'] = 'Nomo de la hejmpaĝo'; $lang['title'] = 'Titolo de la vikio'; $lang['template'] = 'Ŝablono'; @@ -116,6 +118,8 @@ $lang['jpg_quality'] = 'Kompaktiga kvalito de JPG (0-100)'; $lang['subscribers'] = 'Ebligi subtenon de avizoj pri ŝanĝoj sur paĝoj'; $lang['subscribe_time'] = 'Tempo, post kiu abonlistoj kaj kolektaĵoj sendiĝas (sek); Tio estu pli malgranda ol la tempo indikita en recent_days.'; $lang['compress'] = 'Kompaktigi CSS-ajn kaj ĵavaskriptajn elmetojn'; +$lang['cssdatauri'] = 'Grandeco en bitokoj, ĝis kiom en CSS-dosieroj referencitaj bildoj estu enmetataj rekte en la stilfolion por malgrandigi vanan HTTP-kapan trafikon. Tiu tekniko ne funkcias en IE < 8! +400 ĝis 600 bitokoj estas bona grandeco. Indiku 0 por malebligi enmeton.'; $lang['hidepages'] = 'Kaŝi kongruantajn paĝojn (laŭ regulaj esprimoj)'; $lang['send404'] = 'Sendi la mesaĝon "HTTP 404/Ne Trovita Paĝo" por ne ekzistantaj paĝoj'; $lang['sitemap'] = 'Krei Guglan paĝarmapon "sitemap" (po kiom tagoj)'; diff --git a/lib/plugins/plugin/lang/eo/lang.php b/lib/plugins/plugin/lang/eo/lang.php index a70bea30c..327ee7578 100644 --- a/lib/plugins/plugin/lang/eo/lang.php +++ b/lib/plugins/plugin/lang/eo/lang.php @@ -11,6 +11,7 @@ * @author Erik Pedersen * @author Robert Bogenschneider * @author Robert BOGENSCHNEIDER + * @author Robert BOGENSCHNEIDER */ $lang['menu'] = 'Administri Kromaĵojn'; $lang['download'] = 'Elŝuti kaj instali novan kromaĵon'; @@ -56,3 +57,4 @@ $lang['enabled'] = 'La kromaĵo %s estas ebligita.'; $lang['notenabled'] = 'La kromaĵo %s ne povis esti ebligita, kontrolu dosier-permesojn.'; $lang['disabled'] = 'La kromaĵo %s estas malebligita.'; $lang['notdisabled'] = 'La kromaĵo %s ne povis esti malebligita, kontrolu dosier-permesojn.'; +$lang['packageinstalled'] = 'Kromaĵa pakaĵo (%d kromaĵo(j): %s) sukcese instalitaj.'; diff --git a/lib/plugins/popularity/lang/eo/lang.php b/lib/plugins/popularity/lang/eo/lang.php index a7c124f51..2cbb6072f 100644 --- a/lib/plugins/popularity/lang/eo/lang.php +++ b/lib/plugins/popularity/lang/eo/lang.php @@ -9,6 +9,7 @@ * @author Erik Pedersen * @author Robert Bogenschneider * @author Robert BOGENSCHNEIDER + * @author Robert BOGENSCHNEIDER */ $lang['name'] = 'Populareca enketo (eble la ŝargo prokrastos iomete)'; $lang['submit'] = 'Sendi datenaron'; diff --git a/lib/plugins/popularity/lang/eo/submitted.txt b/lib/plugins/popularity/lang/eo/submitted.txt new file mode 100644 index 000000000..c2bce4e9f --- /dev/null +++ b/lib/plugins/popularity/lang/eo/submitted.txt @@ -0,0 +1,3 @@ +====== Enketo pri Populareco ====== + +La datumoj estis senditaj sukcese. \ No newline at end of file diff --git a/lib/plugins/revert/lang/eo/lang.php b/lib/plugins/revert/lang/eo/lang.php index a46b0169e..8c7854847 100644 --- a/lib/plugins/revert/lang/eo/lang.php +++ b/lib/plugins/revert/lang/eo/lang.php @@ -11,6 +11,7 @@ * @author Erik Pedersen * @author Robert Bogenschneider * @author Robert BOGENSCHNEIDER + * @author Robert BOGENSCHNEIDER */ $lang['menu'] = 'Administrado de restarigo'; $lang['filter'] = 'Serĉi spamecajn paĝojn'; diff --git a/lib/plugins/usermanager/lang/eo/lang.php b/lib/plugins/usermanager/lang/eo/lang.php index a16b107c1..9a515dc9c 100644 --- a/lib/plugins/usermanager/lang/eo/lang.php +++ b/lib/plugins/usermanager/lang/eo/lang.php @@ -11,6 +11,7 @@ * @author Erik Pedersen * @author Robert Bogenschneider * @author Robert BOGENSCHNEIDER + * @author Robert BOGENSCHNEIDER */ $lang['menu'] = 'Administrado de Uzantoj'; $lang['noauth'] = '(identiĝo de uzantoj ne disponeblas)'; -- cgit v1.2.3 From 54a5505521ae2d30ec6348c5350c0adc7466379a Mon Sep 17 00:00:00 2001 From: Otto Vainio Date: Mon, 19 Sep 2011 13:19:11 +0200 Subject: Finnish language update --- lib/plugins/config/lang/fi/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins') diff --git a/lib/plugins/config/lang/fi/lang.php b/lib/plugins/config/lang/fi/lang.php index 0e9bad030..9598a0d93 100644 --- a/lib/plugins/config/lang/fi/lang.php +++ b/lib/plugins/config/lang/fi/lang.php @@ -42,6 +42,7 @@ $lang['lang'] = 'Kieli'; $lang['basedir'] = 'Perushakemisto'; $lang['baseurl'] = 'Perus URL'; $lang['savedir'] = 'Hakemisto tietojen tallennukseen.'; +$lang['cookiedir'] = 'Cookien path. Jätä tyhjäksi käyttääksesi baseurl arvoa'; $lang['start'] = 'Alkusivun nimi'; $lang['title'] = 'Wikin nimi'; $lang['template'] = 'Sivumalli'; -- cgit v1.2.3 From f84d2dfd6f3df6ad2403af497075b0bb35393ffc Mon Sep 17 00:00:00 2001 From: Thomas Nygreen Date: Mon, 19 Sep 2011 13:20:27 +0200 Subject: Norwegian language update --- lib/plugins/acl/lang/no/lang.php | 2 +- lib/plugins/config/lang/no/lang.php | 7 +++++++ lib/plugins/plugin/lang/no/lang.php | 1 + lib/plugins/popularity/lang/no/lang.php | 6 ++++++ lib/plugins/popularity/lang/no/submitted.txt | 3 +++ 5 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 lib/plugins/popularity/lang/no/submitted.txt (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/no/lang.php b/lib/plugins/acl/lang/no/lang.php index 71df0b382..f0c92453c 100644 --- a/lib/plugins/acl/lang/no/lang.php +++ b/lib/plugins/acl/lang/no/lang.php @@ -40,7 +40,7 @@ $lang['perm'] = 'Tillatelser'; $lang['acl_perm0'] = 'Ingen'; $lang['acl_perm1'] = 'Lese'; $lang['acl_perm2'] = 'Redigere'; -$lang['acl_perm4'] = 'Lage'; +$lang['acl_perm4'] = 'Opprette'; $lang['acl_perm8'] = 'Laste opp'; $lang['acl_perm16'] = 'Slette'; $lang['acl_new'] = 'Legg til ny oppføring'; diff --git a/lib/plugins/config/lang/no/lang.php b/lib/plugins/config/lang/no/lang.php index 6ac765cbf..ea76616d2 100644 --- a/lib/plugins/config/lang/no/lang.php +++ b/lib/plugins/config/lang/no/lang.php @@ -52,6 +52,7 @@ $lang['lang'] = 'Språk'; $lang['basedir'] = 'Grunnkatalog'; $lang['baseurl'] = 'Grunn-nettadresse'; $lang['savedir'] = 'Mappe for lagring av data'; +$lang['cookiedir'] = 'Sti for informasjonskapsler. La stå blankt for å bruke grunn-nettadressa.'; $lang['start'] = 'Sidenavn på forsiden'; $lang['title'] = 'Navn på Wikien'; $lang['template'] = 'Mal'; @@ -106,6 +107,7 @@ $lang['useslash'] = 'Bruk / som skilletegn mellom navnerom i URLer' $lang['usedraft'] = 'Lagre kladd automatisk under redigering'; $lang['sepchar'] = 'Skilletegn mellom ord i sidenavn'; $lang['canonical'] = 'Bruk fulle URLer (i stedet for relative)'; +$lang['fnencode'] = 'Metode for å kode ikke-ASCII-filnavn'; $lang['autoplural'] = 'Se etter flertallsformer i lenker'; $lang['compression'] = 'Metode for komprimering av gamle filer'; $lang['cachetime'] = 'Maksimal alder på hurtiglager (sekunder)'; @@ -114,12 +116,15 @@ $lang['fetchsize'] = 'Maksimal størrelse (byter) fetch.php kan last $lang['notify'] = 'Send meldinger om endringer denne e-postadressen'; $lang['registernotify'] = 'Send info om nylig registrerte brukere til denne e-postadressen'; $lang['mailfrom'] = 'Avsenderadresse for automatiske e-poster'; +$lang['mailprefix'] = 'Prefiks for emne i automatiske e-poster '; $lang['gzip_output'] = 'Bruk gzip Content-Encoding for XHTML'; $lang['gdlib'] = 'Versjon av libGD'; $lang['im_convert'] = 'Sti til ImageMagicks konverteringsverktøy'; $lang['jpg_quality'] = 'JPEG-kvalitet (0-100)'; $lang['subscribers'] = 'Åpne for abonnement på endringer av en side'; +$lang['subscribe_time'] = 'Hvor lenge det skal gå mellom utsending av e-poster med endringer (i sekunder). Denne verdien bør være mindre enn verdien i recent_days.'; $lang['compress'] = 'Kompakt CSS og JavaScript'; +$lang['cssdatauri'] = 'Opp til denne størrelsen (i bytes) skal bilder som er vist til i CSS-filer kodes direkte inn i fila for å redusere antall HTTP-forespørsler. Denne teknikken fungerer ikke i IE < 8! Mellom 400 og 600 bytes er fornuftige verdier. Bruk 0 for å skru av funksjonen.'; $lang['hidepages'] = 'Skjul sider fra automatiske lister (regulære uttrykk)'; $lang['send404'] = 'Send "HTTP 404/Page Not Found" for ikke-eksisterende sider'; $lang['sitemap'] = 'Lag Google-sidekart (dager)'; @@ -145,6 +150,7 @@ $lang['proxy____port'] = 'Proxyport'; $lang['proxy____user'] = 'Brukernavn på proxyserver'; $lang['proxy____pass'] = 'Passord på proxyserver'; $lang['proxy____ssl'] = 'Bruk SSL for å koble til proxyserver'; +$lang['proxy____except'] = 'Regulært uttrykk for URLer som ikke trenger en proxy.'; $lang['safemodehack'] = 'Bruk safemode-hack'; $lang['ftp____host'] = 'FTP-server for safemode-hack'; $lang['ftp____port'] = 'FTP-port for safemode-hack'; @@ -192,3 +198,4 @@ $lang['useheading_o_0'] = 'Aldri'; $lang['useheading_o_navigation'] = 'Kun navigering'; $lang['useheading_o_content'] = 'Kun wiki-innhold'; $lang['useheading_o_1'] = 'Alltid'; +$lang['readdircache'] = 'Maksimal alder for mellomlagring av mappa med søkeindekser (sekunder)'; diff --git a/lib/plugins/plugin/lang/no/lang.php b/lib/plugins/plugin/lang/no/lang.php index a95ea0085..8f0ec2039 100644 --- a/lib/plugins/plugin/lang/no/lang.php +++ b/lib/plugins/plugin/lang/no/lang.php @@ -58,3 +58,4 @@ $lang['enabled'] = 'Tillegget %s aktivert'; $lang['notenabled'] = 'Plugin %s kunne ikke aktiveres, sjekk filrettighetene.'; $lang['disabled'] = 'Plugin %s deaktivert'; $lang['notdisabled'] = 'Plugin %s kunne ikke deaktiveres, sjekk filrettighetene.'; +$lang['packageinstalled'] = 'Installasjonen av tilleggspakka (%d tillegg: %s) var vellykka'; diff --git a/lib/plugins/popularity/lang/no/lang.php b/lib/plugins/popularity/lang/no/lang.php index e80016f92..3c6dfee9e 100644 --- a/lib/plugins/popularity/lang/no/lang.php +++ b/lib/plugins/popularity/lang/no/lang.php @@ -10,6 +10,12 @@ * @author Erik Pedersen * @author Erik Bjørn Pedersen * @author Rune Rasmussen syntaxerror.no@gmail.com + * @author Thomas Nygreen */ $lang['name'] = 'Popularitetsfeedback (kan ta litt tid å laste)'; $lang['submit'] = 'Send data'; +$lang['autosubmit'] = 'Send data automatisk en gang i måneden'; +$lang['submissionFailed'] = 'Kunne ikke sende dataene på grunn av følgende feil:'; +$lang['submitDirectly'] = 'Du kan sende dataene manuelt ved å sende inn dette skjemaet.'; +$lang['autosubmitError'] = 'Den siste automatiske innsendinga feilet på grunn av følgende feil:'; +$lang['lastSent'] = 'Dataene er sendt'; diff --git a/lib/plugins/popularity/lang/no/submitted.txt b/lib/plugins/popularity/lang/no/submitted.txt new file mode 100644 index 000000000..239676a9d --- /dev/null +++ b/lib/plugins/popularity/lang/no/submitted.txt @@ -0,0 +1,3 @@ +====== Tilbakemelding om popularitet ====== + +Innsending av dataene var vellykka. \ No newline at end of file -- cgit v1.2.3 From 86e64c1709dfad1edceb5b0b2acdaade3b248d96 Mon Sep 17 00:00:00 2001 From: lainme Date: Mon, 19 Sep 2011 13:41:40 +0200 Subject: Simplified Chinese language update --- lib/plugins/acl/lang/zh/lang.php | 1 + lib/plugins/config/lang/zh/lang.php | 3 +++ lib/plugins/plugin/lang/zh/lang.php | 1 + lib/plugins/popularity/lang/zh/lang.php | 1 + lib/plugins/revert/lang/zh/lang.php | 1 + lib/plugins/usermanager/lang/zh/lang.php | 1 + 6 files changed, 8 insertions(+) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/zh/lang.php b/lib/plugins/acl/lang/zh/lang.php index 581d08539..986fa769a 100644 --- a/lib/plugins/acl/lang/zh/lang.php +++ b/lib/plugins/acl/lang/zh/lang.php @@ -13,6 +13,7 @@ * @author caii * @author Hiphen Lee * @author caii, patent agent in China + * @author lainme993@gmail.com */ $lang['admin_acl'] = '访问控制列表(ACL)管理器'; $lang['acl_group'] = '组'; diff --git a/lib/plugins/config/lang/zh/lang.php b/lib/plugins/config/lang/zh/lang.php index 0aeb977e7..7a7f0f504 100644 --- a/lib/plugins/config/lang/zh/lang.php +++ b/lib/plugins/config/lang/zh/lang.php @@ -13,6 +13,7 @@ * @author caii * @author Hiphen Lee * @author caii, patent agent in China + * @author lainme993@gmail.com */ $lang['menu'] = '配置设置'; $lang['error'] = '由于非法参数,设置没有更新。请检查您做的改动并重新提交。 @@ -49,6 +50,7 @@ $lang['lang'] = '语言'; $lang['basedir'] = '根目录'; $lang['baseurl'] = '根路径(URL)'; $lang['savedir'] = '保存数据的目录'; +$lang['cookiedir'] = 'Cookie 路径。留空以使用 baseurl。'; $lang['start'] = '开始页面的名称'; $lang['title'] = '维基站点的标题'; $lang['template'] = '模版'; @@ -120,6 +122,7 @@ $lang['subscribers'] = '启用页面订阅支持'; $lang['subscribe_time'] = '订阅列表和摘要发送的时间间隔(秒);这应当小于指定的最近更改保留时间(recent_days)。 '; $lang['compress'] = '使 CSS 和 javascript 的输出更紧密'; +$lang['cssdatauri'] = '字节数。CSS 文件引用的图片若小于该字节,则被直接嵌入样式表中来减少 HTTP 请求头的开销。这个技术在 IE 中不起作用。400600 字节是不错的值。设置为 0 则禁用。'; $lang['hidepages'] = '隐藏匹配的界面(正则表达式)'; $lang['send404'] = '发送 "HTTP 404/页面没有找到" 错误信息给不存在的页面'; $lang['sitemap'] = '生成 Google sitemap(天)'; diff --git a/lib/plugins/plugin/lang/zh/lang.php b/lib/plugins/plugin/lang/zh/lang.php index 6fc1f4d7d..f8e0b5568 100644 --- a/lib/plugins/plugin/lang/zh/lang.php +++ b/lib/plugins/plugin/lang/zh/lang.php @@ -13,6 +13,7 @@ * @author caii * @author Hiphen Lee * @author caii, patent agent in China + * @author lainme993@gmail.com */ $lang['menu'] = '插件管理器'; $lang['download'] = '下载并安装新的插件'; diff --git a/lib/plugins/popularity/lang/zh/lang.php b/lib/plugins/popularity/lang/zh/lang.php index a2464762d..f45aaf4ff 100644 --- a/lib/plugins/popularity/lang/zh/lang.php +++ b/lib/plugins/popularity/lang/zh/lang.php @@ -12,6 +12,7 @@ * @author caii * @author Hiphen Lee * @author caii, patent agent in China + * @author lainme993@gmail.com */ $lang['name'] = '人气反馈(载入可能需要一些时间)'; $lang['submit'] = '发送数据'; diff --git a/lib/plugins/revert/lang/zh/lang.php b/lib/plugins/revert/lang/zh/lang.php index eb8733618..c3d1639ff 100644 --- a/lib/plugins/revert/lang/zh/lang.php +++ b/lib/plugins/revert/lang/zh/lang.php @@ -13,6 +13,7 @@ * @author caii * @author Hiphen Lee * @author caii, patent agent in China + * @author lainme993@gmail.com */ $lang['menu'] = '还原管理器'; $lang['filter'] = '搜索包含垃圾信息的页面'; diff --git a/lib/plugins/usermanager/lang/zh/lang.php b/lib/plugins/usermanager/lang/zh/lang.php index 9bfa496c2..c1cb0c91a 100644 --- a/lib/plugins/usermanager/lang/zh/lang.php +++ b/lib/plugins/usermanager/lang/zh/lang.php @@ -12,6 +12,7 @@ * @author caii * @author Hiphen Lee * @author caii, patent agent in China + * @author lainme993@gmail.com */ $lang['menu'] = '用户管理器'; $lang['noauth'] = '(用户认证不可用)'; -- cgit v1.2.3 From bc64186ea372e1a6fde4a99f6a914e80357b95c4 Mon Sep 17 00:00:00 2001 From: Marius-Alex Olar Date: Mon, 10 Oct 2011 20:40:41 +0200 Subject: Romanian language update --- lib/plugins/acl/lang/ro/lang.php | 1 + lib/plugins/config/lang/ro/lang.php | 3 +++ lib/plugins/plugin/lang/ro/lang.php | 2 ++ lib/plugins/popularity/lang/ro/lang.php | 1 + lib/plugins/revert/lang/ro/lang.php | 1 + lib/plugins/usermanager/lang/ro/lang.php | 1 + 6 files changed, 9 insertions(+) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/ro/lang.php b/lib/plugins/acl/lang/ro/lang.php index 296baa291..0c13d7223 100644 --- a/lib/plugins/acl/lang/ro/lang.php +++ b/lib/plugins/acl/lang/ro/lang.php @@ -8,6 +8,7 @@ * @author Emanuel-Emeric Andrași * @author Emanuel-Emeric Andraşi * @author Emanuel-Emeric Andrasi + * @author Marius OLAR */ $lang['admin_acl'] = 'Managementul Listei de Control a Accesului'; $lang['acl_group'] = 'Grup'; diff --git a/lib/plugins/config/lang/ro/lang.php b/lib/plugins/config/lang/ro/lang.php index 8ea923913..6b0a0e91a 100644 --- a/lib/plugins/config/lang/ro/lang.php +++ b/lib/plugins/config/lang/ro/lang.php @@ -8,6 +8,7 @@ * @author Emanuel-Emeric Andrași * @author Emanuel-Emeric Andraşi * @author Emanuel-Emeric Andrasi + * @author Marius OLAR */ $lang['menu'] = 'Setări de Configurare'; $lang['error'] = 'Setări nu au fost actualizate datorită unei valori incorecte; verificaţi modificările şi încercaţi din nou.
    Valorile incorecte vor apărea într-un chenar roşu.'; @@ -42,6 +43,7 @@ $lang['lang'] = 'Limbă'; $lang['basedir'] = 'Director bază'; $lang['baseurl'] = 'URL bază '; $lang['savedir'] = 'Director pentru salvarea datelor'; +$lang['cookiedir'] = 'Cale Cookie. Lăsați gol pentru a utiliza baseurl.'; $lang['start'] = 'Numele paginii de start'; $lang['title'] = 'Titlul wiki'; $lang['template'] = 'Şablon'; @@ -112,6 +114,7 @@ $lang['jpg_quality'] = 'Calitatea compresiei JPG (0-100)'; $lang['subscribers'] = 'Activează suportul pentru subscrierea paginii'; $lang['subscribe_time'] = 'Timpul după care lista de abonare şi digestie sunt trimise (sec); Aceasta ar trebui să fie mai mic decât timpul specificat în recent_days.'; $lang['compress'] = 'Compactează codul CSS şi javascript produs'; +$lang['cssdatauri'] = 'Dimensiunea în octeți până la care imaginile regasite în fișierele CSS ar trebui să fie incluse direct în stylesheet pentru a reduce supraîncărcarea antetului cererii HTTP. Această tehnică nu va funcționa în IE < 8! 400 până la 600 octeți sunt suficienți. Introduceți 0 pentru a dezactiva această opțiune.'; $lang['hidepages'] = 'Ascunde paginile pereche (expresii regulate)'; $lang['send404'] = 'Trimite mesajul "HTTP 404/Page Not Found" pentru paginile inexistente'; $lang['sitemap'] = 'Generează Google sitemap (zile)'; diff --git a/lib/plugins/plugin/lang/ro/lang.php b/lib/plugins/plugin/lang/ro/lang.php index 5f37ed455..9c90f77a3 100644 --- a/lib/plugins/plugin/lang/ro/lang.php +++ b/lib/plugins/plugin/lang/ro/lang.php @@ -8,6 +8,7 @@ * @author Emanuel-Emeric Andrași * @author Emanuel-Emeric Andraşi * @author Emanuel-Emeric Andrasi + * @author Marius OLAR */ $lang['menu'] = 'Administrează plugin-uri'; $lang['download'] = 'Descarcă şi instalează un nou plugin'; @@ -53,3 +54,4 @@ $lang['enabled'] = 'Plugin %s activat.'; $lang['notenabled'] = 'Plugin-ul %s nu poate fi activat, verificaţi permisiunile fişierului.'; $lang['disabled'] = 'Plugin %s dezactivat.'; $lang['notdisabled'] = 'Plugin-ul %s nu poate fi dezactivat, verificaţi permisiunile fişierului.'; +$lang['packageinstalled'] = 'Pachet modul (%d modul(e): %s) instalat cu succes.'; diff --git a/lib/plugins/popularity/lang/ro/lang.php b/lib/plugins/popularity/lang/ro/lang.php index 1644ea574..7f3508362 100644 --- a/lib/plugins/popularity/lang/ro/lang.php +++ b/lib/plugins/popularity/lang/ro/lang.php @@ -6,6 +6,7 @@ * @author Emanuel-Emeric Andrași * @author Emanuel-Emeric Andraşi * @author Emanuel-Emeric Andrasi + * @author Marius OLAR */ $lang['name'] = 'Feedback de popularitate (încărcarea poate dura mai mult)'; $lang['submit'] = 'Trimite datele'; diff --git a/lib/plugins/revert/lang/ro/lang.php b/lib/plugins/revert/lang/ro/lang.php index 6e534fd37..7397a1d74 100644 --- a/lib/plugins/revert/lang/ro/lang.php +++ b/lib/plugins/revert/lang/ro/lang.php @@ -8,6 +8,7 @@ * @author Emanuel-Emeric Andrași * @author Emanuel-Emeric Andraşi * @author Emanuel-Emeric Andrasi + * @author Marius OLAR */ $lang['menu'] = 'Manager Reveniri'; $lang['filter'] = 'Caută pagini cu posibil spam'; diff --git a/lib/plugins/usermanager/lang/ro/lang.php b/lib/plugins/usermanager/lang/ro/lang.php index 260814aed..4c0afc896 100644 --- a/lib/plugins/usermanager/lang/ro/lang.php +++ b/lib/plugins/usermanager/lang/ro/lang.php @@ -8,6 +8,7 @@ * @author Emanuel-Emeric Andrași * @author Emanuel-Emeric Andraşi * @author Emanuel-Emeric Andrasi + * @author Marius OLAR */ $lang['menu'] = 'Manager Utilizatori'; $lang['noauth'] = '(autentificarea utilizatorilor nu este disponibilă)'; -- cgit v1.2.3 From f4aabe763b3ae83161819c991d4c7820523c3524 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Figols?= Date: Mon, 10 Oct 2011 20:42:02 +0200 Subject: Spanish language update --- lib/plugins/acl/lang/es/lang.php | 1 + lib/plugins/config/lang/es/lang.php | 2 ++ lib/plugins/plugin/lang/es/lang.php | 1 + lib/plugins/popularity/lang/es/lang.php | 1 + lib/plugins/revert/lang/es/lang.php | 1 + lib/plugins/usermanager/lang/es/lang.php | 1 + 6 files changed, 7 insertions(+) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/es/lang.php b/lib/plugins/acl/lang/es/lang.php index 91a4ca1a1..ee50a7530 100644 --- a/lib/plugins/acl/lang/es/lang.php +++ b/lib/plugins/acl/lang/es/lang.php @@ -21,6 +21,7 @@ * @author Mauro Javier Giamberardino * @author emezeta * @author Oscar Ciudad + * @author Ruben Figols */ $lang['admin_acl'] = 'Administración de lista de control de acceso'; $lang['acl_group'] = 'Grupo'; diff --git a/lib/plugins/config/lang/es/lang.php b/lib/plugins/config/lang/es/lang.php index ccb963ff1..1189a6781 100644 --- a/lib/plugins/config/lang/es/lang.php +++ b/lib/plugins/config/lang/es/lang.php @@ -21,6 +21,7 @@ * @author Mauro Javier Giamberardino * @author emezeta * @author Oscar Ciudad + * @author Ruben Figols */ $lang['menu'] = 'Parámetros de configuración'; $lang['error'] = 'Los parámetros no han sido actualizados a causa de un valor inválido, por favor revise los cambios y re-envíe el formulario.
    Los valores incorrectos se mostrarán con un marco rojo alrededor.'; @@ -55,6 +56,7 @@ $lang['lang'] = 'Idioma'; $lang['basedir'] = 'Directorio de base'; $lang['baseurl'] = 'URL de base'; $lang['savedir'] = 'Directorio para guardar los datos'; +$lang['cookiedir'] = 'Ruta para las Cookie. Dejar en blanco para usar la ruta básica.'; $lang['start'] = 'Nombre de la página inicial'; $lang['title'] = 'Título del wiki'; $lang['template'] = 'Plantilla'; diff --git a/lib/plugins/plugin/lang/es/lang.php b/lib/plugins/plugin/lang/es/lang.php index 2726a5ffa..53d6d63fd 100644 --- a/lib/plugins/plugin/lang/es/lang.php +++ b/lib/plugins/plugin/lang/es/lang.php @@ -21,6 +21,7 @@ * @author Mauro Javier Giamberardino * @author emezeta * @author Oscar Ciudad + * @author Ruben Figols */ $lang['menu'] = 'Administración de Plugins'; $lang['download'] = 'Descargar e instalar un nuevo plugin'; diff --git a/lib/plugins/popularity/lang/es/lang.php b/lib/plugins/popularity/lang/es/lang.php index d78343a36..752fb7da4 100644 --- a/lib/plugins/popularity/lang/es/lang.php +++ b/lib/plugins/popularity/lang/es/lang.php @@ -18,6 +18,7 @@ * @author Oscar M. Lage * @author emezeta * @author Oscar Ciudad + * @author Ruben Figols */ $lang['name'] = 'Retroinformación (Feedback) plugin Popularity'; $lang['submit'] = 'Enviar datos'; diff --git a/lib/plugins/revert/lang/es/lang.php b/lib/plugins/revert/lang/es/lang.php index f793eb06d..e235015d4 100644 --- a/lib/plugins/revert/lang/es/lang.php +++ b/lib/plugins/revert/lang/es/lang.php @@ -19,6 +19,7 @@ * @author Mauro Javier Giamberardino * @author emezeta * @author Oscar Ciudad + * @author Ruben Figols */ $lang['menu'] = 'Restaurador'; $lang['filter'] = 'Buscar páginas con spam'; diff --git a/lib/plugins/usermanager/lang/es/lang.php b/lib/plugins/usermanager/lang/es/lang.php index 50138bf2b..804df2a4b 100644 --- a/lib/plugins/usermanager/lang/es/lang.php +++ b/lib/plugins/usermanager/lang/es/lang.php @@ -20,6 +20,7 @@ * @author Mauro Javier Giamberardino * @author emezeta * @author Oscar Ciudad + * @author Ruben Figols */ $lang['menu'] = 'Administración de usuarios'; $lang['noauth'] = '(la autenticación de usuarios no está disponible)'; -- cgit v1.2.3 From a17cd808475d1303cecfd340b2effc84541bc5d4 Mon Sep 17 00:00:00 2001 From: Kaeptn Haddock Date: Mon, 10 Oct 2011 20:43:38 +0200 Subject: German language update --- lib/plugins/acl/lang/de/lang.php | 1 + lib/plugins/config/lang/de/lang.php | 10 +++++++++- lib/plugins/plugin/lang/de/lang.php | 1 + lib/plugins/popularity/lang/de/lang.php | 1 + lib/plugins/revert/lang/de/lang.php | 1 + lib/plugins/usermanager/lang/de/lang.php | 1 + 6 files changed, 14 insertions(+), 1 deletion(-) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/de/lang.php b/lib/plugins/acl/lang/de/lang.php index 3c6bf8cf0..19bfcb0eb 100644 --- a/lib/plugins/acl/lang/de/lang.php +++ b/lib/plugins/acl/lang/de/lang.php @@ -19,6 +19,7 @@ * @author Robert Bogenschneider * @author Niels Lange * @author Christian Wichmann + * @author Paul Lachewsky */ $lang['admin_acl'] = 'Zugangsverwaltung'; $lang['acl_group'] = 'Gruppe'; diff --git a/lib/plugins/config/lang/de/lang.php b/lib/plugins/config/lang/de/lang.php index b4746d757..7a9922d32 100644 --- a/lib/plugins/config/lang/de/lang.php +++ b/lib/plugins/config/lang/de/lang.php @@ -15,6 +15,7 @@ * @author Robert Bogenschneider * @author Niels Lange * @author Christian Wichmann + * @author Paul Lachewsky */ $lang['menu'] = 'Konfiguration'; $lang['error'] = 'Die Einstellungen wurden wegen einer fehlerhaften Eingabe nicht gespeichert. @@ -50,8 +51,8 @@ $lang['dmode'] = 'Rechte für neue Verzeichnisse'; $lang['lang'] = 'Sprache'; $lang['basedir'] = 'Installationsverzeichnis'; $lang['baseurl'] = 'Installationspfad (URL)'; -$lang['cookiedir'] = 'Cookiepfad. Frei lassen, um den gleichen Pfad wie "baseurl" zu benutzen.'; $lang['savedir'] = 'Speicherverzeichnis'; +$lang['cookiedir'] = 'Cookiepfad. Frei lassen, um den gleichen Pfad wie "baseurl" zu benutzen.'; $lang['start'] = 'Startseitenname'; $lang['title'] = 'Titel des Wikis'; $lang['template'] = 'Designvorlage (Template)'; @@ -122,6 +123,13 @@ $lang['jpg_quality'] = 'JPEG Kompressionsqualität (0-100)'; $lang['subscribers'] = 'E-Mail-Abos zulassen'; $lang['subscribe_time'] = 'Zeit nach der Zusammenfassungs- und Änderungslisten-E-Mails verschickt werden; Dieser Wert sollte kleiner als die in recent_days konfigurierte Zeit sein.'; $lang['compress'] = 'JavaScript und Stylesheets komprimieren'; +$lang['cssdatauri'] = 'Oberer Grenzwert in Bytes für Dateigrössen. Im CSS referenzierte Bilddateien unter diesem Grenzwert werden direkt ins Stylesheet eingebettet um den "HTTP request header overload" zu reduzieren. +Diese Technik funktioniert nicht in Internet Explorer <8! + +Empfohlene Einstellung: 400 to 600 Bytes. +Setze die Einstellung auf 0 um die Funktion zu deaktivieren. + + '; $lang['hidepages'] = 'Seiten verstecken (Regulärer Ausdruck)'; $lang['send404'] = 'Bei nicht vorhandenen Seiten mit 404 Fehlercode antworten'; $lang['sitemap'] = 'Google Sitemap erzeugen (Tage)'; diff --git a/lib/plugins/plugin/lang/de/lang.php b/lib/plugins/plugin/lang/de/lang.php index 6c1bd033c..2c606e670 100644 --- a/lib/plugins/plugin/lang/de/lang.php +++ b/lib/plugins/plugin/lang/de/lang.php @@ -16,6 +16,7 @@ * @author Robert Bogenschneider * @author Niels Lange * @author Christian Wichmann + * @author Paul Lachewsky */ $lang['menu'] = 'Plugins verwalten'; $lang['download'] = 'Neues Plugin herunterladen und installieren'; diff --git a/lib/plugins/popularity/lang/de/lang.php b/lib/plugins/popularity/lang/de/lang.php index 4649062f7..b0e915b91 100644 --- a/lib/plugins/popularity/lang/de/lang.php +++ b/lib/plugins/popularity/lang/de/lang.php @@ -13,6 +13,7 @@ * @author Robert Bogenschneider * @author Niels Lange * @author Christian Wichmann + * @author Paul Lachewsky */ $lang['name'] = 'Popularitäts-Feedback (Eventuell längere Ladezeit)'; $lang['submit'] = 'Daten senden'; diff --git a/lib/plugins/revert/lang/de/lang.php b/lib/plugins/revert/lang/de/lang.php index 0bc8e2ce0..3763dff75 100644 --- a/lib/plugins/revert/lang/de/lang.php +++ b/lib/plugins/revert/lang/de/lang.php @@ -14,6 +14,7 @@ * @author Robert Bogenschneider * @author Niels Lange * @author Christian Wichmann + * @author Paul Lachewsky */ $lang['menu'] = 'Seiten wieder herstellen'; $lang['filter'] = 'Nach betroffenen Seiten suchen'; diff --git a/lib/plugins/usermanager/lang/de/lang.php b/lib/plugins/usermanager/lang/de/lang.php index 090d1d1d9..daffab9b7 100644 --- a/lib/plugins/usermanager/lang/de/lang.php +++ b/lib/plugins/usermanager/lang/de/lang.php @@ -15,6 +15,7 @@ * @author Robert Bogenschneider * @author Niels Lange * @author Christian Wichmann + * @author Paul Lachewsky */ $lang['menu'] = 'Benutzerverwaltung'; $lang['noauth'] = '(Authentifizierungssystem nicht verfügbar)'; -- cgit v1.2.3 From a76231726379ab65af1ce994b8d74e2ac814f8db Mon Sep 17 00:00:00 2001 From: Jeroen Roeterd Date: Mon, 10 Oct 2011 20:55:34 +0200 Subject: Dutch language update --- lib/plugins/acl/lang/nl/lang.php | 1 + lib/plugins/config/lang/nl/lang.php | 2 ++ lib/plugins/plugin/lang/nl/lang.php | 1 + lib/plugins/popularity/lang/nl/lang.php | 1 + lib/plugins/revert/lang/nl/lang.php | 1 + lib/plugins/usermanager/lang/nl/lang.php | 1 + 6 files changed, 7 insertions(+) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/nl/lang.php b/lib/plugins/acl/lang/nl/lang.php index f9adb5f04..686909644 100644 --- a/lib/plugins/acl/lang/nl/lang.php +++ b/lib/plugins/acl/lang/nl/lang.php @@ -16,6 +16,7 @@ * @author Matthias Carchon webmaster@c-mattic.be * @author Marijn Hofstra * @author Timon Van Overveldt + * @author Jeroen */ $lang['admin_acl'] = 'Toegangsrechten'; $lang['acl_group'] = 'Groep'; diff --git a/lib/plugins/config/lang/nl/lang.php b/lib/plugins/config/lang/nl/lang.php index bf1ce46c1..f6574ee2c 100644 --- a/lib/plugins/config/lang/nl/lang.php +++ b/lib/plugins/config/lang/nl/lang.php @@ -13,6 +13,7 @@ * @author Matthias Carchon webmaster@c-mattic.be * @author Marijn Hofstra * @author Timon Van Overveldt + * @author Jeroen */ $lang['menu'] = 'Configuratie-instellingen'; $lang['error'] = 'De instellingen zijn niet gewijzigd wegens een incorrecte waarde, kijk je wijzigingen na en sla dan opnieuw op.
    Je kunt de incorrecte waarde(s) herkennen aan de rode rand.'; @@ -47,6 +48,7 @@ $lang['lang'] = 'Taal'; $lang['basedir'] = 'Basisdirectory'; $lang['baseurl'] = 'Basis-URL'; $lang['savedir'] = 'Directory om data op te slaan'; +$lang['cookiedir'] = 'Cookie pad. Laat leeg om de basis URL te gebruiken.'; $lang['start'] = 'Naam startpagina'; $lang['title'] = 'Titel van de wiki'; $lang['template'] = 'Sjabloon'; diff --git a/lib/plugins/plugin/lang/nl/lang.php b/lib/plugins/plugin/lang/nl/lang.php index 66cd7c0a2..d13e46ff8 100644 --- a/lib/plugins/plugin/lang/nl/lang.php +++ b/lib/plugins/plugin/lang/nl/lang.php @@ -11,6 +11,7 @@ * @author Matthias Carchon webmaster@c-mattic.be * @author Marijn Hofstra * @author Timon Van Overveldt + * @author Jeroen */ $lang['menu'] = 'Plugins beheren'; $lang['download'] = 'Download en installeer een nieuwe plugin'; diff --git a/lib/plugins/popularity/lang/nl/lang.php b/lib/plugins/popularity/lang/nl/lang.php index 0a8386f42..75c13013b 100644 --- a/lib/plugins/popularity/lang/nl/lang.php +++ b/lib/plugins/popularity/lang/nl/lang.php @@ -10,6 +10,7 @@ * @author Matthias Carchon webmaster@c-mattic.be * @author Marijn Hofstra * @author Timon Van Overveldt + * @author Jeroen */ $lang['name'] = 'Populariteitsfeedback (kan even duren om in te laden)'; $lang['submit'] = 'Verstuur'; diff --git a/lib/plugins/revert/lang/nl/lang.php b/lib/plugins/revert/lang/nl/lang.php index 21f8c2971..954bf1068 100644 --- a/lib/plugins/revert/lang/nl/lang.php +++ b/lib/plugins/revert/lang/nl/lang.php @@ -11,6 +11,7 @@ * @author Matthias Carchon webmaster@c-mattic.be * @author Marijn Hofstra * @author Timon Van Overveldt + * @author Jeroen */ $lang['menu'] = 'Herstelmanager'; $lang['filter'] = 'Zoek naar bekladde pagina\'s'; diff --git a/lib/plugins/usermanager/lang/nl/lang.php b/lib/plugins/usermanager/lang/nl/lang.php index a6ae402d8..cac793386 100644 --- a/lib/plugins/usermanager/lang/nl/lang.php +++ b/lib/plugins/usermanager/lang/nl/lang.php @@ -11,6 +11,7 @@ * @author Matthias Carchon webmaster@c-mattic.be * @author Marijn Hofstra * @author Timon Van Overveldt + * @author Jeroen */ $lang['menu'] = 'Gebruikersmanager'; $lang['noauth'] = '(gebruikersauthenticatie niet beschikbaar)'; -- cgit v1.2.3 From 6ed8c51115355a80e8364d924183b53011f3f1bb Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Sat, 15 Oct 2011 11:56:11 +0200 Subject: fixed German translation informal -> formal --- lib/plugins/config/lang/de/lang.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/plugins') diff --git a/lib/plugins/config/lang/de/lang.php b/lib/plugins/config/lang/de/lang.php index 7a9922d32..e8b21e613 100644 --- a/lib/plugins/config/lang/de/lang.php +++ b/lib/plugins/config/lang/de/lang.php @@ -127,7 +127,7 @@ $lang['cssdatauri'] = 'Oberer Grenzwert in Bytes für Dateigrössen. Diese Technik funktioniert nicht in Internet Explorer <8! Empfohlene Einstellung: 400 to 600 Bytes. -Setze die Einstellung auf 0 um die Funktion zu deaktivieren. +Setzen Sie die Einstellung auf 0 um die Funktion zu deaktivieren. '; $lang['hidepages'] = 'Seiten verstecken (Regulärer Ausdruck)'; -- cgit v1.2.3 From a533b44005d06c89ade74ca46d199327eacfeaf7 Mon Sep 17 00:00:00 2001 From: Hakan Sandell Date: Sat, 15 Oct 2011 16:51:42 +0200 Subject: Fixes FS#2323 Symbolic link to template doesn't work patch by Chris Green --- lib/plugins/config/settings/config.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/plugins') diff --git a/lib/plugins/config/settings/config.class.php b/lib/plugins/config/settings/config.class.php index 54fe2ad9c..adf7d217a 100644 --- a/lib/plugins/config/settings/config.class.php +++ b/lib/plugins/config/settings/config.class.php @@ -774,8 +774,8 @@ if (!class_exists('setting_dirchoice')) { if ($entry == '.' || $entry == '..') continue; if ($this->_pattern && !preg_match($this->_pattern,$entry)) continue; - $file = (is_link($this->_dir.$entry)) ? readlink($this->_dir.$entry) : $entry; - if (is_dir($this->_dir.$file)) $list[] = $entry; + $file = (is_link($this->_dir.$entry)) ? readlink($this->_dir.$entry) : $this->_dir.$entry; + if (is_dir($file)) $list[] = $entry; } closedir($dh); } -- cgit v1.2.3 From 335d098af63b77a0c6e9147978a631965d07f3bd Mon Sep 17 00:00:00 2001 From: Johan Guilbaud Date: Sat, 15 Oct 2011 18:52:46 +0200 Subject: French language update --- lib/plugins/config/lang/fr/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins') diff --git a/lib/plugins/config/lang/fr/lang.php b/lib/plugins/config/lang/fr/lang.php index 1de255b40..2ff1eb72c 100644 --- a/lib/plugins/config/lang/fr/lang.php +++ b/lib/plugins/config/lang/fr/lang.php @@ -51,6 +51,7 @@ $lang['lang'] = 'Langue'; $lang['basedir'] = 'Répertoire de base (ex. : /dokuwiki/). Laisser vide pour une détection automatique.'; $lang['baseurl'] = 'URL de base. Laisser vide pour une détection automatique.'; $lang['savedir'] = 'Répertoire de stockage'; +$lang['cookiedir'] = 'Chemin des cookies. Laissez vide pour utiliser l\'URL de base.'; $lang['start'] = 'Nom de la page d\'accueil'; $lang['title'] = 'Titre du wiki'; $lang['template'] = 'Modèle'; -- cgit v1.2.3 From 71861ac4c5e2038488f9b59a3767a8877dec4a02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20Magne=20B=C3=B8e?= Date: Sun, 23 Oct 2011 06:53:57 +0200 Subject: Norwegian language update --- lib/plugins/acl/lang/no/lang.php | 1 + lib/plugins/config/lang/no/lang.php | 1 + lib/plugins/plugin/lang/no/lang.php | 1 + lib/plugins/popularity/lang/no/lang.php | 1 + lib/plugins/revert/lang/no/lang.php | 1 + lib/plugins/usermanager/lang/no/lang.php | 1 + 6 files changed, 6 insertions(+) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/no/lang.php b/lib/plugins/acl/lang/no/lang.php index f0c92453c..587f9c2fc 100644 --- a/lib/plugins/acl/lang/no/lang.php +++ b/lib/plugins/acl/lang/no/lang.php @@ -16,6 +16,7 @@ * @author Erik Pedersen * @author Erik Bjørn Pedersen * @author Rune Rasmussen syntaxerror.no@gmail.com + * @author Jon Bøe */ $lang['admin_acl'] = 'Administrasjon av lister for adgangskontroll (ACL)'; $lang['acl_group'] = 'Gruppe'; diff --git a/lib/plugins/config/lang/no/lang.php b/lib/plugins/config/lang/no/lang.php index ea76616d2..3c4890149 100644 --- a/lib/plugins/config/lang/no/lang.php +++ b/lib/plugins/config/lang/no/lang.php @@ -13,6 +13,7 @@ * @author Erik Pedersen * @author Erik Bjørn Pedersen * @author Rune Rasmussen syntaxerror.no@gmail.com + * @author Jon Bøe */ $lang['menu'] = 'Konfigurasjonsinnstillinger'; $lang['error'] = 'Innstillingene ble ikke oppdatert på grunn av en eller flere ugyldig verdier. Vennligst se gjennom endringene og prøv på nytt. diff --git a/lib/plugins/plugin/lang/no/lang.php b/lib/plugins/plugin/lang/no/lang.php index 8f0ec2039..41f6d1153 100644 --- a/lib/plugins/plugin/lang/no/lang.php +++ b/lib/plugins/plugin/lang/no/lang.php @@ -13,6 +13,7 @@ * @author Erik Pedersen * @author Erik Bjørn Pedersen * @author Rune Rasmussen syntaxerror.no@gmail.com + * @author Jon Bøe */ $lang['menu'] = 'Behandle tillegg'; $lang['download'] = 'Last ned og installer et tillegg'; diff --git a/lib/plugins/popularity/lang/no/lang.php b/lib/plugins/popularity/lang/no/lang.php index 3c6dfee9e..e283fc371 100644 --- a/lib/plugins/popularity/lang/no/lang.php +++ b/lib/plugins/popularity/lang/no/lang.php @@ -11,6 +11,7 @@ * @author Erik Bjørn Pedersen * @author Rune Rasmussen syntaxerror.no@gmail.com * @author Thomas Nygreen + * @author Jon Bøe */ $lang['name'] = 'Popularitetsfeedback (kan ta litt tid å laste)'; $lang['submit'] = 'Send data'; diff --git a/lib/plugins/revert/lang/no/lang.php b/lib/plugins/revert/lang/no/lang.php index 6f9ba2555..2a6a2abd3 100644 --- a/lib/plugins/revert/lang/no/lang.php +++ b/lib/plugins/revert/lang/no/lang.php @@ -13,6 +13,7 @@ * @author Erik Pedersen * @author Erik Bjørn Pedersen * @author Rune Rasmussen syntaxerror.no@gmail.com + * @author Jon Bøe */ $lang['menu'] = 'Tilbakestillingsbehandler'; $lang['filter'] = 'Søk etter søppelmeldinger'; diff --git a/lib/plugins/usermanager/lang/no/lang.php b/lib/plugins/usermanager/lang/no/lang.php index 31e27747d..668863ec2 100644 --- a/lib/plugins/usermanager/lang/no/lang.php +++ b/lib/plugins/usermanager/lang/no/lang.php @@ -13,6 +13,7 @@ * @author Erik Pedersen * @author Erik Bjørn Pedersen * @author Rune Rasmussen syntaxerror.no@gmail.com + * @author Jon Bøe */ $lang['menu'] = 'Behandle brukere'; $lang['noauth'] = '(autentisering av brukere ikke tilgjengelig)'; -- cgit v1.2.3 From 3bc1b86f57f47cd1dc0d9443137e12fc325e304b Mon Sep 17 00:00:00 2001 From: Martin Michalek Date: Sun, 23 Oct 2011 06:56:18 +0200 Subject: Slovak language update --- lib/plugins/config/lang/sk/lang.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/plugins') diff --git a/lib/plugins/config/lang/sk/lang.php b/lib/plugins/config/lang/sk/lang.php index 79f54dc4d..5a94c510e 100644 --- a/lib/plugins/config/lang/sk/lang.php +++ b/lib/plugins/config/lang/sk/lang.php @@ -37,9 +37,10 @@ $lang['_msg_setting_no_default'] = 'Žiadna predvolená hodnota.'; $lang['fmode'] = 'Spôsob vytvárania súborov'; $lang['dmode'] = 'Spôsob vytvárania adresárov'; $lang['lang'] = 'Jazyk'; -$lang['basedir'] = 'Základný adresár'; -$lang['baseurl'] = 'Základná URL'; +$lang['basedir'] = 'Hlavný adresár (napr. /dokuwiki/). Prázdna hodnota znamená použitie autodetekcie.'; +$lang['baseurl'] = 'Adresa servera (napr. http://www.yourserver.com). Prázdna hodnota znamená použitie autodetekcie.'; $lang['savedir'] = 'Adresár pre ukladanie dát'; +$lang['cookiedir'] = 'Cesta k cookies. Prázdna hodnota znamená použitie adresy servera.'; $lang['start'] = 'Názov štartovacej stránky'; $lang['title'] = 'Názov wiki'; $lang['template'] = 'Šablóna'; @@ -110,6 +111,7 @@ $lang['jpg_quality'] = 'Kvalita JPG kompresie (0-100)'; $lang['subscribers'] = 'Povoliť podporu informovania o zmenách stránky'; $lang['subscribe_time'] = 'Časový inteval, po uplynutí ktorého sú zasielané informácie o zmenách stránky alebo menného priestoru (sek); hodnota by mala byť menšia ako čas zadaný pri položke recent_days.'; $lang['compress'] = 'Komprimovať CSS a javascript výstup'; +$lang['cssdatauri'] = 'Veľkosť v bytoch, do ktorej by mali byť obrázky s odkazom v CSS vložené priamo do štýlu z dôvodu obmedzenia HTTP požiadaviek. Tento postup nefunguje v IE < 8! Vhodná hodnota je od 400 do 600 bytov. Hodnota 0 deaktivuje túto metódu.'; $lang['hidepages'] = 'Skryť zodpovedajúce stránky (regulárne výrazy)'; $lang['send404'] = 'Poslať "HTTP 404/Page Not Found" pre neexistujúce stránky'; $lang['sitemap'] = 'Generovať Google sitemap (dni)'; -- cgit v1.2.3 From 12e233d35a8c74cd22af40fedac47511c00d3d97 Mon Sep 17 00:00:00 2001 From: Pierre Corell Date: Thu, 27 Oct 2011 23:44:00 +0200 Subject: German language updates --- lib/plugins/acl/lang/de-informal/lang.php | 1 + lib/plugins/acl/lang/de/lang.php | 1 + lib/plugins/config/lang/de-informal/lang.php | 5 ++++- lib/plugins/config/lang/de/lang.php | 1 + lib/plugins/plugin/lang/de-informal/lang.php | 1 + lib/plugins/plugin/lang/de/lang.php | 1 + lib/plugins/popularity/lang/de-informal/lang.php | 1 + lib/plugins/popularity/lang/de/lang.php | 1 + lib/plugins/revert/lang/de-informal/lang.php | 1 + lib/plugins/revert/lang/de/lang.php | 1 + lib/plugins/usermanager/lang/de-informal/lang.php | 1 + lib/plugins/usermanager/lang/de/lang.php | 1 + 12 files changed, 15 insertions(+), 1 deletion(-) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/de-informal/lang.php b/lib/plugins/acl/lang/de-informal/lang.php index e24584a55..3f4b08c2a 100644 --- a/lib/plugins/acl/lang/de-informal/lang.php +++ b/lib/plugins/acl/lang/de-informal/lang.php @@ -7,6 +7,7 @@ * @author Marcel Metz * @author Matthias Schulte * @author Christian Wichmann + * @author Pierre Corell */ $lang['admin_acl'] = 'Zugriffskontrollsystem Management'; $lang['acl_group'] = 'Gruppe'; diff --git a/lib/plugins/acl/lang/de/lang.php b/lib/plugins/acl/lang/de/lang.php index 19bfcb0eb..eb23636c4 100644 --- a/lib/plugins/acl/lang/de/lang.php +++ b/lib/plugins/acl/lang/de/lang.php @@ -20,6 +20,7 @@ * @author Niels Lange * @author Christian Wichmann * @author Paul Lachewsky + * @author Pierre Corell */ $lang['admin_acl'] = 'Zugangsverwaltung'; $lang['acl_group'] = 'Gruppe'; diff --git a/lib/plugins/config/lang/de-informal/lang.php b/lib/plugins/config/lang/de-informal/lang.php index ab7f59eac..a5c9d8834 100644 --- a/lib/plugins/config/lang/de-informal/lang.php +++ b/lib/plugins/config/lang/de-informal/lang.php @@ -7,6 +7,7 @@ * @author Marcel Metz * @author Matthias Schulte * @author Christian Wichmann + * @author Pierre Corell */ $lang['menu'] = 'Einstellungen'; $lang['error'] = 'Einstellungen wurden nicht aktualisiert auf Grund eines ungültigen Wertes. Bitte überprüfe deine Änderungen und versuche es erneut.
    Die/der ungültige(n) Wert(e) werden durch eine rote Umrandung hervorgehoben.'; @@ -41,6 +42,7 @@ $lang['lang'] = 'Sprache'; $lang['basedir'] = 'Installationsverzeichnis'; $lang['baseurl'] = 'Installationspfad (URL)'; $lang['savedir'] = 'Ordner zum Speichern von Daten'; +$lang['cookiedir'] = 'Cookie Pfad. Leer lassen, um die Standard-Url zu belassen.'; $lang['start'] = 'Name der Startseite'; $lang['title'] = 'Wiki Titel'; $lang['template'] = 'Vorlage'; @@ -111,9 +113,10 @@ $lang['jpg_quality'] = 'JPEG Kompressionsqualität (0-100)'; $lang['subscribers'] = 'E-Mail-Abos zulassen'; $lang['subscribe_time'] = 'Zeit nach der Zusammenfassungs- und Änderungslisten-E-Mails verschickt werden; Dieser Wert sollte kleiner als die in recent_days konfigurierte Zeit sein.'; $lang['compress'] = 'JavaScript und Stylesheets komprimieren'; +$lang['cssdatauri'] = 'Größe in Bytes, bis zu der Bilder in css-Dateien referenziert werden können, um HTTP-Anfragen zu minimieren. Diese Technik funktioniert nicht im IE. < 8! 400 bis 600 Bytes sind gute Werte. Setze 0 für inaktive Funktion.'; $lang['hidepages'] = 'Seiten verstecken (Regulärer Ausdruck)'; $lang['send404'] = 'Sende "HTTP 404/Seite nicht gefunden" für nicht existierende Seiten'; -$lang['sitemap'] = 'Erzeugte Google Sitemaps (Tage)'; +$lang['sitemap'] = 'Erzeuge Google Sitemaps (Tage)'; $lang['broken_iua'] = 'Falls die Funktion ignore_user_abort auf deinem System nicht funktioniert, könnte der Such-Index nicht funktionieren. IIS+PHP/CGI ist bekannt dafür. Siehe auch Bug 852.'; $lang['xsendfile'] = 'Den X-Sendfile-Header nutzen, um Dateien direkt vom Webserver ausliefern zu lassen? Dein Webserver muss dies unterstützen!'; $lang['renderer_xhtml'] = 'Standard-Renderer für die normale (XHTML) Wiki-Ausgabe.'; diff --git a/lib/plugins/config/lang/de/lang.php b/lib/plugins/config/lang/de/lang.php index e8b21e613..66f3b179f 100644 --- a/lib/plugins/config/lang/de/lang.php +++ b/lib/plugins/config/lang/de/lang.php @@ -16,6 +16,7 @@ * @author Niels Lange * @author Christian Wichmann * @author Paul Lachewsky + * @author Pierre Corell */ $lang['menu'] = 'Konfiguration'; $lang['error'] = 'Die Einstellungen wurden wegen einer fehlerhaften Eingabe nicht gespeichert. diff --git a/lib/plugins/plugin/lang/de-informal/lang.php b/lib/plugins/plugin/lang/de-informal/lang.php index 0bd142e23..0c7fb5cdf 100644 --- a/lib/plugins/plugin/lang/de-informal/lang.php +++ b/lib/plugins/plugin/lang/de-informal/lang.php @@ -7,6 +7,7 @@ * @author Marcel Metz * @author Matthias Schulte * @author Christian Wichmann + * @author Pierre Corell */ $lang['menu'] = 'Plugins verwalten'; $lang['download'] = 'Herunterladen und installieren einer neuen Erweiterung'; diff --git a/lib/plugins/plugin/lang/de/lang.php b/lib/plugins/plugin/lang/de/lang.php index 2c606e670..db39b89d4 100644 --- a/lib/plugins/plugin/lang/de/lang.php +++ b/lib/plugins/plugin/lang/de/lang.php @@ -17,6 +17,7 @@ * @author Niels Lange * @author Christian Wichmann * @author Paul Lachewsky + * @author Pierre Corell */ $lang['menu'] = 'Plugins verwalten'; $lang['download'] = 'Neues Plugin herunterladen und installieren'; diff --git a/lib/plugins/popularity/lang/de-informal/lang.php b/lib/plugins/popularity/lang/de-informal/lang.php index f884ed690..40e6c4343 100644 --- a/lib/plugins/popularity/lang/de-informal/lang.php +++ b/lib/plugins/popularity/lang/de-informal/lang.php @@ -7,6 +7,7 @@ * @author Marcel Metz * @author Matthias Schulte * @author Christian Wichmann + * @author Pierre Corell */ $lang['name'] = 'Popularitätsrückmeldung (kann eine Weile dauern, bis es fertig geladen wurde)'; $lang['submit'] = 'Sende Daten'; diff --git a/lib/plugins/popularity/lang/de/lang.php b/lib/plugins/popularity/lang/de/lang.php index b0e915b91..42bdc14d5 100644 --- a/lib/plugins/popularity/lang/de/lang.php +++ b/lib/plugins/popularity/lang/de/lang.php @@ -14,6 +14,7 @@ * @author Niels Lange * @author Christian Wichmann * @author Paul Lachewsky + * @author Pierre Corell */ $lang['name'] = 'Popularitäts-Feedback (Eventuell längere Ladezeit)'; $lang['submit'] = 'Daten senden'; diff --git a/lib/plugins/revert/lang/de-informal/lang.php b/lib/plugins/revert/lang/de-informal/lang.php index b6709d2fa..c199bb55b 100644 --- a/lib/plugins/revert/lang/de-informal/lang.php +++ b/lib/plugins/revert/lang/de-informal/lang.php @@ -7,6 +7,7 @@ * @author Marcel Metz * @author Matthias Schulte * @author Christian Wichmann + * @author Pierre Corell */ $lang['menu'] = 'Zurückstellungsmanager'; $lang['filter'] = 'Durchsuche als Spam markierte Seiten'; diff --git a/lib/plugins/revert/lang/de/lang.php b/lib/plugins/revert/lang/de/lang.php index 3763dff75..b430ce876 100644 --- a/lib/plugins/revert/lang/de/lang.php +++ b/lib/plugins/revert/lang/de/lang.php @@ -15,6 +15,7 @@ * @author Niels Lange * @author Christian Wichmann * @author Paul Lachewsky + * @author Pierre Corell */ $lang['menu'] = 'Seiten wieder herstellen'; $lang['filter'] = 'Nach betroffenen Seiten suchen'; diff --git a/lib/plugins/usermanager/lang/de-informal/lang.php b/lib/plugins/usermanager/lang/de-informal/lang.php index 95b36c60f..63ccdd6e4 100644 --- a/lib/plugins/usermanager/lang/de-informal/lang.php +++ b/lib/plugins/usermanager/lang/de-informal/lang.php @@ -7,6 +7,7 @@ * @author Marcel Metz * @author Matthias Schulte * @author Christian Wichmann + * @author Pierre Corell */ $lang['menu'] = 'Benutzerverwalter'; $lang['noauth'] = '(Benutzeranmeldung ist nicht verfügbar)'; diff --git a/lib/plugins/usermanager/lang/de/lang.php b/lib/plugins/usermanager/lang/de/lang.php index daffab9b7..585c70a76 100644 --- a/lib/plugins/usermanager/lang/de/lang.php +++ b/lib/plugins/usermanager/lang/de/lang.php @@ -16,6 +16,7 @@ * @author Niels Lange * @author Christian Wichmann * @author Paul Lachewsky + * @author Pierre Corell */ $lang['menu'] = 'Benutzerverwaltung'; $lang['noauth'] = '(Authentifizierungssystem nicht verfügbar)'; -- cgit v1.2.3 From d9edf3516f5fb365c74220223e36698a092f63b1 Mon Sep 17 00:00:00 2001 From: Kiril Velikov Date: Thu, 27 Oct 2011 23:45:17 +0200 Subject: Bulgarian language update --- lib/plugins/acl/lang/bg/lang.php | 2 +- lib/plugins/config/lang/bg/lang.php | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/bg/lang.php b/lib/plugins/acl/lang/bg/lang.php index 0746e32c9..e260be918 100644 --- a/lib/plugins/acl/lang/bg/lang.php +++ b/lib/plugins/acl/lang/bg/lang.php @@ -21,7 +21,7 @@ $lang['p_group_ns'] = 'Членовете на групата Date: Sat, 5 Nov 2011 12:38:31 +0000 Subject: paraphrased '<' character in some language files (en, de, de-informal) to avoid XML errors -- please fix other languages --- lib/plugins/config/lang/de-informal/lang.php | 2 +- lib/plugins/config/lang/de/lang.php | 4 ++-- lib/plugins/config/lang/en/lang.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/plugins') diff --git a/lib/plugins/config/lang/de-informal/lang.php b/lib/plugins/config/lang/de-informal/lang.php index a5c9d8834..1de388214 100644 --- a/lib/plugins/config/lang/de-informal/lang.php +++ b/lib/plugins/config/lang/de-informal/lang.php @@ -113,7 +113,7 @@ $lang['jpg_quality'] = 'JPEG Kompressionsqualität (0-100)'; $lang['subscribers'] = 'E-Mail-Abos zulassen'; $lang['subscribe_time'] = 'Zeit nach der Zusammenfassungs- und Änderungslisten-E-Mails verschickt werden; Dieser Wert sollte kleiner als die in recent_days konfigurierte Zeit sein.'; $lang['compress'] = 'JavaScript und Stylesheets komprimieren'; -$lang['cssdatauri'] = 'Größe in Bytes, bis zu der Bilder in css-Dateien referenziert werden können, um HTTP-Anfragen zu minimieren. Diese Technik funktioniert nicht im IE. < 8! 400 bis 600 Bytes sind gute Werte. Setze 0 für inaktive Funktion.'; +$lang['cssdatauri'] = 'Größe in Bytes, bis zu der Bilder in css-Dateien referenziert werden können, um HTTP-Anfragen zu minimieren. Diese Technik funktioniert nicht im IE 7 und älter! 400 bis 600 Bytes sind gute Werte. Setze 0 für inaktive Funktion.'; $lang['hidepages'] = 'Seiten verstecken (Regulärer Ausdruck)'; $lang['send404'] = 'Sende "HTTP 404/Seite nicht gefunden" für nicht existierende Seiten'; $lang['sitemap'] = 'Erzeuge Google Sitemaps (Tage)'; diff --git a/lib/plugins/config/lang/de/lang.php b/lib/plugins/config/lang/de/lang.php index 66f3b179f..09e3f76f9 100644 --- a/lib/plugins/config/lang/de/lang.php +++ b/lib/plugins/config/lang/de/lang.php @@ -124,8 +124,8 @@ $lang['jpg_quality'] = 'JPEG Kompressionsqualität (0-100)'; $lang['subscribers'] = 'E-Mail-Abos zulassen'; $lang['subscribe_time'] = 'Zeit nach der Zusammenfassungs- und Änderungslisten-E-Mails verschickt werden; Dieser Wert sollte kleiner als die in recent_days konfigurierte Zeit sein.'; $lang['compress'] = 'JavaScript und Stylesheets komprimieren'; -$lang['cssdatauri'] = 'Oberer Grenzwert in Bytes für Dateigrössen. Im CSS referenzierte Bilddateien unter diesem Grenzwert werden direkt ins Stylesheet eingebettet um den "HTTP request header overload" zu reduzieren. -Diese Technik funktioniert nicht in Internet Explorer <8! +$lang['cssdatauri'] = 'Oberer Grenzwert in Bytes für Dateigrössen. Im CSS referenzierte Bilddateien unter diesem Grenzwert werden direkt ins Stylesheet eingebettet um den "HTTP request header overload" zu reduzieren. +Diese Technik funktioniert nicht im Internet Explorer 7 und älter! Empfohlene Einstellung: 400 to 600 Bytes. Setzen Sie die Einstellung auf 0 um die Funktion zu deaktivieren. diff --git a/lib/plugins/config/lang/en/lang.php b/lib/plugins/config/lang/en/lang.php index 8609e278f..380f2fd1d 100644 --- a/lib/plugins/config/lang/en/lang.php +++ b/lib/plugins/config/lang/en/lang.php @@ -134,7 +134,7 @@ $lang['jpg_quality'] = 'JPG compression quality (0-100)'; $lang['subscribers'] = 'Enable page subscription support'; $lang['subscribe_time'] = 'Time after which subscription lists and digests are sent (sec); This should be smaller than the time specified in recent_days.'; $lang['compress'] = 'Compact CSS and javascript output'; -$lang['cssdatauri'] = 'Size in bytes up to which images referenced in CSS files should be embedded right into the stylesheet to reduce HTTP request header overhead. This technique won\'t work in IE < 8! 400 to 600 bytes is a good value. Set 0 to disable.'; +$lang['cssdatauri'] = 'Size in bytes up to which images referenced in CSS files should be embedded right into the stylesheet to reduce HTTP request header overhead. This technique won\'t work in IE 7 and below! 400 to 600 bytes is a good value. Set 0 to disable.'; $lang['hidepages'] = 'Hide matching pages (regular expressions)'; $lang['send404'] = 'Send "HTTP 404/Page Not Found" for non existing pages'; $lang['sitemap'] = 'Generate Google sitemap (days)'; -- cgit v1.2.3 From 14b217abd656ce14de2e40246fd982b96ade5b1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Neves?= Date: Sat, 5 Nov 2011 15:58:04 +0100 Subject: pt: paraphrased '<' character in some language files to avoid XML errors as per commit 34bc7405a09b0c63ed7eef338853e13d377c36e6 --- lib/plugins/config/lang/pt/lang.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/plugins') diff --git a/lib/plugins/config/lang/pt/lang.php b/lib/plugins/config/lang/pt/lang.php index f4382aa94..fe05bd281 100644 --- a/lib/plugins/config/lang/pt/lang.php +++ b/lib/plugins/config/lang/pt/lang.php @@ -112,7 +112,7 @@ $lang['jpg_quality'] = 'Compressão/Qualidade JPG (0-100)'; $lang['subscribers'] = 'Habilitar o suporte a subscrição de páginas '; $lang['subscribe_time'] = 'Tempo após o qual as listas de subscrição e "digests" são enviados (seg.); Isto deve ser inferior ao tempo especificado em recent_days.'; $lang['compress'] = 'Compactar as saídas de CSS e JavaScript'; -$lang['cssdatauri'] = 'Tamanho em bytes até ao qual as imagens referenciadas em ficheiros CSS devem ser embutidas diretamente no CSS para reduzir a carga de pedidos HTTP extra. Esta técnica não funciona em IE < 8! 400 a 600 bytes é um bom valor. Escolher 0 para desativar.'; +$lang['cssdatauri'] = 'Tamanho em bytes até ao qual as imagens referenciadas em ficheiros CSS devem ser embutidas diretamente no CSS para reduzir a carga de pedidos HTTP extra. Esta técnica não funciona em IE 7 e abaixo! 400 a 600 bytes é um bom valor. Escolher 0 para desativar.'; $lang['hidepages'] = 'Esconder páginas correspondentes (expressões regulares)'; $lang['send404'] = 'Enviar "HTTP 404/Página não encontrada" para páginas não existentes'; $lang['sitemap'] = 'Gerar Sitemap Google (dias)'; -- cgit v1.2.3 From 8707b67124d73a0df1b88c2f0da037aa0fa5ba16 Mon Sep 17 00:00:00 2001 From: Guy Brand Date: Sat, 5 Nov 2011 22:07:39 +0100 Subject: French strings minor fix and obsolete email address update --- lib/plugins/acl/lang/fr/lang.php | 3 +-- lib/plugins/config/lang/fr/lang.php | 3 +-- lib/plugins/plugin/lang/fr/lang.php | 3 +-- lib/plugins/popularity/lang/fr/lang.php | 3 +-- lib/plugins/revert/lang/fr/lang.php | 3 +-- lib/plugins/usermanager/lang/fr/lang.php | 3 +-- 6 files changed, 6 insertions(+), 12 deletions(-) (limited to 'lib/plugins') diff --git a/lib/plugins/acl/lang/fr/lang.php b/lib/plugins/acl/lang/fr/lang.php index fd3f40dfc..86f493b52 100644 --- a/lib/plugins/acl/lang/fr/lang.php +++ b/lib/plugins/acl/lang/fr/lang.php @@ -7,11 +7,10 @@ * @author Antoine Fixary * @author cumulus * @author Gwenn Gueguen - * @author Guy Brand + * @author Guy Brand * @author Fabien Chabreuil * @author Stéphane Chamberland * @author Maurice A. LeBlanc - * @author gb@isis.u-strasbg.fr * @author stephane.gully@gmail.com * @author Guillaume Turri * @author Erik Pedersen diff --git a/lib/plugins/config/lang/fr/lang.php b/lib/plugins/config/lang/fr/lang.php index 2ff1eb72c..8f669a629 100644 --- a/lib/plugins/config/lang/fr/lang.php +++ b/lib/plugins/config/lang/fr/lang.php @@ -3,10 +3,9 @@ * french language file * * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * @author Guy Brand + * @author Guy Brand * @author Delassaux Julien * @author Maurice A. LeBlanc - * @author gb@isis.u-strasbg.fr * @author stephane.gully@gmail.com * @author Guillaume Turri * @author Erik Pedersen diff --git a/lib/plugins/plugin/lang/fr/lang.php b/lib/plugins/plugin/lang/fr/lang.php index 0ff26da19..b86c57b53 100644 --- a/lib/plugins/plugin/lang/fr/lang.php +++ b/lib/plugins/plugin/lang/fr/lang.php @@ -3,10 +3,9 @@ * french language file * * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * @author Guy Brand + * @author Guy Brand * @author Delassaux Julien * @author Maurice A. LeBlanc - * @author gb@isis.u-strasbg.fr * @author stephane.gully@gmail.com * @author Guillaume Turri * @author Erik Pedersen diff --git a/lib/plugins/popularity/lang/fr/lang.php b/lib/plugins/popularity/lang/fr/lang.php index 3ccc4cb5f..ae12c6683 100644 --- a/lib/plugins/popularity/lang/fr/lang.php +++ b/lib/plugins/popularity/lang/fr/lang.php @@ -2,8 +2,7 @@ /** * French language file * - * @author gb@isis.u-strasbg.fr - * @author Guy Brand + * @author Guy Brand * @author stephane.gully@gmail.com * @author Guillaume Turri * @author Erik Pedersen diff --git a/lib/plugins/revert/lang/fr/lang.php b/lib/plugins/revert/lang/fr/lang.php index 17a2c3a01..15d4d39c3 100644 --- a/lib/plugins/revert/lang/fr/lang.php +++ b/lib/plugins/revert/lang/fr/lang.php @@ -3,8 +3,7 @@ * french language file * @author Delassaux Julien * @author Maurice A. LeBlanc - * @author Guy Brand - * @author gb@isis.u-strasbg.fr + * @author Guy Brand * @author stephane.gully@gmail.com * @author Guillaume Turri * @author Erik Pedersen diff --git a/lib/plugins/usermanager/lang/fr/lang.php b/lib/plugins/usermanager/lang/fr/lang.php index b6910663c..875b6d1a6 100644 --- a/lib/plugins/usermanager/lang/fr/lang.php +++ b/lib/plugins/usermanager/lang/fr/lang.php @@ -2,10 +2,9 @@ /** * french language file * - * @author Guy Brand + * @author Guy Brand * @author Delassaux Julien * @author Maurice A. LeBlanc - * @author gb@isis.u-strasbg.fr * @author stephane.gully@gmail.com * @author Guillaume Turri * @author Erik Pedersen -- cgit v1.2.3