From c654938d56942c3166921564392e7d087ce06311 Mon Sep 17 00:00:00 2001 From: ben Date: Tue, 5 Jan 2010 20:19:09 +0100 Subject: Chinese language update --- lib/plugins/plugin/lang/zh/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/zh/lang.php b/lib/plugins/plugin/lang/zh/lang.php index 3e269bb06..f53eca96a 100644 --- a/lib/plugins/plugin/lang/zh/lang.php +++ b/lib/plugins/plugin/lang/zh/lang.php @@ -8,6 +8,7 @@ * @author George Sheraton guxd@163.com * @author Simon zhan * @author mr.jinyi@gmail.com + * @author ben */ $lang['menu'] = '插件管理器'; $lang['download'] = '下载并安装新的插件'; -- cgit v1.2.3 From 45c73e39a116986b7d3a6328a72ac18a054ddf9c Mon Sep 17 00:00:00 2001 From: Stefan Riemer Date: Mon, 11 Jan 2010 18:19:48 +0100 Subject: German (informal) language update --- lib/plugins/plugin/lang/de-informal/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/de-informal/lang.php b/lib/plugins/plugin/lang/de-informal/lang.php index 21172a179..5796eebf1 100644 --- a/lib/plugins/plugin/lang/de-informal/lang.php +++ b/lib/plugins/plugin/lang/de-informal/lang.php @@ -4,6 +4,7 @@ * * @author Alexander Fischer * @author Juergen Schwarzer + * @author ste-re@web.de */ $lang['menu'] = 'Plugins verwalten'; $lang['download'] = 'Herunterladen und installieren eines neuen Plugins'; -- cgit v1.2.3 From fbb7e354f4aff3e38f01b228b843aa3ae91754ed Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Sun, 17 Jan 2010 13:48:00 +0100 Subject: more deprecated new by reference code fixed --- lib/plugins/plugin/admin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/admin.php b/lib/plugins/plugin/admin.php index 4f8cc01a2..198512a43 100644 --- a/lib/plugins/plugin/admin.php +++ b/lib/plugins/plugin/admin.php @@ -111,7 +111,7 @@ class admin_plugin_plugin extends DokuWiki_Admin_Plugin { $class = 'ap_manage'; } - $this->handler = & new $class($this, $this->plugin); + $this->handler = new $class($this, $this->plugin); $this->msg = $this->handler->process(); } @@ -124,7 +124,7 @@ class admin_plugin_plugin extends DokuWiki_Admin_Plugin { $this->setupLocale(); $this->_get_plugin_list(); - if ($this->handler === NULL) $this->handler = & new ap_manage($this, $this->plugin); + if ($this->handler === NULL) $this->handler = new ap_manage($this, $this->plugin); ptln('
'); $this->handler->html(); -- cgit v1.2.3 From d9c82eb63294032cf16e003122eeeca5a6c8454e Mon Sep 17 00:00:00 2001 From: Yaron Yogev Date: Thu, 21 Jan 2010 21:23:40 +0100 Subject: Hebrew Language Update --- lib/plugins/plugin/lang/he/lang.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/he/lang.php b/lib/plugins/plugin/lang/he/lang.php index 7a68575a7..c6e462193 100644 --- a/lib/plugins/plugin/lang/he/lang.php +++ b/lib/plugins/plugin/lang/he/lang.php @@ -6,6 +6,7 @@ * @author DoK * @author Dotan Kamber * @author Moshe Kaplan + * @author Yaron Yogev */ $lang['menu'] = 'ניהול הרחבות'; $lang['download'] = 'הורדת והתקנת הרחבה חדשה'; @@ -47,3 +48,7 @@ $lang['error_dircreate'] = 'כשל ביצירת תיקיה זמנית לק $lang['error_decompress'] = 'מנהל ההרחבות כשל בפרישת הקובץ שהורד. יתכן כי זו תוצאה של הורדה תקולה ובמקרה זה עליך לנסות שנית; או שיתכן כי תסדיר הכיווץ אינו ידוע, במקרה זה יהיה עליך להוריד ולהתקין את ההרחבה ידנית.'; $lang['error_copy'] = 'חלה שגיאה בהעתקת הקובץ בניסיון להתקין קבצים להרחבה %s: ייתכן כי הדיסק מלא או שהרשאות הגישה לקבצים שגויות. יתכן כי בשל כך נוצרה התקנה חלקית של ההרחבה שתשאיר את התקנת הויקי שלך לא יציבה.'; $lang['error_delete'] = 'חלה שגיאה בעת ניסיון למחיקת ההרחבה %s. הסיבה הסבירה ביותר היא הרשאות גישה לקבצים ולספריות שאינן מספקות'; +$lang['enabled'] = 'תוסף %s מופעל.'; +$lang['notenabled'] = 'לא ניתן להפעיל את התוסף %s, בדוק הרשאות קבצים.'; +$lang['disabled'] = 'תוסף %s מושבת.'; +$lang['notdisabled'] = 'לא ניתן להשבית את התוסף %s, בדוק הרשאות קבצים.'; -- cgit v1.2.3 From c2a6d81662045023bdf1617b6b49f71c274d55ca Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Mon, 1 Feb 2010 16:10:25 +0100 Subject: plugin related autoloading This patch moved the place where DOKU_PLUGIN is defined. It no longer can be set from a normal config (only via preload) --- lib/plugins/plugin/admin.php | 2 -- lib/plugins/plugin/classes/ap_download.class.php | 3 --- 2 files changed, 5 deletions(-) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/admin.php b/lib/plugins/plugin/admin.php index 198512a43..c662b565a 100644 --- a/lib/plugins/plugin/admin.php +++ b/lib/plugins/plugin/admin.php @@ -13,8 +13,6 @@ if(!defined('DOKU_INC')) die(); // - allow a plugin to contain extras to be copied to the current template (extra/tpl/) // - to images (lib/images/) [ not needed, should go in lib/plugin/images/ ] -if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); -require_once(DOKU_PLUGIN.'admin.php'); require_once(DOKU_PLUGIN."/plugin/classes/ap_manage.class.php"); //--------------------------[ GLOBALS ]------------------------------------------------ diff --git a/lib/plugins/plugin/classes/ap_download.class.php b/lib/plugins/plugin/classes/ap_download.class.php index 90e5de53b..6ad048d72 100644 --- a/lib/plugins/plugin/classes/ap_download.class.php +++ b/lib/plugins/plugin/classes/ap_download.class.php @@ -197,8 +197,6 @@ class ap_download extends ap_manage { $ext = $this->guess_archive($file); if (in_array($ext, array('tar','bz','gz'))) { - require_once(DOKU_INC."inc/TarLib.class.php"); - switch($ext){ case 'bz': $compress_type = COMPRESS_BZIP; @@ -227,7 +225,6 @@ class ap_download extends ap_manage { } return true; } else if ($ext == 'zip') { - require_once(DOKU_INC."inc/ZipLib.class.php"); $zip = new ZipLib(); $ok = $zip->Extract($file, $target); -- cgit v1.2.3 From c1b2e736c1da490219a060dd52104c4f88e70f7e Mon Sep 17 00:00:00 2001 From: Sergio Motta Date: Tue, 2 Feb 2010 21:02:48 +0100 Subject: Portuguese language update --- lib/plugins/plugin/lang/pt-br/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/pt-br/lang.php b/lib/plugins/plugin/lang/pt-br/lang.php index d0c14459a..57052706e 100644 --- a/lib/plugins/plugin/lang/pt-br/lang.php +++ b/lib/plugins/plugin/lang/pt-br/lang.php @@ -13,6 +13,7 @@ * @author Frederico Guimarães * @author Jair Henrique * @author Luis Dantas + * @author Sergio Motta sergio@cisne.com.br */ $lang['menu'] = 'Gerenciar Plug-ins'; $lang['download'] = 'Baixar e instalar um novo plug-in'; -- cgit v1.2.3 From 9bec85f2322b78de408af08a84bf7de4200c8d2c Mon Sep 17 00:00:00 2001 From: LSwp Date: Sat, 6 Feb 2010 12:25:26 +0100 Subject: Polish language update --- lib/plugins/plugin/lang/pl/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/pl/lang.php b/lib/plugins/plugin/lang/pl/lang.php index c9f74bd52..1c1fcc4e3 100644 --- a/lib/plugins/plugin/lang/pl/lang.php +++ b/lib/plugins/plugin/lang/pl/lang.php @@ -8,6 +8,7 @@ * @author Mariusz Kujawski * @author Maciej Kurczewski * @author Sławomir Boczek + * @author sleshek@wp.pl */ $lang['menu'] = 'Menadżer wtyczek'; $lang['download'] = 'Ściągnij i zainstaluj nową wtyczkę'; -- cgit v1.2.3 From 52b35d3ab15e4a042a2e1c5c8c5766fc76c534af Mon Sep 17 00:00:00 2001 From: Marcel Metz Date: Mon, 8 Feb 2010 20:11:06 +0100 Subject: Informal German language update --- lib/plugins/plugin/lang/de-informal/admin_plugin.txt | 2 +- lib/plugins/plugin/lang/de-informal/lang.php | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/de-informal/admin_plugin.txt b/lib/plugins/plugin/lang/de-informal/admin_plugin.txt index 663313436..576797d57 100644 --- a/lib/plugins/plugin/lang/de-informal/admin_plugin.txt +++ b/lib/plugins/plugin/lang/de-informal/admin_plugin.txt @@ -1,3 +1,3 @@ ===== Erweiterungsmanagement ===== -Auf dieser Seite kannst du alles anpassen was mit DokuWiki zu tun hat [[doku>plugins|plugins]]. Der Ordner der Erweiterungen muss für den Webserver beschreibbar sein, um Erweiterungen herunterladen und installieren zu können. \ No newline at end of file +Auf dieser Seite kannst du alles anpassen was mit den DokuWiki [[doku>plugins|Erweiterungen]] zu tun hat. Der Ordner der Erweiterungen muss für den Webserver beschreibbar sein, um Erweiterungen herunterladen und installieren zu können. \ No newline at end of file diff --git a/lib/plugins/plugin/lang/de-informal/lang.php b/lib/plugins/plugin/lang/de-informal/lang.php index 5796eebf1..f906bf6aa 100644 --- a/lib/plugins/plugin/lang/de-informal/lang.php +++ b/lib/plugins/plugin/lang/de-informal/lang.php @@ -4,11 +4,11 @@ * * @author Alexander Fischer * @author Juergen Schwarzer - * @author ste-re@web.de + * @author Marcel Metz */ $lang['menu'] = 'Plugins verwalten'; -$lang['download'] = 'Herunterladen und installieren eines neuen Plugins'; -$lang['manage'] = 'Installierte Plugins'; +$lang['download'] = 'Herunterladen und installieren einer neuen Erweiterung'; +$lang['manage'] = 'Installierte Erweiterungen'; $lang['btn_info'] = 'Information'; $lang['btn_update'] = 'aktualisieren'; $lang['btn_delete'] = 'löschen'; @@ -24,15 +24,15 @@ $lang['updating'] = 'Aktualisiere...'; $lang['updated'] = 'Erweiterung %s wurde erfolgreich aktualisiert.'; $lang['updates'] = 'Die folgenden Erweiterungen wurden erfolgreich aktualisiert.'; $lang['update_none'] = 'Keine Aktualisierungen gefunden.'; -$lang['deleting'] = 'Loesche...'; +$lang['deleting'] = 'Lösche...'; $lang['deleted'] = 'Erweiterung %s wurde gelöscht.'; $lang['downloading'] = 'Herunterladen...'; $lang['downloaded'] = 'Erweiterung %s wurde erfolgreich installiert'; $lang['downloads'] = 'Die folgenden Erweiterungen wurden erfolgreich installiert:'; $lang['download_none'] = 'Keine Erweiterungen gefunden oder es trat ein unbekanntest Problem beim Herunterladen und Installieren auf.'; -$lang['plugin'] = 'Plugin:'; +$lang['plugin'] = 'Erweiterung:'; $lang['components'] = 'Komponenten'; -$lang['noinfo'] = 'Diese Erweiterung gab keine Information zurück - es könnte ungültig sein.'; +$lang['noinfo'] = 'Diese Erweiterung gab keine Information zurück - sie könnte ungültig sein.'; $lang['name'] = 'Name:'; $lang['date'] = 'Datum:'; $lang['type'] = 'Typ:'; @@ -44,8 +44,8 @@ $lang['error_download'] = 'Nicht möglich die Erweiterung herunterzuladen $lang['error_badurl'] = 'Vermute schlechte URL - nicht möglich den Dateinamen aus der URL zu ermitteln'; $lang['error_dircreate'] = 'Nicht möglich einen temporären Ordner zu erstellen um den Download zu empfangen.'; $lang['error_decompress'] = 'Dem Erweiterungsmanager war es nicht möglich die heruntergeladene Datei zu dekomprimieren. Dies kann an einem defekten Download liegen, in diesem Fall sollten Sie es erneut versuchen; oder das Format mit dem die Datei komprimiert ist, ist unbekannt, da müssen Sie die Erweiterung manuell herunterladen und installieren. '; -$lang['error_copy'] = 'Es trat ein Dateifehler beim Kopieren der Installationsdateien für Plugn %s auf: Die Festplatte könnte voll oder die Zugriffsrechte verweigert worden sein. Dies führt zu einem teilweise installierten Plugin und belässt dein Wiki in einem instabilen Zustand.'; -$lang['error_delete'] = 'Es trat ein Fehler beim Löschen des Plugins %s auf. Die whrscheinlichste Ursache ist eine unzureichende Datei- oder Ordnerzugriffserlaubnis.'; +$lang['error_copy'] = 'Es trat ein Dateifehler beim Kopieren der Installationsdateien für die Erweiterung %s auf: Die Festplatte könnte voll oder die Zugriffsrechte verweigert worden sein. Dies führt zu einer teilweise installierten Erweiterung und belässt dein Wiki in einem instabilen Zustand.'; +$lang['error_delete'] = 'Es trat ein Fehler beim Löschen der Erweiterung %s auf. Die wahrscheinlichste Ursache ist eine unzureichende Datei- oder Ordnerzugriffserlaubnis.'; $lang['enabled'] = 'Erweiterung %s aktiviert.'; $lang['notenabled'] = 'Erweiterung %s konnte nicht aktiviert werden. Überprüfen sie die Zugriffsberechtigung der Datei.'; $lang['disabled'] = 'Erweiterung %s deaktiviert.'; -- cgit v1.2.3 From c4b04b7f874a6c3f7ab5296aed1c039757183eb7 Mon Sep 17 00:00:00 2001 From: Philippe Bajoit Date: Mon, 8 Feb 2010 20:22:17 +0100 Subject: French language update --- lib/plugins/plugin/lang/fr/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/fr/lang.php b/lib/plugins/plugin/lang/fr/lang.php index 43c4e9c5f..eec17cdbb 100644 --- a/lib/plugins/plugin/lang/fr/lang.php +++ b/lib/plugins/plugin/lang/fr/lang.php @@ -12,6 +12,7 @@ * @author Erik Pedersen * @author olivier duperray * @author Vincent Feltz + * @author Philippe Bajoit */ $lang['menu'] = 'Gestion des module externes'; $lang['download'] = 'Télécharger et installer un nouveau module'; -- cgit v1.2.3 From 9ee282d8dedfbb7ac2b6893de250d99f00ff544f Mon Sep 17 00:00:00 2001 From: Dimi T Date: Tue, 9 Feb 2010 21:52:03 +0100 Subject: Macedonian transaltion added --- lib/plugins/plugin/lang/mk/lang.php | 43 +++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 lib/plugins/plugin/lang/mk/lang.php (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/mk/lang.php b/lib/plugins/plugin/lang/mk/lang.php new file mode 100644 index 000000000..85f73a09f --- /dev/null +++ b/lib/plugins/plugin/lang/mk/lang.php @@ -0,0 +1,43 @@ + + */ +$lang['menu'] = 'Уреди ги приклучоците'; +$lang['download'] = 'Симни и инсталирај нов приклучок'; +$lang['manage'] = 'Инсталирани приклучоци'; +$lang['btn_info'] = 'информации'; +$lang['btn_update'] = 'ажурирај'; +$lang['btn_delete'] = 'избриши'; +$lang['btn_settings'] = 'поставувања'; +$lang['btn_download'] = 'Симни'; +$lang['btn_enable'] = 'Зачувај'; +$lang['url'] = 'URL'; +$lang['installed'] = 'Инсталирани:'; +$lang['lastupdate'] = 'Последно ажурирани:'; +$lang['source'] = 'Извор:'; +$lang['unknown'] = 'непознат'; +$lang['updating'] = 'Ажурирам...'; +$lang['updated'] = 'Приклучокот % е успешно ажуриран'; +$lang['updates'] = 'Следниве приклучоци се успешно ажурирани'; +$lang['update_none'] = 'Нема потребни ажурирања.'; +$lang['deleting'] = 'Бришам...'; +$lang['deleted'] = 'Приклучокот %s е избришан.'; +$lang['downloading'] = 'Симнувам...'; +$lang['downloaded'] = 'Приклучокот % е успешно инсталиран'; +$lang['downloads'] = 'Следниве приклучоци се успешно инсталирани'; +$lang['download_none'] = 'Нема пронајдени приклучоци, или имаше непознат проблем при симнување и инсталирање.'; +$lang['plugin'] = 'Приклучок:'; +$lang['components'] = 'Компоненти'; +$lang['noinfo'] = 'Овој приклучок не врати информации, може да не е валиден.'; +$lang['name'] = 'Име:'; +$lang['date'] = 'Датум:'; +$lang['type'] = 'Тип:'; +$lang['desc'] = 'Опис:'; +$lang['author'] = 'Автор:'; +$lang['www'] = 'Веб:'; +$lang['error'] = 'Се појави непозната грешка.'; +$lang['error_download'] = 'Не сум во можност да ја симнам датотеката за приклучокот: %s'; +$lang['enabled'] = 'Приклучокот %s е овозможен.'; +$lang['disabled'] = 'Приклучокот %s е оневозможен.'; -- cgit v1.2.3 From fc5dbe994743ed593e3941015999ca08abc72686 Mon Sep 17 00:00:00 2001 From: Martijn Dekker Date: Wed, 10 Feb 2010 20:26:47 +0100 Subject: Interlingua Translation added --- lib/plugins/plugin/lang/ia/lang.php | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lib/plugins/plugin/lang/ia/lang.php (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/ia/lang.php b/lib/plugins/plugin/lang/ia/lang.php new file mode 100644 index 000000000..3f0ebb5d8 --- /dev/null +++ b/lib/plugins/plugin/lang/ia/lang.php @@ -0,0 +1,7 @@ + + * @author Martijn Dekker + */ -- cgit v1.2.3 From 2eb3414de1a76407ed3eae58fd42c3a5c342039b Mon Sep 17 00:00:00 2001 From: Traduzioni Date: Thu, 11 Feb 2010 18:37:26 +0100 Subject: Italian language update --- lib/plugins/plugin/lang/it/admin_plugin.txt | 3 +-- lib/plugins/plugin/lang/it/lang.php | 10 +++++----- 2 files changed, 6 insertions(+), 7 deletions(-) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/it/admin_plugin.txt b/lib/plugins/plugin/lang/it/admin_plugin.txt index 1c0d5dc7b..5591f08fe 100644 --- a/lib/plugins/plugin/lang/it/admin_plugin.txt +++ b/lib/plugins/plugin/lang/it/admin_plugin.txt @@ -1,4 +1,3 @@ ====== Gestione Plugin ====== -Su questa pagina puoi gestire tutto ciò che riguarda i [[doku>plugins|plugin]] di DokuWiki. Per poter scaricare e installare un plugin, il webserver deve avere accesso in scrittura alla cartella dei plugin. - +In questa pagina puoi gestire tutto ciò che riguarda i [[doku>plugins|plugin]] di DokuWiki. Per poter scaricare e installare un plugin, il webserver deve avere accesso in scrittura alla directory dei plugin. \ No newline at end of file diff --git a/lib/plugins/plugin/lang/it/lang.php b/lib/plugins/plugin/lang/it/lang.php index 909c5eacb..3e9d855ec 100644 --- a/lib/plugins/plugin/lang/it/lang.php +++ b/lib/plugins/plugin/lang/it/lang.php @@ -17,7 +17,7 @@ $lang['download'] = 'Scarica e installa un nuovo plugin'; $lang['manage'] = 'Plugin installati'; $lang['btn_info'] = 'info'; $lang['btn_update'] = 'aggiorna'; -$lang['btn_delete'] = 'cancella'; +$lang['btn_delete'] = 'elimina'; $lang['btn_settings'] = 'configurazione'; $lang['btn_download'] = 'Scarica'; $lang['btn_enable'] = 'Salva'; @@ -30,9 +30,9 @@ $lang['updating'] = 'Aggiornamento in corso ...'; $lang['updated'] = 'Aggiornamento plugin %s riuscito'; $lang['updates'] = 'Aggiornamento dei seguenti plugin riuscito:'; $lang['update_none'] = 'Nessun aggiornamento trovato.'; -$lang['deleting'] = 'Cancellazione in corso ...'; -$lang['deleted'] = 'Plugin %s cancellato.'; -$lang['downloading'] = 'Download in corso ...'; +$lang['deleting'] = 'Eliminazione in corso ...'; +$lang['deleted'] = 'Plugin %s eliminato.'; +$lang['downloading'] = 'Scaricamento in corso ...'; $lang['downloaded'] = 'Installazione plugin %s riuscita'; $lang['downloads'] = 'Installazione dei seguenti plugin riuscita:'; $lang['download_none'] = 'Nessun plugin trovato, oppure si è verificato un problema sconosciuto durante il download e l\'installazione.'; @@ -51,7 +51,7 @@ $lang['error_badurl'] = 'Possibile URL non corretta - impossibile deter $lang['error_dircreate'] = 'Impossibile creare la directory temporanea dove scaricare il file'; $lang['error_decompress'] = 'Impossibile decomprimere il file scaricato. Questo potrebbe essere il risultato di un download incompleto, in tal caso dovresti provare di nuovo; oppure il formato di compressione potrebbe essere sconosciuto, in questo caso è necessario scaricare e installare il plugin manualmente.'; $lang['error_copy'] = 'Si è verificato un errore nella copia di un file durante l\'installazione del plugin %s: il disco potrebbe essere pieno oppure i permessi di accesso al file potrebbero non essere corretti. Il plugin potrebbe essere stato installato solo parzialmente, questo potrebbe causare instabilità al sistema.'; -$lang['error_delete'] = 'Si è verificato un errore durante la cancellazione del plugin %s. Molto probabilmente i permessi di acesso ai file o alla directory non sono sufficienti'; +$lang['error_delete'] = 'Si è verificato un errore durante l\'eliminazione del plugin %s. Molto probabilmente i permessi di acesso ai file o alla directory non sono sufficienti'; $lang['enabled'] = 'Plugin %s abilitato.'; $lang['notenabled'] = 'Impossibile abilitare il plugin %s, verifica i permessi dei file.'; $lang['disabled'] = 'Plugin %s disabilitato.'; -- cgit v1.2.3 From c04912f6c4e1c1c8bda182a7dc03c86bcb415d90 Mon Sep 17 00:00:00 2001 From: Victor M Castelan Date: Fri, 12 Feb 2010 12:53:49 +0100 Subject: Spanish language update --- lib/plugins/plugin/lang/es/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/es/lang.php b/lib/plugins/plugin/lang/es/lang.php index 08ab38196..33264ddf3 100644 --- a/lib/plugins/plugin/lang/es/lang.php +++ b/lib/plugins/plugin/lang/es/lang.php @@ -17,6 +17,7 @@ * @author Marvin Ortega * @author Daniel Castro Alvarado * @author Fernando J. Gómez + * @author Victor Castelan */ $lang['menu'] = 'Administración de Plugins'; $lang['download'] = 'Descargar e instalar un nuevo plugin'; -- cgit v1.2.3 From 8e6d6cfde65cf5e68cf762424dc2a7048e6b2959 Mon Sep 17 00:00:00 2001 From: Martijn Dekker Date: Fri, 12 Feb 2010 23:37:21 +0100 Subject: Interlingua Language Update --- lib/plugins/plugin/lang/ia/admin_plugin.txt | 3 ++ lib/plugins/plugin/lang/ia/lang.php | 44 +++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 lib/plugins/plugin/lang/ia/admin_plugin.txt (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/ia/admin_plugin.txt b/lib/plugins/plugin/lang/ia/admin_plugin.txt new file mode 100644 index 000000000..c7f758c16 --- /dev/null +++ b/lib/plugins/plugin/lang/ia/admin_plugin.txt @@ -0,0 +1,3 @@ +====== Gestion de plug-ins ====== + +In iste pagina tu pote gerer omne cosas con relation al [[doku>plugins|plug-ins]] de DokuWiki. Pro poter discargar e installar un plug-in, le directorio de plug-ins debe permitter le accesso de scriptura al servitor web. \ No newline at end of file diff --git a/lib/plugins/plugin/lang/ia/lang.php b/lib/plugins/plugin/lang/ia/lang.php index 3f0ebb5d8..523f8581d 100644 --- a/lib/plugins/plugin/lang/ia/lang.php +++ b/lib/plugins/plugin/lang/ia/lang.php @@ -5,3 +5,47 @@ * @author robocap * @author Martijn Dekker */ +$lang['menu'] = 'Gestion de plug-ins'; +$lang['download'] = 'Discargar e installar un nove plug-in'; +$lang['manage'] = 'Plug-ins installate'; +$lang['btn_info'] = 'info'; +$lang['btn_update'] = 'actualisar'; +$lang['btn_delete'] = 'deler'; +$lang['btn_settings'] = 'configurationes'; +$lang['btn_download'] = 'Discargar'; +$lang['btn_enable'] = 'Salveguardar'; +$lang['url'] = 'URL'; +$lang['installed'] = 'Installate:'; +$lang['lastupdate'] = 'Ultime actualisation:'; +$lang['source'] = 'Origine:'; +$lang['unknown'] = 'incognite'; +$lang['updating'] = 'Actualisation…'; +$lang['updated'] = 'Actualisation del plug-in %s succedite'; +$lang['updates'] = 'Le sequente plug-ins ha essite actualisate con successo'; +$lang['update_none'] = 'Nulle actualisation trovate.'; +$lang['deleting'] = 'Deletion…'; +$lang['deleted'] = 'Le plug-in %s ha essite delite.'; +$lang['downloading'] = 'Discargamento…'; +$lang['downloaded'] = 'Installation del plug-in %s succedite.'; +$lang['downloads'] = 'Le sequente plug-ins ha essite installate con successo:'; +$lang['download_none'] = 'Nulle plug-in trovate, o il ha occurrite un problema incognite durante le discargamento e installation.'; +$lang['plugin'] = 'Plug-in:'; +$lang['components'] = 'Componentes'; +$lang['noinfo'] = 'Iste plug-in retornava nulle information; illo pote esser invalide.'; +$lang['name'] = 'Nomine:'; +$lang['date'] = 'Data:'; +$lang['type'] = 'Typo:'; +$lang['desc'] = 'Description:'; +$lang['author'] = 'Autor:'; +$lang['www'] = 'Web:'; +$lang['error'] = 'Un error incognite ha occurrite.'; +$lang['error_download'] = 'Impossibile discargar le file del plug-in: %s'; +$lang['error_badurl'] = 'URL probabilemente invalide; impossibile determinar le nomine del file ex le URL'; +$lang['error_dircreate'] = 'Impossibile crear le dossier temporari pro reciper le discargamento'; +$lang['error_decompress'] = 'Le gestor de plug-ins non poteva decomprimer le file discargate. Isto pote esser le resultato de un discargamento defectuose, in le qual caso tu deberea probar lo de novo; o le formato de compression pote esser incognite, in le qual caso tu debe discargar e installar le plug-in manualmente.'; +$lang['error_copy'] = 'Il occurreva un error durante le tentativa de installar files pro le plugin %s: le disco pote esser plen o le permissiones de accesso a files pote esser incorrecte. Isto pote haber resultate in un plug-in partialmente installate e lassar tu installation del wiki instabile.'; +$lang['error_delete'] = 'Il occurreva un error durante le tentativa de deler le plug-in %s. Le causa le plus probabile es insufficiente permissiones de files o directorios.'; +$lang['enabled'] = 'Plug-in %s activate.'; +$lang['notenabled'] = 'Le plug-in %s non poteva esser activate; verifica le permissiones de accesso a files.'; +$lang['disabled'] = 'Plug-in %s disactivate.'; +$lang['notdisabled'] = 'Le plug-in %s non poteva esser disactivate; verifica le permissiones de accesso a files.'; -- cgit v1.2.3 From b04e9c2821040ceefeaf1953e47b5871f87a66a9 Mon Sep 17 00:00:00 2001 From: Leszek Stachowski Date: Sun, 14 Feb 2010 12:59:28 +0100 Subject: Polish language update --- lib/plugins/plugin/lang/pl/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/pl/lang.php b/lib/plugins/plugin/lang/pl/lang.php index 1c1fcc4e3..b5f813f03 100644 --- a/lib/plugins/plugin/lang/pl/lang.php +++ b/lib/plugins/plugin/lang/pl/lang.php @@ -9,6 +9,7 @@ * @author Maciej Kurczewski * @author Sławomir Boczek * @author sleshek@wp.pl + * @author Leszek Stachowski */ $lang['menu'] = 'Menadżer wtyczek'; $lang['download'] = 'Ściągnij i zainstaluj nową wtyczkę'; -- cgit v1.2.3 From f77ccdf72d9702956edd4917d261b908636fd690 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Schintgen?= Date: Mon, 22 Feb 2010 21:11:55 +0100 Subject: Luxembourgish translation added --- lib/plugins/plugin/lang/lb/admin_plugin.txt | 4 ++++ lib/plugins/plugin/lang/lb/lang.php | 6 ++++++ 2 files changed, 10 insertions(+) create mode 100644 lib/plugins/plugin/lang/lb/admin_plugin.txt create mode 100644 lib/plugins/plugin/lang/lb/lang.php (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/lb/admin_plugin.txt b/lib/plugins/plugin/lang/lb/admin_plugin.txt new file mode 100644 index 000000000..223de10e8 --- /dev/null +++ b/lib/plugins/plugin/lang/lb/admin_plugin.txt @@ -0,0 +1,4 @@ +====== Plugin Management ====== + +Op dëser Säit kanns de alles verwalte wat mat Dokuwiki [[doku>plugins|Pluginen]] ze dinn huet. Fir e Plugin kënnen z'installéieren, muss däi Pluginverzeechnës vum Webserver schreiwbar sinn. + diff --git a/lib/plugins/plugin/lang/lb/lang.php b/lib/plugins/plugin/lang/lb/lang.php new file mode 100644 index 000000000..59acdf7a8 --- /dev/null +++ b/lib/plugins/plugin/lang/lb/lang.php @@ -0,0 +1,6 @@ + Date: Sun, 28 Feb 2010 10:34:24 +0100 Subject: Russian language update --- lib/plugins/plugin/lang/ru/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/ru/lang.php b/lib/plugins/plugin/lang/ru/lang.php index 0bcddaa70..514b38bc2 100644 --- a/lib/plugins/plugin/lang/ru/lang.php +++ b/lib/plugins/plugin/lang/ru/lang.php @@ -12,6 +12,7 @@ * @author Alexander Sorkin * @author Kirill Krasnov * @author Vlad Tsybenko + * @author Aleksey Osadchiy */ $lang['menu'] = 'Управление плагинами'; $lang['download'] = 'Скачать и установить новый плагин'; -- cgit v1.2.3 From 7caaf84c91ff684b186dec09e921d319b64ec0e1 Mon Sep 17 00:00:00 2001 From: Leonard Elezi Date: Tue, 2 Mar 2010 20:02:00 +0100 Subject: Albanian translation added --- lib/plugins/plugin/lang/sq/admin_plugin.txt | 3 ++ lib/plugins/plugin/lang/sq/lang.php | 50 +++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 lib/plugins/plugin/lang/sq/admin_plugin.txt create mode 100644 lib/plugins/plugin/lang/sq/lang.php (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/sq/admin_plugin.txt b/lib/plugins/plugin/lang/sq/admin_plugin.txt new file mode 100644 index 000000000..2e1f19234 --- /dev/null +++ b/lib/plugins/plugin/lang/sq/admin_plugin.txt @@ -0,0 +1,3 @@ +====== Menaxhimi i Plugin-eve ====== + +Në këtë faqe mund të menaxhoni çdo gjë që ka të bëjë me [[doku>plugins|plugin-et]] Dokuwiki. Që të jetë në gjendje për të shkarkuar dhe instaluar një plugin, dosja e plugin-it duhet të jetë e shkrueshme nga webserver-i. \ No newline at end of file diff --git a/lib/plugins/plugin/lang/sq/lang.php b/lib/plugins/plugin/lang/sq/lang.php new file mode 100644 index 000000000..9ddcf527f --- /dev/null +++ b/lib/plugins/plugin/lang/sq/lang.php @@ -0,0 +1,50 @@ +%s: disku mund të jetë plotë ose të drejtat për aksesim skedari mund të jenë të gabuara. Kjo mund të ketë shkaktuar një instalim të pjesshëm të plugin-it dhe ta lërë instalimin e wiki-t tënd të paqëndrueshëm.'; +$lang['error_delete'] = 'Ndodhi një gabim gjatë përpjekjes për të fshirë plugin-in %s. Shkaku më i mundshëm është të drejta të pamjaftueshme për aksesim skedari ose dosjeje.'; +$lang['enabled'] = 'Plugini %s u aktivizua.'; +$lang['notenabled'] = 'Plugini %s nuk mundi të aktivizohej, kontrollo të drejtat e aksesit për skedarin.'; +$lang['disabled'] = 'Plugin %s është i paaktivizuar.'; +$lang['notdisabled'] = 'Plugini %s nuk mundi të çaktivizohej, kontrollo të drejtat e aksesit për skedarin.'; -- cgit v1.2.3 From 620404a5dcfbccb29cd939932ecaead95b6e24cd Mon Sep 17 00:00:00 2001 From: Marek Sacha Date: Wed, 3 Mar 2010 22:25:51 +0100 Subject: Czech language update --- lib/plugins/plugin/lang/cs/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/cs/lang.php b/lib/plugins/plugin/lang/cs/lang.php index d56f52be2..bd1380143 100644 --- a/lib/plugins/plugin/lang/cs/lang.php +++ b/lib/plugins/plugin/lang/cs/lang.php @@ -7,6 +7,7 @@ * @author Zbynek Krivka * @author Bohumir Zamecnik * @author tomas@valenta.cz + * @author Marek Sacha */ $lang['menu'] = 'Správa pluginů'; $lang['download'] = 'Stáhnout a instalovat plugin'; -- cgit v1.2.3 From c1fe9e9f75eb20bf30cde6e67fe7ef9f664f4cdd Mon Sep 17 00:00:00 2001 From: Florian Gaub Date: Mon, 8 Mar 2010 18:30:08 +0100 Subject: French language update --- lib/plugins/plugin/lang/fr/admin_plugin.txt | 4 +-- lib/plugins/plugin/lang/fr/lang.php | 49 +++++++++++++++-------------- 2 files changed, 27 insertions(+), 26 deletions(-) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/fr/admin_plugin.txt b/lib/plugins/plugin/lang/fr/admin_plugin.txt index 28696ebb4..c43e44684 100644 --- a/lib/plugins/plugin/lang/fr/admin_plugin.txt +++ b/lib/plugins/plugin/lang/fr/admin_plugin.txt @@ -1,4 +1,4 @@ -====== Gestion des plugins ====== +====== Gestion des modules externes ====== -Cette page vous permet de gérer tout ce qui a trait aux [[doku>plugins|plugins]] de DokuWiki. Pour télécharger et installer un plugin, le répertoire plugin doit être accessible en écriture pour le serveur Web. +Cette page vous permet de gérer tout ce qui a trait aux [[doku>plugins|modules externes]] de DokuWiki. Pour télécharger et installer un module, le répertoire « ''plugin'' » doit être accessible en écriture pour le serveur Web. diff --git a/lib/plugins/plugin/lang/fr/lang.php b/lib/plugins/plugin/lang/fr/lang.php index eec17cdbb..4e4bca214 100644 --- a/lib/plugins/plugin/lang/fr/lang.php +++ b/lib/plugins/plugin/lang/fr/lang.php @@ -13,14 +13,15 @@ * @author olivier duperray * @author Vincent Feltz * @author Philippe Bajoit + * @author Florian Gaub */ -$lang['menu'] = 'Gestion des module externes'; +$lang['menu'] = 'Gestion des modules externes'; $lang['download'] = 'Télécharger et installer un nouveau module'; -$lang['manage'] = 'Plugins installés'; -$lang['btn_info'] = 'info'; -$lang['btn_update'] = 'rafraîchir'; -$lang['btn_delete'] = 'effacer'; -$lang['btn_settings'] = 'paramètres'; +$lang['manage'] = 'Modules installés'; +$lang['btn_info'] = 'Info'; +$lang['btn_update'] = 'Mettre à jour'; +$lang['btn_delete'] = 'Supprimer'; +$lang['btn_settings'] = 'Paramètres'; $lang['btn_download'] = 'Télécharger'; $lang['btn_enable'] = 'Enregistrer'; $lang['url'] = 'URL'; @@ -28,33 +29,33 @@ $lang['installed'] = 'Installé :'; $lang['lastupdate'] = 'Dernière mise à jour :'; $lang['source'] = 'Source :'; $lang['unknown'] = 'inconnu'; -$lang['updating'] = 'Mise à jour...'; -$lang['updated'] = 'Plugin %s mis à jour avec succès'; +$lang['updating'] = 'Mise à jour…'; +$lang['updated'] = 'Modules %s mis à jour avec succès'; $lang['updates'] = 'Les modules suivants ont été mis à jour avec succès'; $lang['update_none'] = 'Aucune mise à jour n\'a été trouvée.'; -$lang['deleting'] = 'Suppression...'; -$lang['deleted'] = 'Plugin %s supprimé.'; -$lang['downloading'] = 'Téléchargement...'; -$lang['downloaded'] = 'Plugin %s installé avec succès'; +$lang['deleting'] = 'Suppression…'; +$lang['deleted'] = 'Module %s supprimé.'; +$lang['downloading'] = 'Téléchargement…'; +$lang['downloaded'] = 'Module %s installé avec succès'; $lang['downloads'] = 'Les modules suivants ont été installés avec succès :'; $lang['download_none'] = 'Aucun module n\'était trouvé, ou un problème inconnu est survenu durant le téléchargement et l\'installation.'; -$lang['plugin'] = 'Plugin :'; +$lang['plugin'] = 'Module :'; $lang['components'] = 'Composants'; $lang['noinfo'] = 'Ce module externe n\'a transmis aucune information, il pourrait être invalide.'; $lang['name'] = 'Nom :'; $lang['date'] = 'Date :'; $lang['type'] = 'Type :'; -$lang['desc'] = 'Description :'; +$lang['desc'] = 'Description :'; $lang['author'] = 'Auteur :'; -$lang['www'] = 'Web :'; +$lang['www'] = 'Site web :'; $lang['error'] = 'Une erreur inconnue est survenue.'; -$lang['error_download'] = 'Impossible de télécharger le fichier du plugin: %s'; -$lang['error_badurl'] = 'URL suspecte - impossible de déterminer le nom du fichier à partir de l\'URL'; +$lang['error_download'] = 'Impossible de télécharger le fichier du module : %s'; +$lang['error_badurl'] = 'URL suspecte. Impossible de déterminer le nom du fichier à partir de l\'URL'; $lang['error_dircreate'] = 'Impossible de créer le répertoire temporaire pour réceptionner le téléchargement'; -$lang['error_decompress'] = 'Le gestionnaire de plugin a été incapable de décompresser le fichier téléchargé. Ceci peut être le résultat d\'un mauvais téléchargement, auquel cas vous devriez réessayer ; ou bien le format de compression est inconnu, auquel cas vous devez télécharger et installer le plugin manuellement.'; -$lang['error_copy'] = 'Une erreur de copie est survenue lors de l\'installation des fichiers du plugin %s: votre disque est peut-être plein ou les droits d\'accès au fichier sont incorrects. Il a pu en résulter une installation partielle du plugin rendant votre installation du wiki instable.'; -$lang['error_delete'] = 'Une erreur est survenue à la suppression du plugin %s. La raison la plus probable est l\'insuffisance des droits sur les fichiers ou le répertoire.'; -$lang['enabled'] = 'Plugin %s activé.'; -$lang['notenabled'] = 'Le plugin %s n\'a pas pu être activé, vérifiez le fichier des permissions.'; -$lang['disabled'] = 'Plugin %s désactivé.'; -$lang['notdisabled'] = 'Le plugin %s n\'a pas pu être désactivé, vérifiez le fichier des permissions.'; +$lang['error_decompress'] = 'Le gestionnaire de modules externes a été incapable de décompresser le fichier téléchargé. Ceci peut être le résultat d\'un mauvais téléchargement, auquel cas vous devriez réessayer ; ou bien le format de compression est inconnu, auquel cas vous devez télécharger et installer le module manuellement.'; +$lang['error_copy'] = 'Une erreur de copie est survenue lors de l\'installation des fichiers du module %s : votre disque est peut-être plein ou les droits d\'accès au fichier sont incorrects. Il a pu en résulter une installation partielle du module rendant votre installation du wiki instable.'; +$lang['error_delete'] = 'Une erreur est survenue à la suppression du module %s. La raison la plus probable est l\'insuffisance des droits sur les fichiers ou le répertoire.'; +$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.'; -- cgit v1.2.3 From 90a0f2e151531db5b76c3d1c340f70da35922456 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Med=C3=BAlio?= Date: Mon, 8 Mar 2010 18:32:50 +0100 Subject: Galician language update --- lib/plugins/plugin/lang/gl/admin_plugin.txt | 4 +-- lib/plugins/plugin/lang/gl/lang.php | 48 ++++++++++++++--------------- 2 files changed, 25 insertions(+), 27 deletions(-) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/gl/admin_plugin.txt b/lib/plugins/plugin/lang/gl/admin_plugin.txt index 481cb49a6..216285a8d 100644 --- a/lib/plugins/plugin/lang/gl/admin_plugin.txt +++ b/lib/plugins/plugin/lang/gl/admin_plugin.txt @@ -1,3 +1,3 @@ -====== Xestión de plugins ====== +====== Xestión de Extensións ====== -Nesta páxina pode xestionar todas as accións posíbeis cos [[doku>plugins|plugins]] do DokuWiki. Para poder descargar e instalar un plugin, o seu cartafol de plugins debe ser escribíbel polo servidor web. +Nesta páxina podes xestionar todas as accións posíbeis cos [[doku>plugins|extensións]] do DokuWiki. Para poder descargar e instalar unha extensión, o teu cartafol de extensións debe ser escribíbel polo servidor web. diff --git a/lib/plugins/plugin/lang/gl/lang.php b/lib/plugins/plugin/lang/gl/lang.php index a4fd98594..157911a62 100644 --- a/lib/plugins/plugin/lang/gl/lang.php +++ b/lib/plugins/plugin/lang/gl/lang.php @@ -2,14 +2,12 @@ /** * Galicianlanguage file * - * @author CiberIrmandade da Fala - * @author Tagen Ata - * @author Leandro Regueiro + * @author Medúlio */ -$lang['menu'] = 'Xestionar os plugins'; -$lang['download'] = 'Descargar e instalar un plugin novo'; -$lang['manage'] = 'Plugins instalados'; -$lang['btn_info'] = 'información'; +$lang['menu'] = 'Xestionar Extensións'; +$lang['download'] = 'Descargar e instalar unha nova extensión'; +$lang['manage'] = 'Extensións Instalados'; +$lang['btn_info'] = 'info'; $lang['btn_update'] = 'actualización'; $lang['btn_delete'] = 'eliminar'; $lang['btn_settings'] = 'configuración'; @@ -21,18 +19,18 @@ $lang['lastupdate'] = 'Última actualización:'; $lang['source'] = 'Fonte:'; $lang['unknown'] = 'descoñecido'; $lang['updating'] = 'Actualizando...'; -$lang['updated'] = 'Actualizouse correctamente o plugin %s'; -$lang['updates'] = 'Actualizáronse correctamente os seguintes plugins'; -$lang['update_none'] = 'Non se encontraron actualizacións.'; +$lang['updated'] = 'Actualizouse correctamente a extensión %s'; +$lang['updates'] = 'Actualizáronse correctamente as seguintes extensións'; +$lang['update_none'] = 'Non se atoparon actualizacións.'; $lang['deleting'] = 'Eliminando...'; -$lang['deleted'] = 'Eliminado o plugin %s.'; +$lang['deleted'] = 'Eliminado a extensión %s.'; $lang['downloading'] = 'Descargando...'; -$lang['downloaded'] = 'Instalouse correctamente o plugin %s'; -$lang['downloads'] = 'Instaláronse correctamente os seguintes plugins:'; -$lang['download_none'] = 'Non se encontraron plugins ou aconteceu un problema descoñecido durante a descarga e instalación.'; -$lang['plugin'] = 'Plugin:'; +$lang['downloaded'] = 'Instalouse correctamente a extensión %s'; +$lang['downloads'] = 'Instaláronse correctamente as seguintes extensións:'; +$lang['download_none'] = 'Non se atoparon extensións, ou aconteceu un problema descoñecido durante a descarga e instalación.'; +$lang['plugin'] = 'Extensión:'; $lang['components'] = 'Compoñentes'; -$lang['noinfo'] = 'Este plugin non devolveu información ningunha; pode que non sexa válido.'; +$lang['noinfo'] = 'Esta extensión non devolveu información ningunha. Pode que non sexa válida.'; $lang['name'] = 'Nome:'; $lang['date'] = 'Data:'; $lang['type'] = 'Tipo:'; @@ -40,13 +38,13 @@ $lang['desc'] = 'Descrición:'; $lang['author'] = 'Autor:'; $lang['www'] = 'Web:'; $lang['error'] = 'Houbo un erro descoñecido.'; -$lang['error_download'] = 'Non se puido descargar o ficheiro de plugin: %s'; -$lang['error_badurl'] = 'O URL é posibelmente incorrecto - non se puido determinar o nome do ficheiro mediante o URL'; +$lang['error_download'] = 'Non se puido descargar o arquivo de extensión: %s'; +$lang['error_badurl'] = 'URL posiblemente incorrecto - non se puido determinar o nome do arquivo mediante o URL'; $lang['error_dircreate'] = 'Non se puido crear un cartafol temporal para recibir a descarga'; -$lang['error_decompress'] = 'O xestor de plugins non foi quen de descomprimir o ficheiro descargado. Isto podería estar causado por unha descarga danada e en tal caso poderíalo tentar de novo; pode tamén que o formato de compresión sexa descoñecido, co que precisará descargar e instalar o plugin de modo manual.'; -$lang['error_copy'] = 'Houbo un erro de copia do ficheiro ao tentar instalar o plugin %s: pode que o disco estea cheo ou que os permisos de acceso sexan incorrectos. Isto podería dar lugar a unha instalación parcial do plugin e facer que a súa instalación do wiki se volva inestábel.'; -$lang['error_delete'] = 'Houbo un erro ao tentar eliminar o plugin %s. O máis probábel é que sexa causado por permisos de acceso insuficientes ao ficheiro ou directorio.'; -$lang['enabled'] = 'O plugin %s foi activado.'; -$lang['notenabled'] = 'O plugin %s non puido ser activado; verifique os permisos do ficheiro.'; -$lang['disabled'] = 'O plugin %s foi desactivado.'; -$lang['notdisabled'] = 'O plugin %s non puido ser desactivado; verifique os permisos do ficheiro.'; +$lang['error_decompress'] = 'O xestor de extensións non foi quen de descomprimir o arquivo descargado. Isto podería ser causado por unha descarga corrupta, polo que, en tal caso, podes tentalo de novo; ou pode que o formato de compresión sexa descoñecido, co que precisarás descargar e instalar a extensión de xeito manual.'; +$lang['error_copy'] = 'Houbo un erro de copia de arquivo ao tentar instalar a extensión %s: pode que o disco estea cheo ou que os permisos de acceso sexan incorrectos. Isto podería dar lugar a unha instalación parcial da extensión e facer que a túa instalación do wiki se volva inestable.'; +$lang['error_delete'] = 'Houbo un erro ao tentar eliminar a extensión %s. O máis probable é que sexa causado por permisos de acceso ao arquivo ou directorio insuficientes.'; +$lang['enabled'] = 'Extensión %s activado.'; +$lang['notenabled'] = 'A extensión %s non puido ser activada, comproba os permisos de arquivo.'; +$lang['disabled'] = 'Extensión %s desactivada.'; +$lang['notdisabled'] = 'A extensión %s non puido ser desactivada, comproba os permisos de arquivo.'; -- cgit v1.2.3 From e0415e22d2d7d48385734c5c4a8e1770c36426c9 Mon Sep 17 00:00:00 2001 From: Christopher Smith Date: Tue, 16 Mar 2010 11:20:53 +0000 Subject: Make constants in TarLib.class.php class constants The constants are required by the class constructor, which effectively means before the autoloader is triggered. This change fixes that issue. --- lib/plugins/plugin/classes/ap_download.class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/classes/ap_download.class.php b/lib/plugins/plugin/classes/ap_download.class.php index 6ad048d72..beba0ab07 100644 --- a/lib/plugins/plugin/classes/ap_download.class.php +++ b/lib/plugins/plugin/classes/ap_download.class.php @@ -199,13 +199,13 @@ class ap_download extends ap_manage { if (in_array($ext, array('tar','bz','gz'))) { switch($ext){ case 'bz': - $compress_type = COMPRESS_BZIP; + $compress_type = TarLib::COMPRESS_BZIP; break; case 'gz': - $compress_type = COMPRESS_GZIP; + $compress_type = TarLib::COMPRESS_GZIP; break; default: - $compress_type = COMPRESS_NONE; + $compress_type = TarLib::COMPRESS_NONE; } $tar = new TarLib($file, $compress_type); @@ -215,7 +215,7 @@ class ap_download extends ap_manage { } return false; } - $ok = $tar->Extract(FULL_ARCHIVE, $target, '', 0777); + $ok = $tar->Extract(TarLib::FULL_ARCHIVE, $target, '', 0777); if($ok<1){ if($conf['allowdebug']){ -- cgit v1.2.3 From 8d557116a19d366c0f00592e4fa6250017295105 Mon Sep 17 00:00:00 2001 From: maros Date: Wed, 17 Mar 2010 20:13:22 +0100 Subject: Polish language update --- lib/plugins/plugin/lang/pl/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/pl/lang.php b/lib/plugins/plugin/lang/pl/lang.php index b5f813f03..d97dafc0b 100644 --- a/lib/plugins/plugin/lang/pl/lang.php +++ b/lib/plugins/plugin/lang/pl/lang.php @@ -10,6 +10,7 @@ * @author Sławomir Boczek * @author sleshek@wp.pl * @author Leszek Stachowski + * @author maros */ $lang['menu'] = 'Menadżer wtyczek'; $lang['download'] = 'Ściągnij i zainstaluj nową wtyczkę'; -- cgit v1.2.3 From 9d706dd2a380574a0f89b771c7b3fd9a77de9dc7 Mon Sep 17 00:00:00 2001 From: Robert Bogenschneider Date: Mon, 22 Mar 2010 20:58:43 +0100 Subject: German language update --- lib/plugins/plugin/lang/de/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/de/lang.php b/lib/plugins/plugin/lang/de/lang.php index ff59cedce..e981f4a60 100644 --- a/lib/plugins/plugin/lang/de/lang.php +++ b/lib/plugins/plugin/lang/de/lang.php @@ -13,6 +13,7 @@ * @author Dirk Einecke * @author Blitzi94@gmx.de * @author Robert Bogenschneider + * @author Robert Bogenschneider */ $lang['menu'] = 'Plugins verwalten'; $lang['download'] = 'Neues Plugin herunterladen und installieren'; -- cgit v1.2.3 From c0c4ef9875d90979ed9d31ea1b6f2866aecaf565 Mon Sep 17 00:00:00 2001 From: Rasmus Kinnerup Date: Fri, 2 Apr 2010 11:22:46 +0200 Subject: Danish language update --- lib/plugins/plugin/lang/da/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/da/lang.php b/lib/plugins/plugin/lang/da/lang.php index 98d9f365e..1248c9a9c 100644 --- a/lib/plugins/plugin/lang/da/lang.php +++ b/lib/plugins/plugin/lang/da/lang.php @@ -9,6 +9,7 @@ * @author Harith * @author Daniel Ejsing-Duun * @author Erik Bjørn Pedersen + * @author rasmus@kinnerup.com */ $lang['menu'] = 'Håndter udvidelser'; $lang['download'] = 'Hent og tilføj ny udvidelse'; -- cgit v1.2.3 From 94f1f78b9d937c58369e0346233ea8dbf40a0cca Mon Sep 17 00:00:00 2001 From: Usama Akkad Date: Thu, 8 Apr 2010 11:45:05 +0200 Subject: Arabic language update --- lib/plugins/plugin/lang/ar/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/ar/lang.php b/lib/plugins/plugin/lang/ar/lang.php index cda6f4a63..dbbcbd07a 100644 --- a/lib/plugins/plugin/lang/ar/lang.php +++ b/lib/plugins/plugin/lang/ar/lang.php @@ -3,6 +3,7 @@ * Arabic language file * * @author Yaman Hokan + * @author Usama Akkad */ $lang['btn_delete'] = 'حذف'; $lang['btn_settings'] = 'خيارات'; -- cgit v1.2.3 From 28a7a6433920fcafa4c345badb9b4a185932fbe9 Mon Sep 17 00:00:00 2001 From: Martin Michalek Date: Fri, 9 Apr 2010 08:24:07 +0200 Subject: Slovak language update --- lib/plugins/plugin/lang/sk/lang.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/sk/lang.php b/lib/plugins/plugin/lang/sk/lang.php index cf89200c5..c04ac3af6 100644 --- a/lib/plugins/plugin/lang/sk/lang.php +++ b/lib/plugins/plugin/lang/sk/lang.php @@ -22,15 +22,15 @@ $lang['lastupdate'] = 'Aktualizovaný:'; $lang['source'] = 'Zdroj:'; $lang['unknown'] = 'neznámy'; $lang['updating'] = 'Aktualizuje sa ...'; -$lang['updated'] = 'Plugin %s bol úspešne zaktualizovaný'; -$lang['updates'] = 'Nasledujúce pluginy bol úspešne zaktualizované:'; +$lang['updated'] = 'Plugin %s bol úspešne aktualizovaný'; +$lang['updates'] = 'Nasledujúce pluginy bol úspešne aktualizované:'; $lang['update_none'] = 'Neboli nájdené žiadne aktualizácie.'; $lang['deleting'] = 'Vymazáva sa ...'; $lang['deleted'] = 'Plugin %s bol zmazaný.'; $lang['downloading'] = 'Sťahuje sa ...'; $lang['downloaded'] = 'Plugin %s bol úspešne stiahnutý'; $lang['downloads'] = 'Nasledujúce pluginy bol úspešne stiahnuté:'; -$lang['download_none'] = 'Neboli nájdené žiadne pluginy, alebo nastal neznámy problém počas sťahovania a inštalácie pluginov.'; +$lang['download_none'] = 'Neboli nájdené žiadne pluginy alebo nastal neznámy problém počas sťahovania a inštalácie pluginov.'; $lang['plugin'] = 'Plugin:'; $lang['components'] = 'Súčasti'; $lang['noinfo'] = 'Tento plugin neobsahuje žiadne informácie, je možné, že je chybný.'; @@ -44,10 +44,10 @@ $lang['error'] = 'Nastala neznáma chyba.'; $lang['error_download'] = 'Nie je možné stiahnuť súbor pluginu: %s'; $lang['error_badurl'] = 'Pravdepodobne zlá url adresa - nie je možné z nej určiť meno súboru'; $lang['error_dircreate'] = 'Nie je možné vytvoriť dočasný adresár pre uloženie sťahovaného súboru'; -$lang['error_decompress'] = 'Správca pluginov nedokáže dekomprimovať stiahnutý súbor. Môže to byť dôsledok zlého stiahnutia, v tom prípade to skúste znovu, alebo môže ísť o neznámy formát súboru, v tom prípade musítestiahnuť a nainštalovať plugin manuálne.'; -$lang['error_copy'] = 'Nastala chyba kopírovania súboru počas pokusu inštalovať súbory pluginu%s: disk môže byť plný, alebo prístupové práva k súboru môžu byť nesprávne. Toto môže mať za následok čiastočne nainštalovanie pluginu a nestabilitu vašej DokuWiki.'; -$lang['error_delete'] = 'Nastala chyba počas pokusu o zmazanie pluginu %s. Najpravdepodobnejším dôvodom môžu byť nedostatočné prístupové práva pre súbor, alebo adresár'; +$lang['error_decompress'] = 'Správca pluginov nedokáže dekomprimovať stiahnutý súbor. Môže to byť dôsledok zlého stiahnutia, v tom prípade to skúste znovu, alebo môže ísť o neznámy formát súboru, v tom prípade musíte stiahnuť a nainštalovať plugin manuálne.'; +$lang['error_copy'] = 'Nastala chyba kopírovania súboru počas pokusu inštalovať súbory pluginu%s: disk môže byť plný alebo prístupové práva k súboru môžu byť nesprávne. Toto môže mať za následok čiastočne nainštalovanie pluginu a nestabilitu vašej DokuWiki.'; +$lang['error_delete'] = 'Nastala chyba počas pokusu o zmazanie pluginu %s. Najpravdepodobnejším dôvodom môžu byť nedostatočné prístupové práva pre súbor alebo adresár'; $lang['enabled'] = 'Plugin %s aktivovaný.'; -$lang['notenabled'] = 'Plugin %s nemôže byť aktivovaný, skotrolujte prístupové práva.'; +$lang['notenabled'] = 'Plugin %s nemôže byť aktivovaný, skontrolujte prístupové práva.'; $lang['disabled'] = 'Plugin %s deaktivovaný.'; -$lang['notdisabled'] = 'Plugin %s nemôže byť deaktivovaný, skotrolujte prístupové práva.'; +$lang['notdisabled'] = 'Plugin %s nemôže byť deaktivovaný, skontrolujte prístupové práva.'; -- cgit v1.2.3 From 767b2cc2194fe671edafa2a48ea0be6fe9da30cd Mon Sep 17 00:00:00 2001 From: Martin Michalek Date: Sat, 10 Apr 2010 14:19:26 +0200 Subject: Slovak language update --- lib/plugins/plugin/lang/sk/lang.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/sk/lang.php b/lib/plugins/plugin/lang/sk/lang.php index c04ac3af6..a10bc0fe4 100644 --- a/lib/plugins/plugin/lang/sk/lang.php +++ b/lib/plugins/plugin/lang/sk/lang.php @@ -8,7 +8,7 @@ * @author Martin Michalek */ $lang['menu'] = 'Správa pluginov'; -$lang['download'] = 'Stiahnuť a nainštalovať plugin'; +$lang['download'] = 'Stiahnuť a nainštalovať plugin'; $lang['manage'] = 'Nainštalované pluginy'; $lang['btn_info'] = 'info'; $lang['btn_update'] = 'aktualizovať'; -- cgit v1.2.3 From acca0b77793187b25d85d39e7ed7d6194f8aa55e Mon Sep 17 00:00:00 2001 From: Usama Akkad Date: Thu, 15 Apr 2010 08:36:26 +0200 Subject: Arabic language update --- lib/plugins/plugin/lang/ar/admin_plugin.txt | 4 +++ lib/plugins/plugin/lang/ar/lang.php | 50 ++++++++++++++++++++++------- 2 files changed, 42 insertions(+), 12 deletions(-) create mode 100644 lib/plugins/plugin/lang/ar/admin_plugin.txt (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/ar/admin_plugin.txt b/lib/plugins/plugin/lang/ar/admin_plugin.txt new file mode 100644 index 000000000..1aeaf13ad --- /dev/null +++ b/lib/plugins/plugin/lang/ar/admin_plugin.txt @@ -0,0 +1,4 @@ +====== إدارة الإضافات ====== + +على هذه الصفحة يمكنك إدارة كل ما يتعلق ب[[doku>plugins|إضافات]] دوكي ويكي. لتتمكن من تنزيل و تثبيت الإضافات يجب أن يكون دليل الاضافات قابلا للكتابة من خادوم الوب. + diff --git a/lib/plugins/plugin/lang/ar/lang.php b/lib/plugins/plugin/lang/ar/lang.php index dbbcbd07a..55987881c 100644 --- a/lib/plugins/plugin/lang/ar/lang.php +++ b/lib/plugins/plugin/lang/ar/lang.php @@ -5,21 +5,47 @@ * @author Yaman Hokan * @author Usama Akkad */ -$lang['btn_delete'] = 'حذف'; -$lang['btn_settings'] = 'خيارات'; -$lang['btn_download'] = 'تحميل'; -$lang['btn_enable'] = 'حفظ'; +$lang['menu'] = 'إدارة الملحقات'; +$lang['download'] = 'نزّل و ثبت اضافة جديدة'; +$lang['manage'] = 'الإضافات المثبتة'; +$lang['btn_info'] = 'معلومات'; +$lang['btn_update'] = 'حدّث'; +$lang['btn_delete'] = 'احذف'; +$lang['btn_settings'] = 'إعدادات'; +$lang['btn_download'] = 'نزل'; +$lang['btn_enable'] = 'احفظ'; $lang['url'] = 'رابط'; -$lang['source'] = 'مصدر'; -$lang['unknown'] = 'غير معروف'; -$lang['updating'] = 'يتم التحديث ...'; -$lang['update_none'] = 'لم يتم العثور على تحديثات'; -$lang['deleting'] = 'يتم الحذف ... '; -$lang['downloading'] = 'يتم التحميل .. '; +$lang['installed'] = 'ثُبتت:'; +$lang['lastupdate'] = 'آخر تحديث:'; +$lang['source'] = 'المصدر:'; +$lang['unknown'] = 'مجهول'; +$lang['updating'] = 'تُحدث ...'; +$lang['updated'] = 'الاضافة %s حُدثت بنجاح'; +$lang['updates'] = 'الاضافة التالية حُدثت بنجاح'; +$lang['update_none'] = 'لا يوجد تحديثات.'; +$lang['deleting'] = 'تُحذف ... '; +$lang['deleted'] = 'حُذفت الإضافة %s.'; +$lang['downloading'] = 'يُنزل ...'; +$lang['downloaded'] = 'الاضافة %s ثبتت بنجاح'; +$lang['downloads'] = 'الاضافة التالية ثبتت بنجاح:'; +$lang['download_none'] = 'لم يجد إضافة، أو ان هناك مشكلة غير معروفة أثناء التنزيل و التثبيت.'; +$lang['plugin'] = 'الإضافة:'; +$lang['components'] = 'المكون:'; +$lang['noinfo'] = 'لم تعطي الإضافة أية معلومة، قد تكون معطوبة.'; $lang['name'] = 'الاسم :'; $lang['date'] = 'التاريخ :'; $lang['type'] = 'النوع :'; $lang['desc'] = 'الوصف :'; $lang['author'] = 'الكاتب :'; -$lang['www'] = 'شبكة :'; -$lang['error'] = 'ظهر خطأ غير معروف .'; +$lang['www'] = 'الشابكة :'; +$lang['error'] = 'حث خطأ مجهول.'; +$lang['error_download'] = 'تعذر تنزيل ملف الاضافة: %s'; +$lang['error_badurl'] = 'اشتبه بعنوان خاطئ - تعذر الحصول على الاسم من العنوان'; +$lang['error_dircreate'] = 'تعذر إنشاء مجلد مؤقت للتنزيل'; +$lang['error_decompress'] = 'تعذر على مدير الاضافات فك ضغط الملف المُنزّل. قد يكون ذلك نتيجة لتنزيل خاطئ، في هذه الحالة أعد المحاولة; أو ان هيئة الضغط غير معروفة، في هذه الحالة عليك تنزيل و تثبيت الاضافة يدويا.'; +$lang['error_copy'] = 'كان هناك خطأ في نسخ ملف عند محاولة تثبيت ملفات للإضافة %s: قد يكون القرص ممتلئا أو أن صلاحيات الوصول للملف خاطئة. لربما نتج عن ذلك اضافة مثبته جزئيا تجعل نظام الويكي غير ثابت.'; +$lang['error_delete'] = 'كان هناك خطأ عند محاولة حذف الاضافة %s. السبب الاكثر احتمالا هو صلاحيات غير كافية على الملف أو المجلد'; +$lang['enabled'] = 'الاضافة %s فُعلت. '; +$lang['notenabled'] = 'تعذر تفعيل الاضافة %s، تحقق من اذونات الملف.'; +$lang['disabled'] = 'عُطلت الإضافة %s.'; +$lang['notdisabled'] = 'تعذر تعطيل الإضافة %s، تحقق من اذونات الملف.'; -- cgit v1.2.3 From 0d9c4a0b2a392fa4eff32664d37fea6b2d528060 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Grzegorz=20Wid=C5=82a?= Date: Sun, 18 Apr 2010 13:10:07 +0200 Subject: Polish language update --- lib/plugins/plugin/lang/pl/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/pl/lang.php b/lib/plugins/plugin/lang/pl/lang.php index d97dafc0b..d4ccc7751 100644 --- a/lib/plugins/plugin/lang/pl/lang.php +++ b/lib/plugins/plugin/lang/pl/lang.php @@ -11,6 +11,7 @@ * @author sleshek@wp.pl * @author Leszek Stachowski * @author maros + * @author Grzegorz Widła */ $lang['menu'] = 'Menadżer wtyczek'; $lang['download'] = 'Ściągnij i zainstaluj nową wtyczkę'; -- cgit v1.2.3 From c275533eba3389cf4c186d995947aedfff356177 Mon Sep 17 00:00:00 2001 From: Mauro Javier Giamberardino Fernandez Date: Wed, 19 May 2010 19:44:29 +0200 Subject: Spanish language update --- lib/plugins/plugin/lang/es/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/es/lang.php b/lib/plugins/plugin/lang/es/lang.php index 33264ddf3..d26218b2d 100644 --- a/lib/plugins/plugin/lang/es/lang.php +++ b/lib/plugins/plugin/lang/es/lang.php @@ -18,6 +18,7 @@ * @author Daniel Castro Alvarado * @author Fernando J. Gómez * @author Victor Castelan + * @author Mauro Javier Giamberardino */ $lang['menu'] = 'Administración de Plugins'; $lang['download'] = 'Descargar e instalar un nuevo plugin'; -- cgit v1.2.3 From b625808123f9b91b9803f98f818d5745bd7692cc Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Sun, 13 Jun 2010 11:40:31 +0200 Subject: msgs are saved in send_redirect now, less code duplication needed --- lib/plugins/plugin/classes/ap_manage.class.php | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/classes/ap_manage.class.php b/lib/plugins/plugin/classes/ap_manage.class.php index 297764ebb..eb5348672 100644 --- a/lib/plugins/plugin/classes/ap_manage.class.php +++ b/lib/plugins/plugin/classes/ap_manage.class.php @@ -113,23 +113,14 @@ class ap_manage { * Refresh plugin list */ function refresh() { - global $MSG,$config_cascade; - - //are there any undisplayed messages? keep them in session for display - if (isset($MSG) && count($MSG)){ - //reopen session, store data and close session again - @session_start(); - $_SESSION[DOKU_COOKIE]['msg'] = $MSG; - session_write_close(); - } + global $config_cascade; // expire dokuwiki caches // touching local.php expires wiki page, JS and CSS caches @touch(reset($config_cascade['main']['local'])); // update latest plugin date - FIXME - header('Location: '.wl($ID).'?do=admin&page=plugin'); - exit(); + send_redirect(wl($ID,array('do'=>'admin','page'=>'plugin'),true)); } /** -- cgit v1.2.3 From e53f9e72a48912e662dde20d7dceca74a022dcdf Mon Sep 17 00:00:00 2001 From: Marijn Hofstra Date: Tue, 22 Jun 2010 19:02:33 +0200 Subject: Dutch language update --- lib/plugins/plugin/lang/nl/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/nl/lang.php b/lib/plugins/plugin/lang/nl/lang.php index f420865c1..024fe546e 100644 --- a/lib/plugins/plugin/lang/nl/lang.php +++ b/lib/plugins/plugin/lang/nl/lang.php @@ -9,6 +9,7 @@ * @author Danny Rotsaert * @author Marijn Hofstra hofstra.m@gmail.com * @author Matthias Carchon webmaster@c-mattic.be + * @author Marijn Hofstra */ $lang['menu'] = 'Plugins beheren'; $lang['download'] = 'Download en installeer een nieuwe plugin'; -- cgit v1.2.3 From def4baf24186bf30d4ba5ea726fb7c8391d8b43f Mon Sep 17 00:00:00 2001 From: Samuel Dorsaz Date: Tue, 22 Jun 2010 19:03:25 +0200 Subject: French language update --- lib/plugins/plugin/lang/fr/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/fr/lang.php b/lib/plugins/plugin/lang/fr/lang.php index 4e4bca214..79080f5f3 100644 --- a/lib/plugins/plugin/lang/fr/lang.php +++ b/lib/plugins/plugin/lang/fr/lang.php @@ -14,6 +14,7 @@ * @author Vincent Feltz * @author Philippe Bajoit * @author Florian Gaub + * @author Samuel Dorsaz samuel.dorsaz@novelion.net */ $lang['menu'] = 'Gestion des modules externes'; $lang['download'] = 'Télécharger et installer un nouveau module'; -- cgit v1.2.3 From 1a93c67cff4a7b3e30186141cd17f4ba6e113e84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szab=C3=B3=20D=C3=A1vid?= Date: Sun, 27 Jun 2010 10:38:10 +0200 Subject: Hungarian language update --- lib/plugins/plugin/lang/hu/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/hu/lang.php b/lib/plugins/plugin/lang/hu/lang.php index 9c9c0796f..06a5e00c6 100644 --- a/lib/plugins/plugin/lang/hu/lang.php +++ b/lib/plugins/plugin/lang/hu/lang.php @@ -5,6 +5,7 @@ * @author Sandor TIHANYI * @author Siaynoq Mage * @author schilling.janos@gmail.com + * @author Szabó Dávid (szabo.david@gyumolcstarhely.hu) */ $lang['menu'] = 'Bővítménykezelő'; $lang['download'] = 'Új bővítmény letöltése és telepítése'; -- cgit v1.2.3 From e03f8da34f265d1085e18bec8aa6cd627179cbef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Kj=C3=A6r=20Pedersen?= Date: Fri, 2 Jul 2010 21:19:56 +0200 Subject: Danish language update --- lib/plugins/plugin/lang/da/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/da/lang.php b/lib/plugins/plugin/lang/da/lang.php index 1248c9a9c..841d246df 100644 --- a/lib/plugins/plugin/lang/da/lang.php +++ b/lib/plugins/plugin/lang/da/lang.php @@ -10,6 +10,7 @@ * @author Daniel Ejsing-Duun * @author Erik Bjørn Pedersen * @author rasmus@kinnerup.com + * @author Michael Pedersen subben@gmail.com */ $lang['menu'] = 'Håndter udvidelser'; $lang['download'] = 'Hent og tilføj ny udvidelse'; -- cgit v1.2.3 From 0271153bc37bcbf6fca13a371b9f98eda8ee41f0 Mon Sep 17 00:00:00 2001 From: Georgios Petsagourakis Date: Mon, 12 Jul 2010 21:23:05 +0200 Subject: Greek language update --- lib/plugins/plugin/lang/el/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/el/lang.php b/lib/plugins/plugin/lang/el/lang.php index 7715667a3..d28a04ae2 100644 --- a/lib/plugins/plugin/lang/el/lang.php +++ b/lib/plugins/plugin/lang/el/lang.php @@ -10,6 +10,7 @@ * @author Thanos Massias * @author Αθανάσιος Νταής * @author Konstantinos Koryllos + * @author George Petsagourakis */ $lang['menu'] = 'Διαχείριση Επεκτάσεων'; $lang['download'] = 'Κατεβάστε και εγκαταστήστε μια νέα επέκταση (plugin)'; -- cgit v1.2.3 From 88b4123b3d96037c6d1ffe48386c507a0276cabc Mon Sep 17 00:00:00 2001 From: Ulrikhe Lukoie Date: Mon, 12 Jul 2010 21:24:46 +0200 Subject: Ukrainian language update --- lib/plugins/plugin/lang/uk/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/uk/lang.php b/lib/plugins/plugin/lang/uk/lang.php index 5746cfb7d..c5bab816f 100644 --- a/lib/plugins/plugin/lang/uk/lang.php +++ b/lib/plugins/plugin/lang/uk/lang.php @@ -8,6 +8,7 @@ * @author okunia@gmail.com * @author Oleksandr Kunytsia * @author Uko uko@uar.net + * @author Ulrikhe Lukoie .com */ $lang['menu'] = 'Керування доданками'; $lang['download'] = 'Завантажити та встановити новий доданок'; -- cgit v1.2.3 From c0e46ee6bf1e41a839f43dda4bb3746534c55b5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Lefty=20=C5=A0koda?= Date: Mon, 12 Jul 2010 22:14:03 +0200 Subject: Czech language update --- lib/plugins/plugin/lang/cs/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/cs/lang.php b/lib/plugins/plugin/lang/cs/lang.php index bd1380143..c15a5ca21 100644 --- a/lib/plugins/plugin/lang/cs/lang.php +++ b/lib/plugins/plugin/lang/cs/lang.php @@ -8,6 +8,7 @@ * @author Bohumir Zamecnik * @author tomas@valenta.cz * @author Marek Sacha + * @author Lefty */ $lang['menu'] = 'Správa pluginů'; $lang['download'] = 'Stáhnout a instalovat plugin'; -- cgit v1.2.3 From f62100e2e79ba5106f2777c8e9c5f5e35c593d40 Mon Sep 17 00:00:00 2001 From: Aleksandr Selivanov Date: Fri, 16 Jul 2010 08:59:39 +0200 Subject: Russian language update --- lib/plugins/plugin/lang/ru/lang.php | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/ru/lang.php b/lib/plugins/plugin/lang/ru/lang.php index 514b38bc2..a33f95418 100644 --- a/lib/plugins/plugin/lang/ru/lang.php +++ b/lib/plugins/plugin/lang/ru/lang.php @@ -13,6 +13,7 @@ * @author Kirill Krasnov * @author Vlad Tsybenko * @author Aleksey Osadchiy + * @author Aleksandr Selivanov */ $lang['menu'] = 'Управление плагинами'; $lang['download'] = 'Скачать и установить новый плагин'; @@ -28,16 +29,16 @@ $lang['installed'] = 'Установлен:'; $lang['lastupdate'] = 'Последнее обновление:'; $lang['source'] = 'Источник:'; $lang['unknown'] = 'неизвестно'; -$lang['updating'] = 'Обновление ...'; +$lang['updating'] = 'Обновление...'; $lang['updated'] = 'Плагин %s успешно обновлен'; $lang['updates'] = 'Следующие плагины были успешно обновлены'; $lang['update_none'] = 'Обновления не найдены.'; -$lang['deleting'] = 'Удаление ...'; +$lang['deleting'] = 'Удаление...'; $lang['deleted'] = 'Плагин %s удален.'; -$lang['downloading'] = 'Скачивание ...'; +$lang['downloading'] = 'Скачивание...'; $lang['downloaded'] = 'Плагин %s успешно установлен'; $lang['downloads'] = 'Следующие плагины были успешно установлены:'; -$lang['download_none'] = 'Плагины не найдены, или возникла неизвестная проблема в процессе скачивания и установки.'; +$lang['download_none'] = 'Плагины не найдены или возникла неизвестная проблема в процессе скачивания и установки.'; $lang['plugin'] = 'Плагин:'; $lang['components'] = 'Компоненты'; $lang['noinfo'] = 'Этот плагин не сообщил никаких данных, он может быть нерабочим.'; @@ -46,13 +47,13 @@ $lang['date'] = 'Дата:'; $lang['type'] = 'Тип:'; $lang['desc'] = 'Описание:'; $lang['author'] = 'Автор:'; -$lang['www'] = 'Страничка:'; +$lang['www'] = 'Странца:'; $lang['error'] = 'Произошла неизвестная ошибка.'; $lang['error_download'] = 'Не могу скачать файл плагина: %s'; -$lang['error_badurl'] = 'Возможно, неправильный адрес - не могу определить имя файла из адреса'; +$lang['error_badurl'] = 'Возможно, неправильный адрес — не могу определить имя файла из адреса'; $lang['error_dircreate'] = 'Не могу создать временную директорию для скачивания'; -$lang['error_decompress'] = 'Менеджеру плагинов не удалось распаковать скачанный файл. Это может быть результатом ошибки при скачивании, в этом случае Вы можете попробовать снова; или же плагин упакован неизвестным архиватором, тогда Вам необходимо скачать и установить плагин вручную.'; -$lang['error_copy'] = 'Произошла ошибка копирования при попытке установки файлов для плагина %s: переполнение диска или неправильные права доступа. Это могло привести к частичной установке плагина и неустойчивости вашей Вики.'; +$lang['error_decompress'] = 'Менеджеру плагинов не удалось распаковать скачанный файл. Это может быть результатом ошибки при скачивании, в этом случае вы можете попробовать снова; или же плагин упакован неизвестным архиватором, тогда вам необходимо скачать и установить плагин вручную.'; +$lang['error_copy'] = 'Произошла ошибка копирования при попытке установки файлов для плагина %s: переполнение диска или неправильные права доступа. Это могло привести к частичной установке плагина и неустойчивости вашей вики.'; $lang['error_delete'] = 'Произошла ошибка при попытке удалить плагин %s. Наиболее вероятно, что нет необходимых прав доступа к файлам или директориям'; $lang['enabled'] = 'Плагин %s включён.'; $lang['notenabled'] = 'Не удалось включить плагин %s. Проверьте системные права доступа к файлам.'; -- cgit v1.2.3 From 163ad9f2399a52f60868a2454c1113e214c1bfea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szab=C3=B3=20D=C3=A1vid?= Date: Fri, 16 Jul 2010 09:01:32 +0200 Subject: Hungarian update --- lib/plugins/plugin/lang/hu/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/hu/lang.php b/lib/plugins/plugin/lang/hu/lang.php index 06a5e00c6..32242ece9 100644 --- a/lib/plugins/plugin/lang/hu/lang.php +++ b/lib/plugins/plugin/lang/hu/lang.php @@ -6,6 +6,7 @@ * @author Siaynoq Mage * @author schilling.janos@gmail.com * @author Szabó Dávid (szabo.david@gyumolcstarhely.hu) + * @author Szabó Dávid */ $lang['menu'] = 'Bővítménykezelő'; $lang['download'] = 'Új bővítmény letöltése és telepítése'; -- cgit v1.2.3 From 45c5ecdccdd251af3e9202f944fa8bf103c5db0f Mon Sep 17 00:00:00 2001 From: osman tekin Date: Mon, 9 Aug 2010 22:04:49 +0200 Subject: Italian language update --- lib/plugins/plugin/lang/it/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/it/lang.php b/lib/plugins/plugin/lang/it/lang.php index 3e9d855ec..c7ce28a59 100644 --- a/lib/plugins/plugin/lang/it/lang.php +++ b/lib/plugins/plugin/lang/it/lang.php @@ -11,6 +11,7 @@ * @author Lorenzo Breda * @author snarchio@alice.it * @author robocap + * @author Osman Tekin osman.tekin93@hotmail.it */ $lang['menu'] = 'Gestione Plugin'; $lang['download'] = 'Scarica e installa un nuovo plugin'; -- cgit v1.2.3 From 237f954610f045f604fe05a60d82df8b375e0cc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0olti?= Date: Fri, 20 Aug 2010 11:44:51 +0200 Subject: Serbian language update --- lib/plugins/plugin/lang/sr/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/sr/lang.php b/lib/plugins/plugin/lang/sr/lang.php index 58f333879..bc22770a1 100644 --- a/lib/plugins/plugin/lang/sr/lang.php +++ b/lib/plugins/plugin/lang/sr/lang.php @@ -4,6 +4,7 @@ * * @author Иван Петровић petrovicivan@ubuntusrbija.org * @author Ivan Petrovic + * @author Miroslav Šolti */ $lang['menu'] = 'Управљач додацима'; $lang['download'] = 'Преузми и инсталирај нови додатак'; -- cgit v1.2.3 From 003a37b419108048f084be9c59598a00a7eb8724 Mon Sep 17 00:00:00 2001 From: Timon Van Overveldt Date: Fri, 20 Aug 2010 11:45:47 +0200 Subject: Dutch language update --- lib/plugins/plugin/lang/nl/lang.php | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/lang/nl/lang.php b/lib/plugins/plugin/lang/nl/lang.php index 024fe546e..cb7fc44fc 100644 --- a/lib/plugins/plugin/lang/nl/lang.php +++ b/lib/plugins/plugin/lang/nl/lang.php @@ -10,6 +10,7 @@ * @author Marijn Hofstra hofstra.m@gmail.com * @author Matthias Carchon webmaster@c-mattic.be * @author Marijn Hofstra + * @author Timon Van Overveldt */ $lang['menu'] = 'Plugins beheren'; $lang['download'] = 'Download en installeer een nieuwe plugin'; -- cgit v1.2.3 From db6f7eaea3a9b1b536f2b65e54c911f2a4d49bd8 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Sun, 29 Aug 2010 12:27:41 +0200 Subject: don't load disabled plugins FS#1990 --- lib/plugins/plugin/classes/ap_info.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/plugins/plugin') diff --git a/lib/plugins/plugin/classes/ap_info.class.php b/lib/plugins/plugin/classes/ap_info.class.php index fcadb4599..cebbf090a 100644 --- a/lib/plugins/plugin/classes/ap_info.class.php +++ b/lib/plugins/plugin/classes/ap_info.class.php @@ -15,7 +15,7 @@ class ap_info extends ap_manage { foreach ($component_list as $component) { - if ($obj = & plugin_load($component['type'],$component['name']) === NULL) continue; + if ($obj = & plugin_load($component['type'],$component['name'],false,true) === NULL) continue; $compname = explode('_',$component['name']); if($compname[1]){ -- cgit v1.2.3